:root {
  --ink: #0F1419;
  --ink-2: #1A2128;
  --muted: #5C6470;
  --line: #E8E3D9;
  --cream: #FAF7F2;
  --cream-2: #F2EDE3;
  --accent: #FF6B35;
  --accent-2: #E85A24;
  --accent-50: #FFF3EC;
  --accent-100: #FFE1CC;
  --accent-200: #FFC49A;
  --accent-500: #FF6B35;
  --accent-700: #E85A24;
  --accent-900: #8A3517;
  --accent-glow-0: rgba(255, 107, 53, 0.06);
  --accent-glow-1: rgba(255, 107, 53, 0.12);
  --accent-glow-2: rgba(255, 107, 53, 0.20);
  --accent-glow-3: rgba(255, 107, 53, 0.35);
  --accent-glow-4: rgba(255, 107, 53, 0.55);
  --green: #2EA869;
  --shadow: 0 1px 2px rgba(15, 20, 25, 0.04), 0 8px 24px rgba(15, 20, 25, 0.06);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1120px;
  --bg: #FAF7F2;
  --bg-2: #F2EDE3;
  --fg: #0F1419;
  --fg-2: #1A2128;
  --card-bg: #FFFFFF;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 15.5px;
  --text-md: 17px;
  --text-lg: clamp(20px, 2vw, 24px);
  --text-xl: clamp(24px, 3vw, 32px);
  --text-2xl: clamp(28px, 4vw, 44px);
  --text-3xl: clamp(36px, 5.5vw, 60px);
  --text-display: clamp(44px, 7.5vw, 96px);
}

body.dark {
  --ink: #F5F1EA;
  --ink-2: #E8E2D6;
  --muted: #8C857A;
  --line: #2A2F36;
  --cream: #0B0E12;
  --cream-2: #15191E;
  --bg: #0B0E12;
  --bg-2: #15191E;
  --fg: #F5F1EA;
  --fg-2: #E8E2D6;
  --card-bg: #15191E;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.4);
  color-scheme: dark;
}

body.dark .hero-launch { background: var(--card-bg); border-color: var(--ink-2); }
body.dark .demo-pin,
body.dark .story { background: #15191E; }
body.dark .hero-launch::before { background: var(--accent); }
body.dark .signup-row { background: var(--card-bg); border-color: var(--line); }
body.dark .signup-row input,
body.dark .signup-row select { color: var(--fg); }
body.dark .signup-row input::placeholder { color: var(--muted); }
body.dark .showcase-card { background: var(--card-bg); border-color: var(--ink-2); }
body.dark .showcase-bar { background: var(--cream-2); border-bottom-color: var(--line); }
body.dark .showcase-eyebrow { background: rgba(21, 25, 30, 0.85); }
body.dark .plan,
body.dark .feature,
body.dark .who-grid li { background: var(--card-bg); border-color: var(--line); }
body.dark .faq-item { background: var(--card-bg); border-color: var(--line); }
body.dark .faq-item[open] { border-color: var(--ink-2); }
body.dark .badge { background: var(--cream); color: var(--ink); }
body.dark .badge.muted,
body.dark .badge.outline { background: transparent; color: var(--fg); border-color: var(--line); }
body.dark .nav { background: rgba(11, 14, 18, 0.78); border-color: var(--line); }

body { background: var(--bg); color: var(--fg); transition: background 0.4s ease, color 0.4s ease; }

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 620px at 12% 8%, var(--accent-glow-1), transparent 62%),
    radial-gradient(700px 520px at 88% 92%, rgba(15, 20, 25, 0.05), transparent 60%);
  animation: bgshift 22s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: multiply;
}

@keyframes bgshift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-2%, 1%, 0) scale(1.04); }
  100% { transform: translate3d(2%, -1%, 0) scale(1.02); }
}

main, .nav, .footer { position: relative; z-index: 1; }

em, .italic { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; }

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  text-wrap: balance;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0;
}
p { margin: 0; }

::selection {
  background: var(--accent);
  color: var(--cream);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

img, svg { max-width: 100%; display: block; }

.nav-wrap {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 16px;
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav-wrap.is-hidden { transform: translateY(-150%); }

.nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px 8px 16px;
  max-width: 980px;
  margin: 12px auto 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px) saturate(180%);
  -webkit-backdrop-filter: saturate(180%) blur(20px) saturate(180%);
  border: 1px solid rgba(232, 227, 217, 0.7);
  border-radius: 999px;
  box-shadow:
    0 1px 2px rgba(15, 20, 25, 0.04),
    0 8px 24px rgba(15, 20, 25, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.nav:hover {
  box-shadow:
    0 1px 2px rgba(15, 20, 25, 0.04),
    0 12px 32px rgba(15, 20, 25, 0.10),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  padding: 6px 4px;
  color: var(--ink);
  transition: transform 0.2s ease;
}
.brand, body.dark .brand, .brand-name, body.dark .brand-name { color: var(--ink); }
.brand:hover { text-decoration: none; transform: translateX(-1px); }
.brand .brand-name { line-height: 1; }

.brand-mark {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--ink);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
body.dark .brand-mark { color: var(--cream); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.08); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 999px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:not(.nav-cta):hover {
  text-decoration: none;
  color: var(--ink);
  background: rgba(15, 20, 25, 0.05);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--cream) !important;
  padding: 9px 16px 9px 18px !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(15, 20, 25, 0.18);
}
.nav-cta:hover {
  text-decoration: none;
  background: var(--ink-2) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 20, 25, 0.28);
}
.nav-cta-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 14px;
}
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 44px;
  min-height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0 8px;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.nav-burger:hover { background: rgba(15, 20, 25, 0.05); }
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.22), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.btn:hover::after { opacity: 1; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--accent);
}

.btn-sm { padding: 8px 14px; font-size: 13px; min-height: 36px; }
.btn-lg { padding: 14px 22px; font-size: 16px; min-height: 48px; }

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(15, 20, 25, 0.18);
}
.btn-primary:hover { background: var(--ink-2); box-shadow: 0 6px 20px rgba(15, 20, 25, 0.28); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.hero {
  padding: 108px 0 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-inner { z-index: 2; position: relative; }

.hero-asymmetric {
  padding: 80px 0 80px;
  text-align: left;
  min-height: 720px;
  max-height: 920px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-asymmetric-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.hero-asymmetric .hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 720px;
}
.hero-asymmetric .hero-mark-row { margin: 0; }
.hero-asymmetric .hero-title {
  margin: 0;
  text-align: left;
  align-items: flex-start;
}
.hero-asymmetric .ht-row {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
.hero-asymmetric .ht-row-1 { font-size: clamp(36px, 5vw, 72px); justify-content: flex-start; }
.hero-asymmetric .ht-row-2 { font-size: clamp(28px, 4vw, 52px); margin-top: 0.1em; }
.hero-asymmetric .hero-sub { text-align: left; max-width: 460px; margin: 0; }
.hero-asymmetric .hero-form-slim { width: 100%; max-width: 520px; }
.hero-asymmetric .hero-meta { margin: 0; }
.hero-asymmetric .hero-launch { margin: 24px 0 0; }
.hero-strip {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 12px;
  color: var(--muted);
}
.hero-strip li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}
body.dark .hero-strip li { background: rgba(255, 255, 255, 0.04); }
.hero-strip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-asymmetric .hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-12px);
}
.hero-asymmetric .hero-right .showcase-card { width: 100%; }
.hero-asymmetric .hero-right .showcase-card-wrap {
  margin: 0;
  max-width: 100%;
}
.hero-asymmetric .hero-right .showcase-caption {
  text-align: right;
  margin: 16px 0 0;
}
.hero-scurve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--accent);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  animation: heroScurveIn 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) 0.4s forwards;
}
@keyframes heroScurveIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 0.35; transform: translateY(0); }
}
.ht-strike {
  position: relative;
  display: inline-block;
  color: var(--accent);
  font-size: 1.15em;
  padding: 0 0.12em;
}
.ht-strike::after {
  content: "";
  position: absolute;
  left: 0.05em;
  right: 0.05em;
  top: 52%;
  height: 5px;
  background: var(--accent);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  animation: pdfStrike 0.8s cubic-bezier(0.65, 0, 0.35, 1) 1.2s forwards;
}
@keyframes pdfStrike {
  0% { transform: scaleX(0); }
  60% { transform: scaleX(1.06); }
  100% { transform: scaleX(1); }
}

