/* ============================================================
   AIROLOG — Design System & Shared Styles
   Aesthetic: "Cockpit Nightshift" — dark panel, amber glow
   ============================================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Cockpit palette */
  --bg-void: #06080C;
  --bg-deep: #0A0E14;
  --bg-panel: #111827;
  --bg-card: #1a2332;
  --bg-card-hover: #1f2b3d;
  --bg-elevated: #243044;

  /* Amber instrument glow */
  --amber: #C9A227;
  --amber-light: #E5C44D;
  --amber-glow: rgba(201, 162, 39, 0.15);
  --amber-glow-strong: rgba(201, 162, 39, 0.3);

  /* Sky blue accent */
  --sky: #5FA8D3;
  --sky-light: #8DC4E8;
  --sky-glow: rgba(95, 168, 211, 0.15);

  /* Navy primary */
  --navy: #1B4965;
  --navy-light: #2A6F97;

  /* Status */
  --green: #2D6A4F;
  --green-light: #40916C;
  --yellow: #E9C46A;
  --red: #E76F51;

  /* Text */
  --text: #F0F0F0;
  --text-secondary: #8892A4;
  --text-muted: #5A6478;
  --text-amber: #E5C44D;

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-amber: rgba(201, 162, 39, 0.2);

  /* Typography */
  --font-display: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --nav-height: 72px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Aliases (used by inline styles on some pages) */
  --text-primary: var(--text);
  --bg-surface: rgba(255, 255, 255, 0.03);
  --color-amber: var(--amber);
  --color-text: var(--text);
  --color-text-muted: var(--text-muted);
  --color-border: var(--border);
  --color-surface: var(--bg-card);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg-void);
  overflow-x: hidden;
}

/* --- Topo background texture --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 162, 39, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(95, 168, 211, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid pattern */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--text-secondary); max-width: 65ch; }

a {
  color: var(--amber-light);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--amber); }

.mono { font-family: var(--font-mono); }

.text-amber { color: var(--amber-light); }
.text-sky { color: var(--sky-light); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-md);
  display: inline-block;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  position: relative;
  z-index: 1;
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--sm {
  padding: var(--space-3xl) 0;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.footer__brand .nav__logo-icon {
  width: 48px;
  height: 48px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
}

.nav__cta {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--bg-deep) !important;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s !important;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--amber-glow-strong);
  color: var(--bg-deep) !important;
}

/* Mobile menu */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: var(--space-sm);
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--bg-deep);
  box-shadow: 0 2px 12px var(--amber-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--amber-glow-strong);
  color: var(--bg-deep);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
}

.btn--secondary:hover {
  border-color: var(--amber);
  background: var(--amber-glow);
  color: var(--amber-light);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--ghost {
  background: transparent;
  color: var(--amber-light);
  padding: 0.5rem 0;
}

.btn--ghost:hover { color: var(--amber); }

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all 0.3s var(--ease-out);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-amber);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--amber-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--border-amber);
}

.card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Feature grid --- */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --- Badge / Tag --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  background: var(--amber-glow);
  color: var(--amber-light);
  border: 1px solid var(--border-amber);
}

.badge--sky {
  background: var(--sky-glow);
  color: var(--sky-light);
  border-color: rgba(95, 168, 211, 0.2);
}

.badge--green {
  background: rgba(45, 106, 79, 0.15);
  color: var(--green-light);
  border-color: rgba(45, 106, 79, 0.25);
}

/* --- Stat / Number display --- */
.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  font-weight: 500;
}

