/* ==================== VARIABLES ==================== */
:root {
  --bg-primary: #09090b;
  --bg-elevated: #111113;
  --bg-card: rgba(255, 255, 255, 0.025);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.07);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(255, 255, 255, 0.14);

  --text-primary: #fafafa;
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.35);

  --accent-primary: #7c3aed;
  --accent-secondary: #a78bfa;
  --accent-tertiary: #6366f1;
  --accent-glow: rgba(124, 58, 237, 0.5);

  --gradient-accent: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  --gradient-text: linear-gradient(90deg, #c4b5fd, #a78bfa 30%, #7c3aed 60%, #a78bfa 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(99, 102, 241, 0.08));

  --radius-full: 9999px;
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 16px -4px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px -15px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px -8px rgba(124, 58, 237, 0.3);

  --page-max: 1200px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

body.menu-open {
  overflow: hidden;
}

/* Ambient background glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(124, 58, 237, 0.14), transparent 55%),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(167, 139, 250, 0.07), transparent 50%),
    radial-gradient(ellipse 60% 60% at 15% 80%, rgba(99, 102, 241, 0.06), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Subtle grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: overlay;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(124, 58, 237, 0.3);
  color: var(--text-primary);
}

h1, h2, h3 {
  text-wrap: balance;
}

/* ==================== UTILITIES ==================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  position: relative;
}

/* ==================== SCROLL PROGRESS ==================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10001;
  pointer-events: none;
}

/* ==================== NAVIGATION ==================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 32px;
  transition: all 0.4s var(--ease-out);
}

.topbar.scrolled {
  padding: 10px 32px;
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.topbar-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1001;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 0 20px -4px rgba(124, 58, 237, 0.4);
  transition: box-shadow 0.3s;
}

.brand:hover .brand-mark {
  box-shadow: 0 0 30px -2px rgba(124, 58, 237, 0.6);
}

.brand-text {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.nav-links a {
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all 0.2s var(--ease-out);
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 20px !important;
  background: var(--text-primary) !important;
  color: var(--bg-primary) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  transition: all 0.25s var(--ease-out) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 32px 80px;
  position: relative;
  overflow: hidden;
}

/* Hero grid pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 10%, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 10%, transparent 70%);
  pointer-events: none;
}

/* Hero animated orbs */
.hero-glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35), transparent 70%);
  top: 10%;
  right: -5%;
  animation: float-1 20s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.2), transparent 70%);
  bottom: 5%;
  left: -10%;
  animation: float-2 25s ease-in-out infinite;
}

.hero-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-3 18s ease-in-out infinite;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px 8px 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
  animation: fadeInUp 0.8s var(--ease-out);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-secondary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(124, 58, 237, 0.15); }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 900px;
  margin-bottom: 24px;
  position: relative;
  animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.gradient-text {
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
  position: relative;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  position: relative;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.12), 0 20px 40px -10px rgba(255, 255, 255, 0.1);
}

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

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glow);
}

.btn-secondary:hover {
  background: var(--bg-glass);
  border-color: var(--text-secondary);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 14px 20px;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  max-width: var(--page-max);
  margin: 0 auto 80px;
  padding: 0 32px;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat-item {
  padding: 40px 32px;
  background: var(--bg-card);
  text-align: center;
  transition: background 0.3s;
}

.stat-item:hover {
  background: var(--bg-glass);
}

.stat-value {
  display: block;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==================== SECTIONS ==================== */
.section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 80px 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label,
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-secondary);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* Section divider */
.section + .section::before {
  content: '';
  display: block;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
  margin: 0 auto 80px;
}

/* ==================== FEATURE GRID ==================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.feature-card:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(124, 58, 237, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-subtle);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  color: var(--accent-secondary);
  font-size: 1.25rem;
  transition: all 0.3s var(--ease-out);
}

.feature-card:hover .feature-icon {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 0 20px -4px rgba(124, 58, 237, 0.3);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==================== BENTO GRID ==================== */
.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.bento-card {
  padding: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.bento-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-md);
}

.bento-card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-secondary);
  margin-bottom: 16px;
}

.bento-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 400px;
}

.bento-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 450px;
}

.bento-card .btn {
  margin-top: 24px;
}

.bento-visual {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 320px;
  height: 320px;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(80px);
  transition: opacity 0.6s;
}