.workshop {
  position: relative;
  padding: 120px 0 140px;
  background: var(--cream);
  overflow: hidden;
}
body.dark .workshop { background: #15191E; }
body.dark .workshop-hairline { background: var(--cream); }
body.dark .workshop-eyebrow { color: var(--accent); }
body.dark .workshop-line-1,
body.dark .workshop-line-2,
body.dark .workshop-line-3 { color: var(--ink); }
body.dark .workshop-quote { color: var(--ink); }
body.dark .workshop-attribution { color: rgba(250, 247, 242, 0.65); }
body.dark .workshop-squiggle,
body.dark .workshop-squiggle-label { color: var(--accent); }
body.dark .workshop-anno-text { fill: var(--accent); }
body.dark .workshop-annotations { color: var(--accent); }
.workshop-hairline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  margin-left: -340px;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.workshop.is-on .workshop-hairline { transform: scaleY(1); }
.workshop-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 80px;
  align-items: start;
  position: relative;
}
.workshop-left {
  position: sticky;
  top: 120px;
  padding-left: 32px;
}
.workshop-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.workshop-heading {
  margin: 0;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.workshop-line { display: block; }
.workshop-line-1, .workshop-line-3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.workshop-line-2 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--ink);
}
.workshop-pullquote {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.workshop-quote {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 12px;
}
.workshop-attribution {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.workshop-right {
  position: relative;
}
.workshop-card-wrap {
  position: relative;
  perspective: 1800px;
}
.workshop-card {
  position: relative;
  z-index: 2;
}
.workshop-annotations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--accent);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.workshop.is-on .workshop-annotations { opacity: 1; transform: translateY(0); }
.workshop-anno-text {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  fill: var(--accent);
}
.workshop-squiggle {
  position: absolute;
  top: -8px;
  right: -36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--accent);
  transform: rotate(4deg);
}
.workshop-squiggle svg { display: block; }
.workshop-squiggle-label {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  margin-top: 2px;
  color: var(--accent);
}

@media (max-width: 900px) {
  .workshop { padding: 60px 0 80px; }
  .workshop-grid { grid-template-columns: 1fr; gap: 40px; }
  .workshop-left { position: static; padding-left: 0; }
  .workshop-hairline { display: none; }
  .workshop-squiggle { right: 0; }
}

@media (max-width: 900px) {
  .hero-asymmetric { min-height: 0; max-height: none; padding: 48px 0 24px; }
  .hero-asymmetric-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-asymmetric .hero-right { transform: none; }
  .hero-asymmetric .hero-right .showcase-caption { text-align: center; }
  .hero-scurve { display: none; }
  .hero-folio { padding: 8px 16px; gap: 6px; }
  .hero-folio .folio-rule { display: none; }
  .hero-launch { padding: 16px 14px; }
  .launch-grid { gap: 6px; }
  .launch-cell { min-width: 48px; padding: 4px 2px; }
  .launch-cell strong { font-size: clamp(22px, 6vw, 32px); }
  .launch-sep { font-size: clamp(20px, 5vw, 26px); }
}

[data-split] {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
[data-split] > .ch {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
[data-split].is-split > .ch {
  animation: chIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes chIn { to { transform: translateY(0); opacity: 1; } }

[data-split] > .wh {
  display: inline-block;
  width: 0.25em;
}

.hero > .container {
  max-width: 1480px;
  padding: 0 32px;
}

.hero-folio {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  clip-path: inset(0 100% 0 0);
  animation: folioWipe 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.15s forwards;
}
@keyframes folioWipe { to { clip-path: inset(0 0 0 0); } }
.hero-folio .folio-issue {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 14, 'SOFT' 0, 'WONK' 0;
  font-weight: 600;
  color: var(--accent);
}
.hero-folio .folio-label { color: var(--muted); }
.hero-folio .folio-rule { flex: 1; height: 1px; background: var(--line); }

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 10px;
  box-shadow: 0 2px 10px rgba(15, 20, 25, 0.04);
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(46, 168, 105, 0.20);
  animation: pulse 1.6s ease-in-out infinite;
}
.eyebrow strong { color: var(--ink); font-weight: 700; }
.eyebrow-sep { opacity: 0.4; }

.hero-mark-row {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 28px;
  padding: 0;
}
.hero-mark {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.hero-mark .mark-eyebrow { line-height: 1; }
.hero-eyebrow-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-eyebrow-text strong { color: var(--accent); font-weight: 800; }
.hero-eyebrow-text-sep { opacity: 0.4; }

.hero-title {
  margin: 0 auto 24px;
  max-width: 1000px;
  width: 100%;
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  gap: 0px;
  position: relative;
}

.ht-row {
  display: block;
  line-height: 1;
  letter-spacing: -0.04em;
}

.ht-row-1 {
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 800;
  font-family: 'Bricolage Grotesque', 'Inter', -apple-system, sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 96, 'wght' 800;
  color: var(--ink);
  letter-spacing: -0.035em;
}

.ht-row-2 {
  font-size: clamp(36px, 5.5vw, 76px);
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.ht-display {
  font-family: 'Bricolage Grotesque', 'Inter', -apple-system, sans-serif;
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 96, 'wght' 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.ht-serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.ht-orange {
  color: var(--accent);
  font-size: 1.15em;
  text-shadow: 0 0 60px var(--accent-glow-3);
}

.underline {
  background: linear-gradient(transparent 62%, rgba(255, 107, 53, 0.55) 62%, rgba(255, 107, 53, 0.55) 90%, transparent 90%);
  padding: 0 4px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.55;
  text-wrap: balance;
  position: relative;
  padding-top: 18px;
}
.hero-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: var(--ink);
}

.signup-form {
  max-width: 960px;
  margin: 0 auto;
}

.signup-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  box-shadow:
    0 1px 2px rgba(15, 20, 25, 0.04),
    0 12px 32px rgba(15, 20, 25, 0.10),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.signup-row > input[type="email"] { flex: 1.4 1 0; min-width: 0; }
.signup-row > select { flex: 0.9 1 0; min-width: 0; }
.signup-row > button { flex: 0 0 auto; }
.signup-row:hover {
  border-color: rgba(255, 107, 53, 0.35);
  box-shadow:
    0 1px 2px rgba(15, 20, 25, 0.04),
    0 16px 40px rgba(255, 107, 53, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}
.signup-row:focus-within {
  border-color: var(--accent);
  box-shadow:
    0 1px 2px rgba(15, 20, 25, 0.04),
    0 18px 48px rgba(255, 107, 53, 0.22),
    0 0 0 4px rgba(255, 107, 53, 0.12);
  transform: translateY(-1px);
}

.signup-row input,
.signup-row select {
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 14px 14px;
  border-radius: 10px;
  min-width: 0;
  min-height: 48px;
}
.signup-row input::placeholder { color: #9aa1ab; }
.signup-row select { color: var(--muted); cursor: pointer; }
.signup-row input:focus,
.signup-row select:focus { background: var(--cream-2); color: var(--ink); }

.signup-row .btn-primary {
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 15px;
  min-height: 48px;
}

.form-msg {
  font-size: 14px;
  color: var(--muted);
  margin: 14px 0 0;
  min-height: 20px;
}
.form-msg.ok { color: var(--green); }
.form-msg.err { color: var(--accent-2); }

.counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  margin: 0 0 22px;
}
.counter[hidden] { display: none; }
.counter-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.6s ease-in-out infinite;
}
.counter strong { color: var(--ink); font-weight: 700; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.55; }
}

.hero-meta {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta .sep { opacity: 0.5; }

.hero-launch {
  margin: 28px auto 14px;
  padding: 18px 22px 16px;
  max-width: 520px;
  background: var(--card-bg);
  border: 1px solid var(--ink);
  border-radius: 16px;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15, 20, 25, 0.06);
}
.hero-launch::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--accent);
}

.launch-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 12px;
}
.launch-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.18), 0 0 10px rgba(255, 107, 53, 0.5);
  animation: pulse 1.6s ease-in-out infinite;
}

