:root {
  color-scheme: dark;
  --bg: #07111f;
  --panel: #101b30;
  --panel-2: #16223a;
  --text: #f7f9ff;
  --muted: #aab6d3;
  --line: rgba(155, 177, 224, 0.22);
  --accent: #7c4dff;
  --accent-2: #2f8cff;
  --green: #2ed47a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 77, 255, 0.35), transparent 32rem),
    linear-gradient(135deg, #081426 0%, #07111f 52%, #0b1630 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(83, 85, 255, 0.35);
  object-fit: cover;
  image-rendering: auto;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1;
}

.brand span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.links a:hover {
  color: var(--text);
}

.hero {
  padding: 72px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.eyebrow {
  color: #bca9ff;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.98;
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  max-width: 680px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.mock {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 19, 36, 0.88);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.mock-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 12px 12px;
  background: linear-gradient(120deg, #084bd8 0%, #1268e8 55%, #1684f8 100%);
}

.mock-title {
  font-size: 24px;
  font-weight: 900;
}

.mock-body {
  padding: 18px;
}

.tool-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.tool {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 12px;
  font-weight: 800;
  text-align: center;
}

.note {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  margin-top: 10px;
}

.chip {
  color: #9bc2ff;
  background: rgba(47, 140, 255, 0.15);
  border-radius: 999px;
  padding: 4px 9px;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}

.section {
  padding: 38px 0;
}

.section h2 {
  font-size: 32px;
  margin: 0 0 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  background: rgba(16, 27, 48, 0.72);
  border-radius: 18px;
  padding: 20px;
}

.card h3 {
  margin: 0 0 10px;
}

.card p,
.content p,
.content li {
  color: var(--muted);
  line-height: 1.7;
}

.content {
  max-width: 860px;
  padding: 34px 0 70px;
}

.content h1 {
  font-size: clamp(36px, 7vw, 58px);
  margin-bottom: 18px;
}

.content h2 {
  margin-top: 34px;
}

.content a {
  color: #9bc2ff;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px 0 40px;
  font-size: 14px;
}

/* ── Nav CTA ── */
.nav-cta {
  padding: 0 16px;
  min-height: 36px;
  font-size: 13px;
}

/* ── Gradient hero text ── */
.grad {
  background: linear-gradient(110deg, #c4aaff 0%, #7c4dff 40%, #2f8cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Trust badges ── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
}


.mock-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mock-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
}

.mock-logo span {
  font-size: 10px;
  vertical-align: super;
}

.mock-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.mock-sub {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  margin-top: 4px;
}

.mock-icons {
  display: flex;
  gap: 8px;
}

.mock-icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: default;
}

.mock-toolbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mock-tool-btn,
.mock-toggle-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  min-height: 54px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.27);
  background: rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 800;
}

