/* ==========================================================================
   Giftaro marketing site
   Palette: forest ground, green-biased pale sections, tangerine CTAs,
   butter highlights. Type: Syne (display) / Instrument Sans (body) /
   Azeret Mono (ledger, labels, numbers).
   ========================================================================== */

:root {
  --forest: #0F3D2E;
  --forest-2: #134A38;
  --forest-deep: #0A2B21;
  --pale: #EAF0E3;
  --pale-2: #DDE7D3;
  --pale-3: #CFDDC3;
  --paper: #F4F7EF;
  --ink: #14201B;
  --ink-soft: #3F5149;
  --ink-mute: #66756E;
  --cream: #F3F0E6;
  --cream-70: rgba(243, 240, 230, 0.72);
  --cream-45: rgba(243, 240, 230, 0.45);
  --line-dark: rgba(243, 240, 230, 0.16);
  --line-light: rgba(20, 32, 27, 0.14);
  --tangerine: #F0532D;
  --tangerine-deep: #C93F1C;
  --butter: #FFD84D;
  --butter-deep: #E5BC24;

  /* inline logo colours: the gap path takes the ground colour */
  --mark-gap: var(--forest);
  --mark-card: var(--tangerine);
  --mark-ink: var(--ink);

  --font-display: "Syne", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Azeret Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  --wrap: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --nav-h: 76px;
  --r-s: 6px;
  --r-m: 14px;
  --r-l: 24px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --shadow-deep: 0 40px 80px -30px rgba(0, 0, 0, 0.6);

  color-scheme: dark;
}

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

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

body {
  margin: 0;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }

::selection { background: var(--butter); color: var(--ink); }

img, svg, picture { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--butter); outline-offset: 3px; }
.section--light :focus-visible, .cta :focus-visible { outline-color: var(--tangerine-deep); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}
h1.display { font-size: clamp(2.7rem, 5.4vw, 4.9rem); }
h2.display { font-size: clamp(2.1rem, 4.4vw, 3.7rem); }
.display em { font-style: normal; color: var(--butter); }
.section--light .display em { color: var(--tangerine-deep); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--butter);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section--light .eyebrow { color: var(--tangerine-deep); }

.lede {
  font-size: clamp(1.1rem, 1.35vw, 1.28rem);
  line-height: 1.55;
  color: var(--cream-70);
  max-width: 36em;
}
.section--light .lede { color: var(--ink-soft); }

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em;
  line-height: 1;
  border-radius: var(--r-s);
  border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.btn .arrow { font-family: var(--font-mono); font-weight: 500; transition: transform 0.3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }
.btn:active { transform: translateY(1px); }
.btn--tangerine { background: var(--tangerine); color: var(--ink); }
.btn--tangerine:hover { background: var(--butter); }
.btn--ghost { border-color: var(--line-dark); color: var(--cream); background: transparent; }
.btn--ghost:hover { border-color: var(--cream); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--forest-2); }
.btn--sm { padding: 12px 18px; font-size: 0.9rem; }
.btn--block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: 0.6; cursor: progress; }

