/* ============================================
   Components
   ============================================ */

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background: var(--color-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition-base), border-color var(--transition-base);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
  color: var(--color-text);
}

.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

/* ─── Mobile Menu ─── */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.mobile-menu-btn[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--color-bg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: 99;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__link {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--color-text);
  padding-block: var(--space-2);
}

/* ─── Theme Toggle ─── */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.theme-toggle:hover {
  color: var(--color-text);
  background-color: var(--color-bg-alt);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), opacity var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--gradient-hero);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn--secondary {
  background: var(--color-bg-elevated);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  border-color: var(--color-border-subtle);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-xl);
}

/* ─── Product Cards ─── */
.product-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-border-subtle);
}

.product-card__image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-border-subtle) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
  transform: scale(1.03);
}

.product-card__placeholder {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-text-muted);
  opacity: 0.5;
}

.product-card__body {
  padding: var(--space-6);
}

.product-card__title {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__link {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-primary-500);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap var(--transition-fast);
}

.product-card__link:hover {
  gap: var(--space-2);
}

.product-card__status {
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  padding: var(--space-1) var(--space-3);
  border-radius: 9999px;
  background: var(--color-primary-50);
  color: var(--color-primary-600);
}

[data-theme="dark"] .product-card__status {
  background: rgba(37, 99, 235, 0.15);
  color: var(--color-primary-300);
}

.product-card__status--soon {
  background: #fef3c7;
  color: #b45309;
}

[data-theme="dark"] .product-card__status--soon {
  background: #451a03;
  color: #fbbf24;
}

/* ─── Feature Cards ─── */
.feature-card {
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
  border-color: var(--color-primary-300);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: var(--space-4);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ─── Footer ─── */
.footer {
  padding-block: var(--space-12);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
}

.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-text);
}

.footer__copy {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding-top: calc(64px + var(--space-24));
  padding-bottom: var(--space-24);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Cinematic Animated Background ─── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--hero-bg);
  transition: background-color var(--transition-slow);
}

/* Aurora Blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

.hero__blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--hero-blob-1) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation: blobDrift1 20s ease-in-out infinite;
}

.hero__blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--hero-blob-2) 0%, transparent 70%);
  top: 20%;
  right: -15%;
  animation: blobDrift2 25s ease-in-out infinite;
}

.hero__blob--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--hero-blob-3) 0%, transparent 70%);
  bottom: -5%;
  left: 30%;
  animation: blobDrift3 22s ease-in-out infinite;
}

.hero__blob--4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--hero-blob-4) 0%, transparent 70%);
  bottom: 20%;
  right: 20%;
  animation: blobDrift4 18s ease-in-out infinite;
}

@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 80px) scale(0.95); }
}

@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 60px) scale(1.15); }
  66% { transform: translate(40px, -40px) scale(0.9); }
}

@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -50px) scale(1.05); }
  66% { transform: translate(-60px, -20px) scale(1.1); }
}

@keyframes blobDrift4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.2); }
}

/* Particle Field */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

