/* ============================================================
   Circle. — Landing Page (web-native, inspired by deck)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=JetBrains+Mono:wght@300;400;500&display=swap');

:root {
  --bg:        #0C1813;      /* slightly lifted from deck's 0A1410 for web */
  --bg-2:      #0F2019;
  --bg-card:   #143226;
  --bg-cream:  #F5EFDF;
  --ink:       #0A1410;
  --cream:     #F2ECDC;
  --bone:      #D8D1BC;
  --bone-dim:  rgba(232, 226, 210, 0.55);
  --bone-faint:rgba(232, 226, 210, 0.22);
  --lime:      #C8DB4E;
  --lime-dim:  rgba(200, 219, 78, 0.5);
  --hairline:  rgba(232, 226, 210, 0.14);
  --hairline-2:rgba(232, 226, 210, 0.28);

  --display: 'Playfair Display', 'Didot', Georgia, serif;
  --mono:    'JetBrains Mono', 'IBM Plex Mono', monospace;

  --max: 1440px;
  --gut: clamp(24px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body { font-size: 18px; line-height: 1.55; position: relative; }

/* (skyline moved into hero) */

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

/* ─── CONTAINER ─── */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }

/* ─── TYPE ─── */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime);
}
.eyebrow.dim { color: var(--bone-dim); }

.display {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--cream);
  margin: 0;
}
.display .ital { font-style: italic; color: var(--lime); font-weight: 500; }
.display .w { color: var(--cream); font-style: normal; }

.h1 { font-size: clamp(56px, 9.5vw, 148px); }
.h2 { font-size: clamp(44px, 6.5vw, 96px); line-height: 1.04; }
.h3 { font-size: clamp(32px, 4vw, 56px); line-height: 1.08; }

.lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.35;
  color: var(--cream);
  max-width: 900px;
}
.body { font-size: clamp(16px, 1.2vw, 20px); line-height: 1.6; color: var(--bone); }

.rule      { height: 1px; border: 0; background: var(--hairline); margin: 0; }
.rule-lime { height: 1px; border: 0; background: var(--lime); width: 64px; margin: 0; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px var(--gut);
  display: flex; align-items: center; justify-content: space-between;
  pointer-events: none;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(12, 24, 19, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.nav > * { pointer-events: auto; }
.nav .mark img { height: 30px; display: block; }
.nav-cta {
  border: 1px solid var(--lime);
  color: var(--lime);
  padding: 12px 22px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--lime); color: var(--ink); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: var(--bg);
}
.hero-photo { display: none; }
.hero-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(12,24,19,0.55) 0%,
      rgba(12,24,19,0.25) 30%,
      rgba(12,24,19,0.35) 65%,
      rgba(12,24,19,0.95) 100%);
  mix-blend-mode: normal;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-chrome {
  position: relative; z-index: 2;
  padding: 100px var(--gut) 0;
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--bone-dim);
}
.hero-chrome .dot { color: var(--lime); }

.hero-body {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px var(--gut) 60px;
  max-width: calc(var(--max) + var(--gut) * 2);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 32px;
}
.hero-title { font-size: clamp(76px, 13vw, 200px); line-height: 0.92; }
.hero-title .ital { font-size: 0.78em; display: block; margin-top: 6px; }
.hero-lede {
  margin-top: 36px;
  max-width: 640px;
}
.hero-ctas { margin-top: 56px; display: flex; gap: 18px; flex-wrap: wrap; }
.btn {
  padding: 18px 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.btn-primary:hover { background: transparent; color: var(--lime); }
.btn-ghost { border-color: var(--hairline-2); color: var(--cream); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-foot {
  position: relative; z-index: 2;
  padding: 0 var(--gut) 42px;
  display: flex; justify-content: space-between; align-items: end;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--bone-dim);
  gap: 24px;
}
.hero-foot .scroll { display: flex; align-items: center; gap: 14px; }
.hero-foot .scroll .line {
  width: 40px; height: 1px; background: var(--lime); display: inline-block;
}

/* ─── SECTION ─── */
.section {
  padding: clamp(96px, 14vw, 180px) 0;
  position: relative;
}
.section-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}
.section-num .roman { color: var(--lime); }
.section-num .dot { color: var(--bone-dim); padding: 0 8px; }
.section-num .name { color: var(--bone-dim); }

