@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg-default: #000000;
  --bg-surface: #0a0a0a;
  --bg-surface2: #0f0f0f;
  --bg-inset: #050505;
  --fg-default: #ffffff;
  --fg-secondary: #878787;
  --fg-tertiary: #5c5c5c;
  --fg-emerald: #1affab;
  --fg-emerald-dim: #0d3326;
  --border-default: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.1);
  --border-hover: rgba(255,255,255,0.15);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  --t: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-default);
  color: var(--fg-default);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 400;
}

a { color: var(--fg-emerald); text-decoration: none; transition: opacity var(--t); }
a:hover { opacity: 0.8; }
button, input, select, textarea { font: inherit; }

::selection { background: var(--fg-emerald); color: #000; }

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 0; height: 0; }

/* ══════════════════════════════════
   NAVBAR
   ══════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px; height: 52px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.navbar.scrolled { border-bottom-color: var(--border-default); }

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--fg-default); opacity: 1;
}
.nav-logo:hover { opacity: 1; }
.nav-logo-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--fg-emerald); color: #000;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700; letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: var(--fg-secondary);
  transition: color var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--fg-default); opacity: 1; }

/* ══════════════════════════════════
   BUTTONS
   ══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 20px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500; line-height: 1;
  cursor: pointer; transition: all var(--t);
  border: 1px solid transparent;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--fg-emerald); color: #000;
  border-color: var(--fg-emerald);
}
.btn-primary:hover { background: #00e6a0; border-color: #00e6a0; color: #000; opacity: 1; }
.btn-secondary {
  background: transparent; color: var(--fg-default);
  border-color: var(--border-strong);
}
.btn-secondary:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.03); opacity: 1; }
.btn-ghost {
  background: transparent; color: var(--fg-secondary);
  border-color: transparent; padding: 7px 16px;
}
.btn-ghost:hover { color: var(--fg-default); background: rgba(255,255,255,0.04); opacity: 1; }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 12px 28px; font-size: 15px; font-weight: 600; }
.btn-full { width: 100%; justify-content: center; }

/* Ripple */
.btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: scale(0); animation: rippleEffect .5s ease-out;
  pointer-events: none;
}
.btn-primary .ripple { background: rgba(0,0,0,0.12); }
@keyframes rippleEffect { to { transform: scale(4); opacity: 0; } }

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  min-height: calc(100vh - 52px);
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  align-items: center;
}

.hero-heading {
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin-bottom: 24px;
}
.hero-heading em {
  font-style: normal;
  color: var(--fg-emerald);
  display: block;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--fg-secondary);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* Hero Data Card */
.hero-data {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
}
.hero-data::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(26,255,171,0.03) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero-data-inner {
  padding: 24px;
  position: relative; z-index: 1;
}

.data-table { width: 100%; }
.data-table-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.data-table-header .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-tertiary);
}
.data-table-header .live-dot {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  color: var(--fg-emerald); letter-spacing: 0.05em;
}
.live-dot::before {
  content: ''; display: block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fg-emerald);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.data-table table {
  width: 100%; border-collapse: collapse;
  font-size: 13px;
}
.data-table th {
  text-align: left; padding: 10px 14px;
  font-weight: 500; color: var(--fg-secondary);
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border-default);
  font-family: 'JetBrains Mono', monospace;
}
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-default);
  font-weight: 500; font-size: 13px;
}
.data-table td:last-child { text-align: right; }
.data-table tr:last-child td { border-bottom: none; }
.data-table .positive { color: var(--fg-emerald); }
.data-table .negative { color: #ef4444; }
.data-table .muted { color: var(--fg-secondary); }

.pick-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pick-name {
  font-size: 13px;
  color: var(--fg-primary);
  font-weight: 500;
}
.pick-chance {
  font-size: 12px;
  color: var(--fg-secondary);
  font-family: 'JetBrains Mono', monospace;
}

/* ══════════════════════════════════
   PRODUCT PAGES
   ══════════════════════════════════ */

/* Scanner */
.scanner-demo {
  margin-top: 32px;
}
.scanner-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.scanner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--fg-emerald-dim);
  color: var(--fg-emerald);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.scanner-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-emerald);
  animation: livePulse 2s ease-in-out infinite;
}
.scanner-time {
  font-size: 12px;
  color: var(--fg-tertiary);
  font-family: 'JetBrains Mono', monospace;
}
.scanner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.scanner-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color var(--t);
}
.scanner-card:hover {
  border-color: var(--border-hover);
}
.scanner-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.scanner-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface2);
  border-radius: var(--radius-md);
}
.scanner-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-primary);
}
.scanner-sub {
  font-size: 12px;
  color: var(--fg-secondary);
  margin-top: 2px;
}
.scanner-chart {
  margin: 16px 0;
  height: 30px;
}
.sparkline {
  width: 100%;
  height: 100%;
}
.scanner-stats {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-default);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-value {
  font-size: 16px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}