.bento-card:hover .bento-visual {
  opacity: 0.14;
}

/* ==================== ROLES GRID ==================== */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.role-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.role-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 32px;
  width: 3px;
  height: 32px;
  background: var(--gradient-accent);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.role-card:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(124, 58, 237, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.role-card:hover::before {
  opacity: 1;
}

.role-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.role-card h3::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--accent-secondary);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(167, 139, 250, 0.4);
}

.role-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== PROCESS GRID ==================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

/* Connecting line between process steps */
.process-grid::before {
  content: '';
  position: absolute;
  top: 51px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3) 20%, rgba(167, 139, 250, 0.4) 50%, rgba(124, 58, 237, 0.3) 80%, transparent);
  z-index: 0;
}

.process-step {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  z-index: 1;
}

.process-step:hover {
  background: var(--bg-glass-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.process-number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 0 20px -4px rgba(124, 58, 237, 0.5);
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==================== TESTIMONIAL ==================== */
.testimonial-section {
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 6, 0.8) 30%, rgba(5, 5, 6, 0.8) 70%, transparent 100%);
  padding: 120px 0;
  margin: 80px 0;
  position: relative;
}

.testimonial-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 32px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  padding: 64px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

/* Decorative gradient accent on testimonial */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), transparent);
}

.testimonial-stat {
  text-align: center;
}

.testimonial-stat-value {
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.testimonial-stat-label {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.testimonial-stat-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-secondary);
  transition: all 0.2s;
}

.testimonial-stat-link:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.testimonial-content {
  position: relative;
}

.testimonial-content blockquote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
  padding-left: 4px;
}

/* Large decorative quote mark */
.testimonial-content blockquote::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: -16px;
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.1;
  pointer-events: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 0 20px -4px rgba(124, 58, 237, 0.4);
}

.testimonial-author-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-author-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 32px 120px;
}

.cta-card {
  padding: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.25), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(99, 102, 241, 0.2), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

/* Top gradient accent line */
.cta-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary), transparent 90%);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
}

.cta-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  position: relative;
}

/* ==================== FOOTER ==================== */
.site-footer {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--border-glow) 30%, rgba(124, 58, 237, 0.2) 50%, var(--border-glow) 70%, transparent) 1;
  padding: 80px 32px 40px;
}

.footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.footer-column a:hover {
  color: var(--text-primary);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

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

.footer-badges {
  display: flex;
  gap: 12px;
}

.footer-badge {
  padding: 8px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color 0.3s;
}

.footer-badge:hover {
  border-color: var(--border-glow);
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  padding: 160px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.12;
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

.page-header .section-label,
.page-header .eyebrow {
  position: relative;
}

/* ==================== FORM STYLES ==================== */
.form-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px 120px;
}

.form-card {
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.field,
.field-full {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-full label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.field input,
.field select,
.field textarea,
.field-full input,
.field-full select,
.field-full textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font: inherit;
  font-size: 0.9375rem;
  transition: all 0.25s var(--ease-out);
}

.field input::placeholder,
.field textarea::placeholder,
.field-full input::placeholder,
.field-full textarea::placeholder {
  color: var(--text-muted);
}

.field select,
.field-full select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.field-full input:focus,
.field-full select:focus,
.field-full textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15), 0 0 20px -4px rgba(124, 58, 237, 0.15);
}

.field textarea,
.field-full textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 24px;
}

.form-note a {
  color: var(--accent-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.form-note a:hover {
  color: var(--text-primary);
}

.status-message {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.status-message.error {
  color: #ef4444;
}

.status-message.success {
  color: #10b981;
}

/* ==================== ASSESSMENT STYLES ==================== */
.assessment-shell {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px 120px;
}

.assessment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.assessment-intro {
  padding: 48px;
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.assessment-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), transparent);
}

.assessment-intro h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.assessment-intro p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.assessment-body {
  padding: 48px;
}

.assessment-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.question-card {
  padding: 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}

.question-card:hover {
  border-color: var(--border-glow);
}

.question-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}

.rating-group {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.rating-option {
  position: relative;
}

.rating-option input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.rating-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  min-height: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
}

