/* =============================================================
   XOS — Shared site styles
   Source of truth: src/index.html (canonical design system)
   ============================================================= */

@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@property --border-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@property --shimmer-pos { syntax: '<percentage>'; initial-value: -100%; inherits: false; }

:root {
  --bg: #0b0514;
  --bg-alt: #130a24;
  --accent: #00e5ff;
  --accent2: #d946ef;
  --accent3: #a855f7;
  --pink: #ffaa00;
  --gold: #2dd4bf;
  --text: #f8fafc;
  --text-muted: #cbd5e1;
  --text-dim: #8b9cb3;
  --border: rgba(217, 70, 239, 0.15);
  --glow: rgba(0, 229, 255, 0.12);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 16px;
  --radius-sm: 8px;
  --nav-h: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: rgba(0, 229, 255, 0.35); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(217, 70, 239, 0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(217, 70, 239, 0.6); }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  transform: translateZ(0);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
i[data-lucide] { stroke-width: 1.5; width: 1em; height: 1em; display: inline-flex; align-items: center; justify-content: center; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }
.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow {
  font-family: var(--font-mono);
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ''; width: 20px; height: 1px; background: var(--accent);
}
.section-title {
  margin-bottom: 16px;
  color: var(--text);
}
.section-desc {
  color: var(--text-muted);
  max-width: 520px;
}

/* Skip-link */
.skip-link { position: absolute; top: -40px; left: 8px; padding: 8px 16px; background: var(--accent); color: var(--bg); border-radius: 6px; font-weight: 400; z-index: 9999; transition: top 0.15s; }
.skip-link:focus { top: 8px; outline: 2px solid var(--text); outline-offset: 2px; }

/* ── Animations ── */
@keyframes borderSpin { to { --border-angle: 360deg; } }
@keyframes shimmer { to { --shimmer-pos: 200%; } }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
@keyframes glow-pulse { 0%, 100% { opacity: 0.85; filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.3)); } 50% { opacity: 1; filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5)); } }
@keyframes line-shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes node-pulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes bar-grow { from { transform: scaleY(0); } to { transform: scaleY(var(--h)); } }
@keyframes progress-fill { from { width: 0; } to { width: var(--w); } }
@keyframes slideInRow { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInLine { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes popIn { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.stagger-up .reveal-child { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger-up.visible .reveal-child { opacity: 1; transform: none; }
.stagger-up.visible .reveal-child:nth-child(1) { transition-delay: 0ms; }
.stagger-up.visible .reveal-child:nth-child(2) { transition-delay: 80ms; }
.stagger-up.visible .reveal-child:nth-child(3) { transition-delay: 160ms; }
.stagger-up.visible .reveal-child:nth-child(4) { transition-delay: 240ms; }
.stagger-up.visible .reveal-child:nth-child(5) { transition-delay: 320ms; }
.stagger-up.visible .reveal-child:nth-child(6) { transition-delay: 400ms; }

/* Generic ".stagger" pattern (used by other pages) */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(7) { transition-delay: 0.47s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(8) { transition-delay: 0.54s; opacity: 1; transform: translateY(0); }

/* Glass-card (used by portfolio + others) */
.glass-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.glass-card:hover {
  border-color: rgba(0,229,255,0.3);
  box-shadow: 0 8px 40px var(--glow);
  transform: translateY(-3px);
}
.glass-card:hover::before { opacity: 1; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(11, 5, 20, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, padding 0.3s;
}
.nav.scrolled { background: rgba(11, 5, 20, 0.85); padding: 8px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); }
.nav-logo-icon { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; position: relative; }
.nav-logo-icon::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: white; opacity: 0.9; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown > a::after { content: ''; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; transition: transform 0.2s; }
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); opacity: 0; visibility: hidden; pointer-events: none; min-width: 220px; padding: 12px 8px 8px; border-radius: 12px; background: rgba(19, 10, 36, 0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s; z-index: 100; }
.nav-dropdown::before { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 16px; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown-menu:hover { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; font-size: 0.8125rem; color: var(--text-muted); transition: all 0.2s; white-space: nowrap; }
.nav-dropdown-menu a:hover { background: rgba(0, 229, 255, 0.08); color: var(--text); }
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu .dd-icon { width: 28px; height: 28px; border-radius: 6px; background: rgba(0, 229, 255, 0.08); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.nav-dropdown-menu .dd-text .dd-label { font-weight: 400; font-size: 0.8125rem; }
.nav-dropdown-menu .dd-text .dd-desc { font-size: 0.7rem; color: var(--text-dim); font-weight: 200; }

.nav-cta { padding: 8px 20px; border-radius: 100px; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: white; position: relative; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; animation: glow-pulse 3s ease-in-out infinite; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 24px rgba(0, 229, 255, 0.4); }
.nav-cta::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); transition: left 0.5s; }
.nav-cta:hover::after { left: 100%; }

/* Mobile hamburger (index.html pattern: <div class="nav-hamburger">) */
.nav-hamburger { display: none; width: 32px; height: 32px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; z-index: 1001; }
.nav-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--text); transition: all 0.3s ease; }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }
.nav-links.mobile-open { display: flex !important; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; flex-direction: column; align-items: center; justify-content: center; gap: 24px; background: rgba(11, 5, 20, 0.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); z-index: 999; }
.nav-links.mobile-open a { font-size: 1.25rem; }
.nav-links.mobile-open .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; background: rgba(255,255,255,0.04); min-width: 260px; }
.nav-links.mobile-open .nav-dropdown::before { display: none; }