.scanner-footer {
  padding: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
}
.scanner-footer p {
  font-size: 13px;
  color: var(--fg-secondary);
  line-height: 1.6;
}

/* Portfolio */
.portfolio-demo {
  margin-top: 32px;
}
.portfolio-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.portfolio-stat-big {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.portfolio-stat-label {
  font-size: 12px;
  color: var(--fg-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.portfolio-stat-value {
  font-size: 32px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 8px;
}
.portfolio-stat-change {
  font-size: 13px;
  color: var(--fg-secondary);
}
.portfolio-section {
  margin-bottom: 32px;
}
.portfolio-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.portfolio-positions {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.position-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-default);
}
.position-row:last-child {
  border-bottom: none;
}
.position-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.position-icon {
  font-size: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface2);
  border-radius: var(--radius-md);
}
.position-name {
  font-size: 14px;
  font-weight: 500;
}
.position-detail {
  font-size: 12px;
  color: var(--fg-secondary);
  margin-top: 2px;
}
.position-value {
  text-align: right;
}
.position-amount {
  font-size: 14px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}
.position-pnl {
  font-size: 12px;
  margin-top: 2px;
}
.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.risk-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.risk-label {
  font-size: 12px;
  color: var(--fg-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.risk-bar {
  height: 6px;
  background: var(--bg-surface2);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 8px;
}
.risk-fill {
  height: 100%;
  background: var(--fg-emerald);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}
.risk-value {
  font-size: 13px;
  color: var(--fg-secondary);
}

/* Edge Discovery */
.edge-demo {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.edge-signal {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--t);
}
.edge-signal:hover {
  border-color: var(--border-hover);
}
.edge-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.edge-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-surface2);
  color: var(--fg-secondary);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.edge-badge.positive {
  background: var(--fg-emerald-dim);
  color: var(--fg-emerald);
}
.edge-badge.negative {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.edge-time {
  font-size: 12px;
  color: var(--fg-tertiary);
  font-family: 'JetBrains Mono', monospace;
}
.edge-signal h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.edge-reasoning {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.reasoning-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-secondary);
  line-height: 1.5;
}
.reasoning-icon {
  color: var(--fg-emerald);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}
.edge-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-default);
}
.edge-confidence {
  font-size: 12px;
  color: var(--fg-tertiary);
  font-family: 'JetBrains Mono', monospace;
}
.edge-action {
  font-size: 13px;
  color: var(--fg-emerald);
  font-weight: 500;
  cursor: pointer;
}

/* Alerts */
.alerts-demo {
  margin-top: 32px;
}
.alert-section {
  margin-bottom: 32px;
}
.alert-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.alert-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.alert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: border-color var(--t);
}
.alert-item:hover {
  border-color: var(--border-hover);
}
.alert-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface2);
  border-radius: var(--radius-md);
  font-size: 16px;
  flex-shrink: 0;
}
.alert-icon.positive {
  background: var(--fg-emerald-dim);
  color: var(--fg-emerald);
}
.alert-icon.negative {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.alert-content {
  flex: 1;
}
.alert-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.alert-meta {
  font-size: 12px;
  color: var(--fg-secondary);
}
.alert-prefs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.alert-pref {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.pref-info {
  flex: 1;
}
.pref-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.pref-desc {
  font-size: 12px;
  color: var(--fg-secondary);
}
.pref-toggle {
  width: 44px;
  height: 24px;
  background: var(--bg-surface2);
  border-radius: var(--radius-full);
  position: relative;
  cursor: pointer;
  transition: background var(--t);
}
.pref-toggle::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--fg-tertiary);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--t), background var(--t);
}
.pref-toggle.active {
  background: var(--fg-emerald-dim);
}
.pref-toggle.active::after {
  transform: translateX(20px);
  background: var(--fg-emerald);
}