/* ---------- Header ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--forest) 90%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.nav__in { display: flex; align-items: center; gap: 28px; min-height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--cream); text-decoration: none; }
.brand .mark { width: 40px; height: 40px; flex: none; }
.brand .wordmark { height: 24px; width: auto; }
.nav__links { display: flex; gap: 30px; margin-left: auto; list-style: none; }
.nav__links a {
  position: relative; display: inline-block; padding: 8px 0;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cream-70); text-decoration: none;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px;
  background: var(--butter); transition: right 0.35s var(--ease-out);
}
.nav__links a:hover, .nav__links a:focus-visible { color: var(--cream); }
.nav__links a:hover::after, .nav__links a:focus-visible::after { right: 0; }
.nav__actions { display: flex; align-items: center; gap: 20px; flex: none; }
.nav__signin {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cream-70); text-decoration: none; white-space: nowrap;
  transition: color 0.25s var(--ease-out);
}
.nav__signin:hover { color: var(--cream); }
.nav__cta { flex: none; }
.nav__toggle {
  display: none; margin-left: auto;
  background: transparent; border: 2px solid var(--line-dark); border-radius: var(--r-s);
  padding: 10px 14px; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
}
.nav__toggle[aria-expanded="true"] { border-color: var(--cream); }
.nav__panel { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 120px) 0 clamp(64px, 8vw, 128px); }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(36px, 5vw, 80px); align-items: center;
}
.hero__copy .lede { margin: 26px 0 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 12px 26px; margin: 40px 0 0; list-style: none;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.03em; color: var(--cream-70);
}
.hero__facts li { display: inline-flex; align-items: center; gap: 10px; }
.hero__facts li::before { content: ""; width: 8px; height: 8px; background: var(--butter); transform: rotate(45deg); flex: none; }

.hero__visual { position: relative; padding-bottom: 28px; }
.hero__photo {
  margin: 0; border-radius: var(--r-l); overflow: hidden;
  box-shadow: var(--shadow-deep); transform: rotate(-1.5deg);
  will-change: transform;
}
.hero__photo img { width: 100%; }

/* receipt-style ledger */
.ledger {
  position: absolute; right: -18px; bottom: -8px;
  width: min(320px, 78%);
  padding: 16px 16px 22px;
  background: var(--cream); color: var(--ink);
  border-radius: 4px 4px 0 0;
  font-family: var(--font-mono); font-size: 0.72rem; line-height: 1.45;
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, 0.6);
  transform: rotate(1.4deg);
}
.ledger::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 8px;
  background:
    linear-gradient(-45deg, transparent 8px, var(--cream) 0) 0 0 / 16px 16px repeat-x,
    linear-gradient(45deg, transparent 8px, var(--cream) 0) 0 0 / 16px 16px repeat-x;
}
.ledger__head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 10px; margin-bottom: 4px; border-bottom: 2px solid var(--ink);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.7rem;
}
.ledger__head span:last-child { color: var(--ink-mute); font-weight: 400; letter-spacing: 0.02em; text-transform: none; }
.ledger__row {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 10px; align-items: baseline;
  padding: 8px 0; border-bottom: 1px dashed rgba(20, 32, 27, 0.22);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.ledger__type { font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.68rem; }
.ledger__ref { color: var(--ink-mute); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ledger__amt { font-variant-numeric: tabular-nums; font-weight: 600; text-align: right; }
.ledger__amt.pos { color: var(--forest); }
.ledger__amt.neg { color: var(--tangerine-deep); }
.ledger__amt.hold { color: var(--ink-mute); }
.ledger__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 12px; margin-top: 4px; border-top: 2px solid var(--ink);
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.7rem;
}
.ledger__total output { font-size: 1.15rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.js .ledger.is-animating .ledger__row:not(.is-printed) { opacity: 0; transform: translateY(6px); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--butter); color: var(--ink);
  border-block: 3px solid var(--ink);
  padding: 15px 0; overflow: hidden;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em;
}
.marquee__track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.marquee__track > span { display: inline-flex; align-items: center; gap: 30px; padding-right: 30px; white-space: nowrap; }
.marquee__track > span::after { content: ""; width: 10px; height: 10px; background: var(--tangerine); transform: rotate(45deg); }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 9vw, 136px) 0; }
.section--light { background: var(--pale); color: var(--ink); --mark-gap: var(--pale); color-scheme: light; }
.section--deep { background: var(--forest-deep); }
.section--tight { padding-top: clamp(48px, 6vw, 88px); }
.sec-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 72px); }
.sec-head .lede { margin-top: 20px; }

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(36px, 6vw, 96px); align-items: center; }
.split--flip > :first-child { order: 2; }
.split h2.display { font-size: clamp(1.9rem, 3.6vw, 3.1rem); }
.split .lede { margin-top: 20px; }

