/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --wafer-dark:        #0D1117;
  --slate:             #161C24;
  --slate-mid:         #1E2736;
  --silicon-blue:      #A2BDD6;
  --glint:             #DCE7F2;
  --copper:            #D4884A;
  --copper-hover:      #B8703A;
  --text-primary:      #ECF0F5;
  --text-muted:        #8A9EBA;
  --text-dark:         #0D1117;

  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Newsreader', Georgia, serif;
  --font-mono:     'IBM Plex Mono', 'Courier New', monospace;

  --nav-h:         64px;
  --section-pad:   clamp(80px, 12vw, 160px);
  --max-w:         1200px;
  --gutter:        clamp(24px, 5vw, 80px);

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--wafer-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
}

ul[role="list"] { list-style: none; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label {
  color: var(--silicon-blue);
  margin-bottom: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(143, 168, 196, 0.08);
}

.nav__logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--glint);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silicon-blue);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--glint); }

.nav__link--cta {
  color: var(--copper);
  border: 1px solid var(--copper);
  padding: 0.45rem 1rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.nav__link--cta:hover {
  color: var(--wafer-dark);
  background: var(--copper);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--silicon-blue);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--wafer-dark);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1rem;
  }
  .nav__link { font-size: 0.85rem; }
  /* Ensure nav links are tap-friendly */
  .nav__links.open .nav__link { padding: 0.5rem 1rem; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 1rem) var(--gutter) 2.5rem;
}

.orb-canvas,
.neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Neural hero: headline band at top, offer band at bottom,
   network fills the middle with the AOI node visible at center. */
.hero--neural {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.hero__top,
.hero__bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
}

.hero__top {
  margin-top: 0.5rem;
}

.hero__bottom {
  margin-bottom: 2.5rem;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-align: center;
}

.hero__label {
  color: var(--silicon-blue);
  margin-bottom: 1rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--glint);
  margin-bottom: 1.25rem;
  /* gradient sheen — cool glint to silicon-blue to copper warmth */
  background: linear-gradient(
    135deg,
    var(--glint) 0%,
    var(--silicon-blue) 45%,
    #E8A06A 80%,
    var(--glint) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subhead {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 1.25rem;
  font-style: italic;
}

.hero__rally {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  line-height: 1.4;
}
.hero__rally em {
  font-style: italic;
  color: var(--copper);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  z-index: 1;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--silicon-blue), transparent);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.8; transform: translateX(-50%) translateY(4px); }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__ctas .btn {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  background: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn__arrow {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary {
  color: var(--glint);
  border-color: var(--silicon-blue);
}
.btn--primary:hover {
  background: rgba(143, 168, 196, 0.12);
  border-color: var(--glint);
}

.btn--secondary {
  color: var(--silicon-blue);
  border-color: rgba(143, 168, 196, 0.3);
}
.btn--secondary:hover {
  background: rgba(143, 168, 196, 0.06);
  border-color: var(--silicon-blue);
  color: var(--glint);
}

.btn--copper {
  color: var(--copper);
  border-color: var(--copper);
}
.btn--copper:hover {
  background: var(--copper);
  color: var(--wafer-dark);
}

/* ═══════════════════════════════════════════
/* ═══════════════════════════════════════════
   DOORS (two offers)
═══════════════════════════════════════════ */
.doors {
  padding: var(--section-pad) var(--gutter);
  background: var(--wafer-dark);
  background-image: radial-gradient(ellipse 60% 40% at 80% 60%, rgba(212, 136, 74, 0.06) 0%, transparent 70%),
                    radial-gradient(ellipse 50% 30% at 20% 30%, rgba(162, 189, 214, 0.04) 0%, transparent 70%);
}

.doors__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.door {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(162, 189, 214, 0.22);
}
.door:last-of-type { border-bottom: 1px solid rgba(162, 189, 214, 0.22); }

.door__divider { display: none; }

.door__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--copper);
  line-height: 1;
  padding-top: 0.25rem;
  opacity: 0.7;
}

.door__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--glint);
  line-height: 0.95;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 60px rgba(220, 231, 242, 0.2);
}

.door__desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 1.75rem;
  line-height: 1.75;
}
.door__desc em { color: var(--silicon-blue); font-style: italic; }

.door__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  color: var(--silicon-blue);
  font-size: 0.72rem;
  margin-bottom: 2rem;
  list-style: none;
  padding-left: 0;
}
.door__list li::before {
  content: '— ';
  color: var(--copper);
}

