/* ============================================
   Mysitee Marketing — Design tokens
   bg: warm off-white, ink: near-black text, accent: saturated orange
   Headings: Fraunces / Body & UI: Inter
   ============================================ */

:root {
  --bg: #F9F6F2;
  --bg-tint: #F1ECE3;
  --ink: #1A1815;
  --ink-soft: #57534A;
  --accent: #FF4F01;
  --accent-ink: #FFF3EC;
  --line: #E4DDCF;

  --font-heading: "Fraunces", Georgia, serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 14px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  transition: background 0.15s ease, border-color 0.15s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--large { padding: 16px 32px; font-size: 17px; }
.btn--small { padding: 10px 20px; font-size: 15px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 246, 242, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
}

.wordmark__logo {
  height: 32px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.site-nav a:not(.btn) { color: var(--ink-soft); }
.site-nav a:not(.btn):hover { color: var(--ink); }

/* ---------- Hero ---------- */

.hero {
  min-height: calc(100vh - 163px);
  padding: 64px 0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.hero__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  line-height: 56px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.hero__subhead {
  font-family: var(--font-body);
  font-size: 20px;
  max-width: 42ch;
  color: var(--ink-soft);
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 28px 0 14px;
}

.hero__microcopy {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink-soft);
}

/* ---------- Walkthrough (interactive product demo) ---------- */

.walkthrough {
  padding: 0 0 64px;

  --w-bg: var(--bg);
  --w-text: var(--ink-soft);
  --w-text-h: var(--ink);
  --w-text-faint: #C4BEB0;
  --w-card: var(--bg-tint);
  --w-card-alt: #F3EEE4;
  --w-border: var(--line);
  --w-accent: var(--accent);
  --w-accent-bg: var(--accent-ink);
  --w-mono: "JetBrains Mono", ui-monospace, monospace;
}

.walkthrough h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto 32px;
}

.walkthrough-shell {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--w-bg);
}

/* ---- Rail ---- */
.w-rail {
  width: 220px;
  flex: 0 0 220px;
  padding: 20px 14px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.w-rail-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--w-text); font-weight: 600; padding: 0 6px; }
.w-rail-nav { display: flex; flex-direction: column; gap: 2px; }
.w-rail-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 8px; border-radius: 8px; cursor: pointer;
  border: none; background: none; text-align: left; width: 100%;
  font-family: var(--font-body); font-size: 14px; color: var(--w-text-h); opacity: 0.68;
  transition: background 0.12s, opacity 0.12s;
}
.w-rail-item:hover { background: rgba(0, 0, 0, 0.04); opacity: 0.9; }
.w-rail-item.active { background: var(--w-card-alt); opacity: 1; font-weight: 600; }
.w-rail-item .w-num { font-family: var(--w-mono); font-size: 11px; opacity: 0.5; width: 18px; flex: 0 0 auto; }
.w-rail-item .w-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--w-accent); flex: 0 0 auto; opacity: 0; transition: opacity 0.12s; }
.w-rail-item.active .w-dot { opacity: 1; }

/* ---- Stage ---- */
.w-stage { flex: 1; min-width: 0; padding: 28px 32px; display: flex; flex-direction: column; gap: 20px; }
.w-stage-title { font-size: 24px; margin: 0 0 6px; }
.w-stage-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.55; color: var(--w-text); max-width: 46ch; margin: 0; }

/* ---- Browser frame ---- */
.w-frame { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--w-bg); }
.w-frame-bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--w-card-alt); border-bottom: 1px solid var(--line); }
.w-frame-dots { display: flex; gap: 5px; }
.w-frame-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.w-frame-url { flex: 1; text-align: center; font-family: var(--w-mono); font-size: 11px; color: var(--w-text); background: var(--w-bg); border: 1px solid var(--line); border-radius: 6px; padding: 4px 10px; }
.w-frame-view { position: relative; min-height: 440px; background: var(--w-bg); color: var(--w-text-h); font-family: var(--font-body); overflow: hidden; }
.w-frame-view button, .w-frame-view input, .w-frame-view select, .w-frame-view textarea, .w-frame-view a { pointer-events: none; cursor: default; }
.w-screen { display: none; animation: walkthroughFade 0.2s ease; }
.w-screen.active { display: block; }
@keyframes walkthroughFade { from { opacity: 0; } to { opacity: 1; } }

