/* AutoBlogMatic — Warm Amber + Ink. Editorial, intentional, non-templated.
   Borders over shadows. One decisive accent. Asymmetric rhythm. */

:root {
  --paper: #fffdf8;
  --paper-2: #f6f0e4;
  --paper-3: #efe7d6;
  --ink: #1a1714;
  --ink-2: #4a4039;
  --ink-3: #7a6f63;
  --amber: #d9540a;
  --amber-deep: #b8440a;
  --amber-tint: #fbe7d6;
  --teal: #0c5c5c;
  --teal-tint: #d7e8e6;
  --line: #e7ddcb;
  --line-strong: #1a1714;
  --good: #1f7a4d;
  --maxw: 1140px;
  --r: 4px;
  --shadow: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .display {
  font-family: "Sora", system-ui, sans-serif;
  letter-spacing: -0.025em;
  line-height: 1.08;
  font-weight: 700;
  margin: 0;
}
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 21px; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.eyebrow {
  font-family: "Sora", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lede { font-size: 19px; color: var(--ink-2); max-width: 60ch; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 14px 24px;
  border-radius: var(--r);
  cursor: pointer;
  border: 1.5px solid var(--line-strong);
  background: var(--ink);
  color: var(--paper);
  transition: transform .12s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--amber { background: var(--amber); border-color: var(--amber); color: #fff; }
.btn--amber:hover { background: var(--amber-deep); border-color: var(--amber-deep); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--lg { padding: 17px 30px; font-size: 17px; }
.btn .ic { width: 18px; height: 18px; }

/* ---- FOMO bar ---- */
.fomo {
  background: var(--ink);
  color: var(--paper);
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  letter-spacing: -0.01em;
}
.fomo .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 24px;
  flex-wrap: wrap;
}
.fomo b { color: #ffb27a; }
.fomo .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); }
.fomo .count { font-variant-numeric: tabular-nums; }
#countdown { font-variant-numeric: tabular-nums; color: #fff; }

/* ---- header ---- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,253,248,.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.hdr .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: "Sora", sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -0.03em; }
.brand .logo-mark { width: 34px; height: 34px; }
.brand b { color: var(--amber); font-weight: 700; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 15px; color: var(--ink-2); font-weight: 500; }
.nav a:hover { color: var(--ink); }
.hdr-cta { display: flex; align-items: center; gap: 14px; }
.menu-btn { display: none; background: none; border: 0; padding: 6px; cursor: pointer; }

/* ---- hero ---- */
.hero { padding: 72px 0 40px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.4vw, 62px); }
.hero h1 .hl { color: var(--amber); }
.hero .lede { margin-top: 22px; font-size: 20px; }
.wedge {
  display: flex; gap: 10px; flex-wrap: wrap; margin: 26px 0 30px;
}
.wedge span {
  font-family: "Sora", sans-serif; font-size: 13.5px; font-weight: 600;
  border: 1.5px solid var(--line-strong); border-radius: 999px;
  padding: 7px 15px; display: inline-flex; align-items: center; gap: 7px;
}
.wedge span .ic { width: 15px; height: 15px; color: var(--amber); }
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-micro { margin-top: 18px; font-size: 14px; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.hero-micro .ic { width: 16px; height: 16px; color: var(--good); }

/* ---- product mockups ---- */
.mock {
  border: 1.5px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 14px; border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: #d9cdb8; display: inline-block; }
.mock-bar .url { margin-left: 10px; font-size: 12px; color: var(--ink-3); font-family: ui-monospace, monospace; }
.mock-body { padding: 20px; }
.hero-mock-wrap { position: relative; }
.float-card {
  position: absolute; bottom: -26px; left: -26px;
  background: var(--ink); color: var(--paper);
  border-radius: 6px; padding: 16px 18px; max-width: 230px;
  border: 1.5px solid var(--ink);
}
.float-card .k { font-family: "Sora", sans-serif; font-size: 12px; color: #ffb27a; letter-spacing: .12em; text-transform: uppercase; }
.float-card .v { font-family: "Sora", sans-serif; font-size: 30px; font-weight: 700; line-height: 1.1; margin-top: 4px; }
.float-card .s { font-size: 12.5px; color: #b8a89a; }

/* generated-post mock */
.gp-tag { display: inline-block; font-size: 11px; font-family: "Sora",sans-serif; letter-spacing:.1em; text-transform:uppercase; color: var(--teal); background: var(--teal-tint); padding: 3px 9px; border-radius: 3px; margin-bottom: 10px; }
.gp-title { font-family: "Sora", sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -0.02em; margin-bottom: 8px; }
.gp-line { height: 9px; border-radius: 3px; background: var(--paper-3); margin: 7px 0; }
.gp-img { height: 92px; border-radius: 5px; background: linear-gradient(135deg, #e9ddc6, #d8c7a6); margin: 12px 0; position: relative; overflow:hidden; border:1px solid var(--line); }
.gp-img::after { content:"featured image · Pexels"; position:absolute; bottom:6px; left:8px; font-size:10px; color:#6b5d49; background:rgba(255,255,255,.7); padding:2px 6px; border-radius:3px; }
.seo-row { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-2); margin-top: 8px; }
.seo-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--good); display: inline-flex; align-items:center; justify-content:center; }
.seo-dot svg { width: 9px; height: 9px; color: #fff; }

/* ---- trust strip ---- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.trust .wrap { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.trust .cell { padding: 28px 18px; text-align: center; border-right: 1px solid var(--line); }
.trust .cell:last-child { border-right: 0; }
.trust .n { font-family: "Sora", sans-serif; font-size: 30px; font-weight: 700; letter-spacing: -0.03em; }
.trust .n .amber { color: var(--amber); }
.trust .l { font-size: 13px; color: var(--ink-3); margin-top: 2px; }

/* ---- problem cards ---- */
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.pain {
  border: 1.5px solid var(--line); border-radius: 6px; padding: 24px;
  background: #fff; position: relative;
}
.pain .ico { width: 40px; height: 40px; border-radius: 6px; background: var(--amber-tint); color: var(--amber); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pain .ico svg { width: 21px; height: 21px; }
.pain h3 { font-size: 17px; margin-bottom: 7px; }
.pain p { font-size: 14.5px; color: var(--ink-2); margin: 0; }
.agitate { margin-top: 40px; border-left: 3px solid var(--amber); padding: 6px 0 6px 22px; font-family: "Sora", sans-serif; font-size: clamp(20px,2.4vw,27px); font-weight: 600; letter-spacing: -0.02em; max-width: 30ch; }
.agitate .amber { color: var(--amber); }

/* ---- how it works ---- */
.how { background: var(--ink); color: var(--paper); }
.how .eyebrow { color: #ffb27a; }
.how .lede { color: #c9bcab; }
/* ---- interactive how-it-works tour ---- */
.tour { display: flex; gap: 28px; margin-top: 52px; }
.tour-rail { list-style: none; padding: 0; margin: 0; flex: 0 0 38%; display: flex; flex-direction: column; gap: 6px; }
.trow { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border-left: 3px solid transparent; border-radius: 0 6px 6px 0; cursor: pointer; position: relative; transition: background .25s, border-color .25s; }
.trow:hover { background: rgba(255,255,255,.05); }
.trow.active { border-left-color: var(--amber); background: rgba(255,178,122,.08); }
.tnum { font-family: "Sora",sans-serif; font-size: 13px; font-weight: 700; color: var(--ink); background: #55504a; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #c9bcab; transition: background .25s, color .25s; }
.trow.active .tnum { background: var(--amber); color: var(--ink); }
.ttext h3 { font-size: 15px; color: #c9bcab; margin: 0 0 4px; transition: color .25s; }
.trow.active .ttext h3 { color: #fff; }
.ttext p { font-size: 13px; color: #8a7f72; margin: 0; line-height: 1.5; }
.tprog { display: block; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.06); }
.tprog i { display: block; height: 100%; width: 0; background: var(--amber); transition: none; }
.trow.active .tprog i { transition: width var(--tour-dur, 5s) linear; width: 100%; }

/* window chrome */
.tour-window { flex: 1 1 62%; border: 1px solid #3a332c; border-radius: 10px; overflow: hidden; background: var(--paper); min-height: 370px; }
.winbar { background: #2a251f; padding: 10px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #3a332c; }
.dots { display: flex; gap: 6px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; }
.dots i:nth-child(1) { background: #ff5f57; }
.dots i:nth-child(2) { background: #ffbd2e; }
.dots i:nth-child(3) { background: #28c840; }
.url { font-size: 12px; color: #b8a89a; display: flex; align-items: center; gap: 5px; flex: 1; }
.url svg { opacity: .55; }
.u2 { color: #706558; }
.winbody { position: relative; padding: 0; overflow: hidden; min-height: 310px; }
.pane { position: absolute; inset: 0; padding: 24px 28px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .35s ease, transform .35s ease, visibility 0s .35s; }
.pane.active { opacity: 1; visibility: visible; transform: none; transition: opacity .35s ease, transform .35s ease, visibility 0s; }

/* pane internals */
.pane-h { font-family: "Sora",sans-serif; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.ph-ico { color: var(--amber); font-weight: 700; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); display: inline-block; animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 5px; }
.field .free { background: #e3f3ea; color: var(--good); padding: 1px 6px; border-radius: 3px; text-transform: none; font-size: 10.5px; letter-spacing: 0; font-weight: 700; }
.inp { background: var(--paper-2); border: 1px solid var(--line); border-radius: 4px; padding: 9px 12px; font-size: 14px; font-family: "DM Sans",monospace; color: var(--ink); min-height: 38px; }
.inp.typed { overflow: hidden; white-space: nowrap; }
.inp.typed::after { content: ''; display: inline-block; width: 2px; height: 1em; background: var(--amber); vertical-align: text-bottom; animation: caret .7s step-end infinite; }
@keyframes caret { 0%,100%{opacity:1} 50%{opacity:0} }
.pane-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.mockbtn { background: var(--amber); color: #fff; border: none; padding: 8px 18px; border-radius: 4px; font-size: 13px; font-weight: 600; font-family: "Sora",sans-serif; cursor: default; }
.pill { font-size: 12px; padding: 4px 10px; border-radius: 4px; background: var(--paper-2); color: var(--ink-3); opacity: 0; transform: scale(.9); transition: opacity .35s ease, transform .35s ease; }
.pill.ok { background: #e3f3ea; color: var(--good); font-weight: 600; }
.pane.active .pill.pop { opacity: 1; transform: none; transition-delay: 1.2s; }
.pane-note { font-size: 12.5px; color: var(--ink-3); border-top: 1px dashed var(--line); padding-top: 12px; margin-top: 4px; }

/* providers */
.provs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.prov { font-size: 12px; padding: 5px 12px; border-radius: 999px; background: var(--paper-3); color: var(--ink-2); font-weight: 500; }
.prov.on { background: var(--amber-tint); color: var(--amber); font-weight: 700; border: 1px solid var(--amber); }
.prov.more { background: transparent; color: var(--ink-3); border: 1px dashed var(--line); }

/* chips / mini grid / toggles (shared in panes) */
.chipfield { display: flex; flex-wrap: wrap; gap: 6px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 4px; padding: 8px 10px; }
.chipfield span { font-size: 12.5px; padding: 4px 10px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); color: var(--ink-2); }
.chipfield .add { border-style: dashed; color: var(--ink-3); cursor: default; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.mini { background: var(--paper-2); border: 1px solid var(--line); border-radius: 5px; padding: 10px 14px; }
.mini-k { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); margin-bottom: 3px; }
.mini-v { font-family: "Sora",sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); }
.stepper::before { content: '‹ '; color: var(--ink-3); }
.stepper::after  { content: ' ›'; color: var(--ink-3); }
.toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 13.5px; }
.toggle-row:last-child { border-bottom: 0; }
.tg { width: 36px; height: 20px; border-radius: 999px; background: #d9cdb8; position: relative; flex-shrink: 0; transition: background .3s; }
.tg::after { content:""; position:absolute; top:2px; left:2px; width:16px; height:16px; border-radius:50%; background:#fff; transition: transform .3s; }
.tg.on { background: var(--amber); }
.tg.on::after { transform: translateX(16px); }
.tg.off { background: #d9cdb8; }
.tg.off::after { transform: none; }
.toggles { margin-top: 4px; }

/* autopilot pane — writer engine */
.writer { background: #1e1a16; border-radius: 6px; padding: 14px 16px; margin-bottom: 14px; }
.writer-top { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.wlabel { font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: #a08e7c; font-weight: 600; }
.wtitle { font-size: 13.5px; color: #fff; overflow: hidden; white-space: nowrap; }
.wtitle::after { content: ''; display: inline-block; width: 2px; height: 1em; background: var(--amber); vertical-align: text-bottom; animation: caret .7s step-end infinite; }
.pipe { display: flex; gap: 4px; margin-bottom: 8px; }
.pstage { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; padding: 3px 8px; border-radius: 3px; background: #2a251f; color: #706558; font-weight: 600; transition: background .25s, color .25s; }
.pstage.on { background: var(--amber); color: #fff; }
.pstage.done { background: #0c5c5c; color: #b4dad6; }
.pbar { height: 3px; background: #2a251f; border-radius: 2px; overflow: hidden; }
.pbar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--amber), var(--teal)); transition: width .4s ease; }
.counter { margin-left: auto; font-size: 12px; color: var(--ink-3); font-weight: 400; }
.counter b { color: var(--good); font-weight: 700; }

/* activity log (inside autopilot pane) */
.loglist { max-height: 170px; overflow: hidden; }
.log-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 13px; color: var(--ink-2); animation: slideIn .4s ease both; }
@keyframes slideIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:none; } }
.log-row:last-child { border-bottom: 0; }
.log-row .badge { font-size: 10px; font-family: "Sora",sans-serif; letter-spacing:.06em; text-transform: uppercase; color: var(--good); background: #e3f3ea; padding: 2px 7px; border-radius: 3px; flex-shrink: 0; }
.log-row .lt { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.log-row .time { color: var(--ink-3); font-size: 11.5px; font-variant-numeric: tabular-nums; flex-shrink: 0; }

/* ---- features ---- */
.feat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 48px; }
.feat { border: 1.5px solid var(--line); border-radius: 6px; padding: 26px; background: #fff; }
.feat.big { grid-column: span 4; background: var(--paper-2); }
.feat.std { grid-column: span 2; }
.feat.half { grid-column: span 3; }
.feat .tag { font-family: "Sora", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; display: block; }
.feat .ico { width: 38px; height: 38px; color: var(--ink); margin-bottom: 14px; }
.feat h3 { margin-bottom: 8px; }
.feat p { font-size: 15px; color: var(--ink-2); margin: 0; }
.feat .chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.feat .chips span { font-size: 12.5px; border: 1px solid var(--line-strong); border-radius: 999px; padding: 4px 11px; font-family: "Sora",sans-serif; font-weight: 500; }

/* ---- comparison ---- */
.cmp-wrap { margin-top: 44px; border: 1.5px solid var(--line-strong); border-radius: 8px; overflow: hidden; overflow-x: auto; }
table.cmp { width: 100%; border-collapse: collapse; min-width: 720px; }
table.cmp th, table.cmp td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14.5px; }
table.cmp thead th { font-family: "Sora", sans-serif; font-size: 14px; background: var(--paper-2); border-bottom: 1.5px solid var(--line-strong); }
table.cmp thead th.us { background: var(--ink); color: var(--paper); }
table.cmp tbody td:first-child { font-weight: 600; font-family: "Sora",sans-serif; font-size: 14px; }
table.cmp td.us { background: #fff7f0; font-weight: 600; border-left: 1.5px solid var(--amber); border-right: 1.5px solid var(--amber); }
table.cmp tr:last-child td { border-bottom: 0; }
.tick { color: var(--good); }
.cross { color: #b9482f; }
.cmp .ic { width: 18px; height: 18px; vertical-align: -4px; }

/* ---- pricing ---- */
.pricing { background: var(--paper-2); }
.deal {
  border: 2px solid var(--amber); border-radius: 10px; background: #fff;
  padding: 32px; margin-top: 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center;
  position: relative;
}
.deal .ribbon { position: absolute; top: -13px; left: 32px; background: var(--amber); color: #fff; font-family: "Sora",sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 4px; }
.deal h3 { font-size: 25px; }
.deal .price { font-family: "Sora", sans-serif; font-size: 56px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.deal .price .cur { font-size: 30px; vertical-align: super; }
.deal .strike { color: var(--ink-3); text-decoration: line-through; font-size: 20px; margin-left: 10px; font-family: "Sora",sans-serif; }
.deal .once { font-size: 14px; color: var(--ink-3); }
.deal ul { list-style: none; padding: 0; margin: 16px 0 0; }
.deal li { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; margin-bottom: 9px; }
.deal li .ic { width: 17px; height: 17px; color: var(--good); flex: none; margin-top: 3px; }
.scarcity { margin-top: 18px; }
.bar { height: 8px; border-radius: 999px; background: var(--paper-3); overflow: hidden; border: 1px solid var(--line); }
.bar > i { display: block; height: 100%; background: var(--amber); width: 0; transition: width 1s ease; }
.scarcity .lbl { font-size: 13px; color: var(--ink-2); margin-top: 8px; display: flex; justify-content: space-between; font-variant-numeric: tabular-nums; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.tier { border: 1.5px solid var(--line); border-radius: 8px; background: #fff; padding: 26px; }
.tier.feature { border-color: var(--line-strong); }
.tier .name { font-family: "Sora",sans-serif; font-weight: 600; font-size: 17px; }
.tier .sub { font-size: 13px; color: var(--ink-3); min-height: 32px; }
.tier .amt { font-family: "Sora",sans-serif; font-size: 38px; font-weight: 700; letter-spacing: -0.03em; margin: 6px 0; }
.tier .amt .cur { font-size: 22px; vertical-align: super; }
.tier .amt .per { font-size: 14px; color: var(--ink-3); font-weight: 500; letter-spacing: 0; }
.tier .amt .was { font-size: 20px; font-weight: 600; color: var(--ink-3); text-decoration: line-through; letter-spacing: 0; margin-right: 6px; }
.tier .save { display: inline-block; font-family: "Sora",sans-serif; font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em; color: #0f766e; background: rgba(15,118,110,.08); border: 1px solid rgba(15,118,110,.22); border-radius: 999px; padding: 3px 9px; margin-top: 6px; }
.tier ul { list-style: none; padding: 0; margin: 14px 0 20px; }
.tier li { font-size: 14px; color: var(--ink-2); padding: 6px 0; border-bottom: 1px dashed var(--line); }
.tier .btn { width: 100%; justify-content: center; }
.pay-once-note { text-align: center; margin-top: 22px; font-size: 14px; color: var(--ink-3); }

/* ---- running costs ---- */
.costs { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.cost-card { border: 1.5px solid var(--line-strong); border-radius: 8px; overflow: hidden; }
.cost-card .rowh { display: grid; grid-template-columns: 1.5fr 1fr 1fr; background: var(--ink); color: var(--paper); font-family: "Sora",sans-serif; font-size: 13px; }
.cost-card .rowh div { padding: 13px 16px; }
.cost-card .row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; border-bottom: 1px solid var(--line); font-size: 14px; }
.cost-card .row div { padding: 13px 16px; }
.cost-card .row:last-child { border-bottom: 0; }
.cost-card .free { color: var(--good); font-weight: 600; }

/* ---- testimonials ---- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.tcard { border: 1.5px solid var(--line); border-radius: 8px; padding: 26px; background: #fff; }
.tcard .stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.tcard p { font-size: 15.5px; color: var(--ink); margin: 0 0 18px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .av { width: 40px; height: 40px; border-radius: 50%; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: "Sora",sans-serif; font-weight: 700; }
.tcard .who .nm { font-family: "Sora",sans-serif; font-weight: 600; font-size: 14px; }
.tcard .who .rl { font-size: 12.5px; color: var(--ink-3); }
.tcard .metric { font-family: "Sora",sans-serif; color: var(--teal); font-weight: 700; }

/* ---- FAQ ---- */
.faq-list { margin-top: 40px; max-width: 820px; margin-left: auto; margin-right: auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa button { width: 100%; text-align: left; background: none; border: 0; padding: 22px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: "Sora",sans-serif; font-weight: 600; font-size: 17.5px; letter-spacing: -0.015em; color: var(--ink); }
.qa .pm { width: 22px; height: 22px; flex: none; color: var(--amber); transition: transform .2s ease; }
.qa.open .pm { transform: rotate(45deg); }
.qa .ans { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.qa .ans p { padding: 0 0 22px; margin: 0; color: var(--ink-2); font-size: 15.5px; }

/* ---- final CTA ---- */
.final { background: var(--ink); color: var(--paper); text-align: center; }
.final h2 { color: #fff; font-size: clamp(30px, 4.5vw, 50px); }
.final .hl { color: #ffb27a; }
.final .lede { color: #c9bcab; margin: 18px auto 30px; }
.final .guarantee { margin-top: 18px; font-size: 13.5px; color: #b8a89a; display: inline-flex; align-items: center; gap: 8px; }
.final .guarantee .ic { width: 16px; height: 16px; color: #ffb27a; }

/* ---- footer ---- */
.ftr { background: var(--paper); border-top: 1px solid var(--line); padding: 56px 0 40px; }
.ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.ftr .brand { margin-bottom: 14px; }
.ftr p { font-size: 14px; color: var(--ink-3); max-width: 32ch; }
.ftr h4 { font-family: "Sora",sans-serif; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 14px; }
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: 9px; }
.ftr li a { font-size: 14.5px; color: var(--ink-2); }
.ftr li a:hover { color: var(--amber); }
.ftr-bottom { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--ink-3); }

/* ---- order modal ---- */
.modal-bg { position: fixed; inset: 0; background: rgba(26,23,20,.55); backdrop-filter: blur(3px); display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px; }
.modal-bg.show { display: flex; }
.modal {
  background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: 10px;
  max-width: 480px; width: 100%; max-height: 92vh; overflow-y: auto;
}
.modal-head { padding: 24px 26px 0; }
.modal-head .eyebrow { margin-bottom: 8px; }
.modal-head h3 { font-size: 24px; }
.modal-head p { font-size: 14.5px; color: var(--ink-2); margin-top: 8px; }
.modal form { padding: 8px 26px 26px; }
.fld { margin-top: 16px; }
.fld label { display: block; font-family: "Sora",sans-serif; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.fld input, .fld select, .fld textarea {
  width: 100%; padding: 12px 13px; border: 1.5px solid var(--line); border-radius: 5px;
  font-family: "DM Sans", sans-serif; font-size: 15px; background: #fff; color: var(--ink);
}
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-color: var(--amber); }
.fld textarea { resize: vertical; min-height: 70px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.modal .btn { width: 100%; justify-content: center; margin-top: 22px; }
.modal-note { font-size: 12.5px; color: var(--ink-3); text-align: center; margin-top: 14px; }
.modal .close { position: sticky; top: 0; float: right; background: none; border: 0; cursor: pointer; padding: 18px; color: var(--ink-2); }
.modal .close svg { width: 22px; height: 22px; }
.form-msg { padding: 12px 14px; border-radius: 5px; font-size: 14px; margin-top: 16px; display: none; }
.form-msg.err { background: #fdece7; color: #9a3412; display: block; }
.form-msg.ok { background: #e3f3ea; color: #14633e; display: block; }
.success-box { padding: 30px 26px 34px; text-align: center; display: none; }
.success-box.show { display: block; }
.success-box .ring { width: 60px; height: 60px; border-radius: 50%; background: #e3f3ea; color: var(--good); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.success-box .ring svg { width: 30px; height: 30px; }
.success-box h3 { font-size: 22px; margin-bottom: 8px; }
.success-box p { font-size: 15px; color: var(--ink-2); }

/* ---- reveal animation ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* staggered card entrance (subtle, one beat apart) */
.pain-grid .reveal:nth-child(2), .feat-grid .reveal:nth-child(2) { transition-delay: .07s; }
.pain-grid .reveal:nth-child(3), .feat-grid .reveal:nth-child(3) { transition-delay: .14s; }
.pain-grid .reveal:nth-child(4), .feat-grid .reveal:nth-child(4) { transition-delay: .21s; }
.feat-grid .reveal:nth-child(5) { transition-delay: .28s; }
.feat-grid .reveal:nth-child(6) { transition-delay: .35s; }

/* gentle hover lift on cards — feels like a real, responsive UI, not decoration */
.pain, .feat, .tier, .tcard { transition: transform .25s ease, border-color .25s ease; }
.pain:hover, .feat:hover, .tcard:hover { transform: translateY(-3px); }

/* hero mock: live typing + image load + sequential SEO checks */
.gp-title.typing::after { content: ''; display: inline-block; width: 2px; height: .92em; background: var(--amber); vertical-align: -1px; margin-left: 1px; animation: caret .7s step-end infinite; }
.gp-img.loading::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.5) 50%, transparent 75%); transform: translateX(-100%); animation: shimmer 1.15s ease forwards; }
@keyframes shimmer { to { transform: translateX(100%); } }
.seo-item { display: inline-flex; align-items: center; gap: 6px; opacity: 0; transform: translateY(3px); transition: opacity .4s ease, transform .4s ease; }
.seo-item.in { opacity: 1; transform: none; }
.gp-tag { transition: opacity .4s ease; }

/* comparison: row-by-row reveal + tick pop */
.cmp tbody tr { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
.cmp-wrap.in tbody tr { opacity: 1; transform: none; }
.cmp-wrap.in tbody tr:nth-child(1) { transition-delay: .04s; }
.cmp-wrap.in tbody tr:nth-child(2) { transition-delay: .10s; }
.cmp-wrap.in tbody tr:nth-child(3) { transition-delay: .16s; }
.cmp-wrap.in tbody tr:nth-child(4) { transition-delay: .22s; }
.cmp-wrap.in tbody tr:nth-child(5) { transition-delay: .28s; }
.cmp-wrap.in tbody tr:nth-child(6) { transition-delay: .34s; }
.cmp-wrap.in tbody tr:nth-child(7) { transition-delay: .40s; }
.cmp-wrap.in tbody tr:nth-child(8) { transition-delay: .46s; }
.cmp .tick { display: inline-block; }
.cmp-wrap.in td.us .tick { animation: tickpop .45s cubic-bezier(.2,.8,.3,1.2) both; }
@keyframes tickpop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* reduce motion: no auto-advance fill, no typing caret, panes static-friendly */
@media (prefers-reduced-motion: reduce) {
  .trow.active .tprog i { transition: none; width: 100%; }
  .inp.typed::after, .wtitle::after { animation: none; }
  .log-row { animation: none; }
  .live-dot { animation: none; }
  .pane { transition: opacity .2s ease; transform: none; }
  .gp-title.typing::after { animation: none; }
  .gp-img.loading::before { animation: none; display: none; }
  .seo-item { opacity: 1; transform: none; transition: none; }
  .cmp tbody tr { opacity: 1; transform: none; transition: none; }
  .cmp-wrap.in td.us .tick { animation: none; }
  .pain:hover, .feat:hover, .tcard:hover { transform: none; }
}

/* ---- responsive ---- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-mock-wrap { max-width: 460px; }
  .pain-grid, .feat-grid, .tiers, .tcards { grid-template-columns: 1fr 1fr; }
  .feat.big, .feat.std, .feat.half { grid-column: span 1; }
  .costs, .deal { grid-template-columns: 1fr; }
  .tour { flex-direction: column; gap: 20px; }
  .tour-rail { flex: 1 1 auto; }
  .tour-window { min-height: 340px; }
  .trust .wrap { grid-template-columns: repeat(3, 1fr); }
  .trust .cell:nth-child(3) { border-right: 0; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .nav { display: none; }
  .menu-btn { display: block; }
  .pain-grid, .feat-grid, .tiers, .tcards { grid-template-columns: 1fr; }
  .trust .wrap { grid-template-columns: 1fr 1fr; }
  .trust .cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero h1 { font-size: 36px; }
  .float-card { position: static; margin-top: 18px; max-width: none; }
  .hdr-cta .btn--ghost { display: none; }
}

/* ---- content pages (docs / legal) ---- */
.page-hero { padding: 56px 0 8px; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-family: 'Sora', sans-serif; font-size: 40px; line-height: 1.08; letter-spacing: -.02em; margin: 0 0 10px; }
.page-hero p.lede { color: var(--ink-2); font-size: 18px; max-width: 680px; margin: 0; }
.page-hero .updated { color: var(--ink-3); font-size: 13px; margin-top: 14px; }
.doc { padding: 40px 0 80px; }
.doc-grid { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.doc-toc { position: sticky; top: 90px; }
.doc-toc h4 { font-family: 'Sora', sans-serif; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 12px; }
.doc-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.doc-toc a { color: var(--ink-2); text-decoration: none; font-size: 14px; border-left: 2px solid var(--line); padding-left: 12px; transition: color .2s ease, border-color .2s ease; }
.doc-toc a:hover { color: var(--amber); border-color: var(--amber); }
.doc-body { max-width: 720px; }
.doc-body section { scroll-margin-top: 90px; margin-bottom: 38px; }
.doc-body h2 { font-family: 'Sora', sans-serif; font-size: 24px; letter-spacing: -.01em; margin: 0 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.doc-body h3 { font-family: 'Sora', sans-serif; font-size: 17px; margin: 22px 0 8px; }
.doc-body p, .doc-body li { color: var(--ink-2); line-height: 1.72; font-size: 15.5px; }
.doc-body ul, .doc-body ol { padding-left: 22px; margin: 10px 0; }
.doc-body li { margin-bottom: 7px; }
.doc-body a { color: var(--amber); }
.doc-body code { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r); padding: 1px 6px; font-family: 'DM Sans', monospace; font-size: 14px; color: var(--ink); }
.doc-body .callout { background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--amber); border-radius: var(--r); padding: 14px 18px; margin: 16px 0; }
.doc-body .callout p { margin: 0; color: var(--ink-2); font-size: 14.5px; }
.doc-step { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.doc-step:first-of-type { border-top: 0; }
.doc-step .num { flex: 0 0 32px; height: 32px; border-radius: 50%; background: var(--ink); color: var(--paper); font-family: 'Sora', sans-serif; font-weight: 600; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.doc-step .num.amber { background: var(--amber); }
.doc-step h3 { margin: 4px 0 6px; }
@media (max-width: 860px) {
  .doc-grid { grid-template-columns: 1fr; gap: 24px; }
  .doc-toc { position: static; }
  .doc-toc ul { flex-direction: row; flex-wrap: wrap; gap: 8px 16px; }
  .page-hero h1 { font-size: 32px; }
}
