/* ============================================================
   STRONG BODY · LAB — premium minimal landing
   ============================================================ */

:root {
  --display: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --body:    'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  /* Light, warm-paper palette */
  --bg:        #fafaf7;
  --bg-2:     #f3f1ec;
  --paper:    #ffffff;
  --ink:      #0a0a0a;
  --ink-2:    #1a1a1a;
  --muted:    #6c6a64;
  --dim:      #aeaba3;
  --line:     #e6e3dc;
  --hairline: #d8d5cd;

  /* Dark sections (inverse) */
  --ink-dark:    #0a0a0a;
  --ink-dark-2:  #141414;
  --on-dark:     #f6f4ee;
  --on-dark-mute:#8a8780;
  --on-dark-line:#262524;

  /* Accent (warm coral, oklch) */
  --accent:     oklch(0.66 0.16 38);
  --accent-2:   oklch(0.58 0.17 36);
  --accent-soft:oklch(0.93 0.04 50);

  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 64px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}

/* utility */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.section { padding: clamp(80px, 10vw, 160px) var(--pad-x); }
.section-tight { padding: clamp(60px, 7vw, 120px) var(--pad-x); }
.wrap { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.wrap-wide { max-width: 1480px; margin: 0 auto; width: 100%; }

.muted { color: var(--muted); }
.dim   { color: var(--dim); }

/* dark variant inside sections */
.dark {
  background: var(--ink-dark);
  color: var(--on-dark);
}
.dark .muted { color: var(--on-dark-mute); }
.dark .eyebrow { color: var(--on-dark-mute); }
.dark .hairline-bd { border-color: var(--on-dark-line); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(250, 250, 247, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}
.nav-logo .logo-sep { opacity: 0.4; font-weight: 400; }
.nav-logo .logo-lab { font-weight: 600; color: var(--accent); }
.footer-tagline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -8px;
}
.nav-logo .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-link:hover { background: rgba(0,0,0,0.04); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 14px;
}
.lang-switch {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch button {
  padding: 6px 12px;
  color: var(--muted);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.lang-switch button.on {
  color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.nav-cta:hover { background: var(--accent); }

.mobile-toggle { display: none; width: 36px; height: 36px; border-radius: 50%; }
.mobile-toggle svg { margin: 0 auto; }

@media (max-width: 880px) {
  .nav-links, .nav-right .lang-switch { display: none; }
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: 80px var(--pad-x) 32px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  visibility: hidden;
}
.drawer.show { transform: translateY(0); visibility: visible; }
.drawer-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}
.drawer-close:hover { background: var(--ink); color: var(--bg); }
.drawer-links {
  display: grid;
  gap: 4px;
  margin-bottom: auto;
}
.drawer-links a {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 7vw, 40px);
  letter-spacing: -0.025em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.drawer-links a .arrow {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}
.drawer-foot {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}
.drawer-foot .btn { width: 100%; justify-content: center; }
.drawer-contacts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.drawer-contacts a {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
}
.drawer-contacts a:hover { border-color: var(--ink); }
body.drawer-open { overflow: hidden; }

/* ============================================================
   RESPONSIVE POLISH (tablets, phones, small phones)
   ============================================================ */
@media (max-width: 768px) {
  /* tighten section paddings on tablet portrait + smaller */
  .section { padding: clamp(64px, 12vw, 110px) var(--pad-x); }
  .hero { padding-top: clamp(28px, 6vw, 56px); }
  .hero-portrait { min-height: 360px; }
  .portrait { min-height: 360px; }

  /* hero badge - smaller, full-width on narrow */
  .hero-badge {
    bottom: 14px; right: 14px; left: 14px;
    max-width: none;
    padding: 12px 14px;
  }
  .badge-text { font-size: 12px; }

  /* about: portrait smaller, less tall */
  .about-portrait { aspect-ratio: 4 / 4; }

  /* pricing: smaller padding */
  .tier { padding: 24px; }
  .tier-price .v { font-size: 36px; }

  /* finale: less padding so doesn't fill all screen */
  .finale { padding: clamp(70px, 14vw, 160px) var(--pad-x); }

  /* modal: less padding */
  .modal { padding: 32px 24px; }
  .modal h3 { font-size: 24px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .nav-inner { height: 52px; }
  .nav-logo { font-size: 13px; }
  .nav-cta { padding: 7px 12px; font-size: 11px; }

  .hero h1 { font-size: clamp(34px, 9vw, 56px); line-height: 1; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-stats > div:nth-child(3) { grid-column: 1 / -1; }
  .stat-b { font-size: 24px; }
  .stat-s { font-size: 10px; }

  .section-head h2 { font-size: clamp(32px, 8vw, 48px); }
  .pain-card { padding: 22px; min-height: 240px; }
  .pain-card h3 { font-size: 19px; }

  .inside-row { padding: 28px 0; }
  .inside-row h3 { font-size: 22px; }

  .about-right h2 { font-size: clamp(32px, 8vw, 48px); }
  .about-lede { font-size: 16px; }
  .tl-row { grid-template-columns: 60px 1fr; padding: 22px 0; gap: 16px; }
  .tl-y { font-size: 12px; }
  .tl-t { font-size: 17px; }
  .tl-s { font-size: 13px; }

  .case-meta { padding: 20px 22px 22px; }
  .case-result { font-size: 24px; }
  .case-goal { font-size: 15px; }

  .tier { padding: 22px; }
  .tier-name { font-size: 19px; }
  .tier-price .v { font-size: 32px; }
  .tier-features { font-size: 13px; }

  .faq-q { font-size: 16px; padding: 22px 0; gap: 14px; }
  .faq-q .ico { width: 28px; height: 28px; flex-basis: 28px; }
  .faq-a p { font-size: 14px; padding-bottom: 22px; }

  .finale h2 { font-size: clamp(36px, 11vw, 56px); }
  .finale p { font-size: 15px; }
  .finale .hero-ctas { flex-direction: column; }

  .footer { padding: 60px var(--pad-x) 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand .nav-logo { font-size: 14px; }

  .modal { padding: 28px 20px; max-height: 92vh; }
  .modal h3 { font-size: 22px; }
  .form-row input, .form-row select { padding: 12px 14px; font-size: 15px; }

  /* tweaks panel narrower on phones */
  .tweaks { width: calc(100vw - 32px); right: 16px; bottom: 16px; }

  /* legal pages */
  .legal-hero h1 { font-size: clamp(34px, 9vw, 56px); }
  .legal-meta { gap: 18px; }
  .legal-article h2 { font-size: 22px; gap: 12px; flex-wrap: wrap; }
  .legal-article p, .legal-article li { font-size: 14px; }
}

@media (max-width: 360px) {
  :root { --pad-x: 16px; }
  .nav-logo .logo-name { font-size: 12px; }
  .hero h1 { font-size: clamp(30px, 9vw, 44px); }
  .section-head h2 { font-size: clamp(28px, 8.5vw, 38px); }
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-hero {
  padding: clamp(60px, 8vw, 120px) var(--pad-x) clamp(40px, 5vw, 64px);
}
.thanks-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.thanks-hero h1 {
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.thanks-hero h1 .acc { color: var(--accent); }
.thanks-hero h1 .it { font-style: italic; font-weight: 400; }
.thanks-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.5;
}

.thanks-order {
  margin-top: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  max-width: 600px;
  box-shadow: 0 20px 60px -30px rgba(0,0,0,0.18);
}
.thanks-order-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.thanks-order-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.thanks-order-rows {
  display: grid;
  gap: 12px;
}
.thanks-order-rows .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
}
.thanks-order-rows .row .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.thanks-order-rows .row .v {
  font-weight: 500;
  color: var(--ink);
  text-align: right;
  max-width: 60%;
}
.thanks-order-rows .row .v.mono { font-family: var(--mono); font-size: 13px; }
.thanks-order-rows .row.total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 6px;
}
.thanks-order-rows .row.total .k { color: var(--ink); }
.thanks-order-rows .row.total .v {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.thanks-steps { background: var(--bg-2); }
.thanks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.thanks-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  display: grid;
  gap: 14px;
  min-height: 220px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.thanks-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.thanks-card-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.thanks-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.thanks-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.thanks-direct {
  text-align: center;
}
.thanks-direct-inner {
  max-width: 720px;
  margin: 0 auto;
}
.thanks-direct h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
}
.thanks-direct h2 .acc { color: var(--accent); }
.thanks-direct .eyebrow { justify-content: center; margin-bottom: 18px; }
.thanks-direct p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--on-dark-mute);
  margin-bottom: 32px;
}
.thanks-contacts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.thanks-home {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  border-bottom: 1px solid var(--on-dark-line);
  padding-bottom: 4px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.thanks-home:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 880px) {
  .thanks-grid { grid-template-columns: 1fr; }
  .thanks-order { padding: 24px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-arrow::after {
  content: "→";
  font-family: var(--mono);
  transition: transform .25s var(--ease);
}
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(3px); }

.dark .btn-primary { background: var(--bg); color: var(--ink); }
.dark .btn-primary:hover { background: var(--accent); color: #fff; }
.dark .btn-ghost { color: var(--on-dark); border-color: var(--on-dark-line); }
.dark .btn-ghost:hover { border-color: var(--on-dark); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(40px, 6vw, 80px) var(--pad-x) clamp(60px, 8vw, 120px);
  position: relative;
}
.hero-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
}
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(36px, 5.5vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 32px;
}
.hero h1 .acc { color: var(--accent); }
.hero h1 .it { font-style: italic; font-weight: 400; font-family: 'Manrope', serif; letter-spacing: -0.04em; }
.hero-sub {
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 540px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.5;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.stat-b {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-s {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* hero portrait */
.hero-portrait {
  position: relative;
  align-self: stretch;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}
.portrait {
  position: relative;
  flex: 1;
  background: linear-gradient(135deg, var(--bg-2), #e8e5dc);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 480px;
}
.portrait-placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(10,10,10,0.045) 14px 15px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 22px;
}
.portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.portrait-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  padding: 6px 10px;
  border-radius: var(--r-xs);
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.18);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.hero-badge:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 24px 70px -20px rgba(0,0,0,0.28);
}
.hero-badge:hover .badge-arrow { transform: translateX(3px); }
.badge-arrow {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
  margin-left: auto;
  transition: transform .25s var(--ease);
}
.badge-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  background: var(--accent);
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
}
.badge-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-portrait { min-height: 420px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink-dark);
  color: var(--on-dark);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: scroll 38s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-item::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--on-dark-mute);
  opacity: 0.6;
}
.marquee-item.acc { color: var(--accent); }
.marquee-item.acc::after { background: var(--accent); opacity: 1; }

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   PAIN
   ============================================================ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 96px);
}
.section-head h2 {
  font-size: clamp(40px, 5.5vw, 84px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.section-head h2 .acc { color: var(--accent); }
.section-head .lede {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--muted);
  max-width: 440px;
}
.section-head .eyebrow { margin-bottom: 24px; display: flex; }

@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; }
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.pain-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.pain-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.pain-card .idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.pain-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.pain-card .text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: auto;
}
.pain-grid .c1 { grid-column: span 6; }
.pain-grid .c2 { grid-column: span 6; }
.pain-grid .c3 { grid-column: span 4; }
.pain-grid .c4 { grid-column: span 4; }
.pain-grid .c5 { grid-column: span 4; }
.pain-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.pain-quote {
  font-family: var(--mono);
  font-size: 11px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
}
.money-list { display: grid; gap: 8px; margin-top: auto; font-family: var(--mono); font-size: 12px; }
.money-row { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px dashed var(--line); }
.money-row:first-child { border-top: 0; }
.money-row .v { color: var(--accent); font-weight: 600; }