.photo { position: relative; margin: 0; border-radius: var(--r-m); overflow: hidden; box-shadow: 0 30px 70px -32px rgba(0, 0, 0, 0.5); }
.photo img { width: 100%; }
.photo figcaption {
  position: absolute; left: 14px; bottom: 14px;
  padding: 7px 11px; border-radius: 3px;
  background: var(--ink); color: var(--cream);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.photo--tilt { transform: rotate(1.2deg); }
.photo--portrait { max-width: 420px; margin-inline: auto; }

.ticks { list-style: none; margin: 30px 0 0; display: grid; gap: 16px; }
.ticks li { display: grid; grid-template-columns: 20px 1fr; gap: 14px; align-items: start; line-height: 1.5; }
.ticks li::before {
  content: ""; width: 18px; height: 18px; margin-top: 4px; background: var(--tangerine);
  clip-path: polygon(14% 46%, 0 64%, 38% 100%, 100% 18%, 84% 2%, 38% 66%);
}
.section--light .ticks li::before { background: var(--tangerine-deep); }
.ticks strong { display: block; font-weight: 600; }
.ticks span { color: var(--cream-70); }
.section--light .ticks span { color: var(--ink-soft); }

.note {
  margin-top: 30px; padding: 16px 18px; border-left: 3px solid var(--butter);
  background: rgba(243, 240, 230, 0.06); font-size: 0.95rem; color: var(--cream-70);
}
.section--light .note { border-color: var(--tangerine-deep); background: rgba(20, 32, 27, 0.05); color: var(--ink-soft); }
.note b { color: inherit; font-weight: 600; }

/* ---------- Two kinds of card ---------- */
.kinds {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 72px);
}
.kind { display: grid; align-content: start; gap: 14px; padding-top: 26px; border-top: 2px solid var(--line-dark); }
.kind__eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.kind__eyebrow--physical { color: var(--tangerine); }
.kind__eyebrow--egift { color: var(--butter); }
.kind__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.2vw, 1.85rem); letter-spacing: -0.025em; line-height: 1.08; }
.kind__lede { color: var(--cream-70); }
.kind__list { list-style: none; display: grid; gap: 10px; margin-top: 4px; }
.kind__list li { position: relative; padding-left: 20px; color: var(--cream-70); font-size: 0.98rem; }
.kind__list li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 8px; height: 8px; background: currentColor; opacity: 0.55; transform: rotate(45deg); }
.kind__link {
  justify-self: start; margin-top: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--cream); text-decoration: none;
  border-bottom: 2px solid var(--butter); padding-bottom: 3px;
}
.kind__link .arrow { font-family: var(--font-mono); font-weight: 500; display: inline-block; transition: transform 0.3s var(--ease-out); }
.kind__link:hover .arrow { transform: translateX(5px); }

/* ---------- Positioning badge ---------- */
.badge {
  display: inline-block; margin: 0 0 22px; padding: 8px 14px; border-radius: var(--r-s);
  background: var(--butter); color: var(--ink);
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.4;
}

/* ---------- Easy-setup strip ---------- */
.easy {
  list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 clamp(24px, 4vw, 56px);
  margin-top: clamp(48px, 6vw, 76px); border-top: 1px solid var(--line-dark);
}
.easy li { display: grid; gap: 8px; padding: 22px 0 0; }
.easy__k {
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em;
  color: var(--butter);
}
.easy__v { color: var(--cream-70); font-size: 0.97rem; }

/* ---------- Register mock ---------- */
.register {
  background: var(--paper); color: var(--ink);
  border-radius: var(--r-m); overflow: hidden;
  box-shadow: 0 40px 80px -36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(20, 32, 27, 0.08);
  font-size: 0.9rem;
}
.register__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--ink); color: var(--cream);
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em;
}
.register__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--butter); box-shadow: 0 0 0 4px rgba(255, 216, 77, 0.2); }
.register__due { margin-left: auto; }
.register__due b { font-weight: 600; color: var(--butter); }
.register__body { display: grid; grid-template-columns: 150px 1fr; }
.register__methods { list-style: none; border-right: 1px solid var(--line-light); background: var(--pale); padding: 10px 0; }
.register__methods li { padding: 12px 16px; color: var(--ink-mute); border-left: 3px solid transparent; }
.register__methods li.is-active { color: var(--ink); background: var(--paper); border-left-color: var(--tangerine); font-weight: 600; }
.register__form { padding: 18px 20px 20px; display: grid; gap: 12px; }
.register__field { display: grid; gap: 5px; }
.register__field span { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.register__field output {
  display: block; padding: 11px 12px; border: 1px solid var(--line-light); border-radius: 4px;
  background: #fff; font-family: var(--font-mono); font-size: 0.86rem; letter-spacing: 0.04em; min-height: 42px;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.register__balance {
  display: inline-flex; align-items: center; gap: 8px; justify-self: start;
  padding: 6px 10px; border-radius: 3px; background: var(--pale-2); color: var(--forest);
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.03em; font-weight: 500;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.register__balance::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--forest); }
.register__auth {
  margin-top: 4px; padding: 13px 14px; border-radius: 4px; text-align: center;
  background: var(--tangerine); color: var(--ink); font-family: var(--font-display); font-weight: 700;
  transition: background 0.3s, color 0.3s, opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.register__auth.is-held { background: var(--forest); color: var(--cream); }
.register__split {
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  padding: 12px 14px; border: 1px dashed var(--line-light); border-radius: 4px;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.02em;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.register__split b { font-weight: 600; color: var(--tangerine-deep); }
.js .register.is-animating [data-r]:not(.is-on) { opacity: 0; transform: translateY(6px); }

.steps { list-style: none; counter-reset: step; display: grid; gap: 22px; margin-top: 34px; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; counter-increment: step; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--butter); padding-top: 4px;
}
.steps strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; margin-bottom: 4px; }
.steps span { color: var(--cream-70); }

