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

:root {
  --ink: #0e0e0e;
  --ink-2: #3a3a3a;
  --ink-3: #7a7a7a;
  --paper: #f8f6f1;
  --paper-2: #efecea;
  --paper-3: #e4e0d8;
  --accent:#101216;
  --accent-2: #2563eb;
  --accent-light: #d9e2f3;
  --amber: #c97c1a;
  --amber-light: #fef3dc;
  --blue: #183561;
  --blue-light: #daeaf7;
  --r: 12px;
  --rr: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

.serif { font-family: 'Instrument Serif', serif; }
.mono { font-family: 'DM Mono', monospace; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--paper-3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--paper-2); color: var(--ink); }
a.btn-cta-sm {
  color: #fff;
}
.btn-cta-sm {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.btn-cta-sm:hover { background: var(--accent); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(45, 120, 80, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(46, 102, 71, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
  animation: fadeUp 0.6s ease both;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(48px, 8vw, 86px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 860px;
  animation: fadeUp 0.6s 0.1s ease both;
}

h1 em {
  font-style: italic;
  color: var(--accent-2);
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 520px;
  margin: 28px auto 0;
  line-height: 1.6;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: #fff;
  padding: 15px 28px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,14,14,0.15); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  padding: 15px 22px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--paper-3);
  background: var(--paper);
  transition: all 0.15s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--ink-3); color: var(--ink); background: var(--paper-2); }

.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-3);
  animation: fadeUp 0.6s 0.35s ease both;
}