.mock-tool-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.cap-icon { background: rgba(31,213,255,0.28); color: #21d5ff; }
.ocr-icon { background: rgba(255,255,255,0.16); color: #fff; }

.mock-toggle-pill {
  color: #fff;
}

.mock-app-icon {
  border-radius: 12px;
  display: block;
  flex-shrink: 0;
}

.mock-toolbar small {
  color: rgba(255,255,255,0.7);
  font-size: 9px;
  font-weight: 700;
}

.mock-toggle-track {
  width: 30px;
  height: 17px;
  border-radius: 999px;
  background: var(--green);
  position: relative;
  flex-shrink: 0;
}

.mock-toggle-thumb {
  position: absolute;
  right: 2px;
  top: 2px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
}

.mock-body {
  padding: 12px 14px;
}

.mock-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.mock-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mock-filter-pill {
  flex: 1;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}


.mock-stat-card {
  border-radius: 14px;
  padding: 12px;
  border: 1px solid var(--line);
}

.mock-stat-card.purple {
  background: rgba(124,77,255,0.12);
  border-color: rgba(124,77,255,0.25);
}

.mock-stat-card.green {
  background: rgba(46,212,122,0.1);
  border-color: rgba(46,212,122,0.25);
}

.mock-stat-num {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 3px;
}

.mock-stat-card.purple .mock-stat-num { color: #b39dff; }
.mock-stat-card.green .mock-stat-num { color: var(--green); }

.mock-stat-label {
  font-size: 12px;
  font-weight: 700;
}

.mock-stat-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
}

/* Categories row */
.mock-categories {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  padding: 10px 12px;
  margin-bottom: 10px;
}

.mock-cat-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.mock-cat-title {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.mock-cat-count {
  color: var(--muted);
  font-weight: 400;
}

.mock-cat-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-add-cat {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  border-radius: 8px;
  padding: 6px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 2×2 stats grid */
.mock-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.mock-stat-card {
  border-radius: 14px;
  padding: 12px;
  border: 1px solid var(--line);
}

.mock-stat-card.purple { background: rgba(124,77,255,0.12); border-color: rgba(124,77,255,0.25); }
.mock-stat-card.green  { background: rgba(46,212,122,0.1);  border-color: rgba(46,212,122,0.25); }
.mock-stat-card.orange { background: rgba(180,83,9,0.18);   border-color: rgba(251,146,60,0.25); }
.mock-stat-card.blue   { background: rgba(47,140,255,0.1);  border-color: rgba(47,140,255,0.25); }

.mock-stat-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.purple-icon { background: rgba(124,77,255,0.35); color: #c4aaff; }
.green-icon  { background: rgba(46,212,122,0.25); color: var(--green); }
.orange-icon { background: rgba(251,146,60,0.25); color: #fb923c; }
.blue-icon   { background: rgba(47,140,255,0.25); color: #60a5fa; }

.mock-stat-num {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 3px;
}

.mock-stat-card.purple .mock-stat-num { color: #b39dff; }
.mock-stat-card.green  .mock-stat-num { color: var(--green); }
.mock-stat-card.orange .mock-stat-num { color: #fb923c; }
.mock-stat-card.blue   .mock-stat-num { color: #60a5fa; font-size: 16px; }

.mock-stat-label {
  font-size: 12px;
  font-weight: 700;
}

.mock-stat-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
}

.mock-section-head {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 4px;
  color: var(--text);
}

.mock-section-head span {
  color: #9bc2ff;
  font-weight: 600;
}

/* ── Stats bar ── */
.stats-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16,27,48,0.7);
  padding: 20px 28px;
  margin-bottom: 24px;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 20px;
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }

.stat-item strong {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(110deg, #c4aaff, #7c4dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item span {
  font-size: 13px;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--line);
  flex-shrink: 0;
}

/* ── Section labels ── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bca9ff;
  margin-bottom: 10px;
}

.section-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
  margin: 0 0 28px;
  line-height: 1.6;
}

/* ── Features grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feat-card {
  border: 1px solid var(--line);
  background: rgba(16,27,48,0.72);
  border-radius: 18px;
  padding: 22px;
  transition: border-color 0.2s, transform 0.2s;
}

.feat-card:hover {
  border-color: rgba(124,77,255,0.45);
  transform: translateY(-2px);
}

.feat-card.feat-highlight {
  border-color: rgba(124,77,255,0.35);
  background: rgba(124,77,255,0.07);
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feat-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.feat-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  font-size: 14px;
}

/* ── How it works ── */
.how-section {
  border-top: 1px solid var(--line);
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 28px;
}

.step {
  flex: 1;
  background: rgba(16,27,48,0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.step-arrow {
  font-size: 24px;
  color: var(--muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-bottom: 8px;
}

/* ── CTA banner ── */
.cta-banner {
  margin: 40px auto 60px;
  background: linear-gradient(135deg, rgba(124,77,255,0.18), rgba(47,140,255,0.12));
  border: 1px solid rgba(124,77,255,0.35);
  border-radius: 22px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 36px 40px;
}

.cta-inner h2 {
  font-size: 28px;
  margin: 0 0 6px;
}

.cta-inner p {
  color: var(--muted);
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.button.large {
  min-height: 48px;
  padding: 0 24px;
  font-size: 15px;
}

/* ── Footer grid ── */
.footer-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
  min-width: 180px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-copy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 6px;
}

.footer-site {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.footer-site a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s, border-color 0.15s;
}

.footer-site a:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

.footer-nav {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
}

/* ── Button hover ── */
.button:hover {
  background: rgba(255,255,255,0.1);
}

.button.primary:hover {
  opacity: 0.88;
}

/* ── Install on Chrome button (coming soon) ── */
.chrome-btn {
  position: relative;
}

.chrome-btn::after {
  content: 'Coming soon';
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a2540;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
}

.chrome-btn:hover::after {
  opacity: 1;
}

/* ── Active nav link ── */
.nav-active {
  color: var(--text) !important;
  font-weight: 700;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 56px 0 36px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}

.page-hero h1 {
  font-size: clamp(32px, 6vw, 52px);
  margin: 0 0 12px;
}

.page-hero .lead {
  font-size: 17px;
  margin: 0;
}

/* ── Wide content wrapper ── */
.content-wide {
  max-width: 100%;
}

/* ── Vertical steps (welcome page) ── */
.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 12px;
}

.vstep {
  display: flex;
  gap: 20px;
  padding: 0 0 32px 0;
  position: relative;
}

.vstep::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.vstep:last-child::before { display: none; }

.vstep-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
  z-index: 1;
}

.vstep-body h3 {
  margin: 6px 0 6px;
  font-size: 16px;
}

.vstep-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ── Info grid (welcome) ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  border: 1px solid var(--line);
  background: rgba(16,27,48,0.72);
  border-radius: 16px;
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.info-card:hover {
  border-color: rgba(124,77,255,0.4);
  transform: translateY(-2px);
}

.info-card-link {
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.info-card h4 {
  margin: 0 0 6px;
  font-size: 15px;
}

.info-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

/* ── Notice box ── */
.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(124,77,255,0.08);
  border: 1px solid rgba(124,77,255,0.25);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.notice-box svg { flex-shrink: 0; margin-top: 1px; }
.notice-box strong { color: var(--text); }
.notice-box a { color: #9bc2ff; }

/* ── Help page layout ── */
.help-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: flex-start;
  padding-bottom: 60px;
}

.toc {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 10px;
}

.toc a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.toc a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border-left-color: var(--accent);
}

.help-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.help-section {
  display: flex;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.help-section:first-child { padding-top: 0; }

.help-section-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.help-section h2 {
  font-size: 20px;
  margin: 0 0 10px;
}

.help-section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.help-section p:last-child { margin-bottom: 0; }

.tip-box {
  background: rgba(47,140,255,0.08);
  border: 1px solid rgba(47,140,255,0.2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
}

.tip-box strong { color: #9bc2ff; }

.styled-list {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  margin: 8px 0 0;
}

.styled-list li { margin-bottom: 4px; }
.styled-list[style*="decimal"] { list-style-type: decimal; }

.help-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 32px 0 0;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

/* ── FAQ page ── */
.faq-group {
  margin-bottom: 40px;
}

.faq-group-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(16,27,48,0.6);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover { border-color: rgba(124,77,255,0.35); }

.faq-item[open] {
  border-color: rgba(124,77,255,0.4);
  background: rgba(124,77,255,0.05);
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 20px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.faq-item a { color: #9bc2ff; }

/* ── Support page ── */
.fix-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 40px;
}

.fix-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(16,27,48,0.6);
}

.fix-num {
  font-size: 13px;
  font-weight: 900;
  color: var(--accent);
  width: 28px;
  flex-shrink: 0;
  padding-top: 2px;
}

.fix-item h4 {
  margin: 0 0 6px;
  font-size: 15px;
}

.fix-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: linear-gradient(135deg, rgba(124,77,255,0.1), rgba(47,140,255,0.07));
  border: 1px solid rgba(124,77,255,0.28);
  border-radius: 18px;
  padding: 32px;
  margin-top: 8px;
}

.contact-box-left h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.contact-box-left p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.contact-box-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

/* ── Privacy & Terms ── */
.policy-layout {
  padding-bottom: 60px;
}

.policy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.policy-summary-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(16,27,48,0.6);
}

.policy-summary-card.green {
  border-color: rgba(46,212,122,0.25);
  background: rgba(46,212,122,0.06);
}

.policy-summary-card svg { flex-shrink: 0; margin-top: 2px; }

.policy-summary-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}

.policy-summary-card span {
  font-size: 12px;
  color: var(--muted);
}

.policy-content {
  max-width: 760px;
}

.policy-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.policy-section:first-child { padding-top: 0; }
.policy-section:last-child { border-bottom: none; }

.policy-section h2 {
  font-size: 18px;
  margin: 0 0 12px;
}

.policy-section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 10px;
}

.policy-section p:last-child { margin-bottom: 0; }
.policy-section a { color: #9bc2ff; }

.policy-section .styled-list {
  margin-top: 10px;
}

/* ── Changelog ── */
.release {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(16,27,48,0.6);
  padding: 32px;
  margin-bottom: 24px;
}

.release-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.release-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
}

.release-badge.current {
  background: rgba(46,212,122,0.15);
  color: var(--green);
  border: 1px solid rgba(46,212,122,0.3);
}

.release-date {
  font-size: 13px;
  color: var(--muted);
}

.release-version {
  font-size: 26px;
  margin: 0 0 8px;
}

.release-desc {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
}

.release-group {
  margin-top: 20px;
}

.release-group-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
}

.release-group-title.new {
  background: rgba(124,77,255,0.15);
  color: #c4aaff;
  border: 1px solid rgba(124,77,255,0.3);
}

.release-group-title.planned {
  background: rgba(251,146,60,0.12);
  color: #fb923c;
  border: 1px solid rgba(251,146,60,0.25);
}

.release-list {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  margin: 0;
}

.release-list li { margin-bottom: 4px; }

/* ── Video section ── */
.video-section {
  border-top: 1px solid var(--line);
  text-align: center;
}

.video-section .section-sub {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.video-placeholder {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(16,27,48,0.8);
  aspect-ratio: 16/9;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 0;
}

.video-placeholder iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 40px;
}

.video-coming-soon p {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--muted);
}

.video-coming-soon span {
  font-size: 13px;
  color: rgba(170,182,211,0.6);
}

/* ── Contact + Feedback form layout ── */
.contact-form-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  margin-top: 16px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.contact-info-panel {
  background: rgba(16,27,48,0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

.contact-info-panel h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.contact-info-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.contact-detail a {
  color: #9bc2ff;
  text-decoration: none;
}

.contact-detail a:hover { text-decoration: underline; }

.contact-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,0.04);
}

/* ── Feedback form ── */
.feedback-form {
  background: rgba(16,27,48,0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(170,182,211,0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(124,77,255,0.6);
  background: rgba(124,77,255,0.06);
}

.form-group select option {
  background: #101b30;
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  min-height: 44px;
  font-size: 15px;
  cursor: pointer;
  border: none;
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .nav,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 38px;
  }

  .grid,
  .tool-row,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .step-arrow {
    display: none;
  }

  .stats-bar {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .stat-item {
    padding: 0;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-grid {
    flex-direction: column;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .help-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 8px;
  }

  .toc-title { display: none; }

  .policy-summary {
    grid-template-columns: 1fr;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 420px) {
  .mock-toolbar {
    gap: 5px;
  }

  .mock-tool-btn,
  .mock-toggle-pill {
    gap: 5px;
    padding: 6px 7px;
    font-size: 10px;
  }

  .mock-tool-icon {
    width: 19px;
    height: 19px;
  }

  .mock-toggle-track {
    width: 27px;
  }
}