/* API */
.api-demo {
  margin-top: 32px;
}
.api-section {
  margin-bottom: 32px;
}
.api-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.code-block {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-surface2);
  border-bottom: 1px solid var(--border-default);
}
.code-lang {
  font-size: 11px;
  color: var(--fg-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'JetBrains Mono', monospace;
}
.code-copy {
  font-size: 12px;
  color: var(--fg-secondary);
  cursor: pointer;
  transition: color var(--t);
}
.code-copy:hover {
  color: var(--fg-emerald);
}
.code-content {
  padding: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.6;
  overflow-x: auto;
  margin: 0;
}
.code-comment {
  color: var(--fg-tertiary);
}
.code-keyword {
  color: var(--fg-emerald);
}
.code-string {
  color: #fbbf24;
}
.code-function {
  color: #60a5fa;
}
.api-limits {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.limit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-default);
}
.limit-row:last-child {
  border-bottom: none;
}
.limit-plan {
  font-size: 14px;
  font-weight: 500;
}
.limit-value {
  font-size: 13px;
  color: var(--fg-secondary);
  font-family: 'JetBrains Mono', monospace;
}

/* Briefings */
.briefings-demo {
  margin-top: 32px;
}
.briefing-sample {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.briefing-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-default);
}
.briefing-date {
  font-size: 12px;
  color: var(--fg-tertiary);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 8px;
}
.briefing-title {
  font-size: 24px;
  font-weight: 700;
}
.briefing-section {
  margin-bottom: 28px;
}
.briefing-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.briefing-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-secondary);
}
.briefing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.briefing-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-secondary);
}
.briefing-item::before {
  content: '→';
  color: var(--fg-emerald);
  font-weight: 600;
  flex-shrink: 0;
}
.briefing-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-default);
}
.briefing-footer p {
  font-size: 12px;
  color: var(--fg-tertiary);
  line-height: 1.6;
}

/* Market tags in data table */
.market-tag {
  display: inline-flex; align-items: center; gap: 6px;
}
.market-tag-icon {
  width: 20px; height: 20px; border-radius: 5px;
  background: var(--border-strong);
  display: grid; place-items: center;
  font-size: 9px; font-weight: 700;
}

.data-table-foot {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border-default);
  display: flex; justify-content: space-between;
}
.data-table-foot span { font-size: 11px; color: var(--fg-tertiary); font-family: 'JetBrains Mono', monospace; }
.data-table-foot b { font-size: 11px; color: var(--fg-emerald); font-weight: 600; font-family: 'JetBrains Mono', monospace; }

/* ══════════════════════════════════
   SECTIONS
   ══════════════════════════════════ */
.section {
  max-width: 1300px; margin: 0 auto;
  padding: 100px 24px;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-emerald);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500; letter-spacing: -0.04em;
  line-height: 1.1; margin-bottom: 16px;
}
h3 {
  font-size: 18px; font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-p {
  font-size: 15px; color: var(--fg-secondary);
  line-height: 1.65; max-width: 600px;
}

/* ── About Split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* ══════════════════════════════════
   TRUSTED BY
   ══════════════════════════════════ */
.trusted {
  text-align: center; padding: 60px 24px;
  max-width: 1100px; margin: 0 auto;
}
.trusted-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-tertiary);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 32px;
}
.trusted-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 40px 48px;
}
.trusted-item {
  font-size: 16px; font-weight: 500; color: var(--fg-secondary);
  letter-spacing: -0.02em;
  transition: color var(--t);
}
.trusted-item:hover { color: var(--fg-default); }

