/* ============================================================
   TALKLEASE — landing page
   Theme:  property / architecture.  White + deep estate green.
   Type:   Archivo (display) · Hanken Grotesk (body) · Space Mono (data)
   Signature: a building that constructs itself and lights its
              windows as calls are answered, with blueprint annotations.
   ============================================================ */

:root {
  --paper: #f4f6f2;      /* soft architectural white */
  --white: #ffffff;
  --ink: #14201b;        /* deep green-black */
  --ink-soft: #56635b;
  --ink-faint: #8a938b;
  --green: #15503b;      /* deep estate green — brand */
  --green-2: #1c6a4c;
  --emerald: #1f9d66;    /* bright accent — lit windows, live */
  --emerald-soft: rgba(31, 157, 102, 0.16);
  --green-deep: #0b241b; /* near-black green — dark sections */
  --green-deep-2: #061710;
  --line: #dce1d8;
  --line-2: #c6cec2;

  --display: "Archivo", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;

  --wrap: 1220px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* faint architectural grid over the page */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.35;
  -webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 0%, transparent 70%);
          mask-image: radial-gradient(120% 90% at 70% 0%, #000 0%, transparent 70%);
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 34px; position: relative; z-index: 2; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--green); color: #eafff4; }

/* ============================================================
   NAV
   ============================================================ */
.nav { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; padding-bottom: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { color: var(--green); display: grid; place-items: center; }
.brand-word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.nav-right { display: flex; align-items: center; gap: 26px; }
.nav-num { font-family: var(--mono); font-size: 13px; color: var(--ink-soft); transition: color 0.3s var(--ease); }
.nav-num:hover { color: var(--green); }
.nav-cta {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  padding: 10px 20px; border-radius: 3px; background: var(--green); color: #eafff4;
  transition: background 0.3s var(--ease), transform 0.15s var(--ease);
}
.nav-cta:hover { background: var(--green-deep); }
.nav-cta:active { transform: translateY(1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 48px;
  min-height: min(82vh, 740px);
}
.eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--green-2); margin: 0 0 18px;
  display: inline-flex; align-items: center;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--green-2); margin-right: 11px; }

.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.hero-title .ln { display: block; overflow: hidden; padding-bottom: 0.03em; }
.hero-title .ln > span { display: block; }
.hero-title .accent { color: var(--emerald); }

.hero-sub { font-size: 1.08rem; line-height: 1.58; color: var(--ink-soft); max-width: 33em; margin: 0 0 24px; }

/* call block */
.call {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 18px;
  padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.call-status {
  flex-basis: 100%; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-faint); display: flex; align-items: center; gap: 9px; margin-bottom: 4px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); flex: none;
  box-shadow: 0 0 0 0 rgba(31, 157, 102, 0.5); animation: pulse 2.3s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31,157,102,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(31,157,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,157,102,0); }
}
.call-num {
  font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 3.6vw, 2.8rem);
  letter-spacing: -0.02em; line-height: 1; transition: color 0.3s var(--ease);
}
.call-num:hover { color: var(--green); }
.call-copy {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); background: transparent; border: 1px solid var(--line-2); border-radius: 3px;
  padding: 6px 13px; cursor: pointer; align-self: center; transition: border-color 0.3s, color 0.3s;
}
.call-copy:hover { border-color: var(--green); color: var(--green); }