/* --- Divider --- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  border: none;
}

/* --- Comparison table --- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}

.comparison-table thead th {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-panel);
}

.comparison-table thead th:first-child {
  border-radius: var(--radius-md) 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 var(--radius-md) 0 0;
}

.comparison-table thead th.highlight {
  color: var(--amber);
  background: rgba(201, 162, 39, 0.05);
}

.comparison-table tbody td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  font-weight: 500;
  color: var(--text);
}

.comparison-table tbody td.highlight {
  background: rgba(201, 162, 39, 0.03);
  color: var(--text);
  font-weight: 500;
}

.comparison-table .check {
  color: var(--green-light);
  font-size: 1.1rem;
}

.comparison-table .cross {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  padding: var(--space-sm) 0;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--amber-light); }

.faq-question::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  margin-left: var(--space-lg);
}

.faq-item.open .faq-question::after {
  content: '−';
  color: var(--amber);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  padding-top: var(--space-md);
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand p {
  font-size: 0.85rem;
  margin-top: var(--space-md);
  max-width: 280px;
}

.footer__platforms {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer__links a:hover {
  color: var(--amber-light);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px var(--amber-glow); }
  50% { box-shadow: 0 0 40px var(--amber-glow-strong); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }

/* --- Hero specific --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* hero__price and hero__price-tag defined in pricing section below */

.hero__price-period {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-muted);
}

.hero__price-strike {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: var(--space-md);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.hero__platforms {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero__platform-icons {
  display: flex;
  gap: var(--space-md);
}

.hero__platform-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.hero__platform-icon:hover {
  border-color: var(--amber);
  color: var(--amber-light);
  background: var(--amber-glow);
}

/* Hero decorative elements */
.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero__mockup {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

/* App mockup placeholder */
.mockup {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}

.mockup__titlebar {
  height: 36px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
  gap: 6px;
}

.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-elevated);
}

.mockup__dot--red { background: #E76F51; }
.mockup__dot--yellow { background: #E9C46A; }
.mockup__dot--green { background: #40916C; }

.mockup__body {
  padding: var(--space-xl);
  min-height: 360px;
}

/* --- Anti-subscription section (main definition in pricing section below) --- */

.anti-sub__comparison {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-3xl);
}

.anti-sub__competitor {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  min-width: 160px;
  flex: 1;
  max-width: 200px;
}

.anti-sub__competitor-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.anti-sub__competitor-price {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: line-through;
  text-decoration-color: rgba(231, 111, 81, 0.5);
}

.anti-sub__competitor-period {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.anti-sub__us {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.03));
  border: 1px solid var(--border-amber);
  position: relative;
}

.anti-sub__us::before {
  content: 'YOU SAVE';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--bg-deep);
  background: var(--amber);
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

.anti-sub__us .anti-sub__competitor-price {
  color: var(--amber-light);
  text-decoration: none;
}

/* --- Platform showcase --- */
.platforms__visual {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  perspective: 1000px;
}

.platform-device {
  text-align: center;
  transition: transform 0.3s var(--ease-out);
}

.platform-device:hover {
  transform: translateY(-4px);
}

.platform-device__frame {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.platform-device--phone .platform-device__frame {
  width: 140px;
  height: 280px;
  border-radius: var(--radius-xl);
}

.platform-device--tablet .platform-device__frame {
  width: 220px;
  height: 300px;
}

.platform-device--desktop .platform-device__frame {
  width: 320px;
  height: 220px;
}

.platform-device__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* --- Pricing card --- */
.pricing-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 162, 39, 0.04) 100%);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

.pricing-card__price {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-card__currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-card__period {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin: var(--space-xl) 0;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: var(--space-5xl) 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--amber-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Legal page --- */
.legal-content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content p {
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal-content li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

/* --- Docs page --- */
.docs-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
  align-self: start;
  max-height: calc(100vh - var(--nav-height) - var(--space-2xl));
  overflow-y: auto;
}

.docs-layout {
  padding-top: var(--space-2xl);
}

/* --- Docs mobile nav --- */
.docs-mobile-nav {
  display: none;
}

@media (max-width: 1024px) {
  .docs-mobile-nav {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: var(--space-md) var(--space-lg);
    scrollbar-width: none;
  }
  .docs-mobile-nav::-webkit-scrollbar { display: none; }
  .docs-mobile-nav__link {
    flex-shrink: 0;
    padding: var(--space-xs) var(--space-md);
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    text-decoration: none;
  }
  .docs-mobile-nav__link:hover,
  .docs-mobile-nav__link.active {
    color: var(--amber-light);
    border-color: var(--amber);
    background: rgba(201, 162, 39, 0.08);
  }
}

.docs-sidebar__link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.85rem;
  color: var(--text-muted);
  border-left: 2px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}

.docs-sidebar__link:hover,
.docs-sidebar__link.active {
  color: var(--amber-light);
  border-left-color: var(--amber);
  background: var(--amber-glow);
}

.docs-layout > .container {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-3xl);
}

.docs-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
}

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