/* ══════════════════════════════════
   PRODUCT CARDS
   ══════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-default);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.product-card {
  background: var(--bg-surface);
  padding: 32px 28px;
  transition: background var(--t);
  cursor: default;
}
.product-card:hover { background: var(--bg-surface2); }
.product-card-icon {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: var(--fg-emerald-dim);
  border: 1px solid rgba(26,255,171,0.12);
  display: grid; place-items: center;
  font-size: 15px; color: var(--fg-emerald);
  margin-bottom: 18px;
}
.product-card h3 { margin-bottom: 8px; }
.product-card p { font-size: 14px; color: var(--fg-secondary); line-height: 1.6; }

/* ══════════════════════════════════
   COMPARE
   ══════════════════════════════════ */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 40px;
}
.compare-card {
  padding: 32px; border-radius: var(--radius-2xl);
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
}
.compare-card.glow {
  border-color: rgba(26,255,171,0.12);
  background: var(--bg-surface2);
}
.compare-card h3 { margin-bottom: 20px; font-weight: 500; }
.compare-card ul { list-style: none; display: grid; gap: 12px; }
.compare-card li {
  font-size: 14px; color: var(--fg-secondary);
  display: flex; gap: 10px; align-items: baseline;
}
.compare-card li::before {
  content: '—'; color: var(--fg-tertiary);
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
}
.compare-card.glow li::before { content: '✓'; color: var(--fg-emerald); }

