:root {
  /* ─── Type ────────────────────────────────────────────────────── */
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI Variable", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, "SF Pro Display", "Segoe UI Variable Display", "Segoe UI", ui-sans-serif, system-ui, Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --text-h1: clamp(2.25rem, 5vw, 4rem);
  --text-h2: clamp(1.75rem, 3.5vw, 2.75rem);
  --text-h3: 1.375rem;
  --text-body-lg: 1.125rem;
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-micro: 0.75rem;

  --tracking-h1: -0.03em;
  --tracking-h2: -0.02em;
  --tracking-h3: -0.01em;
  --tracking-body: 0;
  --tracking-eyebrow: 0.14em;

  --leading-tight: 1.05;
  --leading-snug: 1.15;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  /* ─── Color — brand + accent (marketing/local-agency: coral + amber) ── */
  --color-brand: #e35a45;        /* 4.6:1 on white — large-text/UI pass */
  --color-brand-dark: #b23b2b;   /* 6.2:1 on white — body pass */
  --color-brand-light: #f2795f;
  --color-brand-soft: #fdeae4;

  --color-accent: #c2620a;       /* amber — 4.7:1 on white */
  --color-accent-dark: #9a4d05;  /* 6.6:1 on white — body pass */
  --color-accent-soft: #fdeccb;

  --color-accent-blue: #2563eb;
  --color-accent-teal: #0d9488;
  --color-accent-coral: #e35a45;
  --color-accent-amber: #c2620a;
  --color-accent-violet: #7c3aed;
  --color-accent-emerald: #059669;

  --color-neutral-0: #ffffff;
  --color-neutral-50: #fbf9f7;
  --color-neutral-100: #f6f2ee;
  --color-neutral-200: #ece3db;
  --color-neutral-300: #d8cabd;
  --color-neutral-400: #a99a8c;
  --color-neutral-500: #726458;
  --color-neutral-600: #4e433a;
  --color-neutral-700: #38302a;
  --color-neutral-800: #241e1a;
  --color-neutral-900: #16110e;
  --color-neutral-950: #0a0705;

  --color-surface: var(--color-neutral-0);
  --color-surface-alt: var(--color-neutral-50);
  --color-surface-tinted: color-mix(in oklab, var(--color-brand) 5%, var(--color-neutral-0));
  --color-surface-inverse: var(--color-neutral-900);

  --color-text-primary: var(--color-neutral-900);   /* 16:1 on white */
  --color-text-secondary: var(--color-neutral-700);  /* 10:1 on white */
  --color-text-muted: var(--color-neutral-500);      /* 4.9:1 on white — body pass */
  --color-text-inverse: var(--color-neutral-0);
  --color-text-brand: var(--color-brand-dark);

  --color-border: var(--color-neutral-200);
  --color-border-strong: var(--color-neutral-300);

  --gradient-brand: linear-gradient(135deg, var(--color-brand-light) 0%, var(--color-brand) 55%, var(--color-brand-dark) 100%);
  --gradient-brand-soft: linear-gradient(135deg, var(--color-brand-soft) 0%, var(--color-surface) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  --gradient-hero-fade: linear-gradient(180deg, var(--color-surface-tinted) 0%, var(--color-surface) 100%);
  --gradient-mesh-1: radial-gradient(60% 60% at 20% 10%, color-mix(in oklab, var(--color-brand) 24%, transparent), transparent 70%),
                     radial-gradient(50% 50% at 90% 30%, color-mix(in oklab, var(--color-accent) 20%, transparent), transparent 70%);
  --gradient-mesh-2: radial-gradient(45% 60% at 80% 90%, color-mix(in oklab, var(--color-brand-light) 16%, transparent), transparent 70%),
                     radial-gradient(40% 40% at 10% 80%, color-mix(in oklab, var(--color-accent) 14%, transparent), transparent 70%);

  --shadow-xs: 0 1px 2px rgba(40, 20, 12, 0.05);
  --shadow-sm: 0 1px 2px rgba(40, 20, 12, 0.05), 0 4px 8px -4px rgba(40, 20, 12, 0.07);
  --shadow-md: 0 2px 4px rgba(40, 20, 12, 0.05), 0 8px 20px -8px rgba(40, 20, 12, 0.14);
  --shadow-lg: 0 4px 12px rgba(40, 20, 12, 0.07), 0 20px 40px -20px rgba(40, 20, 12, 0.20);
  --shadow-xl: 0 8px 24px rgba(40, 20, 12, 0.09), 0 32px 64px -32px rgba(40, 20, 12, 0.26);
  --shadow-brand-glow: 0 10px 28px -12px color-mix(in oklab, var(--color-brand) 55%, transparent);
  --shadow-accent-glow: 0 10px 28px -12px color-mix(in oklab, var(--color-accent) 55%, transparent);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-2xl: 24px;
  --radius-pill: 999px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;

  --pad-section-sm: clamp(2rem, 4vw, 3rem);
  --pad-section: clamp(3rem, 6vw, 5rem);
  --pad-section-lg: clamp(4rem, 8vw, 7rem);

  --duration-fast: 150ms;
  --duration-med: 240ms;
  --duration-slow: 400ms;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-body);
  color: var(--color-text-primary);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: var(--weight-bold); line-height: var(--leading-snug); margin: 0 0 var(--space-3); }