.docs-content h3 {
  font-size: 1.1rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.docs-content p {
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.docs-content ul, .docs-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.docs-content li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.docs-content code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--bg-card);
  padding: 0.15em 0.4em;
  border-radius: var(--radius-sm);
  color: var(--amber-light);
  border: 1px solid var(--border);
}

.docs-content pre {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  overflow-x: auto;
  margin-bottom: var(--space-lg);
}

.docs-content pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* --- Step list --- */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}

.steps li::before {
  content: counter(step);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
  background: var(--amber-glow);
  border: 1px solid var(--border-amber);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .hero__mockup { display: none; }
  .hero__glow { right: -200px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
  .docs-layout > .container { grid-template-columns: 1fr; }
  .docs-sidebar { display: none; }
}

@media (max-width: 768px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }

  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 14, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-xl);
    gap: var(--space-lg);
    border-bottom: 1px solid var(--border);
  }

  .hero { min-height: auto; padding-top: calc(var(--nav-height) + var(--space-3xl)); padding-bottom: var(--space-3xl); }
  .hero__content { max-width: 100%; }

  .section { padding: var(--space-3xl) 0; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-md); text-align: center; }

  .anti-sub__comparison { flex-direction: column; align-items: center; }
  .anti-sub__competitor { max-width: 100%; }

  .platforms__visual { flex-wrap: wrap; }

  .comparison-table { font-size: 0.8rem; }
  .comparison-table td, .comparison-table th { padding: var(--space-sm); }
}

/* --- Page header (for interior pages) --- */
.page-header {
  padding-top: calc(var(--nav-height) + var(--space-4xl));
  padding-bottom: var(--space-3xl);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.page-header h1 {
  margin-bottom: var(--space-md);
}

.page-header p {
  margin: 0 auto;
  font-size: 1.1rem;
}

/* --- Tab nav for docs/legal --- */
.tab-nav {
  display: flex;
  gap: var(--space-xs);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-2xl);
  overflow-x: auto;
}

.tab-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.tab-nav a:hover { color: var(--text); }
.tab-nav a.active {
  color: var(--amber-light);
  border-bottom-color: var(--amber);
}

/* --- Callout box --- */
.callout {
  background: var(--amber-glow);
  border: 1px solid var(--border-amber);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.callout p {
  font-size: 0.85rem;
  color: var(--text);
  margin: 0;
}

/* --- Feature row (alternating) --- */
.feature-row {
  padding: var(--space-2xl) 0;
}

.feature-row__grid,
.feature-row:has(> .feature-row__content) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.feature-row--reverse > .feature-row__content {
  order: 2;
}

.feature-row--reverse > .feature-row__visual {
  order: 1;
}

.feature-row__content {
  max-width: 480px;
}

.feature-row__visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .feature-row__grid,
  .feature-row:has(> .feature-row__content) {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* Features page layout fallback + alignment */
.features-page .feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.features-page .feature-row__content {
  max-width: none;
}

@media (max-width: 768px) {
  .features-page .feature-row {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* Selection */
::selection {
  background: var(--amber);
  color: var(--bg-deep);
}

/* ============================================================
   ADDITIONAL COMPONENT STYLES
   (Classes used across all pages)
   ============================================================ */

/* --- Section titles --- */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.section-title--left { text-align: left; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
  line-height: 1.6;
}

.section-subtitle--left {
  text-align: left;
  margin: 0 0 var(--space-xl);
}

.subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Hero extended --- */
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-lg);
  padding: 0.35rem 0.9rem;
  background: var(--amber-glow);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-full);
}

.hero__title {
  margin-bottom: var(--space-md);
}

.hero__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero__price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  font-family: var(--font-mono);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero__price-once {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-muted);
}