/* Random positions and delays for 50 particles */
.hero__particles span:nth-child(1)  { left: 5%;  top: 80%; animation-duration: 18s; animation-delay: 0s;   --particle-opacity: 0.3; }
.hero__particles span:nth-child(2)  { left: 12%; top: 20%; animation-duration: 22s; animation-delay: 2s;   --particle-opacity: 0.5; }
.hero__particles span:nth-child(3)  { left: 18%; top: 60%; animation-duration: 15s; animation-delay: 5s;   --particle-opacity: 0.2; }
.hero__particles span:nth-child(4)  { left: 25%; top: 35%; animation-duration: 20s; animation-delay: 1s;   --particle-opacity: 0.4; }
.hero__particles span:nth-child(5)  { left: 30%; top: 75%; animation-duration: 17s; animation-delay: 7s;   --particle-opacity: 0.3; }
.hero__particles span:nth-child(6)  { left: 38%; top: 15%; animation-duration: 24s; animation-delay: 3s;   --particle-opacity: 0.6; }
.hero__particles span:nth-child(7)  { left: 42%; top: 50%; animation-duration: 19s; animation-delay: 0s;   --particle-opacity: 0.25; }
.hero__particles span:nth-child(8)  { left: 48%; top: 85%; animation-duration: 21s; animation-delay: 4s;   --particle-opacity: 0.35; }
.hero__particles span:nth-child(9)  { left: 55%; top: 25%; animation-duration: 16s; animation-delay: 6s;   --particle-opacity: 0.5; }
.hero__particles span:nth-child(10) { left: 60%; top: 65%; animation-duration: 23s; animation-delay: 2s;   --particle-opacity: 0.2; }
.hero__particles span:nth-child(11) { left: 65%; top: 40%; animation-duration: 14s; animation-delay: 8s;   --particle-opacity: 0.45; }
.hero__particles span:nth-child(12) { left: 70%; top: 10%; animation-duration: 20s; animation-delay: 1s;   --particle-opacity: 0.3; }
.hero__particles span:nth-child(13) { left: 75%; top: 70%; animation-duration: 18s; animation-delay: 5s;   --particle-opacity: 0.55; }
.hero__particles span:nth-child(14) { left: 80%; top: 30%; animation-duration: 25s; animation-delay: 3s;   --particle-opacity: 0.2; }
.hero__particles span:nth-child(15) { left: 85%; top: 55%; animation-duration: 17s; animation-delay: 0s;   --particle-opacity: 0.4; }
.hero__particles span:nth-child(16) { left: 90%; top: 80%; animation-duration: 22s; animation-delay: 4s;   --particle-opacity: 0.3; }
.hero__particles span:nth-child(17) { left: 8%;  top: 45%; animation-duration: 19s; animation-delay: 6s;   --particle-opacity: 0.5; }
.hero__particles span:nth-child(18) { left: 15%; top: 90%; animation-duration: 16s; animation-delay: 2s;   --particle-opacity: 0.25; }
.hero__particles span:nth-child(19) { left: 22%; top: 10%; animation-duration: 21s; animation-delay: 7s;   --particle-opacity: 0.35; }
.hero__particles span:nth-child(20) { left: 35%; top: 55%; animation-duration: 24s; animation-delay: 1s;   --particle-opacity: 0.45; }
.hero__particles span:nth-child(21) { left: 45%; top: 5%;  animation-duration: 15s; animation-delay: 5s;   --particle-opacity: 0.3; }
.hero__particles span:nth-child(22) { left: 52%; top: 45%; animation-duration: 20s; animation-delay: 3s;   --particle-opacity: 0.5; }
.hero__particles span:nth-child(23) { left: 58%; top: 75%; animation-duration: 18s; animation-delay: 0s;   --particle-opacity: 0.2; }
.hero__particles span:nth-child(24) { left: 68%; top: 20%; animation-duration: 23s; animation-delay: 4s;   --particle-opacity: 0.4; }
.hero__particles span:nth-child(25) { left: 78%; top: 85%; animation-duration: 17s; animation-delay: 6s;   --particle-opacity: 0.35; }
.hero__particles span:nth-child(26) { left: 3%;  top: 30%; animation-duration: 19s; animation-delay: 2s;   --particle-opacity: 0.5; }
.hero__particles span:nth-child(27) { left: 28%; top: 95%; animation-duration: 22s; animation-delay: 8s;   --particle-opacity: 0.25; }
.hero__particles span:nth-child(28) { left: 40%; top: 25%; animation-duration: 16s; animation-delay: 1s;   --particle-opacity: 0.4; }
.hero__particles span:nth-child(29) { left: 50%; top: 60%; animation-duration: 21s; animation-delay: 5s;   --particle-opacity: 0.3; }
.hero__particles span:nth-child(30) { left: 63%; top: 5%;  animation-duration: 18s; animation-delay: 3s;   --particle-opacity: 0.55; }
.hero__particles span:nth-child(31) { left: 72%; top: 50%; animation-duration: 25s; animation-delay: 0s;   --particle-opacity: 0.2; }
.hero__particles span:nth-child(32) { left: 82%; top: 15%; animation-duration: 20s; animation-delay: 4s;   --particle-opacity: 0.45; }
.hero__particles span:nth-child(33) { left: 88%; top: 65%; animation-duration: 17s; animation-delay: 7s;   --particle-opacity: 0.3; }
.hero__particles span:nth-child(34) { left: 95%; top: 40%; animation-duration: 22s; animation-delay: 2s;   --particle-opacity: 0.5; }
.hero__particles span:nth-child(35) { left: 10%; top: 70%; animation-duration: 15s; animation-delay: 6s;   --particle-opacity: 0.25; }
.hero__particles span:nth-child(36) { left: 20%; top: 5%;  animation-duration: 24s; animation-delay: 1s;   --particle-opacity: 0.4; }
.hero__particles span:nth-child(37) { left: 33%; top: 80%; animation-duration: 19s; animation-delay: 5s;   --particle-opacity: 0.35; }
.hero__particles span:nth-child(38) { left: 44%; top: 35%; animation-duration: 16s; animation-delay: 3s;   --particle-opacity: 0.5; }
.hero__particles span:nth-child(39) { left: 56%; top: 90%; animation-duration: 21s; animation-delay: 0s;   --particle-opacity: 0.2; }
.hero__particles span:nth-child(40) { left: 66%; top: 30%; animation-duration: 18s; animation-delay: 4s;   --particle-opacity: 0.45; }
.hero__particles span:nth-child(41) { left: 73%; top: 95%; animation-duration: 23s; animation-delay: 8s;   --particle-opacity: 0.3; }
.hero__particles span:nth-child(42) { left: 83%; top: 50%; animation-duration: 17s; animation-delay: 2s;   --particle-opacity: 0.5; }
.hero__particles span:nth-child(43) { left: 92%; top: 10%; animation-duration: 20s; animation-delay: 6s;   --particle-opacity: 0.25; }
.hero__particles span:nth-child(44) { left: 7%;  top: 55%; animation-duration: 22s; animation-delay: 1s;   --particle-opacity: 0.4; }
.hero__particles span:nth-child(45) { left: 17%; top: 85%; animation-duration: 15s; animation-delay: 5s;   --particle-opacity: 0.35; }
.hero__particles span:nth-child(46) { left: 27%; top: 40%; animation-duration: 19s; animation-delay: 3s;   --particle-opacity: 0.5; }
.hero__particles span:nth-child(47) { left: 37%; top: 15%; animation-duration: 24s; animation-delay: 0s;   --particle-opacity: 0.2; }
.hero__particles span:nth-child(48) { left: 47%; top: 70%; animation-duration: 18s; animation-delay: 4s;   --particle-opacity: 0.45; }
.hero__particles span:nth-child(49) { left: 57%; top: 50%; animation-duration: 21s; animation-delay: 7s;   --particle-opacity: 0.3; }
.hero__particles span:nth-child(50) { left: 67%; top: 20%; animation-duration: 16s; animation-delay: 2s;   --particle-opacity: 0.55; }

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: var(--particle-opacity, 0.4);
  }
  90% {
    opacity: var(--particle-opacity, 0.4);
  }
  100% {
    transform: translateY(-100vh) translateX(20px);
    opacity: 0;
  }
}