.rating-option label span {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.rating-option input:checked + label {
  background: rgba(124, 58, 237, 0.12);
  border-color: var(--accent-primary);
  color: var(--text-primary);
  box-shadow: 0 0 20px -8px rgba(124, 58, 237, 0.4);
}

.rating-option label:hover {
  border-color: var(--border-glow);
  background: var(--bg-glass);
}

.result-panel {
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  margin-top: 32px;
  animation: fadeInUp 0.6s var(--ease-out);
}

.result-panel[hidden] {
  display: none;
}

.result-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.meta-pill {
  padding: 8px 16px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-secondary);
}

.result-copy {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.result-tile {
  padding: 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.result-tile h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-secondary);
  margin-bottom: 10px;
}

.result-tile p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==================== PANELS & CARDS ==================== */
.panel {
  max-width: var(--page-max);
  margin: 0 auto 40px;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: border-color 0.3s;
}

.panel:hover {
  border-color: var(--border-glow);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.section-heading {
  margin-bottom: 32px;
}

.section-copy {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-copy p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.detail-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease-out);
}

.detail-card:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(124, 58, 237, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.detail-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.detail-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: border-color 0.3s;
}

.section-card:hover {
  border-color: var(--border-glow);
}

.callout {
  padding: 32px;
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}

.callout:hover {
  border-color: rgba(124, 58, 237, 0.25);
}

.callout h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.checklist {
  list-style: none;
  margin-bottom: 24px;
}

.checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--gradient-accent);
  border-radius: 50%;
  opacity: 0.6;
  transform: scale(0.5);
}

.checklist li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 19px;
  width: 5px;
  height: 3px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  padding: 8px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.pill:hover {
  border-color: var(--border-glow);
  color: var(--text-primary);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.button.primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.12), 0 20px 40px -10px rgba(255, 255, 255, 0.1);
}

.button.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-glow);
}

.button.secondary:hover {
  background: var(--bg-glass);
  border-color: var(--text-secondary);
  transform: translateY(-1px);
}

.button.accent {
  background: transparent;
  color: var(--accent-secondary);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.button.accent:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: var(--accent-primary);
}

.info-list {
  list-style: none;
}

.info-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border-subtle);
  line-height: 1.6;
}

.info-list li:last-child {
  border: none;
}

.info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gradient-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -50px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(1.1); }
  75% { transform: translate(50px, 10px) scale(0.95); }
}

@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-40px, 30px) scale(0.95); }
  50% { transform: translate(25px, -40px) scale(1.05); }
  75% { transform: translate(-10px, -20px) scale(1.1); }
}

@keyframes float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, 20px) scale(1.1); }
  66% { transform: translate(-30px, -30px) scale(0.9); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s var(--ease-out);
}

.stagger.active > *:nth-child(1) { transition-delay: 0s; }
.stagger.active > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.active > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.active > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.active > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.active > *:nth-child(6) { transition-delay: 0.3s; }

.stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-content blockquote::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .topbar {
    padding: 12px 20px;
  }

  .topbar.scrolled {
    padding: 8px 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.25rem;
    padding: 14px 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-out);
  }

  .nav-links.open a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open a:nth-child(1) { transition-delay: 0.05s; }
  .nav-links.open a:nth-child(2) { transition-delay: 0.1s; }
  .nav-links.open a:nth-child(3) { transition-delay: 0.15s; }
  .nav-links.open a:nth-child(4) { transition-delay: 0.2s; }
  .nav-links.open a:nth-child(5) { transition-delay: 0.25s; }
  .nav-links.open a:nth-child(6) { transition-delay: 0.3s; }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 12px !important;
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { width: 250px; height: 250px; }
  .hero-orb-3 { width: 200px; height: 200px; }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-value {
    font-size: 2.5rem;
  }

  .section {
    padding: 60px 20px;
  }

  .feature-grid,
  .roles-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 40px 28px;
  }

  .testimonial-stat-value {
    font-size: 4rem;
  }

  .cta-card {
    padding: 48px 28px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

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

  .rating-group {
    grid-template-columns: repeat(3, 1fr);
  }

  .panel {
    padding: 32px 20px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .page-header {
    padding: 120px 20px 60px;
  }

  .assessment-intro,
  .assessment-body {
    padding: 32px 20px;
  }

  .bento-card {
    padding: 32px;
  }
}

@media (max-width: 480px) {
  .rating-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .rating-option label {
    min-height: 64px;
    padding: 12px 8px;
  }

  .stats-bar-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}