/* ---- App chrome recreation ---- */
.w-app-topbar { display: flex; align-items: center; justify-content: space-between; padding: 11px 18px; border-bottom: 1px solid var(--line); background: var(--w-bg); }
.w-app-topbar-left { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--w-text-h); }
.w-mark {
  width: 16px; height: 16px; display: inline-block; background: var(--w-accent);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5c.3 0 .6.13.8.36 1.8 2.15 6.7 8.35 6.7 12.3 0 4.1-3.36 7.34-7.5 7.34S4.5 19.26 4.5 15.16c0-3.95 4.9-10.15 6.7-12.3.2-.23.5-.36.8-.36z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2.5c.3 0 .6.13.8.36 1.8 2.15 6.7 8.35 6.7 12.3 0 4.1-3.36 7.34-7.5 7.34S4.5 19.26 4.5 15.16c0-3.95 4.9-10.15 6.7-12.3.2-.23.5-.36.8-.36z"/></svg>') center / contain no-repeat;
}
.w-app-topbar-right { display: flex; align-items: center; gap: 10px; }
.w-write-btn { display: flex; align-items: center; gap: 6px; background: var(--w-card-alt); color: var(--w-text-h); border: 1px solid var(--line); border-radius: 7px; padding: 7px 12px; font-size: 13px; font-weight: 600; font-family: var(--font-body); }
.w-pill-btn { width: 28px; height: 28px; border-radius: 50%; background: var(--w-card); border: 1px solid var(--line); font-size: 12px; display: flex; align-items: center; justify-content: center; color: var(--w-text); }

.w-app-body { padding: 30px 26px; max-width: 560px; margin: 0 auto; }

/* Dashboard */
.w-d-greet { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--w-text-h); }
.w-d-date { font-size: 13px; color: var(--w-text); margin-top: 2px; }
.w-d-hero { background: var(--w-card); border-radius: 12px; padding: 18px; text-align: center; margin-top: 18px; }
.w-d-hero-label { font-size: 12px; font-weight: 500; color: var(--w-text); }
.w-d-hero-value { font-family: var(--font-heading); font-size: 32px; font-weight: 600; color: var(--w-accent); line-height: 1.1; margin-top: 3px; }
.w-d-hero-sub { font-size: 12px; color: var(--w-text); margin-top: 6px; }
.w-d-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.w-d-stat { background: var(--w-card); border-radius: 12px; padding: 14px; text-align: center; }
.w-d-stat-label { font-size: 11px; color: var(--w-text); margin-bottom: 3px; }
.w-d-stat-value { font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--w-text-h); }
.w-btn-primary { width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--w-card-alt); color: var(--w-text-h); font-size: 14px; font-weight: 600; margin-top: 18px; font-family: var(--font-body); }

.w-page-heading { font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin: 0 0 18px; color: var(--w-text-h); }
.w-sub { font-size: 13px; font-weight: 600; margin: 0 0 10px; color: var(--w-text-h); }

/* Write / editor */
.w-ed-title { font-family: var(--font-heading); font-size: 22px; font-weight: 600; border: none; background: none; width: 100%; color: var(--w-text-h); outline: none; padding: 0; }
.w-ed-insert-group { display: flex; align-items: center; gap: 5px; }
.w-ed-insert-group span.w-ed-insert-btn { width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--w-text); cursor: pointer; }
.w-ed-insert-divider { width: 1px; height: 16px; background: var(--line); margin: 0 4px; flex: 0 0 auto; }
.w-ed-body { font-family: var(--font-body); font-size: 15px; line-height: 1.75; color: var(--w-text-h); margin-top: 18px; }
.w-ed-body p { margin: 0; }
.w-ed-caret { display: inline-block; width: 2px; height: 1em; background: var(--w-accent); vertical-align: middle; animation: walkthroughBlink 1s step-end infinite; }
@keyframes walkthroughBlink { 50% { opacity: 0; } }
.w-ed-selected { background: var(--w-accent-bg); border-radius: 2px; }

.w-bubble-menu {
  position: absolute; top: -46px; left: 22px;
  display: flex; align-items: center; gap: 2px;
  background: var(--w-text-h); border-radius: 9px; padding: 5px;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.4);
}
.w-bubble-menu::after { content: ""; position: absolute; bottom: -5px; left: 18px; width: 9px; height: 9px; background: var(--w-text-h); transform: rotate(45deg); border-radius: 1.5px; }
.w-bubble-menu button { border: none; background: none; color: var(--w-bg); font-family: var(--font-body); font-size: 12px; font-weight: 600; width: 26px; height: 26px; border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.w-bubble-menu button:hover { background: rgba(255, 255, 255, 0.14); }
.w-bubble-sep { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.2); margin: 0 2px; }