.hero__price-compare {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-muted);
}

.hero__price-compare s {
  color: var(--red);
  text-decoration-color: rgba(231, 111, 81, 0.6);
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero__visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  z-index: 1;
}

/* --- Platform icons in hero --- */
.platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

.platform-icon:hover {
  border-color: var(--amber);
  color: var(--amber-light);
  background: var(--amber-glow);
}

.footer__platforms .platform-icon {
  width: 36px;
  height: 36px;
}

/* --- Mockup dashboard (hero) --- */
.mockup-dashboard {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  min-width: 380px;
  animation: float 6s ease-in-out infinite;
}

.mockup-dashboard__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}

.mockup-dashboard__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
}

.mockup-dashboard__dot--green { background: var(--green-light); }

.mockup-dashboard__title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.mockup-dashboard__row {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.mockup-dashboard__stat {
  flex: 1;
  text-align: center;
}

.mockup-dashboard__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.mockup-dashboard__value {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amber-light);
}

.mockup-dashboard__bar {
  height: 6px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  border-radius: 3px;
  margin-bottom: var(--space-sm);
  width: 85%;
}

.mockup-dashboard__bar--short { width: 55%; }

@media (max-width: 1024px) {
  .hero__visual { display: none; }
}

/* --- Social proof strip --- */
.social-proof {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.badge__value {
  font-family: var(--font-mono);
  font-weight: 700;
  margin-right: 0.3rem;
}

.badge__label {
  font-weight: 400;
}

/* --- Anti-subscription --- */
.anti-sub {
  text-align: center;
  position: relative;
  padding: var(--space-5xl) 0;
}

.anti-sub__grid {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
}

.anti-sub__card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  min-width: 160px;
  flex: 1;
  max-width: 200px;
  transition: all 0.3s var(--ease-out);
}

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

.anti-sub__card--highlight {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.03));
  border-color: var(--border-amber);
  position: relative;
}

.anti-sub__card--highlight::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--bg-deep);
  background: var(--amber);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.anti-sub__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.anti-sub__price {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
}

.anti-sub__price s {
  text-decoration-color: rgba(231, 111, 81, 0.5);
}

.anti-sub__price--highlight {
  color: var(--amber-light);
}

@media (max-width: 768px) {
  .anti-sub__grid { flex-direction: column; align-items: center; }
  .anti-sub__card { max-width: 100%; width: 100%; }
}

/* --- Feature grids --- */
.features {
  padding: var(--space-5xl) 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.features .card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.features .card:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

@media (max-width: 1024px) { .features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .features__grid { grid-template-columns: 1fr; } }

/* --- Platforms grid --- */
.platforms {
  padding: var(--space-5xl) 0;
}

.platforms__grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  flex-wrap: wrap;
}

/* --- Feature row extended --- */
.feature-row__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.feature-row--reverse .feature-row__grid .feature-row__content {
  order: 2;
}

.feature-row--reverse .feature-row__grid .feature-row__visual {
  order: 1;
}

.feature-row__list {
  list-style: none;
  padding: 0;
  margin-top: var(--space-lg);
}

