@import url('https://fonts.googleapis.com/css2?family=Anton&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #0B0B0C;
  --surface: #151517;
  --surface2: #1C1C1F;
  --border: rgba(255,255,255,0.09);
  --border-bright: rgba(255,255,255,0.2);
  --text: #F6F5F2;
  --muted: #95949A;
  --muted2: #CFCED3;
  --red: #F25C66;
  --red-light: #FF8A92;
  --red-dim: rgba(242,92,102,0.12);
  --red-glow: rgba(242,92,102,0.3);
  --gold: #E3B341;
  --display: 'Anton', 'Impact', sans-serif;
  --body: 'Manrope', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 56px; }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  height: 80px;
  background: rgba(8,8,9,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
nav .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 60px; width: auto; }
.nav-logo span { font-family: var(--display); font-size: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.plain {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: var(--muted2);
}
.nav-links a.plain:hover { color: var(--text); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--red); color: #0B0B0C;
  padding: 16px 34px;
  font-family: var(--body); font-size: 13px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  transition: background .2s, transform .2s;
}
.btn:hover { background: var(--red-light); transform: translateY(-2px); }
.btn.small { padding: 11px 26px; font-size: 12px; }
.btn.dark { background: var(--bg); color: var(--text); }
.btn.dark:hover { background: #222; }
.btn.ghost {
  background: transparent; color: var(--red);
  border: 1px solid var(--red); clip-path: none; padding: 11px 24px; font-size: 12px;
}
.btn.ghost:hover { background: var(--red-dim); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Type ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--red); }
h1, h2, h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; margin: 0; letter-spacing: 0.01em; }
h1 { font-size: clamp(54px, 8vw, 112px); line-height: 0.98; }
h2 { font-size: clamp(40px, 5.4vw, 76px); line-height: 1.02; }
h3 { font-size: 24px; line-height: 1.15; letter-spacing: 0.03em; }
.accent { color: var(--red); }
.lede { color: var(--muted2); font-size: 17px; line-height: 1.8; max-width: 52ch; }
.fine { color: var(--muted); font-size: 12px; }

section { padding: 120px 0; position: relative; }
.center { text-align: center; }
.center .eyebrow::after { content: ''; width: 36px; height: 1px; background: var(--red); }
.center .lede { margin-left: auto; margin-right: auto; }

/* ── Hero ── */
.hero { padding: 96px 0 110px; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 420px at 85% 10%, var(--red-dim), transparent 70%),
    linear-gradient(var(--border) 1px, transparent 1px) 0 0 / 100% 120px;
  opacity: .6;
  mask-image: linear-gradient(#000, transparent 85%);
}
.hero .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: center; position: relative; }
.hero h1 { margin: 26px 0 34px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--border-bright); background: var(--surface);
  padding: 8px 14px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--muted2);
}
.chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.hero .fine { margin-top: 16px; }

.hero-crest { text-align: center; }
.hero-crest img { width: min(100%, 460px); margin: 0 auto; filter: drop-shadow(0 0 60px var(--red-glow)); }
.hero-crest .tagline {
  display: inline-block; margin-top: 8px; padding: 14px 22px;
  background: var(--surface); border-left: 2px solid var(--red);
  font-size: 14px; font-style: italic; color: var(--muted2);
}
@media (max-width: 1000px) { .hero-crest img { width: min(70%, 320px); } }

