/* ClaudeDisguise — stealth dark theme. Accent recolored 2026-07-20 to the
   logo/Google-Docs blue #037AFE (sampled from assets/ClaudeDisguise Logo.png). */

:root {
  --bg: #0C0E12;
  --surface: #14171D;
  --surface-2: #1A1E26;
  --border: #232830;
  --text: #E8EAED;
  --muted: #A6ADB8; /* 8.5:1 on --bg; was #9AA0A8, lifted for legibility */
  --accent: #037AFE;
  --accent-dim: rgba(3, 122, 254, 0.14);
  --paper: #FAF7F2; /* the document the extension imitates; used for texture + ghosts */
  --lift: 0 18px 40px rgba(0, 0, 0, 0.45);
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Bricolage Grotesque", var(--font-body);
  --font-mono: ui-monospace, "Cascadia Code", Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ---------- nav ---------- */

.nav {
  border-bottom: 1px solid var(--border);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
}
.wordmark:hover { text-decoration: none; }
.wordmark .mark { color: var(--accent); }
.nav-logo { width: 34px; height: 34px; border-radius: 8px; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a { color: var(--muted); font-size: 0.95rem; white-space: nowrap; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-links a.btn, .nav-links a.btn:hover { color: #FFFFFF; }

@media (max-width: 560px) {
  .nav-links { gap: 14px; }
  .nav-links .hide-sm { display: none; }
  .nav-links .btn { padding: 8px 14px; font-size: 0.88rem; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn:hover { background: #3392FE; text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--muted); }

.btn-danger { color: #FCA5A5; border-color: rgba(239, 68, 68, 0.4); }
.btn-danger:hover { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.6); }

.btn-block { display: block; width: 100%; text-align: center; }

/* Secondary route out of a page (create an account / log in instead). Accent
   outline so it can't be missed, tinted fill so it still loses to the primary. */
.btn-alt { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--accent); }
.btn-alt:hover { background: var(--accent); color: #FFFFFF; }

/* ---------- hero ---------- */

.hero {
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}

.hero .container { position: relative; z-index: 1; }

/* Loud wordmark banner: the product name lives here now, not in the nav. */
.hero-banner { text-align: center; margin-bottom: 56px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 9vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero-title .mark { color: var(--accent); }
.hero-hook {
  color: var(--muted);
  font-size: clamp(1.02rem, 2.4vw, 1.3rem);
  margin-top: 12px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-grid h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); font-weight: 700; margin-bottom: 16px; }

/* Ambient background: two soft glows + ghost chat lines drifting between the
   two skins (cream = Claude, grey = disguise). Decorative only. */
.hero-bg, .auth-bg { position: absolute; inset: 0; pointer-events: none; }

/* Ruled-paper lines, barely there: the artifact the product disguises itself as,
   showing through the dark. Fades out before it reaches the content. */
.hero-bg::before, .auth-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 31px,
    rgba(232, 234, 237, 0.055) 31px 32px
  );
  -webkit-mask-image: radial-gradient(120% 85% at 50% 8%, #000 15%, transparent 72%);
  mask-image: radial-gradient(120% 85% at 50% 8%, #000 15%, transparent 72%);
}

.hero-bg .glow, .auth-bg .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.13;
  animation: glow-drift 26s ease-in-out infinite alternate;
}
.glow-blue { width: 440px; height: 440px; background: var(--accent); top: -160px; right: -100px; }
.glow-cream {
  width: 360px; height: 360px; background: #FAF7F2;
  bottom: -180px; left: -120px; opacity: 0.07;
  animation-duration: 32s; animation-delay: -10s;
}

.hero-bg .ghost {
  position: absolute;
  height: 12px;
  border-radius: 6px;
  opacity: 0;
  animation: ghost-float 19s linear infinite;
}
.ghost.claude { background: rgba(250, 247, 242, 0.09); }
.ghost.plain { background: rgba(154, 160, 168, 0.11); }
.ghost:nth-child(3) { width: 150px; left: 6%;  top: 76%; animation-delay: 0s; }
.ghost:nth-child(4) { width: 90px;  left: 16%; top: 88%; animation-delay: -7s; animation-duration: 23s; }
.ghost:nth-child(5) { width: 120px; right: 10%; top: 82%; animation-delay: -13s; animation-duration: 21s; }
.ghost:nth-child(6) { width: 70px;  right: 22%; top: 92%; animation-delay: -4s; animation-duration: 26s; }

@keyframes glow-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50px, 36px, 0); }
}

@keyframes ghost-float {
  0% { transform: translateY(0); opacity: 0; }
  12% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateY(-420px); opacity: 0; }
}

/* Stacked hero on small screens: ghosts collide with real content, hide them. */
@media (max-width: 767px) {
  .hero-bg .ghost { display: none; }
}

.eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.3rem);
  font-weight: 700;
  margin-bottom: 18px;
}

