/* ============================================================
   Crumble Bar — sales site
   Aesthetic: Anthropic / Claude — warm ivory, clay accent,
   serif display + clean sans body, soft radii, generous space.
   ============================================================ */

:root {
  /* Surfaces */
  --bg:        #FAF9F5;   /* main ivory */
  --bg-cream:  #F0EEE6;   /* alternating section */
  --card:      #FFFFFF;
  --card-soft: #FBFAF7;

  /* Ink */
  --ink:       #1A1915;   /* near-black, warm */
  --ink-2:     #46443D;   /* body */
  --ink-3:     #6F6C61;   /* muted */

  /* Brand accent — Claude "clay" */
  --clay:      #D97757;
  --clay-700:  #C15F3C;
  --clay-100:  #F4E4DC;

  /* Lines */
  --line:      #E6E2D7;
  --line-2:    #DAD5C7;

  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;

  --maxw:      1120px;
  --shadow:    0 1px 2px rgba(26,25,21,.04), 0 8px 30px rgba(26,25,21,.06);
  --shadow-lg: 0 30px 80px -24px rgba(26,25,21,.28);

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

code, kbd {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: .9em;
}
code {
  background: var(--clay-100);
  color: var(--clay-700);
  padding: .12em .45em;
  border-radius: 6px;
  font-weight: 600;
}
kbd {
  background: var(--ink);
  color: #fff;
  padding: .15em .5em;
  border-radius: 6px;
  font-size: .82em;
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--clay); color: #fff; }
.btn--primary:hover { background: var(--clay-700); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(26,25,21,.03); }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn--sm { padding: 9px 16px; font-size: 14px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: #EDE9DF;
  font-size: 13.5px;
  text-align: center;
  padding: 9px 16px;
}
.announce code { background: rgba(255,255,255,.14); color: #fff; }
.announce strong { color: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,249,245,.8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.is-stuck { border-color: var(--line); box-shadow: 0 1px 0 rgba(26,25,21,.03); }
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand__mark { width: 26px; height: 26px; transition: transform .55s cubic-bezier(.34,1.56,.64,1); }
.brand__name { font-family: var(--font-serif); font-weight: 600; font-size: 20px; color: var(--ink); letter-spacing: .02em; }

/* ---- Animated nav wordmark: flips through a few fonts, then collapses to just the icon ---- */
.nav .brand__name {
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  max-width: none;
  transition:
    max-width   .46s cubic-bezier(.65, 0, .35, 1),
    margin-left .46s cubic-bezier(.65, 0, .35, 1),
    opacity     .3s  ease,
    transform   .3s  ease,
    color       .22s ease;
}
.nav .brand__name[data-font="serif"]  { font-family: var(--font-serif); font-weight: 600; font-size: 20px; color: var(--ink);  letter-spacing: .02em; }

/* Mr. Robot — terminal mono with a glitchy red/cyan chromatic split */
.nav .brand__name[data-font="robot"] {
  font-family: "Share Tech Mono", ui-monospace, SFMono-Regular, monospace;
  font-weight: 400; font-size: 18px; color: var(--ink);
  letter-spacing: .05em; text-transform: uppercase;
  animation: hb-glitch .34s steps(2, end) infinite;
}
/* Apple — San Francisco, tight tracking, minimalist */
.nav .brand__name[data-font="apple"] {
  font-family: -apple-system, "SF Pro Display", system-ui, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600; font-size: 20px; color: var(--ink); letter-spacing: -.035em;
}
/* The site's own orange serif — the finale before it folds to the icon */
.nav .brand__name[data-font="clay"]   { font-family: var(--font-serif); font-weight: 600; font-size: 20px; color: var(--clay); letter-spacing: .02em; }

@keyframes hb-glitch {
  0%   { text-shadow:  1.6px 0 rgba(255,0,64,.65), -1.6px 0 rgba(0,231,255,.6); }
  25%  { text-shadow: -2px   0 rgba(255,0,64,.7),   2px   0 rgba(0,231,255,.6); }
  50%  { text-shadow:  1px   0 rgba(255,0,64,.6),  -1px   0 rgba(0,231,255,.55); }
  75%  { text-shadow:  2.4px 0 rgba(255,0,64,.7),  -2.4px 0 rgba(0,231,255,.65); }
  100% { text-shadow:  1.6px 0 rgba(255,0,64,.6), -1.6px 0 rgba(0,231,255,.55); }
}

/* Footer wordmark — Mr. Robot terminal styling, flickering orange/black */
.footer .brand__name {
  font-family: "Share Tech Mono", ui-monospace, SFMono-Regular, monospace;
  font-weight: 400;
  font-size: 17px;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-shadow: 1px 0 rgba(217, 119, 87, .5), -1px 0 rgba(193, 95, 60, .45);
  animation: hb-flicker 3.4s linear infinite;
}

/* Faulty-sign flicker: steady clay/orange punctuated by quick near-black blinks */
@keyframes hb-flicker {
  0%   { color: var(--clay); opacity: 1; }
  6%   { color: var(--clay); opacity: 1; }
  7%   { color: var(--ink);  opacity: .3; }
  8%   { color: var(--clay); opacity: 1; }
  19%  { color: var(--clay); opacity: 1; }
  20%  { color: var(--ink);  opacity: .25; }
  22%  { color: var(--clay); opacity: 1; }
  33%  { color: var(--clay); opacity: 1; }
  34%  { color: var(--ink);  opacity: .4; }
  35%  { color: var(--clay); opacity: 1; }
  55%  { color: var(--clay); opacity: 1; }
  56%  { color: var(--ink);  opacity: .25; }
  58%  { color: var(--clay); opacity: 1; }
  72%  { color: var(--clay); opacity: 1; }
  73%  { color: var(--ink);  opacity: .45; }
  75%  { color: var(--clay); opacity: 1; }
  88%  { color: var(--clay); opacity: 1; }
  89%  { color: var(--ink);  opacity: .3; }
  90%  { color: var(--clay); opacity: 1; }
  100% { color: var(--clay); opacity: 1; }
}

.nav .brand.is-collapsed .brand__name {
  opacity: 0;
  max-width: 0;
  margin-left: -9px;            /* swallow the flex gap so only the icon is left */
  transform: translateX(-4px);
}
.nav .brand.is-collapsed .brand__mark { transform: scale(1.06); }

@media (prefers-reduced-motion: reduce) {
  .nav .brand__mark,
  .nav .brand__name,
  .footer .brand__name { transition: none; animation: none !important; }
  .footer .brand__name { color: var(--clay); opacity: 1; }
  .nav .brand.is-collapsed .brand__name { opacity: 1; max-width: none; margin-left: 0; transform: none; }
  .nav .brand.is-collapsed .brand__mark { transform: none; }
}

.nav__links { display: flex; gap: 26px; margin-left: 14px; }
.nav__links a { color: var(--ink-2); font-size: 15px; font-weight: 500; transition: color .15s; }
.nav__links a:hover { color: var(--ink); }

.nav__actions { margin-left: auto; display: flex; gap: 10px; align-items: center; }

.nav__toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; gap: 4px; padding: 8px 24px 20px; border-bottom: 1px solid var(--line); background: var(--bg); }
.nav__mobile a { padding: 12px 4px; font-size: 16px; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.nav__mobile a:last-child { border: 0; margin-top: 8px; }
.nav__mobile.is-open { display: flex; }

/* ---------- Layout helpers ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay-700);
}
.eyebrow--center { text-align: center; }

.section-title { font-size: clamp(28px, 4vw, 44px); }
.section-sub { font-size: 18px; color: var(--ink-3); max-width: 620px; margin: 16px auto 0; }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 8vw, 96px) 24px; }
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__copy .eyebrow { margin-bottom: 18px; }
.hero h1 { font-size: clamp(40px, 6.2vw, 72px); letter-spacing: -0.02em; }
.lede { font-size: 19px; color: var(--ink-2); margin: 22px 0 0; max-width: 520px; }
.hero__cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero__trust { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; padding: 0; margin: 26px 0 0; color: var(--ink-3); font-size: 14px; font-weight: 500; }

/* Hero demo: faux mac desktop */
.hero__demo { display: flex; flex-direction: column; align-items: center; }
.desktop {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 80% 10%, #FBE7DC 0%, transparent 55%),
    radial-gradient(120% 120% at 10% 100%, #E5EAF2 0%, transparent 60%),
    linear-gradient(160deg, #F6D9C8 0%, #E8DFF1 55%, #D9E5F0 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
  overflow: hidden;
}
.desktop__menu {
  position: absolute; top: 0; left: 0; right: 0;
  height: 26px;
  display: flex; align-items: center; gap: 14px;
  padding: 0 12px;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 600; color: rgba(26,25,21,.7);
}
.dot-menu { width: 13px; height: 13px; border-radius: 50%; background: var(--ink); opacity: .8; }
.desktop__clock { margin-left: auto; }

/* window peek popover */
.peek {
  position: absolute;
  left: 50%; bottom: 64px;
  transform: translateX(-50%);
  width: 62%;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 12px;
  box-shadow: 0 18px 40px -12px rgba(26,25,21,.35);
  padding: 10px;
  animation: floaty 4s ease-in-out infinite;
}
.peek__title { font-size: 11px; font-weight: 600; color: var(--ink-2); margin: 2px 4px 8px; }
.peek__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.peek__win { aspect-ratio: 16/10; border-radius: 6px; background: linear-gradient(135deg,#dfe7f3,#cfd9ea); box-shadow: inset 0 0 0 1px rgba(26,25,21,.06); }
.peek__win:nth-child(1) { background: linear-gradient(135deg,#fde3d6,#f6cdbb); }
.peek__win:nth-child(3) { background: linear-gradient(135deg,#e2eede,#cfe2c9); }
@keyframes floaty { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-6px); } }

/* the bar */
.bar {
  position: absolute; left: 8px; right: 8px; bottom: 8px;
  height: 46px;
  display: flex; align-items: center; gap: 8px;
  padding: 0 10px;
  background: rgba(28,28,32,.72);
  backdrop-filter: blur(18px);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.bar__start { border: 0; background: rgba(255,255,255,.14); width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; padding: 0; cursor: pointer; }
.bar__start img { width: 20px; height: 20px; }
.bar__sep { width: 1px; height: 22px; background: rgba(255,255,255,.18); }
.bar__app, .bar__add {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--c, #888);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}
.bar__app.is-running::after, .bar__app.is-active::after {
  content: ""; position: absolute; left: 6px; right: 6px; bottom: -5px; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,.55);
}
.bar__app.is-active::after { left: 2px; right: 2px; height: 3px; background: var(--clay); }
.bar__add { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); display: grid; place-items: center; font-size: 18px; font-weight: 300; }
.bar__spacer { flex: 1; }
.bar__clock { color: rgba(255,255,255,.85); font-size: 12px; font-weight: 600; }

.hero__demo-caption { margin-top: 16px; font-size: 13px; color: var(--ink-3); }

/* ---------- Social proof strip ---------- */
.proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--card-soft); }
.proof__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 22px 24px;
  display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap;
}
.proof__stat { text-align: center; }
.proof__stat strong { display: block; font-family: var(--font-serif); font-size: 22px; color: var(--ink); }
.proof__stat span { font-size: 13px; color: var(--ink-3); }
.proof__stars { color: var(--clay); font-size: 18px; letter-spacing: 2px; }
.proof__label { font-size: 13px; color: var(--ink-3); margin-top: 2px; }
.proof__divider { width: 1px; height: 36px; background: var(--line-2); }

/* ---------- Bands ---------- */
.band { padding: clamp(56px, 9vw, 110px) 24px; }
.band--alt { background: var(--bg-cream); }
.band__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.band .section-title { margin-bottom: 0; }
.band .section-sub { margin-top: 18px; }

/* ---------- Features ---------- */
.features { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,9vw,110px) 24px; }
.features__head { text-align: center; margin-bottom: 64px; }
.features__head .eyebrow { margin-bottom: 14px; }

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 36px 0;
}
.feature--reverse .feature__media { order: 2; }
.feature__copy h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.feature__copy p { font-size: 17px; max-width: 460px; }
.feature__copy strong { color: var(--ink); font-weight: 600; }

.feature__media {
  background: linear-gradient(160deg, var(--bg-cream), #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  aspect-ratio: 7 / 5;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 24px;
}

/* mini illustrations inside feature media */
.mini-peek { width: 80%; position: relative; }
.mini-peek__bar { display: flex; gap: 10px; justify-content: center; background: rgba(28,28,32,.85); padding: 10px; border-radius: 10px; }
.mini-peek__bar span { width: 28px; height: 28px; border-radius: 7px; background: var(--c); }
.mini-peek__pop { position: absolute; left: 50%; bottom: 56px; transform: translateX(-50%); width: 100%; display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; background: #fff; padding: 10px; border-radius: 10px; box-shadow: var(--shadow-lg); }
.mini-peek__pop div { aspect-ratio: 16/10; border-radius: 6px; background: linear-gradient(135deg,#e3ebf6,#d2deef); }
.mini-peek__pop div:nth-child(1){background:linear-gradient(135deg,#fde3d6,#f6cdbb);} .mini-peek__pop div:nth-child(4){background:linear-gradient(135deg,#e2eede,#cfe2c9);}

.mini-start { position: relative; width: 78%; }
.mini-start__menu { background: rgba(255,255,255,.96); border:1px solid var(--line); border-radius: 12px; padding: 12px; box-shadow: var(--shadow-lg); }
.mini-start__search { background: var(--bg-cream); border-radius: 8px; padding: 8px 10px; font-size: 12px; color: var(--ink-3); }
.mini-start__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 10px 0; }
.mini-start__grid i { aspect-ratio: 1; border-radius: 8px; background: linear-gradient(135deg,#e9e4f2,#d9e3f0); }
.mini-start__power { display: flex; gap: 6px; }
.mini-start__power b { flex:1; height: 8px; border-radius: 4px; background: var(--line-2); }
.mini-start__btn { width: 38px; height: 38px; border-radius: 9px; background: var(--ink); display: grid; place-items: center; margin: -14px auto 0; box-shadow: var(--shadow); }
.mini-start__btn img { width: 22px; height: 22px; }

.mini-bar { display: flex; gap: 12px; background: rgba(28,28,32,.85); padding: 14px 18px; border-radius: 12px; }
.mini-bar__app, .mini-bar__add { width: 38px; height: 38px; border-radius: 9px; background: var(--c,#888); position: relative; }
.mini-bar__app.is-running::after, .mini-bar__app.is-active::after { content:""; position:absolute; left:8px; right:8px; bottom:-7px; height:3px; border-radius:2px; background: rgba(255,255,255,.6); }
.mini-bar__app.is-active::after { left:2px; right:2px; background: var(--clay); }
.mini-bar__add { background: rgba(255,255,255,.14); color: rgba(255,255,255,.7); display:grid; place-items:center; font-size:22px; font-weight:300; }

.mini-jump { background: #fff; border:1px solid var(--line); border-radius: 12px; padding: 8px; width: 80%; box-shadow: var(--shadow-lg); }
.mini-jump__item { padding: 9px 12px; border-radius: 7px; font-size: 13px; color: var(--ink-2); }
.mini-jump__item:first-child { background: var(--clay-100); color: var(--clay-700); font-weight: 600; }
.mini-jump__sep { height: 1px; background: var(--line); margin: 6px 8px; }

.mini-theme { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center; width: 80%; }
.swatch { width: 46px; height: 46px; border-radius: 12px; background: var(--c); box-shadow: inset 0 0 0 1px rgba(26,25,21,.08); }
.swatch:nth-child(4) { outline: 3px solid var(--clay); outline-offset: 2px; }
.mini-theme__slider { width: 100%; height: 8px; border-radius: 4px; background: linear-gradient(90deg, var(--clay), var(--clay-100)); margin-top: 8px; position: relative; }
.mini-theme__slider i { position:absolute; right: 28%; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: var(--shadow); }

.mini-space { width: 78%; }
.mini-space__win { height: 96px; border-radius: 10px 10px 4px 4px; background: linear-gradient(135deg,#eef2f9,#dde6f3); border:1px solid var(--line); box-shadow: var(--shadow); }
.mini-space__bar { height: 16px; border-radius: 6px; background: rgba(28,28,32,.85); margin-top: 8px; }

/* ---------- Comparison table ---------- */
.table-wrap { margin-top: 40px; overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-align: left; min-width: 620px; }
.compare th, .compare td { padding: 16px 18px; border-bottom: 1px solid var(--line); font-size: 15px; }
.compare thead th { font-family: var(--font-sans); font-weight: 600; color: var(--ink); background: var(--card-soft); font-size: 14px; }
.compare td:first-child, .compare th:first-child { text-align: left; color: var(--ink-2); }
.compare th:not(:first-child), .compare td:not(:first-child) { text-align: center; width: 130px; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare__us { background: var(--clay-100) !important; color: var(--clay-700) !important; font-weight: 700; }
thead .compare__us { color: var(--clay-700) !important; }

/* ---------- Steps ---------- */
.steps { max-width: var(--maxw); margin: 0 auto; padding: 0 24px clamp(56px,9vw,110px); }
.steps__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.step__num { width: 40px; height: 40px; border-radius: 50%; background: var(--clay); color: #fff; font-family: var(--font-serif); font-weight: 600; font-size: 20px; display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 15px; margin: 0; }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; text-align: left; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin: 0; box-shadow: var(--shadow); }
.quote blockquote { margin: 0 0 16px; font-size: 16px; color: var(--ink); line-height: 1.55; }
.quote figcaption { font-size: 14px; color: var(--ink-3); font-weight: 500; }

/* ---------- Pricing ---------- */
.pricing { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,9vw,110px) 24px; }
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; align-items: stretch; }
.plan {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.plan--featured { border: 1.5px solid var(--clay); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--clay); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.plan__name { font-family: var(--font-serif); font-size: 20px; color: var(--ink); font-weight: 600; }
.plan__price { margin: 14px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.plan__price .amt { font-family: var(--font-serif); font-size: 48px; color: var(--ink); font-weight: 500; line-height: 1; }
.plan__price .per { font-size: 16px; color: var(--ink-3); }
.plan__cycle { font-size: 14px; color: var(--ink-3); margin-bottom: 22px; }
.plan__list { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 11px; }
.plan__list li { font-size: 15px; color: var(--ink-2); padding-left: 26px; position: relative; }
.plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--clay); font-weight: 700; }
.plan .btn { margin-top: auto; }
.plan__note { text-align: center; font-size: 12.5px; color: var(--ink-3); margin-top: 12px; }

.guarantee { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 40px auto 0; max-width: 640px; background: var(--card-soft); border: 1px dashed var(--line-2); border-radius: var(--radius); padding: 18px 24px; font-size: 15px; color: var(--ink-2); }
.guarantee__icon { font-size: 22px; color: var(--clay); }
.guarantee strong { color: var(--ink); }

/* ---------- CTA ---------- */
.cta { background: var(--ink); color: #EDE9DF; padding: clamp(64px,10vw,120px) 24px; }
.cta__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta h2 { color: #fff; font-size: clamp(30px,5vw,52px); }
.cta p { font-size: 18px; color: #C8C4B8; margin: 18px 0 32px; }
.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta__meta { margin-top: 22px; font-size: 13px; color: #908C81; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; padding: clamp(56px,9vw,110px) 24px; }
.faq__list { margin-top: 44px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: var(--font-serif); font-size: 19px; font-weight: 500; color: var(--ink);
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--clay); font-family: var(--font-sans); font-weight: 300; transition: transform .2s; }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { padding: 0 40px 24px 0; font-size: 16px; color: var(--ink-2); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-cream); border-top: 1px solid var(--line); padding: 64px 24px 28px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; }
.footer__brand p { font-size: 14px; color: var(--ink-3); margin: 14px 0 0; max-width: 260px; }
.footer__cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer__col h4 { font-family: var(--font-sans); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-3); margin-bottom: 14px; font-weight: 600; }
.footer__col a { display: block; font-size: 15px; color: var(--ink-2); padding: 5px 0; transition: color .15s; }
.footer__col a:hover { color: var(--clay-700); }
.footer__bar { max-width: var(--maxw); margin: 48px auto 0; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--ink-3); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .peek { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__demo { order: -1; }
  .feature, .feature--reverse { grid-template-columns: 1fr; gap: 28px; }
  .feature--reverse .feature__media { order: 0; }
  .feature__media { aspect-ratio: 16/10; }
  .feature__copy p { max-width: none; }
  .steps__grid, .quotes, .plans { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .proof__divider { display: none; }
}
@media (max-width: 520px) {
  .proof__inner { gap: 20px; }
  .hero__trust { gap: 14px; }
  .btn--lg { width: 100%; }
  .hero__cta .btn, .cta__actions .btn { width: 100%; }
}