.launch-grid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.launch-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding: 4px 6px;
}
.launch-cell strong {
  display: inline-block;
  overflow: hidden;
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-variation-settings: 'SOFT' 15, 'WONK' 1;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.launch-cell span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.launch-sep {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  padding-bottom: 14px;
}

.launch-foot {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 10px;
}

@media (max-width: 480px) {
  .launch-cell { min-width: 52px; }
  .hero-launch { padding: 16px 14px; }
}

.hero-trust {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-trust-founder {
  display: flex;
  align-items: center;
  gap: 12px;
}
.founder-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink) 60%, var(--accent) 60%, var(--accent) 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.hero-trust-founder strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.2;
}
.hero-trust-founder span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}
.hero-trust-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.hero-trust-link:hover { text-decoration: none; color: var(--accent); border-color: var(--accent); }
.hero-trust-link span { transition: transform 0.15s ease; }
.hero-trust-link:hover span { transform: translateX(3px); }

.showcase {
  padding: 28px 0 24px;
  position: relative;
}

.showcase > .container { position: relative; z-index: 1; }

.showcase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 auto 18px;
  display: flex;
  width: fit-content;
}
.showcase-eyebrow .dot-live {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.6s ease-in-out infinite;
}

.showcase-card {
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(15, 20, 25, 0.06),
    0 24px 60px -12px rgba(15, 20, 25, 0.18);
  max-width: 940px;
  margin: 0 auto;
  transition: box-shadow 0.4s ease;
  position: relative;
}
.showcase-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: var(--ink);
  z-index: 2;
}
.showcase-card:hover {
  box-shadow:
    0 1px 0 rgba(15, 20, 25, 0.06),
    0 32px 80px -12px rgba(15, 20, 25, 0.24);
}

[data-parallax] { will-change: transform; }

.showcase-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.showcase-bar .dot-r,
.showcase-bar .dot-y,
.showcase-bar .dot-g {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.showcase-bar .dot-r { background: #FF5F57; }
.showcase-bar .dot-y { background: #FEBC2E; }
.showcase-bar .dot-g { background: #28C840; }
.showcase-url {
  margin-left: 14px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'SF Mono', Menlo, monospace;
}

.showcase-tabs {
  margin-left: auto;
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 0;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.showcase-tabs.is-highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow-2);
}
.s-tab {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 10px 14px;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.s-tab:hover { color: var(--ink); }
.s-tab.is-active {
  background: var(--ink);
  color: var(--cream);
}

.showcase-body { padding: 28px; }

.showcase-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.showcase-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #FFB088);
}
.showcase-hero h3 { margin: 0; font-size: 18px; }
.showcase-hero p { margin: 2px 0 0; font-size: 13px; color: var(--muted); }

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px 0;
}
@media (max-width: 640px) {
  .showcase-grid { grid-template-columns: 1fr; }
}
.showcase-tile {
  background: var(--cream-2);
  border-radius: 10px;
  padding: 14px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tile-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}
.showcase-tile strong { font-size: 14px; line-height: 1.3; }

.showcase-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.pf { font-family: 'Instrument Sans', sans-serif; }
.pf-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.pf-monogram {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 36, 'SOFT' 25, 'WONK' 1;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}
body.dark .pf-monogram { background: var(--cream); color: var(--ink); }
.pf-head-meta { flex: 1; min-width: 0; }
.pf-name { margin: 0; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.pf-role { margin: 2px 0 0; font-size: 12.5px; color: var(--muted); }
.pf-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
}
.pf-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 168, 105, 0.18);
  animation: pfPulse 1.6s ease-in-out infinite;
}
@keyframes pfPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

