:root {
  --ink: #0c1220;
  --ink-2: #111827;
  --navy: #1e2a4a;
  --navy-deep: #060b14;
  --slate-soft: #6b7280;
  --mist: #9ca3af;
  --ice: #e5e7eb;
  --snow: #f8fafc;
  --brand: #e8733a;
  --brand-2: #f09450;
  --brand-glow: #f5b070;
  --success: #22c55e;
  --danger: #ef4444;
  --radius: 0.75rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--snow);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1340px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 32px; } }

.text-gradient-brand {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bg-gradient-brand { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%); }

.shadow-glow-brand {
  box-shadow: 0 10px 40px -10px rgba(232,115,58,0.5), 0 4px 12px -2px rgba(232,115,58,0.3);
}
.shadow-elevated {
  box-shadow: 0 24px 64px -16px rgba(12,18,32,0.18), 0 8px 24px -8px rgba(12,18,32,0.1);
}

.bg-grid-dark {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPan 30s linear infinite;
}
@keyframes gridPan {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-float { animation: floatY 5s ease-in-out infinite; }
.animate-float-delay { animation: floatY 5s ease-in-out 1.5s infinite; }
.animate-pulse-dot { animation: pulseDot 2s ease-in-out infinite; }
.animate-marquee { animation: marquee 40s linear infinite; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 0.75rem;
  padding: 14px 24px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white;
  box-shadow: 0 10px 40px -10px rgba(232,115,58,0.5);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.05); }
.btn-outline-dark {
  background: transparent;
  border: 1px solid rgba(12,18,32,0.15);
  color: var(--ink);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(232,115,58,0.3);
  background: rgba(232,115,58,0.1);
  padding: 6px 16px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-glow);
}

.section { padding: 80px 0; }
@media (min-width: 640px) { .section { padding: 112px 0; } }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(12,18,32,0.85);
  backdrop-filter: blur(20px) saturate(150%);
}
.header-inner {
  display: flex;
  height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
@media (min-width: 1024px) { .header-inner { height: 83px; } }

.logo { display: flex; align-items: center; gap: 9px; }
.header .logo img {
  height: 115px;
  width: auto;
  object-fit: contain;
}
.logo-icon {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 10px 40px -10px rgba(232,115,58,0.5);
}
.logo-text {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
}
.logo-text span { color: var(--brand); }

.nav-desktop { display: none; gap: 5px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  border-radius: 7px;
  padding: 9px 16px;
  font-size: 1.00625rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.nav-desktop a:hover { background: rgba(255,255,255,0.05); color: white; }

.header-actions { display: none; align-items: center; gap: 8px; }
@media (min-width: 640px) { .header-actions { display: flex; } }
.btn-launch {
  padding: 12px 21px;
  font-size: 0.790625rem;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .btn-launch { padding: 14px 23px; font-size: 0.8625rem; }
}

.menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 1024px) { .menu-btn { display: none; } }

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 16px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 1.00625rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); }
.mobile-menu .btn-primary {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent !important;
  z-index: 1;
}
.hero-grid,
.hero-mesh,
.hero-glow { z-index: 2; }
.hero-mesh, .hero-glow { opacity: 0 !important; }
.hero-fade { display: none !important; }
.hero .container {
  position: relative;
  z-index: 5;
  width: 100%;
}
.hero-content {
  max-width: 760px;
  text-align: left;
  margin-left: 0;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 0.97;
  color: white;
  max-width: 900px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 4px 20px rgba(0, 0, 0, 0.6);
}
@media (min-width: 640px) { .hero h1 { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4rem; } }
.hero p {
  margin-top: 24px;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 4px 20px rgba(0, 0, 0, 0.6);
}
@media (min-width: 640px) { .hero p { font-size: 1.125rem; } }
.hero .kicker {
  padding: 10px 20px;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: #fff;
  border: 1px solid rgba(232, 115, 58, 0.65);
  background: rgba(12, 18, 32, 0.72);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 20px rgba(232, 115, 58, 0.25);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}