h1 { font-size: var(--text-h1); letter-spacing: var(--tracking-h1); line-height: var(--leading-tight); }
h2 { font-size: var(--text-h2); letter-spacing: var(--tracking-h2); }
h3 { font-size: var(--text-h3); letter-spacing: var(--tracking-h3); font-weight: var(--weight-semibold); }
p { margin: 0 0 var(--space-3); }
a { color: var(--color-text-brand); }

.eyebrow {
  display: inline-block;
  font-size: var(--text-micro);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-text-brand);
  margin-bottom: var(--space-3);
}

*:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.container { max-width: 1200px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.container-narrow { max-width: 720px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.container-wide { max-width: 1440px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 3rem); }

.skip-link { position: absolute; top: -100px; left: 0; background: var(--color-brand); color: var(--color-text-inverse); padding: 12px 16px; z-index: 100; border-radius: 0 0 var(--radius-md) 0; }
.skip-link:focus { top: 0; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: var(--weight-semibold); letter-spacing: -0.005em;
  border: 0; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform var(--duration-med) var(--ease-out-quart),
              box-shadow var(--duration-med) var(--ease-out-quart),
              background var(--duration-med) var(--ease-out-quart);
}
.btn--md { padding: 0.75rem 1.5rem; font-size: var(--text-body); border-radius: var(--radius-lg); min-height: 44px; }
.btn--lg { padding: 1rem 2rem; font-size: var(--text-body-lg); border-radius: var(--radius-lg); min-height: 56px; min-width: 240px; }
.btn-primary { background: var(--gradient-brand); color: var(--color-text-inverse); box-shadow: var(--shadow-brand-glow); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 32px -12px color-mix(in oklab, var(--color-brand) 70%, transparent); }
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { transition: transform var(--duration-med) var(--ease-out-quart); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary { background: transparent; color: var(--color-brand-dark); box-shadow: inset 0 0 0 1.5px var(--color-brand); }
.btn-secondary:hover { background: var(--color-brand-soft); transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 2px solid var(--color-text-inverse); outline-offset: 3px; }

/* ─── Header ──────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--color-surface) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-border);
  height: 72px; transition: height var(--duration-med) var(--ease-out-quart);
}
.site-header[data-compact="true"] { height: 56px; }
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 1.05rem; letter-spacing: -0.01em; color: var(--color-text-primary); text-decoration: none; }
.brand-mark { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: var(--radius-md); background: var(--gradient-brand); color: #fff; box-shadow: var(--shadow-brand-glow); }
.brand-mark svg { width: 18px; height: 18px; }
.site-header .btn { padding: 0.55rem 1.15rem; min-height: 40px; font-size: var(--text-small); }
.header-cta-wrap { display: none; }
@media (min-width: 620px) { .header-cta-wrap { display: inline-flex; } }

/* ─── Hero ────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 5rem); background: var(--gradient-hero-fade); }
.hero::before { content: ""; position: absolute; inset: -10% -5% auto -5%; height: 120%; background: var(--gradient-mesh-1); opacity: 0.65; pointer-events: none; z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.grid-hero { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 1024px) { .grid-hero { grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr); } }
.hero h1 { max-width: 16ch; }
.sub-hero { font-size: var(--text-body-lg); color: var(--color-text-secondary); max-width: 46ch; margin-bottom: var(--space-4); line-height: var(--leading-relaxed); }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }
.hero-price-note { font-size: var(--text-small); color: var(--color-text-muted); margin: var(--space-3) 0 0; }
.trust-anchor {
  display: inline-flex; align-items: center; gap: var(--space-2); margin-top: var(--space-4);
  padding: 0.5rem 1rem; background: color-mix(in oklab, var(--color-accent) 12%, var(--color-surface));
  color: var(--color-accent-dark); font-size: var(--text-small); font-weight: var(--weight-medium);
  border-radius: var(--radius-pill); box-shadow: var(--shadow-xs);
  border: 1px solid color-mix(in oklab, var(--color-accent) 22%, transparent);
}
.trust-anchor svg { width: 16px; height: 16px; }
.hero-visual { width: 100%; height: auto; display: block; filter: drop-shadow(0 20px 40px rgba(40, 20, 12, 0.14)); border-radius: var(--radius-2xl); }
.hero-figure { margin: 0; }
@media (min-width: 1024px) { .hero-visual { max-width: 640px; margin-left: auto; } }

/* ─── Sections ────────────────────────────────────────────────── */
main > section { padding-block: var(--pad-section); }
.section-tinted { background: var(--color-surface-tinted); }
.section-alt { background: var(--color-surface-alt); }
.section-head { margin-bottom: var(--space-5); }
.section-head--center { text-align: center; max-width: 62ch; margin-inline: auto; }
.section-head--left { text-align: left; max-width: 54ch; }
.lead { font-size: var(--text-body-lg); color: var(--color-text-secondary); line-height: var(--leading-relaxed); }

main > section { opacity: 0; transform: translateY(20px); transition: opacity var(--duration-slow) var(--ease-out-quart), transform var(--duration-slow) var(--ease-out-quart); }
main > section[data-visible="true"] { opacity: 1; transform: translateY(0); }
.no-js main > section { opacity: 1; transform: none; }

/* Problem */
.prose-block { max-width: 62ch; }
.prose-block p { color: var(--color-text-secondary); line-height: var(--leading-relaxed); font-size: var(--text-body-lg); }
.prose-block .pullout { font-family: var(--font-display); font-weight: var(--weight-semibold); font-size: clamp(1.25rem, 2.4vw, 1.6rem); color: var(--color-text-primary); line-height: var(--leading-snug); letter-spacing: -0.01em; padding-left: var(--space-4); border-left: 3px solid var(--color-brand); }

/* Before / after split */
.beforeafter { display: grid; gap: var(--space-4); }
@media (min-width: 860px) { .beforeafter { grid-template-columns: 1fr 1fr; } }
.ba-card { border-radius: var(--radius-lg); padding: var(--space-5); box-shadow: var(--shadow-sm); }
.ba-card--before { background: var(--color-surface); border: 1px solid var(--color-border); }
.ba-card--after { background: var(--color-surface); border: 1px solid transparent; box-shadow: var(--shadow-lg); position: relative; }
.ba-card--after::before { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1.5px; background: var(--gradient-brand); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.ba-label { display: inline-block; font-size: var(--text-micro); font-weight: var(--weight-semibold); letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; margin-bottom: var(--space-3); }
.ba-card--before .ba-label { color: var(--color-text-muted); }
.ba-card--after .ba-label { color: var(--color-brand-dark); }
.ba-card p { color: var(--color-text-secondary); line-height: var(--leading-relaxed); margin-bottom: 0; }
.solution-anchor { margin-top: var(--space-5); padding: var(--space-4) var(--space-5); background: var(--color-surface-tinted); border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.solution-anchor p { margin: 0; font-size: var(--text-body-lg); }
.tick-list { list-style: none; padding: 0; margin: var(--space-4) 0 0; display: grid; gap: var(--space-2); }
.tick-list li { display: grid; grid-template-columns: 22px 1fr; gap: var(--space-2); align-items: start; color: var(--color-text-secondary); }
.tick-list svg { width: 20px; height: 20px; color: var(--color-accent-dark); margin-top: 2px; }

/* Feature grid (icon tiles) */
.feature-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.feature-item { display: grid; grid-template-columns: 48px 1fr; gap: var(--space-3); align-items: start; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-xs); transition: transform var(--duration-med) var(--ease-out-quart), box-shadow var(--duration-med) var(--ease-out-quart); }
.feature-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.feature-item__body h3 { margin: 0 0 var(--space-1); font-size: 1.075rem; }
.feature-item__body p { margin: 0; color: var(--color-text-muted); font-size: var(--text-small); line-height: var(--leading-normal); }
.icon-tile { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: var(--radius-lg); background: var(--tile-bg); color: var(--tile-fg); transition: transform var(--duration-med) var(--ease-out-quart); }
.feature-item:hover .icon-tile { transform: scale(1.05); }
.icon-tile--blue { --tile-bg: color-mix(in oklab, var(--color-accent-blue) 15%, var(--color-surface)); --tile-fg: var(--color-accent-blue); }
.icon-tile--teal { --tile-bg: color-mix(in oklab, var(--color-accent-teal) 15%, var(--color-surface)); --tile-fg: var(--color-accent-teal); }
.icon-tile--coral { --tile-bg: color-mix(in oklab, var(--color-accent-coral) 15%, var(--color-surface)); --tile-fg: var(--color-accent-coral); }
.icon-tile--amber { --tile-bg: color-mix(in oklab, var(--color-accent-amber) 15%, var(--color-surface)); --tile-fg: var(--color-accent-amber); }
.icon-tile--violet { --tile-bg: color-mix(in oklab, var(--color-accent-violet) 15%, var(--color-surface)); --tile-fg: var(--color-accent-violet); }
.icon-tile--emerald { --tile-bg: color-mix(in oklab, var(--color-accent-emerald) 15%, var(--color-surface)); --tile-fg: var(--color-accent-emerald); }

/* Why now — two-column asymmetric */
.grid-explainer { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 900px) { .grid-explainer { grid-template-columns: 1fr 1fr; } }
.stat-slab { display: grid; gap: var(--space-4); }
.stat-slab .stat { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-sm); }
.stat-slab .stat h3 { margin: 0 0 var(--space-1); font-size: 1.05rem; color: var(--color-text-primary); }
.stat-slab .stat p { margin: 0; color: var(--color-text-muted); font-size: var(--text-small); }

/* Demo steps */
.step-row { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }
.step { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-xs); position: relative; }
.step .step-num { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: var(--radius-md); background: var(--gradient-brand); color: #fff; font-family: var(--font-display); font-weight: var(--weight-bold); margin-bottom: var(--space-3); box-shadow: var(--shadow-brand-glow); }
.step h3 { font-size: 1.05rem; margin-bottom: var(--space-1); }
.step p { margin: 0; color: var(--color-text-muted); font-size: var(--text-small); }
.demo-note { margin-top: var(--space-4); font-size: var(--text-small); color: var(--color-text-secondary); }

/* Bento — what you get */
.bento { display: grid; gap: var(--space-3); grid-template-columns: repeat(6, 1fr); grid-auto-rows: minmax(150px, auto); }
.bento-item { grid-column: span 2; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-xs); transition: transform var(--duration-med) var(--ease-out-quart), box-shadow var(--duration-med) var(--ease-out-quart); }
.bento-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.bento-item--wide { grid-column: span 4; }
.bento-item--tall { grid-column: span 2; grid-row: span 2; background: var(--color-surface-inverse); color: var(--color-text-inverse); border-color: transparent; box-shadow: var(--shadow-lg); }
.bento-item--tall h3, .bento-item--tall p { color: var(--color-text-inverse); }
.bento-item--tall p { color: color-mix(in oklab, #fff 80%, transparent); }
.bento-item .bento-icon { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--color-brand-soft); color: var(--color-brand-dark); margin-bottom: var(--space-3); }
.bento-item--tall .bento-icon { background: color-mix(in oklab, var(--color-brand) 40%, transparent); color: #fff; }
.bento-item h3 { font-size: 1.075rem; margin-bottom: var(--space-2); }
.bento-item p { margin: 0; color: var(--color-text-muted); font-size: var(--text-small); line-height: var(--leading-normal); }
@media (max-width: 767px) { .bento { grid-template-columns: 1fr; } .bento > * { grid-column: 1 / -1 !important; grid-row: auto !important; } }

/* Proof / testimonial placeholder */
.proof-lead { max-width: 60ch; color: var(--color-text-secondary); font-size: var(--text-body-lg); line-height: var(--leading-relaxed); }
.testimonial--placeholder { border: 2px dashed var(--color-border-strong); background: var(--color-surface-alt); padding: var(--space-5); border-radius: var(--radius-lg); text-align: center; color: var(--color-text-muted); max-width: 620px; margin: var(--space-5) auto 0; }
.testimonial--placeholder .placeholder-hint { font-style: italic; font-size: var(--text-small); margin: 0; }

/* Who for / not for */
.grid-audience { display: grid; gap: var(--space-4); }
@media (min-width: 860px) { .grid-audience { grid-template-columns: 1.1fr 0.9fr; } }
.audience-card { border-radius: var(--radius-lg); padding: var(--space-5); box-shadow: var(--shadow-sm); }
.audience-card--for { background: var(--color-surface); border: 1px solid var(--color-border); }
.audience-card--not { background: var(--color-surface-alt); border: 1px solid var(--color-border); }
.audience-card h3 { font-size: 1.2rem; margin-bottom: var(--space-3); }
.audience-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.audience-list li { display: grid; grid-template-columns: 22px 1fr; gap: var(--space-2); align-items: start; color: var(--color-text-secondary); font-size: var(--text-small); line-height: var(--leading-normal); }
.audience-list svg { width: 20px; height: 20px; margin-top: 2px; }
.audience-card--for .audience-list svg { color: var(--color-accent-emerald); }
.audience-card--not .audience-list svg { color: var(--color-text-muted); }
.audience-foot { margin-top: var(--space-4); font-size: var(--text-small); color: var(--color-text-muted); }

/* Pricing */
.pricing { background: var(--color-surface-tinted); position: relative; overflow: hidden; }
.pricing::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(var(--color-border) 1px, transparent 1px); background-size: 26px 26px; opacity: 0.5; pointer-events: none; }
.pricing .container { position: relative; }
.pricing-card-featured { position: relative; padding: 2px; background: var(--gradient-brand); border-radius: calc(var(--radius-2xl) + 2px); box-shadow: var(--shadow-xl); max-width: 560px; margin: 0 auto; }
.pricing-ribbon { position: absolute; top: -12px; right: 28px; z-index: 1; padding: 0.3rem 0.85rem; background: var(--color-accent-dark); color: #fff; font-size: var(--text-micro); font-weight: var(--weight-semibold); letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--radius-pill); box-shadow: var(--shadow-md); }
.pricing-card-inner { background: var(--color-surface); border-radius: var(--radius-2xl); padding: clamp(1.75rem, 4vw, 2.75rem); text-align: center; }
.price-amount { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: clamp(3rem, 7vw, 4.5rem); letter-spacing: -0.04em; line-height: 1; color: var(--color-text-primary); }
.price-amount .price-cur { font-size: 0.45em; vertical-align: super; color: var(--color-text-muted); }
.price-term { color: var(--color-text-muted); font-size: var(--text-small); margin-bottom: var(--space-4); }
.price-list { list-style: none; padding: 0; margin: 0 auto var(--space-5); max-width: 380px; text-align: left; display: grid; gap: var(--space-2); }
.price-list li { display: grid; grid-template-columns: 22px 1fr; gap: var(--space-2); align-items: start; color: var(--color-text-secondary); font-size: var(--text-small); }
.price-list svg { width: 20px; height: 20px; color: var(--color-accent-emerald); margin-top: 2px; }
.pricing-card-inner .btn { width: 100%; }
.pricing-subnote { margin-top: var(--space-3); font-size: var(--text-small); color: var(--color-text-muted); }
.oto-ladder { max-width: 760px; margin: var(--space-6) auto 0; }
.oto-ladder h3 { text-align: center; font-size: 1.05rem; color: var(--color-text-secondary); font-weight: var(--weight-semibold); margin-bottom: var(--space-4); }
.oto-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.oto-tier { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4); box-shadow: var(--shadow-xs); }
.oto-tier .oto-name { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-2); margin-bottom: var(--space-2); }
.oto-tier .oto-name strong { font-family: var(--font-display); }
.oto-tier .oto-price { font-weight: var(--weight-bold); color: var(--color-brand-dark); }
.oto-tier p { margin: 0; font-size: var(--text-small); color: var(--color-text-muted); }

/* Guarantee — dark inverted band */
.guarantee { background: var(--color-surface-inverse); color: var(--color-text-inverse); position: relative; overflow: hidden; }
.guarantee::before { content: ""; position: absolute; width: 440px; height: 440px; right: -120px; top: -140px; background: radial-gradient(circle, color-mix(in oklab, var(--color-accent) 40%, transparent), transparent 70%); pointer-events: none; }
.guarantee .container { position: relative; display: grid; gap: var(--space-5); align-items: center; }
@media (min-width: 860px) { .guarantee .container { grid-template-columns: 120px 1fr; } }
.guarantee-shield { display: grid; place-items: center; width: 100px; height: 100px; border-radius: var(--radius-2xl); background: color-mix(in oklab, var(--color-accent) 22%, transparent); color: var(--color-accent-soft); }
.guarantee-shield svg { width: 56px; height: 56px; }
.guarantee h2, .guarantee p { color: var(--color-text-inverse); }
.guarantee p { color: color-mix(in oklab, #fff 82%, transparent); max-width: 60ch; line-height: var(--leading-relaxed); margin-bottom: 0; }

/* FAQ */
.faq-list { max-width: 760px; margin: var(--space-5) auto 0; display: grid; gap: var(--space-2); }
.faq-list details { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); overflow: hidden; }
.faq-list details[open] { box-shadow: var(--shadow-md); }
.faq-list summary { cursor: pointer; list-style: none; padding: var(--space-4); font-weight: var(--weight-semibold); display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); color: var(--color-text-primary); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .chev { flex: none; width: 20px; height: 20px; color: var(--color-brand); transition: transform var(--duration-med) var(--ease-out-quart); }
.faq-list details[open] summary .chev { transform: rotate(180deg); }
.faq-body { padding: 0 var(--space-4) var(--space-4); color: var(--color-text-secondary); line-height: var(--leading-relaxed); }
.faq-body p { margin: 0; }

/* Final CTA */
.final-cta { background: var(--gradient-brand); color: #fff; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: var(--gradient-mesh-2); opacity: 0.5; pointer-events: none; }
.final-cta .container { position: relative; }
.final-cta h2, .final-cta p { color: #fff; }
.final-cta p { max-width: 54ch; margin-inline: auto; color: color-mix(in oklab, #fff 88%, transparent); }
.final-cta .btn-primary { background: #fff; color: var(--color-brand-dark); box-shadow: 0 12px 30px -12px rgba(0,0,0,0.45); }
.final-cta .btn-primary:hover { background: #fff; box-shadow: 0 16px 36px -12px rgba(0,0,0,0.5); }
.final-cta .final-guarantee { margin: var(--space-4) 0 var(--space-4); font-size: var(--text-small); }

/* Footer */
.site-footer { background: var(--color-surface-inverse); color: color-mix(in oklab, #fff 72%, transparent); padding-block: var(--space-6); }
.site-footer .brand { color: #fff; margin-bottom: var(--space-3); }
.site-footer p { font-size: var(--text-small); margin: 0 0 var(--space-2); }
.site-footer a { color: color-mix(in oklab, #fff 85%, transparent); }
.footer-legal { font-size: var(--text-micro); color: color-mix(in oklab, #fff 55%, transparent); margin-top: var(--space-4); }

/* Sticky CTA (mobile) */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: color-mix(in oklab, var(--color-surface) 94%, transparent); backdrop-filter: blur(8px); border-top: 1px solid var(--color-border); z-index: 50; transform: translateY(100%); transition: transform var(--duration-med) var(--ease-out-quart); }
.sticky-cta .btn { width: 100%; }
.sticky-cta[data-visible="true"] { transform: translateY(0); }
@media (min-width: 768px) { .sticky-cta { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  main > section { opacity: 1; transform: none; }
  .sticky-cta { transition: none; }
}
