/* ==========================================================================
   CHEDDAGRAM — Design tokens
   Palette: warm dark ink + cheddar gold + deep forest green + cream
   ========================================================================== */

:root {
  /* Colors */
  --ink: #0F0F0E;              /* near-black, warm */
  --ink-2: #17171512;
  --surface: #17161422;
  --surface-1: #1B1A17;
  --surface-2: #22201C;
  --line: rgba(245, 239, 225, 0.08);
  --line-strong: rgba(245, 239, 225, 0.16);

  --cheddar: #E8A93A;
  --cheddar-hi: #F3B547;
  --cheddar-lo: #C48E27;
  --forest: #3D5A3C;
  --forest-hi: #4E7050;

  --cream: #F5EFE1;
  --cream-mute: #D5CEBB;
  --muted: #8A8577;
  --muted-2: #5F5B4F;

  /* Type */
  --font-display: 'Instrument Serif', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;

  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: clamp(24px, 3vw, 34px);
  --text-2xl: clamp(32px, 5vw, 56px);
  --text-hero: clamp(48px, 8vw, 96px);

  /* Space */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.28);
  --shadow: 0 8px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.45);
  --shadow-gold: 0 8px 40px rgba(232, 169, 58, 0.28);

  --wrap: 1200px;
  --wrap-narrow: 960px;
}

/* ==========================================================================
   RESET + BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

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

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 500; }
p { margin: 0; }

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

/* ==========================================================================
   Utilities
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cheddar);
}
.eyebrow__dot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--cheddar);
  border-radius: 50%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.005em;
  border: 1px solid transparent;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1),
              background 200ms ease,
              border-color 200ms ease,
              box-shadow 200ms ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--gold {
  background: var(--cheddar);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--gold:hover { background: var(--cheddar-hi); box-shadow: var(--shadow-gold); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--cheddar); color: var(--cheddar-hi); }
.btn--lg { padding: 16px 26px; font-size: var(--text-base); }
.btn--full { width: 100%; }

.link-plain { color: var(--cream-mute); font-size: var(--text-sm); }
.link-plain:hover { color: var(--cheddar); }

em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--cheddar);
  font-weight: 400;
}

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(15, 15, 14, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--cheddar);
}
.brand__mark { color: var(--cheddar); flex-shrink: 0; }
.brand__wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cream);
  font-weight: 400;
}
.nav__links {
  display: flex;
  gap: var(--sp-6);
  margin-left: var(--sp-8);
}
.nav__links a {
  font-size: var(--text-sm);
  color: var(--cream-mute);
  transition: color 200ms ease;
}
.nav__links a:hover { color: var(--cheddar); }
.nav__cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__wrap { gap: var(--sp-4); }
}
@media (max-width: 560px) {
  .nav__cta .link-plain { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  padding: var(--sp-20) var(--sp-6) var(--sp-24);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle at center, rgba(232, 169, 58, 0.18) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle at center, rgba(61, 90, 60, 0.28) 0%, transparent 60%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.hero__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy { max-width: 620px; }
.hero__h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: var(--sp-5) 0 var(--sp-6);
  font-weight: 400;
}
.hero__sub {
  font-size: 20px;
  line-height: 1.55;
  color: var(--cream-mute);
  max-width: 560px;
  margin-bottom: var(--sp-8);
}
.hero__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}
.hero__mini {
  font-size: var(--text-sm);
  color: var(--muted);
}

@media (max-width: 940px) {
  .hero { padding: var(--sp-12) var(--sp-6) var(--sp-16); }
  .hero__wrap { grid-template-columns: 1fr; gap: var(--sp-12); }
  .hero__copy { max-width: 100%; }
  .hero__sub { font-size: 18px; }
}

/* ==========================================================================
   PHONE MOCKUP
   ========================================================================== */

.phone {
  position: relative;
  justify-self: center;
  width: 320px;
  transform: rotate(-3deg);
}
.phone__frame {
  position: relative;
  background: #0A0A09;
  border-radius: 46px;
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.06) inset,
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(232, 169, 58, 0.12);
}
.phone__notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #050504;
  border-radius: 999px;
  z-index: 5;
}
.phone__screen {
  background: linear-gradient(180deg, #14130F 0%, #0F0E0C 100%);
  border-radius: 36px;
  padding: 56px 16px 20px;
  overflow: hidden;
  min-height: 620px;
}
.phone__glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 30% 30%, rgba(232, 169, 58, 0.15), transparent 60%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

.app { font-family: var(--font-body); }
.app__top { margin-bottom: var(--sp-4); padding: 0 var(--sp-2); }
.app__hi {
  font-size: 20px;
  font-family: var(--font-display);
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.app__meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.app__card {
  background: #1A1815;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 14px;
  position: relative;
  margin-bottom: var(--sp-4);
}
.app__photo {
  height: 100px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #4a3a20 0%, #2a221a 100%),
    radial-gradient(circle at 30% 30%, rgba(232, 169, 58, 0.2), transparent);
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.app__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.4), transparent 40%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 8px);
}
.app__photo::after {
  content: "🏠";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 38px;
  opacity: 0.8;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}
