/* ===========================================================================
   Almanac — marketing site design system
   Dark, sleek, orange-accented (the Almanac identity). Shared by every page.
   =========================================================================== */
:root {
  --bg:        #080b12;
  --bg-2:      #0b0f18;
  --surface:   #111725;
  --surface-2: #161d2e;
  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.12);
  --text:      #e8eef6;
  --text-dim:  #aeb9c9;
  --text-mut:  #6c7689;
  --accent:    #f97316;
  --accent-2:  #ea6c0a;
  --accent-soft: rgba(249,115,22,0.12);
  --win:       #2fd16b;
  --win-2:     #16a34a;
  --win-soft:  rgba(47,209,107,0.13);
  --radius:    14px;
  --radius-sm: 10px;
  --maxw:      1160px;
  --shadow:    0 20px 60px -20px rgba(0,0,0,0.6);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ambient background glow */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 500px at 70% -10%, rgba(249,115,22,0.10), transparent 60%),
    radial-gradient(700px 500px at 10% 10%, rgba(249,115,22,0.05), transparent 55%);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
  font-family: inherit; cursor: pointer; border: 1px solid transparent;
  transition: transform .12s ease, background .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #2a1400; box-shadow: 0 8px 24px -8px rgba(249,115,22,0.55); }
.btn-primary:hover { background: #fb923c; box-shadow: 0 10px 30px -8px rgba(249,115,22,0.65); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--text-mut); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-block { width: 100%; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,11,18,0.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 17px; letter-spacing: -0.4px; }
.brand-logo { width: 26px; height: 26px; }
.brand span { font-weight: 700; font-size: 15px; letter-spacing: .2em; text-transform: uppercase; color: var(--text); }
.nav-links { display: flex; gap: 4px; margin-left: 14px; }
.nav-links a { padding: 8px 13px; border-radius: 8px; font-size: 14px; color: var(--text-dim); font-weight: 500; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--accent); }
.nav-auth { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; color: var(--text); font-size: 22px; cursor: pointer; }

