/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --text: #EDEDEF;
  --text-secondary: #8A8F98;
  --text-tertiary: #5A5F6B;
  --bg: #050506;
  --bg-card: #0a0a0c;
  --bg-elevated: #111113;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.05);
  --primary: #5E6AD2;
  --primary-hover: #7078E0;
  --green: #4ADE80;
  --red: #EF4444;
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1080px;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Accessibility & Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

a, button, [role="button"], .btn, .feature-card, .shortcut-item {
  cursor: pointer;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.btn:active {
  transform: scale(0.98);
}
.btn-sm {
  font-size: 13px;
  padding: 6px 16px;
}
.btn-lg {
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}
.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 5, 6, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.nav-links a:not(.btn):hover {
  color: var(--text);
}

/* ── Hero ── */
.hero {
  padding: 140px 32px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
.hero-tag {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ── Mockup Overlay ── */
.hero-visual {
  display: flex;
  justify-content: center;
}
.mockup-wrapper {
  position: relative;
}
.mockup-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(239, 68, 68, 0.35);
}
.mockup-overlay {
  width: 320px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0;
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.4),
    0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.mockup-dot.rec {
  background: var(--red);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
  animation: pulse 1.4s ease-in-out infinite;
}
.mockup-title {
  font-size: 13px;
  font-weight: 600;
  flex: 1;
}
.mockup-time {
  font-size: 12px;
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
}
.mockup-section {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.mockup-section:last-child {
  border-bottom: none;
}
.mockup-section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}
.mockup-item {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}
.mockup-item:last-child {
  border-bottom: none;
}

/* ── Comparison Section ── */
.compare {
  padding: 96px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compare .section-inner > h2 {
  margin-bottom: 16px;
}
.compare-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}
.compare-table-wrap {
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
}
.compare-table thead th {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.compare-table thead th:first-child {
  width: 180px;
}
.compare-table thead .col-them {
  color: var(--text-tertiary);
}
.compare-table thead .col-us {
  color: var(--primary);
}
.compare-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  transition: background 0.15s;
}
.compare-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table .row-label {
  font-weight: 600;
  color: var(--text);
}
.compare-table .col-them {
  color: var(--text-secondary);
}
.compare-table .col-us {
  color: var(--text);
  font-weight: 500;
}
.x-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}
.check-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.15);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  margin-right: 8px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ── Stealth Section ── */
.stealth {
  padding: 96px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stealth .section-tag {
  color: var(--red);
}
.stealth .section-inner > h2 {
  color: var(--text);
}
.stealth-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
  margin-top: -32px;
  margin-bottom: 48px;
}

/* Side-by-side demo */
.stealth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.stealth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.stealth-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.stealth-icon {
  width: 40px;
  height: 40px;
  background: rgba(94, 106, 210, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.stealth-icon.ghost {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
}
.stealth-card h3 {
  font-size: 16px;
  font-weight: 700;
}
.stealth-card > p {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 16px;
  line-height: 1.5;
}

/* Mini desktop mockups */
.stealth-demo {
  background: #060607;
  border-radius: 8px;
  padding: 16px;
  position: relative;
  min-height: 120px;
}
.demo-window {
  background: #111113;
  border-radius: 6px;
  overflow: hidden;
}
.demo-bar {
  height: 10px;
  background: #1a1a1c;
  display: flex;
  align-items: center;
  padding: 0 6px;
  gap: 3px;
}
.demo-bar::before,
.demo-bar::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #333;
}
.demo-bar::before {
  box-shadow: 8px 0 0 #333, 16px 0 0 #333;
}
.demo-bar::after {
  display: none;
}
.demo-content {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.demo-line {
  height: 4px;
  background: #222;
  border-radius: 2px;
}
.demo-line.w50 { width: 50%; }
.demo-line.w60 { width: 60%; }
.demo-line.w70 { width: 70%; }
.demo-line.w80 { width: 80%; }
.demo-line.w90 { width: 90%; }

/* The LiveCue overlay inside the "you" demo */
.demo-cue {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 90px;
  background: #1a1a1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 8px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  animation: cue-pulse 2s ease-in-out infinite;
}
@keyframes cue-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
  50% { box-shadow: 0 0 14px 2px rgba(239, 68, 68, 0.2); }
}
.demo-cue-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 1px;
  flex-shrink: 0;
}
.demo-cue-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.demo-cue-lines .demo-line {
  background: #333;
  height: 3px;
}

