/* =============================================================
   growth.html — page-specific styles
   ============================================================= */

/* ============================================
   CUSTOM PROPERTIES
============================================ */
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@property --border-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@property --shimmer-pos { syntax: '<percentage>'; initial-value: -100%; inherits: false; }

:root {
  --bg: #0b0514;
  --bg-alt: #130a24;
  --accent: #00e5ff;
  --accent2: #d946ef;
  --accent3: #a855f7;
  --pink: #ffaa00;
  --gold: #2dd4bf;
  --text: #f8fafc;
  --text-muted: #cbd5e1;
  --text-dim: #64748b;
  --border: rgba(217, 70, 239, 0.15);
  --glow: rgba(0, 229, 255, 0.12);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: rgba(0, 229, 255, 0.35); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(217, 70, 239, 0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(217, 70, 239, 0.6); }

html { font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: overlay;
  transform: translateZ(0);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }

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

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes spin { to { --angle: 360deg; } }
@keyframes borderSpin { to { --border-angle: 360deg; } }
@keyframes shimmer { to { --shimmer-pos: 200%; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes glow-pulse {
  0%, 100% { opacity: 0.85; filter: drop-shadow(0 0 12px rgba(0,229,255,0.3)); }
  50% { opacity: 1; filter: drop-shadow(0 0 20px rgba(0,229,255,0.5)); }
}
@keyframes progress-fill { from { width: 0; } to { width: var(--w); } }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
@keyframes bar-grow { from { transform: scaleY(0); } to { transform: scaleY(var(--h)); } }

/* Reveal system */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }

.stagger-up .reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-up.visible .reveal-child { opacity: 1; transform: none; }
.stagger-up.visible .reveal-child:nth-child(1) { transition-delay: 0ms; }
.stagger-up.visible .reveal-child:nth-child(2) { transition-delay: 80ms; }
.stagger-up.visible .reveal-child:nth-child(3) { transition-delay: 160ms; }
.stagger-up.visible .reveal-child:nth-child(4) { transition-delay: 240ms; }
.stagger-up.visible .reveal-child:nth-child(5) { transition-delay: 320ms; }
.stagger-up.visible .reveal-child:nth-child(6) { transition-delay: 400ms; }
.stagger-up.visible .reveal-child:nth-child(7) { transition-delay: 480ms; }
.stagger-up.visible .reveal-child:nth-child(8) { transition-delay: 560ms; }

/* Responsive: show hamburger, hide nav-links on mobile */

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-conic {
  position: relative;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 400;
  color: white;
  background: var(--bg);
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-conic::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: conic-gradient(from var(--border-angle), var(--accent), var(--accent2), var(--pink), var(--accent3), var(--accent));
  z-index: -2;
  animation: borderSpin 3s linear infinite;
}
.btn-conic::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,229,255,0.08), rgba(11,5,20,0.97));
  z-index: -1;
}
.btn-conic:hover {
  transform: translateY(-2px);
  transition: transform 0.2s;
}

.btn-ghost {
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--text-muted);
  border: 1px solid rgba(217, 70, 239, 0.2);
  background: rgba(217, 70, 239, 0.04);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(217, 70, 239, 0.35);
  box-shadow: 0 0 24px rgba(217, 70, 239, 0.15);
  transform: translateY(-2px);
}

/* ============================================
   GLASS CARD
============================================ */
.card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover { transform: translateY(-3px); border-color: rgba(217, 70, 239, 0.3); box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 30px rgba(0,229,255,0.06); }
.card:hover::before { opacity: 1; }

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-bg-orb-1 {
  width: 500px; height: 500px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(0,229,255,0.10), transparent 70%);
}
.hero-bg-orb-2 {
  width: 400px; height: 400px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(217,70,239,0.10), transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 200;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ============================================
   FOUNDATION STRIP
============================================ */
.foundation-strip {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.foundation-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}
.fs-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  margin-right: 8px;
}
.fs-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,229,255,0.04);
  border: 1px solid rgba(0,229,255,0.14);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}
.fs-pill:hover { background: rgba(0,229,255,0.10); color: var(--text); }
.fs-pill iconify-icon { color: var(--accent); font-size: 0.9rem; }
.fs-plus {
  color: var(--text-dim);
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0 8px;
}

/* ============================================
   DELIVERABLES BENTO
============================================ */
.deliverables {
  padding: 100px 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 56px;
}
.bento-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-card:hover { transform: translateY(-3px); border-color: rgba(217,70,239,0.3); box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 30px rgba(0,229,255,0.06); }
.bento-card:hover::before { opacity: 1; }

/* Span variants */
.bento-span-2 { grid-column: span 2; }
.bento-span-3 { grid-column: span 3; }

