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

:root {
  --bg: #0a0a0a;
  --bg-light: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --text: #ffffff;
  --text-muted: #888888;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --green: #34d399;
  --red: #f87171;
  --blue: #60a5fa;
  --gradient: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
  --gradient-subtle: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(168,85,247,0.1));
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

.btn-primary { background: var(--gradient); color: white; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.3); }

/* Badge */
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 24px;
}

/* Hero */
.hero {
  padding: 140px 24px 60px;
  max-width: 1140px;
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 12px; margin-bottom: 16px; }
.hero-note { font-size: 0.8rem; color: var(--text-muted); }

/* Hero Passes */
.pass-stack {
  position: relative;
  height: 520px;
  width: 100%;
}

.pass {
  position: absolute;
  width: 280px;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.pass:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.pass-finance {
  background: linear-gradient(145deg, #0f172a, #1e1b4b);
  border: 1px solid rgba(99, 102, 241, 0.3);
  top: 0;
  left: 20px;
  z-index: 3;
  transform: rotate(-2deg);
}

.pass-event {
  background: linear-gradient(145deg, #1a1a2e, #312e81);
  border: 1px solid rgba(168, 85, 247, 0.3);
  top: 60px;
  left: 180px;
  z-index: 2;
  transform: rotate(3deg);
}

.pass-health {
  background: linear-gradient(145deg, #0f2922, #064e3b);
  border: 1px solid rgba(52, 211, 153, 0.3);
  top: 140px;
  left: 60px;
  z-index: 1;
  transform: rotate(-1deg);
}

.pass-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.pass-strip-concert {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a855f7, #ec4899);
}

.pass-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  margin-top: 4px;
}

.pass-logo-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.pass-header-field { text-align: right; }

.pass-label {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.45;
  margin-bottom: 2px;
}

.pass-value {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
}

.pass-value-live { display: flex; align-items: center; gap: 6px; justify-content: flex-end; }
.pass-value-green { color: var(--green); }

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52,211,153,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(52,211,153,0); }
}

.pass-primary { margin-bottom: 16px; }

.pass-primary-value {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.pass-secondary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pass-field { flex: 1; }

.pass-barcode { display: flex; justify-content: center; }

.barcode-placeholder {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.barcode-placeholder::after {
  content: '';
  position: absolute;
  inset: 10px;
  background: repeating-conic-gradient(#000 0% 25%, #fff 0% 50%) 0 0 / 7px 7px;
  border-radius: 3px;
}

/* Ticker */
.ticker-section {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}

.ticker { overflow: hidden; }

.ticker-track {
  display: flex;
  gap: 24px;
  align-items: center;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.ticker-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-light); }

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 60px;
}

.platform-header { text-align: center; margin-bottom: 60px; }
.platform-header .section-title { margin-bottom: 20px; }
.platform-header .section-subtitle { margin-bottom: 0; }

/* Platform Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.platform-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-4px);
}

.platform-card-large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
}

.platform-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.platform-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.platform-card-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Live Update Demo */
.live-update-demo {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.mini-pass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  width: 160px;
  text-align: center;
}

.mini-pass-updated {
  border-color: rgba(99, 102, 241, 0.4);
  background: rgba(99, 102, 241, 0.05);
  position: relative;
}

.mini-pass-header {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 8px;
}

.mini-pass-value {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.mini-pass-value.highlight { color: var(--accent-light); }

.mini-pass-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.update-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gradient);
  font-size: 0.55rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 10px;
  letter-spacing: 0.05em;
}

.update-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}

.arrow-pulse {
  width: 40px;
  height: 2px;
  background: var(--gradient);
  position: relative;
  border-radius: 1px;
  animation: arrow-glow 2s infinite;
}

.arrow-pulse::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent-light);
  border-top: 2px solid var(--accent-light);
  transform: rotate(45deg);
}

@keyframes arrow-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Location Ring */
.location-ring {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(99,102,241,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.location-ring-inner {
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
}

.location-ping {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  animation: ping-ring 2s infinite;
}

@keyframes ping-ring {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Lock Screen Demo */
.lock-screen-demo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 60px;
}

.notif-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
}

.notif-bar-accent {
  background: var(--gradient);
  animation: notif-glow 3s infinite;
}

.notif-bar-short { width: 70%; }

@keyframes notif-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Lifecycle Dots */
.lifecycle-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lc-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.lc-dot-1 { background: var(--accent); }
.lc-dot-2 { background: var(--green); }
.lc-dot-3 { background: rgba(255,255,255,0.2); }

.lc-line {
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.15);
}

