/* ── VARIABLES ── */
:root {
  --accent: #e8e3dc;
  --accent-dim: #c8c3bc;
  --accent-glow: rgba(232, 227, 220, 0.08);
  --bg: #141414;
  --bg-card: #1c1c1c;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(232, 227, 220, 0.18);
  --text: #f0ede8;
  --text-muted: #9f9b95;
  --text-dim: #5c5c5c;
  --font: "Inter", sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection {
  background: rgba(232, 227, 220, 0.15);
  color: #f0ede8;
}

/* ── ORBS BACKGROUND ── */
/* ── LAYOUT ── */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
  z-index: 1;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 64px);
  max-width: 860px;
  padding: 14px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(24px) saturate(1.6);
  background: linear-gradient(
    135deg,
    rgba(30, 28, 26, 0.82) 0%,
    rgba(22, 20, 18, 0.88) 50%,
    rgba(28, 26, 24, 0.82) 100%
  );
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  align-items: center;
  text-decoration: none;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}
nav ul a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
nav ul a:hover {
  color: var(--text);
}
.nav-cta {
  background: var(--accent) !important;
  color: #1a1816 !important;
  padding: 7px 16px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 13px;
  transition: background 0.2s, transform 0.15s, opacity 0.2s !important;
}
.nav-cta:hover {
  opacity: 0.88 !important;
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  padding: 190px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 227, 220, 0.05) 0%,
    transparent 68%
  );
  pointer-events: none;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-text {
  flex: 1;
  min-width: 0;
}
.hero-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
}
h1 {
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  animation: fadeUp 0.65s 0.1s var(--ease) both;
}
h1 .accent {
  color: var(--accent);
}
.hero-scroll-text {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-muted);
}
.hero-scroll-text .word {
  display: inline-block;
  color: var(--text-dim);
  transition: color 0.4s var(--ease);
  margin-right: 0.22em;
}
.hero-scroll-text .word.lit {
  color: var(--text-muted);
}
.hero-scroll-text .word.accent-word.lit {
  color: var(--accent);
}
.hero-sub {
  margin-top: 26px;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 400;
  animation: fadeUp 0.65s 0.2s var(--ease) both;
}
.hero-actions {
  margin-top: 42px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.65s 0.3s var(--ease) both;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #1a1816;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 227, 220, 0.1);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 227, 220, 0.06);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid rgba(232, 227, 220, 0.2);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-ghost:hover {
  background: rgba(232, 227, 220, 0.1);
  border-color: rgba(232, 227, 220, 0.35);
  transform: translateY(-2px);
}

/* ── SCROLL-JACKED TEXT REVEAL ── */
.scroll-reveal-section {
  position: relative;
  height: 300vh;
}
.scroll-reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.scroll-reveal-text {
  max-width: 780px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
  text-align: center;
}
.scroll-reveal-text .sr-word {
  display: inline;
  color: var(--text-dim);
  transition: color 0.15s var(--ease);
}
.scroll-reveal-text .sr-word.lit {
  color: var(--text);
}
.scroll-reveal-text .sr-word.accent.lit {
  color: var(--accent);
}

/* ── FEATURES SECTION ── */
section.features {
  padding: 160px 0 180px;
  border-top: 1px solid var(--border);
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.section-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2.5s ease infinite;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 88px;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
  text-align: left;
}