.feature-row__list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-row__list li::before {
  content: '→';
  color: var(--amber);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .feature-row__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

/* --- Dashboard preview --- */
.dashboard-preview {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.section--status .feature-row__visual,
.section--status .dashboard-preview,
.section--status .mockup-status,
.section--status .mockup-currency-item {
  background: transparent;
  box-shadow: none;
  border-color: transparent;
}

/* Features page: transparent card treatment */
.features-page .feature-row__visual,
.features-page .mockup-card,
.features-page .card {
  background: transparent;
  box-shadow: none;
  border-color: transparent;
}

.features-page .card {
  border: 0;
}

.features-page .card:hover {
  background: transparent;
  box-shadow: none;
  border-color: transparent;
  transform: none;
}

/* Features page: "And so much more" interactive list */
.features-page .more-features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.features-page .more-feature-card {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  align-items: center;
  gap: var(--space-xl);
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: var(--space-md) 0;
  transition: border-color 0.2s var(--ease-out);
  outline: none;
}

.features-page .more-feature-card:last-child {
  border-bottom: 1px solid var(--border);
}

.features-page .more-feature-card:hover,
.features-page .more-feature-card:focus-visible {
  border-bottom-color: var(--border-amber);
}

.features-page .more-feature-card__head {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.features-page .more-feature-card__head .card__icon {
  margin-bottom: 0;
}

.features-page .more-feature-card__head .card__title {
  margin-bottom: 0;
}

.features-page .more-feature-card__desc {
  max-height: none;
  opacity: 0;
  overflow: visible;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  transform: translateX(-8px);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.features-page .more-feature-card:hover .more-feature-card__desc,
.features-page .more-feature-card:focus-visible .more-feature-card__desc,
.features-page .more-feature-card:focus-within .more-feature-card__desc {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .features-page .more-feature-card {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .features-page .more-feature-card__desc {
    opacity: 1;
    transform: none;
  }
}

/* --- Import section --- */
.import {
  padding: var(--space-5xl) 0;
}

.import__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.import .card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.import .card:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

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

/* --- Pricing section --- */
.pricing {
  padding: var(--space-5xl) 0;
}

.pricing__grid {
  display: flex;
  justify-content: center;
}

.pricing-card__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-lg);
  display: block;
}

.pricing-card__amount {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-card__term {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.btn--full {
  display: block;
  width: 100%;
  text-align: center;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* --- FAQ section --- */
.faq {
  padding: var(--space-5xl) 0;
}

.faq__grid {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

/* --- CTA section --- */
.cta {
  padding: var(--space-5xl) 0;
}

.cta__inner {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 162, 39, 0.06) 100%);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.cta__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  position: relative;
  z-index: 1;
}

/* --- Page header extended --- */
.page-header__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.page-header__title {
  margin-bottom: var(--space-md);
}

.page-header__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Legal page --- */
.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

.legal-section {
  margin-bottom: var(--space-4xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
}

/* --- Feature mini grid (features page) --- */
.feature-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.feature-mini {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.feature-mini:hover {
  border-color: var(--border-amber);
  background: var(--bg-card-hover);
}

.feature-mini__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

@media (max-width: 1024px) { .feature-mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .feature-mini-grid { grid-template-columns: 1fr; } }

/* --- Purchase channels --- */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.channel-card:hover {
  border-color: var(--border-amber);
  transform: translateY(-2px);
}

.channel-card--best {
  border-color: var(--border-amber);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.02));
  position: relative;
}

.channel-card--best::before {
  content: 'BEST PRICE';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--bg-deep);
  background: var(--amber);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.channel-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.channel-card__price {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber-light);
  margin-bottom: var(--space-sm);
}

.channel-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

/* --- Pricing comparison cards --- */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.compare-card--highlight {
  border-color: var(--border-amber);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0.02));
  transform: scale(1.02);
}

.compare-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.compare-card__yearly {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.compare-card__total-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.compare-card__total {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}

.compare-card--highlight .compare-card__total {
  color: var(--amber-light);
}

.compare-card__platforms {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

@media (max-width: 1024px) { .compare-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .compare-grid { grid-template-columns: 1fr; } }

/* --- Included features grid (pricing page) --- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.included-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.included-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--amber-light);
  margin-bottom: var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.included-card ul {
  list-style: none;
  padding: 0;
}

.included-card li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.included-card li::before {
  content: '→';
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  flex-shrink: 0;
}

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

/* --- Tab navigation active state handling --- */
.tab-nav a {
  cursor: pointer;
}

/* --- Section hero variant (features/docs page headers) --- */
.section--hero {
  padding-top: calc(var(--nav-height) + var(--space-4xl));
  padding-bottom: var(--space-3xl);
  text-align: center;
  position: relative;
}

.section--hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.section--hero h1 { margin-bottom: var(--space-md); }
.section--hero .subtitle { margin: 0 auto; }

/* --- Docs section spacing --- */
.docs-section {
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}

.docs-section:last-child {
  border-bottom: none;
}

/* --- Export badge pills --- */
.export-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.export-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

/* --- Docs FAQ items (reuse faq styles) --- */
.docs-faq .faq-item {
  border-bottom-color: var(--border);
}

/* --- Pricing page specific --- */
.pricing-hero-card {
  max-width: 520px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}

.pricing-hero-card .pricing-card__price {
  margin-bottom: 0.25rem;
}

.pricing-hero-card__dollar {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--amber);
  vertical-align: super;
}

.pricing-hero-card__amount {
  font-family: var(--font-mono);
  font-size: 4.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pricing-hero-card__term {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.pricing-hero-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  text-align: left;
}

.pricing-hero-card__features li {
  padding: 0.5rem 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-hero-card__features li:last-child {
  border-bottom: none;
}

.pricing-hero-card__features li .check-icon {
  color: var(--amber);
}

.pricing-hero-card__trial {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Compare cards grid */
.pricing-compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1024px) { .pricing-compare-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .pricing-compare-grid { grid-template-columns: 1fr; } }

.pricing-compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  opacity: 0.65;
}

.pricing-compare-card--highlight {
  opacity: 1;
  background: rgba(201, 162, 39, 0.08);
  border: 2px solid var(--amber);
  position: relative;
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.15);
}

.pricing-compare-card__name {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.pricing-compare-card--highlight .pricing-compare-card__name {
  color: var(--amber);
}

.pricing-compare-card__yearly {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-compare-card--highlight .pricing-compare-card__yearly {
  color: var(--text);
}

.pricing-compare-card__total {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.pricing-compare-card--highlight .pricing-compare-card__total {
  color: var(--amber);
}

.pricing-compare-card__period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-compare-card__platforms {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-compare-card--highlight .pricing-compare-card__platforms {
  color: var(--text);
}

.pricing-compare-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

/* Included features grid */
.pricing-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

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

.pricing-included-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--amber);
}

.pricing-included-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-included-col li {
  padding: 0.4rem 0;
  color: var(--text);
  font-size: 0.95rem;
}

/* Purchase channels grid */
.pricing-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.pricing-channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
}

.pricing-channel-card--best {
  background: rgba(201, 162, 39, 0.06);
  border: 2px solid var(--amber);
  position: relative;
}

.pricing-channel-card__name {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.pricing-channel-card--best .pricing-channel-card__name {
  color: var(--amber);
}

.pricing-channel-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-channel-card__price {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-channel-card--best .pricing-channel-card__price {
  color: var(--amber);
}

.pricing-channel-card__note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Utility: text-left on container-narrow --- */
.container--narrow .legal-content,
.container--narrow .docs-content {
  text-align: left;
}

/* --- Platform Device Screens --- */
.platform-device__screen {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-device__screen--windows {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
  min-height: 180px;
}

.platform-device__screen--macos {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.05));
  min-height: 160px;
}

.platform-device__screen--ios {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(167, 139, 250, 0.05));
}

.platform-device__screen--android {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.05));
}

.platform-device__screen-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
}

.platform-device__screen-label--windows { color: rgba(245, 158, 11, 0.6); }
.platform-device__screen-label--macos { color: rgba(56, 189, 248, 0.6); }
.platform-device__screen-label--ios { color: rgba(167, 139, 250, 0.6); }
.platform-device__screen-label--android { color: rgba(52, 211, 153, 0.6); }

/* --- Dashboard Preview Mockup --- */
.mockup-status {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  text-align: center;
}

.mockup-status__title {
  color: #10b981;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  display: block;
}

.mockup-status__subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-display);
  font-size: 0.75rem;
}