/* Publish dialog */
.w-og-image-row { display: flex; align-items: center; gap: 8px; }
.w-og-image-row input { flex: 1; min-width: 0; }
.w-og-upload-btn { flex: 0 0 auto; font-family: var(--font-body); font-size: 13px; font-weight: 600; padding: 8px 11px; border-radius: 7px; border: 1px solid var(--line); background: var(--w-card-alt); color: var(--w-text-h); cursor: pointer; white-space: nowrap; }
.w-dialog-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.35); display: flex; align-items: center; justify-content: center; padding: 32px; }
.w-dialog { background: var(--w-bg); border-radius: 12px; padding: 24px; width: 100%; max-width: 340px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); }
.w-dialog h4 { font-family: var(--font-heading); font-size: 18px; margin: 0 0 16px; color: var(--w-text-h); }
.w-field { display: flex; flex-direction: column; gap: 5px; font-family: var(--font-body); font-size: 12px; color: var(--w-text); margin-bottom: 13px; }
.w-field input, .w-field textarea { font-family: var(--font-body); font-size: 13px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 7px; background: var(--w-card-alt); color: var(--w-text-h); }
.w-dialog-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px; }
.w-dialog-cancel { background: none; border: none; color: var(--w-text); font-size: 13px; font-family: var(--font-body); cursor: pointer; }
.w-dialog-confirm { background: var(--w-card-alt); color: var(--w-text-h); border: 1px solid var(--line); border-radius: 7px; padding: 8px 18px; font-size: 13px; font-weight: 600; font-family: var(--font-body); }

/* Subscribers */
.w-sub-table { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.w-sub-table-head { display: grid; grid-template-columns: 1fr 130px; padding: 9px 14px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--w-text); background: var(--w-card-alt); }
.w-sub-table-row { display: grid; grid-template-columns: 1fr 130px; padding: 10px 14px; font-size: 13px; border-top: 1px solid var(--line); }
.w-sub-email { color: var(--w-text-h); }
.w-sub-date { color: var(--w-text); font-variant-numeric: tabular-nums; }

/* Customize */
.w-swatch-row { display: flex; gap: 8px; flex-wrap: wrap; }
.w-swatch { width: 28px; height: 28px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; }
.w-swatch.selected { border-color: var(--w-text-h); box-shadow: 0 0 0 2px var(--w-bg); }
.w-layout-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 5px; }
.w-layout-card { flex: 0 0 auto; width: 80px; text-align: center; font-size: 11px; color: var(--w-text); }
.w-layout-thumb { width: 80px; height: 58px; border-radius: 8px; background: var(--w-card); border: 1.5px solid var(--line); margin-bottom: 6px; position: relative; overflow: hidden; }
.w-layout-card.selected .w-layout-thumb { border-color: var(--w-accent); }
.w-layout-thumb i { position: absolute; background: var(--w-text-faint); border-radius: 1px; }
.w-bg-group-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--w-text); display: block; margin: 8px 0 6px; }

/* Profile */
.w-avatar-row { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.w-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--w-accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-family: var(--font-heading); }
.w-change-link { font-size: 13px; color: var(--w-accent); font-weight: 600; }
.w-subdomain-pill { display: flex; align-items: center; gap: 5px; background: var(--w-card-alt); border: 1px solid var(--line); border-radius: 7px; padding: 7px 10px; font-size: 13px; }
.w-subdomain-pill input { border: none; background: none; font-family: var(--font-body); font-size: 13px; color: var(--w-text-h); width: 96px; }
.w-subdomain-pill span { color: var(--w-text); }
.w-domain-cta { display: flex; align-items: center; justify-content: space-between; background: var(--w-card); border-radius: 10px; padding: 14px 16px; gap: 16px; }
.w-domain-cta-title { font-weight: 600; font-size: 14px; color: var(--w-text-h); }
.w-domain-cta-sub { font-size: 12px; color: var(--w-text); margin-top: 2px; }
.w-crown-btn { display: flex; align-items: center; gap: 5px; background: var(--w-text-h); color: var(--w-bg); border: none; border-radius: 7px; padding: 8px 13px; font-size: 12px; font-weight: 600; white-space: nowrap; cursor: pointer; }
.w-social-row { display: flex; gap: 7px; align-items: center; margin-bottom: 7px; }
.w-social-row select { font-family: var(--font-body); font-size: 12px; padding: 6px; border-radius: 6px; border: 1px solid var(--line); background: var(--w-card-alt); color: var(--w-text-h); }
.w-social-row input { flex: 1; font-family: var(--font-body); font-size: 13px; padding: 6px 8px; border-radius: 6px; border: 1px solid var(--line); background: var(--w-card-alt); color: var(--w-text-h); }