/* ── Hero ────────────────────────────────────────────────── */
.hero { padding: 96px 0 60px; text-align: center; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; margin-bottom: 26px;
  border: 1px solid var(--border-2); border-radius: 999px; font-size: 12.5px; font-weight: 600;
  color: var(--text-dim); background: var(--surface);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
h1.hero-title { font-size: clamp(34px, 6vw, 60px); line-height: 1.05; letter-spacing: -1.5px; font-weight: 800; }
h1.hero-title .grad { background: linear-gradient(120deg, var(--accent) 10%, #ffb784 90%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { max-width: 640px; margin: 22px auto 34px; font-size: clamp(16px, 2.2vw, 19px); color: var(--text-dim); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--text-mut); }

/* product mockup frame */
.mockup {
  max-width: 980px; margin: 56px auto 0; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-2); background: var(--surface);
  box-shadow: var(--shadow); position: relative;
}
.mockup-bar { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 14px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.mockup-bar i { width: 11px; height: 11px; border-radius: 50%; background: #2c3547; display: block; }
.mockup-body { padding: 26px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mock-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.mock-card .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: .8px; color: var(--text-mut); }
.mock-card .val { font-size: 22px; font-weight: 800; margin-top: 6px; }
.mock-card .val.green { color: var(--win); }
.mock-card .val.red { color: #f06363; }
.mock-wide { grid-column: 1 / -1; height: 150px; background: linear-gradient(180deg, var(--bg-2), var(--surface)); border: 1px solid var(--border); border-radius: 10px; position: relative; overflow: hidden; }
.mock-wide svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── Hero demo slideshow (the app's tabs, auto-cycling) ───── */
.hero-demo .mockup-bar { position: relative; }
.dm-url { position: absolute; left: 50%; transform: translateX(-50%); font-size: 11px; color: var(--text-mut); background: var(--bg-2); border: 1px solid var(--border); border-radius: 6px; padding: 2px 18px; }
.dm-stage { position: relative; display: flex; height: 344px; background: var(--bg-2); overflow: hidden; }
.dm-side { width: 154px; flex-shrink: 0; border-right: 1px solid var(--border); padding: 12px 0; background: rgba(0,0,0,0.16); }
.dm-brand { display: flex; align-items: center; gap: 7px; font-weight: 800; font-size: 12.5px; padding: 2px 14px 14px; }
.dm-leaf { width: 14px; height: 14px; border-radius: 3px; background: var(--accent); display: inline-block; }
.dm-nav { display: flex; align-items: center; gap: 9px; padding: 8px 14px; font-size: 12px; color: var(--text-mut); border-left: 2px solid transparent; transition: color .3s, background .3s; }
.dm-nav .dm-d { width: 13px; height: 13px; border-radius: 3px; border: 1.5px solid currentColor; opacity: .55; }
.dm-nav.active { color: var(--accent); background: var(--accent-soft); border-left-color: var(--accent); font-weight: 600; }
.dm-main { position: relative; flex: 1; min-width: 0; }
.dm-slide { position: absolute; inset: 0; padding: 18px 20px; opacity: 0; transition: opacity .5s ease; pointer-events: none; }
.dm-slide.active { opacity: 1; }
.dm-h { font-size: 15px; font-weight: 700; margin-bottom: 14px; letter-spacing: -.2px; }
.dm-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.dm-card { background: var(--surface); border: 1px solid var(--border); border-radius: 9px; padding: 11px 12px; }
.dm-lbl { font-size: 9px; text-transform: uppercase; letter-spacing: .6px; color: var(--text-mut); }
.dm-val { font-size: 18px; font-weight: 800; margin-top: 4px; letter-spacing: -.5px; }
.dm-val.green { color: var(--win); }
.dm-chart { background: linear-gradient(180deg, var(--bg-2), var(--surface)); border: 1px solid var(--border); border-radius: 9px; height: 128px; overflow: hidden; }
.dm-chart svg { width: 100%; height: 100%; display: block; }
.dm-table { font-size: 12px; }
.dm-tr { display: grid; grid-template-columns: 64px 52px 1fr 64px 70px; gap: 8px; padding: 9px 8px; border-bottom: 1px solid var(--border); align-items: center; }
.dm-tr.dm-th { color: var(--text-mut); font-size: 10px; text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid var(--border-2); }
.dm-tr .r { text-align: right; }
.dm-tr .green { color: var(--win); font-weight: 600; }
.dm-tr .red { color: #f06363; font-weight: 600; }
.dm-pill { font-size: 10px; padding: 1px 8px; border-radius: 999px; }
.dm-pill.win { color: var(--win); background: var(--win-soft); }
.dm-pill.loss { color: #f06363; background: rgba(240,99,99,.13); }
.dm-pill.be { color: var(--text-dim); background: rgba(255,255,255,.06); }
.dm-accts { display: grid; gap: 12px; }
.dm-acct { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.dm-acct-top { display: flex; justify-content: space-between; align-items: center; }
.dm-acct-name { font-weight: 700; font-size: 13px; }
.dm-acct-bal { font-size: 19px; font-weight: 800; letter-spacing: -.5px; margin: 6px 0 10px; }
.dm-acct-bal.green { color: var(--win); }
.dm-badge { font-size: 9px; text-transform: uppercase; letter-spacing: .5px; padding: 2px 8px; border-radius: 999px; }
.dm-badge.funded { color: var(--win); background: var(--win-soft); }
.dm-badge.eval { color: #d8b34a; background: rgba(216,179,74,.13); }
.dm-track { height: 6px; border-radius: 6px; background: rgba(255,255,255,.07); overflow: hidden; display: block; }
.dm-fill { display: block; height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.dm-meta { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-mut); margin-top: 6px; }
.dm-bars { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.dm-bar { display: grid; grid-template-columns: 150px 1fr 38px; gap: 10px; align-items: center; font-size: 12px; }
.dm-bn { color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dm-bv { text-align: right; font-weight: 700; color: var(--accent); }
.dm-cursor { position: absolute; top: 0; left: 0; width: 22px; height: 22px; pointer-events: none; z-index: 6; transition: left .8s cubic-bezier(.45,.05,.2,1), top .8s cubic-bezier(.45,.05,.2,1); filter: drop-shadow(0 2px 3px rgba(0,0,0,.6)); }
.dm-cursor svg { display: block; }
.dm-ring { position: absolute; top: -7px; left: -7px; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--accent); opacity: 0; transform: scale(.3); }
.dm-cursor.click .dm-ring { animation: dmRing .55s ease-out; }
@keyframes dmRing { 0% { opacity: .65; transform: scale(.3); } 100% { opacity: 0; transform: scale(1.15); } }
.dm-dots { display: flex; gap: 7px; justify-content: center; padding: 12px 0 2px; }
.dm-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border-2); cursor: pointer; transition: background .2s, width .2s; }
.dm-dot.active { background: var(--accent); width: 18px; border-radius: 4px; }
@media (max-width: 600px) {
  .dm-side { display: none; }
  .dm-cursor { display: none; }
  .dm-stage { height: 300px; }
  .dm-cards { grid-template-columns: repeat(2, 1fr); }
  .dm-bar { grid-template-columns: 104px 1fr 34px; }
  .dm-tr { grid-template-columns: 50px 1fr 58px 60px; }
  .dm-tr span:nth-child(3) { display: none; }
}

/* ── Sections ────────────────────────────────────────────── */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-tag { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.section-head h2 { font-size: clamp(26px, 4vw, 38px); letter-spacing: -1px; margin: 12px 0 14px; line-height: 1.1; }
.section-head p { color: var(--text-dim); font-size: 17px; }
.page-head { padding: 80px 0 20px; text-align: center; }
.page-head h1 { font-size: clamp(30px, 5vw, 46px); letter-spacing: -1.2px; }
.page-head p { color: var(--text-dim); font-size: 18px; max-width: 620px; margin: 16px auto 0; }

/* feature grid */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; transition: border-color .15s, transform .15s, background .15s;
}
.card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.card .ic {
  width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 16px;
}
.card .ic svg { width: 22px; height: 22px; }
.card h3 { font-size: 18px; letter-spacing: -0.3px; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 14.5px; }

/* ── Pricing ─────────────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); gap: 20px; align-items: stretch; justify-content: center; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 24px 60px -24px rgba(249,115,22,0.4); position: relative; }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #2a1400; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .5px; }
.price-name { font-size: 15px; font-weight: 700; color: var(--text-dim); }
.price-amt { font-size: 44px; font-weight: 800; letter-spacing: -1.5px; margin: 10px 0 2px; }
.price-amt small { font-size: 15px; font-weight: 500; color: var(--text-mut); letter-spacing: 0; }
.price-desc { color: var(--text-mut); font-size: 14px; min-height: 40px; }
.price-feats { list-style: none; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-dim); }
.price-feats li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--text); font-family: inherit; font-size: 16px; font-weight: 600; padding: 20px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .chev { transition: transform .2s; color: var(--accent); flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--text-dim); font-size: 15px; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a div { padding: 0 22px 22px; }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band { text-align: center; }
.cta-inner { background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%); border: 1px solid var(--border-2); border-radius: 20px; padding: 56px 30px; position: relative; overflow: hidden; }
.cta-inner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(500px 240px at 50% 0%, rgba(249,115,22,0.14), transparent 70%); pointer-events: none; }
.cta-inner h2 { font-size: clamp(26px, 4vw, 36px); letter-spacing: -1px; }
.cta-inner p { color: var(--text-dim); margin: 12px auto 26px; max-width: 480px; }

/* ── Auth pages ──────────────────────────────────────────── */
.auth-wrap { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; padding: 48px 24px; }
.auth-card { width: 100%; max-width: 420px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 38px 34px; box-shadow: var(--shadow); }
.auth-card h1 { font-size: 26px; letter-spacing: -0.6px; text-align: center; }
.auth-card .sub { text-align: center; color: var(--text-dim); font-size: 14.5px; margin: 8px 0 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dim); margin-bottom: 7px; }
.field input { width: 100%; background: var(--bg-2); border: 1px solid var(--border-2); color: var(--text); padding: 12px 14px; border-radius: 10px; font-size: 14px; font-family: inherit; transition: border-color .15s, box-shadow .15s; }
.field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.auth-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; margin: 4px 0 22px; }
.auth-row a { color: var(--accent); font-weight: 600; }
.auth-alt { text-align: center; margin-top: 22px; font-size: 14px; color: var(--text-mut); }
.auth-alt a { color: var(--accent); font-weight: 600; }
.divider { display: flex; align-items: center; gap: 14px; color: var(--text-mut); font-size: 12px; margin: 22px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── About / generic content ─────────────────────────────── */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: var(--text-dim); font-size: 16.5px; margin-bottom: 18px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 48px 0; }
.stat { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.stat .n { font-size: 34px; font-weight: 800; color: var(--accent); letter-spacing: -1px; }
.stat .l { color: var(--text-dim); font-size: 14px; margin-top: 4px; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 940px; margin: 0 auto; align-items: start; }
.contact-info h3 { font-size: 20px; margin-bottom: 8px; }
.contact-info p { color: var(--text-dim); margin-bottom: 24px; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-method .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method .ic svg { width: 19px; height: 19px; }
.contact-method b { display: block; font-size: 14px; }
.contact-method span { color: var(--text-dim); font-size: 14px; }
.field textarea { width: 100%; background: var(--bg-2); border: 1px solid var(--border-2); color: var(--text); padding: 12px 14px; border-radius: 10px; font-size: 14px; font-family: inherit; resize: vertical; min-height: 130px; }
.field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

/* ── Footer ──────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); margin-top: 40px; padding: 56px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--text-mut); font-size: 14px; margin-top: 14px; max-width: 260px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .8px; color: var(--text-mut); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 14px; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { max-width: var(--maxw); margin: 40px auto 0; padding: 22px 24px 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--text-mut); font-size: 13px; }

/* ── FAQ categories ──────────────────────────────────────── */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-catnav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 44px; }
.faq-catnav a { font-size: 13px; font-weight: 600; color: var(--text-dim); background: var(--surface); border: 1px solid var(--border); padding: 7px 14px; border-radius: 999px; transition: color .15s, border-color .15s; }
.faq-catnav a:hover { color: var(--accent); border-color: var(--border-2); }
.faq-cat-block { margin-bottom: 42px; scroll-margin-top: 84px; }
.faq-cat { font-size: 19px; letter-spacing: -0.4px; display: flex; align-items: center; gap: 11px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.faq-cat-ic { width: 32px; height: 32px; flex-shrink: 0; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; }
.faq-cat-ic svg { width: 18px; height: 18px; }
.faq-cat-block .faq-list { max-width: none; }

/* ── Guide / instructions ────────────────────────────────── */
.guide-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; max-width: 1000px; margin: 0 auto; }
.guide-toc { position: sticky; top: 84px; align-self: start; }
.guide-toc-inner { display: flex; flex-direction: column; gap: 1px; border-left: 1px solid var(--border); }
.guide-toc-h { font-size: 12px; text-transform: uppercase; letter-spacing: .8px; color: var(--text-mut); padding: 2px 14px 8px; }
.guide-toc a { font-size: 13.5px; color: var(--text-mut); padding: 6px 14px; border-left: 2px solid transparent; margin-left: -1px; transition: color .15s, border-color .15s; }
.guide-toc a:hover { color: var(--text-dim); }
.guide-toc a.active { color: var(--accent); border-left-color: var(--accent); }
.guide-body { min-width: 0; }
.guide-section { scroll-margin-top: 84px; padding-bottom: 38px; margin-bottom: 38px; border-bottom: 1px solid var(--border); }
.guide-section:last-child { border-bottom: 0; margin-bottom: 0; }
.guide-section h2 { font-size: 23px; letter-spacing: -0.5px; margin-bottom: 14px; }
.gs-lead { color: var(--text-dim); font-size: 15.5px; margin-bottom: 14px; }
.gs-sub { color: var(--text); font-weight: 600; font-size: 14.5px; margin: 18px 0 8px; }
.guide-steps, .guide-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.guide-steps { counter-reset: gstep; }
.guide-steps li { position: relative; padding-left: 42px; padding-top: 3px; color: var(--text-dim); font-size: 14.5px; line-height: 1.55; min-height: 30px; }
.guide-steps li::before { counter-increment: gstep; content: counter(gstep); position: absolute; left: 0; top: 0; width: 27px; height: 27px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--border-2); color: var(--accent); font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.guide-list li { position: relative; padding-left: 20px; color: var(--text-dim); font-size: 14.5px; line-height: 1.55; }
.guide-list li::before { content: ''; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.guide-list li b, .guide-steps li b { color: var(--text); font-weight: 600; }
.guide-tip { margin-top: 16px; background: var(--accent-soft); border: 1px solid rgba(249,115,22,0.22); border-radius: var(--radius-sm); padding: 13px 16px; font-size: 14px; color: var(--text-dim); line-height: 1.55; }
.guide-tip::before { content: 'Tip — '; color: var(--accent); font-weight: 700; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-links, .nav-auth { display: none; }
  .nav-toggle { display: block; }
  /* Open menu: expand the bar in-flow and stack links, then auth, full-width — no overlap. */
  body.nav-open .nav { background: var(--bg-2); }
  body.nav-open .nav-inner { flex-wrap: wrap; height: auto; padding-bottom: 16px; }
  body.nav-open .nav-links { display: flex; flex-direction: column; order: 3; flex-basis: 100%; gap: 2px; margin: 8px 0 0; padding-top: 10px; border-top: 1px solid var(--border); }
  body.nav-open .nav-links a { padding: 11px 12px; font-size: 15px; }
  body.nav-open .nav-auth { display: flex; order: 4; flex-basis: 100%; gap: 10px; margin-top: 12px; }
  body.nav-open .nav-auth .btn { flex: 1; justify-content: center; }
  .grid-3, .grid-2, .price-grid, .stat-row, .mockup-body, .contact-grid, .footer-inner { grid-template-columns: 1fr; }
  .mockup-body { grid-template-columns: 1fr 1fr; }
  .footer-inner { gap: 28px; }
  .guide-layout { grid-template-columns: 1fr; gap: 0; }
  .guide-toc { display: none; }
}


/* ===== Real product screenshots: hero shot + interactive tour ===== */
.mockup-shot { width: 100%; height: auto; display: block; }
#tour .tour { max-width: 1000px; margin: 0 auto; }
.tour-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 24px; }
.tour-tab {
  font-family: var(--font); font-size: 14px; font-weight: 600; cursor: pointer;
  padding: 9px 17px; border-radius: 999px; color: var(--text-dim);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  transition: color .15s, background .15s, border-color .15s, box-shadow .15s;
}
.tour-tab:hover { color: var(--text); border-color: var(--border-2); }
.tour-tab.active { color: #fff; background: var(--accent); border-color: var(--accent); box-shadow: 0 8px 22px -6px rgba(249,115,22,0.5); }
.tour-frame { margin: 0 auto; max-width: 1000px; }
.tour-cap { text-align: center; color: var(--text-dim); font-size: 15.5px; line-height: 1.55; max-width: 580px; margin: 22px auto 0; }
@media (max-width: 560px) { .tour-tab { font-size: 13px; padding: 8px 13px; } .tour-cap { font-size: 14px; } }


/* Hero auto-slideshow */
.hero-demo .slideshow { position: relative; aspect-ratio: 1320 / 840; background: var(--bg-2); }
.hero-demo .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out; z-index: 1; }
.hero-demo .slide.active { opacity: 1; z-index: 2; }
.hero-slidenav { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 20px auto 0; }
.hero-slidelabel { font-size: 13px; font-weight: 700; letter-spacing: .3px; color: var(--text-dim); min-width: 76px; text-align: center; }
.hero-dots { display: inline-flex; gap: 7px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(255,255,255,0.18); transition: background .2s, transform .2s; }
.hero-dot:hover { background: rgba(255,255,255,0.45); }
.hero-dot.active { background: var(--accent); transform: scale(1.3); }


/* Hero slideshow arrows */
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 26px; line-height: 1; padding-bottom: 3px; color: #fff; background: rgba(10,12,18,0.55); border: 1px solid rgba(255,255,255,0.16); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: background .15s, transform .15s, border-color .15s; }
.hero-prev { left: 14px; }
.hero-next { right: 14px; }
.hero-arrow:hover { background: rgba(249,115,22,0.92); border-color: var(--accent); transform: translateY(-50%) scale(1.08); }
@media (max-width: 560px) { .hero-arrow { width: 36px; height: 36px; font-size: 22px; } .hero-prev { left: 8px; } .hero-next { right: 8px; } }


/* ── Legal pages (Terms / Privacy) ───────────────────────── */
.prose h2 { font-size: 21px; letter-spacing: -0.4px; margin: 34px 0 12px; color: var(--text); }
.prose ul { list-style: none; padding: 0; margin: 0 0 18px; }
.prose ul li { position: relative; padding-left: 20px; color: var(--text-dim); font-size: 16px; margin-bottom: 9px; line-height: 1.55; }
.prose ul li::before { content: ''; position: absolute; left: 2px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.prose a { color: var(--accent); }
.prose b, .prose ul li b { color: var(--text); font-weight: 600; }
.legal-callout { background: var(--accent-soft); border: 1px solid rgba(249,115,22,0.28); border-radius: var(--radius-sm); padding: 16px 18px; margin: 10px 0 26px; color: var(--text-dim); font-size: 15px; line-height: 1.6; }
.legal-callout b { color: var(--accent); }
.legal-note { color: var(--text-mut); font-size: 14px; font-style: italic; margin-top: 34px; }
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--accent); }
