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

:root {
  /* Premium Dark Theme Palette */
  --bg-base: #05070A; /* Deepest Midnight */
  --bg-surface: #0F141E; /* Elevated Dark Slate */
  --bg-surface-hover: #161D2C;
  
  /* Vibrant Fintech Gradients & Accents */
  --accent-primary: #3B82F6; /* Electric Blue */
  --accent-secondary: #8B5CF6; /* Deep Purple */
  --accent-teal: #10B981; /* Financial Green/Teal */
  --accent-cyan: #06B6D4;
  
  /* Text */
  --text-bright: #FFFFFF;
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  
  /* Glass & Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.15);
  --glass-bg: rgba(15, 20, 30, 0.6);
  
  /* Geometry & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-base);
  background-image: 
    radial-gradient(circle at 15% 0%, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  color: var(--text-bright);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #FFF;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
  filter: brightness(1.1);
}

.btn-ghost {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-bright);
  border: 1px solid var(--border-bright);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFF;
}

.btn-small {
  padding: 8px 20px;
  font-size: 13px;
}

/* --- HEADER --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 7, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  border-radius: 8px;
}

.logo-text-main {
  display: block;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-bright);
  letter-spacing: -0.01em;
}

.logo-text-sub {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-weight: 700;
  letter-spacing: 0.1em;
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text-bright);
}

.nav-cta {
  display: flex;
  gap: 16px;
  margin-left: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-bright);
  cursor: pointer;
  padding: 4px;
}

/* --- HERO SECTION --- */
.hero {
  /* Fluid padding: scales down on mobile */
  padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 8vw, 80px);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.eyebrow-pill {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-primary);
}

.eyebrow-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-gradient {
  background: linear-gradient(to right, #60A5FA, #A78BFA);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 90%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.meta-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
}

.meta-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-teal);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
}
.hero-note strong {
  color: var(--accent-teal);
}

/* Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border-subtle);
}

.trust-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.trust-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 4px;
}

.trust-pill {
  font-size: 12px;
  color: var(--accent-teal);
}

/* Dashboard Simulation Card */
.hero-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-glass);
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.hero-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-bright);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card-chip {
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-primary);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.hero-card-user {
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
}

.hero-card-balance {
  margin-bottom: 24px;
}

.hero-card-amount {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(255,255,255,0.1);
}

.hero-card-change {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-card-change-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-teal);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.hero-chart {
  height: 120px;
  margin: 32px 0;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.hero-chart-line-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.2) 0%, transparent 100%);
  border-top: 2px solid var(--accent-teal);
  position: absolute;
  bottom: -20px;
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 -5px 15px rgba(16, 185, 129, 0.2);
}

.hero-card-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
}

.hero-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-pill {
  font-size: 12px;
  background: rgba(255,255,255,0.05);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  border: 1px solid var(--border-subtle);
}

.hero-pill.accent {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-primary);
  border-color: rgba(59, 130, 246, 0.3);
}

.hero-risk-tag {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-risk-tag::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-primary);
}

/* Band Section */
.band-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 8vw, 80px);
}

.band-card {
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}

.band-card:hover { transform: translateY(-5px); }

.band-color-1 { border-top: 2px solid var(--accent-primary); background: linear-gradient(180deg, rgba(59,130,246,0.05) 0%, var(--bg-surface) 100%);}
.band-color-2 { border-top: 2px solid var(--accent-cyan); background: linear-gradient(180deg, rgba(6,182,212,0.05) 0%, var(--bg-surface) 100%);}
.band-color-3 { border-top: 2px solid var(--accent-secondary); background: linear-gradient(180deg, rgba(139,92,246,0.05) 0%, var(--bg-surface) 100%);}

.band-item-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.band-color-1 .band-item-label { color: var(--accent-primary); }
.band-color-2 .band-item-label { color: var(--accent-cyan); }
.band-color-3 .band-item-label { color: var(--accent-secondary); }

.band-item-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-bright);
}

.band-item-body {
  font-size: 14px;
  color: var(--text-muted);
}

.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(59, 130, 246, 0.05);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  margin-top: 40px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.mini-cta-text {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-bright);
}

/* --- COMMON SECTIONS --- */
.section {
  padding: clamp(60px, 10vw, 100px) 0;
}