/* Technical details row */
.stealth-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.detail-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  flex-shrink: 0;
}
.detail-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.detail-item p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

/* ── Trust Strip ── */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.strip-svg {
  color: var(--red);
  flex-shrink: 0;
}
.strip-svg.accent {
  color: var(--primary);
}

/* ── Section common ── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.section-tag {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-inner > h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}

/* ── Features ── */
.features {
  padding: 96px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(94, 106, 210, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.feature-icon.icon-red {
  background: rgba(239, 68, 68, 0.12);
  color: var(--red);
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── Use Cases ── */
.use-cases {
  padding: 96px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.case-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.case-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
.case-icon {
  width: 48px;
  height: 48px;
  background: rgba(94, 106, 210, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.case-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.case-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── How It Works ── */
.how-it-works {
  padding: 96px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.step-line {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 24px;
  flex-shrink: 0;
}

/* ── Shortcuts ── */
.shortcuts {
  padding: 96px 0;
}
.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.shortcut-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.shortcut-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.shortcut-item kbd {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 8px;
}
.shortcut-item .key-mac {
  display: block;
}
.shortcut-item .key-win {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 10px;
}
.shortcut-item span {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── Pricing ── */
.pricing {
  padding: 96px 0;
}
.pricing .section-inner > h2 {
  text-align: center;
}
.pricing .section-tag {
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 1140px;
  margin: 0 auto;
}
.pricing-note {
  text-align: center;
  color: var(--text-tertiary);
  margin-top: 28px;
  font-size: 14px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px 32px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(94, 106, 210, 0.18);
  background: var(--bg-elevated);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
}
.price {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-period {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}
.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li:last-child {
  border-bottom: none;
}
.price-features li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.btn-full {
  width: 100%;
  text-align: center;
}

/* ── FAQ ── */
.faq {
  padding: 96px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-list {
  max-width: 720px;
  margin: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color 0.15s;
  gap: 16px;
}
.faq-item summary:hover {
  color: var(--primary);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--text-tertiary);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}
.faq-item[open] summary::after {
  content: "\2212";
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.faq-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 0 0 24px;
  max-width: 640px;
}

/* ── Download CTA ── */
.download {
  padding: 96px 0;
  text-align: center;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.download h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.download > .section-inner > p:first-of-type {
  font-size: 18px;
  color: var(--text-secondary);
}
.download-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.download-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.7;
}
.download-note a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Disclaimer ── */
.disclaimer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.disclaimer p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-tertiary);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ── Footer ── */
.footer {
  padding: 40px 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.footer-brand {
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-tertiary);
}
.footer-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-tertiary);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--text-secondary);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .mockup-overlay {
    width: 280px;
  }
  .stealth-grid {
    grid-template-columns: 1fr;
  }
  .stealth-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stealth-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
  }
  .steps {
    flex-direction: row;
  }
  .step {
    padding: 0 16px;
  }
  .shortcut-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 36px;
  }
  .section-inner > h2 {
    font-size: 28px;
  }
  .download h2 {
    font-size: 28px;
  }
  .compare-table thead th:first-child {
    width: 120px;
  }
  .compare-table {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .nav-links a:not(.btn) {
    display: none;
  }
  .hero {
    padding: 100px 20px 60px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .section-inner {
    padding: 0 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .shortcut-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .strip-inner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
  }
  .stealth-details {
    grid-template-columns: 1fr;
  }
}

/* ── Waitlist form ── */
.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 8px 0 10px;
}
.waitlist-form-center {
  margin-left: auto;
  margin-right: auto;
}
.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
  font-size: 15px;
}
.waitlist-form input[type="email"]::placeholder {
  color: var(--text-tertiary);
}
.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
}
.waitlist-form .btn {
  white-space: nowrap;
}
.waitlist-msg {
  min-height: 1.1em;
  font-size: 14px;
  color: var(--green);
  margin: 0 0 6px;
}
.waitlist-msg.is-error {
  color: var(--red);
}
@media (max-width: 560px) {
  .waitlist-form {
    flex-direction: column;
  }
  .waitlist-form .btn {
    width: 100%;
  }
}