.photo-card { position: relative; }
.photo-card .frame { position: relative; border: 1px solid var(--border-bright); overflow: hidden; }
.photo-card img { width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover; filter: saturate(.92) contrast(1.04); }
.photo-card .frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(8,8,9,.92));
}
.photo-card .caption { position: absolute; left: 24px; bottom: 20px; z-index: 2; }
.photo-card .caption strong { display: block; font-family: var(--display); font-weight: 400; font-size: 24px; letter-spacing: 0.05em; text-transform: uppercase; }
.photo-card .caption span { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.photo-card .tagline {
  margin-top: 18px; padding: 16px 20px;
  background: var(--surface); border-left: 2px solid var(--red);
  font-size: 14px; font-style: italic; color: var(--muted2);
}
.photo-card::after {
  content: ''; position: absolute; right: -12px; bottom: -12px; width: 56px; height: 56px;
  border-right: 2px solid var(--red); border-bottom: 2px solid var(--red);
}

/* ── Stat strip ── */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); padding: 0; }
.strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 40px 28px; text-align: center; border-left: 1px solid var(--border); }
.stat:first-child { border-left: none; }
.stat strong { display: block; font-family: var(--display); font-weight: 400; font-size: 40px; color: var(--red); text-transform: uppercase; line-height: 1.1; }
.stat span { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ── Reasons ── */
.split-head { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; margin-bottom: 72px; }
.split-head h2 { margin-top: 22px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.card { background: var(--surface); padding: 44px 36px 48px; position: relative; overflow: hidden; transition: background .25s; }
.card:hover { background: var(--surface2); }
.card .num { position: absolute; top: 14px; right: 22px; font-family: var(--display); font-size: 84px; line-height: 1; color: rgba(255,255,255,0.05); }
.card svg { width: 34px; height: 34px; stroke: var(--red); fill: none; stroke-width: 1.6; margin-bottom: 26px; }
.card h3 { margin-bottom: 14px; }
.card p { margin: 0; color: var(--muted2); font-size: 15px; line-height: 1.75; }
.perks { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-top: none; }
.perk { background: var(--bg); padding: 24px 12px; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted2); }

/* ── Banner ── */
.banner { background: var(--red); color: #0B0B0C; padding: 84px 0; overflow: hidden; }
.banner .ghost-word {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: clamp(90px, 17vw, 240px); text-transform: uppercase; white-space: nowrap;
  color: rgba(0,0,0,0.08); pointer-events: none; line-height: 1;
}
.banner .wrap { position: relative; text-align: center; }
.banner p { font-size: clamp(20px, 2.6vw, 30px); font-weight: 500; font-style: italic; max-width: 26ch; margin: 0 auto 32px; line-height: 1.4; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 72px; }
.step { background: var(--surface); padding: 40px 30px 44px; text-align: left; }
.step .n { font-family: var(--display); font-size: 52px; color: var(--red); line-height: 1; margin-bottom: 22px; }
.step h3 { margin-bottom: 12px; }
.step p { margin: 0; color: var(--muted2); font-size: 14.5px; line-height: 1.75; }
.step .tag { display: inline-block; margin-top: 18px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }

/* ── Leader ── */
.leader { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: center; }
.leader .portrait { border: 1px solid var(--border-bright); position: relative; }
.leader .portrait img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.leader .portrait::before {
  content: ''; position: absolute; left: -12px; top: -12px; width: 56px; height: 56px;
  border-left: 2px solid var(--red); border-top: 2px solid var(--red);
}
.leader h2 { margin: 22px 0 8px; }
.leader .role { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 28px; }
.leader p { color: var(--muted2); font-size: 16px; line-height: 1.85; margin: 0 0 18px; max-width: 58ch; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 36px; }
.tags span { border: 1px solid var(--border-bright); padding: 6px 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted2); }
blockquote {
  margin: 28px 0; padding: 22px 26px; background: var(--surface); border-left: 2px solid var(--red);
  font-size: 17px; font-style: italic; color: var(--text); line-height: 1.7;
}

/* ── Team band ── */
.teamband { padding: 0; }
.teamband .img { height: min(62vh, 560px); background: url('team.jpg') center 30% / cover no-repeat; position: relative; }
.teamband .img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(var(--bg), rgba(11,11,12,.25) 30%, rgba(11,11,12,.35) 60%, var(--bg)); }
.teamband .over { position: absolute; left: 0; right: 0; bottom: 56px; z-index: 2; text-align: center; }
.teamband .over h2 { font-size: clamp(34px, 4.6vw, 64px); }

