/* Alienx Suite — Kickstarter hotsite */
:root {
  --bg: #080b10;
  --bg-elevated: #0f141c;
  --bg-card: #141b26;
  --border: #243044;
  --text: #e8eef6;
  --text-muted: #8b9cb3;
  --accent: #3dff9a;
  --accent-dim: #2bc77a;
  --accent-glow: rgba(61, 255, 154, 0.12);
  --danger: #ff6b6b;
  --warn: #ffb347;
  --pro: #7c5cff;
  --font: "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", "Cascadia Code", Consolas, monospace;
  --radius: 12px;
  --max: 1200px;
  --header-max: 1440px;
  --focus-ring: 0 0 0 3px rgba(61, 255, 154, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, var(--accent-glow), transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 20%, rgba(124, 92, 255, 0.08), transparent),
    linear-gradient(180deg, transparent 0%, var(--bg) 75%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.hidden {
  display: none !important;
}

code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--bg-elevated);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(8, 11, 16, 0.88);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--header-max));
  max-width: var(--header-max);
  padding: 0.85rem 0;
  gap: 1rem;
  flex-wrap: nowrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(61, 255, 154, 0.12);
}

.logo-text {
  white-space: nowrap;
}

.logo:hover {
  color: var(--accent);
  text-decoration: none;
}