.mockup-currency-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mockup-currency-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.mockup-currency-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-currency-dot--green { background: #10b981; }
.mockup-currency-dot--amber { background: #f59e0b; }

.mockup-currency-name {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
}

.mockup-currency-detail {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

/* --- Docs: Table --- */
.docs-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-sm) 0;
  font-size: 0.82rem;
}

.docs-table thead {
  background: var(--bg-card);
}

.docs-table th {
  text-align: left;
  padding: var(--space-xs) var(--space-sm);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text);
  border-bottom: 2px solid var(--border-amber);
}

.docs-table td {
  padding: var(--space-xs) var(--space-sm);
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}

.docs-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 768px) {
  .docs-table {
    font-size: 0.75rem;
  }
  .docs-table th,
  .docs-table td {
    padding: 0.2rem 0.4rem;
  }
}

/* --- Docs: Feature list (export formats etc.) --- */
.docs-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin: var(--space-lg) 0;
}

@media (max-width: 768px) { .docs-feature-list { grid-template-columns: 1fr; } }

.docs-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.docs-feature h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.docs-feature p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Docs: FAQ list (non-accordion) --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.faq-list .faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.faq-list .faq-item h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.faq-list .faq-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- Section header (features.html) --- */
.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__header h2 {
  margin-bottom: var(--space-md);
}