.hero .sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 42ch;
  margin-bottom: 28px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.fine-print { color: var(--muted); font-size: 0.85rem; margin-top: 14px; }

/* ---------- disguise demo (signature element) ---------- */

.demo-wrap { position: relative; }

.demo-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  cursor: pointer;
  user-select: none;
  font-size: 0.9rem;
  color: var(--muted);
}
.demo-toggle input { position: absolute; opacity: 0; }
.switch {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
  flex: none;
}
.switch::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform 0.2s, background 0.2s;
}
.demo-toggle input:checked + .switch { background: var(--accent-dim); border-color: var(--accent); }
.demo-toggle input:checked + .switch::after { transform: translateX(18px); background: var(--accent); }
.demo-toggle input:focus-visible + .switch { outline: 2px solid var(--accent); outline-offset: 2px; }
.demo-toggle .state { color: var(--text); font-weight: 600; min-width: 3ch; }

.demo-window {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(3, 122, 254, 0.08);
  transition: box-shadow 0.35s ease;
}
/* Disguised, the window sheds its blue halo — the whole point is that it stops
   drawing the eye. */
.demo-window.disguised {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(232, 234, 237, 0.1);
}

.demo-caption {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
  margin-top: 14px;
}

.demo-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.dots { display: flex; gap: 6px; flex: none; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: #3A4048; }

.demo-url {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 12px;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Chat body: Claude skin by default, flips to a plain generic look. */
.demo-body {
  padding: 22px 18px;
  background: #FAF7F2;
  font-family: Georgia, "Times New Roman", serif;
  transition: background 0.35s;
  display: grid;
  gap: 14px;
}

.msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
}
.msg.user {
  justify-self: end;
  background: #EFE9DF;
  color: #2D2A26;
  border: 1px solid #E2DACB;
}
.msg.assistant {
  justify-self: start;
  background: #FFFFFF;
  color: #2D2A26;
  border: 1px solid #EAE2D4;
}
.msg .who {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #C15F3C;
}
.msg.user .who { color: #857F76; }

/* Disguised skin: Google Docs, per assets/Interface Exemplar.png. */
.docs-bar {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #FFFFFF;
  border-bottom: 1px solid #E3E7EA;
  font-family: Arial, Helvetica, sans-serif;
}
.docs-bar img { width: 24px; height: 24px; border-radius: 4px; }
.docs-title { display: block; color: #1F1F1F; font-size: 0.82rem; font-weight: 600; line-height: 1.25; }
.docs-menu { display: block; color: #444746; font-size: 0.64rem; letter-spacing: 0.03em; }
.docs-share {
  margin-left: auto;
  background: #D3E3FD;
  color: #001D35;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 5px 14px;
}

.demo-window.disguised .docs-bar { display: flex; }
.demo-window.disguised .demo-body {
  background: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  gap: 12px;
  padding: 20px 26px;
}
.demo-window.disguised .msg {
  max-width: 100%;
  justify-self: stretch;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #FFFFFF;
  color: #1F1F1F;
  font-size: 0.82rem;
}
/* Disguised, the speaker labels go away completely — the real extension leaves
   plain black document text and nothing that reads as a chat. */
.demo-window.disguised .msg .who { display: none; }

/* ---------- sections ---------- */

/* Seam, not a table rule: the hairline brightens toward the middle and fades out
   at both edges. border-image keeps it on border-top, so pages that switch the
   border off inline (pricing.php) still get no seam. */
.section, .cta-banner {
  border-top: 1px solid transparent;
  border-image: linear-gradient(to right,
      transparent, var(--border) 18%, rgba(3, 122, 254, 0.5) 50%, var(--border) 82%, transparent) 1;
}

.section { padding: 72px 0; }

.section h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 8px;
}

/* Small accent tick above each section heading — marks where a section starts
   without spending a whole decorative element on it. */
.section > .container > h2::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  margin-bottom: 18px;
}
.section .section-sub { color: var(--muted); margin-bottom: 36px; max-width: 55ch; }

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Shared card treatment: a faint top-lit gradient so cards read as raised off the
   page, and an accent hairline along the top edge that only lights up on hover. */
.feature, .step, .plan {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--surface) 60%);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature::before, .step::before, .plan::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.feature:hover, .step:hover, .plan:hover {
  transform: translateY(-3px);
  border-color: #333A45;
  box-shadow: var(--lift);
}
.feature:hover::before, .step:hover::before, .plan:hover::before { opacity: 1; }

.feature { padding: 24px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.92rem; }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 20px;
  padding: 3px 10px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- how it works (real sequence, hence the numbering) ---------- */

.steps { display: grid; gap: 16px; }

.step { padding: 24px; } /* surface, border, radius, hover: shared card rule above */

.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}