@media (max-width: 980px) {
  .pain-grid .c1, .pain-grid .c2 { grid-column: span 12; }
  .pain-grid .c3, .pain-grid .c4, .pain-grid .c5 { grid-column: span 12; }
}

/* ============================================================
   INSIDE
   ============================================================ */
.inside { background: var(--ink-dark); color: var(--on-dark); }
.inside .section-head h2 .acc { color: var(--accent); }
.inside-list {
  display: grid;
  gap: 0;
}
.inside-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.5fr;
  gap: clamp(20px, 4vw, 60px);
  padding: 40px 0;
  border-top: 1px solid var(--on-dark-line);
  align-items: start;
}
.inside-row:last-child { border-bottom: 1px solid var(--on-dark-line); }
.inside-row .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--on-dark-mute);
  padding-top: 12px;
}
.inside-row h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.inside-row p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--on-dark-mute);
  max-width: 540px;
}

@media (max-width: 880px) {
  .inside-row { grid-template-columns: 1fr; gap: 14px; }
  .inside-row .num { padding-top: 0; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-portrait {
  position: sticky;
  top: 100px;
  background: linear-gradient(135deg, #ece9e0, #d9d5cb);
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about-portrait .portrait-placeholder { position: absolute; inset: 0; }
.about-portrait .portrait-tag { position: absolute; bottom: 20px; left: 20px; }

.about-right h2 {
  font-size: clamp(40px, 5.5vw, 84px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 28px;
}
.about-right h2 .acc { color: var(--accent); }
.about-lede {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 56px;
  max-width: 580px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.about-stats .stat-b { font-size: clamp(28px, 3vw, 40px); }

.timeline {
  display: grid;
  gap: 0;
}
.tl-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.tl-row:last-child { border-bottom: 1px solid var(--line); }
.tl-y {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding-top: 4px;
}
.tl-t { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 6px; }
.tl-s { font-size: 14px; color: var(--muted); max-width: 520px; }
.tl-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; aspect-ratio: 4 / 3; }
  .tl-row { grid-template-columns: 80px 1fr; }
  .tl-tag { grid-column: 1 / -1; justify-self: start; margin-top: 6px; }
}

/* ============================================================
   CASES
   ============================================================ */
.cases { background: var(--bg-2); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.case {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.case-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ddd9d0;
  user-select: none;
  touch-action: none;
}
.case-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.case-img .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  background: rgba(10,10,10,0.78);
  color: #fff;
  padding: 5px 9px;
  border-radius: var(--r-xs);
}
.case-before { background: linear-gradient(135deg, #d6d2c8, #c9c4ba); }
.case-before::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(10,10,10,0.05) 14px 15px);
}
.case-before.has-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.case-before.has-photo::before { display: none; }
.case-after {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  clip-path: inset(0 0 0 50%);
  color: #fff;
}
.case-after::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,0.06) 14px 15px);
}
.case-after.has-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.case-after.has-photo::before { display: none; }
.case-after .lbl { background: var(--accent); }

.case-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.case-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: ew-resize;
  box-shadow: 0 6px 22px rgba(0,0,0,0.25);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
}
.case-handle::before {
  content: "‹ ›";
  letter-spacing: -2px;
}
.case-meta {
  padding: 24px 28px 28px;
  display: grid;
  gap: 14px;
}
.case-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.case-id {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.case-result {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--accent);
}
.case-goal {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.case-quote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.case-who {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 6px;
}

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

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--ink-dark); color: var(--on-dark); }
.pricing .section-head h2 .acc { color: var(--accent); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.tier {
  background: var(--ink-dark-2);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.tier:hover { transform: translateY(-3px); border-color: var(--on-dark); }
.tier:target {
  animation: tierFlash 1.6s var(--ease) 1;
  border-color: var(--accent);
}
@keyframes tierFlash {
  0%   { box-shadow: 0 0 0 0 rgba(232, 105, 42, 0.5); }
  40%  { box-shadow: 0 0 0 12px rgba(232, 105, 42, 0.18); }
  100% { box-shadow: 0 0 0 0 rgba(232, 105, 42, 0); }
}
.tier.featured {
  background: var(--bg);
  color: var(--ink);
  border-color: transparent;
}
.tier-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--on-dark-mute);
}
.tier.featured .tier-tag { color: var(--muted); }
.tier-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
}
.tier-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.tier-sub {
  font-size: 13px;
  color: var(--on-dark-mute);
  margin-top: -16px;
}
.tier.featured .tier-sub { color: var(--muted); }
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--on-dark-line);
  border-bottom: 1px solid var(--on-dark-line);
}
.tier.featured .tier-price { border-color: var(--line); }
.tier-price .v {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}
.tier-price .c {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--on-dark-mute);
}
.tier.featured .tier-price .c { color: var(--muted); }
.tier-price .per {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  margin-left: auto;
}
.tier.featured .tier-price .per { color: var(--muted); }
.tier-features {
  list-style: none;
  display: grid;
  gap: 12px;
  font-size: 14px;
  color: var(--on-dark);
}
.tier.featured .tier-features { color: var(--ink); }
.tier-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}
.tier-features li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}
.tier-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  background: var(--bg);
  color: var(--ink);
}
.tier-cta:hover { background: var(--accent); color: #fff; }
.tier.featured .tier-cta { background: var(--ink); color: var(--bg); }
.tier.featured .tier-cta:hover { background: var(--accent); color: #fff; }

.tier-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.tier-pair .tier { padding: 28px; }

.pricing-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: var(--ink-dark-2);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--on-dark-mute);
}
.pricing-notice strong { color: var(--on-dark); }