.pf-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 4px 0 10px;
}
.pf-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.pf-foot-meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.pf-chef .pf-menu { list-style: none; padding: 0; margin: 0 0 4px; }
.pf-chef .pf-menu li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13.5px;
}
.pf-chef .pf-menu li:last-child { border-bottom: 0; }
.pf-course {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 18, 'SOFT' 25, 'WONK' 1;
  font-weight: 500;
  font-size: 13px;
  color: var(--accent);
}
.pf-dish { color: var(--ink); font-weight: 500; }
.pf-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 2px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.pf-price {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 30, 'SOFT' 20, 'WONK' 0;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  margin-left: auto;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
body.dark .pf-price { color: var(--cream); }

.pf-dev .pf-dev-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}
.pf-dev .pf-stat {
  background: var(--cream-2);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pf-dev .pf-stat-num {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 48, 'SOFT' 25, 'WONK' 1;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.pf-dev .pf-stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.pf-contrib-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 14px;
}
.pf-contrib-cell {
  background: var(--cream-2);
  border-radius: 6px;
  padding: 6px 4px;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 1.2;
}
.pf-contrib-bar {
  display: block;
  margin: 6px auto 0;
  width: 8px;
  background: var(--accent);
  border-radius: 999px;
  height: var(--h, 0%);
  min-height: 4px;
  max-height: 28px;
  transition: height 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pf-dev-talk {
  font-size: 13px;
  color: var(--ink);
  padding: 10px 12px;
  background: var(--cream-2);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}

.pf-student .pf-proj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pf-student .pf-proj {
  background: var(--cream-2);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 2px solid var(--ink);
}
.pf-student .pf-proj-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.pf-student .pf-proj strong { font-size: 14px; line-height: 1.3; color: var(--ink); }
.pf-student .pf-proj-meta { font-size: 11px; color: var(--muted); }

.pf-consultant .pf-cases {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.pf-consultant .pf-cases li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.pf-consultant .pf-cases li:last-child { border-bottom: 0; }
.pf-consultant .pf-case-num {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 18, 'SOFT' 25, 'WONK' 1;
  font-weight: 500;
  font-size: 13px;
  color: var(--accent);
}
.pf-consultant .pf-case-meta strong { display: block; font-size: 13.5px; color: var(--ink); }
.pf-consultant .pf-case-meta span { display: block; font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.pf-consultant .pf-case-out {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 8px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  white-space: nowrap;
}
.pf-quote {
  margin: 0;
  padding: 12px 14px;
  background: var(--cream-2);
  border-radius: 10px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .pf-contrib-grid { grid-template-columns: repeat(7, 1fr); gap: 3px; }
  .pf-dev .pf-stat-num { font-size: 22px; }
  .pf-student .pf-proj-grid { grid-template-columns: 1fr; }
}
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
}
.badge.muted {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.badge.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.s-action { cursor: pointer; transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease; min-height: 44px; padding: 12px 18px; font-size: 13px; }
.s-action:hover { transform: translateY(-1px); }
.s-action.is-flash {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}

.s-fade { animation: sFade 0.35s ease; }
@keyframes sFade {
  0%   { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

.who, .features, .pricing, .cta {
  padding: 88px 0;
}
@media (max-width: 720px) {
  .who, .features, .pricing, .cta { padding: 56px 0; }
}

.faq { padding: 88px 0 32px; }
@media (max-width: 720px) { .faq { padding: 56px 0 24px; } }

.stats { padding: 88px 0; }
@media (max-width: 720px) { .stats { padding: 56px 0; } }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stats-grid { grid-template-columns: 1fr; } }

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.25s ease;
}
body.dark .stat { background: var(--card-bg); }
.stat:hover { border-color: var(--ink); }
.stat strong {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-variation-settings: 'SOFT' 20, 'WONK' 1;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.stat-unit {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
}
.stat-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

.horizontal { padding: 88px 0 32px; overflow: hidden; }
@media (max-width: 720px) { .horizontal { padding: 56px 0 24px; } }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.faq-item[open] {
  border-color: var(--ink);
  box-shadow: 0 8px 24px rgba(15, 20, 25, 0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
  transition: background 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--cream-2); }
.faq-item[open] summary:hover { background: transparent; }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream-2);
  position: relative;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.4s linear(0, 0.5 60%, 1.05 82%, 1);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-icon::before { width: 12px; height: 2px; margin: -1px 0 0 -6px; }
.faq-icon::after  { width: 2px;  height: 12px; margin: -6px 0 0 -1px; }
.faq-item[open] .faq-icon { background: var(--ink); transform: rotate(180deg); }
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--cream); }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }

.faq-body {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  animation: faqOpen 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.faq-body p { margin: 0; }

@keyframes faqOpen {
  0%   { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .faq-item summary { padding: 18px; font-size: 15px; }
  .faq-body { padding: 0 18px 18px; font-size: 14.5px; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.34s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.42s; }

.hero .eyebrow,
.hero .hero-title,
.hero .hero-sub,
.hero .signup-form,
.hero .hero-meta {
  animation: heroIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero .eyebrow      { animation-delay: 0.05s; }
.hero .hero-title   { animation-delay: 0.18s; }
.hero .hero-sub     { animation-delay: 0.30s; }
.hero .signup-form  { animation-delay: 0.42s; }
.hero .hero-meta    { animation-delay: 0.54s; }

.showcase .showcase-card { animation: heroIn 1.0s cubic-bezier(0.2, 0.7, 0.2, 1) 0.55s both; }

@keyframes heroIn {
  0%   { opacity: 0; transform: translateY(18px); filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .scroll-progress { display: none !important; }
  body > main > *:not(.hero) { visibility: visible !important; }
  body { overflow-x: auto !important; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #FFB088);
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.6);
  transform-origin: left center;
  will-change: width;
}

.tabular { font-variant-numeric: tabular-nums; }

.marquee {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  margin-top: 56px;
  background:
    linear-gradient(90deg, rgba(255, 107, 53, 0.06), transparent 20%, transparent 80%, rgba(255, 107, 53, 0.06));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--cream), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--cream), transparent); }

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track {
  display: inline-flex;
  gap: 18px;
  white-space: nowrap;
  padding-right: 18px;
  align-items: center;
  will-change: transform;
  animation: marquee 36s linear infinite;
}

.marquee-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(15, 20, 25, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}
.marquee-chip:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(255, 107, 53, 0.18);
}
.marquee-chip .ico { width: 18px; height: 18px; flex-shrink: 0; }
.marquee-chip.accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.marquee-chip .star {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.6);
}

.marquee-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.55);
  animation: dotPulse 1.6s ease-in-out infinite;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.6; }
}

.magnetic { transition: transform 0.35s linear(0, 0.4 55%, 1.06 78%, 0.98 92%, 1); }

.ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: rippleOut 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  z-index: 0;
}

@keyframes rippleOut {
  0%   { transform: scale(0);   opacity: 0.5; }
  100% { transform: scale(2.4); opacity: 0; }
}

.cmd-k-fab {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  right: max(24px, env(safe-area-inset-right));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15, 20, 25, 0.10);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cmd-k-fab:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(15, 20, 25, 0.16); }
.cmd-k-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cmd-k-text { color: var(--muted); }

.cmd-palette {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
  pointer-events: none;
}
.cmd-palette.is-open { display: flex; pointer-events: auto; }

.cmd-palette-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: backdropIn 0.25s ease;
}

@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.cmd-palette-card {
  position: relative;
  width: min(560px, calc(100% - 32px));
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(15, 20, 25, 0.30);
  overflow: hidden;
  animation: paletteIn 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@keyframes paletteIn {
  from { opacity: 0; transform: translateY(-12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cmd-palette-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.cmd-palette-input input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  min-width: 0;
}
.cmd-palette-input input::placeholder { color: #9aa1ab; }
.cmd-palette-input kbd {
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream-2);
  color: var(--muted);
}

.cmd-palette-list {
  list-style: none;
  margin: 0;
  padding: 8px;
  max-height: 360px;
  overflow-y: auto;
}

.cmd-palette-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.12s ease;
  font-size: 14.5px;
}
.cmd-palette-item.is-active,
.cmd-palette-item:hover { background: var(--cream-2); }
.cmd-palette-item .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.cmd-palette-item .icon.accent { background: var(--accent); }
.cmd-palette-item .label { flex: 1; color: var(--ink); font-weight: 500; }
.cmd-palette-item .hint {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.cmd-palette-empty {
  padding: 32px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.cmd-palette-foot {
  display: flex;
  gap: 16px;
  padding: 10px 18px;
  border-top: 1px solid var(--line);
  background: var(--cream-2);
  font-size: 11px;
  color: var(--muted);
}
.cmd-palette-foot kbd {
  display: inline-block;
  margin-right: 4px;
  padding: 1px 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
}

@media (max-width: 720px) {
  .cmd-k-fab { bottom: 16px; right: 16px; padding: 8px 10px; }
  .cmd-k-text { display: none; }
  .cmd-palette { padding-top: 8vh; }
}

[data-reveal] { opacity: 0; transform: translateY(40px); }
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1); }

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; text-decoration: none; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 800;
  margin: 0 0 18px;
}
.section-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.section-label.is-in::before { transform: scaleX(1); }

.folio-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  opacity: 0.85;
}
.folio-meta-dot { color: var(--accent); }
.folio-meta-sep { opacity: 0.4; }