.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- what's included / good to know ---------- */

.included { display: grid; gap: 32px; }

.included-col h3 { font-size: 1.05rem; margin-bottom: 14px; }

.included ul, .check-list { list-style: none; display: grid; gap: 12px; }
.check-list { padding-left: 0; }
.check-list li { position: relative; padding-left: 34px; color: var(--muted); font-size: 0.95rem; }

.included li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Ticks sit in their own accent chip so a long list scans as a column of marks
   rather than a wall of grey text. */
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.note-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--muted);
}

/* ---------- scroll reveals (classes applied by main.js) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.shown { opacity: 1; transform: none; }

/* ---------- "Interested?" CTA banner ---------- */

.cta-banner { text-align: center; padding: 92px 0; } /* seam comes from the shared .section/.cta-banner rule */
.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-banner p { color: var(--muted); margin-bottom: 26px; }

/* ---------- pricing ---------- */

.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 720px;
}

.plan { /* surface, border, radius, hover: shared card rule above */
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plan.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-dim), 0 20px 50px rgba(3, 122, 254, 0.13);
}
.plan.featured::before { opacity: 1; } /* the recommended plan wears its hairline always */
.plan h3 { font-size: 1.05rem; }
.plan .price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.plan .price small { font-size: 0.9rem; color: var(--muted); font-weight: 400; font-family: var(--font-body); }
.plan .plan-note { color: var(--muted); font-size: 0.9rem; flex: 1; margin-bottom: 14px; }

/* ---------- auth / narrow cards ---------- */

.page-narrow {
  max-width: 420px;
  margin: 64px auto;
  padding: 0 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.card h1 { font-size: 1.5rem; margin-bottom: 6px; }
.card .card-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font-body);
  padding: 10px 12px;
}
.field input:focus { outline: 2px solid var(--accent); outline-offset: 0; border-color: transparent; }
.field .hint { color: var(--muted); font-size: 0.8rem; margin-top: 5px; }

