/* =========================================================
   LaunchDraft — From Draft to Launch
   Palette: warm cream / deep ink / persimmon accent
   Type: Quicksand (logo) · Bricolage Grotesque (display) · Hanken Grotesk (body)
   ========================================================= */

:root {
  /* Palette */
  --bg: #faf6f0;
  --surface: #f2ebe1;
  --surface-2: #ece2d4;
  --ink: #17223b;
  --ink-soft: #33405c;
  --muted: #6f6a63;
  --line: #ded3c4;
  --accent: #e0501c;      /* logo orange — brand accent, CTAs/links only */
  --accent-ink: #a8380c;  /* darker orange for accent text on cream (AA) */
  --accent-deep: #b9400e; /* logo fold shadow — hover/pressed states */
  --accent-tint: #f4936a; /* lighter orange for accents on the ink sections */
  --paper: #ffffff;

  /* Fluid type scale (Major Third) */
  --text-sm:  clamp(0.80rem, 0.75rem + 0.24vw, 0.94rem);
  --text-base: clamp(1.00rem, 0.94rem + 0.30vw, 1.18rem);
  --text-lg:  clamp(1.20rem, 1.09rem + 0.55vw, 1.55rem);
  --text-xl:  clamp(1.50rem, 1.30rem + 1.00vw, 2.20rem);
  --text-2xl: clamp(1.95rem, 1.55rem + 2.00vw, 3.10rem);
  --text-3xl: clamp(2.55rem, 1.90rem + 3.25vw, 4.60rem);
  --text-4xl: clamp(3.30rem, 2.10rem + 6.00vw, 7.20rem);

  /* Spacing */
  --space-2xs: clamp(0.5rem, 0.46rem + 0.22vw, 0.63rem);
  --space-xs:  clamp(0.75rem, 0.68rem + 0.33vw, 0.94rem);
  --space-s:   clamp(1rem, 0.91rem + 0.43vw, 1.25rem);
  --space-m:   clamp(1.5rem, 1.37rem + 0.65vw, 1.88rem);
  --space-l:   clamp(2rem, 1.83rem + 0.87vw, 2.5rem);
  --space-xl:  clamp(3rem, 2.74rem + 1.30vw, 3.75rem);
  --space-2xl: clamp(4.5rem, 3.9rem + 3.0vw, 6.5rem);
  --space-3xl: clamp(6rem, 5rem + 5vw, 9rem);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 76rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: 'Bricolage Grotesque', 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin: 0;
}
p { text-wrap: pretty; margin: 0; }

a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--space-m);
}

/* Editorial overline */
.overline {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--accent-ink);
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.85em;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: var(--text-base);
  padding: var(--pad-y) 1.4em;
  border-radius: 999px;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  will-change: transform;
}
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(224,80,28,.35);
}
/* Custom line arrow drawn via a mask so it takes each button's text color.
   font-size:0 hides the fallback "→" glyph in every browser. */