/* ── FAQ ── */
.faq { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; }
.faq .left { position: sticky; top: 120px; }
.faq h2 { margin: 22px 0 24px; }
.faq .lede { margin-bottom: 32px; }
details { border-bottom: 1px solid var(--border); }
details:first-of-type { border-top: 1px solid var(--border); }
summary {
  list-style: none; cursor: pointer; padding: 26px 4px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 17px; font-weight: 700;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-family: var(--display); font-size: 26px; color: var(--red); transition: transform .2s; flex-shrink: 0; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 0; padding: 0 40px 28px 4px; color: var(--muted2); font-size: 15.5px; line-height: 1.8; }

/* ── Final CTA ── */
.final { text-align: center; border-top: 1px solid var(--border); background: radial-gradient(800px 400px at 50% 0%, var(--red-dim), transparent 70%); }
.final h2 { margin: 22px 0 26px; }
.final .lede { margin: 0 auto 40px; }
.final .fine { margin-top: 18px; }

/* ── Footer ── */
footer { border-top: 1px solid var(--border); padding: 64px 0 48px; background: #080809; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; margin-bottom: 48px; }
.foot img { height: 110px; width: auto; margin-bottom: 16px; }
.foot p { color: var(--muted); font-size: 14px; max-width: 44ch; margin: 0; }
.foot h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin: 0 0 18px; }
.foot a { display: block; color: var(--muted2); text-decoration: none; font-size: 14px; margin-bottom: 10px; }
.foot a:hover { color: var(--text); }
.legal { border-top: 1px solid var(--border); padding-top: 28px; color: var(--muted); font-size: 11.5px; line-height: 1.8; }
.legal p { margin: 0 0 10px; }

