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

:root {
  --bg:      #0e0b14;
  --bg2:     #13101c;
  --surface: #1c1728;
  --border:  #2e2640;
  --accent:  #9b5de5;
  --accent2: #c77dff;
  --glow:    rgba(155,93,229,0.35);
  --text:    #e8e0f5;
  --muted:   #8b7fa8;
  --nav-bg:  rgba(14,11,20,0.85);
  --green:   #4ade80;
  --red:     #f87171;
}
[data-theme="light"] {
  --bg:      #f5f0ff;
  --bg2:     #ede6ff;
  --surface: #ffffff;
  --border:  #d4c8f0;
  --accent:  #7c3aed;
  --accent2: #9b5de5;
  --glow:    rgba(124,58,237,0.2);
  --text:    #1a1033;
  --muted:   #6b5b8a;
  --nav-bg:  rgba(245,240,255,0.88);
  --green:   #16a34a;
  --red:     #dc2626;
}

html { scroll-behavior: smooth; overflow-y: scroll; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg); color: var(--text);
  min-height: 100vh;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

/* ── GLOBAL LAYOUT ── */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 24px 100px;
}
main.full-width {
  max-width: 1300px;
}

/* Keep hash-targeted headings visible below the fixed top nav */
main :target {
  scroll-margin-top: 96px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 64px;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
.nav-logo span { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--text); letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.9rem; font-weight: 500;
  padding: 0.4rem 0.85rem; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--surface); }
.theme-btn {
  margin-left: 0.75rem; background: var(--surface);
  border: 1px solid var(--border); color: var(--muted);
  width: 36px; height: 36px; border-radius: 8px;
  cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.theme-btn:hover { color: var(--accent); border-color: var(--accent); }
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-size: 1.05rem;
  align-items: center;
  justify-content: center;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(28,23,40,0.8) 0%, var(--bg) 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.45;
  animation: float 20s infinite ease-in-out;
}
.orb1 { width: 400px; height: 400px; background: var(--accent); top: -100px; left: -100px; }
.orb2 { width: 350px; height: 350px; background: #4361ee; bottom: -50px; right: -50px; animation-delay: -5s; }
.orb3 { width: 300px; height: 300px; background: var(--accent2); top: 20%; right: 10%; animation-delay: -10s; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px, 50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}
.hero-content { position: relative; z-index: 10; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--surface); border: 1px solid var(--border);
  padding: 0.4rem 1rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; color: var(--accent2);
  margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.hero-badge span { color: var(--green); }
.hero-logo { width: 80px; height: 80px; border-radius: 18px; margin-bottom: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 8vw, 4.2rem); font-weight: 800; line-height: 1.05; color: var(--text); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: clamp(1rem, 2.5vw, 1.25rem); color: var(--muted); line-height: 1.6; margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; color: var(--muted); font-size: 0.85rem; font-weight: 500; }
.hero-trust span { display: flex; align-items: center; gap: 0.4rem; }
.hero-trust span::before { content: "✓"; color: var(--green); font-weight: 800; }

/* Light theme: prevent dark hero vignette from washing out copy */
[data-theme="light"] .hero {
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.98) 0%, rgba(244,238,255,0.96) 40%, rgba(237,230,255,0.94) 70%, var(--bg) 100%);
}

[data-theme="light"] .orb {
  opacity: 0.18;
  filter: blur(90px);
}

[data-theme="light"] .hero-sub {
  color: #3f3460;
  font-weight: 500;
}

[data-theme="light"] .hero-trust {
  color: #534572;
  font-weight: 600;
}