.app__addr {
  font-size: 13px;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.app__owner {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.app__pill {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(61, 90, 60, 0.9);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.app__section-label {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 var(--sp-2);
  margin-bottom: var(--sp-2);
}
.app__templates {
  display: grid;
  gap: 6px;
  margin-bottom: var(--sp-4);
}
.app__tpl {
  background: #1A1815;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.app__tpl--active {
  border-color: var(--cheddar);
  background: rgba(232, 169, 58, 0.08);
}
.app__tpl--active::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cheddar);
  box-shadow: inset 0 0 0 3px #1A1815;
}
.app__tpl-title {
  font-size: 12px;
  color: var(--cream);
  font-weight: 600;
}
.app__tpl-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
}

.app__send {
  width: 100%;
  background: var(--cheddar);
  color: var(--ink);
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(232, 169, 58, 0.3);
}
.app__send-arrow {
  transition: transform 200ms ease;
}

/* ==========================================================================
   STRIP
   ========================================================================== */

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
  padding: var(--sp-6) var(--sp-6);
}
.strip__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.strip__item {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  border-left: 1px solid var(--line);
  padding-left: var(--sp-5);
}
.strip__item:first-child { border-left: none; padding-left: 0; }
.strip__num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--cheddar);
  line-height: 1;
}
.strip__lbl {
  font-size: 12px;
  color: var(--cream-mute);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .strip__wrap { grid-template-columns: repeat(2, 1fr); }
  .strip__item:nth-child(3) { border-left: none; padding-left: 0; }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
  padding: var(--sp-24) var(--sp-6);
  position: relative;
}
.section--surface {
  background: var(--surface-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}
.section__wrap--split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--sp-16);
  align-items: center;
}
@media (max-width: 900px) {
  .section { padding: var(--sp-16) var(--sp-6); }
  .section__wrap--split { grid-template-columns: 1fr; gap: var(--sp-12); }
}

.section__lead {
  max-width: 720px;
  margin-bottom: var(--sp-12);
}
.section__h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: var(--sp-4) 0 var(--sp-5);
  font-weight: 400;
}
.section__intro {
  color: var(--cream-mute);
  font-size: 18px;
  line-height: 1.55;
  max-width: 560px;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  counter-reset: step;
}
.step {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-8);
  transition: border-color 200ms ease, transform 200ms ease;
}
.step:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.step__n {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--cheddar);
  line-height: 1;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.02em;
}
.step__h {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-3);
}
.step__p {
  color: var(--cream-mute);
  font-size: var(--text-base);
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .step { padding: var(--sp-8); }
}

/* ==========================================================================
   CATEGORIES GRID
   ========================================================================== */

.grid-cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-3);
}
.cat {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-6) var(--sp-5);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}
.cat:hover {
  border-color: var(--cheddar);
  background: rgba(232, 169, 58, 0.05);
  transform: translateY(-2px);
}
.cat__ic {
  font-size: 24px;
  margin-bottom: var(--sp-3);
  line-height: 1;
}
.cat__t {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}
.cat__d {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .grid-cats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .grid-cats { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   FEATURES
   ========================================================================== */

.grid-feat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.feat {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: border-color 200ms ease, transform 200ms ease;
}
.feat:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.feat--wide { grid-column: span 3; }
.feat--wide { background: linear-gradient(135deg, var(--surface-1) 0%, rgba(232, 169, 58, 0.04) 100%); }
.feat__eyebrow {
  font-size: 12px;
  color: var(--cheddar);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.feat__h {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-3);
}
.feat--wide .feat__h { font-size: 34px; max-width: 720px; }
.feat__p {
  color: var(--cream-mute);
  font-size: var(--text-base);
  max-width: 480px;
}
.feat--wide .feat__p { max-width: 780px; font-size: 17px; }
@media (max-width: 900px) {
  .grid-feat { grid-template-columns: 1fr; }
  .feat--wide { grid-column: span 1; }
}

/* ==========================================================================
   LETTER PREVIEW
   ========================================================================== */

.letter-lead {}

.letter {
  position: relative;
  perspective: 1200px;
}
.letter__paper {
  background: linear-gradient(180deg, #F7F1E1 0%, #EDE5D0 100%);
  color: #1A1A16;
  border-radius: 4px;
  padding: 44px 40px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.4),
    0 8px 20px rgba(0,0,0,0.2);
  transform: rotate(1.2deg);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Georgia', serif;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}
.letter__paper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--cheddar) 0%, var(--forest) 100%);
}
.letter:hover .letter__paper { transform: rotate(0.4deg) translateY(-4px); }
.letter__hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.letter__name {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  color: #1A1A16;
}
.letter__ret {
  font-size: 12px;
  color: #6b6659;
  margin-top: 2px;
}
.letter__date {
  font-size: 12px;
  color: #6b6659;
  font-style: italic;
}
.letter__body p {
  font-size: 15px;
  margin-bottom: 12px;
  color: #2a2822;
}
.letter__hi { color: #B47F1F; font-weight: 600; }
.letter__sig {
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  color: #1A1A16;
  margin-top: 20px !important;
  font-style: italic;
}
.letter__ps {
  font-size: 13px !important;
  color: #6b6659 !important;
  margin-top: 20px !important;
  font-style: italic;
  padding-top: 12px;
  border-top: 1px dashed rgba(0,0,0,0.1);
}
.letter__stamp {
  position: absolute;
  top: -20px;
  right: -14px;
  width: 88px;
  height: 88px;
  background: var(--cheddar);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transform: rotate(12deg);
  box-shadow: 0 8px 24px rgba(232, 169, 58, 0.35);
  z-index: 2;
}
.letter__stamp::before {
  content: "Real Ink Available";
  padding: 0 8px;
  line-height: 1.1;
}

/* ==========================================================================
   PRICING
   ========================================================================== */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}
