/* FREQENCY site. Black design system.
   Palette: black, white, raspberry #D94F6E, gold #C8A44E. */

:root {
  --bg: #0A0A0B;
  --raise: #131316;
  --line: rgba(255, 255, 255, 0.09);
  --text: #F5F5F6;
  --muted: #A3A3AC;
  --rasp: #D94F6E;
  --rasp-soft: rgba(217, 79, 110, 0.14);
  --gold: #C8A44E;
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display { font-family: 'Archivo', sans-serif; }
.mono { font-family: 'Space Mono', monospace; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; border-bottom: 1px solid var(--line); }

/* ---------- nav ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.wordmark { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: 0.04em; color: var(--text); text-decoration: none; }
.wordmark i { font-style: normal; color: var(--rasp); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 0.92rem; font-weight: 600; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--rasp); }

.btn {
  display: inline-block; padding: 14px 28px; border-radius: 12px;
  font-weight: 700; font-size: 0.98rem; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease; cursor: pointer; border: none;
}
.btn-primary { background: linear-gradient(135deg, #E9587B, var(--rasp)); color: #fff; box-shadow: 0 4px 28px rgba(217, 79, 110, 0.45); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(233, 88, 123, 0.6); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.18); color: var(--text); background: transparent; }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--rasp); color: var(--rasp); box-shadow: 0 8px 32px rgba(217, 79, 110, 0.25); }
nav .btn-primary { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 4px 22px rgba(233, 88, 123, 0.55); }
.btn-sm { padding: 10px 20px; font-size: 0.86rem; }

/* ---------- hero ---------- */
.hero { padding: 96px 0 76px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before {
  content: ""; position: absolute; top: -340px; right: -140px;
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(217, 79, 110, 0.13), transparent 62%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Mono', monospace; font-size: clamp(0.6rem, 0.85vw, 0.72rem); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  padding: 9px 16px; border: 1px solid rgba(200, 164, 78, 0.38); border-radius: 999px;
  margin-bottom: 30px; background: rgba(200, 164, 78, 0.05);
  white-space: nowrap;
}
.eyebrow::before { content: "●"; font-size: 0.6rem; color: var(--gold); }
@media (max-width: 880px) { .eyebrow { white-space: normal; text-align: left; } }

h1 { font-size: clamp(3rem, 6.6vw, 5.2rem); font-weight: 900; line-height: 1.02; letter-spacing: -0.02em; }
h1 em { font-style: normal; color: var(--rasp); }
.hero .lead { margin: 26px 0 34px; font-size: 1.14rem; color: var(--muted); max-width: 560px; }
.hero .lead strong { color: var(--text); font-weight: 600; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-micro { font-family: 'Space Mono', monospace; font-size: 0.76rem; color: var(--muted); margin-top: 18px; letter-spacing: 0.04em; }
.cta-micro b { color: var(--gold); font-weight: 700; }

.hero-photo { position: relative; }
.hero-photo img { border-radius: 20px; border: 1px solid var(--line); aspect-ratio: 1 / 1; object-fit: cover; width: 100%; height: auto; }
.stat-chip {
  position: absolute; left: -52px; bottom: 34px;
  background: rgba(16, 16, 18, 0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.stat-chip .n { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.9rem; line-height: 1; }
.stat-chip .n i { font-style: normal; color: var(--rasp); }
.stat-chip .l { font-family: 'Space Mono', monospace; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.stat-chip--top { top: 26px; bottom: auto; }

.deal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 64px; position: relative; }
.deal > div { background: var(--raise); padding: 24px 18px; text-align: center; }
.deal .num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 2rem; color: var(--rasp); line-height: 1.1; }
.deal .lbl { font-size: 0.8rem; color: var(--muted); margin-top: 5px; }
.deal .fine { grid-column: 1 / -1; padding: 11px; font-family: 'Space Mono', monospace; font-size: 0.68rem; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* ---------- ticker ---------- */
.ticker { border-bottom: 1px solid var(--line); background: var(--raise); overflow: hidden; padding: 14px 0; }
.ticker-track { display: flex; width: max-content; animation: tick 42s linear infinite; }
.ticker span { white-space: nowrap; padding: 0 30px; font-size: 0.86rem; color: var(--muted); }
.ticker b { color: var(--text); }
.ticker .dot { color: var(--gold); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- shared section bits ---------- */
.kicker { font-family: 'Space Mono', monospace; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.01em; max-width: 740px; margin-bottom: 18px; }
h2 em { font-style: normal; color: var(--rasp); }
.sub { color: var(--muted); max-width: 620px; margin-bottom: 46px; font-size: 1.02rem; }

/* ---------- problem cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: relative; }
.card::before { content: ""; position: absolute; top: 0; left: 26px; width: 44px; height: 3px; background: var(--rasp); border-radius: 0 0 4px 4px; }
.card .tag { font-family: 'Space Mono', monospace; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 14px; }
.card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.94rem; color: var(--muted); }

/* ---------- calculator ---------- */
.panel { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding: 16px 26px; border-bottom: 1px solid var(--line); font-family: 'Space Mono', monospace; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.panel-head .pdot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--rasp); margin-right: 10px; }
.cur-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.cur-btn { font-family: 'Space Mono', monospace; font-size: 0.72rem; padding: 6px 14px; background: transparent; color: var(--muted); border: none; cursor: pointer; }
.cur-btn[aria-pressed="true"] { background: var(--rasp); color: #fff; }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; }
.panel-controls { padding: 32px; border-right: 1px solid var(--line); }
.ctl { margin-bottom: 30px; }
.ctl:last-child { margin-bottom: 0; }
.ctl-label { display: flex; justify-content: space-between; font-size: 0.92rem; font-weight: 600; margin-bottom: 12px; }
.ctl-value { color: var(--gold); font-family: 'Archivo', sans-serif; font-weight: 800; }
input[type="range"] { width: 100%; accent-color: var(--rasp); -webkit-appearance: none; appearance: none; height: 6px; background: rgba(255, 255, 255, 0.14); border-radius: 999px; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--rasp); border: 3px solid #fff; box-shadow: 0 2px 12px rgba(217, 79, 110, 0.5); cursor: grab; }
input[type="range"]::-moz-range-thumb { width: 28px; height: 28px; border-radius: 50%; background: var(--rasp); border: 3px solid #fff; box-shadow: 0 2px 12px rgba(217, 79, 110, 0.5); cursor: grab; }
input[type="range"]:active::-webkit-slider-thumb { cursor: grabbing; }
.ctl-scale { display: flex; justify-content: space-between; font-family: 'Space Mono', monospace; font-size: 0.68rem; color: var(--muted); margin-top: 8px; }
.ctl-fixed { font-family: 'Space Mono', monospace; font-size: 0.78rem; color: var(--muted); border: 1px dashed rgba(255, 255, 255, 0.18); border-radius: 10px; padding: 12px 16px; }
.ctl-fixed b { color: var(--text); }
.panel-readout { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.readout-label { font-size: 0.88rem; color: var(--muted); }
.readout-big { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(2.1rem, 4.6vw, 3.2rem); color: var(--rasp); margin: 8px 0 12px; line-height: 1; }
.readout-big span { font-size: 1.1rem; color: var(--muted); font-weight: 600; }
.readout-math { font-size: 0.84rem; color: var(--muted); margin-bottom: 20px; }
.readout-math b { color: var(--text); }
.readout-vs { border-top: 1px solid var(--line); padding-top: 18px; font-size: 0.92rem; color: var(--muted); }
.readout-vs div { display: flex; justify-content: space-between; padding: 5px 0; }
.readout-vs b { color: var(--text); }
.readout-vs .mult b { color: var(--gold); font-family: 'Archivo', sans-serif; font-size: 1.2rem; }
.panel-foot { padding: 15px 26px; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--muted); }
.panel-foot b { color: var(--rasp); }

/* ---------- how it works ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.step-card { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.step-card .n { font-family: 'Space Mono', monospace; font-size: 0.72rem; font-weight: 700; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-bottom: 14px; }
.step-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step-card h3 i { font-style: normal; color: var(--rasp); }
.step-card p { font-size: 0.94rem; color: var(--muted); }

/* ---------- proof ---------- */
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.proof { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.proof .who { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.proof blockquote { font-size: 1.03rem; line-height: 1.55; margin-bottom: 20px; }
.proof .nums { display: flex; gap: 36px; border-top: 1px solid var(--line); padding-top: 20px; }
.proof .num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--rasp); line-height: 1.1; }
.proof .lbl { font-size: 0.78rem; color: var(--muted); margin-top: 3px; }
.proof .hold-note { font-family: 'Space Mono', monospace; font-size: 0.68rem; color: var(--gold); margin-top: 14px; letter-spacing: 0.06em; }

.banner-quote { margin-bottom: 28px; text-align: center; padding: 52px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(ellipse at 50% 135%, rgba(200, 164, 78, 0.12), transparent 70%), var(--raise); }
.banner-quote p { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(1.4rem, 3.2vw, 2.1rem); line-height: 1.28; max-width: 780px; margin: 0 auto; }
.banner-quote p em { font-style: normal; color: var(--gold); }
.banner-quote .who { margin-top: 16px; font-family: 'Space Mono', monospace; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

.growth-story { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.growth-story h3 { font-size: 1.5rem; margin-bottom: 14px; }
.growth-story h3 i { font-style: normal; color: var(--rasp); }
.growth-story p { color: var(--muted); font-size: 0.96rem; margin-bottom: 12px; }
.growth-story p strong { color: var(--text); }
.growth-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.growth-nums > div { border: 1px solid var(--line); border-radius: 12px; padding: 20px; text-align: center; }
.growth-nums .num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--rasp); }
.growth-nums .lbl { font-family: 'Space Mono', monospace; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

.receipts { margin-top: 44px; }
.receipts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.receipts-grid figure { background: var(--raise); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.receipts-grid img { width: 100%; height: 220px; object-fit: cover; object-position: top; }
.receipts-grid figcaption { font-family: 'Space Mono', monospace; font-size: 0.66rem; color: var(--muted); padding: 12px 14px; letter-spacing: 0.04em; line-height: 1.5; }
@media (max-width: 880px) { .receipts-grid { grid-template-columns: repeat(2, 1fr); } }

.senja-shell { margin-top: 44px; min-height: 320px; }
.senja-note { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 18px; text-transform: uppercase; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; position: relative; }
.price.featured { border-color: rgba(217, 79, 110, 0.55); box-shadow: 0 12px 48px rgba(217, 79, 110, 0.12); }
.price .flag { position: absolute; top: -13px; left: 26px; font-family: 'Space Mono', monospace; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--rasp); color: #fff; padding: 5px 12px; border-radius: 999px; }
.price .spec { font-family: 'Space Mono', monospace; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.price h3 { font-size: 1.2rem; margin-bottom: 14px; }
.price .amount { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 3.1rem; line-height: 1; letter-spacing: -0.01em; }
.price .amount span:last-child { font-size: 1rem; color: var(--muted); font-weight: 500; }
.setup-line { font-family: 'Space Mono', monospace; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; color: var(--gold); margin-top: 12px; padding: 7px 12px; border: 1px solid rgba(200, 164, 78, 0.38); border-radius: 8px; display: inline-block; background: rgba(200, 164, 78, 0.06); }
.price ul { list-style: none; margin: 22px 0; }
.price li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); }
.price li:last-child { border: none; }
.price li::before { content: "→ "; color: var(--gold); font-weight: 700; }
.price-note { margin-top: 26px; text-align: center; font-size: 0.86rem; color: var(--muted); }
.price-note b { color: var(--text); }

/* ---------- trial ---------- */
.trial-box { border-radius: 18px; padding: 2px; background: linear-gradient(120deg, var(--rasp), var(--gold)); margin-top: 54px; }
.trial-in { background: var(--bg); border-radius: 16px; padding: 48px 44px; display: grid; grid-template-columns: 1.35fr 1fr; gap: 44px; align-items: center; }
.trial-in h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 14px; }
.trial-in h3 i { font-style: normal; color: var(--rasp); }
.trial-in p { color: var(--muted); margin-bottom: 12px; font-size: 0.98rem; }
.trial-in p strong { color: var(--text); }
.trial-points { list-style: none; font-size: 0.92rem; }
.trial-points li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.trial-points li::before { content: "→ "; color: var(--gold); font-weight: 700; }
.trial-points li:last-child { border: none; }

/* ---------- email capture ---------- */
.capture { margin-top: 54px; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(ellipse at 85% 0%, rgba(200, 164, 78, 0.1), transparent 55%), var(--raise); padding: 44px 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.capture h3 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 800; margin-bottom: 12px; }
.capture h3 i { font-style: normal; color: var(--gold); }
.capture p { color: var(--muted); font-size: 0.96rem; }
.capture form { display: flex; flex-direction: column; gap: 12px; }
.capture input[type="email"] { background: var(--bg); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 12px; padding: 15px 18px; color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.98rem; }
.capture input[type="email"]:focus { outline: 2px solid var(--gold); border-color: transparent; }
.capture .form-note { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- founders ---------- */
.founders { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; align-items: center; }
.founders img { border-radius: 20px; border: 1px solid var(--line); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; height: auto; }
.founders p { color: var(--muted); margin-bottom: 14px; font-size: 0.98rem; }
.founders p strong { color: var(--text); }
.founders a { color: var(--rasp); }

/* ---------- faq ---------- */
.faq { max-width: 820px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; background: var(--raise); }
.faq summary { padding: 20px 24px; font-weight: 700; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: 'Archivo', sans-serif; font-weight: 800; color: var(--gold); font-size: 1.3rem; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 24px 22px; color: var(--muted); font-size: 0.95rem; }
.faq .a strong { color: var(--text); }

/* ---------- final ---------- */
.final { text-align: center; border: none; position: relative; overflow: hidden; }
.final::before { content: ""; position: absolute; bottom: -280px; left: 50%; transform: translateX(-50%); width: 940px; height: 540px; background: radial-gradient(ellipse at center, rgba(217, 79, 110, 0.13), transparent 62%); pointer-events: none; }
.final h2 { margin: 0 auto 16px; }
.final .sub { margin: 0 auto 38px; }
.after-steps { display: flex; justify-content: center; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.after-step { max-width: 230px; text-align: left; }
.after-step .n { font-family: 'Space Mono', monospace; font-size: 0.74rem; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.after-step p { font-size: 0.87rem; color: var(--muted); margin-top: 8px; }

footer { padding: 40px 0; text-align: center; color: var(--muted); font-size: 0.83rem; border-top: 1px solid var(--line); }
footer a { color: var(--muted); }

/* ---------- featured proof card ---------- */
.proof.featured { grid-column: 1 / -1; border-color: rgba(217, 79, 110, 0.45); background: radial-gradient(ellipse at 90% 0%, rgba(217, 79, 110, 0.08), transparent 55%), var(--raise); }
.proof.featured blockquote { font-size: 1.15rem; }
.proof.featured .num { font-size: 2.3rem; }
.proof .hold-note a { color: var(--gold); }

/* ---------- who it's not for ---------- */
.notfor { margin-top: 54px; }
.notfor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.notfor-grid > div { border: 1px dashed rgba(255, 255, 255, 0.2); border-radius: 14px; padding: 22px; font-size: 0.9rem; color: var(--muted); }
.notfor-grid b { color: var(--text); display: block; margin-bottom: 6px; }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta { display: none; }
@media (max-width: 880px) {
  .sticky-cta { display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(10, 10, 11, 0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
  .sticky-cta .btn { display: block; text-align: center; }
  body { padding-bottom: 84px; }
  .notfor-grid { grid-template-columns: 1fr; }
}

/* ---------- trial page ---------- */
.journey { max-width: 860px; }
.tstep { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.tstep:last-child { border: none; }
.tstep .tn { font-family: 'Space Mono', monospace; font-size: 0.72rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; padding-top: 4px; }
.tstep .tn b { display: block; color: var(--text); font-size: 0.9rem; letter-spacing: 0.04em; }
.tstep h3 { font-size: 1.15rem; margin-bottom: 8px; }
.tstep p { font-size: 0.94rem; color: var(--muted); }
.tstep .milestone { margin-top: 12px; font-family: 'Space Mono', monospace; font-size: 0.72rem; color: var(--rasp); letter-spacing: 0.06em; text-transform: uppercase; }
.getneed { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.getneed .col { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.getneed h3 { font-size: 1.1rem; margin-bottom: 16px; }
.getneed ul { list-style: none; }
.getneed li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; color: var(--muted); }
.getneed li:last-child { border: none; }
.getneed .col-get li::before { content: "✓ "; color: var(--gold); font-weight: 700; }
.getneed .col-need li::before { content: "→ "; color: var(--rasp); font-weight: 700; }
.deposit-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.deposit-flow > div { border: 1px solid var(--line); border-radius: 14px; padding: 24px; background: var(--raise); }
.deposit-flow .dn { font-family: 'Space Mono', monospace; font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 10px; }
.deposit-flow p { font-size: 0.9rem; color: var(--muted); }
.deposit-flow b { color: var(--text); }
.app-form { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; max-width: 640px; }
.app-form label { display: block; font-size: 0.88rem; font-weight: 600; margin: 18px 0 8px; }
.app-form input, .app-form select, .app-form textarea { width: 100%; background: var(--bg); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 12px; padding: 14px 16px; color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.96rem; }
.app-form input:focus, .app-form select:focus, .app-form textarea:focus { outline: 2px solid var(--gold); border-color: transparent; }
.app-form textarea { min-height: 100px; resize: vertical; }
.app-form .btn { margin-top: 24px; width: 100%; text-align: center; }
.app-form .form-note { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--muted); display: block; margin-top: 14px; letter-spacing: 0.04em; }
.app-form .step-note { font-family: 'Space Mono', monospace; font-size: 0.72rem; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.app-form[hidden], #app-done[hidden] { display: none; }
.app-form .form-note a { color: var(--gold); }
@media (max-width: 880px) {
  .tstep { grid-template-columns: 1fr; gap: 8px; }
  .getneed, .deposit-flow { grid-template-columns: 1fr; }
  .app-form { padding: 28px 22px; }
}

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0, 0, 0, 0.9); display: flex; align-items: center; justify-content: center; padding: 24px; cursor: zoom-out; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(920px, 94vw); max-height: 90vh; width: auto; height: auto; border-radius: 12px; border: 1px solid var(--line); }
.receipts-grid figure { cursor: zoom-in; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0; }
  .hero-grid, .founders, .growth-story, .trial-in, .proof-grid, .panel-grid { grid-template-columns: 1fr; }
  .panel-controls { border-right: none; border-bottom: 1px solid var(--line); }
  .cards, .price-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .deal { grid-template-columns: repeat(2, 1fr); }
  .stat-chip { left: 12px; bottom: 16px; padding: 14px 18px; }
  .stat-chip--top { top: 16px; bottom: auto; }
  .nav-links a:not(.btn) { display: none; }
  .trial-in { padding: 32px 24px; }
}
