/* =========================================================
   Eppur — Holding page
   One-page, investor-grade. Same brand tokens as the
   comprehensive site (navy + spectrum, Wotfard/Poppins/Mono).
   ========================================================= */

:root {
  --navy:        #0E1E3D;
  --navy-2:      #1A2A52;

  --teal:        #1FBFB1;
  --cyan:        #1AA3D8;
  --blue:        #1E5FD0;
  --plum:        #A0227A;
  --magenta:     #E5286E;
  --orange:      #F4831F;

  --grad-spectrum: linear-gradient(95deg,
                    var(--teal) 0%,
                    var(--cyan) 26%,
                    var(--blue) 48%,
                    var(--plum) 70%,
                    var(--magenta) 84%,
                    var(--orange) 100%);

  --display: "Wotfard", "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans:    "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --gutter: clamp(22px, 5vw, 72px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--navy);
  color: #fff;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a   { color: #fff; text-decoration: none; }

/* ---------- Layout shell ---------- */
.holding {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 52px) var(--gutter) clamp(24px, 3vw, 40px);
  overflow: hidden;
  isolation: isolate;
}

/* Spectrum glows — quiet, atmospheric */
.bg-glow {
  position: absolute;
  z-index: -1;
  top: -22%;
  right: -14%;
  width: 64vw;
  max-width: 920px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--grad-spectrum);
  opacity: 0.13;
  filter: blur(110px);
  pointer-events: none;
}
.bg-glow--two {
  top: auto;
  right: auto;
  bottom: -28%;
  left: -16%;
  width: 56vw;
  max-width: 760px;
  opacity: 0.10;
  filter: blur(120px);
}

/* Fine top spectrum hairline */
.holding::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-spectrum);
  z-index: 2;
}

/* ---------- Top bar ---------- */
.hd-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  line-height: 1;
  transition: opacity .2s ease;
}
.brand:hover { opacity: 0.78; }
.brand .word {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  letter-spacing: -0.025em;
}
.brand svg {
  height: clamp(28px, 3.4vw, 36px);
  width: auto;
  display: block;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}
.status .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(31, 191, 177, 0.55);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(31, 191, 177, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(31, 191, 177, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 191, 177, 0); }
}

/* ---------- Hero ---------- */
.hd-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vh, 120px) 0;
  max-width: 900px;
}
.spectrum-bar {
  height: 4px; width: 64px;
  background: var(--grad-spectrum);
  border-radius: 4px;
  border: 0; margin: 0 0 clamp(26px, 3vw, 38px);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.9rem, 8vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 20px 0 0;
  color: #fff;
}
h1 .accent {
  background: var(--grad-spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  display: inline-block;
  padding-right: 0.06em;
}
.lede {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.12rem, 1.9vw, 1.4rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.005em;
  max-width: 46ch;
  margin: clamp(26px, 3vw, 38px) 0 0;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 30px);
  flex-wrap: wrap;
  margin-top: clamp(34px, 4vw, 48px);
}
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px;
  background: #fff; color: var(--navy);
  border: 1px solid #fff;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.btn:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-1px);
}
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }
.mail-link {
  font-family: var(--mono);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.mail-link:hover { color: var(--teal); border-color: var(--teal); }

/* ---------- Credibility strip ---------- */
.hd-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: clamp(22px, 2.6vw, 30px);
}
.tags {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  list-style: none;
  margin: 0; padding: 0;
  flex-wrap: wrap;
}
.tags .mw {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.tags .mw .plus { color: var(--magenta); }
.tags .cap {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 9px;
}
.tags .cap-lead {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
}
.tags .div {
  width: 1px; height: 18px;
  background: rgba(255, 255, 255, 0.2);
}
.locations {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.hd-copyright {
  margin-top: clamp(20px, 2.4vw, 28px);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Reveal on load ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { animation: rise .9s cubic-bezier(.2,.7,.2,1) both; }
.r1 { animation-delay: .05s; }
.r2 { animation-delay: .15s; }
.r3 { animation-delay: .26s; }
.r4 { animation-delay: .37s; }
.r5 { animation-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
  .status .dot { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 680px) {
  .hd-top { flex-direction: row; align-items: center; }
  .status { font-size: 0.66rem; }
  .hd-hero { max-width: none; padding: clamp(40px, 6vh, 72px) 0; }
  .hd-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .locations { white-space: normal; }
  .tags { gap: 14px 22px; }
  .tags .div { width: 100%; height: 0; background: none; }
}

@media (max-width: 420px) {
  .status span:not(.dot) { }
  .cta-row { gap: 16px; }
  .btn { width: auto; }
}