/* Cinematic Overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--hero-overlay-top) 0%, var(--hero-overlay-mid) 60%, var(--hero-overlay-btm) 100%),
    linear-gradient(180deg, var(--hero-overlay-top) 0%, var(--hero-overlay-mid) 60%, var(--hero-overlay-btm) 100%);
  transition: background var(--transition-slow);
}

/* Film grain */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Hero text — light on dark video background */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: 9999px;
  background: var(--hero-badge-bg);
  border: 1px solid var(--hero-badge-border);
  backdrop-filter: blur(8px);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--hero-badge-text);
  margin-bottom: var(--space-6);
  transition: background-color var(--transition-slow), border-color var(--transition-slow), color var(--transition-slow);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 8px var(--color-teal);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.hero__title {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  background: var(--hero-title-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.15));
}

.hero__subtitle {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
  color: var(--hero-subtitle);
  transition: color var(--transition-slow);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* Secondary button on dark hero */
.hero .btn--secondary {
  background: var(--hero-btn-secondary-bg);
  color: var(--hero-btn-secondary-text);
  border: 1px solid var(--hero-btn-secondary-border);
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.hero .btn--secondary:hover {
  background: var(--hero-btn-secondary-bg);
  filter: brightness(0.95);
  border-color: var(--hero-btn-secondary-border);
}

/* ─── Section Header ─── */
.section__header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

.section__eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-primary-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}

.section__title {
  margin-bottom: var(--space-4);
}

/* ─── Section Alt — improved backgrounds ─── */
.section-alt {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(20, 184, 166, 0.03) 0%, transparent 50%),
    var(--color-bg-alt);
}

[data-theme="dark"] .section-alt {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(20, 184, 166, 0.05) 0%, transparent 50%),
    var(--color-bg-alt);
}

/* ─── Grid Layouts ─── */
.grid-products {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-products {
    gap: var(--space-8);
  }
}

.grid-features {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .grid-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── CTA Section ─── */
.cta-box {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 40%, #14b8a6 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  border-radius: var(--radius-2xl);
  padding: var(--space-12) var(--space-8);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px -15px rgba(37, 99, 235, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-box::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-box__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  position: relative;
}

.cta-box__text {
  font-size: var(--text-lg);
  opacity: 0.9;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  position: relative;
}

.cta-box .btn--secondary {
  background: white;
  color: var(--color-primary-600);
  border: none;
  position: relative;
}

.cta-box .btn--secondary:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-box__email {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  opacity: 0.85;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.cta-box__email a {
  font-weight: var(--font-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition-fast);
}

.cta-box__email a:hover {
  opacity: 0.8;
}