.hero-video {
  width: 100%;
  max-width: 900px;
  margin-top: 56px;
  border: 1px solid var(--paper-3);
  border-radius: 14px;
  overflow: hidden;
  background: #101216;
  box-shadow: 0 32px 80px rgba(14, 14, 14, 0.12);
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero-video video {
  display: block;
  width: 100%;
  height: auto;
}

/* ── BROWSER MOCKUP ── */
.hero-visual {
  margin-top: 72px;
  width: 100%;
  max-width: 860px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.browser {
  background: var(--paper-2);
  border: 1px solid var(--paper-3);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(14, 14, 14, 0.12);
}

.browser-bar {
  background: #fff;
  border-bottom: 1px solid var(--paper-3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-dots { display: flex; gap: 6px; }
.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dot:nth-child(1) { background: #fc6157; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #29c840; }

.browser-url {
  flex: 1;
  background: var(--paper-2);
  border: 1px solid var(--paper-3);
  border-radius: 7px;
  padding: 5px 12px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
}

.popup-ui {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 380px;
}

.popup-left {
  background: #101216;
  padding: 16px;
  color: #f3f6fb;
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.popup-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.popup-stats {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.popup-stat { font-size: 11px; color: #7f899a; }
.popup-stat strong { display: block; font-size: 20px; font-weight: 800; color: #4f8cff; line-height: 1; }

.popup-search {
  background: #191c22;
  border: 1px solid #343945;
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 12px;
  color: #7f899a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.tab-item-mock {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 6px;
  border-radius: 7px;
  margin-bottom: 3px;
  cursor: default;
}

.tab-item-mock:hover { background: #191c22; }
.tab-item-mock.active { background: #22262e; }

.tab-favicon-mock {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  flex-shrink: 0;
}

.tab-info-mock { flex: 1; min-width: 0; }
.tab-title-mock { font-size: 12px; font-weight: 600; color: #f3f6fb; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tab-url-mock { font-size: 10px; color: #7f899a; font-family: 'DM Mono', monospace; }

.group-header-mock {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7f899a;
  font-weight: 700;
  padding: 8px 6px 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.group-dot { width: 7px; height: 7px; border-radius: 50%; background: #a142f4; }

.popup-right {
  background: #f8f6f1;
  padding: 16px;
  border-left: 1px solid var(--paper-3);
}

.dashboard-mini-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 10px;
}

.health-big {
  font-family: 'Instrument Serif', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--accent-2);
  margin-bottom: 4px;
}

.health-label { font-size: 12px; color: var(--ink-3); margin-bottom: 16px; }

.mini-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: 8px;
  margin-bottom: 6px;
}

.mini-metric-label { font-size: 12px; color: var(--ink-3); }
.mini-metric-val { font-size: 14px; font-weight: 600; color: var(--ink); font-family: 'DM Mono', monospace; }
.mini-metric-val.warn { color: var(--amber); }
.mini-metric-val.good { color: var(--accent-2); }

/* ── SECTIONS ── */
section { padding: 100px 24px; }

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 16px;
}

h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

h2 em { font-style: italic; color: var(--accent-2); }

.lead {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.65;
}

/* ── PROBLEM SECTION ── */
.problem-section { background: var(--ink); color: #fff; }

.problem-section h2 { color: #fff; }
.problem-section h2 em { color: var(--accent-2); }
.problem-section .lead { color: rgba(255,255,255,0.65); }
.problem-section .section-label { color: rgba(255,255,255,0.4); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.pain-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
}

.pain-card .pain-q {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.pain-card .pain-a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* ── PRODUCT SHOWCASE ── */
.product-section {
  background: var(--paper);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  margin-top: 56px;
}

.showcase-card {
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(14,14,14,0.07);
}

.showcase-card-large {
  grid-row: span 2;
}

.showcase-browser-bar {
  min-height: 42px;
  padding: 12px 14px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--paper-3);
  display: flex;
  align-items: center;
  gap: 7px;
}

.showcase-browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.showcase-browser-bar span:nth-child(1) { background: #fc6157; }
.showcase-browser-bar span:nth-child(2) { background: #febc2e; }
.showcase-browser-bar span:nth-child(3) { background: #29c840; }

.showcase-browser-bar div {
  margin-left: 8px;
  color: var(--ink-3);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
}

.showcase-screen {
  min-height: 420px;
  background: #101216;
  color: #f3f6fb;
}

.session-screen {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.screen-sidebar {
  padding: 18px;
  background: #151821;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.screen-logo-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 14px;
}

.screen-logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, #4f8cff 45%, rgba(79,140,255,0.35) 45%),
    linear-gradient(#4f8cff 45%, rgba(79,140,255,0.35) 45%);
}

.screen-action {
  width: 100%;
  border: none;
  border-radius: 8px;
  background: var(--accent-2);
  color: #fff;
  padding: 9px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

.screen-nav-item {
  border-radius: 8px;
  color: #8f98a8;
  font-size: 12px;
  padding: 8px 10px;
  margin-bottom: 5px;
}

.screen-nav-item.active {
  background: #222735;
  color: #fff;
}

.screen-main {
  padding: 22px;
}

.screen-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.screen-kicker {
  display: block;
  color: #7f899a;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.screen-topline h3 {
  font-size: 24px;
  line-height: 1.15;
}

.screen-count {
  border: 1px solid rgba(79,140,255,0.35);
  border-radius: 999px;
  color: #9bbcff;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  padding: 4px 9px;
  white-space: nowrap;
}

.screen-search,
.compact-search {
  border: 1px solid #343945;
  border-radius: 9px;
  background: #191c22;
  color: #7f899a;
  font-size: 12px;
  padding: 10px 12px;
}

.screen-list {
  margin-top: 16px;
}

.screen-tab-row,
.search-result {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 11px 10px;
  margin-bottom: 7px;
}

.screen-tab-row.selected,
.search-result.strong {
  background: #22262e;
}

.screen-tab-row div,
.search-result div {
  min-width: 0;
  flex: 1;
}

.screen-tab-row strong,
.search-result strong {
  display: block;
  color: #f3f6fb;
  font-size: 13px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.screen-tab-row small,
.search-result small {
  display: block;
  color: #7f899a;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  margin-top: 2px;
}

.screen-tab-row em {
  color: #9bbcff;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-style: normal;
}

.favicon,
.search-result span {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  flex-shrink: 0;
}

.favicon.blue,
.search-result span { background: #4285f4; }
.favicon.dark { background: #181717; }
.favicon.coral { background: #ff5967; }
.favicon.amber { background: #f9ab00; }

.compact-screen {
  min-height: 220px;
  /* padding: 18px; */
}

.filter-row,
.health-tips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.filter-row span,
.health-tips span {
  border-radius: 999px;
  background: rgba(79,140,255,0.13);
  color: #9bbcff;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  padding: 5px 8px;
}

.health-screen {
  text-align: center;
}

/* .health-score-ring {
  width: 94px;
  height: 94px;
  border: 9px solid rgba(79,140,255,0.18);
  border-top-color: var(--accent-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px auto 12px;
  color: #fff;
  font-family: 'Instrument Serif', serif;
  font-size: 38px;
} */

.health-copy strong {
  display: block;
  font-size: 15px;
}

.health-copy span {
  display: block;
  color: #7f899a;
  font-size: 12px;
}

.health-bars {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.health-bars div {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #242832;
}

.health-bars span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-2), #6fcf97);
}

.showcase-card figcaption {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-top: 1px solid var(--paper-3);
}

.showcase-card figcaption strong {
  color: var(--ink);
  font-size: 15px;
}

.showcase-card figcaption span {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 300;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14,14,14,0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}

.feature-icon.green { background: var(--accent-light); }
.feature-icon.amber { background: var(--amber-light); }
.feature-icon.blue { background: var(--blue-light); }
.feature-icon.pink { background: #fdeef4; }
.feature-icon.purple { background: #eeedfe; }
.feature-icon.gray { background: var(--paper-2); }

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  font-weight: 300;
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--paper-2); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--paper-3);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--paper-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-3);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  font-weight: 300;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 56px auto 0;
}

@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: #fff;
  border: 1px solid var(--paper-3);
  border-radius: 18px;
  padding: 32px;
}

.price-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.price-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 16px;
}

.price-card.featured .price-label { color: rgba(255,255,255,0.45); }

.price-amount {
  font-family: 'Instrument Serif', serif;
  font-size: 52px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}

.price-card.featured .price-amount { color: #fff; }

.price-period {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 28px;
}

.price-card.featured .price-period { color: rgba(255,255,255,0.45); }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
}

.price-card.featured .price-features li { color: rgba(255,255,255,0.75); }

.check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.price-card.featured .check { background: rgba(255,255,255,0.12); }

.check svg { color: var(--accent-2); }
.price-card.featured .check svg { color: #6fcf97; }

.btn-price {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.15s;
}

.btn-price-free {
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--paper-3);
}
.btn-price-free:hover { background: var(--paper-3); }

.btn-price-pro {
  background: #fff;
  color: var(--ink);
  border: none;
}
.btn-price-pro:hover { background: var(--accent-light); }

/* ── FAQ ── */
.faq-list {
  max-width: 680px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--paper-3);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.faq-item {
  border-bottom: 1px solid var(--paper-3);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--paper); }

.faq-q svg {
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform 0.2s;
}

.faq-q[aria-expanded="true"] svg { transform: rotate(45deg); }

.faq-a {
  padding: 20px;
  font-size: 15px;
  text-align: left;
  color: var(--ink-2);
  line-height: 1.65;
  font-weight: 300;
  display: none;
}

.faq-item.open .faq-a { display: block; }

/* ── CTA FOOTER ── */
.cta-section {
  background: var(--accent);
  color: #fff;
  text-align: center;
}

.cta-section h2 { color: #fff; }
.cta-section h2 em { color: var(--accent-2); }

.cta-section .lead { color: rgba(255,255,255,0.65); margin: 0 auto; }

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--accent);
  padding: 15px 28px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-cta-white:hover { background: var(--accent-light); transform: translateY(-2px); }

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.75);
  padding: 15px 22px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.15s;
}
.btn-cta-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

.hero-section {
  padding: 150px 80px 24px;
}

.card-inner {
  margin-top: 20px;
  margin-left: 20px;
  margin-bottom: 40px;
}

section#privacy-policy ul,
.card-inner ul {
  margin-left: 20px;
  padding-left: 40px;
}

.release-list {
  margin-top: 24px;
  padding-left: 24px;
}

.release-list > li {
  margin-bottom: 28px;
}

.release-list h3 {
  margin-bottom: 8px;
}

.release-list small {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 400;
  margin-left: 8px;
}

/*404 PAGE */

.error-page {
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 200px 0;
  height: 90vh;
}

.error-page h1 {
  font-size: 200px;
  font-weight: 800;
  color: var(--ink);
}

.error-page p {
  font-size: 20px;
  font-weight: 400;
  color: var(--ink-2);
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.4);
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
}

footer a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
footer a:hover { color: #fff; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BADGE ── */
.pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  nav { padding: 14px 20px; }
  nav .nav-links a:not(.btn-cta-sm) { display: none; }
  h1 { font-size: 42px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card-large { grid-row: auto; }
  .session-screen { grid-template-columns: 1fr; }
  .screen-sidebar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .screen-main { padding: 18px; }
  .showcase-screen { min-height: auto; }
  .popup-ui { grid-template-columns: 1fr; }
  .popup-right { display: none; }
  .steps::before { display: none; }
  .step { padding: 0 12px 32px; }
}