/* ── TV MOCKUP ── */
.tv-mockup-wrap {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 2rem;
  perspective: 1000px;
}
.tv-frame {
  background: #1a1a1a;
  padding: 12px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.1);
  border-bottom: 4px solid #000;
}
.tv-screen {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
}
.tv-screen img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease; }
.tv-stand {
  width: 100px; height: 40px; background: #111; margin: -2px auto 0;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}
.tv-base {
  width: 240px; height: 8px; background: #0a0a0a; margin: 0 auto;
  border-radius: 4px; box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* ── SECTION HEADINGS ── */
.section-label { color: var(--accent2); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.75rem; text-align: center; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 5vw, 2.8rem); text-align: center; margin-bottom: 3rem; line-height: 1.1; }

/* ── INTENT & COPY ── */
.copy-card {
  max-width: 800px;
  margin: 0 auto 5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  line-height: 1.8;
  color: var(--muted);
  font-size: 1.05rem;
}
.copy-card p:not(:last-child) { margin-bottom: 1.5rem; }
.intent-copy .copy-card {
  max-width: 1000px;
}

/* ── GRID LAYOUTS ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
}
.grid article:hover { border-color: var(--accent); transform: translateY(-4px); }
.grid h2 { font-family: 'Syne', sans-serif; font-size: 1.25rem; margin-bottom: 1rem; line-height: 1.3; }
.grid p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.grid a { color: var(--accent2); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.grid a:hover { text-decoration: underline; }

/* ── FEATURE CARDS ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(155,93,229,0.12); }
.feature-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.feature-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text); }
.feature-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── RELEASE NOTES CARDS ── */
.release-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem; margin-bottom: 2.5rem;
}
.release-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.release-head h2 { font-family: 'Syne', sans-serif; font-size: 1.6rem; color: var(--text); }
.build-tag { display: none; } /* Hidden as per request */
.release-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.release-block { background: rgba(255,255,255,0.01); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; }
.release-block h3 { font-family: 'Syne', sans-serif; font-size: 0.9rem; font-weight: 800; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 0.08em; }
.release-block.features h3 { color: var(--green); }
.release-block.fixes h3 { color: var(--accent2); }
.release-block ul { padding-left: 1.2rem; list-style-type: disc; }
.release-block li { color: var(--muted); font-size: 0.94rem; line-height: 1.7; margin-bottom: 0.6rem; }

/* ── MANUAL LAYOUT (SPLIT FRAME) ── */
.manual-layout {
  display: flex;
  max-width: 1400px;
  margin: 64px auto 0;
  gap: 0;
  min-height: calc(100vh - 64px);
}
.manual-sidebar {
  width: 280px;
  flex-shrink: 0;
  height: calc(100vh - 64px);
  position: sticky;
  top: 64px;
  background: var(--bg);
  border-right: 1px solid var(--border);
  overflow: hidden;
  padding: 40px 0 60px;
  z-index: 10;
}
.manual-content {
  flex: 1;
  min-width: 0;
  padding: 60px 60px 120px;
  max-width: 900px;
}