@media (max-width: 600px) {
  .door { grid-template-columns: 1fr; gap: 1rem; }
  .door__list { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   PROOF
═══════════════════════════════════════════ */
.proof {
  padding: var(--section-pad) var(--gutter);
  background: var(--slate);
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(ellipse 70% 40% at 30% 100%, rgba(212, 136, 74, 0.05) 0%, transparent 70%),
                    radial-gradient(ellipse 50% 30% at 80% 0%, rgba(162, 189, 214, 0.06) 0%, transparent 70%);
}

.proof::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silicon-blue) 40%, var(--glint) 50%, var(--silicon-blue) 60%, transparent);
  opacity: 0.7;
  z-index: 1;
}

.proof::after {
  content: '';
  position: absolute;
  top: 0;
  left: -55%;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(220, 231, 242, 0.022) 50%,
    transparent 100%
  );
  pointer-events: none;
  animation: proof-shimmer 9s ease-in-out infinite 1.5s;
  z-index: 0;
}

@keyframes proof-shimmer {
  0%   { left: -55%; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

.proof__inner { max-width: var(--max-w); margin: 0 auto; }

.proof__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--glint);
  margin-bottom: 3.5rem;
  line-height: 0.95;
  text-shadow: 0 0 80px rgba(162, 189, 214, 0.25);
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: rgba(162, 189, 214, 0.18);
}

.proof__card {
  background: var(--slate);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  transition: background 0.4s, box-shadow 0.4s;
}
.proof__card:hover {
  background: var(--slate-mid);
  box-shadow: inset 0 0 50px rgba(199, 123, 62, 0.04);
}

/* — large faded background number — */
.proof__card-bg-num {
  position: absolute;
  bottom: -0.18em;
  right: -0.03em;
  font-family: var(--font-display);
  font-size: clamp(7rem, 14vw, 11rem);
  color: rgba(143, 168, 196, 0.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
  transition: color 0.6s;
}
.proof__card:hover .proof__card-bg-num {
  color: rgba(199, 123, 62, 0.09);
}

/* — status row — */
.proof__card-status {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.proof__card-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  animation: proof-pulse 2.8s ease-in-out infinite;
}
.proof__card:nth-child(2) .proof__card-dot { animation-delay: 0.7s; }
.proof__card:nth-child(3) .proof__card-dot { animation-delay: 1.4s; }
.proof__card:nth-child(4) .proof__card-dot { animation-delay: 2.1s; }

.proof__card-status-text {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--copper);
  opacity: 0.75;
}

@keyframes proof-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(199, 123, 62, 0.55);
  }
  50% {
    opacity: 0.55;
    box-shadow: 0 0 0 5px rgba(199, 123, 62, 0);
  }
}

/* — hover scan line — */
.proof__card-scan {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(
    180deg,
    rgba(199, 123, 62, 0.13) 0%,
    rgba(143, 168, 196, 0.07) 55%,
    transparent 100%
  );
  transform: translateY(-90px);
  pointer-events: none;
  opacity: 0;
}
.proof__card:hover .proof__card-scan {
  animation: scan-card 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes scan-card {
  0%   { transform: translateY(-90px); opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 0.85; }
  100% { transform: translateY(360px); opacity: 0; }
}

.proof__card-label {
  color: var(--copper);
  margin-bottom: 0.5rem;
}

.proof__card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--glint);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.proof__card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  padding: var(--section-pad) var(--gutter);
  background: var(--wafer-dark);
  background-image: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(212, 136, 74, 0.07) 0%, transparent 70%);
}

.contact__inner { max-width: var(--max-w); margin: 0 auto; }

.contact__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  color: var(--glint);
  margin-bottom: 3.5rem;
  line-height: 0.95;
  text-shadow: 0 0 80px rgba(212, 136, 74, 0.2);
}

.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(162, 189, 214, 0.18);
}

.contact__card {
  background: var(--wafer-dark);
  padding: 3rem 2.5rem;
}

.contact__card-label {
  color: var(--copper);
  margin-bottom: 1rem;
}

.contact__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--glint);
  margin-bottom: 1rem;
  line-height: 0.95;
}

.contact__card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .contact__cards { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   FORMS
═══════════════════════════════════════════ */
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }

.form__group { display: flex; flex-direction: column; gap: 0.4rem; }

.form__label {
  color: var(--silicon-blue);
  font-size: 0.65rem;
}