.bento-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(0,229,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 1.3rem;
}
.bento-card h3 {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}
.bento-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Mini widget: progress bar */
.mini-progress {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mini-progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.mini-progress-row span:first-child { min-width: 90px; }
.mini-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.mini-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform-origin: left;
  animation: progress-fill 1.5s ease forwards;
  animation-play-state: paused;
}
.visible .mini-bar-fill { animation-play-state: running; }
.mini-progress-row .pct { min-width: 28px; text-align: right; color: var(--accent); font-family: var(--font-mono); font-size: 0.7rem; }

/* Mini widget: status rows */
.mini-status-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mini-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 6px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
}
.mini-status-badge {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.badge-green { background: rgba(34,197,94,0.12); color: #4ade80; }
.badge-amber { background: rgba(245,158,11,0.12); color: var(--accent2); }
.badge-blue { background: rgba(96,165,250,0.12); color: #60a5fa; }

/* Mini widget: bar chart */
.mini-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
  margin-top: 20px;
}
.bar-col {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  border-radius: 3px 3px 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: bar-grow 1s ease forwards;
  animation-play-state: paused;
}
.visible .bar-col { animation-play-state: running; }

/* ============================================
   COMPARISON TABLE
============================================ */
.comparison {
  padding: 100px 0;
  background: var(--bg-alt);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.compare-card {
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.compare-card.featured {
  background: rgba(0,229,255,0.02);
  border-color: rgba(0,229,255,0.2);
  position: relative;
}
.compare-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--pink));
}
.compare-tier {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.compare-card.featured .compare-tier { color: var(--accent); }
.compare-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 200;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.compare-price-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.compare-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.compare-item iconify-icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.95rem;
}
.compare-item.yes iconify-icon { color: #4ade80; }
.compare-item.no iconify-icon { color: var(--text-dim); }
.compare-item.no span { opacity: 0.5; }
.compare-item.upgrade iconify-icon { color: var(--accent); }

/* ============================================
   USE CASES
============================================ */
.use-cases {
  padding: 100px 0;
}
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.use-case-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.use-case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.use-case-card:hover { transform: translateY(-3px); border-color: rgba(217,70,239,0.3); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.use-case-card:hover::before { opacity: 1; }
.use-case-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}
.use-case-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.use-case-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 20px;
}
.use-case-examples {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.use-case-example {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 6px 10px;
  background: rgba(0,229,255,0.04);
  border-radius: 6px;
  border-left: 2px solid rgba(0,229,255,0.25);
}

/* ============================================
   ROI VISUAL
============================================ */
.roi-section {
  padding: 100px 0;
  background: var(--bg-alt);
}
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  align-items: center;
}
.roi-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.roi-stat-row {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}
.roi-stat-row h4 {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 400;
}
.roi-stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 200;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}
.roi-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}
.roi-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  animation: progress-fill 2s ease forwards;
  animation-play-state: paused;
}
.visible .roi-bar-fill { animation-play-state: running; }
.roi-timeline {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.roi-timeline h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text-muted);
}
.timeline-track {
  position: relative;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-track::before {
  content: '';
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), transparent);
}
.timeline-item {
  position: relative;
  padding: 0 0 24px 16px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -17px; top: 5px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0,229,255,0.5);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-label {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
}
.timeline-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 2px;
}

/* ============================================
   PRICING
============================================ */
.pricing {
  padding: 100px 0;
}
.pricing-card {
  max-width: 680px;
  margin: 56px auto 0;
  position: relative;
  border-radius: 20px;
  padding: 48px;
  background: rgba(0,229,255,0.02);
  border: 1px solid rgba(0,229,255,0.18);
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--pink));
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.22);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pricing-header {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: -0.05em;
}
.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}
.pricing-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.pricing-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.pricing-item iconify-icon { color: var(--accent); font-size: 0.95rem; flex-shrink: 0; margin-top: 2px; }
.pricing-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FINAL CTA
============================================ */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,229,255,0.05), transparent);
}
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 200;
  letter-spacing: -0.04em;
  max-width: 700px;
  margin: 0 auto 32px;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   SECTIONS COMMON
============================================ */
.section-header {
  max-width: 600px;
}
.section-header.centered {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.section-header.centered .eyebrow {
  justify-content: center;
}
.section-header.centered .eyebrow::before { display: none; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-span-2 { grid-column: span 1; }
  .bento-span-3 { grid-column: span 2; }
  .compare-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .use-cases-grid { grid-template-columns: 1fr 1fr; }
  .roi-grid { grid-template-columns: 1fr; }
  .pricing-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2, .bento-span-3 { grid-column: span 1; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .compare-grid { max-width: 100%; }
  .foundation-strip-inner { gap: 8px; }
  .pricing-cta { flex-direction: column; align-items: stretch; }
  .pricing-cta .btn { justify-content: center; }
}
