:root {
  --bg: #07090f;
  --ink: #07090f;
  --ink-2: #10141d;
  --ink-3: #171c28;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --muted: #9aa3b5;
  --muted-light: #d5dbe6;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(255, 255, 255, 0.08);
  --paper: #0b0e14;
  --surface: rgba(255, 255, 255, 0.04);
  --accent: #ff9a2e;
  --accent-hot: #ffb45c;
  --accent-deep: #e06a12;
  --accent-glow: rgba(255, 154, 46, 0.42);
  --blue: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.28);
  --green: #10b981;
  --header: 76px;
  --radius: 18px;
  --radius-lg: 26px;
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-sans: "Space Grotesk", "Segoe UI", sans-serif;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: #f4f6fa;
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; color: var(--muted); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 0.5em;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}

.container-narrow { width: min(760px, calc(100% - 40px)); margin-inline: auto; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(7, 9, 15, 0.72);
  backdrop-filter: blur(22px) saturate(1.3);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 9, 15, 0.92);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: calc(var(--header) - 1px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-mark-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  filter: drop-shadow(0 0 12px rgba(255, 154, 46, 0.4));
}

.hero-logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 22px;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 0 28px rgba(255, 154, 46, 0.55));
  animation: logoPulse 3.6s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 22px rgba(255, 154, 46, 0.4)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 36px rgba(255, 154, 46, 0.7)); transform: scale(1.03); }
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-text small {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
}

.main-nav {
  display: none;
  gap: 26px;
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

.main-nav a { transition: color 0.2s ease; }
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: #fff; }

.nav-end {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-end .btn,
.nav-end .btn-ghost { display: none; }

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--glass);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 16px;
  height: 1.5px;
  background: #fff;
  display: block;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 20px 20px;
  background: #07090f;
  border-bottom: 1px solid var(--line);
}

.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.72em 1.25em;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-solid {
  background: #fff;
  color: #0b0e14;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-solid:hover { background: #f3f5f8; }

.btn-accent {
  background: linear-gradient(135deg, var(--accent-hot) 0%, var(--accent) 45%, var(--accent-deep) 100%);
  color: #140c04;
  box-shadow: 0 0 0 1px rgba(255, 180, 92, 0.35), 0 12px 36px var(--accent-glow);
}
.btn-accent:hover {
  box-shadow: 0 0 0 1px rgba(255, 180, 92, 0.55), 0 16px 40px rgba(255, 154, 46, 0.55);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.btn-line-light {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-line-light:hover {
  border-color: rgba(255, 154, 46, 0.45);
  background: rgba(255, 154, 46, 0.08);
}

.btn-lg { padding: 0.9em 1.5em; font-size: 0.95rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  padding: 28px 0 0;
  background:
    radial-gradient(900px 480px at 18% 0%, rgba(255, 154, 46, 0.16), transparent 55%),
    radial-gradient(700px 420px at 85% 15%, rgba(59, 130, 246, 0.12), transparent 50%),
    linear-gradient(180deg, #07090f 0%, #0b0e14 55%, #10141d 100%);
  color: #fff;
  overflow: clip;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 35%, rgba(255, 154, 46, 0.08) 48%, transparent 62%),
    linear-gradient(128deg, transparent 42%, rgba(255, 255, 255, 0.04) 50%, transparent 58%);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  transform: perspective(600px) rotateX(58deg) scale(1.4);
  transform-origin: center top;
}

.hero-intro {
  position: relative;
  z-index: 1;
  padding: 40px 0 28px;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 154, 46, 0.55);
  background: rgba(255, 154, 46, 0.08);
  box-shadow: 0 0 28px rgba(255, 154, 46, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hot);
}

.brand-mark {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #fff;
}

.hero h1 {
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 14px;
  max-width: 25ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-hot);
  text-shadow: 0 0 30px rgba(255, 154, 46, 0.35);
}

.hero-lead {
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.58);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 24px));
  margin: 20px auto 0;
}

.hero-browser {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 0 0 1px rgba(255, 154, 46, 0.08),
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(255, 154, 46, 0.12);
  backdrop-filter: blur(16px);
  animation: heroLift 1.1s var(--ease) both;
}

.hero-browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.hero-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-browser-bar em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.hero-shot { margin: 0; }
.hero-shot img { width: 100%; }

.hero-brand-art {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 154, 46, 0.1),
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 90px rgba(255, 154, 46, 0.18);
  animation: heroLift 1.1s var(--ease) both;
}