@media (min-width: 640px) {
  .hero .kicker { font-size: 0.875rem; padding: 12px 24px; }
}
.hero .kicker .kicker-dot {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--brand-glow);
}
.hero-buttons { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  justify-items: center;
  max-width: 700px;
  margin: 24px auto 0 0;
}
.hero-chip {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  text-align: center;
}
.hero-title span { display: block; }

.hero-grid { position: absolute; inset: 0; opacity: 0.5; }
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 0%, rgba(30,42,74,0.7) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 100%, rgba(232,115,58,0.2) 0%, transparent 60%),
    var(--ink);
  opacity: 0.9;
}
.hero-glow {
  position: absolute;
  top: -128px; left: 50%;
  width: 900px; height: 600px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(245,176,112,0.18), transparent);
  pointer-events: none;
}

.trust-bar {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: var(--ink-2);
  padding: 24px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}
.trust-label {
  display: none;
  white-space: nowrap;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mist);
  flex-shrink: 0;
}
@media (min-width: 640px) { .trust-label { display: block; } }
.trust-scroll {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.trust-items {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: marquee 40s linear infinite;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 768px; }
.section-head .kicker { margin-bottom: 16px; }
.section-head h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.05;
}
@media (min-width: 640px) { .section-head h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-head h2 { font-size: 3rem; } }
.section-head p {
  margin-top: 20px;
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate-soft);
}
.section-head.center p { margin-left: auto; margin-right: auto; }
.section-head.dark h2 { color: white; }
.section-head.dark p { color: rgba(255,255,255,0.45); }

.problem-solution-grid { display: grid; gap: 24px; }
@media (min-width: 1024px) { .problem-solution-grid { grid-template-columns: 1fr 1fr; } }

.card-light {
  height: 100%;
  border-radius: 1.5rem;
  border: 1px solid var(--ice);
  background: white;
  padding: 32px;
  box-shadow: 0 24px 64px -16px rgba(12,18,32,0.18);
}
@media (min-width: 640px) { .card-light { padding: 48px; } }
.card-dark {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--ink);
  padding: 32px;
}
@media (min-width: 640px) { .card-dark { padding: 48px; } }
.card-dark::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 288px; height: 288px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(232,115,58,0.25), transparent);
  pointer-events: none;
}
.card-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.card-label .line { width: 20px; height: 2px; border-radius: 2px; }
.card-light h3, .card-dark h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .card-light h3, .card-dark h3 { font-size: 1.75rem; } }
.card-light h3 { color: var(--ink); }
.card-dark h3 { color: white; }

.check-list { display: flex; flex-direction: column; gap: 20px; list-style: none; }
.check-list li { display: flex; gap: 12px; }
.check-icon, .x-icon {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 6px;
  margin-top: 2px;
  font-size: 0.875rem;
  font-weight: 700;
}
.check-icon { background: rgba(34,197,94,0.15); color: var(--success); }
.x-icon { background: rgba(239,68,68,0.1); color: var(--danger); }
.check-list strong {
  display: block;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.card-light .check-list strong { color: var(--ink); }
.card-dark .check-list strong { color: white; }
.check-list p {
  margin-top: 4px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slate-soft);
}
.card-dark .check-list p { color: rgba(255,255,255,0.5); }

.modules-grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .modules-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .modules-grid { grid-template-columns: 1fr 1fr 1fr; } }

.module-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--ice);
  background: white;
  box-shadow: 0 2px 12px rgba(10,20,40,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.module-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px -16px rgba(12,18,32,0.18); }