/* ---------- Checkout flow ---------- */
.flow {
  list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px;
  margin: 0 0 clamp(40px, 5vw, 64px); position: relative; padding-top: 28px;
}
.flow::before { content: ""; position: absolute; left: 0; right: 0; top: 8px; height: 2px; background: var(--line-light); }
.flow li { position: relative; }
.flow li::before {
  content: ""; position: absolute; left: 0; top: -28px; width: 14px; height: 14px;
  background: var(--tangerine-deep); transform: translateY(1px) rotate(45deg);
}
.flow li:nth-child(2)::before { background: var(--butter-deep); }
.flow li:nth-child(3)::before { background: var(--forest); }
.flow li:nth-child(4)::before { background: var(--ink); }
.flow__k { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; margin-bottom: 8px; }
.flow p { color: var(--ink-soft); font-size: 0.98rem; }
.flow__tag { display: inline-block; margin-left: 8px; padding: 2px 7px; border-radius: 3px; background: var(--ink); color: var(--cream); font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; vertical-align: middle; }

.duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px); }
.duo h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; margin-bottom: 6px; }
.duo .ticks { margin-top: 18px; }

/* ---------- Ledger / security section ---------- */
.zero { display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 48px); align-items: end; margin-bottom: clamp(48px, 6vw, 88px); }
.zero__num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(4rem, 12vw, 10.5rem); line-height: 0.9; letter-spacing: -0.05em;
  color: var(--butter); font-variant-numeric: tabular-nums;
}
.zero__label { max-width: 26em; font-size: 1.1rem; color: var(--cream-70); padding-bottom: 0.6em; }
.zero__label b { color: var(--cream); font-weight: 600; }

.speclines { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 clamp(24px, 4vw, 56px); border-top: 1px solid var(--line-dark); }
.speclines li { display: grid; grid-template-columns: 112px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.speclines .k { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--butter); padding-top: 4px; }
.speclines .v { color: var(--cream-70); font-size: 0.98rem; }
.speclines .v b { color: var(--cream); font-weight: 600; }

/* ---------- Spec sheet ---------- */
.spec { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0 clamp(28px, 4vw, 56px); border-top: 2px solid var(--ink); }
.spec__group { padding: 26px 0 30px; border-bottom: 1px solid var(--line-light); }
.spec__group h3 {
  display: block;
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; margin-bottom: 16px;
}
.spec__group h3 small { display: block; margin-top: 6px; font-family: var(--font-mono); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tangerine-deep); }
.spec__group ul { list-style: none; display: grid; gap: 9px; }
.spec__group li { position: relative; padding-left: 18px; color: var(--ink-soft); font-size: 0.97rem; line-height: 1.5; }
.spec__group li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; background: var(--tangerine-deep); transform: rotate(45deg); }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: start; }
.plan {
  position: relative; padding: 34px 30px 32px;
  background: var(--paper); border: 1px solid var(--line-light); border-radius: var(--r-m);
  display: grid; gap: 22px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(20, 32, 27, 0.35); }
.plan--featured { background: var(--forest); color: var(--cream); border-color: transparent; box-shadow: 0 40px 80px -36px rgba(0, 0, 0, 0.6); }
.plan--featured .plan__sites, .plan--featured .plan__per, .plan--featured .ticks span { color: var(--cream-70); }
.plan--featured .ticks li::before { background: var(--butter); }
.plan__flag {
  position: absolute; top: -14px; left: 30px;
  padding: 6px 10px; border-radius: 3px; background: var(--butter); color: var(--ink);
  font-family: var(--font-mono); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.plan__name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; }