@media (max-width: 980px) {
  .tier-grid, .tier-pair { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.faq-grid .section-head { display: block; margin-bottom: 0; position: sticky; top: 100px; }
.faq-grid .section-head h2 { margin-bottom: 18px; }
.faq-list { display: grid; gap: 0; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.faq-q .ico {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 400;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.faq-item.open .faq-q .ico { background: var(--ink); color: var(--bg); transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq-a-inner {
  overflow: hidden;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  padding: 0 0 28px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 640px;
}

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-grid .section-head { position: static; }
}

/* ============================================================
   FINALE
   ============================================================ */
.finale {
  background: var(--ink-dark);
  color: var(--on-dark);
  text-align: center;
  padding: clamp(100px, 14vw, 200px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.finale::before {
  content: "";
  position: absolute;
  inset: -200px;
  background:
    radial-gradient(ellipse at center, oklch(0.66 0.16 38 / 0.18), transparent 60%);
  pointer-events: none;
}
.finale-inner { position: relative; max-width: 920px; margin: 0 auto; }
.finale h2 {
  font-size: clamp(48px, 7vw, 112px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin-bottom: 32px;
}
.finale h2 .acc { color: var(--accent); }
.finale p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--on-dark-mute);
  max-width: 580px;
  margin: 0 auto 48px;
}
.finale .hero-ctas { justify-content: center; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 80px var(--pad-x) 32px;
  background: var(--bg);
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.footer-grid {
  max-width: 1480px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
}
.footer-brand { display: grid; gap: 16px; max-width: 380px; }
.footer-brand .nav-logo { margin: 0; }
.footer-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a {
  font-size: 12px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.footer-socials a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; }
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.modal-backdrop.show { display: flex; opacity: 1; }
.modal {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 48px;
  max-width: 520px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.modal-backdrop.show .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: background .2s var(--ease);
}
.modal-close:hover { background: var(--ink); color: var(--bg); }
.modal h3 {
  font-size: 28px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.modal .lede { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.modal .selected {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  background: var(--bg-2);
  border-radius: var(--r-xs);
  margin-bottom: 22px;
}
.modal .selected strong { color: var(--accent); }
.form-row { display: grid; gap: 6px; margin-bottom: 18px; }
.form-row label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-row input,
.form-row select {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  font-size: 15px;
  transition: border-color .2s var(--ease);
}
.form-row input:focus,
.form-row select:focus { outline: none; border-color: var(--ink); }
.form-row.err input { border-color: #e11d48; }
.form-row .err-msg { font-size: 12px; color: #e11d48; display: none; }
.form-row.err .err-msg { display: block; }
.modal .btn { width: 100%; justify-content: center; margin-top: 8px; }
.modal-direct {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.modal-direct-links { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.modal-direct-links a {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}
.modal-direct-links a:hover { border-color: var(--ink); }
.modal .privacy { font-size: 11px; color: var(--dim); text-align: center; margin-top: 14px; }
.modal .privacy a { color: var(--muted); text-decoration: underline; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tweaks {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px;
  width: 260px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.25);
  display: none;
}
.tweaks.show { display: block; }
.tweaks-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.tweaks-head h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.tweaks-close {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--muted);
}
.tweaks-close:hover { background: var(--bg-2); color: var(--ink); }
.tweak-group { margin-bottom: 14px; }
.tweak-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.tweak-swatches { display: flex; gap: 6px; }
.tweak-sw {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease);
}
.tweak-sw.on { border-color: var(--ink); transform: scale(1.05); }
.tweak-radio { display: flex; gap: 4px; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.tweak-radio button {
  flex: 1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
}
.tweak-radio button.on { background: var(--ink); color: var(--bg); }

/* ============================================================
   LEGAL PAGES (oferta / privacy / refund)
   ============================================================ */
.legal-hero {
  padding: clamp(80px, 10vw, 140px) var(--pad-x) clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.legal-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.legal-hero h1 {
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.legal-hero h1 .acc { color: var(--accent); }
.legal-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal-meta-item {
  display: grid;
  gap: 4px;
}
.legal-meta-item .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-meta-item .v {
  font-size: 15px;
  font-weight: 500;
}

.legal-body {
  padding: clamp(60px, 7vw, 100px) var(--pad-x) clamp(80px, 10vw, 140px);
}
.legal-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 4px;
}
.legal-toc-head {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.legal-toc a {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
  line-height: 1.4;
  transition: color .2s var(--ease);
}
.legal-toc a:hover { color: var(--accent); }
.legal-toc a .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  min-width: 28px;
}

.legal-article {
  max-width: 720px;
}
.legal-article section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.legal-article section:first-child { border-top: 0; padding-top: 0; }
.legal-article h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.legal-article h2 .num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
  flex: 0 0 auto;
}
.legal-article h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-article p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.legal-article ul, .legal-article ol {
  margin: 0 0 16px 0;
  padding-left: 22px;
}
.legal-article li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.legal-article ul li::marker { color: var(--accent); }
.legal-article a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-callout {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.legal-callout strong { color: var(--ink); }
.legal-disclaimer {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 16px 18px;
  border: 1px dashed var(--line);
  border-radius: var(--r-sm);
  margin-top: 32px;
  line-height: 1.6;
}

.legal-cross {
  max-width: 920px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.legal-cross a {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: grid;
  gap: 6px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.legal-cross a:hover { border-color: var(--ink); }
.legal-cross a.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.legal-cross .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-cross a.active .k { color: var(--on-dark-mute); }
.legal-cross .v {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

@media (max-width: 880px) {
  .legal-grid { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-cross { grid-template-columns: 1fr; }
}