.solid-bg-1 { background: radial-gradient(ellipse at top left, rgba(59,130,246,0.08) 0%, transparent 70%); }
.solid-bg-2 { background: var(--bg-surface); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.solid-bg-3 { background: radial-gradient(ellipse at right, rgba(16,185,129,0.05) 0%, transparent 60%); }
.solid-bg-4 { background: radial-gradient(ellipse at bottom, rgba(139,92,246,0.05) 0%, transparent 60%); }

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: end;
}

.section-kicker {
  color: var(--accent-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
}

.section-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-muted);
}

/* Grids */
.feature-grid, .persona-grid, .strategy-grid, .product-grid, .reasons-grid, .work-grid, .resource-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Rich Dark Cards */
.feature-card, .persona-card, .strategy-card, .product-card, .reason-card, .work-card, .resource-card, .faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover, .product-card:hover, .strategy-card:hover, .resource-card:hover {
  transform: translateY(-4px);
  background: var(--bg-surface-hover);
  border-color: var(--border-bright);
  box-shadow: var(--shadow-glow);
}

.f-color-1:hover { border-color: var(--accent-primary); box-shadow: 0 10px 30px rgba(59,130,246,0.15); }
.f-color-2:hover { border-color: var(--accent-teal); box-shadow: 0 10px 30px rgba(16,185,129,0.15); }
.f-color-3:hover { border-color: var(--accent-secondary); box-shadow: 0 10px 30px rgba(139,92,246,0.15); }

/* Card Typography */
.feature-icon {
  font-size: 28px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.03);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.feature-title, .product-title, .strategy-name, .reason-title, .work-title, .resource-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-bright);
}

.feature-body, .product-text, .strategy-body, .reason-body, .work-body, .resource-body, .faq-a {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.feature-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-primary);
}

/* Personas */
.persona-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.persona-avatar {
  font-size: 24px;
  background: rgba(255,255,255,0.05);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
}

.persona-role {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.persona-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-bright);
}

.persona-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  gap: 20px;
  background: var(--bg-base);
  padding: 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.3s;
}

.step:hover {
  border-color: var(--border-bright);
}

.step-marker {
  width: 36px;
  height: 36px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-primary);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step-body-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-bright);
}

.step-body-text {
  color: var(--text-muted);
  font-size: 15px;
}

/* Dashboard Panel Simulation */
.steps-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--border-bright);
  box-shadow: var(--shadow-glass);
}

.steps-card-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.metric-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.metric-value {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-teal);
  line-height: 1;
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.metric-chip {
  background: rgba(255,255,255,0.05);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  display: inline-block;
  margin-top: 12px;
}

.steps-card-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 32px 0;
}

.allocation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border-subtle);
}

.allocation:last-of-type { border-bottom: none; }

.allocation-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-bright);
}

.allocation-value {
  font-weight: 700;
  font-size: 16px;
}

.allocation-pill {
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 4px 8px;
  border-radius: 4px;
}

.disclaimer-text {
  margin-top: 24px;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Products */
.product-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.product-filter-pill {
  padding: 10px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  color: var(--text-main);
  transition: all 0.2s ease;
}

.product-filter-pill.active, .product-filter-pill:hover {
  background: var(--text-bright);
  color: var(--bg-base);
  border-color: var(--text-bright);
}

.product-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-surface-hover);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-surface) 0%, transparent 100%);
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cta-wrap {
  margin-top: auto;
}

/* Strategy Metas */
.strategy-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-secondary);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.strategy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.strategy-chip {
  background: rgba(255,255,255,0.05);
  color: var(--text-main);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid var(--border-subtle);
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-title-block span {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.two-col-title-block h2 {
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 24px;
}

.two-col-text {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.two-col-image-card {
  background: var(--glass-bg);
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-bright);
  box-shadow: var(--shadow-glass);
}

.two-col-image {
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  background-color: var(--bg-surface);
}

.two-col-caption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  padding: 0 16px 8px;
}

/* Security */
.security-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.security-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.security-item {
  padding: 32px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.security-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent-primary);
  box-shadow: 0 0 15px var(--accent-primary);
}

.security-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.security-text {
  font-size: 15px;
  color: var(--text-muted);
}

.security-highlight {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-teal);
  background: rgba(16,185,129,0.1);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: inline-block;
  border: 1px solid rgba(16,185,129,0.2);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.badge {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.05);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.badge.green { background: rgba(16,185,129,0.1); color: var(--accent-teal); border-color: rgba(16,185,129,0.3); }
.badge.blue { background: rgba(59,130,246,0.1); color: var(--accent-primary); border-color: rgba(59,130,246,0.3); }

