body { font-family: 'Inter', Arial, sans-serif; background: #09090b; color: #f3f4f6; margin: 0; }
.site-header { background: #18181b; padding: 0.5rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 40px; height: 40px; background: none; border: none; cursor: pointer; margin-left: 1rem; }
.hamburger span { display: block; width: 28px; height: 4px; background: #8b5cf6; margin: 4px 0; border-radius: 2px; transition: all 0.3s; }
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: #18181b; flex-direction: column; gap: 0; padding: 1.5rem 0; z-index: 100; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

.nav-logo img { height: 44px; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: #f3f4f6; text-decoration: none; font-family: 'Space Grotesk', Arial, sans-serif; font-weight: 600; }
.nav-cta { background: linear-gradient(90deg, #8b5cf6, #06b6d4); color: #fff; border-radius: 6px; padding: 0.5rem 1.25rem; margin-left: 1rem; }
.hero { padding: 3rem 0 2rem 0; background: #18181b; }
.tag { display: inline-block; background: #8b5cf6; color: #fff; border-radius: 999px; font-size: 0.9rem; padding: 0.25em 1em; margin-bottom: 1rem; letter-spacing: 0.05em; }
.tg { background: linear-gradient(90deg, #8b5cf6, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-light { color: #cbd5e1; }
.text-center { text-align: center; }
.text-5xl { font-size: 2.5rem; }
.text-3xl { font-size: 2rem; }
.text-xl { font-size: 1.25rem; }
.font-extrabold { font-weight: 800; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 36rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.grid { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }
.card { background: #232336; border-radius: 1rem; padding: 2rem; box-shadow: 0 2px 12px #0002; }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.list-disc { list-style: disc; }
.list-decimal { list-style: decimal; }
/* Outlined process step cards for dark theme */
.process-step.outlined {
  background: #18181b;
  border: 2px solid #232336;
  border-radius: 1rem;
  box-shadow: 0 2px 12px #0004;
  padding: 2rem 1rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.process-step.outlined:hover {
  border-color: #8b5cf6;
  box-shadow: 0 4px 24px #8b5cf633;
}
/* Outlined CTA section for dark theme */
.cta-section.outlined {
  background: #18181b;
  border: 2px solid #8b5cf6;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px #0003;
  color: #fff;
  padding: 2.5rem 0 2rem 0;
  margin: 3rem 0;
  text-align: center;
}
.cta-section.outlined h2 { color: #8b5cf6; }
.cta-section.outlined .btn-primary { margin-top: 1rem; }

.btn-primary { background: linear-gradient(90deg, #8b5cf6, #06b6d4); color: #fff; border: none; border-radius: 6px; padding: 0.75rem 2rem; font-size: 1.1rem; font-weight: 700; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-primary:hover { background: linear-gradient(90deg, #06b6d4, #8b5cf6); }
.btn-secondary { background: #232336; color: #8b5cf6; border: 1px solid #8b5cf6; border-radius: 6px; padding: 0.75rem 2rem; font-size: 1.1rem; font-weight: 700; text-decoration: none; display: inline-block; margin-top: 1rem; }
.sec { padding: 3rem 0; }
.sec.alt { background: #18181b; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand img { margin-bottom: 1rem; }
.footer-col h4 { color: #8b5cf6; margin-bottom: 0.5rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-bottom { text-align: center; color: #cbd5e1; margin-top: 2rem; font-size: 0.95rem; }

/* Process Steps Styling */
.process-steps { display: grid; grid-template-columns: 1fr; gap: 2rem; margin: 2.5rem 0; }
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }
.process-step { background: #232336; border-radius: 1rem; padding: 2rem 1rem; text-align: center; box-shadow: 0 2px 12px #0002; transition: transform 0.15s; }
.process-step:hover { transform: translateY(-4px) scale(1.03); }
.step-number { font-size: 2.2rem; font-weight: 800; color: #8b5cf6; margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.step-title { font-size: 1.2rem; font-weight: 700; color: #06b6d4; margin-bottom: 0.5rem; }
.step-desc { color: #cbd5e1; font-size: 1rem; }

/* CTA Section Styling */
.cta-section { background: linear-gradient(90deg, #8b5cf6 0%, #06b6d4 100%); color: #fff; padding: 3rem 0 2.5rem 0; border-radius: 1.5rem; margin: 3rem 0; box-shadow: 0 4px 24px #0003; text-align: center; }
.cta-section h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; color: #fff; }
.cta-section p { font-size: 1.2rem; color: #e0e7ef; margin-bottom: 2rem; }
.cta-section .btn-primary, .cta-section .btn-secondary { margin: 0 0.5rem; }

/* Responsive tweaks */
@media (max-width: 600px) {
  .hero, .sec, .cta-section { padding-left: 0.5rem; padding-right: 0.5rem; }
  .card { padding: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

}

/* === Layout === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

/* === Grid System === */
.grid2, .grid3, .grid4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid2 { grid-template-columns: 1fr 1fr; }
  .grid4 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .grid3 { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .grid4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

/* === Flex Utilities === */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* === Spacing === */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }

/* === Typography Utilities === */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-muted { color: #71717a; }
.text-light { color: #a1a1aa; }
.text-white { color: #f4f4f5; }
.leading-relaxed { line-height: 1.75; }
.tracking-wide { letter-spacing: 0.05em; }

/* === Gradient Text === */
.tg {
  background: linear-gradient(135deg, #a78bfa, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Accent Line === */
.al {
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  border-radius: 2px;
  margin: 0.75rem 0 1.5rem;
}

/* === Tags & Badges === */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.25);
  color: #67e8f9;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.3);
  color: #a78bfa;
}

/* === Buttons === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border-radius: 0.625rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0 20px rgba(139,92,246,0.3);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,92,246,0.5);
  color: white;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #e4e4e7;
  border-radius: 0.625rem;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
  color: white;
}

/* Legacy compatibility */
.bp { @extend .btn-primary; }
.bs { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 2rem; background: transparent; color: #e4e4e7; border-radius: 0.625rem; font-weight: 500; font-size: 0.95rem; text-decoration: none; border: 1px solid rgba(255,255,255,0.18); transition: all 0.25s; }
.bs:hover { background: rgba(255,255,255,0.06); color: white; }

/* === Navigation === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a78bfa, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

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

.nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.07);
}

.nav-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 0 16px rgba(139,92,246,0.3);
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(139,92,246,0.5); color: white; }
}

/* === Hamburger Menu === */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.4rem;
  background: rgba(255,255,255,0.03);
  gap: 5px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.nav-toggle:hover { background: rgba(255,255,255,0.07); }

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

/* Mobile menu open state */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(9,9,11,0.97);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0 1.5rem;
}

.mobile-menu.open { display: flex; }

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

.mobile-menu a {
  display: block;
  padding: 0.85rem 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: white;
  background: rgba(139,92,246,0.08);
}

.mobile-menu .mobile-cta {
  margin: 1rem 1.5rem 0;
  padding: 0.9rem;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  text-align: center;
  border-radius: 0.625rem;
  font-weight: 600;
  border: none;
}

/* === Hero Section === */
.hero {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(139,92,246,0.2), transparent 60%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero { padding: 8rem 0 6rem; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.25rem; }

.hero-desc {
  font-size: 1.1rem;
  color: #a1a1aa;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-desc { font-size: 1.2rem; }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 480px) {
  .hero-actions { flex-direction: row; justify-content: center; }
}

/* === Cards === */
.card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(139,92,246,0.3);
  background: rgba(139,92,246,0.04);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.card-purple {
  background: rgba(139,92,246,0.05);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.card-purple:hover {
  background: rgba(139,92,246,0.1);
  border-color: rgba(139,92,246,0.35);
  transform: translateY(-3px);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, rgba(139,92,246,0.2), rgba(6,182,212,0.1));
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.nb {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk";
  font-weight: 900;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}

/* === Legacy Card Classes === */
.cc { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); border-radius: 1rem; padding: 1.75rem; transition: all 0.3s; }
.cc:hover { border-color: rgba(139,92,246,0.3); background: rgba(139,92,246,0.04); transform: translateY(-4px); }
.pc { background: rgba(139,92,246,0.05); border: 1px solid rgba(139,92,246,0.15); border-radius: 1rem; padding: 1.75rem; transition: all 0.3s; }
.pc:hover { background: rgba(139,92,246,0.1); border-color: rgba(139,92,246,0.35); transform: translateY(-3px); }

/* === Section Titles === */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title .tag { margin-bottom: 1rem; }
.section-title h2 { margin-bottom: 1rem; }
.section-title p { max-width: 600px; margin: 0 auto; }

/* === Phase Steps === */
.phase-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  transition: all 0.3s;
}

.phase-step:hover {
  border-color: rgba(139,92,246,0.3);
  background: rgba(139,92,246,0.04);
}

/* === List Styles === */
ul.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
ul.check-list li { display: flex; align-items: flex-start; gap: 0.65rem; color: #a1a1aa; font-size: 0.95rem; }
ul.check-list li::before { content: "✓"; color: #a78bfa; font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }

ul.disc-list { list-style: disc; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
ul.disc-list li { color: #a1a1aa; font-size: 0.95rem; }

/* === Divider === */
.divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 0; }

/* === Stats Bar === */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.75rem;
}

.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #a78bfa, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label { font-size: 0.8rem; color: #71717a; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

/* === Footer === */
footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0 1.5rem;
}

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

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand .nav-logo { font-size: 1.2rem; display: inline-block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.875rem; color: #71717a; line-height: 1.7; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e4e4e7;
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-col a {
  color: #71717a;
  font-size: 0.875rem;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-col a:hover { color: #a78bfa; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-bottom p { font-size: 0.8rem; color: #52525b; margin: 0; }

/* === Misc Utilities === */
.rounded { border-radius: 0.5rem; }
.rounded-lg { border-radius: 1rem; }
.rounded-xl { border-radius: 1.25rem; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.w-full { width: 100%; }
.block { display: block; }
.inline-block { display: inline-block; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.list-disc { list-style-type: disc; }
.opacity-70 { opacity: 0.7; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-purple { color: #a78bfa; }
.text-cyan { color: #67e8f9; }
.bg-purple-subtle { background: rgba(139,92,246,0.08); }
.border-purple { border: 1px solid rgba(139,92,246,0.2); }
.grid3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid3 { grid-template-columns: 1fr 1fr 1fr; } }

/* === Highlight Box === */
.highlight-box {
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(6,182,212,0.05));
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 1rem;
  padding: 2rem;
}

/* === Print / Accessibility === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