/* Mobile hamburger (other pages pattern: <button class="hamburger"> + <div class="mobile-menu">) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,5,20,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 200;
  transition: color 0.2s;
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--text); }

/* ── Hero ── */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; overflow: hidden; background: var(--bg);
}
.hero-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 180vw; height: 76vw;
  min-height: 120vh; min-width: 220vh;
  transform: translate(-50%, -50%);
  border: none;
  opacity: 0.85;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, rgba(11, 5, 20, 0.7) 25%, transparent 60%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; flex: 1; max-width: 1200px; width: 100%; margin: 0 auto; padding: 0 24px; text-align: left; }
.hero-text-wrap { max-width: 580px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; border: 1px solid rgba(0, 229, 255, 0.2); background: rgba(0, 229, 255, 0.06); color: var(--accent); margin-bottom: 24px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2s ease-in-out infinite; }
.hero-bottom { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; margin-top: 24px; }
.hero-desc { color: var(--text-muted); max-width: 480px; }
.hero-actions { display: flex; align-items: center; justify-content: flex-start; gap: 16px; flex-wrap: wrap; }

/* ── Buttons ── */
.btn-conic { position: relative; padding: 14px 32px; border-radius: 12px; color: white; background: var(--bg); z-index: 1; overflow: hidden; animation: borderSpin 3s linear infinite; display: inline-flex; align-items: center; justify-content: center; }
.btn-conic::before { content: ''; position: absolute; inset: -2px; border-radius: 14px; background: conic-gradient(from var(--border-angle), var(--accent), var(--accent2), var(--accent3), var(--accent2), var(--accent)); z-index: -2; animation: borderSpin 3s linear infinite; }
.btn-conic::after { content: ''; position: absolute; inset: 2px; border-radius: 10px; background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(11, 5, 20, 0.95)); z-index: -1; }
.btn-conic .shimmer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%); animation: shimmer 2.5s ease-in-out infinite; background-size: 200% 100%; background-position: var(--shimmer-pos) center; }
.btn-conic:hover { transform: translateY(-2px); transition: transform 0.2s; }
.btn-ghost { padding: 14px 28px; border-radius: 12px; color: var(--text-muted); border: 1px solid rgba(217, 70, 239, 0.15); background: rgba(217, 70, 239, 0.04); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
.btn-ghost:hover { color: var(--text); border-color: rgba(217, 70, 239, 0.3); box-shadow: 0 0 24px rgba(217, 70, 239, 0.15); transform: translateY(-2px); }

/* ── Logo bar ── */
.logo-bar { padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; }
.logo-bar-label { color: var(--text-dim); margin-bottom: 20px; text-align: center; padding: 0 24px; }
.logo-bar-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); }
.logo-track { display: flex; gap: 48px; width: max-content; align-items: center; animation: marquee 25s linear infinite; will-change: transform; backface-visibility: hidden; }
.logo-track span { color: var(--text-dim); white-space: nowrap; opacity: 0.5; transition: opacity 0.3s; }
.logo-track span:hover { opacity: 1; }

/* ── Footer ── */
.footer { padding: 60px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-dim); transition: all 0.2s; }
.footer-social a:hover { color: var(--text); border-color: rgba(217, 70, 239, 0.3); background: rgba(217, 70, 239, 0.08); }
.footer-col h4 { margin-bottom: 16px; color: var(--text); }
.footer-col a { display: block; color: var(--text-muted); padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-dim); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--text-muted); }

/* ── Tailwind utility replacements ── */
.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; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.font-thin { font-weight: 100; }
.font-extralight { font-weight: 200; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-auto { margin-top: auto; }
.pt-6 { padding-top: 1.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-3 { margin-top: 0.75rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.aspect-video { aspect-ratio: 16/9; }
.rounded-lg { border-radius: 0.5rem; }
.bg-white\/5 { background: rgba(255,255,255,0.05); }
.border { border-width: 1px; border-style: solid; }
.border-white\/5 { border-color: rgba(255,255,255,0.05); }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.opacity-40 { opacity: 0.4; }
.transition-opacity { transition-property: opacity; transition-timing-function: ease; }
.duration-500 { transition-duration: 500ms; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.max-w-2xl { max-width: 42rem; }
.text-center { text-align: center; }
.justify-center { justify-content: center; }
.group:hover .group-hover\:opacity-75 { opacity: 0.75; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.pointer-events-none { pointer-events: none; }
.border-none { border: none; }

/* ── Responsive utilities ── */
@media (min-width: 768px) {
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .lg\:text-7xl { font-size: 4.5rem; }
}

/* ── Breakpoints ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; }
}
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  section { padding-top: 80px !important; padding-bottom: 80px !important; }
  .hero { padding-top: 0 !important; padding-bottom: 0 !important; }
  .hero-content { justify-content: flex-end; padding-bottom: 80px; }
  .hero-text-wrap { max-width: 100%; }
  .logo-bar { padding: 20px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding-top: 60px !important; padding-bottom: 60px !important; }
  .hero-content { padding: 100px 16px 60px; justify-content: flex-end; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-conic, .hero-actions .btn-ghost { width: 100%; justify-content: center; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── Firefox fallback (no @property support → static borders) ── */
@supports not (background: paint(squircle)) {
  @-moz-document url-prefix() {
    .btn-conic { border: 1px solid rgba(0, 229, 255, 0.4); animation: none; }
    .btn-conic::before { background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3)); animation: none; }
    .pricing-card.featured { border: 1px solid rgba(0, 229, 255, 0.4); animation: none; }
    .pricing-card.featured::before { background: linear-gradient(135deg, var(--accent), var(--accent2), var(--pink), var(--accent3)); animation: none; }
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg iframe, .cta-section iframe { display: none; }
  .reveal, .reveal-child, .stagger > * { opacity: 1 !important; transform: none !important; }
}