.module-img-wrap {
  position: relative;
  height: 208px;
  overflow: hidden;
  background: var(--ink);
}
.module-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.5s ease;
}
.module-card:hover .module-img-wrap img { transform: scale(1.05); }
.module-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,18,32,0.6), transparent, rgba(232,115,58,0.1));
}
.module-body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.module-num {
  position: absolute;
  right: 20px; top: 12px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(232,115,58,0.15);
  transition: color 0.3s;
  pointer-events: none;
  line-height: 1;
}
.module-card:hover .module-num { color: rgba(232,115,58,0.3); }
.module-label {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brand);
}
.module-title {
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.module-slogan {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
}
.module-desc {
  margin-top: 12px;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slate-soft);
}
.module-chips {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.module-chip {
  border-radius: 6px;
  border: 1px solid var(--ice);
  background: var(--snow);
  padding: 4px 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--slate-soft);
}

.capabilities-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .capabilities-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .capabilities-grid { grid-template-columns: 1fr 1fr 1fr; } }

.cap-card {
  height: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 32px;
  transition: all 0.3s ease;
}
.cap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,115,58,0.3);
  background: rgba(232,115,58,0.06);
}
.cap-icon {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  font-size: 1.5rem;
  box-shadow: 0 10px 40px -10px rgba(232,115,58,0.5);
  margin-bottom: 20px;
}
.cap-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}
.cap-card p {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}

.comparison-table-wrap {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--ice);
  box-shadow: 0 24px 64px -16px rgba(12,18,32,0.18);
}
.comparison-scroll { overflow-x: auto; }
.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
.comparison-table th {
  padding: 20px 24px;
  text-align: left;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.comparison-table td {
  padding: 20px 24px;
  border-top: 1px solid var(--ice);
  font-size: 0.875rem;
}
.comp-cap {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.comp-traditional {
  background: #fef8f8;
  color: rgba(239,68,68,0.9);
  display: none;
}
@media (min-width: 640px) { .comp-traditional { display: table-cell; } }
.comp-safe {
  background: #f0fff8;
  color: #006644;
  font-weight: 700;
}
.comp-impact { color: var(--slate-soft); }
.comp-check { color: var(--success); margin-right: 6px; }
.comparison-table tbody tr { background: white; transition: background 0.2s; }
.comparison-table tbody tr:hover { background: rgba(248,250,252,0.6); }

.dashboard-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 1024px) { .dashboard-grid { grid-template-columns: 1.25fr 0.75fr; } }
.dashboard-img {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--ice);
  background: var(--snow);
  padding: 12px;
  box-shadow: 0 24px 64px -16px rgba(12,18,32,0.18);
}
.dashboard-img img { width: 100%; border-radius: 1rem; }
.dashboard-features { display: flex; flex-direction: column; gap: 16px; }
.dash-feature {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--ice);
  background: var(--snow);
  padding: 28px;
  transition: all 0.3s ease;
}
.dash-feature:hover { background: white; box-shadow: 0 24px 64px -16px rgba(12,18,32,0.18); transform: translateX(4px); }
.dash-feature::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 4px; height: 100%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
}
.dash-feature h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
}
.dash-feature p {
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slate-soft);
}

.benefits-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: 1fr 1fr 1fr; } }
.benefit-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--ice);
  background: white;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(10,20,40,0.06);
  transition: box-shadow 0.3s ease;
}
.benefit-card:hover { box-shadow: 0 24px 64px -16px rgba(12,18,32,0.18); }
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.benefit-card:hover::after { transform: scaleX(1); }
.benefit-icon { font-size: 1.875rem; margin-bottom: 20px; }
.benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
}
.benefit-card p {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--slate-soft);
}

.stats-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: 1fr 1fr 1fr; } }
.stat-card {
  height: 100%;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 48px;
  text-align: center;
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,115,58,0.3);
  background: rgba(232,115,58,0.06);
}
.stat-value {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 640px) { .stat-value { font-size: 4rem; } }
.stat-desc {
  margin-top: 20px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 50%, #0a1830 100%);
  padding: 80px 24px;
  text-align: center;
}
@media (min-width: 640px) { .cta-box { padding: 96px 48px; } }
@media (min-width: 1024px) { .cta-box { padding: 96px 80px; } }
.cta-box .bg-grid-dark { position: absolute; inset: 0; opacity: 0.3; }
.cta-box h2 {
  position: relative;
  max-width: 768px;
  margin: 0 auto;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
}
@media (min-width: 640px) { .cta-box h2 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .cta-box h2 { font-size: 3.5rem; } }
.cta-box p {
  position: relative;
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
@media (min-width: 640px) { .cta-box p { font-size: 1.125rem; } }
.cta-buttons {
  position: relative;
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.cta-tags {
  position: relative;
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}
.cta-tag { display: inline-flex; align-items: center; gap: 6px; }

.footer {
  background: #020a18;
  padding: 64px 0;
  color: rgba(255,255,255,0.4);
}
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; } }
.footer-about p {
  margin-top: 16px;
  max-width: 320px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}
