/* ═══════════════════════════════════════════════════════════
   VERGATE — Premium Light Glassmorphism Design System
   Glossy cards · Dark overlays · White neon glows · 3D abstract bg
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;

  /* ── Light Palette with Depth ── */
  --bg-primary: #f8f9fc;
  --bg-secondary: #f0f2f7;
  --bg-tertiary: #e8ecf4;
  --bg-dark: #0c0f1a;
  --bg-dark-card: rgba(12, 15, 26, 0.85);

  --text-primary: #0a0e1a;
  --text-secondary: #4a5068;
  --text-muted: #8891a8;
  --text-on-dark: #e2e6f0;

  --border-subtle: rgba(255, 255, 255, 0.6);
  --border-glass: rgba(255, 255, 255, 0.35);
  --border-dark: rgba(255, 255, 255, 0.08);

  --brand-accent: #2edc5a;
  --brand-accent-rgb: 46, 220, 90;
  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.1);
  --warning: #f59e0b;
  --danger: #ef4444;

  /* ── Glass Layers ── */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-bg-dark: rgba(12, 15, 26, 0.75);
  --glass-blur: 20px;
  --glass-blur-heavy: 40px;

  /* ── Shadows (layered depth) ── */
  --shadow-xs: 0 1px 2px rgba(10, 14, 26, 0.04);
  --shadow-sm: 0 2px 8px rgba(10, 14, 26, 0.06), 0 1px 2px rgba(10, 14, 26, 0.04);
  --shadow-md: 0 4px 16px rgba(10, 14, 26, 0.08), 0 2px 4px rgba(10, 14, 26, 0.04);
  --shadow-lg: 0 8px 32px rgba(10, 14, 26, 0.1), 0 4px 8px rgba(10, 14, 26, 0.06);
  --shadow-xl: 0 16px 48px rgba(10, 14, 26, 0.12), 0 8px 16px rgba(10, 14, 26, 0.08);
  --shadow-glass: 0 8px 32px rgba(10, 14, 26, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  --shadow-dark-card: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);

  /* ── Neon Glows ── */
  --glow-white: 0 0 20px rgba(255, 255, 255, 0.15), 0 0 60px rgba(255, 255, 255, 0.05);
  --glow-green: 0 0 20px rgba(46, 220, 90, 0.3), 0 0 60px rgba(46, 220, 90, 0.1);
  --glow-green-strong: 0 0 30px rgba(46, 220, 90, 0.5), 0 0 80px rgba(46, 220, 90, 0.2);
  --glow-green-subtle: 0 0 40px rgba(46, 220, 90, 0.08);

  /* ── Radii ── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  /* ── Layout ── */
  --header-height: 72px;
  --max-width: 1200px;
  --max-width-narrow: 800px;

  /* ── Transitions ── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.15s var(--ease-out-expo);
  --t-normal: 0.3s var(--ease-out-expo);
  --t-slow: 0.5s var(--ease-out-expo);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.75rem, 5.5vw, 4.5rem); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.025em; }
h3 { font-size: 1.5rem; font-weight: 600; }

p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.65; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(10, 14, 26, 0.12); border-radius: 10px; }

/* ─── Utilities ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ═══════════════════════════════════════════════════════════
   3D ABSTRACT BACKGROUND
   ═══════════════════════════════════════════════════════════ */
.bg-3d {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  perspective: 1200px;
}

.bg-3d-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  will-change: transform;
}

.bg-3d-shape--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 220, 90, 0.2) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: float-1 25s ease-in-out infinite;
}

.bg-3d-shape--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(100, 120, 255, 0.12) 0%, transparent 70%);
  bottom: 10%;
  left: -8%;
  animation: float-2 30s ease-in-out infinite;
}

.bg-3d-shape--3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(46, 220, 90, 0.1) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: float-3 20s ease-in-out infinite;
}

/* 3D spinning wireframe */
.bg-3d-wireframe {
  position: absolute;
  top: 8%;
  right: 10%;
  width: 320px;
  height: 320px;
  transform-style: preserve-3d;
  animation: spin-3d 35s linear infinite;
  opacity: 0.12;
}

.bg-3d-wireframe::before,
.bg-3d-wireframe::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1.5px solid rgba(10, 14, 26, 0.3);
  border-radius: 24px;
}

.bg-3d-wireframe::before {
  transform: rotateX(60deg) rotateY(0deg);
}

.bg-3d-wireframe::after {
  transform: rotateX(0deg) rotateY(60deg);
  border-radius: 50%;
}

.bg-3d-wireframe-inner {
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(46, 220, 90, 0.25);
  border-radius: 50%;
  transform: rotateX(30deg) rotateZ(45deg);
  animation: spin-reverse 25s linear infinite;
}