.logo:hover .logo-mark {
  box-shadow: 0 0 0 1px rgba(61, 255, 154, 0.35), 0 0 12px var(--accent-glow);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.75rem;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.nav-actions {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-actions .btn {
  padding: 0.5rem 0.95rem;
  font-size: 0.8125rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.lang-mount {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.lang-select {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  min-width: 7.5rem;
}

.lang-select:hover {
  border-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #080b10;
  box-shadow: 0 4px 28px var(--accent-glow);
}

.btn-primary:hover:not(:disabled) {
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

/* Hero */
.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 2rem 2.5rem;
  align-items: center;
}

.hero-copy {
  text-align: left;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-brand-mark {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(61, 255, 154, 0.15);
}

.hero-brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-muted);
}

.hero-copy .badge {
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.035em;
  max-width: none;
}

.hero-copy .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
  margin-bottom: 0;
}

.hero-visual {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0d12;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(61, 255, 154, 0.06);
}

.hero-visual picture,
.demo-step-media picture {
  display: block;
  cursor: zoom-in;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual-caption {
  margin: 0;
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  text-align: left;
}

.hero-stats {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2rem 2.5rem;
  padding-top: 1.25rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.25rem;
}

.badge-ks {
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(61, 255, 154, 0.35);
}

.badge-closed {
  background: rgba(124, 92, 255, 0.15);
  color: var(--pro);
  border: 1px solid rgba(124, 92, 255, 0.4);
}

.stat strong {
  display: block;
  font-size: 1.55rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Timeline */
.timeline-section {
  background: linear-gradient(180deg, transparent, rgba(20, 27, 38, 0.5) 40%, transparent);
}

.phase-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.phase-timeline::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--pro), var(--border));
  border-radius: 2px;
}

.phase {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
}

.phase-marker {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.phase-2 .phase-marker {
  border-color: var(--warn);
  color: var(--warn);
}

.phase-post .phase-marker {
  border-color: var(--pro);
  color: var(--pro);
  font-size: 1rem;
}

.phase-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.phase-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.phase-badge.live {
  background: rgba(61, 255, 154, 0.15);
  color: var(--accent);
}

.phase-badge.sold-out {
  background: rgba(255, 107, 107, 0.15);
  color: var(--danger);
}

.phase-badge.upcoming {
  background: rgba(139, 156, 179, 0.12);
  color: var(--text-muted);
}

.phase-badge.active {
  background: rgba(255, 179, 71, 0.15);
  color: var(--warn);
}

.phase-badge.post {
  background: rgba(124, 92, 255, 0.15);
  color: var(--pro);
}

.phase-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.phase-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.phase-note {
  margin-top: 0.65rem !important;
  font-size: 0.8rem !important;
  font-style: italic;
}

/* Roadmap (reuses .phase-timeline structure) */
.roadmap-timeline .phase-marker {
  border-color: var(--pro);
  color: var(--pro);
  font-size: 0.75rem;
  font-weight: 600;
}

.roadmap-phase .phase-badge.planned {
  background: rgba(139, 156, 179, 0.12);
  color: var(--text-muted);
}

.roadmap-phase .phase-badge.stretch {
  background: rgba(255, 179, 71, 0.15);
  color: var(--warn);
}

/* Stretch goals */
.badge-available,
.badge-shipped {
  background: rgba(61, 255, 154, 0.15);
  color: var(--accent);
  border: 1px solid rgba(61, 255, 154, 0.35);
  margin-bottom: 0.5rem;
}

.badge-coming-pro {
  background: rgba(124, 92, 255, 0.15);
  color: var(--pro);
  border: 1px solid rgba(124, 92, 255, 0.35);
  margin-bottom: 0.5rem;
}

.badge-planned {
  background: rgba(139, 156, 179, 0.12);
  color: var(--text-muted);
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
}

.tier-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.35rem;
  vertical-align: middle;
  white-space: nowrap;
}

.tier-badge.tier-available {
  background: rgba(61, 255, 154, 0.12);
  color: var(--accent);
  border: 1px solid rgba(61, 255, 154, 0.28);
}

.tier-badge.tier-coming-pro {
  background: rgba(124, 92, 255, 0.12);
  color: var(--pro);
  border: 1px solid rgba(124, 92, 255, 0.28);
}

.tier-badge.tier-planned {
  background: rgba(139, 156, 179, 0.1);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.tier-table-legend {
  margin: 1rem 0 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
}

.tier-table-legend .tier-badge {
  margin-left: 0;
}

.feature-card.shipped {
  position: relative;
}

.funding-bar-wrap {
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.funding-bar-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.funding-bar-track {
  height: 12px;
  background: var(--bg-elevated);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.funding-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  border-radius: 999px;
  transition: width 0.4s ease;
}

.funding-bar-pct {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.fulfillment-note {
  max-width: 52rem;
}

.stretch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.stretch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.stretch-card h3 {
  margin: 0.35rem 0 0.35rem;
  font-size: 1rem;
}

.stretch-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.stretch-amount {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.stretch-status {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.7rem;
  padding: 0.1rem 0.45rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stretch-status.planned {
  background: rgba(139, 156, 179, 0.12);
  color: var(--text-muted);
}

.stretch-status.stretch {
  background: rgba(255, 179, 71, 0.15);
  color: var(--warn);
}

/* Legal / disclaimers */
.disclaimer-list p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 52rem;
}

.disclaimer-list p:last-child {
  margin-bottom: 0;
}

/* Product tour / demo */
.demo-section {
  background: linear-gradient(180deg, rgba(20, 27, 38, 0.35) 0%, transparent 55%);
  padding-top: 3rem;
}

.demo-jump {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  margin-bottom: 2rem;
  scrollbar-width: thin;
}

.demo-jump-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 7.5rem;
  padding: 0.45rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.demo-jump-item:hover,
.demo-jump-item.is-active {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.demo-jump-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: #0a0d12;
}

.demo-tour {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.demo-step {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 1.75rem 2rem;
  align-items: center;
  scroll-margin-top: 5.5rem;
}

.demo-step-reverse {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
}

.demo-step-reverse .demo-step-copy {
  order: 2;
}

.demo-step-reverse .demo-step-media {
  order: 1;
}

.demo-step-copy h3 {
  margin: 0.35rem 0 0.65rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.demo-step-copy p {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.demo-step-num {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.demo-tier-note {
  font-size: 0.82rem !important;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.demo-tier-note.community {
  border-color: rgba(61, 255, 154, 0.25);
}

.demo-tier-note.pro {
  border-color: rgba(124, 92, 255, 0.35);
  color: #b8a8ff;
}

.demo-step-media {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0d12;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.demo-step-media img {
  display: block;
  width: 100%;
  height: auto;
}

.demo-video {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 820px;
}

.demo-video h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.demo-video .video-embed {
  margin: 0.75rem 0 0.5rem;
}

/* Legacy demo grid (unused) */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.demo-item {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.demo-item img {
  display: block;
  width: 100%;
  height: auto;
  background: #0a0d12;
}

.demo-item figcaption {
  padding: 0.6rem 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* Sections */
section {
  padding: 3.75rem 0;
}

section h2 {
  font-size: 1.85rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.025em;
}

.section-intro {
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 42rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(61, 255, 154, 0.35);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-card.pro-only {
  border-color: rgba(124, 92, 255, 0.35);
}

.feature-card.pro-only::after {
  content: "PRO";
  float: right;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--pro);
  background: rgba(124, 92, 255, 0.15);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

/* Tables */
.tier-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 520px;
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--bg-elevated);
  font-weight: 600;
}

tr:last-child td {
  border-bottom: none;
}

td.community {
  color: var(--text-muted);
}

td.pro {
  color: var(--accent);
}

.check::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

.cross::before {
  content: "—";
  color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  border-color: rgba(61, 255, 154, 0.45);
  box-shadow: 0 8px 48px var(--accent-glow);
}

.phase2-card.featured {
  border-color: rgba(255, 179, 71, 0.45);
  box-shadow: 0 8px 40px rgba(255, 179, 71, 0.1);
}

.post-lifetime.featured {
  border-color: rgba(124, 92, 255, 0.45);
  box-shadow: 0 8px 40px rgba(124, 92, 255, 0.12);
}

.ribbon {
  position: absolute;
  top: -10px;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ribbon.live {
  background: var(--accent);
  color: #081018;
}

.ribbon.sold-out {
  background: var(--danger);
  color: #fff;
}

.ribbon.upcoming {
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.ribbon.active {
  background: var(--warn);
  color: #1a1208;
}

.price-card.locked {
  opacity: 0.78;
}

.price-card.locked .btn[disabled] {
  cursor: not-allowed;
}

.limited.phase1-note {
  color: var(--accent);
}

.ribbon.post {
  background: var(--pro);
  color: #fff;
}

.price-card h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.05rem;
}

.price-card .amount {
  font-size: 2.35rem;
  font-weight: 700;
  margin: 0.5rem 0;
  letter-spacing: -0.03em;
}

.price-card .amount small {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  flex: 1;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-card li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.price-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.limited {
  font-size: 0.8rem;
  color: var(--danger);
  margin-top: 0.5rem;
  text-align: center;
}

.phase2-note {
  color: var(--warn);
}

.post-campaign {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.06), transparent);
}

.portal-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.competitor-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* CTA */
.cta-band {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Campaign closed mode */
body[data-campaign="closed"] .cta-ks,
body[data-campaign="closed"] .badge-ks,
body[data-campaign="closed"] .nav-cta-ks,
body[data-campaign="closed"] .footer-ks {
  display: none !important;
}

body[data-campaign="closed"] .cta-stripe,
body[data-campaign="closed"] .badge-closed,
body[data-campaign="closed"] .nav-cta-stripe,
body[data-campaign="closed"] .footer-stripe {
  display: inline-flex !important;
}

body[data-campaign="closed"] .badge-closed {
  display: inline-block !important;
}

body[data-campaign="closed"] .kickstarter-cta .cta-band {
  border-color: rgba(124, 92, 255, 0.35);
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.site-footer p {
  margin: 0.35rem 0;
}

/* Screenshot lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.88);
  cursor: pointer;
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(96vw, 1400px);
  max-height: 96vh;
  width: 100%;
}

.lightbox-close {
  position: absolute;
  top: -0.25rem;
  right: 0;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}

.lightbox-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: calc(96vh - 3rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.lightbox-caption {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 48rem;
}

body.lightbox-open {
  overflow: hidden;
}

/* Mobile / tablet nav */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Intermediate breakpoints (desktop / tablet landscape) ── */

@media (max-width: 1400px) {
  .header-inner {
    gap: 0.85rem;
  }

  .header-nav {
    gap: 1rem;
  }

  .nav-links {
    gap: 0.55rem;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 0.32rem 0.4rem;
  }

  .nav-actions {
    gap: 0.6rem;
  }

  .nav-actions .btn {
    padding: 0.48rem 0.85rem;
    font-size: 0.8rem;
  }

  .lang-select {
    min-width: 6.75rem;
    font-size: 0.82rem;
  }

  .hero-layout {
    gap: 1.75rem 2rem;
  }
}

@media (max-width: 1200px) {
  .logo {
    font-size: 1.05rem;
  }

  .header-nav {
    gap: 0.75rem;
  }

  .nav-links {
    gap: 0.35rem;
  }

  .nav-links a {
    font-size: 0.74rem;
    padding: 0.28rem 0.3rem;
  }

  .nav-actions .btn {
    padding: 0.42rem 0.7rem;
    font-size: 0.74rem;
  }

  .lang-select {
    min-width: 6.25rem;
    padding: 0.35rem 0.5rem;
    font-size: 0.78rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  }

  .hero-copy .lead {
    font-size: 0.98rem;
  }

  .demo-step,
  .demo-step-reverse {
    gap: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 1024px) {
  .nav-links a.nav-link-secondary {
    display: none;
  }

  .header-nav {
    gap: 0.65rem;
  }

  .nav-links {
    gap: 0.25rem;
  }

  .nav-links a {
    font-size: 0.72rem;
    padding: 0.25rem 0.28rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-brand {
    justify-content: center;
  }

  .hero-copy .lead {
    margin-inline: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .demo-step,
  .demo-step-reverse {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .demo-step-reverse .demo-step-copy,
  .demo-step-reverse .demo-step-media {
    order: unset;
  }

  .demo-step-copy h3 {
    font-size: 1.2rem;
  }

  section h2 {
    font-size: 1.65rem;
  }
}

@media (min-width: 901px) {
  .header-nav {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }

  .nav-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .header-inner {
    position: relative;
    flex-wrap: nowrap;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    background: var(--bg-elevated);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
  }

  .header-nav.open {
    display: flex;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.35rem;
  }

  .nav-links a.nav-link-secondary {
    display: block;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.35rem 0;
    font-size: 0.9rem;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions .btn {
    width: 100%;
    font-size: 0.85rem;
    padding: 0.5rem 0.95rem;
  }

  .lang-mount {
    width: 100%;
  }

  .lang-select {
    width: 100%;
    min-width: 0;
  }

  .hero {
    padding-top: 2.75rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .phase-timeline::before {
    left: 0.9rem;
  }

  .phase {
    grid-template-columns: 2rem 1fr;
    gap: 0.85rem;
  }

  .phase-marker {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.8rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .lightbox {
    padding: 0.5rem;
  }

  .lightbox-close {
    top: 0.25rem;
    right: 0.25rem;
    position: fixed;
  }

  .lightbox-img {
    max-height: calc(96vh - 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}