/* Manual section anchoring + readability */
.manual-content .section {
  scroll-margin-top: 96px;
  margin-top: 2.1rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.manual-content .section:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.manual-content .section > h2 {
  margin-bottom: 0.7rem;
}

.manual-content .section > h2 + p:not(.callout) {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.78;
  margin-bottom: 1.25rem;
}

.manual-content .callout {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
  background: rgba(155,93,229,0.08);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.manual-content .callout strong {
  color: var(--text);
  font-weight: 700;
}

.manual-content .callout a {
  color: var(--accent2);
}

@media (min-width: 901px) {
  .manual-sidebar {
    position: fixed;
    top: 64px;
    left: max(0px, calc((100vw - 1400px) / 2));
  }

  .manual-content {
    margin-left: 280px;
  }
}
.sidebar-section { margin-bottom: 32px; padding: 0 24px; }
.sidebar-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 16px; opacity: 0.6; }
.sidebar-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav a {
  display: block; padding: 10px 14px; border-radius: 10px;
  text-decoration: none; color: var(--muted); font-size: 14px;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.sidebar-nav a:hover { background: var(--surface); color: var(--text); }
.sidebar-nav a.active { background: var(--surface); color: var(--accent2); font-weight: 600; border-color: var(--border); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* ── STEPS (How it works) ── */
.steps { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}
.step h2 { font-family: 'Syne', sans-serif; font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.step p { color: var(--muted); font-size: 0.94rem; line-height: 1.7; }

/* ── DOWNLOAD ── */
.cta-wrap {
  margin: 2rem 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
}
.store-links { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--accent); color: #fff; text-decoration: none;
  padding: 0.85rem 1.8rem; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 4px 24px var(--glow);
  transition: all 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--glow); background: var(--accent2); }
.cta-btn svg { width: 18px; height: 18px; }
.links { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }
.links a {
  text-decoration: none; color: var(--accent2); font-weight: 600; font-size: 0.86rem;
  border: 1px solid var(--border); border-radius: 999px; padding: 0.4rem 0.8rem;
  transition: all 0.2s;
}
.links a:hover { border-color: var(--accent); color: var(--text); }

/* ── UTILITY CONTENT STYLES ── */
.lead {
  color: var(--muted);
  line-height: 1.75;
}
.box {
  margin: 2.25rem 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
}
.box h2 {
  font-family: 'Syne', sans-serif;
  margin-bottom: 0.75rem;
}
.box p, .box li {
  color: var(--muted);
  line-height: 1.7;
}

/* ── HOME: SEO LINKS + SOCIAL PROOF ── */
.seo-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: -1.4rem 0 4rem;
}
.seo-links a {
  text-decoration: none;
  color: var(--accent2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 600;
  transition: all 0.2s;
}
.seo-links a:hover {
  border-color: var(--accent);
  color: var(--text);
}
.different {
  margin: 1rem 0 4rem;
}
.user-reviews .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.different .grid article {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}
.different .grid h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.45rem;
}
.different .grid p {
  margin-bottom: 0;
}
.review-meta {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.review-meta a {
  color: var(--accent2);
  text-decoration: none;
}
.review-meta a:hover { text-decoration: underline; }
.diff-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ── HOME: FRAME SHOWCASE ── */
.frame-showcase { margin-bottom: 4rem; }
.showcase-inner { max-width: 920px; margin: 0 auto; }
.frame-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.85rem;
}
.frame-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.frame-dot:hover { transform: scale(1.12); }
.frame-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}
.frame-caption {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.9rem;
}

/* ── HOME: BLOG TEASERS ── */
.blog-teasers { margin-bottom: 4.5rem; }
.blog-inner { max-width: 1100px; margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.blog-card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.blog-card h3 {
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  line-height: 1.35;
}
.blog-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.blog-more {
  margin-top: 1.2rem;
  text-align: right;
}
.blog-more a {
  color: var(--accent2);
  text-decoration: none;
  font-weight: 700;
}
.blog-more a:hover { text-decoration: underline; }

/* ── HOME: SCREENSHOTS TABS ── */
.screenshots-section { margin-bottom: 4.8rem; }
.screenshots-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.tab-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn:hover {
  color: var(--text);
  border-color: var(--accent);
}
.tab-btn.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}
.screenshots-stage {
  max-width: 960px;
  margin: 0 auto;
}
.screenshot-panel {
  display: none;
  align-items: center;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
}
.screenshot-panel.active {
  display: grid;
  grid-template-columns: minmax(460px, 1.35fr) minmax(280px, 1fr);
}
.tablet-mockup {
  background: #111;
  border-radius: 22px;
  padding: 10px;
  border: 1px solid #2d2d2d;
  max-width: 560px;
  margin: 0 auto;
}
.tablet-screen {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #000;
}
.tablet-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.screenshot-desc h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.screenshot-desc p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── HOME: FEATURES / TABLE / FOUNDER / FAQ / CTA ── */
.feature-link {
  color: var(--accent2);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
}
.feature-link:hover { text-decoration: underline; }
.comparison {
  margin: 2rem 0 5rem;
}
.comp-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: var(--surface);
}
.comp-table th, .comp-table td {
  border-bottom: 1px solid var(--border);
  padding: 0.82rem 0.9rem;
  text-align: left;
  font-size: 0.9rem;
  vertical-align: top;
}
.comp-table th {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
}
.comp-table .pro-col { color: var(--accent2); }
.comp-table .section-row td {
  font-family: 'Syne', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg2);
}
.comp-table .feature-name { color: var(--text); }
.check { color: var(--green); font-weight: 800; }
.cross { color: var(--muted); font-weight: 700; }
.founder {
  margin: 2rem 0 5rem;
}
.founder-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}
.founder-quote {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.founder-sig {
  margin-top: 1.25rem;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
}
.founder-sig small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
}
.faq {
  max-width: 840px;
  margin: 0 auto 4.5rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}