/* Second wireframe — left side */
.bg-3d-wireframe-2 {
  position: absolute;
  top: 55%;
  left: 5%;
  width: 220px;
  height: 220px;
  transform-style: preserve-3d;
  animation: spin-reverse 40s linear infinite;
  opacity: 0.08;
}

.bg-3d-wireframe-2::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(10, 14, 26, 0.25);
  border-radius: 30%;
  transform: rotateX(45deg) rotateZ(30deg);
}

.bg-3d-wireframe-2::after {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(46, 220, 90, 0.2);
  border-radius: 50%;
  transform: rotateY(45deg) rotateX(20deg);
}

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 20px) scale(0.92); }
}

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

@keyframes spin-3d {
  from { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  to { transform: rotateX(360deg) rotateY(360deg) rotateZ(180deg); }
}

@keyframes spin-reverse {
  from { transform: rotateX(360deg) rotateY(360deg); }
  to { transform: rotateX(0deg) rotateY(0deg); }
}

/* ═══════════════════════════════════════════════════════════
   HEADER — Frosted Glass
   ═══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur-heavy));
  -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), 0 4px 24px rgba(10, 14, 26, 0.04);
  transition: all var(--t-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), 0 8px 32px rgba(10, 14, 26, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(10, 14, 26, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  border-radius: 1px;
  transition: width var(--t-fast);
  box-shadow: var(--glow-green-subtle);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--text-primary); font-weight: 600; }
.nav-link.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS — Glossy + Neon
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: all var(--t-fast);
  position: relative;
  overflow: hidden;
}

.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.85rem 1.75rem; font-size: 0.95rem; border-radius: var(--radius-md); }

.btn-primary {
  background: var(--text-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(10, 14, 26, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(10, 14, 26, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glass);
}

.btn-secondary:hover {
  background: var(--glass-bg-strong);
  border-color: var(--border-subtle);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10, 14, 26, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-neon {
  background: linear-gradient(135deg, var(--brand-accent), #25b84c);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(46, 220, 90, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(46, 220, 90, 0.4), 0 0 40px rgba(46, 220, 90, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  padding: 10rem 0 6rem 0;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(46, 220, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  position: relative;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--text-primary) 0%, #3a4060 50%, var(--text-primary) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero p {
  max-width: 620px;
  margin: 0 auto 3rem auto;
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-glass);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--brand-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(46, 220, 90, 0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(46, 220, 90, 0.3); opacity: 0.8; }
  50% { box-shadow: 0 0 16px rgba(46, 220, 90, 0.6); opacity: 1; }
}

/* ── Waitlist Form ── */
.waitlist-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 4.5rem auto;
}

.waitlist-input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  outline: none;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-glass), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: all var(--t-fast);
  color: var(--text-primary);
}

.waitlist-input::placeholder { color: var(--text-muted); }

.waitlist-input:focus {
  border-color: rgba(46, 220, 90, 0.4);
  box-shadow: 0 0 0 3px rgba(46, 220, 90, 0.08), var(--shadow-glass);
}

.waitlist-input:disabled {
  background: var(--bg-tertiary);
  color: var(--text-muted);
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════
   DASHBOARD MOCKUP — Dark Glass Card
   ═══════════════════════════════════════════════════════════ */
.showcase-container {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 1rem;
  perspective: 1500px;
}

.dashboard-mockup {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-dark-card), 0 0 80px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  aspect-ratio: 16/10;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  transform: rotateX(2deg) rotateY(0deg);
  transform-origin: center bottom;
}

.dashboard-mockup:hover {
  transform: rotateX(0deg) rotateY(0deg) translateY(-4px);
  box-shadow: var(--shadow-dark-card), 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 60px rgba(46, 220, 90, 0.05);
}

/* Chrome bar */
.chrome-bar {
  height: 40px;
  background: #151929;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  user-select: none;
}

.chrome-dots { display: flex; gap: 6px; }