@media (min-width: 640px) {
  .footer-about p { font-size: 1rem; }
}
.footer-col h5 {
  margin-bottom: 16px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  font-size: 0.75rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

.footer-social a { color: rgba(255,255,255,0.6); transition: color 0.3s ease; display: inline-flex; }
.footer-social a:hover { color: #E8733A; }

.footer-copyright {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
}
@media (min-width: 640px) {
  .footer-copyright { font-size: 1rem; }
}

.payment-label {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 0 20px rgba(255, 204, 0, 0.15);
}
@media (min-width: 640px) {
  .payment-label { font-size: 0.875rem; }
}

.payment-icons {
  display: flex;
  align-items: center;
}
.payment-paddle {
  display: flex;
  align-items: center;
  cursor: default;
  opacity: 0.8;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}
.payment-paddle img {
  height: 24px;
  width: auto;
  display: block;
}
.payment-paddle:hover {
  opacity: 1;
  transform: scale(1.04);
  filter:
    brightness(1.25)
    drop-shadow(0 0 6px rgba(255, 204, 0, 0.7))
    drop-shadow(0 0 14px rgba(255, 204, 0, 0.45));
}

.kicker-light {
  color: var(--brand);
  border-color: rgba(232,115,58,0.3);
  background: rgba(232,115,58,0.1);
}

.capabilities-bg {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.capabilities-glow {
  position: absolute;
  top: -192px;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(30,42,74,0.6), transparent);
  pointer-events: none;
}

.stats-bg {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.stats-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 500px at 50% 50%, rgba(30,42,74,0.6), transparent);
  pointer-events: none;
}

/* FAQ Page */
.faq-section {
  position: relative;
  padding: 100px 24px;
  background-color: #0b111e;
  overflow: hidden;
}
.faq-section-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  z-index: 0;
}
.faq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 17, 30, 0.88) 0%, rgba(7, 11, 20, 0.97) 100%);
  z-index: 1;
}
.faq-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}
.faq-header {
  text-align: center;
  margin-bottom: 64px;
}
.faq-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(232, 115, 58, 0.1);
  border: 1px solid rgba(232, 115, 58, 0.3);
  color: var(--brand-glow);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 100px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .faq-badge {
    font-size: 1rem;
    padding: 10px 24px;
  }
}
.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.faq-header p {
  font-size: 1.0625rem;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}