/* Analytics */
.w-chart-wrap { background: var(--w-card); border-radius: 12px; padding: 16px; }
.w-chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 100px; }
.w-chart-bars i { flex: 1; background: var(--w-accent); border-radius: 3px 3px 0 0; opacity: 0.85; }
.w-ach-grid { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.w-ach-tile { flex: 1; min-width: 76px; display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 14px 8px; border: none; border-radius: 10px; background: var(--w-card); color: var(--w-text-h); font-size: 11px; text-align: center; }
.w-ach-tile:not(.unlocked) { opacity: 0.4; }
.w-ach-tile.unlocked .w-ach-icon { color: var(--w-accent); }
.w-ach-icon { font-size: 17px; color: var(--w-text); }

@media (max-width: 860px) {
  .walkthrough-shell { flex-direction: column; }
  .w-rail {
    width: auto;
    flex: 0 0 auto;
    padding: 14px 14px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
    gap: 10px;
  }
  .w-rail-eyebrow { padding: 0 2px; }
  .w-rail-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-bottom: 14px;
  }
  .w-rail-item {
    width: 100%;
    justify-content: center;
    padding: 8px 6px;
    border: 1px solid var(--line);
    font-size: 13px;
  }
  .w-rail-item .w-num { display: none; }
  .w-rail-item.active { border-color: var(--w-accent); }
  .w-stage { padding: 20px; }
}

/* ---------- How it works ---------- */

.how-it-works { padding: 72px 0; }
.how-it-works h2, .comparison h2, .faq h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto 48px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step { text-align: center; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 16px; margin: 0 auto; max-width: 26ch; }

/* ---------- Comparison ---------- */

.comparison { padding: 72px 0; }

.comparison__grid {
  display: grid;
  max-width: 720px;
  margin: 0 auto;
}


.comparison__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 20px 4px;
  border-top: 1px solid var(--line);
}
.comparison__row:last-child { border-bottom: 1px solid var(--line); }

.comparison__row h4 {
  font-family: var(--font-display);
  font-size: 15px;
  margin: 0;
}

.comparison__row p { margin: 0; font-size: 16px; }

.comparison__row--highlight { border-left: 2px solid var(--accent); margin-left: -14px; padding-left: 16px; }
.comparison__row--highlight h4 { color: var(--accent); }
.comparison__row--highlight p { color: var(--ink); }

.comparison__link {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}
.comparison__link:hover { text-decoration: underline; }

/* ---------- Pricing ---------- */

.pricing { padding: 72px 0; }
.pricing h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto 48px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px 32px;
  text-align: center;
}

.pricing-card h3 {
  font-size: 21px;
  margin-bottom: 16px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  margin: 0;
  color: var(--ink);
}

.pricing-card__period {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 4px 0 24px;
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  text-align: left;
}
.pricing-card__features li {
  font-size: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.pricing-card__features li:first-child { border-top: none; }

.pricing-card .btn { width: 100%; }
.pricing-card .btn--ghost { border-color: var(--ink); }

.pricing-card--highlight { border: 1.5px solid var(--accent); }

/* ---------- Social proof ---------- */

.social-proof { padding: 64px 0; }
.social-proof blockquote {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}
.social-proof p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
}
.social-proof cite {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- FAQ ---------- */

.faq { padding: 72px 0; }
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq__item summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 800;
}
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p { margin-top: 12px; font-size: 16px; }

/* ---------- Footer CTA ---------- */

.footer-cta {
  padding: 88px 0;
  background: var(--ink);
  text-align: center;
}
.footer-cta h2 {
  color: var(--bg);
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 24px;
}
.footer-cta__note {
  color: #A8A199;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 16px;
}

/* ---------- Legal pages ---------- */

.legal { padding: 64px 0 96px; }
.legal__inner { max-width: 680px; margin: 0 auto; }
.legal h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 4px; }
.legal__updated { font-family: var(--font-body); font-size: 14px; color: var(--ink-soft); margin-bottom: 40px; }
.legal__body h2 { font-size: 22px; margin-top: 40px; }
.legal__body h3 { font-size: 18px; margin-top: 24px; }
.legal__body p, .legal__body li { font-size: 16px; line-height: 1.7; }
.legal__body ul, .legal__body ol { margin: 0 0 1em; padding-left: 22px; }
.legal__body a { color: var(--accent); text-decoration: underline; }
.legal__body hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.legal__body strong { color: var(--ink); }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); padding: 32px 0 48px; }
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(249, 246, 242, 0.12);
  padding-top: 28px;
}
.site-footer__links {
  display: flex;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 14px;
  color: #A8A199;
}
.site-footer__links a:hover { color: var(--bg); }
.site-footer__copy {
  width: 100%;
  font-family: var(--font-display);
  font-size: 13px;
  color: #706A61;
  margin: 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .comparison__row { grid-template-columns: 1fr; gap: 6px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .site-nav a:not(.btn) { display: none; }
}

/* ---------- Accessibility ---------- */

a:focus-visible, button:focus-visible, .btn:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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