/* ══════════════════════════════════
   STEPS
   ══════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border-default);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl); overflow: hidden;
  margin-top: 40px;
}
.step {
  background: var(--bg-surface); padding: 36px 28px;
  transition: background var(--t);
}
.step:hover { background: var(--bg-surface2); }
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--fg-emerald); margin-bottom: 14px; display: block;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--fg-secondary); line-height: 1.6; }

/* ══════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════ */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 24px;
}
.testimonial {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 16px;
  transition: border-color var(--t), background var(--t);
}
.testimonial:hover { border-color: var(--border-hover); background: var(--bg-surface2); }
.testimonial-head {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-meta {
  display: flex; flex-direction: column; gap: 1px;
}
.testimonial-meta strong {
  font-size: 14px; font-weight: 500;
  color: var(--fg-default);
}
.testimonial-meta span {
  font-size: 14px; color: var(--fg-secondary);
}
.testimonial-quote {
  font-size: 14px; line-height: 1.65; color: var(--fg-secondary);
  quotes: none; margin: 0;
}

/* ══════════════════════════════════
   PRICING
   ══════════════════════════════════ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 40px;
}
.pricing-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.price-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  padding: 32px; position: relative;
  transition: border-color var(--t), background var(--t);
  display: flex; flex-direction: column;
}
.price-card:hover { border-color: var(--border-hover); }
.price-card.featured {
  border-color: rgba(26,255,171,0.15);
  background: var(--bg-surface2);
}
.price-card.featured:hover { border-color: rgba(26,255,171,0.3); }

/* Life card — premium glow */
.price-card--life {
  border-color: rgba(26,255,171,0.25) !important;
  background: linear-gradient(155deg, rgba(26,255,171,0.04) 0%, var(--bg-surface2) 60%) !important;
  box-shadow: 0 0 48px rgba(26,255,171,0.07), 0 0 0 1px rgba(26,255,171,0.15);
}
.price-card--life:hover {
  border-color: rgba(26,255,171,0.45) !important;
  box-shadow: 0 0 72px rgba(26,255,171,0.12), 0 0 0 1px rgba(26,255,171,0.3);
}

.price-badge {
  position: absolute; top: -1px; right: 24px;
  background: var(--fg-emerald); color: #000;
  font-size: 9px; font-weight: 700; padding: 4px 10px;
  border-radius: 0 0 7px 7px; letter-spacing: 0.06em;
  text-transform: uppercase; font-family: 'JetBrains Mono', monospace;
}
.price-badge--life {
  background: linear-gradient(90deg, #1affab, #00d4ff);
  color: #000;
}
.price-amount {
  font-size: 48px; font-weight: 500; letter-spacing: -0.05em;
  margin: 8px 0 8px; line-height: 1;
}
.price-amount span { font-size: 15px; color: var(--fg-tertiary); font-weight: 400; }
.price-amount .price-k { font-size: 48px; color: inherit; font-weight: 500; letter-spacing: -0.05em; }
.price-amount .price-once { font-size: 13px; color: var(--fg-tertiary); font-weight: 400; margin-left: 4px; }
.price-desc {
  font-size: 13px; color: var(--fg-tertiary); margin-bottom: 20px; line-height: 1.6;
}
.price-card ul { list-style: none; display: grid; gap: 10px; margin-bottom: 24px; flex: 1; }
.price-card li {
  font-size: 13px; color: var(--fg-secondary);
  display: flex; gap: 8px; align-items: center;
}
.price-card li::before {
  content: ''; display: block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--fg-emerald);
  flex-shrink: 0;
}
.btn-life {
  background: linear-gradient(90deg, #1affab, #00c8ff) !important;
  color: #000 !important; font-weight: 700 !important;
  box-shadow: 0 4px 24px rgba(26,255,171,0.25);
  transition: box-shadow var(--t), transform var(--t);
}
.btn-life:hover {
  box-shadow: 0 6px 36px rgba(26,255,171,0.4);
  transform: translateY(-1px);
}
.price-note {
  margin-top: 12px; font-size: 11px; color: var(--fg-tertiary);
  text-align: center; letter-spacing: 0.02em;
}

/* ══════════════════════════════════
   FAQ
   ══════════════════════════════════ */
.faq { max-width: 780px; }
.faq-list { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid var(--border-default);
  padding: 20px 0; cursor: pointer;
}
.faq-q {
  font-size: 15px; font-weight: 500; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  user-select: none; outline: none; list-style: none;
}
.faq-q::after {
  content: '+'; font-size: 20px; color: var(--fg-tertiary);
  font-weight: 300; flex-shrink: 0; transition: transform 0.2s ease;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  margin-top: 14px; font-size: 14px; color: var(--fg-secondary);
  line-height: 1.65;
  animation: faqIn 0.3s ease;
}
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ══════════════════════════════════
   CTA
   ══════════════════════════════════ */
.cta {
  max-width: 1300px; margin: 0 auto; padding: 80px 24px;
}
.cta-card {
  text-align: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  padding: 80px 32px;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26,255,171,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.cta-card h2 { position: relative; z-index: 1; margin-bottom: 12px; }
.cta-card p { position: relative; z-index: 1; color: var(--fg-secondary); font-size: 15px; margin-bottom: 28px; }
.cta-actions { position: relative; z-index: 1; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.footer {
  max-width: 1300px; margin: 0 auto;
  padding: 60px 24px 0;
  border-top: 1px solid var(--border-default);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--fg-default);
  margin-bottom: 16px; font-family: 'JetBrains Mono', monospace;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--fg-secondary);
  padding: 4px 0; transition: color var(--t);
  line-height: 1.6;
}
.footer-col a:hover { color: var(--fg-default); opacity: 1; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 20px 0 40px;
  border-top: 1px solid var(--border-default);
  color: var(--fg-tertiary); font-size: 12px;
}

/* ══════════════════════════════════
   MODAL
   ══════════════════════════════════ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop.active { display: flex; }

.modal {
  width: min(420px, 100%);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-2xl);
  padding: 36px 32px; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
  animation: modalIn 0.2s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: none; } }

.modal-close {
  position: absolute; right: 16px; top: 16px;
  background: transparent; border: 0;
  color: var(--fg-tertiary); font-size: 20px;
  cursor: pointer; padding: 4px 8px;
  border-radius: var(--radius-md); line-height: 1;
  transition: all var(--t);
}
.modal-close:hover { color: var(--fg-default); background: rgba(255,255,255,0.05); }

.modal-icon {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: var(--fg-emerald); color: #000;
  display: grid; place-items: center;
  font-weight: 700; font-size: 11px;
  margin-bottom: 20px;
}

.modal h2 { font-size: 20px; letter-spacing: -0.03em; margin-bottom: 8px; font-weight: 600; }
.modal > p { font-size: 13px; color: var(--fg-secondary); margin-bottom: 24px; line-height: 1.55; }

.modal form { display: grid; gap: 14px; }
.modal label {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--fg-tertiary); font-family: 'JetBrains Mono', monospace;
}
.modal input[type="email"] {
  width: 100%; padding: 12px 14px;
  background: var(--bg-inset); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); color: var(--fg-default);
  font-size: 14px; outline: none; transition: border-color var(--t);
}
.modal input[type="email"]:focus { border-color: var(--fg-emerald); }

.code-inputs {
  display: flex; gap: 8px; justify-content: center; margin: 8px 0;
}
.code-inputs input {
  width: 46px; height: 56px; text-align: center;
  border: 1px solid var(--border-strong); outline: none;
  border-radius: var(--radius-lg); padding: 0;
  background: var(--bg-inset);
  color: var(--fg-default); font-size: 22px; font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  transition: border-color var(--t);
}
.code-inputs input:focus { border-color: var(--fg-emerald); }

.email-confirm {
  padding-top: 16px; border-top: 1px solid var(--border-default);
  text-align: center; font-size: 12px; color: var(--fg-secondary);
}
.email-confirm strong { color: var(--fg-default); font-weight: 500; }

.inline-btn {
  border: 0; background: transparent; color: var(--fg-emerald);
  padding: 0; cursor: pointer; font-size: 12px;
  font-weight: 500; transition: opacity var(--t);
}
.inline-btn:hover { opacity: 0.7; }

.form-status {
  min-height: 18px; font-size: 12px; color: var(--fg-secondary);
  text-align: center; margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
}
.form-status.error { color: #ff4444; }

/* ── Consent checkboxes ── */
.consent-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 2px;
}
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.check-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.check-box {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  border: 1.5px solid var(--border-strong);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s, background 0.18s;
}
.check-label input[type="checkbox"]:checked + .check-box {
  background: var(--fg-emerald);
  border-color: var(--fg-emerald);
}
.check-label input[type="checkbox"]:checked + .check-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.check-label:hover .check-box {
  border-color: var(--fg-emerald);
}
.check-text {
  font-size: 12px;
  color: var(--fg-secondary);
  line-height: 1.5;
}
.check-text a {
  color: var(--fg-emerald);
  text-decoration: none;
}
.check-text a:hover { text-decoration: underline; }
.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}