.btn .arrow {
  display: inline-block;
  width: 17px; height: 17px;
  font-size: 0; line-height: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M5%2012h13M12%206l6%206-6%206'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M5%2012h13M12%206l6%206-6%206'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s ease;
}
@media (hover: hover) {
  .btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(216,52,15,.7); }
  .btn-primary:hover .arrow { transform: translateX(4px); }
  .btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
  .btn-ghost:hover .arrow { transform: translateX(4px); }
}
.btn-ghost { background: transparent; color: var(--ink); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn:active { transform: translateY(0) scale(.98); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-color: var(--line); }
/* Top bar spans the full width with comfortable side padding instead of the
   narrower centered content column, so it doesn't look inset on wide screens. */
.nav > .wrap { max-width: none; padding-inline: clamp(1.25rem, 3.5vw, 3.25rem); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  padding-block: 0.9rem;
}
.logo {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.logo__mark { display: block; width: 30px; height: 30px; }
.logo b { color: var(--accent); font-weight: 700; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
  overflow: hidden;
}
.blueprint {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(23,34,59,.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23,34,59,.055) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 20% 0%, #000 35%, transparent 78%);
          mask-image: radial-gradient(120% 90% at 20% 0%, #000 35%, transparent 78%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero__title {
  font-size: var(--text-4xl);
  max-width: 15ch;
  margin-bottom: var(--space-m);
}
.hero__line { display: block; white-space: nowrap; }
/* Signature: Draft (outlined/sketch) -> Launch (solid persimmon) */
.word-draft {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  position: relative;
}
.word-draft::after {
  content: "";
  position: absolute; left: -.04em; right: -.04em; bottom: .06em;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 14px);
  opacity: .5;
}
.word-launch {
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}
.word-launch .rocket {
  display: inline-block;
  width: .7em; height: .7em;
  vertical-align: baseline;
  margin-left: .08em;
}
.hero__sub {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: var(--space-l);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-s); align-items: center; }
.hero__note { font-size: var(--text-sm); color: var(--muted); }

.hero__meta {
  margin-top: var(--space-2xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl) var(--space-2xl);
  border-top: 1px solid var(--line);
  padding-top: var(--space-l);
}
.hero__meta .stat b {
  font-family: 'Bricolage Grotesque', sans-serif;
  display: block;
  font-size: var(--text-xl);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__meta .stat span { font-size: var(--text-sm); color: var(--muted); }

/* =========================================================
   HERO SHOWCASE  (blueprint -> finished site, on a loop)
   Fully self-contained. Deleting the .hero__showcase markup
   in index.html makes the :has() rule below no-op and the
   hero returns to a single column. Safe to remove wholesale.
   ========================================================= */
/* Two-column hero ONLY while the showcase exists */
@media (min-width: 1100px) {
  .hero .wrap:has(.hero__showcase) {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    align-items: start;
    gap: var(--space-2xl);
  }
  /* Nudge the showcase up so it sits alongside the headline, not the copy */
  .hero .wrap:has(.hero__showcase) .hero__showcase { margin-top: var(--space-l); }
  /* Keep the three stats on one straight line despite the narrower column */
  .hero .wrap:has(.hero__showcase) .hero__meta {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: var(--space-m) var(--space-l);
    margin-top: var(--space-xl);
  }
  .hero .wrap:has(.hero__showcase) .hero__meta .stat b { font-size: var(--text-lg); }
}
.hero__showcase { display: none; }
@media (min-width: 1100px) {
  .hero__showcase {
    display: block;
    justify-self: end;
    width: 100%;
    max-width: 460px;
    perspective: 1400px;
  }
}

.showcase__card {
  --bp-blue: #3358c9;
  --bp-line: rgba(51,88,201,.55);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -42px rgba(23,34,59,.55), 0 8px 24px -18px rgba(23,34,59,.4);
  /* Resting angled pose; --sx/--sy are nudged by the pointer (main.js) */
  transform: rotateX(var(--sx, 2.5deg)) rotateY(var(--sy, -6deg));
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.showcase__card.is-tilting { transition: transform .12s ease-out; }
.showcase__bar {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .8rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.showcase__dots { display: flex; gap: 5px; }
.showcase__dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.showcase__dots i:first-child { background: #e0725a; }
.showcase__url {
  flex: 1; text-align: center; font-size: 11px; letter-spacing: .01em;
  color: var(--muted); font-family: 'Hanken Grotesk', sans-serif;
  background: var(--bg); border-radius: 999px; padding: .18em .8em; margin-right: 34px;
}

.showcase__screen {
  position: relative;
  aspect-ratio: 4 / 3.35;
  overflow: hidden;
  background: #fff;
}

/* ---- Finished mini site (its own little green brand) ---- */
.mini {
  --g-bg: #f3f8f2; --g-ink: #1c3a2c; --g-soft: #4a6a58;
  --g-accent: #2f9e6b; --g-line: rgba(28,58,44,.14);
  position: absolute; inset: 0;
  background: var(--g-bg); color: var(--g-ink);
  padding: 7% 7% 7.5%;
  display: flex; flex-direction: column; gap: 5%;
  font-family: 'Hanken Grotesk', sans-serif;
  opacity: 0;
  animation: mini-cycle 9s ease-in-out infinite;
}
.mini__nav { display: flex; align-items: center; justify-content: space-between; }
.mini__logo { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 11px; letter-spacing: -.01em; }
.mini__logo i { width: 12px; height: 12px; border-radius: 50%; background: var(--g-accent); }
.mini__links { display: flex; gap: 8px; }
.mini__links i { width: 16px; height: 3px; border-radius: 2px; background: var(--g-line); }
.mini__cta { font-size: 9px; font-weight: 700; color: #fff; background: var(--g-ink); padding: .35em .75em; border-radius: 999px; }
.mini__hero { display: flex; gap: 6%; align-items: stretch; flex: 1; }
.mini__copy { flex: 1.15; display: flex; flex-direction: column; gap: 7px; justify-content: center; }
.mini__eyebrow { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--g-accent); }
.mini__h1 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 17px; line-height: 1.05; letter-spacing: -.02em; }
.mini__p { height: 4px; border-radius: 2px; background: var(--g-line); width: 92%; }
.mini__p--short { width: 62%; }
.mini__btn { align-self: flex-start; margin-top: 3px; font-size: 9px; font-weight: 700; color: #fff; background: var(--g-accent); padding: .5em .9em; border-radius: 8px; }
.mini__art { flex: .85; border-radius: 12px; background: linear-gradient(155deg, #4bbf86, #1f7a51); color: #eafff4; display: grid; place-items: center; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); }
.mini__art svg { width: 54%; }
.mini__cards { display: flex; gap: 5%; }
.mini__tile { flex: 1; height: 30px; border-radius: 8px; background: #fff; border: 1px solid var(--g-line); box-shadow: 0 6px 14px -10px rgba(28,58,44,.5); }

/* ---- Blueprint overlay (the "draft") ---- */
.mini-bp {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(51,88,201,.09) 1px, transparent 1px) 0 0 / 20px 20px,
    linear-gradient(to bottom, rgba(51,88,201,.09) 1px, transparent 1px) 0 0 / 20px 20px,
    #f7f9ff;
  animation: bp-cycle 9s ease-in-out infinite;
}
.mini-bp__tag {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: var(--bp-blue); padding: .3em .6em; border-radius: 5px;
}
.bp {
  position: absolute;
  border: 1.5px dashed var(--bp-line);
  border-radius: 5px;
  display: grid; place-items: center;
}
.bp b {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 8px; font-weight: 700; letter-spacing: .08em;
  color: var(--bp-blue); opacity: .85; text-transform: lowercase;
}
.bp-nav  { top: 7%;  left: 6%;  width: 88%; height: 10%; }
.bp-logo { top: 8.5%; left: 8%; width: 24%; height: 7%; border-style: solid; }
.bp-h1   { top: 24%; left: 6%;  width: 46%; height: 15%; }
.bp-line { top: 42%; left: 6%;  width: 42%; height: 5%; border-radius: 3px; }
.bp-line--2 { top: 50%; width: 30%; }
.bp-btn  { top: 58%; left: 6%;  width: 28%; height: 10%; border-style: solid; }
.bp-img  { top: 24%; left: 58%; width: 36%; height: 32%; overflow: hidden; }
/* wireframe image X: corner-to-corner, always fits the box */
.bp-img__x { position: absolute; inset: 0; width: 100%; height: 100%; }
.bp-img__x line { stroke: var(--bp-line); stroke-width: 1.5; }
.bp-img b { position: relative; z-index: 1; background: #f7f9ff; padding: 0 3px; }
.bp-tile { top: 73%; width: 26%; height: 17%; }
.bp-tile--1 { left: 6%; }
.bp-tile--2 { left: 37%; }
.bp-tile--3 { left: 68%; }

@keyframes bp-cycle {
  0%, 24%   { opacity: 1; }
  38%, 88%  { opacity: 0; }
  100%      { opacity: 1; }
}
@keyframes mini-cycle {
  0%, 22%   { opacity: 0; transform: translateY(9px) scale(.985); }
  40%, 88%  { opacity: 1; transform: none; }
  100%      { opacity: 0; transform: translateY(9px) scale(.985); }
}
@media (prefers-reduced-motion: reduce) {
  .mini { opacity: 1; animation: none; transform: none; }
  .mini-bp { animation: none; opacity: 0; }
}

/* ---------- Section scaffolding ---------- */
.section { padding-block: var(--space-3xl); position: relative; }
.section--ink { background: var(--ink); color: var(--bg); }
.section--surface { background: var(--surface); }
.section__head { max-width: 52rem; margin-bottom: var(--space-xl); }
.section__head h2 { font-size: var(--text-3xl); margin-block: var(--space-2xs) 0; }
.section__head p { color: var(--ink-soft); font-size: var(--text-lg); margin-top: var(--space-s); }
.section--ink .section__head p { color: rgba(250,246,240,.72); }
.section--ink .overline { color: var(--accent-tint); }

/* ---------- Steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-l); counter-reset: step; }
.step {
  position: relative;
  padding-top: var(--space-l);
  border-top: 2px solid rgba(250,246,240,.18);
}
.step__num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(250,246,240,.6);
}
.step h3 { font-size: var(--text-xl); margin-top: var(--space-s); }
.step p { color: rgba(250,246,240,.72); margin-top: var(--space-2xs); font-size: var(--text-base); }
.step:nth-child(2) .step__num { -webkit-text-stroke-color: var(--accent-tint); color: var(--accent); -webkit-text-fill-color: var(--accent); }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--space-m); }
.feature {
  grid-column: span 4;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-l);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature:nth-child(1) { grid-column: span 5; }
.feature:nth-child(2) { grid-column: span 7; }
.feature:nth-child(3) { grid-column: span 7; }
.feature:nth-child(4) { grid-column: span 5; }
@media (hover: hover) {
  .feature:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(23,34,59,.4); border-color: var(--ink); }
}
.feature__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--surface);
  color: var(--accent-ink);
  margin-bottom: var(--space-s);
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--text-lg); }
.feature p { color: var(--ink-soft); margin-top: var(--space-2xs); font-size: var(--text-base); }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-m); align-items: start; max-width: 46rem; margin-inline: auto; }
.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-l);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan--featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -30px rgba(23,34,59,.55);
}
.plan--featured .plan__desc { color: rgba(250,246,240,.7); }
.plan--featured .plan__feat li { color: rgba(250,246,240,.85); }
.plan--featured .plan__setup { color: rgba(250,246,240,.6); }
.plan__tag {
  align-self: flex-start;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-ink);
}
.plan--featured .plan__tag { color: var(--accent-tint); }
.plan__badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: .35em .8em;
  border-radius: 999px;
  margin-bottom: -0.4rem;
}
.plan__name { font-size: var(--text-xl); }
.plan__desc { color: var(--ink-soft); font-size: var(--text-sm); min-height: 3.4em; }
.plan__price { display: flex; align-items: baseline; gap: .35rem; margin-top: var(--space-2xs); }
.plan__price b { font-family: 'Bricolage Grotesque', sans-serif; font-size: var(--text-2xl); letter-spacing: -0.03em; line-height: 1; }
.plan__price span { font-size: var(--text-sm); color: var(--muted); }
.plan--featured .plan__price span { color: rgba(250,246,240,.6); }
.plan__setup { font-size: var(--text-sm); color: var(--muted); }
.plan__feat { list-style: none; padding: 0; margin: var(--space-2xs) 0 0; display: grid; gap: .6rem; font-size: var(--text-base); }
.plan__feat li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink-soft); }
.plan__feat li.hi { font-weight: 700; color: var(--ink); }
.plan--featured .plan__feat li.hi { color: #fff; }
.plan__feat svg { width: 18px; height: 18px; flex: none; margin-top: .28em; color: var(--accent); }
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }
.plan--featured .btn-ghost { border-color: var(--bg); color: var(--bg); }
@media (hover: hover) {
  .plan--featured .btn-ghost:hover { background: var(--bg); color: var(--ink); }
}
.plans__note { text-align: center; color: var(--muted); font-size: var(--text-sm); margin-top: var(--space-l); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .wrap {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
}
.cta-band h2 { font-size: var(--text-3xl); color: #fff; }
.cta-band p { color: #fff; font-size: var(--text-lg); margin: var(--space-s) auto var(--space-l); max-width: 44ch; }
.cta-band .btn-primary { background: var(--ink); border-color: var(--ink); }
@media (hover: hover) { .cta-band .btn-primary:hover { background: #0d1526; border-color: #0d1526; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--bg); padding-block: var(--space-2xl) var(--space-l); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-l); }
.footer .logo { color: var(--bg); }
.footer__tag { color: rgba(250,246,240,.6); margin-top: var(--space-s); max-width: 34ch; font-size: var(--text-sm); }
.footer h4 { font-family: 'Hanken Grotesk', sans-serif; font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-tint); margin: 0 0 var(--space-s); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer ul a { color: rgba(250,246,240,.78); font-size: var(--text-sm); }
@media (hover: hover) { .footer ul a:hover { color: #fff; } }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--space-s); justify-content: space-between;
  margin-top: var(--space-2xl);
  padding-top: var(--space-l);
  border-top: 1px solid rgba(250,246,240,.14);
  font-size: var(--text-sm);
  color: rgba(250,246,240,.55);
}

/* ---------- Reveal animation ----------
   Uses the `translate` property (not `transform`) so it never fights the
   hover `transform` on interactive cards. The hidden state is gated on
   `html.js`, so if JavaScript is blocked or fails, content stays fully
   visible instead of disappearing. */
.reveal { transition: opacity .7s ease, translate .7s cubic-bezier(.2,.7,.2,1); }
html.js .reveal { opacity: 0; translate: 0 22px; }
html.js .reveal.in { opacity: 1; translate: 0; }

/* Interactive cards also carry .reveal; give them a combined transition so the
   hover rise, shadow, and border all animate (the reveal transition alone
   would otherwise replace them and make the border change instant). */
.feature.reveal, .glance__card.reveal, .plan.reveal, .compare__card.reveal {
  transition: opacity .6s ease, translate .6s cubic-bezier(.2,.7,.2,1),
              transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal, .reveal { opacity: 1; translate: 0; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: var(--space-m); }
  .features > .feature { grid-column: span 12 !important; }
  .plans { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .word-draft { -webkit-text-stroke-width: 1.4px; }
}

/* =========================================================
   Additions: cursor, marquee, mobile nav, load-in, forms
   ========================================================= */

/* ---------- Load-in (hero rises, staggered via --i) ---------- */
.reveal { transition-delay: calc(var(--i, 0) * 70ms); }

/* ---------- Sliding slogan bar (between hero and process) ---------- */
.marquee {
  background: var(--accent);
  color: var(--ink);
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-block: .7rem;
  display: flex;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  flex: none;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 13s linear infinite;
}
.marquee__track span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.4vw + .8rem, 1.9rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding-inline: 1.2rem;
  display: inline-flex; align-items: center; gap: 1.2rem;
}
.marquee__track svg { width: 1em; height: 1em; flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (hover: hover) { .marquee:hover .marquee__track { animation-play-state: paused; } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; transform: none; }
}

/* ---------- Nav menu + hamburger (new structure) ---------- */
.nav__menu { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__menu a.link {
  font-weight: 600; font-size: var(--text-sm); letter-spacing: 0.01em;
  position: relative; padding-block: 4px;
}
.nav__menu a.link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform .28s ease;
}
.nav__menu a.link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
@media (hover: hover) { .nav__menu a.link:hover::after { transform: scaleX(1); transform-origin: left; } }
/* Keyboard focus: reveal the underline and add a clear outline */
.nav__menu a.link:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; border-radius: 3px; }
.nav__menu a.link:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent; padding: 10px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav__toggle span {
  display: block; height: 2px; width: 100%; background: var(--ink);
  border-radius: 2px; transition: transform .3s ease, opacity .2s ease;
}
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  /* Drop the blur on mobile: backdrop-filter creates a containing block
     that would trap the fixed menu panel inside the nav bar's height. */
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--bg); }
  .nav__toggle { display: flex; z-index: 60; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; z-index: 55;
    width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: var(--space-m);
    padding: 5.75rem var(--space-l) var(--space-2xl);
    background: var(--bg);
    border-left: 2px solid var(--ink);
    transform: translateX(100%);
    transition: transform .34s cubic-bezier(.4,0,.2,1);
    box-shadow: -30px 0 60px -30px rgba(23,34,59,.4);
  }
  body.menu-open .nav__menu { transform: translateX(0); }
  .nav__menu a.link { font-size: var(--text-lg); font-weight: 700; }
  .nav__menu .btn { width: 100%; justify-content: center; margin-top: var(--space-2xs); }
  body.menu-open::after {
    content: ""; position: fixed; inset: 0; z-index: 40;
    background: rgba(23,34,59,.32); backdrop-filter: blur(2px);
  }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding-top: var(--space-2xl); padding-bottom: var(--space-xl);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: var(--text-3xl); max-width: 18ch; }
.page-hero p { font-size: var(--text-lg); color: var(--ink-soft); max-width: 52ch; margin-top: var(--space-s); }

/* ---------- Forms (Start a draft) ---------- */
.form-wrap { max-width: 46rem; }
.form { display: grid; gap: var(--space-m); }
.form__row { display: grid; gap: var(--space-m); grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: .5rem; }
.field > label { font-weight: 700; font-size: var(--text-sm); }
.field .hint { font-size: var(--text-sm); color: var(--muted); }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: .8em 1em;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(224,80,28,.14);
}
.field input::placeholder, .field textarea::placeholder { color: #6f6656; }
/* Plan chooser as a fieldset — reset native chrome, style the legend like a label */
fieldset.field { border: 0; margin: 0; padding: 0; min-inline-size: auto; }
fieldset.field legend { padding: 0; font-weight: 700; font-size: var(--text-sm); }

/* Plan chooser (radio cards) */
.plan-picker { display: grid; gap: var(--space-s); grid-template-columns: repeat(2, 1fr); }
.plan-opt { position: relative; }
.plan-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.plan-opt label {
  display: block; height: 100%;
  border: 1.5px solid var(--line); border-radius: 14px;
  padding: var(--space-s); background: var(--paper);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.plan-opt label b { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: var(--text-lg); }
.plan-opt label small { color: var(--muted); font-size: var(--text-sm); }
.plan-opt input:checked + label {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224,80,28,.14); transform: translateY(-2px);
}
.plan-opt input:focus-visible + label { outline: 3px solid var(--accent); outline-offset: 2px; }

.form__submit { display: flex; align-items: center; gap: var(--space-m); flex-wrap: wrap; }
.form__note { font-size: var(--text-sm); color: var(--muted); }
.form__consent { margin-top: var(--space-s); font-size: var(--text-sm); color: var(--muted); max-width: 52ch; }
.form__consent a { color: var(--accent-ink); font-weight: 600; }
.form-success {
  display: none; align-items: flex-start; gap: .8rem;
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: 14px; padding: var(--space-m);
}
.form-success.show { display: flex; }
.form-success svg { width: 26px; height: 26px; color: var(--accent); flex: none; }

/* Inline validation, LaunchDraft style */
.field__error {
  display: none; align-items: center; gap: .4rem;
  font-size: var(--text-sm); font-weight: 600; color: #c8392b;
  margin-top: -.15rem;
}
.field__error svg { width: 15px; height: 15px; flex: none; }
.field--error > label,
.field--error > legend { color: #c8392b; }
.field--error input,
.field--error textarea,
.field--error select {
  border-color: #d4493b;
  background: #fbecea;
}
.field--error input:focus,
.field--error textarea:focus,
.field--error select:focus {
  border-color: #d4493b;
  box-shadow: 0 0 0 4px rgba(200,57,43,.16);
}
.field--error .field__error { display: flex; }
.field--fieldset.field--error .plan-opt label { border-color: #d4493b; }

/* Submit button shakes when a submit attempt fails validation */
@keyframes ld-shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-5px); }
  40%, 60% { transform: translateX(5px); }
}
.btn--shake { animation: ld-shake .5s cubic-bezier(.36,.07,.19,.97) both; }
@media (prefers-reduced-motion: reduce) { .btn--shake { animation: none; } }

@media (max-width: 640px) {
  .form__row { grid-template-columns: 1fr; }
  .plan-picker { grid-template-columns: 1fr; }
}

/* ---------- Plans at a glance (home teaser) ---------- */
.glance { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-m); align-items: stretch; max-width: 46rem; margin-inline: auto; }
.glance__card {
  display: flex; flex-direction: column; gap: .5rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--space-l);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
@media (hover: hover) {
  .glance__card:hover { transform: translateY(-4px); box-shadow: 0 20px 42px -28px rgba(23,34,59,.32); }
  /* Only the "Most popular" card gets the orange edge — a touch more presence */
  .glance__card--featured:hover { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(224,80,28,.4), 0 24px 48px -26px rgba(224,80,28,.42); }
  .glance__card:hover .glance__go span { transform: translateX(4px); }
}
.glance__card--featured { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.glance__badge {
  align-self: flex-start; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; background: var(--accent); color: #fff;
  padding: .35em .8em; border-radius: 999px; margin-bottom: .2rem;
}
.glance__tag { font-size: var(--text-sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-ink); }
.glance__card--featured .glance__tag { color: var(--accent-tint); }
.glance__name { font-family: 'Bricolage Grotesque', sans-serif; font-size: var(--text-lg); font-weight: 700; letter-spacing: -0.02em; }
.glance__price { font-family: 'Bricolage Grotesque', sans-serif; font-size: var(--text-2xl); letter-spacing: -0.03em; line-height: 1; margin-top: .2rem; }
.glance__price small { font-family: 'Hanken Grotesk', sans-serif; font-size: var(--text-sm); font-weight: 500; color: var(--muted); margin-left: .3rem; }
.glance__card--featured .glance__price small { color: rgba(250,246,240,.6); }
.glance__line { color: var(--ink-soft); font-size: var(--text-base); margin-top: .2rem; }
.glance__card--featured .glance__line { color: rgba(250,246,240,.75); }
.glance__go { margin-top: auto; padding-top: var(--space-s); font-weight: 700; font-size: var(--text-sm); color: var(--accent-ink); display: inline-flex; align-items: center; gap: .4rem; }
.glance__card--featured .glance__go { color: var(--accent-tint); }
.glance__go span { transition: transform .2s ease; }
@media (max-width: 900px) { .glance { grid-template-columns: 1fr; } }

/* Offset anchored sections so the sticky nav doesn't cover their headings */
.section, .page-hero, [id] { scroll-margin-top: 5rem; }

/* FAQ grid: even 2-up flow; a lone final card spans full width */
.features--faq { grid-template-columns: repeat(2, 1fr); }
.features--faq .feature { grid-column: auto; }
.features--faq .feature:last-child:nth-child(odd) { grid-column: 1 / -1; }
@media (max-width: 900px) { .features--faq { grid-template-columns: 1fr; } }

/* ---------- Compare: DIY vs LaunchDraft ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-m); align-items: stretch; }
.compare__card {
  border-radius: var(--radius-lg);
  padding: var(--space-l);
  border: 1px solid var(--line);
  background: var(--paper);
}
.compare__card h3 { font-size: var(--text-xl); margin-bottom: var(--space-s); }
.compare__card--diy { color: var(--ink-soft); }
.compare__card--diy h3 { color: var(--muted); }
.compare__card--us {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
  box-shadow: 0 30px 60px -34px rgba(23,34,59,.5);
  position: relative;
}
.compare__badge {
  display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; background: var(--accent); color: #fff;
  padding: .35em .8em; border-radius: 999px; margin-bottom: var(--space-s);
}
.compare__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-s); }
.compare__list li { display: flex; gap: .8rem; align-items: flex-start; font-size: var(--text-base); }
.compare__list svg { width: 22px; height: 22px; flex: none; margin-top: .15em; }
.compare__list--diy svg { color: var(--muted); }
.compare__list--us li { color: rgba(250,246,240,.9); }
.compare__list--us svg { color: var(--accent-tint); }
@media (max-width: 820px) { .compare { grid-template-columns: 1fr; } }

/* =========================================================
   Blueprint grid per section (alternating corner) + card grids
   ========================================================= */
.section { position: relative; isolation: isolate; --grid-line: rgba(23,34,59,.06); }
.section--ink { --grid-line: rgba(250,246,240,.06); }
.section > .wrap { position: relative; z-index: 1; }
/* Grid renders ONLY on sections explicitly marked grid-left/grid-right,
   so card sections stay clean behind their cards. */
.grid-left::before, .grid-right::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(115% 85% at var(--grid-pos, 15% 0%), #000 32%, transparent 76%);
          mask-image: radial-gradient(115% 85% at var(--grid-pos, 15% 0%), #000 32%, transparent 76%);
}
.grid-left  { --grid-pos: 15% 0%; }
.grid-right { --grid-pos: 85% 0%; }

/* Card grids: emanate from the top-right corner and fade out */
.plan, .glance__card { position: relative; overflow: hidden; }
.plan > *, .glance__card > * { position: relative; z-index: 1; }
.plan::before, .glance__card::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  --card-line: rgba(23,34,59,.05);
  background-image:
    linear-gradient(to right, var(--card-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--card-line) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(95% 85% at 100% 0%, #000 0%, transparent 68%);
          mask-image: radial-gradient(95% 85% at 100% 0%, #000 0%, transparent 68%);
}
.plan--featured::before, .glance__card--featured::before { --card-line: rgba(250,246,240,.09); }

/* Compare cards: rise on hover, with warm semantic borders
   (brick red = the DIY pain, balanced green = the done-for-you relief) */
@media (hover: hover) {
  .compare__card--diy:hover {
    transform: translateY(-4px);
    border-color: #d23f2e;
    box-shadow: 0 0 0 1.5px rgba(210,63,46,.28), 0 22px 44px -24px rgba(210,63,46,.6);
  }
  .compare__card--us:hover {
    transform: translateY(-6px);
    border-color: #37cf8e;
    box-shadow: 0 0 0 1.5px rgba(55,207,142,.36), 0 26px 52px -24px rgba(55,207,142,.45);
  }

  /* Hovering the DIY card turns each X brick-red with a staggered pop */
  .compare__card--diy:hover .compare__list--diy svg {
    color: #d23f2e;
    animation: diy-x-pop .32s cubic-bezier(.34,1.56,.64,1) both;
  }
  .compare__card--diy:hover .compare__list--diy li:nth-child(1) svg { animation-delay: 0s; }
  .compare__card--diy:hover .compare__list--diy li:nth-child(2) svg { animation-delay: .05s; }
  .compare__card--diy:hover .compare__list--diy li:nth-child(3) svg { animation-delay: .1s; }
  .compare__card--diy:hover .compare__list--diy li:nth-child(4) svg { animation-delay: .15s; }
  .compare__card--diy:hover .compare__list--diy li:nth-child(5) svg { animation-delay: .2s; }

  /* Hovering the done-for-you card gives each check a staggered pop */
  .compare__card--us:hover .compare__list--us svg {
    animation: us-check-pop .34s cubic-bezier(.34,1.56,.64,1) both;
  }
  .compare__card--us:hover .compare__list--us li:nth-child(1) svg { animation-delay: 0s; }
  .compare__card--us:hover .compare__list--us li:nth-child(2) svg { animation-delay: .05s; }
  .compare__card--us:hover .compare__list--us li:nth-child(3) svg { animation-delay: .1s; }
  .compare__card--us:hover .compare__list--us li:nth-child(4) svg { animation-delay: .15s; }
  .compare__card--us:hover .compare__list--us li:nth-child(5) svg { animation-delay: .2s; }

  /* Heading and bullet text follow the same semantic color on hover */
  .compare__card--diy:hover h3,
  .compare__card--diy:hover .compare__list--diy li { color: #d23f2e; }
  .compare__card--us:hover h3,
  .compare__card--us:hover .compare__list--us li,
  .compare__card--us:hover .compare__list--us svg { color: #37cf8e; }
}

/* Smooth the hover color shift on text and icons */
.compare__card h3, .compare__list li, .compare__list svg { transition: color .25s ease; }
@keyframes diy-x-pop {
  0%   { transform: scale(1) rotate(0deg); }
  40%  { transform: scale(1.28) rotate(-9deg); }
  70%  { transform: scale(.94) rotate(4deg); }
  100% { transform: scale(1) rotate(0deg); }
}
/* Check pop: a happy bounce that mirrors the X (rotates the other way) */
@keyframes us-check-pop {
  0%   { transform: scale(1) rotate(0deg); }
  40%  { transform: scale(1.3) rotate(8deg); }
  70%  { transform: scale(.92) rotate(-4deg); }
  100% { transform: scale(1) rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .compare__card--diy:hover .compare__list--diy svg,
  .compare__card--us:hover .compare__list--us svg { animation: none; }
}

/* =========================================================
   Trust sections: examples/work, testimonials, about, guarantee
   ========================================================= */

/* ---------- Examples / work (placeholder browser mockups) ---------- */
.work { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-m); }
.work__card { display: flex; flex-direction: column; gap: var(--space-s); perspective: 900px; }
.work__frame {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: var(--paper); box-shadow: 0 18px 40px -30px rgba(23,34,59,.4);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
}
@media (hover: hover) {
  /* Pointer-tracked 3D tilt (vars set by main.js), with a subtle lift */
  .work__frame {
    transform:
      translateY(var(--ty, 0))
      rotateX(var(--rx, 0deg))
      rotateY(var(--ry, 0deg));
    transform-style: preserve-3d;
    will-change: transform;
  }
  .work__card.is-tilting .work__frame { transition: box-shadow .3s ease; }
  .work__card:hover .work__frame { box-shadow: 0 30px 58px -28px rgba(23,34,59,.55); }
  /* Image lifts slightly toward the viewer for depth */
  .work__card:hover .work__shot-img { transform: translateZ(22px) scale(1.03); }
  .work__shot-img { transition: transform .3s cubic-bezier(.22,.61,.36,1); backface-visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .work__frame, .work__shot-img { transition: none; }
  .work__card:hover .work__frame { transform: translateY(-3px); }
  .work__card:hover .work__shot-img { transform: none; }
}
.work__dots { display: flex; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--line); background: var(--surface); }
.work__dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.work__shot {
  aspect-ratio: 16 / 10; display: grid; place-items: center;
  background:
    radial-gradient(120% 120% at 80% 0%, rgba(224,80,28,.10), transparent 60%),
    linear-gradient(to right, rgba(23,34,59,.05) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(to bottom, rgba(23,34,59,.05) 1px, transparent 1px) 0 0 / 26px 26px,
    var(--bg);
}
.work__shot span {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; letter-spacing: -0.02em;
  font-size: var(--text-lg); color: var(--ink-soft);
  border: 2px dashed var(--line); border-radius: 999px; padding: .45em 1.1em;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
}
.work__card h3 { font-size: var(--text-lg); }
.work__card p { color: var(--ink-soft); font-size: var(--text-base); }
.work__card em { color: var(--muted); font-style: italic; }
@media (max-width: 820px) { .work { grid-template-columns: 1fr; } }

/* ---------- Testimonials (on the ink section) ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-m); }
.quote {
  margin: 0; padding: var(--space-l);
  background: rgba(250,246,240,.04);
  border: 1px solid rgba(250,246,240,.14);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: var(--space-s);
}
.quote__tag {
  align-self: flex-start; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-tint); border: 1px solid rgba(244,147,106,.45); border-radius: 999px; padding: .3em .7em;
}
.quote blockquote { margin: 0; font-size: var(--text-lg); line-height: 1.45; color: var(--bg); }
.quote figcaption { display: flex; flex-direction: column; gap: .15rem; margin-top: auto; }
.quote figcaption b { color: #fff; }
.quote figcaption span { color: rgba(250,246,240,.6); font-size: var(--text-sm); }
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- About / founder ---------- */
.about { display: grid; grid-template-columns: auto 1fr; gap: var(--space-xl); align-items: center; }
.about__avatar {
  width: clamp(96px, 18vw, 150px); aspect-ratio: 1; border-radius: 24px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--bg);
  font-family: 'Quicksand', system-ui, sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 20px 44px -26px rgba(23,34,59,.5);
}
.about__body { max-width: 44rem; display: grid; gap: var(--space-s); }
.about__body h2 { font-size: var(--text-2xl); }
.about__body p { color: var(--ink-soft); font-size: var(--text-lg); }
.about__body em { color: var(--muted); font-style: italic; }
.about__body .btn { justify-self: start; margin-top: var(--space-2xs); }
@media (max-width: 700px) { .about { grid-template-columns: 1fr; gap: var(--space-l); } }

/* ---------- Guarantee line in the CTA ---------- */
.cta-guarantee {
  display: flex; justify-content: center; align-items: center; gap: .5rem;
  margin-top: var(--space-m); font-weight: 600; font-size: var(--text-sm); color: #fff;
}
.cta-guarantee svg { width: 18px; height: 18px; flex: none; }

/* Examples cards now link to live demos with real screenshots */
.work__shot-img { display: block; width: 100%; height: auto; aspect-ratio: 13 / 9; object-fit: cover; object-position: top center; }
.work__view { color: var(--accent-ink); font-weight: 700; white-space: nowrap; }
@media (hover: hover) { .work__card:hover .work__view { text-decoration: underline; } }

/* ---------------------------------------------------------------------------
   Legal pages (Privacy, Terms) — readable prose, minimal motion
--------------------------------------------------------------------------- */
.legal { padding-block: var(--space-l) var(--space-2xl); }
.legal .wrap { max-width: 48rem; }
.legal__updated { font-size: var(--text-sm); color: var(--muted); margin: 0 0 var(--space-l); }
.legal__intro { font-size: var(--text-lg); color: var(--ink-soft); line-height: 1.6; margin-bottom: var(--space-l); }
.legal__toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-s) var(--space-m); margin-bottom: var(--space-xl); }
.legal__toc h2 { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 0 0 var(--space-xs); }
.legal__toc ol { margin: 0; padding-left: 1.2rem; display: grid; gap: .35rem; }
.legal__toc a { color: var(--accent-ink); font-weight: 600; text-decoration: none; }
.legal__toc a:hover { text-decoration: underline; }
.legal h2 { font-size: var(--text-xl); margin-top: var(--space-xl); scroll-margin-top: 5rem; color: var(--ink); }
.legal h2 .legal__num { color: var(--accent); font-family: 'Bricolage Grotesque', sans-serif; margin-right: .4rem; }
.legal__ref { font-weight: 700; color: var(--accent-ink); margin-right: .45rem; font-variant-numeric: tabular-nums; }
.legal h3 { font-size: var(--text-lg); margin-top: var(--space-m); color: var(--ink); }
.legal p, .legal li { color: var(--ink-soft); font-size: var(--text-base); line-height: 1.75; }
.legal p { margin: var(--space-xs) 0; }
.legal ul, .legal ol.legal__list { margin: var(--space-xs) 0; padding-left: 1.4rem; display: grid; gap: .5rem; }
.legal a { color: var(--accent-ink); }
.legal strong { color: var(--ink); font-weight: 700; }
.legal__note { background: var(--surface); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; padding: var(--space-s) var(--space-m); margin: var(--space-m) 0; }
.legal__note p { margin: 0; font-size: var(--text-sm); color: var(--ink-soft); }
.footer__legal a { color: inherit; }
.footer__legal a:hover { color: var(--accent-tint); }

/* ---------------------------------------------------------------------------
   Subtle branded scrollbar. Shows on desktop Chrome/Safari/Edge + Firefox;
   Mac and mobile overlay-hide scrollbars, so it's a light touch, never relied on.
   Kept normal width and high-contrast so it stays easy to grab.
--------------------------------------------------------------------------- */
html {
  scrollbar-width: thin;                        /* Firefox */
  scrollbar-color: var(--ink) var(--surface);   /* navy thumb, warm-cream track */
}
::-webkit-scrollbar { width: 14px; height: 14px; }
::-webkit-scrollbar-track { background: var(--surface); }   /* warm cream, not default white */
::-webkit-scrollbar-thumb {
  background: var(--ink);                        /* brand navy — clearly custom */
  border-radius: 999px;
  border: 3px solid var(--surface);             /* inset padding so the thumb reads as a pill */
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent); }  /* brand orange on hover */