.plan__sites { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); margin-top: 6px; }
.plan__price { display: flex; align-items: baseline; gap: 8px; }
.plan__amount { font-family: var(--font-display); font-weight: 800; font-size: 3.4rem; letter-spacing: -0.045em; line-height: 1; font-variant-numeric: tabular-nums; }
.plan__per { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-mute); }
.plan .ticks { margin: 0; gap: 12px; font-size: 0.96rem; }
.plan .ticks li::before { background: var(--tangerine-deep); width: 16px; height: 16px; margin-top: 5px; }
.plan__fine { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.03em; color: var(--ink-mute); text-align: center; }
.plan--featured .plan__fine { color: var(--cream-45); }

/* comparison table */
.compare-wrap { overflow-x: auto; margin-top: clamp(56px, 7vw, 88px); -webkit-overflow-scrolling: touch; }
.compare { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 0.95rem; }
.compare caption { text-align: left; padding-bottom: 18px; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; caption-side: top; }
.compare th, .compare td { padding: 14px 16px; border-bottom: 1px solid var(--line-light); text-align: left; vertical-align: top; }
.compare thead th { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); border-bottom: 2px solid var(--ink); }
.compare thead th:first-child { width: 28%; }
.compare tbody th { font-weight: 600; color: var(--ink); }
.compare tbody td { color: var(--ink-soft); }
.compare td.us { background: rgba(15, 61, 46, 0.07); color: var(--ink); font-weight: 500; }
.compare thead th.us { color: var(--forest); background: rgba(15, 61, 46, 0.07); }
.compare .yes, .compare .no, .compare .part {
  display: inline-block; padding: 2px 8px; border-radius: 3px; margin-right: 6px;
  font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; vertical-align: middle;
}
.compare .yes { background: var(--forest); color: var(--cream); }
.compare .part { background: var(--butter); color: var(--ink); }
.compare .no { background: var(--pale-3); color: var(--ink-soft); }
.compare__foot { margin-top: 14px; font-size: 0.82rem; color: var(--ink-mute); max-width: 70em; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; border-top: 1px solid var(--line-dark); max-width: 860px; }
.faq { border-bottom: 1px solid var(--line-dark); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex: none; width: 26px; height: 26px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--butter);
  transition: transform 0.35s var(--ease-out);
}
.faq__icon::before { width: 100%; height: 2px; }
.faq__icon::after { width: 2px; height: 100%; }
.faq[open] .faq__icon::after { transform: rotate(90deg); }
.faq[open] .faq__icon::before { transform: rotate(180deg); }
.faq__body { padding: 0 0 26px; max-width: 64ch; color: var(--cream-70); }
.faq__body p + p { margin-top: 12px; }

/* ---------- CTA band ---------- */
.cta { background: var(--butter); color: var(--ink); border-top: 3px solid var(--ink); padding: clamp(64px, 8vw, 112px) 0; }
.cta .wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.cta h2.display { font-size: clamp(2.2rem, 5vw, 4.4rem); }
.cta p { font-size: 1.15rem; color: rgba(20, 32, 27, 0.75); margin-top: 18px; max-width: 32em; }
.cta__actions { display: grid; gap: 14px; justify-items: start; }
.cta__actions .btn--ghost { border-color: rgba(20, 32, 27, 0.35); color: var(--ink); }
.cta__actions .btn--ghost:hover { border-color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--forest-deep); padding: 56px 0 40px; font-size: 0.95rem; color: var(--cream-70); }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr)); gap: 40px; }
.footer .brand { margin-bottom: 18px; }
.footer p { max-width: 30em; }
.footer h4 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: var(--cream-70); text-decoration: none; }
.footer a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px;
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--cream-45);
}