.security-card {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 32px;
  border-radius: var(--radius-md);
  color: #FCA5A5;
  font-size: 14px;
}

.security-card strong {
  display: block;
  font-size: 18px;
  color: #EF4444;
  margin-bottom: 16px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--bg-surface);
  padding: 40px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
}

.pricing-card.highlight {
  background: linear-gradient(180deg, rgba(30,58,138,0.2) 0%, var(--bg-surface) 100%);
  border: 1px solid rgba(59, 130, 246, 0.5);
  box-shadow: var(--shadow-glow);
  position: relative;
  transform: translateY(-8px);
}

.pricing-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.pricing-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-bright);
}

.pricing-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-bright);
  margin: 16px 0;
}

.pricing-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-list li {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
}

.pricing-dot {
  color: var(--accent-teal);
  font-weight: bold;
}

.pricing-badge {
  display: inline-block;
  background: rgba(59,130,246,0.15);
  color: var(--accent-primary);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(59,130,246,0.3);
}

/* Comparison Table */
.comparison {
  margin-top: clamp(40px, 8vw, 80px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}

.comparison-table {
  width: 100%;
  min-width: 768px; /* Forces table to scroll instead of squish on mobile */
  border-collapse: collapse;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.comparison-table th, .comparison-table td {
  padding: 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 15px;
}

.comparison-table th {
  background: rgba(255,255,255,0.02);
  font-weight: 700;
  color: var(--text-bright);
}

.comparison-good {
  color: var(--accent-teal);
  font-weight: 700;
  background: rgba(16,185,129,0.05);
}

.comparison-bad {
  color: #F87171;
}

/* Video */
.video-frame-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-bright);
  box-shadow: var(--shadow-glow);
  background: var(--bg-surface);
  padding: 8px;
}

.video-frame-wrap iframe {
  width: 100%;
  height: 600px;
  display: block;
  border-radius: var(--radius-sm);
}

/* CTA Section */
.cta {
  padding: 40px 24px;
}

.cta-inner {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--radius-lg);
  color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(139,92,246,0.3);
}

.cta-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.cta-text {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 500px;
}

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-align: right;
}

.cta-ghost {
  border-color: rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.2);
  color: #FFF;
}

.cta-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: #FFF;
}

/* Resources & FAQ */
.resource-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(59,130,246,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(59,130,246,0.2);
}

.resource-meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.faq-grid {
  grid-template-columns: 1fr 1fr;
}

.faq-q {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
}

/* Footer */
.footer-wrap {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0;
  margin-top: 40px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}

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

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--text-bright);
}

/* =========================================
   RESPONSIVE MEDIA QUERIES 
   ========================================= */

@media (max-width: 1024px) {
  .hero-grid, .steps, .two-col, .security-grid { 
    grid-template-columns: 1fr; 
    gap: 48px; 
  }
  .band-three, .feature-grid, .persona-grid, .strategy-grid, .product-grid, .reasons-grid, .work-grid, .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .section-header { 
    grid-template-columns: 1fr; 
    gap: 16px; 
  }
  .pricing-card.highlight { 
    transform: none; 
  }
}

@media (max-width: 768px) {
  /* Grids to single column */
  .band-three, .feature-grid, .persona-grid, .strategy-grid, .product-grid, .reasons-grid, .work-grid, .resource-grid, .pricing-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  .trust-bar {
    grid-template-columns: 1fr;
  }
  
  /* CTA Adjustments */
  .cta-inner { 
    flex-direction: column; 
    text-align: left; 
    gap: 32px; 
    align-items: flex-start; 
    padding: 32px 24px; 
  }
  .cta-note { 
    text-align: left; 
  }
  
  /* Footer Stacking */
  .footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* Mobile Navigation Logic */
  .nav {
    display: flex;
    position: absolute;
    top: 72px; /* Height of header */
    left: 0;
    right: 0;
    background: rgba(5, 7, 10, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-subtle);
    
    /* Animation hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  
  /* When .is-open class is added to header via JS */
  .header.is-open .nav { 
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-cta { 
    margin-left: 0; 
    width: 100%; 
    margin-top: 16px; 
    flex-direction: column;
  }
  
  .nav-cta .btn {
    width: 100%;
  }
  
  .mobile-toggle { 
    display: block; 
  }
  
  /* Video Constraint */
  .video-frame-wrap iframe { 
    height: 250px; 
  }
}