.faq-item {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.faq-item:hover,
.faq-item.active {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(232, 115, 58, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(232, 115, 58, 0.04);
}
.faq-question {
  width: 100%;
  padding: 22px 28px;
  border: none;
  background: transparent;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #f1f5f9;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--brand);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
.faq-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}
.faq-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}
.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-item.active .faq-icon::before {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-content {
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #94a3b8;
  margin: 0 0 12px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer strong {
  color: var(--brand-glow);
  font-weight: 600;
}
.faq-answer ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: #94a3b8;
}
.faq-answer li {
  font-size: 0.90625rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.faq-answer li::marker {
  color: var(--brand);
}
.faq-section .animate-ready {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s cubic-bezier(0.1, 1, 0.1, 1),
              transform 0.9s cubic-bezier(0.1, 1, 0.1, 1);
  will-change: transform, opacity;
}
.faq-section .faq-header.animate-ready {
  transform: translateY(-30px) translateX(0);
}
.faq-section .animate-appear {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}
@media (max-width: 768px) {
  .faq-section { padding: 60px 16px; }
  .faq-header h2 { font-size: 1.875rem; }
  .faq-question { font-size: 0.96875rem; padding: 18px 20px; }
  .faq-answer-content { padding: 16px 20px 20px; }
  .faq-section .animate-ready { transform: translateX(-30px); }
}

/* Pricing Page */
.pricing-page-wrap {
  position: relative;
}
.pricing-mode-bar {
  position: relative;
  z-index: 10;
  background: #0b111e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 24px 0;
}
.pricing-mode-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.pricing-mode-toggle {
  display: inline-flex;
  justify-content: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.pricing-mode-btn {
  border: none;
  background: transparent;
  color: #94a3b8;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .pricing-mode-btn { font-size: 0.8125rem; padding: 12px 22px; }
}
.pricing-mode-btn.active {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(232, 115, 58, 0.35);
}
.pricing-mode-btn:hover:not(.active) {
  color: #e2e8f0;
}
.pricing-section {
  position: relative;
  padding: 100px 24px;
  background-color: #0b111e;
  overflow: hidden;
}
.pricing-section-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  z-index: 0;
}
.pricing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 30, 0.88) 0%, rgba(7, 11, 20, 0.97) 100%);
  z-index: 1;
}
.pricing-container {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  z-index: 2;
}
.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(232, 115, 58, 0.1);
  border: 1px solid rgba(232, 115, 58, 0.3);
  color: var(--brand-glow);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 100px;
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .pricing-badge { font-size: 1rem; padding: 10px 24px; }
}
.pricing-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.pricing-header p {
  font-size: 1.0625rem;
  color: #94a3b8;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 32px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.billing-option {
  border: none;
  background: transparent;
  color: #94a3b8;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.billing-option.active {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(232, 115, 58, 0.35);
}
.billing-save {
  font-size: 0.625rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  letter-spacing: 0.04em;
}
.billing-option.active .billing-save {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.pricing-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.pricing-card:hover {
  border-color: rgba(232, 115, 58, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}
.pricing-card-featured {
  border-color: rgba(232, 115, 58, 0.45);
  background: rgba(15, 23, 42, 0.85);
  box-shadow: 0 20px 50px rgba(232, 115, 58, 0.12);
}
.plan-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.plan-label {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-glow);
}
.plan-name {
  margin-top: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.1;
}
.plan-desc {
  margin-top: 12px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
  min-height: 66px;
}
.plan-price-wrap {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.plan-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e2e8f0;
  padding-bottom: 6px;
}
.plan-price {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  transition: opacity 0.2s ease;
}
.plan-period {
  font-size: 0.9375rem;
  color: #94a3b8;
  padding-bottom: 8px;
  margin-left: 4px;
}
.plan-billed {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: #64748b;
}
.plan-features {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #cbd5e1;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-glow);
  font-weight: 700;
}
.plan-features strong {
  color: #fff;
}
.plan-btn {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
}
.pricing-card .btn-outline.plan-btn {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}
.pricing-card .btn-outline.plan-btn:hover {
  border-color: rgba(232, 115, 58, 0.5);
  background: rgba(232, 115, 58, 0.1);
}
.pricing-note {
  margin-top: 48px;
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 23, 42, 0.5);
}
.pricing-note p {
  margin: 0;
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.6;
}
.pricing-note a {
  color: var(--brand-glow);
  font-weight: 600;
}
.pricing-note a:hover {
  text-decoration: underline;
}
.pricing-section .animate-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.1, 1, 0.1, 1),
              transform 0.7s cubic-bezier(0.1, 1, 0.1, 1);
}
.pricing-section .animate-appear {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.subscription-plans-grid {
  margin-bottom: 48px;
}
@media (min-width: 1100px) {
  .subscription-plans-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 700px) and (max-width: 1099px) {
  .subscription-plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 699px) {
  .subscription-plans-grid { grid-template-columns: 1fr; }
}
.credits-packages-grid {
  margin-bottom: 48px;
}
@media (min-width: 1100px) {
  .credits-packages-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 700px) and (max-width: 1099px) {
  .credits-packages-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 480px) and (max-width: 699px) {
  .credits-packages-grid { grid-template-columns: repeat(2, 1fr); }
}
.credits-used-header {
  margin-top: 24px;
  margin-bottom: 32px;
}
.credits-modules-grid {
  margin-bottom: 24px;
}
@media (min-width: 900px) {
  .credits-modules-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 600px) and (max-width: 899px) {
  .credits-modules-grid { grid-template-columns: repeat(2, 1fr); }
}
.credits-packages-grid .pricing-card,
.credits-module-card,
.pricing-subscription-view .subscription-plans-grid .pricing-card,
.pricing-subscription-view .pricing-grid:not(.credits-modules-grid):not(.subscription-plans-grid) .pricing-card {
  border: 1.5px solid rgba(232, 115, 58, 0.55);
  box-shadow: 0 0 0 1px rgba(232, 115, 58, 0.12);
}
.credits-packages-grid .pricing-card-featured,
.pricing-subscription-view .subscription-plans-grid .pricing-card-featured,
.pricing-subscription-view .pricing-grid:not(.credits-modules-grid):not(.subscription-plans-grid) .pricing-card-featured {
  border-color: rgba(232, 115, 58, 0.75);
  box-shadow: 0 0 0 1px rgba(232, 115, 58, 0.25), 0 8px 28px rgba(232, 115, 58, 0.18);
}
.credits-packages-grid .pricing-card:hover,
.credits-module-card:hover,
.pricing-subscription-view .subscription-plans-grid .pricing-card:hover,
.pricing-subscription-view .pricing-grid:not(.credits-modules-grid):not(.subscription-plans-grid) .pricing-card:hover {
  border-color: var(--brand-glow);
  box-shadow:
    0 0 0 1px rgba(245, 176, 112, 0.35),
    0 0 24px rgba(232, 115, 58, 0.45),
    0 0 48px rgba(232, 115, 58, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}
.credits-packages-grid .pricing-card-featured:hover,
.pricing-subscription-view .subscription-plans-grid .pricing-card-featured:hover,
.pricing-subscription-view .pricing-grid:not(.credits-modules-grid):not(.subscription-plans-grid) .pricing-card-featured:hover {
  box-shadow:
    0 0 0 1px rgba(245, 176, 112, 0.45),
    0 0 28px rgba(232, 115, 58, 0.55),
    0 0 56px rgba(232, 115, 58, 0.25),
    0 16px 40px rgba(0, 0, 0, 0.35);
}
.credits-module-card .plan-desc,
.credits-module-card .plan-features {
  margin-top: 16px;
}
.credits-module-card .module-note {
  margin-top: 16px;
  text-align: left;
  line-height: 1.5;
}
.plan-sale {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #4ade80;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.plan-old-price {
  text-decoration: line-through;
  color: #64748b;
  margin-right: 4px;
}
.pricing-credits-section {
  padding-top: 48px;
}
@media (max-width: 768px) {
  .pricing-section { padding: 60px 16px; }
  .pricing-header h2 { font-size: 1.875rem; }
  .plan-price { font-size: 2.5rem; }
  .plan-desc { min-height: auto; }
  .pricing-credits-section { padding-top: 32px; }
}

/* About Page */
.about-section {
  position: relative;
  padding: 100px 24px;
  background-color: #0b111e;
  overflow: hidden;
}
.about-section-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  z-index: 0;
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 30, 0.88) 0%, rgba(7, 11, 20, 0.97) 100%);
  z-index: 1;
}
.about-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}
.about-header {
  text-align: center;
  margin-bottom: 56px;
}
.about-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(232, 115, 58, 0.1);
  border: 1px solid rgba(232, 115, 58, 0.3);
  color: var(--brand-glow);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 100px;
  margin-bottom: 20px;
}
.about-header h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.about-lead {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
}
.about-block {
  margin-bottom: 48px;
}
.about-block h2 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.about-block p,
.about-highlight p {
  font-size: 1rem;
  line-height: 1.75;
  color: #94a3b8;
  margin: 0 0 20px;
}
.about-block p:last-child,
.about-highlight p:last-child {
  margin-bottom: 0;
}
.about-block strong,
.about-highlight strong {
  color: var(--brand-glow);
  font-weight: 600;
}
.about-highlight {
  margin: 48px 0;
  padding: 40px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(232, 115, 58, 0.25);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.about-highlight h2 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.about-feature-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1.5px solid rgba(232, 115, 58, 0.4);
  border-radius: 14px;
  padding: 24px 26px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.about-feature-card:hover {
  border-color: var(--brand-glow);
  box-shadow:
    0 0 0 1px rgba(245, 176, 112, 0.3),
    0 0 24px rgba(232, 115, 58, 0.35),
    0 8px 28px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}
.about-feature-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  line-height: 1;
}
.about-feature-card h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 8px;
  line-height: 1.35;
}
.about-feature-card p {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0;
}
.about-cta {
  margin-top: 56px;
  padding: 48px 40px;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  border: 1px solid rgba(232, 115, 58, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(232, 115, 58, 0.08);
}
.about-cta h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  text-transform: none;
}
.about-cta p {
  font-size: 1rem;
  color: #94a3b8;
  margin: 0 0 28px;
  line-height: 1.6;
}
.about-cta .btn {
  padding: 14px 32px;
  font-size: 1rem;
}
.about-section .animate-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.1, 1, 0.1, 1),
              transform 0.7s cubic-bezier(0.1, 1, 0.1, 1);
}
.about-section .about-header.animate-ready {
  transform: translateY(-20px);
}
.about-section .animate-appear {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
@media (max-width: 768px) {
  .about-section { padding: 60px 16px; }
  .about-header h1 { font-size: 2rem; }
  .about-lead { font-size: 1.0625rem; }
  .about-highlight { padding: 28px 22px; }
  .about-cta { padding: 32px 22px; }
  .about-cta h3 { font-size: 1.375rem; }
}

/* Legal Pages (Privacy, Terms, etc.) */
.legal-header {
  text-align: left;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-header h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.legal-meta {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}
.legal-intro {
  margin-bottom: 40px;
}
.legal-intro p {
  font-size: 1rem;
  line-height: 1.75;
  color: #94a3b8;
  margin: 0 0 16px;
}
.legal-intro p:last-child {
  margin-bottom: 0;
}
.legal-block {
  margin-bottom: 40px;
}
.legal-block h2 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.35;
}
.legal-block h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 20px 0 10px;
}
.legal-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 16px 0 8px;
}
.legal-block p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #94a3b8;
  margin: 0 0 16px;
}
.legal-block p:last-child {
  margin-bottom: 0;
}
.legal-block strong {
  color: var(--brand-glow);
  font-weight: 600;
}
.legal-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.legal-list li {
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #94a3b8;
  padding-left: 22px;
  margin-bottom: 10px;
}
.legal-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--brand);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
}
.legal-contact {
  margin-top: 48px;
  padding: 32px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(232, 115, 58, 0.25);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.legal-contact a {
  color: var(--brand-glow);
  font-weight: 500;
  text-decoration: none;
}
.legal-contact a:hover {
  text-decoration: underline;
}
.legal-intro a {
  color: var(--brand-glow);
  font-weight: 500;
  text-decoration: none;
}
.legal-intro a:hover {
  text-decoration: underline;
}
.legal-section .animate-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.1, 1, 0.1, 1),
              transform 0.6s cubic-bezier(0.1, 1, 0.1, 1);
}
.legal-section .legal-header.animate-ready {
  transform: translateY(-16px);
}
.legal-section .animate-appear {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
@media (max-width: 768px) {
  .legal-header h1 { font-size: 1.75rem; }
  .legal-contact { padding: 24px 20px; }
}