/* ── BENTO GRID ── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}
.bento-card.accent-card {
  border-color: var(--border-accent);
  background: linear-gradient(
    145deg,
    rgba(232, 227, 220, 0.05) 0%,
    var(--bg-card) 55%
  );
}
.bento-card.accent-card:hover {
  border-color: var(--accent-dim);
}
.card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(232, 227, 220, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.span-7 {
  grid-column: span 7;
}
.span-5 {
  grid-column: span 5;
}
.span-4 {
  grid-column: span 4;
}
.span-12 {
  grid-column: span 12;
}

.card-body {
  padding: 48px;
}
.card-body-sm {
  padding: 40px;
}
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.card-label i {
  font-size: 11px;
}
.card-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 12px;
}
.card-title.lg {
  font-size: 26px;
}
.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Not a webview card */
.card-rust {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
}
.stat-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 14px;
}
.stat-big {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.stat-unit {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Privacy */
.privacy-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 28px;
}
.privacy-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.privacy-row:last-child {
  border-bottom: none;
}
.privacy-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(232, 227, 220, 0.06);
  border: 1px solid rgba(232, 227, 220, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.privacy-icon i {
  font-size: 13px;
  color: var(--accent);
}
.privacy-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.privacy-text span {
  font-size: 12px;
  color: var(--text-dim);
}

/* Modes */
.modes-strip {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.mode-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  transition: background 0.25s, border-color 0.25s;
}
.mode-pill:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
.mode-pill.active {
  background: rgba(232, 227, 220, 0.05);
  border-color: var(--border-accent);
}
.mode-chord {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  color: var(--text-muted);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 5px;
  font-family: monospace;
}
.mode-pill.active .kbd {
  background: var(--accent);
  color: #1a1816;
  border-color: var(--accent-dim);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  font-weight: 700;
}
.kbd-sep {
  font-size: 10px;
  color: var(--text-dim);
}
.mode-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.mode-desc-sm {
  font-size: 11px;
  color: var(--text-dim);
}
.mode-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-dim);
  margin-top: 10px;
}
.mode-pill.active .mode-dot {
  background: var(--accent);
  box-shadow: 0 0 6px rgba(232, 227, 220, 0.4);
}
.mode-pill.quit .mode-dot {
  background: rgba(255, 100, 100, 0.4);
}
.mode-pill.hide .mode-dot {
  background: rgba(255, 200, 80, 0.4);
}

/* Overrides */
.override-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.override-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.override-match {
  font-family: monospace;
  font-size: 11px;
  color: var(--text-dim);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 4px;
}
.override-arrow {
  color: var(--text-dim);
  font-size: 9px;
}
.override-app {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.override-app i {
  color: var(--accent);
  font-size: 11px;
}
.kbd.sm {
  font-size: 11px;
  padding: 3px 8px;
  min-width: 26px;
}

/* Blacklist */
.blacklist-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 24px;
}
.bl-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-dim);
}
.bl-row span {
  text-decoration: line-through;
  opacity: 0.45;
}
.bl-row i {
  color: rgba(255, 80, 80, 0.45);
  font-size: 11px;
  flex-shrink: 0;
}
.bl-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* Prefix skipping */
.prefix-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 24px;
}
.prefix-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.prefix-vendor {
  font-family: monospace;
  font-size: 11px;
  color: var(--text-dim);
  text-decoration: line-through;
  opacity: 0.55;
}
.prefix-app {
  font-size: 12px;
  color: var(--text-muted);
}
.prefix-arrow {
  color: var(--text-dim);
  font-size: 9px;
}

/* Themes scroller */
.themes-scroller-wrap {
  margin-top: 28px;
  overflow: hidden;
  position: relative;
}
.themes-scroller-wrap::before,
.themes-scroller-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.themes-scroller-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-card), transparent);
}
.themes-scroller-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-card), transparent);
}
.themes-scroller {
  display: flex;
  gap: 10px;
  animation: scrollThemes 28s linear infinite;
  width: max-content;
}
.themes-scroller:hover {
  animation-play-state: paused;
}
@keyframes scrollThemes {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.theme-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  transition: transform 0.2s;
}
.theme-chip:hover {
  transform: translateY(-2px);
}
.theme-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Instant setup */
.setup-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 28px;
}
.setup-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
  padding-right: 20px;
}
.setup-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 14px;
  width: 1px;
  height: 28px;
  background: var(--border);
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(232, 227, 220, 0.07);
  border: 1px solid rgba(232, 227, 220, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}