.chrome-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.chrome-dot.red { background: #ff5f57; }
.chrome-dot.yellow { background: #febc2e; }
.chrome-dot.green { background: #28c840; }

.chrome-address {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 0.2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.address-lock {
  width: 7px;
  height: 7px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  position: relative;
  margin-bottom: 1px;
}
.address-lock::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
}

/* Dashboard workspace */
.dashboard-workspace { display: flex; flex: 1; overflow: hidden; }

.dashboard-sidebar {
  width: 200px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 18, 32, 0.9);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-heading {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.25);
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-item a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--t-fast);
}

.sidebar-item.active a {
  background: rgba(46, 220, 90, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.sidebar-item-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.dashboard-content {
  flex: 1;
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0.75rem;
}

.content-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.content-header p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}

.status-badge.live {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

/* Stat grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
}

.stat-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.2rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
}

/* Terminal console */
.terminal-console {
  background: #0a0d16;
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #e2e6f0;
  height: 110px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.terminal-line { line-height: 1.5; opacity: 0.85; }
.terminal-line.cyan { color: #22d3ee; }
.terminal-line.green { color: #4ade80; }
.terminal-line.yellow { color: #facc15; }
.terminal-line.gray { color: #525870; }

/* Graph */
.mock-graph {
  height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.graph-lines {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 0.85rem;
  gap: 3px;
}

.graph-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  min-height: 10%;
  transition: height 0.6s ease;
}

.graph-bar.accent { background: rgba(46, 220, 90, 0.2); }
.graph-bar.highlight { background: var(--brand-accent); box-shadow: 0 0 10px rgba(46, 220, 90, 0.3); }

/* ═══════════════════════════════════════════════════════════
   SECTIONS — Glass Dividers
   ═══════════════════════════════════════════════════════════ */
.section {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
  border-top: 1px solid var(--border-subtle);
}

.section-title {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem auto;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════
   FEATURE CARDS — Glossy Glass
   ═══════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: all var(--t-normal);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(46, 220, 90, 0.04);
  border-color: rgba(46, 220, 90, 0.15);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(46, 220, 90, 0.1), rgba(46, 220, 90, 0.02));
  border: 1px solid rgba(46, 220, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(46, 220, 90, 0.06);
}

.feature-icon {
  width: 22px;
  height: 22px;
  color: var(--brand-accent);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════
   CODE SHOWCASE
   ═══════════════════════════════════════════════════════════ */
.code-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.code-tabs {
  display: flex;
  gap: 0.4rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  padding: 0.3rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  width: fit-content;
  box-shadow: var(--shadow-glass);
}

.code-tab {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--t-fast);
}

.code-tab:hover { color: var(--text-primary); }

.code-tab.active {
  background: var(--bg-primary);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}

.code-block-container {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: #e2e6f0;
  overflow-x: auto;
  box-shadow: var(--shadow-dark-card);
  position: relative;
}

.code-content {
  white-space: pre;
  display: block;
}

.copy-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--t-fast);
  backdrop-filter: blur(8px);
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════════════════════════
   STATUS WIDGET — Glass Card
   ═══════════════════════════════════════════════════════════ */
.status-widget {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow-glass);
  position: relative;
}

.status-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.status-text {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.status-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
  animation: pulse-glow-green 2s ease-in-out infinite;
}

@keyframes pulse-glow-green {
  0%, 100% { box-shadow: 0 0 6px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 0 14px rgba(16, 185, 129, 0.6); }
}

.uptime-row { margin-bottom: 1.5rem; }
.uptime-row:last-child { margin-bottom: 0; }

.uptime-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.uptime-bar-container {
  display: flex;
  gap: 2px;
  height: 22px;
}

.uptime-bar {
  flex: 1;
  background: var(--success);
  opacity: 0.85;
  border-radius: 2px;
  transition: all var(--t-fast);
}

.uptime-bar:hover { opacity: 1; transform: scaleY(1.1); }
.uptime-bar.partial { background: var(--warning); }

.uptime-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ═══════════════════════════════════════════════════════════
   WAITLIST CTA SECTION — Dark Glass
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  border-radius: var(--radius-2xl);
  margin: 0 2rem;
}

.cta-section .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-section h2 {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.45);
  max-width: 500px;
  margin: 0 auto 2.5rem auto;
}

.cta-section .waitlist-input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-section .waitlist-input::placeholder { color: rgba(255, 255, 255, 0.3); }

.cta-section .waitlist-input:focus {
  border-color: rgba(46, 220, 90, 0.4);
  box-shadow: 0 0 0 3px rgba(46, 220, 90, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  padding: 5rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 240px;
}

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

.footer-column h5 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all var(--t-fast);
}

.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   PRICING — Glass Cards
   ═══════════════════════════════════════════════════════════ */
.pricing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.pricing-toggle-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}

.pricing-toggle-label.active { color: var(--text-primary); font-weight: 600; }

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--bg-tertiary);
  border-radius: 34px;
  transition: all var(--t-fast);
  border: 1px solid var(--border-glass);
}

.slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: all var(--t-fast);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

input:checked + .slider { background: var(--text-primary); }
input:checked + .slider::before { transform: translateX(20px); }

.discount-badge {
  background: rgba(46, 220, 90, 0.1);
  color: #1a9e3e;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  margin-left: 0.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--t-normal);
  box-shadow: var(--shadow-glass);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(46, 220, 90, 0.04);
}

.pricing-card.premium-tier {
  border-color: rgba(46, 220, 90, 0.3);
  box-shadow: var(--shadow-glass), 0 0 40px rgba(46, 220, 90, 0.08);
  background: var(--glass-bg-strong);
}

.pricing-card.premium-tier:hover {
  box-shadow: var(--shadow-xl), 0 0 50px rgba(46, 220, 90, 0.12);
}

.popular-badge {
  position: absolute;
  top: 0.5rem;
  left: 12%;
  transform: translateX(-50%);
  z-index: 2;
  background: linear-gradient(135deg, var(--brand-accent), #0a1b0a);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(46, 220, 120, 0.4);
}

.pricing-card-header {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 1.5rem;
}

.pricing-tier-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.pricing-price { margin-top: 1rem; }

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-primary);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.pricing-period {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-original-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.original-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
}

.pricing-billed-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pricing-yearly-alt {
  font-size: 0.75rem;
  color: var(--brand-accent);
  font-weight: 500;
  margin-top: 0.35rem;
}

.pricing-card-header p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pricing-feature-item {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-feature-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--text-muted);
}