.try { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.try li { position: relative; padding-left: 26px; font-size: 0.98rem; color: var(--ink-soft); }
.try li::before {
  content: "+"; position: absolute; left: 2px; top: -0.05em; color: var(--emerald);
  font-family: var(--mono); font-weight: 700;
}

/* ============================================================
   THE BUILDING (signature)
   ============================================================ */
.hero-stage { display: flex; flex-direction: column; align-items: center; gap: 20px; perspective: 1400px; }
.building-wrap {
  position: relative; width: min(100%, 460px); transform-style: preserve-3d;
  transition: transform 0.5s var(--ease);
}
.building {
  width: 100%; height: auto; display: block; overflow: visible;
  animation: float 8s ease-in-out infinite;
}
.js .building { clip-path: inset(100% 0 0 0); }
.loaded .building { clip-path: inset(0 0 0 0); transition: clip-path 1.5s var(--ease) 0.2s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.face { stroke-linejoin: round; }
.face-top { fill: #e7ede6; stroke: var(--green); stroke-width: 1.5; }
.face-side { fill: #d3ddd2; stroke: var(--green); stroke-width: 1.5; }
.face-roof { fill: #dbe4da; stroke: var(--green); stroke-width: 1.3; }
.face-front { fill: var(--white); stroke: none; }
.face-outline { fill: none; stroke: var(--green); stroke-width: 1.8; }
.hair { stroke: var(--line-2); stroke-width: 1; }
.hair-2 { stroke: var(--green); stroke-width: 1.4; }
.entrance { fill: var(--green); opacity: 0.9; }

.win {
  fill: var(--emerald);
  opacity: 0.14;
  animation: winlight 7s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.34s);
}
@keyframes winlight {
  0%, 86%, 100% { opacity: 0.14; }
  91% { opacity: 0.92; }
  96% { opacity: 0.5; }
}

/* blueprint annotations */
.annot {
  position: absolute; font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em;
  color: var(--green-2); white-space: nowrap; opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.loaded .annot { opacity: 1; transition-delay: 1.4s; }
.annot-units { top: 15%; left: -4%; }
.annot-units i { display: inline-block; width: 34px; height: 1px; background: var(--green-2); vertical-align: middle; margin-right: 8px; }
.annot-open { bottom: 11%; right: 2%; }
.annot-open::before { content: ""; display: inline-block; width: 30px; height: 1px; background: var(--green-2); vertical-align: middle; margin-right: 8px; }
.annot-live {
  top: 40%; right: -6%; color: var(--emerald);
  background: var(--white); border: 1px solid var(--line); border-radius: 3px; padding: 6px 11px;
  box-shadow: 0 12px 30px -18px rgba(20,32,27,0.4);
}
.annot-live b { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); margin-right: 8px; animation: pulse 2.3s ease-out infinite; }

.stage-caption {
  font-family: var(--body); font-size: 0.95rem; color: var(--ink-faint);
  text-align: center; margin: 0; max-width: 26em;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 20px 0; background: var(--white); position: relative; z-index: 2;
}
.marquee-track { display: inline-flex; align-items: center; gap: 30px; white-space: nowrap; animation: scroll-x 36s linear infinite; }
.marquee-track span { font-family: var(--display); font-weight: 700; font-size: clamp(1.4rem, 2.6vw, 2rem); letter-spacing: -0.02em; color: var(--ink); text-transform: uppercase; }
.marquee-track i { color: var(--emerald); font-style: normal; font-weight: 700; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============================================================
   STAT BAND
   ============================================================ */
.statband { background: var(--green-deep); color: var(--paper); padding-block: 62px; position: relative; z-index: 2; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat { text-align: center; }
.stat-num { font-family: var(--display); font-weight: 800; font-size: clamp(3rem, 6vw, 4.6rem); line-height: 1; letter-spacing: -0.03em; color: #fff; }
.stat-num span { color: var(--emerald); }
.stat-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em; color: #93a89c; margin: 14px auto 0; max-width: 17em; }

/* ============================================================
   SECTIONS
   ============================================================ */
.band { padding-block: 110px; position: relative; z-index: 2; }
.section-eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--green-2); margin: 0 0 18px; display: inline-flex; align-items: center;
}
.section-eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--green-2); margin-right: 11px; }
.section-title {
  font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4.3vw, 3.3rem);
  line-height: 1.02; letter-spacing: -0.03em; margin: 0 0 56px; max-width: 15em;
}
.section-title.mask { overflow: hidden; padding-bottom: 0.05em; }
.section-title.mask > span { display: block; transform: translateY(105%); transition: transform 0.9s var(--ease); }
.section-title.mask.in > span { transform: none; }

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature { position: relative; padding: 28px 0 0; border-top: 1px solid var(--line); }
.feature::before { content: ""; position: absolute; top: -1px; left: 0; width: 46px; height: 2px; background: var(--emerald); transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease) 0.1s; }
.feature.in::before { transform: scaleX(1); }
.feature-no { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); display: block; margin-bottom: 14px; }
.feature h3 { font-family: var(--display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em; margin: 0 0 10px; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 1rem; }

/* ============================================================
   NIGHT-SHIFT BOARD
   ============================================================ */
.band-live { background: var(--paper); }
.live-inner { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 60px; align-items: center; }
.live-lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 24em; margin: 0; }