/* ---------- Toast ---------- */
.notice {
  position: fixed; left: 50%; bottom: 24px; z-index: 80;
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  max-width: min(560px, calc(100% - 40px)); padding: 14px 18px;
  background: var(--ink); color: var(--cream); border-radius: var(--r-s);
  font-size: 0.95rem; box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.notice.is-on { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.notice a { color: var(--butter); }

/* ---------- Motion ---------- */
/* Scroll-driven reveals. Content is visible by default; browsers that support
   animation-timeline fade blocks in over their first 300px of entry, so an
   anchor jump lands on a fully drawn section and other browsers see it static. */
@keyframes reveal-in { from { opacity: 0; translate: 0 28px; } to { opacity: 1; translate: 0 0; } }
@supports (animation-timeline: view()) {
  .reveal { animation: reveal-in linear both; animation-timeline: view(); animation-range: entry 0px entry 300px; }
  .reveal[data-delay="1"] { animation-range: entry 60px entry 360px; }
  .reveal[data-delay="2"] { animation-range: entry 120px entry 420px; }
  .reveal[data-delay="3"] { animation-range: entry 180px entry 480px; }
}

@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes photo-in { from { opacity: 0; transform: rotate(-4deg) scale(0.94) translateY(30px); } to { opacity: 1; transform: rotate(-1.5deg) scale(1) translateY(0); } }
@keyframes slip-in { from { opacity: 0; transform: rotate(3deg) translateY(40px); } to { opacity: 1; transform: rotate(1.4deg) translateY(0); } }
.hero__copy > * { animation: rise 0.9s var(--ease-out) both; }
.hero__copy > :nth-child(1) { animation-delay: 0.05s; }
.hero__copy > :nth-child(2) { animation-delay: 0.15s; }
.hero__copy > :nth-child(3) { animation-delay: 0.3s; }
.hero__copy > :nth-child(4) { animation-delay: 0.42s; }
.hero__copy > :nth-child(5) { animation-delay: 0.55s; }
.hero__photo { animation: photo-in 1.2s var(--ease-out) 0.2s both; }
.ledger { animation: slip-in 1s var(--ease-out) 0.7s both; }

@media (prefers-reduced-motion: reduce) {
  .hero__copy > *, .hero__photo, .ledger, .reveal { animation: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; }
  .marquee__track > span:nth-child(n+2) { display: none; }
  .btn, .plan, .faq__icon::before, .faq__icon::after, .nav__links a::after { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .speclines { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: inline-flex; }
  /* Full-height overlay under the sticky header. Sized against the viewport,
     which only works because the panel is a sibling of the header rather than
     a child of it (the header's backdrop-filter would otherwise contain it). */
  .nav__panel {
    position: fixed; left: 0; right: 0; top: var(--nav-h); bottom: 0; z-index: 40;
    background: var(--forest);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    display: none;
  }
  .nav__panel.is-open { display: block; }
  .nav__panel-in {
    min-height: 100%;
    display: flex; flex-direction: column; gap: 32px;
    padding: 24px var(--gutter) calc(40px + env(safe-area-inset-bottom, 0px));
  }
  .nav__panel .nav__links { display: grid; gap: 0; margin: 0; }
  .nav__panel .nav__links a {
    display: block; font-size: 1.35rem; font-family: var(--font-display); font-weight: 700;
    text-transform: none; letter-spacing: -0.02em; color: var(--cream);
    padding: 18px 0; border-bottom: 1px solid var(--line-dark);
  }
  .nav__panel .nav__links a::after { content: none; }
  .nav__panel .nav__actions {
    display: flex; flex-direction: column; align-items: stretch; gap: 20px;
    margin-top: auto; padding-top: 8px;
  }
  .nav__panel .nav__signin { font-size: 0.85rem; text-align: center; }

  .hero__grid { grid-template-columns: 1fr; }
  .kinds, .easy { grid-template-columns: 1fr; }
  .easy li { border-bottom: 1px solid var(--line-dark); padding-bottom: 20px; }
  .easy li:last-child { border-bottom: 0; }
  .hero__visual { padding-bottom: 56px; margin-top: 12px; }
  .ledger { right: 0; }
  .split, .duo, .cta .wrap { grid-template-columns: 1fr; }
  .split--flip > :first-child { order: 0; }
  .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .plan--featured { order: -1; }
  .pricing__meta { grid-template-columns: 1fr; }
  .zero { grid-template-columns: 1fr; align-items: start; }
  .zero__label { padding-bottom: 0; }
}
/* Tablet menu: the actions sit on one row so the button is not 700px wide. */
@media (min-width: 620px) and (max-width: 900px) {
  .nav__panel .nav__actions { flex-direction: row; align-items: center; justify-content: space-between; gap: 28px; }
  .nav__panel .nav__actions .btn { width: auto; }
  .nav__panel .nav__signin { text-align: left; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .flow { grid-template-columns: 1fr; }
  .speclines { grid-template-columns: 1fr; }
  .speclines li { grid-template-columns: 96px 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .register__body { grid-template-columns: 1fr; }
  .register__methods { display: flex; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line-light); padding: 0; }
  .register__methods li { border-left: 0; border-bottom: 3px solid transparent; white-space: nowrap; }
  .register__methods li.is-active { border-bottom-color: var(--tangerine); }
  .hero__photo { transform: none; }
  .ledger { position: relative; width: 100%; margin-top: -24px; transform: none; }
  .brand .wordmark { height: 20px; }
}

/* ==========================================================================
   Legal and information pages (terms, privacy, refunds, contact)
   Utilitarian on purpose: the job is to be read and found, not to perform.
   ========================================================================== */

.legalbar { border-bottom: 1px solid var(--line-dark); background: var(--forest); }
.legalbar__in { display: flex; align-items: center; gap: 16px; min-height: var(--nav-h); }
.legalbar .brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--cream); }
.legalbar .brand img { width: 34px; height: 34px; }
.legalbar .brand span {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.03em;
}
.legalbar__back {
  margin-left: auto; font-family: var(--font-mono); font-size: 0.76rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream-70); text-decoration: none;
}
.legalbar__back:hover { color: var(--cream); }

.legal { padding: clamp(44px, 6vw, 84px) 0 clamp(64px, 8vw, 110px); }
.legal__head { max-width: 46rem; margin-bottom: clamp(34px, 4vw, 52px); }
.legal__head h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem); letter-spacing: -0.035em; line-height: 1.02;
  text-wrap: balance;
}
.legal__meta {
  display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 18px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cream-45);
}
.legal__intro { margin-top: 20px; font-size: 1.1rem; line-height: 1.55; color: var(--cream-70); }