.section-title { margin: 0; }

/* ─── MANIFESTO SLAB ─── */
.slab {
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.slab .wrap { display: grid; gap: 72px; grid-template-columns: 1fr; }
.slab h2 { font-size: clamp(56px, 8vw, 120px); line-height: 1.0; }
.slab .two { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.slab .card {
  background: var(--bg);
  padding: 44px;
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 18px;
}
.slab .card.right {
  background: var(--bg-card);
  border-color: var(--bg-card);
}
.slab .numlist { display: flex; flex-direction: column; gap: 16px; }
.slab .numlist .item { display: grid; grid-template-columns: 32px 1fr; gap: 20px; align-items: start; }
.slab .numlist .n {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em;
  color: var(--bone-dim); line-height: 1.8;
}
.slab .numlist .t { color: var(--bone); font-size: 19px; line-height: 1.5; }
.slab .card.right .n { color: var(--lime); }
.slab .card.right .t { color: var(--cream); }

/* ─── PROBLEM SECTION ─── */
.problem-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; margin-top: 72px;
}
.stat {
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.stat .ri {
  font-family: var(--mono); font-size: 13px;
  color: var(--lime); letter-spacing: 0.2em;
}
.stat .big {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.stat .lbl { color: var(--bone-dim); font-size: 17px; line-height: 1.4; max-width: 280px; }

/* ─── PRODUCT ─── */
.product {
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.product-hd {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: end;
}

/* swipe card demo */
.swipe-stage {
  margin-top: 72px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.swipe-copy .eyebrow { margin-bottom: 20px; }
.swipe-deck {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  perspective: 1200px;
}
.swipe-card {
  position: absolute; inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--hairline-2);
  padding: 36px;
  display: flex; flex-direction: column; gap: 14px;
  transform-origin: center bottom;
  cursor: grab;
  will-change: transform, opacity;
  user-select: none;
  transition: box-shadow 0.25s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.swipe-card:active { cursor: grabbing; }
.swipe-card.behind-1 { transform: translateY(18px) scale(0.96); opacity: 0.6; }
.swipe-card.behind-2 { transform: translateY(36px) scale(0.92); opacity: 0.25; }
.swipe-card.gone-l   { transform: translateX(-140%) rotate(-16deg); opacity: 0; transition: transform 0.5s cubic-bezier(.22,.9,.35,1), opacity 0.5s; }
.swipe-card.gone-r   { transform: translateX(140%) rotate(16deg); opacity: 0; transition: transform 0.5s cubic-bezier(.22,.9,.35,1), opacity 0.5s; }

.swipe-card .nm { font-family: var(--display); font-size: 44px; color: var(--cream); line-height: 1; letter-spacing: -0.01em; }
.swipe-card .role { color: var(--bone-dim); font-size: 16px; }
.swipe-card .deal {
  font-family: var(--display); font-style: italic;
  font-size: 24px; color: var(--lime);
  border-top: 1px solid var(--hairline-2);
  padding-top: 18px; margin-top: 4px;
}
.swipe-card .seek-hd { font-family: var(--mono); font-size: 10px; letter-spacing: 0.26em; color: var(--bone-dim); text-transform: uppercase; margin-top: 10px; }
.swipe-card .seek { font-size: 15px; color: var(--bone); line-height: 1.4; }
.swipe-card .tags { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }
.swipe-card .tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em;
  padding: 6px 10px; border: 1px solid var(--hairline-2);
  color: var(--bone-dim); text-transform: uppercase;
}
.swipe-card .verified { color: var(--lime); border-color: rgba(200, 219, 78, 0.35); }
.swipe-card .stamp {
  position: absolute; top: 30px;
  font-family: var(--mono); font-size: 18px; letter-spacing: 0.3em;
  padding: 8px 14px;
  border: 2px solid;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
  text-transform: uppercase;
}
.swipe-card .stamp.pass { left: 30px; color: #ff6b6b; border-color: #ff6b6b; transform: rotate(-18deg); }
.swipe-card .stamp.match { right: 30px; color: var(--lime); border-color: var(--lime); transform: rotate(18deg); }

.swipe-buttons {
  margin-top: 36px;
  display: flex; gap: 16px; justify-content: center;
}
.swipe-btn {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid var(--hairline-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: all 0.2s;
}
.swipe-btn:hover { border-color: var(--lime); color: var(--lime); }
.swipe-btn.yes { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.swipe-btn.yes:hover { background: transparent; color: var(--lime); }

/* phone marquee */
.phones {
  margin-top: 120px;
  position: relative;
}
.phones-hd {
  text-align: center;
  margin-bottom: 56px;
}
.phones-rail {
  display: flex; gap: 36px;
  overflow-x: auto;
  padding: 20px calc((100vw - var(--max)) / 2 + var(--gut)) 40px;
  scrollbar-width: none;
}
.phones-rail::-webkit-scrollbar { display: none; }
.phone {
  flex: 0 0 230px;
  height: 470px;
  border-radius: 34px;
  border: 1px solid var(--hairline-2);
  background: #000;
  padding: 9px;
  position: relative;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}
.phone-notch {
  width: 92px; height: 18px; background: #000; border-radius: 0 0 12px 12px;
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.phone-scr {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 26px;
  padding: 30px 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
  overflow: hidden;
}
.phone-cap {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em;
  color: var(--bone-dim); text-transform: uppercase;
}
.phone-wrap { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.phone-wrap .label {
  font-family: var(--mono); font-size: 11px;
  color: var(--bone-dim); letter-spacing: 0.22em; text-transform: uppercase;
}

/* ─── TIERS ─── */
.tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 72px;
}
.tier {
  padding: 44px 36px;
  border: 1px solid var(--hairline);
  background: var(--bg-2);
  display: flex; flex-direction: column; gap: 20px;
  min-height: 460px;
  transition: border-color 0.25s, transform 0.25s;
}
.tier:hover { border-color: var(--hairline-2); transform: translateY(-4px); }
.tier.hl { border-color: var(--lime); background: var(--bg-card); }
.tier .nm { font-family: var(--display); font-size: 42px; color: var(--cream); letter-spacing: -0.01em; }
.tier.hl .nm { color: var(--lime); }
.tier .pr { display: flex; align-items: baseline; gap: 8px; font-family: var(--display); color: var(--cream); }
.tier .pr-big { font-size: 56px; letter-spacing: -0.02em; }
.tier .pr-unit { font-size: 18px; color: var(--bone-dim); font-family: var(--mono); letter-spacing: 0.18em; text-transform: uppercase; }
.tier .ds { color: var(--bone); line-height: 1.5; font-size: 16px; }
.tier .feats { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 12px; }
.tier .feats li { font-size: 15px; color: var(--bone); padding-left: 22px; position: relative; line-height: 1.45; }
.tier .feats li::before {
  content: '✦'; color: var(--lime); position: absolute; left: 0; top: 1px;
  font-size: 11px;
}
.tier .ba {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--lime); align-self: flex-start;
  border: 1px solid var(--lime); padding: 4px 10px;
}
.tier .apply {
  margin-top: auto;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--cream);
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.2s;
}
.tier .apply:hover { color: var(--lime); }
.tier.hl .apply { color: var(--lime); border-top-color: rgba(200, 219, 78, 0.3); }

/* ─── MARQUEE ─── */
.marquee {
  padding: 40px 0;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 55s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 52px);
  letter-spacing: -0.01em;
  color: var(--cream);
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee-item .ital { font-style: italic; color: var(--lime); }
.marquee-item .sep { color: var(--bone-faint); font-size: 0.5em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── PROOF ─── */
.proof {
  background: var(--bg);
}
.proof-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.proof .foot {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--bone-dim);
  gap: 16px; flex-wrap: wrap;
}
.proof .foot .lime { color: var(--lime); }

/* ─── ELITER PARENT ─── */
.parent {
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
}
.parent .wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.parent-group {
  background: var(--bg-card);
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.parent-group .pg-item { display: flex; flex-direction: column; gap: 4px; }
.parent-group .pg-item .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; color: var(--lime); text-transform: uppercase; }
.parent-group .pg-item .txt { color: var(--bone); font-size: 16px; line-height: 1.4; }
.parent-group hr { height: 1px; background: rgba(232, 226, 210, 0.1); border: 0; }

/* ─── APPLY ─── */
.apply-section {
  background: var(--bg);
  text-align: center;
}
.apply-section .wrap { display: flex; flex-direction: column; align-items: center; gap: 36px; }
.apply-section h2 { max-width: 1100px; }
.apply-section .lede { text-align: center; }
.apply-section .btn { padding: 22px 48px; font-size: 13px; }

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--hairline);
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--hairline);
}
.footer-brand img { height: 34px; margin-bottom: 18px; }
.footer-brand p { color: var(--bone-dim); font-size: 15px; line-height: 1.5; max-width: 280px; }
.footer-col h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--lime); margin: 0 0 20px; font-weight: 400;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--bone); font-size: 15px; transition: color 0.2s; }
.footer-col a:hover { color: var(--lime); }
.footer-news p { color: var(--bone); font-size: 14px; line-height: 1.4; margin: 0 0 18px; }
.footer-news form { display: flex; border: 1px solid var(--hairline-2); }
.footer-news input {
  flex: 1; background: transparent; border: 0; padding: 14px 16px;
  color: var(--cream); font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
}
.footer-news input::placeholder { color: var(--bone-dim); }
.footer-news input:focus { outline: none; background: rgba(200, 219, 78, 0.04); }
.footer-news button {
  background: var(--lime); color: var(--ink);
  padding: 14px 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.footer-news button:hover { background: var(--cream); }

.footer-bot {
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone-dim);
}
.footer-bot .socials { display: flex; gap: 22px; }