.spinner {
  width: 32px; height: 32px;
  border: 2px solid var(--border-strong);
  border-top-color: var(--fg-emerald);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.modal-loading {
  display: none; flex-direction: column;
  align-items: center; gap: 16px; padding: 20px 0; text-align: center;
}
.modal-loading.active { display: flex; }
.loading-text { font-size: 14px; font-weight: 500; }
.loading-sub { font-size: 12px; color: var(--fg-secondary); }

.modal-error {
  display: none; flex-direction: column;
  align-items: center; gap: 16px; padding: 10px 0; text-align: center;
}
.modal-error.active { display: flex; }
.modal-error .err-icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center; font-size: 18px;
}
.modal-error h3 { font-size: 15px; }
.modal-error p { font-size: 13px; color: var(--fg-secondary); max-width: 260px; }

/* ══════════════════════════════════
   SCROLL / REVEAL
   ══════════════════════════════════ */
.sr {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sr.visible { opacity: 1; transform: none; }

.sr-stagger > * {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.sr-stagger > *.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════
   UTILITY
   ══════════════════════════════════ */
.hidden { display: none !important; }
.text-emerald { color: var(--fg-emerald); }
.text-muted { color: var(--fg-secondary); }

/* ══════════════════════════════════
   PAGE MODAL (About, Careers, etc.)
   ══════════════════════════════════ */
.page-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: none; align-items: flex-start; justify-content: center;
  overflow-y: auto; padding: 40px 20px;
}
.page-overlay.active { display: flex; }

.page-panel {
  width: min(900px, 100%);
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-2xl);
  padding: 48px 40px;
  position: relative;
  margin: auto;
  animation: pageIn .25s ease;
}
@keyframes pageIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }

.page-close {
  position: absolute; right: 20px; top: 20px;
  background: transparent; border: 0;
  color: var(--fg-tertiary); font-size: 22px;
  cursor: pointer; padding: 6px 10px;
  border-radius: var(--radius-md); line-height: 1;
  transition: all var(--t); z-index: 1;
}
.page-close:hover { color: var(--fg-default); background: rgba(255,255,255,0.05); }

.page-content { display: none; }
.page-content.active { display: block; }

.page-hero {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500; letter-spacing: -0.04em;
  margin-bottom: 12px; display: flex; align-items: center; gap: 14px;
}
.page-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-family: 'JetBrains Mono', monospace;
  background: var(--fg-emerald); color: #000;
  padding: 4px 10px; border-radius: var(--radius-full);
}
.page-lead {
  font-size: 17px; color: var(--fg-secondary);
  line-height: 1.6; margin-bottom: 36px;
  max-width: 640px;
}