.who h2, .features h2, .pricing h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 36px;
  max-width: 720px;
}

.who-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .who-grid { grid-template-columns: 1fr; } }

.who-grid li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.who-grid li:hover { transform: translateY(-2px); border-color: var(--ink); }
.who-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--accent-50);
  color: var(--accent-900);
}
body.dark .who-icon { background: rgba(255, 107, 53, 0.12); color: var(--accent); }
.who-icon svg { width: 20px; height: 20px; }
.who-grid strong { display: block; font-size: 15px; }
.who-grid p { margin: 4px 0 0; font-size: 13px; color: var(--muted); }

.dossier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--ink);
}
.dossier-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: dossier;
}
.dossier-list-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  line-height: 1.4;
}
.dossier-list-row:last-child { border-bottom: 0; }
.dossier-num {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 30, 'SOFT' 25, 'WONK' 1;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
  min-width: 32px;
  flex-shrink: 0;
}
.dossier-text strong {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-size: 16px;
  margin-right: 4px;
}
.dossier-text { color: var(--muted); display: inline; }
.dossier-mono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 18, 'SOFT' 25, 'WONK' 1;
  font-weight: 500;
  font-size: 11px;
  vertical-align: -4px;
}
.dossier-mono-1 { background: var(--accent); }
.dossier-mono-2 { background: #1A2128; color: #F5DDB0; }
.dossier-mono-3 { background: var(--ink); }
.dossier-mono-4 { background: #8A3517; }
.dossier-mono-5 { background: #15191E; color: #A0E4FF; }
.dossier-mono-6 { background: #6B5B3F; }
body.dark .dossier-mono-1 { background: var(--accent); }
body.dark .dossier-mono-2 { background: var(--cream-2); color: var(--cream); }
body.dark .dossier-mono-3 { background: var(--cream); color: var(--ink); }
body.dark .dossier-mono-4 { background: #8A3517; }
body.dark .dossier-mono-5 { background: #A0E4FF; color: var(--ink); }
body.dark .dossier-mono-6 { background: #6B5B3F; }

@media (max-width: 900px) {
  .dossier-grid { grid-template-columns: 1fr; gap: 40px; }
}

.receipt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-top: 48px;
}
.receipt {
  background: var(--cream);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.receipt-featured {
  background: var(--ink);
  color: var(--cream);
}
.receipt-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid currentColor;
  padding-bottom: 12px;
  opacity: 0.85;
}
.receipt h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.receipt-tier {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.receipt-featured .receipt-tier { color: var(--accent); }
.receipt-price {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 50, 'SOFT' 15, 'WONK' 0;
  font-weight: 500;
  font-size: 56px;
  margin: 16px 0 0;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: inherit;
}
.receipt-price .receipt-unit {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-left: 4px;
  vertical-align: super;
  opacity: 0.7;
}
.receipt-sub {
  margin: 0;
  font-size: 13px;
  opacity: 0.7;
  font-family: 'Inter', -apple-system, sans-serif;
}
.receipt-items {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-family: 'Inter', -apple-system, sans-serif;
}
.receipt-items li {
  padding: 8px 0;
  border-bottom: 1px dashed currentColor;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 8px;
}
.receipt-items li::before {
  content: "—";
  opacity: 0.5;
}
.receipt-items li:last-child { border-bottom: 0; }
.receipt .btn { align-self: flex-start; margin-top: auto; }
body.dark .receipt-grid { background: #1A2128; border-color: var(--cream); }
body.dark .receipt { background: transparent; color: var(--ink); }
body.dark .receipt-featured { background: var(--accent); color: #fff; }
body.dark .receipt-featured .receipt-tier { color: #fff; }

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

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.stats-band .stat {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--ink);
  border-radius: 0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.25s ease;
}
.stats-band .stat:last-child { border-right: 0; }
.stats-band .stat:hover { background: var(--accent-50); }
body.dark .stats-band .stat:hover { background: rgba(255, 107, 53, 0.10); }
.stats-band .stat strong {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 80, 'SOFT' 20, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
body.dark .stats-band .stat strong { color: var(--ink); }
.stats-band .stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stats-band .stat-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stats-band .stat:nth-child(2n) { border-right: 0; }
  .stats-band .stat:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
}
@media (max-width: 540px) {
  .stats-band { grid-template-columns: 1fr; }
  .stats-band .stat { border-right: 0; border-bottom: 1px solid var(--ink); }
  .stats-band .stat:last-child { border-bottom: 0; }
}

.orbits {
  position: relative;
  margin-top: 64px;
  padding: 80px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.orbit-line {
  position: absolute;
  top: 16px;
  left: 16.6%;
  right: 16.6%;
  height: 1px;
  background: rgba(250, 247, 242, 0.18);
  z-index: 0;
}
.orbit-line-fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.orbits.is-on .orbit-line-fill {
  animation: orbitFill 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes orbitFill {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
.orbit-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.orbit-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 242, 0.25);
  background: #1A2128;
  color: var(--accent);
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 24, 'SOFT' 25, 'WONK' 1;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.orbit-node-1 .orbit-dot { background: var(--accent); color: #fff; border-color: var(--accent); }
.orbit-node h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.01em;
}
.orbit-node p {
  color: rgba(250, 247, 242, 0.65);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
  max-width: 280px;
}

@media (max-width: 900px) {
  .orbits { grid-template-columns: 1fr; gap: 32px; padding: 0; }
  .orbit-line { display: none; }
  .orbit-dot { margin-bottom: 8px; }
  .orbit-node h3 { font-size: 24px; }
}

.stamp {
  position: relative;
  padding: 96px 0;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0;
  margin: 0 0 0;
  max-width: none;
}
body.dark .stamp { background: #15191E; color: var(--ink); }
.stamp::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(250, 247, 242, 0.25);
  pointer-events: none;
  z-index: 0;
}
body.dark .stamp::before { border-color: rgba(250, 247, 242, 0.15); }
.stamp .container { position: relative; z-index: 1; }
.stamp-headline {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 80, 'SOFT' 30, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--cream);
}
body.dark .stamp-headline { color: #F5F1EA; }
.stamp-sub {
  font-size: 16px;
  color: rgba(250, 247, 242, 0.7);
  margin: 0 0 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.stamp .btn-primary { background: var(--accent); color: #fff; }
.stamp .btn-primary:hover { background: var(--accent-700); }

.colophon {
  position: relative;
  padding: 80px 0 48px;
  border-top: 1px solid var(--ink);
  font-size: 12px;
  color: var(--muted);
}

.built-with {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-2);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
body.dark .built-with { background: rgba(250, 247, 242, 0.04); border-color: rgba(250, 247, 242, 0.10); }
.built-with strong {
  color: var(--ink);
  font-weight: 800;
}
body.dark .built-with strong { color: var(--cream); }

.running-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
}
body.dark .running-head { background: rgba(15, 20, 25, 0.92); border-color: rgba(250, 247, 242, 0.12); }
.running-head-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.running-head-issue {
  color: var(--ink);
  font-weight: 800;
}
body.dark .running-head-issue { color: var(--cream); }
.running-head-sep {
  color: var(--accent);
  font-weight: 800;
}
.running-head-section {
  color: var(--ink);
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 14, 'SOFT' 20, 'WONK' 0;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: none;
}
body.dark .running-head-section { color: var(--cream); }
.running-head-page {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 14, 'SOFT' 20, 'WONK' 1;
  font-weight: 500;
  color: var(--accent);
  margin-left: auto;
}
.running-head-inner { position: relative; }
.running-head-page { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
@media (max-width: 720px) {
  .running-head-page { display: none; }
}
body.dark .colophon { border-color: var(--cream); }
.colophon::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 80px;
  height: 1px;
  margin-left: -40px;
  background: var(--accent);
}
.colophon .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.colophon-mark {
  font-family: 'DM Serif Display', 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 0.9;
}
.colophon-mark::after {
  content: "·";
  color: var(--accent);
  margin-left: 8px;
  font-style: normal;
  font-weight: 600;
}
.colophon-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 0 24px;
}
.colophon-meta {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.colophon-tag {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 30, 'SOFT' 20, 'WONK' 0;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink);
}
.colophon-anti {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
  max-width: 32ch;
  text-align: center;
  line-height: 1.5;
}
body.dark .colophon-anti { border-color: rgba(250, 247, 242, 0.15); }

.colophon-printer-mark {
  width: 64px;
  height: 64px;
  color: var(--accent);
  margin-bottom: 8px;
}
body.dark .colophon-printer-mark { color: var(--accent); }
.colophon-printed {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 14, 'SOFT' 20, 'WONK' 0;
  font-weight: 400;
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em;
  line-height: 1.5;
  max-width: 36ch;
  text-align: center;
}
.colophon-spacer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}
.colophon-spacer .colophon-year {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 60, 'SOFT' 25, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
  color: var(--muted);
  line-height: 1;
}
.colophon-spacer .colophon-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
@media (max-width: 720px) {
  .colophon .container { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .colophon-center { border: 0; padding: 0; }
  .colophon-spacer { align-items: center; text-align: center; }
  .colophon::before { width: 40px; margin-left: -20px; }
}

.horizontal-strip {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 32px max(32px, calc((100vw - var(--container)) / 2)) 32px max(32px, calc((100vw - var(--container)) / 2));
  margin-top: 32px;
  scrollbar-width: thin;
  scroll-padding-inline: max(32px, calc((100vw - var(--container)) / 2));
}
.h-card {
  flex: 0 0 340px;
  border: 0;
  border-top: 1px solid var(--ink);
  background: transparent;
  padding: 20px 0;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.25s ease;
}
body.dark .h-card { border-top-color: var(--ink); }
.h-card:hover { transform: none; }
.h-card .h-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  background: var(--cream-2);
  color: var(--ink);
}
body.dark .h-card .h-avatar { background: var(--ink-2); color: var(--ink); }
.h-card .h-role { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.h-card h3 { font-family: 'Inter', sans-serif; font-size: 17px; line-height: 1.3; margin: 0 0 8px; font-weight: 700; }
.h-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }
.h-card .h-foot { margin-top: 12px; display: flex; gap: 6px; }
.h-card .badge { font-size: 11px; padding: 4px 8px; background: transparent; color: var(--ink); border: 1px solid var(--line); }
body.dark .h-card .badge { color: var(--ink); border-color: var(--line); }
.h-card .badge.muted { background: transparent; border: 0; padding: 0; color: var(--muted); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  background: var(--cream-2);
  border-radius: 14px;
  padding: 26px;
  border: 1px solid transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.feature:hover { border-color: var(--ink); background: #fff; }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--accent-50);
  color: var(--accent-900);
}
body.dark .feature-icon { background: rgba(255, 107, 53, 0.12); color: var(--accent); }
.feature-icon svg { width: 20px; height: 20px; }
.feature h3 {
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.feature p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 820px;
}
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.plan-featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.plan-tag {
  position: absolute;
  top: -10px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
}
.plan h3 { margin: 0 0 12px; font-size: 18px; }
.plan .price {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-variation-settings: 'SOFT' 15, 'WONK' 0;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.plan .price span { font-size: 14px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.plan-featured .price span { color: rgba(250, 247, 242, 0.6); }
.plan .price-sub { margin: 4px 0 18px; font-size: 14px; color: var(--muted); }
.plan-featured .price-sub { color: rgba(250, 247, 242, 0.65); }
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 14.5px;
}
.plan li {
  padding: 7px 0;
  border-bottom: 1px dashed rgba(15, 20, 25, 0.08);
}
.plan-featured li { border-bottom-color: rgba(250, 247, 242, 0.12); }
.plan li:last-child { border-bottom: 0; }
.plan .btn { width: 100%; }
.plan-featured .btn-primary { background: var(--accent); }
.plan-featured .btn-primary:hover { background: var(--accent-2); }
.plan-featured .btn-ghost { color: var(--cream); border-color: var(--cream); }
.plan-featured .btn-ghost:hover { background: var(--cream); color: var(--ink); }

.cta {
  text-align: center;
  background: var(--ink);
  color: var(--cream);
  border-radius: 24px;
  margin: 0 24px 32px;
  max-width: calc(var(--container) - 48px);
}
.cta.stamp {
  border-radius: 0;
  margin: 0;
  max-width: none;
}
.cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.cta p {
  color: rgba(250, 247, 242, 0.7);
  margin: 0 0 28px;
}

.footer {
  padding: 24px 0 48px;
  font-size: 13px;
  color: var(--muted);
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  body::before, body::after { display: none; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }

  .container { padding: 0 16px; }
  .nav { padding: 12px 16px; }

  .brand { font-size: 16px; }
  .brand-mark { width: 20px; height: 20px; }

  .btn { padding: 11px 16px; font-size: 14px; border-radius: 10px; }
  .btn-sm { padding: 9px 14px; font-size: 13px; }
  .btn-lg { padding: 14px 22px; font-size: 16px; }

  .hero { padding: 84px 0 16px; }
  .hero > .container { padding: 0 16px; }
  .hero-inner { padding: 0; max-width: 100%; }

  .eyebrow {
    font-size: 11.5px;
    padding: 5px 10px;
    gap: 6px;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
  }
  .eyebrow .dot { width: 6px; height: 6px; }

  .ht-row-1 { font-size: clamp(32px, 9.5vw, 48px); line-height: 1.05; letter-spacing: -0.03em; }
  .ht-row-2 {
    font-size: clamp(32px, 9.5vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    gap: 0.15em;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ht-orange { font-size: 1em; text-shadow: 0 0 30px rgba(255, 107, 53, 0.3); }

  .hero-title { gap: 2px; margin-bottom: 14px; max-width: 100%; }

  .hero-sub {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 18px;
    padding: 0;
    max-width: 100%;
  }

  .signup-form { max-width: 100%; width: 100%; }
  .signup-row {
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 6px;
    border-radius: 14px;
    width: 100%;
  }
  .signup-row input,
  .signup-row select {
    font-size: 16px;
    padding: 14px 14px;
    background: var(--cream-2);
    width: 100%;
    border-radius: 10px;
  }
  .signup-row .btn-primary {
    width: 100%;
    padding: 15px 18px;
    font-size: 15.5px;
  }

  .form-msg { font-size: 13.5px; margin-top: 12px; }

  .hero-meta {
    font-size: 12px;
    margin-top: 14px;
    gap: 6px;
    padding: 0;
    line-height: 1.6;
  }

  .showcase { padding: 20px 0 16px; }
  .showcase > .container { padding: 0 16px; }
  .showcase-eyebrow {
    font-size: 10px;
    padding: 5px 10px;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }
  .showcase-card {
    border-radius: 16px;
    max-width: 100%;
  }
  .showcase-bar { padding: 10px 12px; gap: 5px; }
  .showcase-bar .dot-r,
  .showcase-bar .dot-y,
  .showcase-bar .dot-g { width: 8px; height: 8px; }
  .showcase-url { font-size: 10.5px; margin-left: 8px; overflow: hidden; text-overflow: ellipsis; }
  .showcase-body { padding: 16px; }
  .showcase-hero { gap: 12px; padding-bottom: 14px; }
  .showcase-avatar { width: 40px; height: 40px; }
  .showcase-hero h3 { font-size: 15px; }
  .showcase-hero p { font-size: 11.5px; }
  .showcase-grid { gap: 8px; padding: 14px 0; }
  .showcase-tile { padding: 12px; min-height: auto; }
  .showcase-tile strong { font-size: 13px; line-height: 1.3; }
  .tile-label { font-size: 9.5px; }
  .badge { font-size: 11px; padding: 5px 9px; }

  .marquee { padding: 16px 0; margin-top: 24px; }
  .marquee-track { gap: 10px; }
  .marquee-chip { font-size: 12.5px; padding: 6px 12px; }
  .marquee-chip .ico { font-size: 14px; }
  .marquee-dot { width: 6px; height: 6px; }

  .who, .features, .pricing, .cta { padding: 48px 0; }

  .section-label { font-size: 11px; margin-bottom: 12px; }

  .who h2, .features h2, .pricing h2 {
    font-size: clamp(22px, 5.5vw, 28px);
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .who-grid li { padding: 16px; gap: 12px; }
  .who-icon { width: 34px; height: 34px; }
  .who-icon svg { width: 18px; height: 18px; }
  .who-grid strong { font-size: 14.5px; }
  .who-grid p { font-size: 12.5px; }

  .feature { padding: 20px; }
  .feature h3 { font-size: 16.5px; }
  .feature p { font-size: 13.5px; }

  .plan { padding: 24px 20px; }
  .plan .price { font-size: 30px; }
  .plan .price span { font-size: 13px; }
  .plan .price-sub { font-size: 13px; margin-bottom: 14px; }
  .plan ul { font-size: 13.5px; }
  .plan li { padding: 6px 0; }
  .plan-tag { font-size: 10px; padding: 3px 9px; right: 16px; top: -9px; }

  .cta {
    border-radius: 16px;
    margin: 0 16px 20px;
    padding: 36px 20px;
  }
  .cta h2 { font-size: clamp(20px, 5.5vw, 26px); margin-bottom: 10px; line-height: 1.2; }
  .cta p { font-size: 13.5px; margin-bottom: 20px; }

  .footer { padding: 18px 0 32px; }
  .footer .container { justify-content: center; text-align: center; gap: 6px; font-size: 12px; }

  .scroll-progress { height: 2px; }

  .nav-wrap { padding: 0 12px; }
  .nav {
    padding: 6px 8px 6px 14px;
    margin-top: 10px;
    max-width: 100%;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(15, 20, 25, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 12px;
  }
  .nav-links a:not(.nav-cta) { display: block; }
  .nav-cta {
    margin-top: 6px;
    justify-content: center;
    padding: 14px 18px !important;
    font-size: 15px;
  }
  .nav-burger { display: flex; }
}

@media (max-width: 420px) {
  .ht-row-1, .ht-row-2 { font-size: clamp(28px, 8.5vw, 38px); }
  .hero-sub { font-size: 14px; }
  .showcase-body { padding: 14px; }
  .showcase-hero h3 { font-size: 14px; }
  .showcase-tile strong { font-size: 12.5px; }
  .marquee-chip { font-size: 11.5px; padding: 5px 10px; }
}

.hero-cta {
  position: relative;
  min-height: 220px;
  margin-top: 28px;
}
.hero-cta-pre {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 24px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
body.dark .hero-cta-pre { background: rgba(21, 25, 30, 0.55); }
.hero-cta-pre.is-out {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.hero-cta-pre-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.hero-cta-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.18), 0 0 10px rgba(255, 107, 53, 0.5);
  animation: pulse 1.6s ease-in-out infinite;
}
.hero-cta-live {
  animation: ctaIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes ctaIn {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 250;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  top: -12vh;
  width: 10px;
  height: 16px;
  border-radius: 2px;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  0%   { transform: translate3d(0, -12vh, 0) rotate(0deg); opacity: 1; }
  100% { transform: translate3d(var(--dx, 0px), 115vh, 0) rotate(var(--rot, 720deg)); opacity: 0.9; }
}

.hero-magnetic {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.showcase-card-wrap {
  margin: 0 auto;
  max-width: 940px;
}

.showcase-caption {
  text-align: center;
  margin: 16px 0 0;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
}

.hero-inner { z-index: 2; }

.nav-wrap {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 16px;
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav-wrap.is-hidden { transform: translateY(-150%); }

.nav {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 6px;
  padding: 6px 6px 6px 14px;
  max-width: 980px;
  margin: 12px auto 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(232, 227, 217, 0.7);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(15, 20, 25, 0.04), 0 8px 24px rgba(15, 20, 25, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  position: relative;
  transition: box-shadow 0.3s ease, background 0.3s ease, padding 0.3s ease, max-width 0.3s ease;
}
.nav[data-state="scrolled"] {
  background: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  padding: 5px 5px 5px 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.015em;
  padding: 8px 8px 8px 4px;
  min-height: 44px;
  transition: opacity 0.3s ease;
}
.nav[data-state="scrolled"] .brand-name { display: none; }
.nav[data-state="scrolled"] .brand { padding-left: 4px; }

.brand-mark {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
body.dark .brand-mark { color: var(--cream); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13.5px;
  font-weight: 500;
  justify-content: center;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-2);
  padding: 14px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
  min-height: 44px;
}
.nav-link:hover { color: var(--ink); background: rgba(15, 20, 25, 0.05); text-decoration: none; }
.nav-link.is-active { color: var(--ink); background: rgba(15, 20, 25, 0.06); }
.nav-link-arrow {
  font-size: 9px;
  opacity: 0.5;
  transition: transform 0.2s ease;
}
.nav-mega:hover .nav-link-arrow { transform: rotate(180deg); }

.nav-indicator {
  position: absolute;
  bottom: 4px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0;
  transition: left 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), width 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.25s ease;
}
.nav-indicator.is-on { opacity: 1; }

.nav-mega {
  position: relative;
}
.nav-mega-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 540px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(15, 20, 25, 0.16);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0.18s;
}
.nav-mega:hover .nav-mega-panel,
.nav-mega:focus-within .nav-mega-panel {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  transition: background 0.15s ease;
}
.mega-item:hover { background: var(--cream-2); text-decoration: none; }
.mega-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.mega-item span {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 2px;
}
.mega-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.mega-foot-link { color: var(--accent); font-weight: 700; }
.mega-foot-meta { color: var(--muted); }

.nav-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 8px;
  background: var(--cream-2);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease;
  font-weight: 500;
}
.nav-search:hover { background: rgba(15, 20, 25, 0.08); }
.nav-search kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 22px;
  padding: 0 6px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 6px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: var(--cream) !important;
  padding: 13px 16px !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  transition: transform 0.2s cubic-bezier(0.2, 0.7, 0.2, 1), background 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
}
.nav-cta:hover {
  text-decoration: none;
  background: var(--ink-2) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 20, 25, 0.28);
}
.nav-cta-arrow { transition: transform 0.2s ease; font-size: 13px; }
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 44px;
  min-height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0 8px;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.nav-burger:hover { background: rgba(15, 20, 25, 0.05); }
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav-links, .nav-search, .nav-mega-panel { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 720px) {
  .nav-wrap { padding: 0 12px; }
  .nav { padding: 5px 5px 5px 12px; }
  .nav-search { display: none; }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 107, 53, 0.10), transparent 50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero.is-cursor-on::after { opacity: 1; }
.hero-mark-row em,
.ht-orange {
  position: relative;
}
.ht-orange::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 48%;
  height: 6px;
  background: var(--accent);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: strikeThrough 1.2s cubic-bezier(0.7, 0, 0.3, 1) 0.8s forwards;
}
@keyframes strikeThrough {
  0% { transform: scaleX(0); }
  60% { transform: scaleX(1.05); }
  100% { transform: scaleX(1); }
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-2);
  padding: 5px;
  border-radius: 999px;
  margin: 0 0 28px;
  border: 1px solid var(--line);
}
.pricing-toggle button {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 12px 18px;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pricing-toggle button.is-on {
  background: var(--ink);
  color: var(--cream);
}
.pricing-save {
  font-size: 10px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.plan .price.is-hidden { display: none; }
.plan .price.is-yearly { display: block; }
.plan .price-sub.is-yearly { display: block; }
.plan .price-sub.is-monthly { display: none; }

.share-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  min-height: 44px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.30);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.share-float.is-on { opacity: 1; transform: translateY(0); pointer-events: auto; }
.share-float:hover { background: #1FBA59; text-decoration: none; }
.share-float svg { width: 18px; height: 18px; }

@media (max-width: 720px) {
  .share-float { left: 16px; bottom: 16px; font-size: 13px; padding: 10px 14px; }
}

.demo-pin {
  position: relative;
  min-height: 80vh;
  background: #1A2128;
  color: #FAF7F2;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}
.demo-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 20% 50%, rgba(255, 107, 53, 0.20), transparent 60%);
  pointer-events: none;
}
.demo-pin .container { position: relative; z-index: 1; }
.demo-pin h2 {
  color: #FAF7F2;
  text-align: center;
  margin-bottom: 16px;
}
.demo-pin-lead {
  text-align: center;
  color: rgba(250, 247, 242, 0.7);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 40px;
}
.demo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 900px) { .demo-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .demo-steps { grid-template-columns: 1fr; } }

.demo-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  opacity: 0.5;
}
.demo-step.is-on {
  background: rgba(255, 107, 53, 0.18);
  border-color: var(--accent);
  opacity: 1;
  transform: scale(1.04);
}
.demo-step-num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 60, 'SOFT' 20, 'WONK' 1;
  font-weight: 500;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(250, 247, 242, 0.25);
  border-radius: 2px;
}
.demo-step h3 {
  color: var(--cream);
  font-size: 16px;
  margin: 0 0 6px;
}
.demo-step p {
  color: rgba(250, 247, 242, 0.7);
  font-size: 13px;
  margin: 0;
  line-height: 1.55;
}


.story {
  position: relative;
  padding: 120px 0;
  background: var(--ink-2);
}
body.dark .demo-pin,
body.dark .story { background: #1A2128;
  color: #FAF7F2;
  overflow: hidden;
  isolation: isolate;
}
.story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.18), transparent 50%);
  pointer-events: none;
}
.story .container { position: relative; z-index: 1; max-width: 980px; }

.story-track {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  min-height: 360px;
}
.story-step {
  padding: 24px 32px;
  border-left: 2px solid rgba(250, 247, 242, 0.10);
  opacity: 0.4;
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease;
  transform-origin: center top;
}
.story-step:first-child { border-left-width: 0; padding-left: 0; }
.story-step.is-active { opacity: 1; transform: scale(1.03); border-left-color: var(--accent); }
.story-step:first-child.is-active { border-left-width: 2px; padding-left: 30px; }
.story-num {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 90, 'SOFT' 25, 'WONK' 1;
  font-weight: 500;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(250, 247, 242, 0.25);
  border-radius: 2px;
}
.story-step h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #FAF7F2;
  line-height: 1.2;
}
.story-step h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.story-step h2 .underline {
  background: linear-gradient(transparent 65%, rgba(255, 107, 53, 0.45) 65%, rgba(255, 107, 53, 0.45) 90%, transparent 90%);
  padding: 0 2px;
  color: var(--cream);
}
.story-step p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.7);
  margin: 0 0 18px;
  max-width: 36ch;
}
.story-mock {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(250, 247, 242, 0.05);
  border: 1px solid rgba(250, 247, 242, 0.18);
  border-radius: 8px;
  font-family: 'Inter', monospace;
  max-width: 360px;
}
.story-mock-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(250, 247, 242, 0.85);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.story-mock-label-new { color: var(--accent); }
.story-mock-line {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.6);
  padding-left: 12px;
  position: relative;
}
.story-mock-line::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(250, 247, 242, 0.4);
}
.story-mock-line-new { color: rgba(250, 247, 242, 0.8); }
.story-mock-line-new::before { color: var(--accent); opacity: 0.6; }

.story-progress {
  height: 3px;
  background: rgba(250, 247, 242, 0.1);
  border-radius: 999px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.story-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--accent), #FFB088);
  transition: width 0.3s ease;
}

@media (max-width: 900px) {
  .story-track { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
  .story-step { border-left: 0; padding: 0; }
}