.pricing-feature-icon.popular { color: var(--brand-accent); }

.pricing-card .btn { width: 100%; margin-top: auto; }

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════════ */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 5rem;
  padding: 6rem 0;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-sidebar-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.25rem 0;
  border-left: 2px solid transparent;
  padding-left: 1rem;
  transition: all var(--t-fast);
}

.legal-sidebar-item:hover { color: var(--text-primary); }

.legal-sidebar-item.active {
  color: var(--text-primary);
  font-weight: 600;
  border-left-color: var(--brand-accent);
}

.legal-content { max-width: var(--max-width-narrow); }
.legal-content h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.5rem;
}

.legal-content section { margin-bottom: 3.5rem; }

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  scroll-margin-top: 100px;
}

.legal-content p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.legal-content li { margin-bottom: 0.5rem; line-height: 1.6; }

.legal-callout {
  background: var(--danger-bg);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-left: 4px solid var(--danger);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
}

.legal-callout h4 {
  color: var(--danger);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-callout p { color: #7f1d1d; margin-bottom: 0; font-size: 0.95rem; }
.legal-callout ul { color: #7f1d1d; margin-top: 0.75rem; margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   FAQ — Glass Accordion
   ═══════════════════════════════════════════════════════════ */
.faq-grid {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--t-fast);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform var(--t-fast);
}

.faq-item.active .faq-question::after { content: "−"; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-normal);
  background: rgba(255, 255, 255, 0.3);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  border-top: 1px solid var(--border-glass);
}

.faq-answer-inner {
  padding: 1.25rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════
   MODAL — Glass Overlay
   ═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-normal);
}

.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur-heavy));
  -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-dark-card);
  width: 100%;
  max-width: 440px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform var(--t-normal);
}

.modal-overlay.active .modal { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--t-fast);
}

.modal-close:hover { color: var(--text-primary); }

.modal-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(46, 220, 90, 0.15), rgba(46, 220, 90, 0.05));
  border: 1px solid rgba(46, 220, 90, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--brand-accent);
  box-shadow: 0 0 20px rgba(46, 220, 90, 0.1);
}

.modal h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.modal p { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 2rem; }

.waitlist-rank-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-around;
}

.rank-stat { display: flex; flex-direction: column; }

.rank-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rank-stat-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .code-showcase { grid-template-columns: 1fr; gap: 2rem; }
  .legal-layout { grid-template-columns: 1fr; gap: 3rem; }
  .legal-sidebar {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
  }
  .legal-sidebar-item {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding-left: 0;
    padding-bottom: 0.5rem;
    white-space: nowrap;
  }
  .legal-sidebar-item.active { border-bottom-color: var(--brand-accent); }
  .bg-3d-wireframe { opacity: 0.06; width: 200px; height: 200px; }
  .bg-3d-wireframe-2 { display: none; }
}

@media (max-width: 767px) {
  .header {
    height: auto;
    padding: 0.75rem 0;
    position: relative;
  }
  .header-container {
    flex-direction: column;
    gap: 0.75rem;
  }
  .nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .nav-cta { width: 100%; justify-content: center; }
  .hero { padding: 6rem 0 3rem 0; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .waitlist-form { flex-direction: column; width: 100%; }
  .waitlist-input { width: 100%; }
  .waitlist-form .btn { width: 100%; }
  .dashboard-sidebar { display: none; }
  .cta-section::before { margin: 0 1rem; border-radius: var(--radius-xl); }
  .bg-3d-wireframe { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE TRANSITION — fade-in on load
   ═══════════════════════════════════════════════════════════ */
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

body {
  animation: page-fade-in 0.5s var(--ease-out-expo) both;
}