.section__header .subtitle {
  margin: 0 auto;
}

/* --- Table wrap (comparison table overflow) --- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

/* --- Section CTA (features.html) --- */
.section--cta {
  padding: var(--space-5xl) 0;
}

.section--cta .cta__inner {
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(201, 162, 39, 0.06) 100%);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

/* --- Legal anchor nav (restyle from tab UI) --- */
.legal-nav {
  display: flex;
  gap: var(--space-xs);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-2xl);
  overflow-x: auto;
}

.legal-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}

.legal-nav a:hover { color: var(--text); }
.legal-nav a.active {
  color: var(--amber-light);
  border-bottom-color: var(--amber);
}

/* ============================================================
   MOCKUP COMPONENT CLASSES (features.html visuals)
   ============================================================ */

/* Shared mockup card */
.mockup-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  font-family: 'DM Sans', sans-serif;
}

.mockup-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.mockup-card__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-secondary);
}

/* Form grid (flight entry) */
.mockup-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mockup-field {
  background: var(--bg-surface, rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
}

.mockup-field--full {
  margin-top: 12px;
}

.mockup-field__label {
  font-size: 10px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.mockup-field__value {
  font-size: 13px;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
}

.mockup-field__value--amber {
  color: var(--amber);
  font-weight: 700;
}

.mockup-field__value--italic {
  font-size: 12px;
  color: var(--text-secondary);
  font-style: italic;
  font-family: 'DM Sans', sans-serif;
}

/* Status list (currency dashboard) */
.mockup-status-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.mockup-status-row__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot--green { background: #22c55e; }
.mockup-dot--amber { background: var(--amber); }
.mockup-dot--red { background: #ef4444; }

.mockup-status-row__name {
  font-size: 13px;
  color: var(--text);
}

.mockup-status-row__detail {
  font-size: 12px;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
}

.mockup-status-row__detail--amber {
  color: var(--amber);
}

.mockup-status-row__detail--red {
  color: #ef4444;
}

/* Fleet card */
.mockup-fleet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mockup-fleet-tail {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
}

.mockup-fleet-type {
  font-size: 12px;
  color: var(--text-secondary);
}

.mockup-badge--amber {
  background: var(--amber);
  color: #000;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.mockup-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.mockup-tag {
  font-size: 11px;
  padding: 3px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-secondary);
}

.mockup-tag--accent {
  border-color: var(--amber);
  color: var(--amber);
}

.mockup-section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mockup-kv-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-kv {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.mockup-kv__key {
  color: var(--text-secondary);
}

.mockup-kv__value {
  font-family: 'JetBrains Mono', monospace;
}

.mockup-kv__value--green { color: #22c55e; }
.mockup-kv__value--amber { color: var(--amber); }

/* Export pills */
.mockup-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mockup-pill--filled {
  background: var(--amber);
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
}

.mockup-pill--outline {
  border: 1px solid var(--amber);
  color: var(--amber);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
}

.mockup-pill--muted {
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
}

/* Career progress */
.mockup-career-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mockup-career-header__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.mockup-career-header__pct {
  font-size: 12px;
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

.mockup-progress-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mockup-progress__header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-bottom: 4px;
}

.mockup-progress__label {
  color: var(--text-secondary);
}

.mockup-progress__value {
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
}

.mockup-progress__track {
  background: rgba(255,255,255,0.08);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.mockup-progress__fill {
  height: 100%;
  border-radius: 3px;
}

.mockup-progress__fill--amber { background: var(--amber); }
.mockup-progress__fill--green { background: #22c55e; }

/* Import wizard stepper */
.mockup-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.mockup-step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.mockup-step--active {
  background: var(--amber);
  color: #000;
}

.mockup-step--inactive {
  border: 2px solid var(--border);
  color: var(--text-secondary);
}

.mockup-step-line {
  flex: 1;
  height: 2px;
}

.mockup-step-line--active { background: var(--amber); }
.mockup-step-line--inactive { background: rgba(255,255,255,0.1); }

.mockup-mapping-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.mockup-mapping-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
}

.mockup-mapping-row__source {
  color: var(--text-secondary);
}

.mockup-mapping-row__target {
  color: var(--amber);
}

.mockup-hint {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Duty & rest */
.mockup-duty-block {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.mockup-duty-block__label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.mockup-duty-block__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.mockup-duty-block__value {
  font-size: 24px;
  font-weight: 700;
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
}

.mockup-duty-block__segments {
  font-size: 11px;
  color: var(--text-secondary);
}

.mockup-duty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.mockup-duty-stat {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.mockup-duty-stat__label {
  font-size: 10px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.mockup-duty-stat__value {
  font-size: 16px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}

.mockup-duty-stat__value--green { color: #22c55e; }
.mockup-duty-stat__value--amber { color: var(--amber); }

.mockup-duty-stat__limit {
  font-size: 10px;
  color: var(--text-secondary);
}

.mockup-duty-legal {
  font-size: 12px;
  color: #22c55e;
  text-align: center;
  padding: 8px;
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 6px;
}

/* Analytics chart */
.mockup-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  margin-bottom: 8px;
}

.mockup-chart__bar {
  flex: 1;
  background: var(--amber);
  border-radius: 3px 3px 0 0;
}

.mockup-chart__bar--projected {
  background: rgba(255,255,255,0.1);
  border: 1px dashed var(--border);
}

.mockup-chart__labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
}

.mockup-chart__summary {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.mockup-chart__stat-value {
  font-size: 18px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}

.mockup-chart__stat-value--amber { color: var(--amber); }

.mockup-chart__stat-label {
  font-size: 10px;
  color: var(--text-secondary);
}

/* Coming soon badge */
.badge--coming-soon {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Phosphor icon sizing in card__icon */
.card__icon i {
  font-size: 1.4rem;
  color: var(--amber);
}

/* --- Accessibility: Screen reader only --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Accessibility: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