.faq-q {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-q .chevron {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-a {
  display: none;
  color: var(--muted);
  padding: 0 1.1rem 1rem;
  line-height: 1.7;
  font-size: 0.94rem;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.bottom-cta {
  text-align: center;
  margin: 1.5rem auto 2rem;
  max-width: 760px;
}
.bottom-cta h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 4.8vw, 2.4rem);
  margin-bottom: 0.75rem;
}
.bottom-cta p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

/* ── IMAGE LIGHTBOX ── */
body.lightbox-open {
  overflow: hidden;
}
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 24px;
}
.lightbox-overlay.open {
  display: flex;
}
.lightbox-dialog {
  position: relative;
  width: min(1200px, 96vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.lightbox-media {
  max-width: 100%;
  max-height: calc(92vh - 72px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
  background: #000;
}
.lightbox-caption {
  color: #eee;
  font-size: 0.92rem;
  text-align: center;
}
.lightbox-btn {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.45);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-btn:hover {
  background: rgba(0,0,0,0.7);
  transform: scale(1.04);
}
.lightbox-close {
  top: -10px;
  right: -10px;
}
.lightbox-prev {
  top: 50%;
  left: -54px;
  transform: translateY(-50%);
}
.lightbox-prev:hover { transform: translateY(-50%) scale(1.04); }
.lightbox-next {
  top: 50%;
  right: -54px;
  transform: translateY(-50%);
}
.lightbox-next:hover { transform: translateY(-50%) scale(1.04); }

/* ── GLOSSARY + POLICY PAGES ── */
.term {
  margin-bottom: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}
.term-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
}
.term-abbr {
  color: var(--muted);
  font-size: 0.84rem;
  margin-left: 0.45rem;
  font-family: 'DM Sans', sans-serif;
}
.term-def {
  color: var(--muted);
  line-height: 1.75;
}
.toc a:hover { color: var(--text) !important; }
.policy-section {
  color: var(--muted);
  line-height: 1.75;
}
.policy-section h3 {
  color: var(--text);
  font-size: 1rem;
  margin: 1.2rem 0 0.55rem;
}
.policy-section ul {
  padding-left: 1.2rem;
  margin: 0.7rem 0 0.95rem;
}
.policy-section li { margin-bottom: 0.45rem; }
.callout {
  color: var(--text);
  line-height: 1.65;
}

/* ── HOW IT WORKS Q&A ── */
.howit-qa {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}
.qa-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1rem 0.95rem;
}
.qa-item h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}
.qa-item p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 2rem; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; border-top: 1px solid var(--border);
  max-width: 1100px; margin: 0 auto;
}
.footer-left { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--muted); }
.footer-left img { width: 22px; height: 22px; border-radius: 5px; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
footer a { font-size: 0.85rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--accent); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 1rem; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.45rem; padding: 0.75rem 1rem 1rem;
    background: var(--nav-bg); border-bottom: 1px solid var(--border); backdrop-filter: blur(16px);
  }
  .nav-links.open { display: flex; }
  .manual-layout { flex-direction: column; }
  .manual-sidebar { width: 100%; height: auto; position: relative; top: 0; border-right: none; border-bottom: 1px solid var(--border); }
  .manual-content { padding: 24px 20px; }
  main { padding: 80px 16px 80px; }
  .screenshot-panel.active {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .blog-more { text-align: left; }
  .comp-wrap {
    margin-left: -2px;
    margin-right: -2px;
  }
  .different .grid article {
    flex-direction: column;
    align-items: flex-start;
  }
  .user-reviews .grid {
    grid-template-columns: 1fr;
  }
  .lightbox-overlay {
    padding: 12px;
  }
  .lightbox-dialog {
    width: 100%;
    max-height: 96vh;
  }
  .lightbox-media {
    max-height: calc(96vh - 86px);
  }
  .lightbox-close {
    top: 6px;
    right: 6px;
  }
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 8px;
    transform: none;
  }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-prev:hover,
  .lightbox-next:hover {
    transform: scale(1.04);
  }
}