.step-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.step-sub {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ── PRICING ── */
section.pricing {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.price-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.price-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}
.price-card-hidden {
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  width: 0;
  max-width: 0;
  padding: 0;
  overflow: hidden;
  border-width: 0;
  margin: 0;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    width 0.35s var(--ease),
    max-width 0.35s var(--ease),
    padding 0.35s var(--ease),
    border-width 0.35s var(--ease),
    margin 0.35s var(--ease);
}
.price-card-hidden.price-card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  width: 100%;
  max-width: 340px;
  padding: 36px 32px;
  border-width: 1px;
  margin: 0;
}
.price-card-featured {
  border-color: var(--border-accent);
  background: linear-gradient(
    160deg,
    rgba(232, 227, 220, 0.06) 0%,
    var(--bg-card) 60%
  );
  box-shadow: 0 0 0 1px var(--border-accent), 0 20px 60px rgba(0, 0, 0, 0.4);
}
.price-card-featured:hover {
  border-color: var(--accent-dim);
  transform: translateY(-4px);
}
.price-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(232, 227, 220, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.price-badge {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.price-badge-featured {
  background: rgba(232, 227, 220, 0.1);
  color: var(--accent);
  border-color: var(--border-accent);
}
.price-amount {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.price-card-featured .price-amount {
  color: var(--accent);
}
.price-amount sup {
  font-size: 20px;
  font-weight: 500;
  vertical-align: super;
  line-height: 0;
}
.price-type {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
  margin-bottom: 28px;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.price-features li i {
  font-size: 11px;
  flex-shrink: 0;
}
.price-card .price-features li i {
  color: var(--text-dim);
}
.price-card-featured .price-features li i {
  color: var(--accent);
}
.price-x {
  color: rgba(255, 80, 80, 0.45) !important;
}
.btn-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-price:hover {
  transform: translateY(-2px);
}
.btn-price-default {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-price-default:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
}
.btn-price-featured {
  background: var(--accent);
  color: #1a1816;
  box-shadow: 0 4px 20px rgba(232, 227, 220, 0.15);
}
.btn-price-featured:hover {
  opacity: 0.9;
  box-shadow: 0 8px 28px rgba(232, 227, 220, 0.2);
}
.btn-price-trial {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-price-trial:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}
.price-expand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 12px;
  color: var(--text);
  padding: 6px 0;
}
.price-expand-btn:hover {
  color: var(--text-muted);
}
.price-expand-icon {
  font-size: 10px;
  transition: transform 0.3s var(--ease);
}
.price-expand-btn.expanded .price-expand-icon {
  transform: rotate(180deg);
}
.price-expand-text {
  font-size: 0;
}
.price-expand-text::before {
  font-size: 12px;
}
.price-expand-btn:not(.expanded) .price-expand-text::before {
  content: "Need more devices?";
}
.price-expand-btn.expanded .price-expand-text::before {
  content: "Fewer options";
}

/* ── FAQ ── */
section.faq {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}
.faq-item.open {
  border-color: var(--border-accent);
  background: #1f1e1c;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  text-align: left;
}
.faq-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-item.open .faq-icon-wrap {
  background: rgba(232, 227, 220, 0.09);
  border-color: var(--border-accent);
}
.faq-icon-wrap i {
  font-size: 13px;
  color: var(--text-muted);
}
.faq-item.open .faq-icon-wrap i {
  color: var(--accent);
}
.faq-text-group {
  flex: 1;
  min-width: 0;
}
.faq-text-group h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.faq-item.open .faq-text-group h3 {
  color: var(--accent);
}
.faq-hint {
  font-size: 12px;
  color: var(--text-dim);
  max-height: 20px;
  opacity: 1;
  transition: max-height 0.3s, opacity 0.25s;
}
.faq-item.open .faq-hint {
  max-height: 0;
  opacity: 0;
}
.faq-chevron {
  font-size: 11px;
  color: var(--text-dim);
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.35s, color 0.25s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s var(--ease);
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
}
.faq-answer-body {
  padding: 16px 22px 22px 70px;
  border-top: 1px solid var(--border);
}
.faq-answer-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.faq-tag i {
  font-size: 10px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 0;
}
footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 5px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text-muted);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .span-7, .span-5, .span-4 {
    grid-column: span 12;
  }
  .modes-strip {
    flex-wrap: wrap;
  }
  .mode-pill {
    min-width: calc(50% - 5px);
  }
  .setup-steps {
    flex-direction: column;
    gap: 16px;
  }
  .setup-step::after {
    display: none;
  }
  .setup-step {
    padding-right: 0;
  }
  .card-body, .card-body-sm {
    padding: 28px 24px;
  }
}

@media (max-width: 760px) {
  nav {
    top: 12px;
    width: calc(100% - 32px);
  }
  nav ul {
    display: none;
  }
  .hero {
    padding: 140px 0 80px;
  }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-icon-wrap {
    display: none;
  }
  .price-grid {
    flex-direction: column;
    align-items: center;
  }
  .price-card {
    max-width: 100%;
    width: 100%;
  }
  .price-card-hidden.price-card-visible {
    max-width: 100%;
  }
  .faq-question {
    padding: 16px 18px;
    gap: 12px;
  }
  .faq-answer-body {
    padding: 14px 18px 18px 18px;
  }
  .faq-hint {
    display: none;
  }
  .faq-icon-wrap {
    width: 30px;
    height: 30px;
  }
}

/* Tree demo */
.tree-demo {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 32px;
  flex-wrap: wrap;
}
.tree-panel {
  flex: 1;
  min-width: 240px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.tree-header {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.tree-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  margin-bottom: 2px;
  font-size: 12px;
}
.tree-row.active {
  background: rgba(232, 227, 220, 0.07);
  border: 1px solid var(--border-accent);
}
.tree-row.active .kbd {
  background: var(--accent);
  color: #1a1816;
  border-color: var(--accent-dim);
  font-weight: 700;
}
.tree-branch-line {
  width: 8px;
  align-self: stretch;
  border-left: 1px solid rgba(232, 227, 220, 0.15);
  flex-shrink: 0;
}
.tree-branch-line.dim {
  border-left-color: var(--border);
}
.tree-app {
  color: var(--text-muted);
  flex: 1;
}
.tree-app.muted {
  color: var(--text-dim);
}
.tree-match {
  font-size: 10px;
  color: var(--text-dim);
}
.tree-row.active .tree-match {
  color: var(--text-muted);
}

.tree-steps {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tree-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.tree-step.highlighted {
  border-color: var(--border-accent);
  background: rgba(232, 227, 220, 0.03);
}
.tree-step-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 5px;
}
.tree-step.highlighted .tree-step-label {
  color: var(--accent);
}
.tree-step-body {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.tree-step-body code {
  font-family: monospace;
  font-size: 11px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1px 5px;
  border-radius: 4px;
  color: var(--accent);
}

/* ── FEATURE CAROUSEL ── */
.feature-carousel {
  overflow: hidden;
}

.fc-stage {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.fc-card {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  flex-shrink: 0;
  transition: opacity 0.3s var(--ease);
}
.fc-card.main {
  flex: 1;
  min-width: 0;
  cursor: default;
  z-index: 2;
}
.fc-card.peek {
  width: 100px;
  opacity: 0.3;
  cursor: pointer;
}
.fc-card.peek:hover {
  opacity: 0.55;
}
.fc-card.peek-prev {
  order: -1;
}

.fc-main-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px;
}
.fc-text {
  flex: 0 0 220px;
}

.fc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.fc-title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 10px;
}
.fc-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.fc-pills {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fc-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
}
.fc-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.fc-visual {
  flex: 1;
  min-width: 0;
}
.fc-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-dim);
  font-family: monospace;
}
.fc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fc-themes-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  min-width: 0;
}
@media (max-width: 860px) {
  .fc-themes-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .fc-themes-row {
    grid-template-columns: 1fr;
  }
}
.fc-theme-item {
  min-width: 0;
}
.fc-theme-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-theme-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s var(--ease);
}
.fc-theme-img img:hover {
  transform: scale(1.03);
}
.fc-theme-label {
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 6px;
}
.fc-theme-item {
  flex: 1;
}
.fc-theme-img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-dim);
  font-family: monospace;
}
.fc-theme-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fc-theme-label {
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 5px;
}

.fc-peek-inner {
  padding: 24px 14px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.fc-peek-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
}
.fc-peek-arrow {
  font-size: 16px;
  color: var(--text-dim);
}

.fc-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 20px;
}
.fc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-accent);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.fc-dot.active {
  background: var(--accent);
  width: 18px;
  border-radius: 3px;
}

@media (max-width: 760px) {
  .fc-main-inner {
    flex-direction: column;
    padding: 28px 24px;
  }
  .fc-text {
    flex: none;
    width: 100%;
  }
  .fc-card.peek {
    display: none;
  }
}

@keyframes cardExpand {
  from { opacity: 0; transform: scale(0.95) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes cardShrink {
  from { opacity: 1; transform: scale(1) translateY(0); }
  to   { opacity: 0; transform: scale(0.95) translateY(-8px); }
}
.fc-card.main.anim-expand {
  animation: cardExpand 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.fc-card.main.anim-shrink {
  animation: cardShrink 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.fc-card.peek.anim-expand {
  animation: cardExpand 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ── IMAGE LIGHTBOX ── */
.img-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.img-lightbox.open {
  display: flex;
}
.img-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: modal-in 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.img-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1002;
}
.img-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
}