.page-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.page-grid h3 { margin-bottom: 8px; }
.page-grid p { font-size: 14px; color: var(--fg-secondary); line-height: 1.65; }

.page-list { display: grid; gap: 16px; }
.page-job {
  background: var(--bg-surface2);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--t);
}
.page-job:hover { border-color: var(--border-hover); }
.page-job h3 { margin-bottom: 6px; }
.page-tag {
  display: inline-block; font-size: 11px; color: var(--fg-emerald);
  font-family: 'JetBrains Mono', monospace; margin-bottom: 10px;
}
.page-job p { font-size: 14px; color: var(--fg-secondary); line-height: 1.6; }

.page-text h3 {
  font-size: 16px; margin-top: 28px; margin-bottom: 8px;
}
.page-text h3:first-child { margin-top: 0; }
.page-text p {
  font-size: 14px; color: var(--fg-secondary); line-height: 1.7;
  margin-bottom: 12px;
}

/* Page stats row */
.page-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-default);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 36px;
}
.page-stat {
  background: var(--bg-surface2);
  padding: 24px 18px; text-align: center;
}
.page-stat-num {
  display: block; font-size: 28px; font-weight: 500;
  letter-spacing: -0.04em; color: var(--fg-emerald);
  margin-bottom: 4px;
}
.page-stat-label {
  font-size: 11px; color: var(--fg-tertiary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ══════════════════════════════════
   EMPHASIS / CYCLING TEXT
   ══════════════════════════════════ */
.cycling-wrap {
  display: inline-flex; position: relative;
  vertical-align: bottom; overflow: hidden;
}
.cycling-word {
  display: block;
  animation: cycleWords 6s ease-in-out infinite;
}
@keyframes cycleWords {
  0%, 15% { transform: translateY(0); }
  25%, 40% { transform: translateY(-100%); }
  50%, 65% { transform: translateY(-200%); }
  75%, 90% { transform: translateY(-300%); }
  100% { transform: translateY(0); }
}

/* ══════════════════════════════════
   MOBILE MENU
   ══════════════════════════════════ */
.nav-burger {
  display: none;
  background: transparent; border: 0;
  cursor: pointer; padding: 6px;
  flex-direction: column; gap: 5px;
  z-index: 60;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--fg-default);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: fixed; inset: 0; z-index: 55;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  padding: 20px;
}
.mobile-menu.open { 
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--fg-secondary);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  transition: color var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover {
  color: var(--fg-default);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mobile-menu a {
  font-size: 20px; font-weight: 500;
  color: var(--fg-secondary);
  padding: 14px 24px;
  transition: color var(--t);
  letter-spacing: -0.02em;
}
.mobile-menu a:hover { color: var(--fg-default); opacity: 1; }
.mobile-menu .btn { margin-top: 16px; font-size: 15px; padding: 12px 28px; }

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px 60px; min-height: auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-grid--two { grid-template-columns: 1fr; max-width: 480px; }
  .compare-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .navbar > .btn { display: none; }
  .nav-burger { display: flex; }
  .navbar { padding: 10px 16px; }
  .section { padding: 60px 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .trusted-grid { gap: 24px 32px; }
  .trusted { padding: 40px 20px; }
  .cta-card { padding: 48px 20px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
  .footer { padding: 40px 16px 0; }
  .modal { padding: 28px 20px; }
  .code-inputs input { width: 40px; height: 48px; font-size: 20px; }
  .page-panel { padding: 32px 20px; }
  .page-grid { grid-template-columns: 1fr; gap: 20px; }
  .page-stats { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 24px 16px 40px; }
  .hero-subtitle { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-data-inner { padding: 16px; }
  .data-table th { padding: 8px 10px; font-size: 10px; }
  .data-table td { padding: 10px; font-size: 12px; }
  .section-label { font-size: 10px; margin-bottom: 12px; }
  .split { gap: 24px; }
  .compare-card { padding: 24px; }
  .price-card { padding: 24px; }
  .pricing-grid { max-width: 100%; }
  .faq { max-width: 100%; }
}