.form-error {
  display: none;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #FCA5A5;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.form-success {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #6EE7B7;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.card-foot { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 18px; }

/* The other door out of this page. It gets a rule above it and a full-width
   outlined button because a grey sentence under a form is the single thing
   people miss on a login screen. */
.alt-action {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.alt-action p { color: var(--muted); font-size: 0.9rem; margin-bottom: 12px; }

/* Numbered sibling of .check-list, for "what happens next" instructions. */
.next-steps { list-style: none; counter-reset: step; display: grid; gap: 12px; margin-top: 18px; }
.next-steps li {
  position: relative;
  counter-increment: step;
  padding-left: 34px;
  color: var(--muted);
  font-size: 0.92rem;
}
.next-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

/* ---------- auth pages (login / signup) ---------- */

/* Same ambient treatment as the hero, so signing in reads as part of the site
   rather than a form floating on a black page. */
.auth-wrap { position: relative; overflow: hidden; padding: 48px 0 72px; }

.auth-grid {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.auth-grid .card { box-shadow: var(--lift); }

.auth-aside h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); font-weight: 700; margin-bottom: 12px; }
.auth-aside-sub { color: var(--muted); font-size: 0.95rem; max-width: 44ch; margin-bottom: 22px; }
.auth-aside .check-list { margin-top: 22px; }
.auth-aside .check-list li { font-size: 0.9rem; }

.auth-preview .demo-body { padding: 16px 20px; }
.auth-preview .msg { font-size: 0.78rem; }

@media (min-width: 880px) {
  .auth-grid { grid-template-columns: 420px 1fr; gap: 52px; }
}

/* ---------- dashboard ---------- */

.page-mid { max-width: 640px; margin: 48px auto; padding: 0 20px; display: grid; gap: 20px; }

.status-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 12px;
}
.status-pill.trialing, .status-pill.active { color: var(--accent); background: var(--accent-dim); }
.status-pill.expired { color: #FCA5A5; background: rgba(239, 68, 68, 0.1); }
.status-pill.canceled { color: var(--muted); background: rgba(154, 160, 168, 0.12); }
.form-error:not(:empty) { display: block; }

.key-row { display: flex; gap: 10px; margin-top: 10px; }
.key-row input {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  padding: 10px 12px;
  min-width: 0;
}

.meta-line { color: var(--muted); font-size: 0.9rem; }
.meta-line strong { color: var(--text); }

/* ---------- prose (privacy) ---------- */

.prose { max-width: 680px; margin: 48px auto 64px; padding: 0 20px; }
.prose h1 { font-size: 1.9rem; margin-bottom: 8px; }
.prose h2 { font-size: 1.15rem; margin: 28px 0 8px; }
.prose p, .prose li { color: var(--muted); font-size: 0.95rem; }
.prose ul { padding-left: 20px; }
.prose .updated { font-size: 0.85rem; }

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  margin-top: 56px;
}
.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer a { color: var(--muted); }
.footer a:hover { color: var(--text); }
.footer-links { display: flex; gap: 20px; }

/* ---------- desktop ---------- */

@media (min-width: 768px) {
  .hero { padding: 88px 0 72px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .features { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .hero-bg .ghost { display: none; }
  /* main.js reveals everything immediately here, but never trust JS for content
     visibility — this keeps the page readable even if the script fails. */
  .reveal { opacity: 1; transform: none; }
}

/* ---------- dashboard feature guide ---------- */

.guide-main {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
}
.guide-main h2 { font-size: 1.15rem; margin: 6px 0 8px; }
.guide-main p { color: var(--muted); font-size: 0.95rem; }

/* ponytail: native <details>, no JS accordion. */
.guide details {
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.guide details:last-child { border-bottom: 1px solid var(--border); }
.guide summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.guide summary::-webkit-details-marker { display: none; }
.guide summary::after { content: "+"; color: var(--muted); font-weight: 400; }
.guide details[open] summary::after { content: "–"; }
.guide details p { color: var(--muted); font-size: 0.92rem; margin-top: 10px; }

/* ---------- features page ---------- */

.fx-list { display: grid; gap: 22px; }

.fx {
  background: linear-gradient(180deg, var(--surface-2), var(--surface) 60%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: grid;
  gap: 20px;
  align-items: center;
}
.fx h3 { font-size: 1.15rem; margin-bottom: 10px; }
.fx p { color: var(--muted); font-size: 0.95rem; }
.fx p + p { margin-top: 10px; }
.fx .fx-note { font-size: 0.88rem; }
.fx-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Screenshots are light UI on a dark page — the frame keeps them from bleeding
   into the card, and white fill covers any transparent edge. */
.fx-shot { margin: 0; }
.fx-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #FFFFFF;
}
.fx-shot figcaption { color: var(--muted); font-size: 0.78rem; margin-top: 10px; text-align: center; }

/* Grey chip instead of the accent tick: this list is what the product does NOT do. */
.check-list.note-list li::before { background: rgba(154, 160, 168, 0.12); color: var(--muted); }

@media (min-width: 880px) {
  .fx { grid-template-columns: 0.9fr 1.1fr; gap: 36px; padding: 28px; }
  /* Alternate which side the shot sits on so the column doesn't read as a table. */
  .fx.flip .fx-text { order: 2; }
  .fx-solo { grid-template-columns: 1fr; max-width: 62ch; }
}

kbd {
  font-family: var(--font-mono);
  font-size: 0.82em;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--text);
}