.hero-brand-art img { width: 100%; display: block; }

@keyframes heroLift {
  from { opacity: 0; transform: translateY(28px) scale(0.985); }
  to { opacity: 1; transform: none; }
}

/* Trust band */
.trust-band {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--line);
  padding: 22px 0;
}

.trust-grid {
  display: grid;
  gap: 14px 24px;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

.trust-grid p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.48);
}

.trust-grid strong {
  color: #fff;
  font-weight: 700;
}

/* Sections */
.section { padding: 96px 0; }

.section-dark {
  background: linear-gradient(180deg, #0b0e14 0%, #10141d 100%);
  color: #fff;
}

.section-dark h2,
.section-dark h3 { color: #fff; }

.section-dark .section-lead,
.section-dark p { color: rgba(255, 255, 255, 0.58); }

.section-muted {
  background: #0a0d13;
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.section-lead {
  font-size: 1.05rem;
  max-width: 56ch;
}

.section-head--center .section-lead {
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
  text-shadow: 0 0 20px rgba(255, 154, 46, 0.35);
}

/* Feature tabs */
.feature-tabs {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--glass);
  backdrop-filter: blur(18px);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.feature-tablist {
  display: flex;
  gap: 4px;
  padding: 8px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.feature-tab {
  flex: 1 0 auto;
  min-width: max-content;
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.feature-tab:hover { color: #fff; }

.feature-tab.is-active {
  background: rgba(255, 154, 46, 0.14);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 154, 46, 0.35);
}

.feature-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 32px 24px 24px;
  align-items: center;
}

.feature-panel.is-active { display: grid; }

.feature-panel-copy h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.tick-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.tick-list li {
  position: relative;
  padding-left: 1.5em;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.feature-panel-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.feature-panel-media img { width: 100%; }

/* Bento */
.bento-grid { display: grid; gap: 18px; }

.bento-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s ease, transform 0.3s var(--ease);
}

.bento-card:hover {
  border-color: rgba(255, 154, 46, 0.35);
  transform: translateY(-3px);
}

.bento-card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.bento-card p { font-size: 0.92rem; margin: 0; }

.bento-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 154, 46, 0.28), rgba(59, 130, 246, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 4px;
  position: relative;
  box-shadow: 0 0 24px rgba(255, 154, 46, 0.2);
}

.bento-icon::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 3px;
  background: var(--accent);
  box-shadow: 12px 0 0 rgba(255, 255, 255, 0.35), 0 12px 0 rgba(255, 255, 255, 0.2);
}

.bento-icon--cleanup::after {
  inset: 13px 11px;
  border-radius: 2px;
  box-shadow: none;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
}

.bento-icon--log::after {
  inset: 10px 12px;
  border-radius: 2px;
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.25), 0 16px 0 rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.85);
}

.bento-card figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.bento-card figure img { width: 100%; }

/* Steps */
.steps-grid { display: grid; gap: 20px; }

.step-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 154, 46, 0.35);
  box-shadow: 0 22px 50px rgba(255, 154, 46, 0.12);
}

.step-num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
  text-shadow: 0 0 18px rgba(255, 154, 46, 0.4);
}

.step-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.step-card p { margin: 0; font-size: 0.92rem; }
.step-card strong { color: #fff; font-weight: 700; }

/* Compare */
.compare-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: auto;
  background: var(--glass);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.compare-table thead th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.28);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #fff;
}

.compare-pro-col { color: var(--accent) !important; }
.compare-table tbody tr:last-child td { border-bottom: 0; }

.tick {
  color: var(--green);
  font-weight: 800;
  font-size: 1.1rem;
}