.form__input {
  background: var(--slate);
  border: 1px solid rgba(143, 168, 196, 0.15);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form__input:focus { border-color: var(--silicon-blue); }
.form__input::placeholder { color: var(--text-muted); }
.form__input--textarea { resize: vertical; min-height: 100px; }

@media (max-width: 768px) {
  /* 44px minimum touch targets for mobile */
  .form__input { padding: 0.875rem 1rem; }
  .btn { min-height: 44px; }
}

.form__note {
  font-size: 0.7rem;
  color: var(--silicon-blue);
  min-height: 1rem;
}

/* ═══════════════════════════════════════════
   COMMUNITY / EMAIL SIGNUP
═══════════════════════════════════════════ */
.community {
  background: var(--slate);
  padding: var(--section-pad) var(--gutter);
  border-top: 1px solid rgba(162, 189, 214, 0.1);
}

.community__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.community__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--glint);
  line-height: 1;
  margin: 0.5rem 0 1rem;
  letter-spacing: 0.02em;
}

.community__sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.community__form {
  width: 100%;
}

.community__fields {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.community__input {
  flex: 1 1 200px;
  background: rgba(13, 17, 23, 0.6);
  border: 1px solid rgba(162, 189, 214, 0.2);
  border-radius: 6px;
  padding: 0.85rem 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  min-height: 44px;
}

.community__input::placeholder { color: var(--text-muted); }
.community__input:focus { border-color: var(--silicon-blue); }

.community__btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

/* — camp interest checkbox — */
.community__check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  margin-top: 1.1rem;
  margin-bottom: 0.25rem;
}

.community__check-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.community__check-box {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid rgba(143, 168, 196, 0.3);
  background: transparent;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.community__check-input:checked ~ .community__check-box {
  background: var(--copper);
  border-color: var(--copper);
}

.community__check-input:checked ~ .community__check-box::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: 2px solid var(--wafer-dark);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.community__check:hover .community__check-box {
  border-color: var(--copper);
}

.community__check-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.55;
  letter-spacing: 0.01em;
  user-select: none;
}

.community__note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  min-height: 1.2em;
}

.community__note--success { color: #6fcf97; }
.community__note--error   { color: #eb5757; }

@media (max-width: 600px) {
  .community__fields { flex-direction: column; }
  .community__input, .community__btn { width: 100%; flex: unset; }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  border-top: 1px solid rgba(143, 168, 196, 0.1);
  padding: 4rem var(--gutter) 3rem;
  background: var(--wafer-dark);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 2rem;
  align-items: start;
}

.footer__brand { grid-column: 1; }

.footer__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--glint);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.footer__tagline {
  color: var(--silicon-blue);
  margin-bottom: 0.25rem;
}

.footer__location { color: var(--text-muted); }

.footer__nav {
  grid-column: 2;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer__link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--silicon-blue); }

.footer__creed {
  grid-column: 1 / -1;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
  border-top: 1px solid rgba(143, 168, 196, 0.08);
  padding-top: 2rem;
}

.footer__copy {
  grid-column: 1 / -1;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.footer__email {
  color: var(--silicon-blue);
  transition: color 0.2s;
}
.footer__email:hover { color: var(--glint); }

@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
  /* Reset explicit column placements so they flow in the single column */
  .footer__brand, .footer__nav,
  .footer__creed, .footer__copy { grid-column: 1; }
  .footer__nav { justify-content: flex-start; }
}

/* ═══════════════════════════════════════════
   WORD-SPLIT SPANS (GSAP word reveals)
═══════════════════════════════════════════ */
.w {
  display: inline-block;
  overflow: hidden;        /* clips the sliding .wi */
  vertical-align: bottom;
  margin-right: 0.22em;   /* word spacing */
  margin-bottom: 0.04em;
}

/* Bebas Neue headlines have tighter spacing */
.hero__headline .w,
.door__headline .w,
.proof__headline .w,
.contact__headline .w {
  margin-right: 0.14em;
}

.wi {
  display: inline-block;
  /* GSAP starts these at y:105% and animates to y:0 */
}

/* Hero elements start hidden; GSAP fades them in */
.hero__label,
.hero__subhead,
.hero__rally,
.hero__ctas .btn,
.hero__scroll-hint {
  opacity: 0;
}

/* Section content GSAP controls opacity; start hidden */
.door__desc,
.door__list li,
.proof__card,
.contact__card,
.section-label {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero__label,
  .hero__subhead,
  .hero__rally,
  .hero__ctas,
  .hero__scroll-hint,
  .door__desc,
  .door__list li,
  .proof__card,
  .contact__card,
  .section-label {
    opacity: 1 !important;
    transform: none !important;
  }

  .proof__card-dot  { animation: none !important; }
  .proof__card-scan { display: none !important; }
  .proof::after     { animation: none !important; }
}