/* ─── MODAL (apply form) ─── */
.modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 12, 9, 0.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: none; align-items: center; justify-content: center;
  padding: 40px 20px;
  opacity: 0; transition: opacity 0.3s;
}
.modal.on { display: flex; opacity: 1; }
.modal-box {
  background: var(--bg);
  border: 1px solid var(--hairline-2);
  max-width: 720px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 56px;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.3s;
}
.modal.on .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 22px; right: 22px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bone-dim); font-size: 20px;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--lime); }
.modal-steps {
  display: flex; gap: 8px; margin-bottom: 32px;
}
.modal-step-dot {
  flex: 1; height: 2px; background: var(--hairline);
  transition: background 0.3s;
}
.modal-step-dot.active, .modal-step-dot.done { background: var(--lime); }
.modal-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.26em;
  color: var(--lime); text-transform: uppercase; margin-bottom: 14px;
}
.modal-title {
  font-family: var(--display); font-size: 40px; font-weight: 500;
  line-height: 1.05; letter-spacing: -0.01em; color: var(--cream);
  margin: 0 0 10px;
}
.modal-title .ital { font-style: italic; color: var(--lime); }
.modal-sub {
  color: var(--bone-dim); font-size: 16px; line-height: 1.5; margin: 0 0 28px;
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--bone-dim); text-transform: uppercase;
}
.field input, .field textarea, .field select {
  background: transparent;
  border: 0; border-bottom: 1px solid var(--hairline-2);
  color: var(--cream);
  font-family: var(--display);
  font-size: 18px;
  padding: 10px 0;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-bottom-color: var(--lime);
}
.field textarea { resize: vertical; min-height: 80px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 10px 18px;
  border: 1px solid var(--hairline-2);
  color: var(--bone);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}
.chip:hover { border-color: var(--lime); color: var(--lime); }
.chip.on { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.modal-nav {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
}
.modal-back {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--bone-dim); text-transform: uppercase;
}
.modal-back:hover { color: var(--cream); }
.modal-done {
  text-align: center; padding: 40px 0;
}
.modal-done .big {
  font-family: var(--display); font-size: 48px; line-height: 1.1;
  color: var(--cream); margin: 12px 0;
}
.modal-done .big .ital { font-style: italic; color: var(--lime); }

/* ─── REVEALS ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.22,.9,.35,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero-title { font-size: clamp(64px, 18vw, 140px); }
  .problem-stats, .tiers, .proof-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .slab .two, .product-hd, .swipe-stage, .parent .wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  :root { --gut: 20px; }
  body { font-size: 16px; }
  .hero-chrome { padding-top: 78px; font-size: 10px; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
  .problem-stats, .tiers, .proof-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 32px 22px; }
  .modal-title { font-size: 28px; }
  .nav-cta { padding: 10px 16px; font-size: 10px; }
  .marquee-item { font-size: 32px; gap: 40px; }
  .marquee-track { gap: 40px; }
}