.tier {
  background: var(--surface-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 200ms ease, border-color 200ms ease;
}
.tier:hover { transform: translateY(-3px); }
.tier--feat {
  border: 1px solid var(--cheddar);
  background: linear-gradient(160deg, rgba(232, 169, 58, 0.08) 0%, var(--surface-1) 60%);
  box-shadow: var(--shadow-gold);
}
.tier__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cheddar);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tier__head { margin-bottom: var(--sp-6); }
.tier__name {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--sp-3);
}
.tier__amt {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.tier--feat .tier__amt { color: var(--cheddar); }
.tier__unit { color: var(--muted); font-size: 15px; }
.tier__desc {
  color: var(--cream-mute);
  font-size: 14px;
  min-height: 42px;
}
.tier__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-6);
  display: grid;
  gap: var(--sp-3);
  flex: 1;
}
.tier__list li {
  color: var(--cream);
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(232, 169, 58, 0.15);
  border: 1px solid var(--cheddar);
}
.tier__list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--cheddar);
  border-bottom: 1.5px solid var(--cheddar);
  transform: rotate(-45deg);
}
.pricing__foot {
  text-align: center;
  color: var(--muted);
  font-size: var(--text-sm);
  margin-top: var(--sp-8);
}
.pricing__foot a { color: var(--cheddar); border-bottom: 1px solid var(--cheddar); }

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

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  max-width: var(--wrap-narrow);
  display: grid;
  gap: var(--sp-3);
}
.qa {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  transition: border-color 200ms ease, background 200ms ease;
}
.qa:hover { border-color: var(--line-strong); }
.qa summary {
  cursor: pointer;
  list-style: none;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  color: var(--cheddar);
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  transition: transform 200ms ease;
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa p {
  color: var(--cream-mute);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-top: var(--sp-4);
  max-width: 680px;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta {
  padding: var(--sp-32) var(--sp-6);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(232, 169, 58, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(61, 90, 60, 0.25) 0%, transparent 50%);
  filter: blur(40px);
  z-index: 0;
}
.cta__wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta__h {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
  font-weight: 400;
}
.cta__p {
  color: var(--cream-mute);
  font-size: 18px;
  margin-bottom: var(--sp-8);
}
.cta__actions {
  display: inline-flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.foot {
  background: #0A0A09;
  border-top: 1px solid var(--line);
  padding: var(--sp-16) var(--sp-6) var(--sp-8);
}
.foot__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-16);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--line);
}
.foot__brand .brand { margin-bottom: var(--sp-3); }
.foot__tag {
  color: var(--muted);
  font-size: var(--text-sm);
  max-width: 260px;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.foot__col { display: flex; flex-direction: column; gap: var(--sp-3); }
.foot__ct {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: var(--sp-1);
  font-weight: 600;
}
.foot__col a {
  color: var(--cream-mute);
  font-size: var(--text-sm);
  transition: color 200ms ease;
}
.foot__col a:hover { color: var(--cheddar); }

.foot__bot {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-top: var(--sp-8);
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: var(--text-xs);
}

@media (max-width: 800px) {
  .foot__wrap { grid-template-columns: 1fr; gap: var(--sp-8); }
  .foot__cols { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
  .foot__bot { flex-direction: column; gap: var(--sp-2); }
}
@media (max-width: 500px) {
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