.board {
  background: linear-gradient(165deg, var(--green-deep) 0%, var(--green-deep-2) 100%);
  border: 1px solid rgba(31,157,102,0.22); border-radius: 8px; padding: 8px 8px 6px;
  box-shadow: 0 50px 90px -50px rgba(11,36,27,0.8), inset 0 1px 0 rgba(31,157,102,0.1);
}
.board-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; }
.console-live { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--emerald); display: inline-flex; align-items: center; gap: 9px; }
.console-live .dot { background: var(--emerald); }
.board-count { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.03em; color: #7f9488; }

.log { list-style: none; margin: 0; padding: 0; }
.log-row { border-top: 1px solid rgba(31,157,102,0.13); }
.log-line {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px;
  width: 100%; background: transparent; border: 0; cursor: pointer; text-align: left;
  padding: 17px 18px; transition: background 0.3s var(--ease);
}
.log-line:hover { background: rgba(31,157,102,0.06); }
.log-line:focus-visible { outline: 2px solid var(--emerald); outline-offset: -2px; }
.log-time { font-family: var(--mono); font-size: 12.5px; color: var(--emerald); font-variant-numeric: tabular-nums; }
.log-intent { font-family: var(--body); font-weight: 500; font-size: 1.05rem; color: #d6e2da; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid currentColor; border-radius: 100px; padding: 4px 10px; white-space: nowrap; }
.tag-quote { color: #9db3a6; }
.tag-book { color: var(--emerald); }
.tag-ticket { color: #8fb0c0; }
.tag-hold { color: #d6b45e; }
.tag-message { color: #9db3a6; }
.tag-emergency { color: #e6685a; }
.log-detail { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease); }
.log-detail-in { overflow: hidden; }
.log-row.is-open .log-detail { grid-template-rows: 1fr; }
.log-detail-in p { margin: 0; padding: 0 18px 14px; font-size: 1rem; line-height: 1.5; color: #b6c6bb; }
.log-detail-in p:first-child { padding-top: 4px; }
.log-detail-in .who { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: #7f9488; display: inline-block; width: 58px; vertical-align: 1px; }
.log-detail-in .who.agent { color: var(--emerald); }

/* ============================================================
   TRUST
   ============================================================ */
.band-trust { background: var(--green-deep); color: var(--paper); }
.band-trust .section-eyebrow { color: var(--emerald); }
.band-trust .section-eyebrow::before { background: var(--emerald); }
.band-trust .section-title { color: #fff; margin-bottom: 20px; }
.trust-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.trust-lead { font-size: 1.14rem; color: #b6c6bb; max-width: 26em; margin: 0; }
.trust-list { list-style: none; margin: 0; padding: 0; }
.trust-list li { position: relative; padding: 30px 0 30px 52px; border-top: 1px solid rgba(31,157,102,0.2); }
.trust-list li:last-child { border-bottom: 1px solid rgba(31,157,102,0.2); }
.trust-no { position: absolute; left: 0; top: 32px; font-family: var(--mono); font-size: 13px; color: var(--emerald); }
.trust-list h3 { font-family: var(--display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; margin: 0 0 8px; color: #fff; }
.trust-list p { margin: 0; color: #9fb3a6; font-size: 1.03rem; }

/* ============================================================
   WAITLIST
   ============================================================ */
.band-waitlist { background: radial-gradient(120% 100% at 88% 0%, rgba(31,157,102,0.10), transparent 46%), var(--paper); }
.waitlist-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.waitlist-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 28em; margin: 0 0 16px; }
.waitlist-fine { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); margin: 0; }
.waitlist-form { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 34px; box-shadow: 0 30px 60px -46px rgba(20,32,27,0.35); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 9px; }
.field input, .field select {
  width: 100%; font-family: var(--body); font-size: 1.02rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 4px; padding: 13px 15px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(21,80,59,0.12); }
.select-wrap { position: relative; }
.select-wrap::after { content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px; border-right: 1.5px solid var(--ink-soft); border-bottom: 1.5px solid var(--ink-soft); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.submit { width: 100%; font-family: var(--display); font-size: 1rem; font-weight: 700; color: #eafff4; background: var(--green); border: 1px solid var(--green); border-radius: 4px; padding: 15px 20px; cursor: pointer; margin-top: 6px; transition: background 0.3s var(--ease), transform 0.15s var(--ease); }
.submit:hover { background: var(--green-deep); }
.submit:active { transform: translateY(1px); }
.submit:disabled { opacity: 0.6; cursor: default; }
.form-msg { min-height: 1.2em; margin: 14px 0 0; font-size: 0.92rem; color: var(--green); }
.form-msg.ok { color: var(--emerald); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-deep-2); color: var(--paper); padding-block: 54px; position: relative; z-index: 2; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.footer-brand .brand-word { color: #fff; font-size: 20px; }
.footer-brand p { margin: 12px 0 0; color: #8ba295; font-size: 0.95rem; max-width: 26em; }
.footer-right { text-align: right; }
.footer-num { font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: var(--emerald); }
.footer-fine { font-family: var(--mono); font-size: 11.5px; color: #6f8579; margin: 8px 0 0; }

/* ============================================================
   TOAST
   ============================================================ */
.toast { position: fixed; left: 50%; bottom: 34px; transform: translate(-50%, 20px); background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: 12.5px; padding: 12px 20px; border-radius: 100px; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5); opacity: 0; pointer-events: none; z-index: 40; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   MOTION: load + reveals
   ============================================================ */
.js .load { opacity: 0; transform: translateY(24px); }
.js .hero-title .ln > span { transform: translateY(110%); }
.load { transition: opacity 1s var(--ease), transform 1s var(--ease); }
.loaded .load { opacity: 1; transform: none; }
.loaded .hero-title .ln > span { transform: none; transition: transform 1s var(--ease); }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   DEMO VIDEO + LIGHTBOX
   ============================================================ */
.band-demo { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.band-demo .section-eyebrow { justify-content: center; }
.band-demo .section-title { max-width: none; margin: 0 auto 48px; }

.video-card {
  display: block; position: relative; width: min(100%, 940px); margin: 0 auto; padding: 0;
  aspect-ratio: 16 / 9; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: var(--green-deep); cursor: pointer;
  box-shadow: 0 44px 90px -46px rgba(20, 32, 27, 0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.video-card:hover { transform: translateY(-5px); box-shadow: 0 56px 100px -46px rgba(20, 32, 27, 0.6); }
.video-card:focus-visible { outline: 3px solid var(--emerald); outline-offset: 3px; }
.video-poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 96px; height: 96px; border-radius: 50%; background: var(--emerald); color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 34px rgba(31, 157, 102, 0.5);
  transition: transform 0.3s var(--ease);
}
.video-play::before {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(31, 157, 102, 0.5); animation: video-pulse 2.4s ease-out infinite;
}
@keyframes video-pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.4); opacity: 0; } }
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.09); }
.video-play svg { margin-left: 5px; }
.video-badge {
  position: absolute; left: 18px; bottom: 16px; font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.04em; color: #fff; background: rgba(11, 36, 27, 0.72); padding: 8px 14px; border-radius: 100px;
}

.video-modal {
  position: fixed; inset: 0; z-index: 100; background: rgba(6, 23, 16, 0.93);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal-inner { width: min(100%, 1120px); }
.video-modal-inner video { width: 100%; border-radius: 12px; display: block; background: #000; box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.8); }
.video-close {
  position: fixed; top: 22px; right: 28px; width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.14); color: #fff; border: 0; font-size: 30px; line-height: 1;
  cursor: pointer; transition: background 0.25s var(--ease);
}
.video-close:hover { background: rgba(255, 255, 255, 0.28); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 16px; padding-top: 8px; padding-bottom: 50px; min-height: 0; }
  .hero-stage { order: -1; margin-bottom: 20px; }
  .building-wrap { width: min(74%, 340px); }
  .annot-units { left: 0; } .annot-live { right: 0; }
  .live-inner { grid-template-columns: 1fr; gap: 34px; }
  .trust-inner { grid-template-columns: 1fr; gap: 34px; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 40px; }
  .features { grid-template-columns: repeat(2, 1fr); gap: 34px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 22px; }
  .nav-num { display: none; }
  .band { padding-block: 74px; }
  .features { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; gap: 44px; }
  .call-num { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .section-title { margin-bottom: 40px; }
  .waitlist-form { padding: 26px; }
  .annot { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .js .load, .js .reveal, .js .hero-title .ln > span { opacity: 1; transform: none; }
  .section-title.mask > span { transform: none; }
  .js .building { clip-path: none; }
  .marquee-track { animation: none; }
  .win { opacity: 0.34; animation: none; }
  .win:nth-child(3n) { opacity: 0.16; }
  .annot { opacity: 1; }
}