/* ── Onboarding page ── */
.ob-hero { padding: 80px 0 56px; text-align: center; }
.ob-hero img.crest { height: 170px; width: auto; margin: 0 auto 8px; }
.ob-hero h1 { font-size: clamp(44px, 6.4vw, 84px); margin: 18px 0 20px; }
.ob-section { padding: 56px 0; }
.ob-section .wrap { max-width: 980px; }
.ob-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 28px; border-bottom: 1px solid var(--border); padding-bottom: 18px; }
.ob-head .n { font-family: var(--display); font-size: 40px; color: var(--red); line-height: 1; }
.ob-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.ob-head p { margin: 0 0 0 auto; color: var(--muted); font-size: 13px; text-align: right; }
.ob-list { display: grid; gap: 12px; }
.ob-link {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px;
  background: var(--surface); border: 1px solid var(--border); padding: 22px 26px;
  text-decoration: none; transition: border-color .2s, background .2s, transform .2s;
}
.ob-link:hover { border-color: var(--red); background: var(--surface2); transform: translateX(4px); }
.ob-link svg { width: 28px; height: 28px; stroke: var(--red); fill: none; stroke-width: 1.6; }
.ob-link strong { display: block; font-family: var(--display); font-weight: 400; font-size: 21px; letter-spacing: 0.04em; text-transform: uppercase; }
.ob-link span { color: var(--muted); font-size: 13.5px; }
.ob-link em { font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--red); white-space: nowrap; }
.ob-link.primary { border-color: var(--red); background: var(--red-dim); }
.ob-figure { border: 1px solid var(--border-bright); margin: 0 0 12px; background: #F4F1EC; }
.ob-figure img { width: 100%; }
.ob-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ob-video { background: var(--surface); border: 1px solid var(--border); text-decoration: none; display: block; transition: border-color .2s; }
.ob-video:hover { border-color: var(--red); }
.ob-video .thumb { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; }
.ob-video .thumb::after {
  content: ''; position: absolute; left: 14px; bottom: 14px; width: 40px; height: 40px;
  border-radius: 50%; background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 7l9 5-9 5z' fill='%230B0B0C'/%3E%3C/svg%3E") center / 22px no-repeat;
}
.ob-video strong { display: block; padding: 16px 20px; font-family: var(--display); font-weight: 400; font-size: 18px; letter-spacing: 0.05em; text-transform: uppercase; }

.sched { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; }
.sched-day { background: var(--surface); border: 1px solid var(--border); padding: 22px; }
.sched-day h3 { font-size: 22px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.slot { display: flex; align-items: baseline; gap: 14px; padding: 12px 14px; margin-top: 8px; border-left: 3px solid var(--red); background: var(--bg); }
.slot.hmw { border-left-color: var(--gold); }
.slot b { font-family: var(--display); font-weight: 400; font-size: 17px; letter-spacing: 0.04em; white-space: nowrap; min-width: 78px; }
.slot span { font-size: 13.5px; color: var(--muted2); font-weight: 600; }
@media (max-width: 760px) { .sched { grid-template-columns: 1fr; } }

/* ── Studio form embeds ── */
[hidden] { display: none !important; }
.studio-form { position: relative; min-height: 320px; }
.studio-form iframe { display: block; width: 100%; min-height: 520px; border: 0; background: transparent; color-scheme: light; }
.studio-form.is-compact { min-height: 260px; }
.studio-form.is-compact iframe { min-height: 320px; }
.studio-form.is-loading::before {
  content: ''; position: absolute; inset: 8px 16px; border-radius: 24px; z-index: 1;
  background: linear-gradient(100deg, var(--surface) 40%, var(--surface2) 50%, var(--surface) 60%) 0 0 / 200% 100%;
  animation: shim 1.4s linear infinite;
}
@keyframes shim { to { background-position: -200% 0; } }
.form-fallback { margin: 10px 0 0; text-align: center; font-size: 12px; color: var(--muted); }
.form-fallback a { color: var(--muted2); }

.modal-overlay {
  position: fixed; inset: 0; z-index: 900; display: none;
  background: rgba(4,4,5,0.82); backdrop-filter: blur(8px);
  align-items: flex-start; justify-content: center; padding: 5vh 16px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; animation: fade .2s ease; }
@keyframes fade { from { opacity: 0; } }
.modal-box {
  position: relative; width: 100%; max-width: 920px; outline: none;
  background: var(--surface); border: 1px solid var(--border-bright); border-top: 2px solid var(--red);
  padding: 44px 12px 20px;
}
.modal-close {
  position: absolute; top: 8px; right: 12px; width: 36px; height: 36px;
  background: none; border: none; color: var(--muted2); font-size: 28px; line-height: 1; cursor: pointer;
}
.modal-close:hover { color: var(--red); }

.loop { border-top: 1px solid var(--border); background: var(--surface); }
.loop-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width: 1000px) { .loop-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .wrap { padding: 0 28px; }
  section { padding: 84px 0; }
  .hero { padding: 56px 0 80px; }
  .hero .wrap, .split-head, .leader, .faq { grid-template-columns: 1fr; gap: 48px; }
  .faq .left { position: static; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .perks { grid-template-columns: repeat(3, 1fr); }
  .strip .wrap { grid-template-columns: 1fr 1fr; padding: 0; }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--border); }
  .foot { grid-template-columns: 1fr; gap: 36px; }
  .leader .portrait { max-width: 420px; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  nav { height: 68px; }
  .nav-logo img { height: 48px; }
  .nav-logo span, .nav-links a.plain { display: none; }
  .steps, .ob-grid { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr 1fr; }
  .stat strong { font-size: 30px; }
  .stat { padding: 28px 12px; }
  .btn { padding: 15px 26px; font-size: 12px; }
  .ob-link { grid-template-columns: auto 1fr; padding: 18px; gap: 16px; }
  .ob-link em { display: none; }
  .ob-head { flex-wrap: wrap; }
  .ob-head p { margin-left: 0; text-align: left; width: 100%; }
  details p { padding-right: 8px; }
}

[id] { scroll-margin-top: 96px; }