/* Analytics Bars */
.analytics-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 50px;
}

.a-bar {
  width: 8px;
  border-radius: 3px;
  background: var(--gradient);
  transition: height 0.3s;
}

/* Showcase Grid */
.showcase-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 48px;
  transition: border-color 0.3s;
}

.showcase-card:hover { border-color: rgba(99,102,241,0.2); }

.showcase-card-reverse .showcase-visual { order: 2; }
.showcase-card-reverse .showcase-text { order: 1; }

.showcase-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.showcase-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.showcase-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Showcase Pass Visuals */
.showcase-pass {
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}

.showcase-finance { background: linear-gradient(145deg, #0f172a, #1e1b4b); }
.showcase-events { background: linear-gradient(145deg, #1a1a2e, #312e81); }
.showcase-health { background: linear-gradient(145deg, #0f2922, #064e3b); }
.showcase-education { background: linear-gradient(145deg, #1e1b4b, #312e81); }
.showcase-loyalty { background: linear-gradient(145deg, #2e1a1a, #4c1d1d); }
.showcase-b2b { background: linear-gradient(145deg, #1a1a1a, #2a2a2a); }

.sp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.sp-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

.sp-value {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sp-red { color: var(--red); }
.sp-green { color: var(--green); }

.sp-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 8px 0;
}

.sp-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  margin-top: 12px;
  overflow: hidden;
}

.sp-bar-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 3px;
  transition: width 1s ease;
}

.sp-bar-blue { background: var(--blue); }

.sp-event-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.sp-event-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Stars */
.sp-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  padding: 8px 0;
}

.sp-star {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.sp-star.filled { background: #fbbf24; }

/* B2B Integrations */
.sp-integrations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.sp-integration {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.sp-int-icon {
  width: 24px;
  height: 24px;
  background: var(--gradient);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step { text-align: center; padding: 32px; }

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 20px;
}

.step h3 { font-size: 1.2rem; margin-bottom: 12px; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* Code Block */
.code-block {
  background: #0d1117;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto 48px;
}

.code-header {
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.code-dot { width: 12px; height: 12px; border-radius: 50%; }
.code-dot.red { background: #ff5f57; }
.code-dot.yellow { background: #febc2e; }
.code-dot.green { background: #28c840; }

.code-lang {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.code-block pre { padding: 24px; overflow-x: auto; }

.code-block code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.8rem;
  line-height: 1.7;
  color: #c9d1d9;
}

.code-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}

.code-feature-icon {
  color: var(--accent-light);
  margin-bottom: 12px;
}

.code-feature strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.code-feature p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
}

.stat { text-align: center; }

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(99,102,241,0.08), var(--bg-card));
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-card h3 { font-size: 1.2rem; margin-bottom: 16px; }

.price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card ul { list-style: none; margin-bottom: 32px; }

.pricing-card li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-card li::before {
  content: '\2713';
  color: var(--accent-light);
  margin-right: 8px;
  font-weight: 700;
}

.pricing-card .btn { width: 100%; text-align: center; }

/* CTA */
.cta-section { padding: 60px 0 100px; }

.cta-box {
  text-align: center;
  padding: 60px;
  background: var(--gradient-subtle);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius-lg);
}

.cta-box h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 12px;
  line-height: 1.7;
}

.footer-brand a { color: var(--accent-light); text-decoration: none; }

.footer-links { display: flex; gap: 60px; }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* Responsive */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; }
  .hero h1 { font-size: 2.5rem; }
  .hero-passes { display: none; }

  .section-title { font-size: 1.8rem; }

  .platform-grid { grid-template-columns: 1fr; }
  .platform-card-large { grid-column: span 1; grid-template-columns: 1fr; }
  .live-update-demo { flex-direction: column; }
  .update-arrow { transform: rotate(90deg); }

  .showcase-card { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .showcase-card-reverse .showcase-visual { order: 0; }
  .showcase-card-reverse .showcase-text { order: 0; }

  .steps { grid-template-columns: 1fr; }
  .code-features { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }

  .stats-bar { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }

  .nav-links a:not(.btn) { display: none; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }

  .cta-box { padding: 40px 24px; }
  .cta-box h2 { font-size: 1.5rem; }
}