/* Pricing */
.pricing-toggle {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding: 5px;
  margin: 0 auto 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.pricing-toggle-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-toggle-btn:hover { color: #fff; }

.pricing-toggle-btn.is-active {
  background: linear-gradient(135deg, var(--accent-hot), var(--accent));
  color: #140c04;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.pricing-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(16px);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.price-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.price-amount .currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

.price-value {
  font-size: clamp(2.6rem, 5vw, 3.2rem);
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

.price-amount .period {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 4px;
}

.price-desc {
  margin: 0 0 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
}

.price-features {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  flex: 1;
}

.price-features li {
  position: relative;
  padding-left: 1.4em;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.price-card-featured {
  border-color: rgba(255, 154, 46, 0.5);
  background: linear-gradient(165deg, rgba(255, 154, 46, 0.14) 0%, rgba(255, 255, 255, 0.03) 45%);
  box-shadow: 0 28px 70px rgba(255, 154, 46, 0.18);
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent));
  color: #140c04;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-footnote {
  max-width: 62ch;
  margin: 32px auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

.pricing-footnote a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* FAQ */
.faq-grid { display: grid; gap: 14px; }

.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(14px);
  padding: 0 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-card[open] {
  border-color: rgba(255, 154, 46, 0.4);
  box-shadow: 0 12px 40px rgba(255, 154, 46, 0.1);
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 20px 28px 20px 0;
  position: relative;
  color: #fff;
}

.faq-card summary::-webkit-details-marker { display: none; }

.faq-card summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--muted);
}

.faq-card[open] summary::after {
  content: "−";
  color: var(--accent);
}

.faq-card p {
  margin: 0;
  padding: 0 0 20px;
  font-size: 0.92rem;
}

.faq-card a {
  color: var(--accent-hot);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* CTA */
.cta-band {
  position: relative;
  padding: 100px 0;
  background: #07090f;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 280px at 50% 0%, var(--accent-glow), transparent 65%),
    radial-gradient(500px 240px at 20% 100%, var(--blue-glow), transparent 60%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-band h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  max-width: 22ch;
  margin-inline: auto;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 28px;
  max-width: 48ch;
  margin-inline: auto;
}

.cta-band .hero-cta { justify-content: center; }

/* Footer */
.site-footer {
  background: #05070b;
  color: rgba(255, 255, 255, 0.58);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}

.site-footer .brand { color: #fff; margin-bottom: 12px; }

.footer-blurb {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-grid h4 {
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-grid a:hover { color: #fff; }

.footer-bottom {
  padding-top: 22px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom p { margin: 0; color: inherit; }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 24px;
  }
  .feature-panel {
    grid-template-columns: 0.95fr 1.05fr;
    padding: 36px 32px 28px;
  }
}

@media (min-width: 900px) {
  .main-nav,
  .nav-end .btn { display: inline-flex; }
  .nav-end .btn-ghost { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-end { margin-left: 0; }
  .hero-intro { padding: 56px 0 36px; }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (max-width: 599px) {
  .hero-browser-bar em { display: none; }
  .hero-logo { width: 72px; height: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-browser,
  .hero-brand-art { animation: none; }
  .hero-logo { animation: none; }
  .btn:hover,
  .step-card:hover,
  .price-card:hover,
  .bento-card:hover { transform: none; }
}

/* Docs */
.page-docs .docs-shell {
  display: grid;
  gap: 40px;
  padding: 48px 0 96px;
}

.docs-nav {
  position: sticky;
  top: calc(var(--header) + 16px);
  align-self: start;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(16px);
}

.docs-nav h2 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--muted);
}

.docs-nav a {
  display: block;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
}

.docs-nav a:last-child { border-bottom: 0; }
.docs-nav a:hover { color: var(--accent-hot); }

.docs-content h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-top: 2.2em;
  scroll-margin-top: calc(var(--header) + 24px);
}

.docs-content h2:first-child { margin-top: 0; }

.docs-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.6em 0 0.6em;
}

.docs-content p,
.docs-content li {
  color: var(--muted);
  font-size: 0.98rem;
}

.docs-content ul,
.docs-content ol {
  margin: 0 0 1.2em;
  padding-left: 1.2em;
  list-style: disc;
}

.docs-content ol { list-style: decimal; }
.docs-content li { margin-bottom: 0.45em; }

.docs-content a {
  color: var(--accent-hot);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.docs-callout {
  margin: 1.4em 0;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 154, 46, 0.35);
  background: rgba(255, 154, 46, 0.08);
  box-shadow: 0 0 30px rgba(255, 154, 46, 0.08);
}

.docs-callout p { margin: 0; color: rgba(255, 255, 255, 0.85); }

.docs-content code,
.docs-content kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86em;
  padding: 0.12em 0.4em;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.docs-hero {
  padding: 56px 0 24px;
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(255, 154, 46, 0.16), transparent 60%),
    linear-gradient(165deg, #07090f 0%, #10141d 100%);
  color: #fff;
  border-bottom: 1px solid var(--line);
}

.docs-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}

.docs-hero p {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

@media (min-width: 960px) {
  .page-docs .docs-shell {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 56px;
  }
}