.legal__grid { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.legal__toc { position: sticky; top: calc(var(--nav-h) + 24px); }
.legal__toc h2 {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-45); margin-bottom: 12px;
}
.legal__toc ol { list-style: none; counter-reset: toc; display: grid; gap: 2px; }
.legal__toc li { counter-increment: toc; }
.legal__toc a {
  display: grid; grid-template-columns: 24px 1fr; gap: 8px; padding: 6px 0;
  font-size: 0.9rem; color: var(--cream-70); text-decoration: none; line-height: 1.35;
}
.legal__toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 0.68rem; color: var(--butter); padding-top: 2px;
}
.legal__toc a:hover { color: var(--cream); }

.legal__body { max-width: 68ch; }
.legal__body section { padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line-dark); scroll-margin-top: calc(var(--nav-h) + 20px); }
.legal__body section:last-child { border-bottom: 0; }
.legal__body h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  letter-spacing: -0.025em; margin-bottom: 14px;
}
.legal__body h3 {
  font-family: var(--font-body); font-weight: 600; font-size: 1.02rem;
  margin: 22px 0 8px; color: var(--cream);
}
.legal__body p { color: var(--cream-70); margin-bottom: 14px; }
.legal__body p:last-child { margin-bottom: 0; }
.legal__body a { color: var(--butter); text-underline-offset: 3px; }
.legal__body strong { color: var(--cream); font-weight: 600; }
.legal__body ul { display: grid; gap: 10px; margin: 4px 0 16px; }
.legal__body ul li { position: relative; padding-left: 20px; color: var(--cream-70); }
.legal__body ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px; background: var(--butter); transform: rotate(45deg);
}
.legal__body dl { display: grid; grid-template-columns: max-content 1fr; gap: 10px 22px; margin: 6px 0 16px; }
.legal__body dt {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--butter); padding-top: 4px;
}
.legal__body dd { margin: 0; color: var(--cream-70); }

.legal__callout {
  padding: 18px 20px; border-left: 3px solid var(--butter);
  background: rgba(243, 240, 230, 0.06); margin: 4px 0 18px;
}
.legal__callout p { margin-bottom: 0; }
.legal__callout p + p { margin-top: 10px; }

.legal__contact { display: grid; gap: 18px; margin-top: 26px; }
.legal__contact a.btn { justify-self: start; }

@media (max-width: 860px) {
  .legal__grid { grid-template-columns: 1fr; }
  .legal__toc { position: static; padding-bottom: 26px; border-bottom: 1px solid var(--line-dark); }
  .legal__toc ol { grid-template-columns: repeat(2, minmax(0, 1fr)); display: grid; gap: 2px 20px; }
}
@media (max-width: 560px) {
  .legal__toc ol { grid-template-columns: 1fr; }
  .legal__body dl { grid-template-columns: 1fr; gap: 4px; }
  .legal__body dd { margin-bottom: 10px; }
}
