:root {
  /* Aspord Monolith Palette (Surgical White) */
  --bg: #F9F9FA;
  --bg-dim: #F2F4F5;
  --text: #1a1c1c;
  --text-dim: #5a6063;
  --text-inverse: #ffffff;
  --accent: #000000;
  --accent-mute: #5e5e5e;
  --outline: rgba(0, 0, 0, 0.06); /* Precise Grid Contrast */
  --outline-variant: rgba(0, 0, 0, 0.12);
  
  /* Materials: The Clear Void */
  --glass: rgba(255, 255, 255, 0.8);
  --glass-blur: blur(28px);
  
  /* Spacing & Rhythm */
  --s: 8px;
  --s-2: 16px;
  --s-4: 32px;
  --s-8: 64px;
  --s-12: 96px;
  --s-24: 192px;
  
  /* Fonts */
  --font-display: 'Inter', sans-serif;
  --font-serif: 'Newsreader', serif;
  --font-mono: 'Space Grotesk', monospace;
  
  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
  
  --radius: 8px;

  /* Hero Additions Mapping */
  --black: var(--accent);
  --ink: var(--text);
  --blue: #1d4ed8;
  --blue-soft: rgba(29, 78, 216, 0.08);
  --muted: var(--text-dim);
  --card: var(--bg);
  --ff-head: var(--font-serif);
  --ff-body: var(--font-display);
  --ff-mono: var(--font-mono);
}

/* ──────────────── Dark Mode Override ──────────────── */
body.dark-mode {
  --bg: #000000;
  --bg-dim: #0D0D0D;
  --text: #F9F9FA;
  --text-dim: #A0A0A0;
  --text-inverse: #000000;
  --accent: #FFFFFF;
  --accent-mute: #888888;
  --outline: rgba(255, 255, 255, 0.1);
  --outline-variant: rgba(255, 255, 255, 0.2);
  --glass: rgba(0, 0, 0, 0.85);
  --surface-container-lowest: #0A0A0A;

  /* Hero Additions Dark Mapping */
  --ink: var(--text);
  --black: var(--accent);
  --muted: var(--text-dim);
  --card: var(--surface-container-lowest);

  background-color: transparent;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 24px 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.5;
  background-color: transparent;
  position: relative;
  overflow-x: hidden;
}

/* Premium Dot-Matrix Background Layer */
body::before {
  display: none; /* Removed background lines per user request */
}

section {
  position: relative;
  z-index: 2;
  background: transparent !important;
}

.mesh-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background: var(--bg);
}

.blob {
  position: absolute;
  width: 70vw;
  height: 70vw;
  filter: blur(140px);
  opacity: 0.25;
  border-radius: 50%;
  animation: drift 25s infinite alternate ease-in-out;
}

.blob-1 { background: var(--mesh-indigo); top: -20%; left: -10%; }
.blob-2 { background: var(--mesh-slate); bottom: -20%; right: -10%; animation-delay: -12s; }
.blob-3 { background: var(--mesh-quartz); top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.15; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1.0); }
  to { transform: translate(150px, 100px) scale(1.3); }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--dur) var(--ease);
}

ul {
  list-style: none;
}

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #3b82f6; /* Unified Tech Blue */
  text-shadow: 0 0 24px rgba(59, 130, 246, 0.4);
}

/* ──────────────── Navbar: Machined Minimalism (Refined) ──────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px; /* Taller for more presence and airy feel */
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: all 0.4s var(--ease);
  animation: nav-slide-down 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes nav-slide-down {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-logo {
  font-family: var(--ff-body);
  font-size: 18px; /* Taller logo for 80px nav */
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .dot {
  color: var(--blue);
  font-size: 1.25em;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 4px;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
}

.nav-link {
  font-size: 14px; /* Scaled up */
  font-weight: 550;
  color: var(--text-dim);
  padding: 10px 22px; /* More breathable padding */
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
}

.nav-link.active {
  color: var(--text);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.nav-signin {
  font-size: 15px; /* Scaled up for 80px nav */
  font-weight: 550;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
  text-decoration: none;
}

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

.btn-nav {
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px; /* Muscular, premium padding */
  border-radius: 10px;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background: var(--black);
  border-color: var(--black);
}

 
/* ── HERO WRAPPER ──────────────────────────────────────── */
 
/* ── PREMIUM GLOBAL AMBIENT LIGHTING ───────────────── */
/* PREMIUM GLOBAL AMBIENT LIGHTING: Optimized for performance */
body::after {
  content: '';
  position: fixed; /* Fixed to viewport: avoids expensive repaints on scroll */
  top: -10%; left: -10%; right: -10%; bottom: -10%;
  pointer-events: none;
  z-index: -1; 
  background: 
    radial-gradient(circle at 12% 5%, rgba(239, 68, 68, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 8% 28%, rgba(168, 85, 247, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 92% 48%, rgba(59, 130, 246, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 10% 68%, rgba(234, 179, 8, 0.06) 0%, transparent 25%),
    radial-gradient(circle at 88% 88%, rgba(239, 68, 68, 0.08) 0%, transparent 25%);
  filter: blur(80px); /* Slightly higher blur, lower opacity for better blending + performance */
  will-change: transform; /* Hardware Acceleration */
  opacity: 0.8;
}

 
 
 
/* Subtle horizontal rule lines removed */
.hero-rule-top,
.hero-rule-bottom {
  display: none;
}
 
/* no corners */
 
/* ── BADGE ─────────────────────────────────────────────── */
.hero-badge {
  position: relative; z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-soft);
  border: 1px solid rgba(29,78,216,0.18);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 40px;
  animation: rise 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
.badge-dot {
  width: 20px; height: 20px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-dot svg { display: block; }
.badge-text {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--blue);
  text-transform: uppercase;
}
 
/* ── TITLE ─────────────────────────────────────────────── */
.hero-title-wrap {
  position: relative; z-index: 5;
  text-align: center;
  max-width: 1100px;
}

.hero-title {
  font-family: var(--ff-body);
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 800;
  line-height: 1.1; /* Relaxed further to prevent descender clipping */
  letter-spacing: -0.05em;
  color: var(--black);
  padding-bottom: 8px; /* Extra safety */
}
 
.hero-line-in-out {
  display: flex;
  justify-content: center;
  /* Removal of overflow: hidden to prevent descender clipping (e.g., 'g') */
  letter-spacing: -0.04em;
  opacity: 0;
  transform: scale(0.6) translateY(20px);
}

.hero-sub {
  position: relative;
  min-height: 2.4em; /* Prevent layout jump */
}

@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
 
.title-line-2 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 20px; /* More gap */
  flex-wrap: wrap;
}
 
.title-serif {
  font-family: var(--ff-head);
  font-style: italic;
  font-weight: 300;
  font-size: 1.15em; /* Larger serif */
  color: var(--blue);
  letter-spacing: -0.02em;
}
 
/* Pill tag inline with title */
.title-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black); /* Dark pill for contrast */
  color: #FFFFFF;
  font-family: var(--ff-mono);
  font-size: 14px; /* Upscaled */
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 100px;
  vertical-align: middle;
  position: relative;
  top: -10px;
  transform: rotate(-1.5deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.pill-dot {
  width: 5px; height: 5px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 1.8s infinite;
}
 
/* ── SUBTITLE ──────────────────────────────────────────── */
.hero-sub {
  position: relative; z-index: 5;
  text-align: center;
  font-size: clamp(19px, 2.5vw, 23px); /* Strongest visibility */
  font-weight: 450;
  line-height: 1.6;
  color: var(--muted);
  max-width: 740px; /* Wider for manifesto flow */
  margin-top: 32px;
}
 
/* ── ACTIONS ───────────────────────────────────────────── */
.hero-actions {
  position: relative; z-index: 5;
  display: flex; gap: 12px; align-items: center;
  margin-top: 44px;
}
 
.btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black); color: white;
  font-family: var(--ff-body);
  font-size: 17px; font-weight: 600; /* Bold 17px */
  padding: 20px 42px; /* Muscular padding */
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15), 0 1px 0 rgba(255,255,255,0.1) inset;
}
.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.22), 0 1px 0 rgba(255,255,255,0.1) inset;
}
.btn-main svg { transition: transform 0.25s; }
.btn-main:hover svg { transform: translateX(4px); }
 
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--ink);
  font-family: var(--ff-body);
  font-size: 17px; font-weight: 500;
  padding: 20px 38px;
  border-radius: 14px;
  text-decoration: none;
  border: 1.5px solid rgba(0,0,0,0.12);
  transition: all 0.25s;
}
.btn-outline:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.2);
}
 
 
 
/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
 
 
/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav { 
    padding: 0 24px; 
    height: 70px; /* Slightly more compact on mobile */
  }
  
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-center { display: none; }
  
  .nav-right .nav-signin,
  .nav-right .btn-nav {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    margin-left: 0;
    padding: 8px;
  }

  .hero { padding: 120px 20px 60px; }
  .hero-pills { gap: 8px; }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 14px;
    margin-top: 40px;
  }

  .btn-main, .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 18px 0;
    font-size: 16px;
  }

  .early-form { flex-direction: column; }
  .early-btn { width: 100%; }
}


.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 24px; /* Increased for 80px navbar */
}

.hero-title-wrap {
  margin-bottom: 40px;
}

/* ──────────────── Section Primitives ──────────────── */

.section {
  padding: var(--s-24) 0;
}

.section.bg-dim {
  background-color: transparent;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-4);
}

.section-header {
  margin-bottom: var(--s-12);
}

.section-header.center {
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-2);
  color: var(--text-dim);
}

.eyebrow-dash {
  width: 24px;
  height: 1.5px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 520px;
  margin-top: var(--s-4);
}

/* ──────────────── Features Grid ──────────────── */

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

.feature-card {
  background: #1A1C1E; /* Machined Dark Grey */
  color: #F9F9FA;
  backdrop-filter: var(--glass-blur);
  padding: 48px; /* Increased padding */
  min-height: 420px; /* Taller */
  border-radius: var(--radius);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 18px; /* Slightly more gap */
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 20px rgba(255,255,255,0.05) inset;
  border-color: rgba(255, 255, 255, 0.2);
}

.fc-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6; /* Digital Blue */
  margin-bottom: 8px;
}

.fc-title {
  font-size: 24px; /* Upscaled */
  font-weight: 700;
  color: #F9F9FA;
  letter-spacing: -0.02em;
}

.fc-desc {
  font-size: 17px; /* Upscaled */
  line-height: 1.6;
  color: rgba(249, 249, 250, 0.7);
}

.fc-pointers {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.fc-pointers li {
  font-size: 14.5px; /* Upscaled */
  color: rgba(249, 249, 250, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  letter-spacing: 0.02em;
}

.fc-pointers li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #3b82f6; 
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}

/* ──────────────── Technical Spec Sections (Full-Viewport Monolith) ──────────────── */
.specs-normal-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: transparent;
  border-top: none; /* Removed section divider border */
  position: relative;
  overflow: hidden;
  padding: var(--s-24) 0;
}

/* Watermark section index */
.specs-normal-section::before {
  content: attr(data-index);
  position: absolute;
  bottom: 48px;
  right: 5%;
  font-family: var(--font-mono);
  font-size: 120px;
  font-weight: 800;
  color: var(--outline);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
}

.specs-normal-section .section-inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.specs-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
}

.specs-layout.admin-layout {
  flex-direction: row-reverse;
}

/* Text column */
.specs-text {
  flex: 0 1 480px;
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.admin-layout .specs-text {
  text-align: right;
  align-items: flex-end;
}

.specs-text .section-title {
  margin-bottom: var(--s-4);
}

.specs-text .section-sub {
  max-width: 420px;
  line-height: 1.7;
}

/* Stats bar */
.specs-stats {
  display: flex;
  gap: var(--s-8);
  margin-top: var(--s-8);
  padding-top: var(--s-8);
  border-top: none; /* Removed stats bar border */
}

.admin-layout .specs-stats {
  justify-content: flex-end;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-item .label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.stat-item .value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* Hardware Mockup Containers */
.mobile-mockup-container {
  position: relative;
  width: 320px;
  flex-shrink: 0;
}

.admin-mockup-container {
  position: relative;
  flex: 1 1 600px;
  max-width: 680px;
}

/* Mobile Hardware Shell */
.mobile-frame {
  width: 100%;
  aspect-ratio: 9 / 19;
  background: #0a0a0a;
  border-radius: 52px;
  padding: 12px;
  border: 6px solid #1c1c1e;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.mobile-frame::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

/* Tilt helpers */
.tilt-right {
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) rotateZ(1.5deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tilt-left {
  transform: perspective(1200px) rotateY(8deg) rotateX(3deg) rotateZ(-1.5deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-mockup-container:hover .tilt-right,
.admin-mockup-container:hover .tilt-left {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
}

/* Admin Hardware Shell */
.admin-frame {
  width: 100%;
  background: #0a0a0a;
  padding: 10px;
  border-radius: 16px;
  border: 3px solid #1c1c1e;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
}

/* Media elements */
.mockup-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  display: block;
}

.admin-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.admin-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* Feature list replacing stats bar */
.specs-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-9, 48px); /* Increased gap between pointers */
}

/* Total Eradication of technical boxes & lines */
.specs-feature-list, 
.specs-feature-list li,
.specs-feature-list li *,
.specs-text,
.specs-text * {
  border: none !important;
  border-width: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.specs-feature-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: var(--s-4) !important;
  padding: var(--s-2) 0 !important;
  transition: transform 0.3s var(--ease) !important;
}

.specs-feature-list li:hover {
  transform: translateX(6px);
}

.eyebrow-dash {
  display: none !important; /* Suspected 'border' identified by user */
}

.feat-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6; /* Digital Blue Accent */
}

.feat-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.8px;
}

.specs-feature-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.specs-feature-list li strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.specs-feature-list li span {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Ambient glows */
.mockup-glow, .admin-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}

#pricing {
  position: relative;
  z-index: 20;
  background-color: transparent;
  padding: var(--s-32) 0;
}


.spec-item {
  display: flex;
  flex-direction: column;
  gap: var(--s);
}

.spec-item .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.spec-item .value {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
}

/* ──────────────── Pricing: Monolith Tiers ──────────────── */
#pricing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vh, 160px) 0;
}

#pricing::before {
  content: "03";
  position: absolute;
  bottom: 40px;
  right: 5%;
  font-family: var(--font-mono);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 800;
  color: var(--outline);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
  z-index: 0;
}

#pricing .section-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.8vw, 24px);
  margin-top: clamp(32px, 5vh, 64px);
  align-items: end;
}

.pricing-card {
  padding: clamp(24px, 3.5vh, 40px) clamp(20px, 2.5vw, 36px);
  background: var(--bg);
  border: 1px solid var(--outline);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  position: relative;
  z-index: 1;
}

.pricing-card {
  padding: clamp(24px, 3.5vh, 40px) clamp(20px, 2.5vw, 36px);
  background: var(--bg);
  border: 1px solid var(--outline);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  position: relative;
  z-index: 1;
}

.pricing-card:hover {
  border-color: rgba(0,0,0,0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.pricing-card.primary {
  background: #0e0e0e;
  color: #f9f9fa;
  border: none;
  padding: clamp(32px, 4.5vh, 56px) clamp(20px, 2.5vw, 36px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  z-index: 2;
}

.pricing-card.primary:hover {
  transform: translateY(-8px);
  box-shadow: 0 48px 100px rgba(0,0,0,0.3);
}

.pricing-card.primary::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse at top left, rgba(59,130,246,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.pricing-card.primary > * {
  position: relative;
  z-index: 1;
}

.pricing-card.primary .pricing-desc {
  color: rgba(255,255,255,0.55);
}

.badge {
  display: inline-block;
  font-family: var(--font-mono);
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.pricing-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: inherit;
}

.pricing-card.primary .pricing-name {
  color: #ffffff;
}

.pricing-desc {
  font-size: 15px; /* Upscaled */
  color: var(--text-dim);
  margin-bottom: clamp(16px, 2.5vh, 28px);
  line-height: 1.5;
}

.tier-tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  display: inline-block;
}

.pricing-card.primary .tier-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 14.5px; /* Upscaled */
  padding: 11px 0;
  border-bottom: 1px solid var(--outline);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-weight: 450;
  line-height: 1.4;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  width: 15px;
  height: 15px;
  color: #3b82f6;
  flex-shrink: 0;
  stroke-width: 2.5px;
}

.pricing-card.primary .pricing-features li {
  border-bottom-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
}

.pricing-card.primary .pricing-features li i {
  color: #60a5fa; /* Lighter blue on dark card */
}

/* Pricing CTA Buttons */
.pricing-card .btn-primary,
.pricing-card .btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  margin-top: auto;
}

.pricing-card .btn-outline {
  border: 1.5px solid var(--outline-variant);
  color: var(--text);
  background: transparent;
}

.pricing-card .btn-outline:hover {
  background: var(--outline);
}

.pricing-card.primary .btn-primary {
  background: #ffffff;
  color: #0e0e0e;
  border: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.pricing-card.primary .btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* ── Responsive: Venue Tiers ── */

/* Tablet portrait & small laptop */
@media (max-width: 1100px) {
  .pricing-grid {
    gap: 16px;
  }
}

/* Tablet landscape — switch to 2 columns */
@media (max-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  /* Primary card spans both columns at top */
  .pricing-card.primary {
    grid-column: 1 / -1;
    order: -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Mobile portrait — single column */
@media (max-width: 560px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.primary {
    grid-column: auto;
    max-width: 100%;
  }

  #pricing::before {
    font-size: 80px;
    bottom: 16px;
    opacity: 0.3;
  }
}

/* ──────────────── Footer ──────────────── */

footer {
  padding: 80px 0 60px;
  border-top: 1px solid var(--outline);
}

.footer-minimal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand {
  max-width: 400px;
}

.footer-moto {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 16px;
  font-weight: 450;
}

.footer-info {
  display: flex;
  gap: 80px;
}

.col-title {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.footer-email {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}

.footer-email:hover {
  opacity: 0.7;
}

.footer-connect-links-minimal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-connect-links-minimal a {
  font-size: 14px;
  font-weight: 550;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

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

@media (max-width: 768px) {
  .footer-minimal {
    flex-direction: column;
    gap: 48px;
  }
  .footer-info {
    flex-direction: column;
    gap: 40px;
  }
}

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

.copy {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: var(--s-4);
  font-size: 12px;
  color: var(--text-dim);
}

/* ──────────────── Animations (Entrance) ──────────────── */

.aos {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(8px);
  will-change: opacity, transform, filter;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), 
              transform 1s cubic-bezier(0.19, 1, 0.22, 1), 
              filter 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.aos.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.aos[style*="--aos-delay"] {
  transition-delay: calc(var(--aos-delay) * 0.1s);
}

.red-glow-specs {
  position: absolute;
  bottom: -15vw;
  right: -15vw;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.18) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  animation: pulseRedSpecs 15s ease-in-out infinite alternate;
}

@keyframes pulseRedSpecs {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.2) translate(-3vw, -3vw); opacity: 0.6; }
}

.section.overflow-hidden {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .nav-inner, .hero-inner, .section-inner {
    padding: 0 var(--s-4);
  }
  .features-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .specs-layout {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    margin-top: 50px;
    justify-content: center;
  }
  .visual-container {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ──────────────── Subpage Layouts ──────────────── */

.hero-subpage {
  padding-top: 160px;
  padding-bottom: 80px;
}

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

.product-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
  margin-bottom: var(--s-24);
}

.product-feature-row.reverse {
  direction: rtl;
}

.product-feature-row.reverse .feature-text {
  direction: ltr;
}

.feature-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--outline);
  border-radius: var(--radius);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
}

.visual-container.mini {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* ──────────────── Precision Form ──────────────── */

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.precision-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s);
}

.form-group label {
  font-size: 10px;
  color: var(--text-dim);
}

.precision-form input, 
.precision-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--outline-variant);
  padding: 12px 0;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.precision-form input:focus, 
.precision-form textarea:focus {
  border-color: var(--accent);
}

.nav-links a.active {
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 4px;
}

.wind-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5; /* Above background dots (z:0), below content (z:10) */
  opacity: 0.9; /* High Visibility */
}

/* ──────────────── Feature List ──────────────── */

.feature-list {
  margin-top: var(--s-6, 24px);
  display: flex;
  flex-direction: column;
  gap: var(--s-3, 12px);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3, 12px);
  font-size: 13.5px;
  color: #A0A0A0; /* Dim text for dark card */
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.feature-list li:hover {
  color: #F9F9FA;
  transform: translateX(4px);
}

.feature-list li svg {
  color: #3b82f6; /* Digital Blue */
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.9;
}

/* ──────────────── Specs Feature List (Detailed) ──────────────── */
.specs-feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.specs-feature-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dim);
  border: 1px solid var(--outline);
  border-radius: 10px;
  color: var(--accent);
  flex-shrink: 0;
}

.feat-icon svg {
  width: 20px;
  height: 20px;
}

.specs-feature-list li div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.specs-feature-list li strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.specs-feature-list li span {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ──────────────── User Profile Dropdown ──────────────── */
.user-profile-container {
  position: relative;
}

.user-profile-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 40px;
  border: 1px solid var(--outline);
  background: var(--bg-dim);
  transition: all 0.3s var(--ease);
}


/* ──────────────── User Profile (Real Auth UI) ──────────────── */
.user-profile-container {
  position: relative;
  z-index: 1001;
}

.user-profile-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  background: var(--bg-dim);
  border: 1px solid var(--outline);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  user-select: none;
}

.user-profile-menu:hover {
  background: var(--outline-variant);
  border-color: var(--outline-variant);
  transform: translateY(-1px);
}

.profile-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.profile-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-avatar-wrapper {
  position: relative;
  width: 28px;
  height: 28px;
}

.profile-avatar-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--bg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.profile-status-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: #10B981; /* Precise emerald */
  border: 2px solid var(--bg-dim);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 240px;
  background: var(--bg);
  border: 1px solid var(--outline);
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.dropdown-item:hover {
  background: var(--bg-dim);
}

.dropdown-item.logout {
  color: #ef4444;
}

.dropdown-item.logout:hover {
  background: rgba(239, 68, 68, 0.08);
}

.dropdown-divider {
  height: 1px;
  background: var(--outline);
  margin: 4px 8px;
}

.dropdown-header {
  padding: 12px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-header .plan-status {
  font-size: 11px;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dropdown-header .user-email {
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ═══════════════════════════════════════════════════════════
   HERO ELEGANT — Centered Tagline + Side Vignettes
   ═══════════════════════════════════════════════════════════ */

.hero-elegant {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 160px;
  padding-bottom: 0;
  overflow: hidden;
  background: var(--bg);
  isolation: isolate;
}

/* ── Side vignettes: soft ink-wash falloff from edges ── */
.hero-vignette-left,
.hero-vignette-right {
  position: absolute;
  top: 0;
  width: 22%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.hero-vignette-left {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(243, 243, 243, 0.96) 0%,
    rgba(243, 243, 243, 0.6) 50%,
    transparent 100%
  );
}

.hero-vignette-right {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(243, 243, 243, 0.96) 0%,
    rgba(243, 243, 243, 0.6) 50%,
    transparent 100%
  );
}

body.dark-mode .hero-vignette-left {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    transparent 100%
  );
}

body.dark-mode .hero-vignette-right {
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    transparent 100%
  );
}

/* ── Background layers ── */
.hero-elegant-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.elegant-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.08) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 0%, transparent 100%);
}

body.dark-mode .elegant-dot-grid {
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
}

.elegant-glow-top {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 55vh;
  background: radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  filter: blur(30px);
}

/* ── Centered hero content ── */
.hero-elegant-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 760px;
  padding: 0 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Status badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  font-size: 11.5px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--text-dim);
  backdrop-filter: blur(12px);
  margin-bottom: 32px;
  transition: border-color 0.3s ease;
}

body.dark-mode .hero-badge {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
}

/* Main headline — the tagline */
.hero-elegant-title {
  font-size: clamp(44px, 7.5vw, 86px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(28px);
  animation: hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.hero-elegant-serif {
  display: inline;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  color: #3b82f6;
  text-shadow: 0 0 32px rgba(59, 130, 246, 0.22);
}

/* Subparagraph */
.hero-elegant-sub {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto 44px;
  font-weight: 400;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.38s;
}

/* CTA row */
.hero-elegant-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.52s;
}

.btn-elegant-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 26px;
  background: #0f0f0f;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid #0f0f0f;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-elegant-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.08);
  background: #1a1a1a;
  opacity: 1;
}

.btn-elegant-ghost {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 22px;
  background: rgba(0, 0, 0, 0.02);
  color: var(--text);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-elegant-ghost:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
  opacity: 1;
}

body.dark-mode .btn-elegant-primary {
  background: #ffffff;
  color: #000;
  border-color: #ffffff;
}

body.dark-mode .btn-elegant-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ── Floating dashboard mockup ── */
.hero-elegant-mockup {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin-top: 72px;
  padding: 0 40px;
  z-index: 3;
  opacity: 0;
  animation: mockup-float-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.7s;
}

@keyframes mockup-float-in {
  from {
    opacity: 0;
    transform: translateY(80px) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(3deg);
  }
}

.elegant-mockup-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 140px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

/* The browser window */
.elegant-mockup-window {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 14px 14px 0 0;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: none;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.03),
    0 12px 40px rgba(0, 0, 0, 0.07),
    0 40px 100px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

body.dark-mode .elegant-mockup-window {
  background: rgba(14, 14, 14, 0.9);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 40px 100px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Browser chrome bar */
.emw-header {
  height: 44px;
  background: rgba(248, 248, 248, 0.97);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 14px;
}

body.dark-mode .emw-header {
  background: rgba(18, 18, 18, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.emw-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.emw-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.d-red    { background: #ff5f57; }
.d-yellow { background: #ffbd2e; }
.d-green  { background: #28c840; }

.emw-url {
  flex: 1;
  text-align: center;
  font-size: 11.5px;
  font-family: var(--font-mono);
  color: rgba(0, 0, 0, 0.28);
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  padding: 4px 12px;
  max-width: 280px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

body.dark-mode .emw-url {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.22);
}

.emw-toolbar {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.emw-tb-btn {
  width: 28px;
  height: 20px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

body.dark-mode .emw-tb-btn {
  background: rgba(255, 255, 255, 0.06);
}

/* Dashboard body */
.emw-body {
  display: flex;
  height: 380px;
}

/* Sidebar */
.emw-sidebar {
  width: 54px;
  background: rgba(246, 246, 246, 0.9);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

body.dark-mode .emw-sidebar {
  background: rgba(11, 11, 11, 0.92);
  border-right-color: rgba(255, 255, 255, 0.05);
}

.emw-sb-logo {
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 8px;
}

body.dark-mode .emw-sb-logo {
  background: rgba(255, 255, 255, 0.12);
}

.emw-sb-item {
  width: 30px;
  height: 6px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 3px;
}

.emw-sb-item.active {
  background: #3b82f6;
}

body.dark-mode .emw-sb-item {
  background: rgba(255, 255, 255, 0.08);
}

.emw-sb-divider {
  width: 24px;
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin: 4px 0;
}

body.dark-mode .emw-sb-divider {
  background: rgba(255, 255, 255, 0.07);
}

/* Main content */
.emw-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.emw-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

body.dark-mode .emw-topbar {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.emw-topbar-title {
  width: 110px;
  height: 13px;
  background: rgba(0, 0, 0, 0.09);
  border-radius: 4px;
}

body.dark-mode .emw-topbar-title {
  background: rgba(255, 255, 255, 0.1);
}

.emw-topbar-chips {
  display: flex;
  gap: 8px;
}

.emw-chip {
  width: 56px;
  height: 26px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.emw-chip.filled {
  background: #0f0f0f;
  border-color: transparent;
}

body.dark-mode .emw-chip {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.07);
}

body.dark-mode .emw-chip.filled {
  background: rgba(255, 255, 255, 0.9);
}

/* Stats row */
.emw-stats {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
}

.emw-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.dark-mode .emw-stat {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.07);
}

.emw-stat-lbl {
  width: 65%;
  height: 8px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
}

.emw-stat-val {
  width: 50%;
  height: 18px;
  background: rgba(0, 0, 0, 0.11);
  border-radius: 4px;
}

body.dark-mode .emw-stat-lbl { background: rgba(255, 255, 255, 0.08); }
body.dark-mode .emw-stat-val { background: rgba(255, 255, 255, 0.12); }

.emw-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  overflow: hidden;
}

body.dark-mode .emw-bar {
  background: rgba(255, 255, 255, 0.08);
}

.emw-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 2px;
}

/* Table rows */
.emw-rows {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.emw-row {
  height: 34px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 7px;
}

.emw-row.header-row {
  background: rgba(0, 0, 0, 0.04);
  height: 26px;
}

body.dark-mode .emw-row {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .emw-row.header-row {
  background: rgba(255, 255, 255, 0.07);
}

/* ── GLOBAL SCROLL REVEAL (AOS) ───────────────── */
.aos {
  opacity: 0;
  transform: translateY(60px) rotateX(5deg) scale(0.96);
  filter: blur(12px);
  transition: 
    opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
  visibility: hidden;
}

.aos.visible {
  opacity: 1 !important;
  transform: translateY(0) rotateX(0deg) scale(1) !important;
  filter: blur(0) !important;
  visibility: visible !important;
}

/* Stagger enhancements for grid layouts */
.features-grid .aos, 
.pricing-grid .aos {
  transition-delay: calc(var(--aos-delay, 0) * 0.15s);
}

/* ── VIEW TRANSITIONS (Modern Browser Support) ── */
@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.5s;
  animation-timing-function: var(--ease);
}
/* ── Final CTA Section ───────────────────────────────────── */
#climax-cta {
  padding: var(--s-24) 0;
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 20px 0 32px;
}

.cta-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 48px;
}

.cta-actions {
  display: flex;
  gap: var(--s-2);
  justify-content: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

.btn-secondary:hover {
  background: var(--bg-dim);
  border-color: var(--ink);
}

/* ── Footer Polish (Monolith) ──────────────────────────────── */
footer {
  padding: var(--s-24) 0 var(--s-8);
  border-top: 1px solid var(--outline);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1.2fr 1.6fr;
  gap: var(--s-8);
}

.footer-brand .logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--black);
}

.footer-moto {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.col-title {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 14px;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--black);
  transform: translateX(4px);
}

/* Connect & Sub */
.footer-connect-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.footer-sub-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid var(--outline-variant);
  padding: 8px 0;
  transition: border-color 0.4s var(--ease);
}

.footer-sub-wrap:focus-within {
  border-color: var(--ink);
}

.footer-sub-input {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
}

.footer-sub-input::placeholder {
  color: var(--muted);
}

.footer-sub-btn {
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 4px;
  transition: transform 0.3s var(--ease);
}

.footer-sub-btn:hover {
  transform: translateX(6px);
}

.footer-bottom {
  margin-top: var(--s-24);
  padding-top: var(--s-12);
  border-top: 1px solid var(--outline);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-copy .copy {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--ff-mono);
  margin-bottom: 4px;
}

.footer-copy .tagline {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.6;
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--ink);
}

/* ──────────────── Pricing Page Specifics ──────────────── */
.pricing-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 80px auto;
}

.tier-detail-card {
  padding: 64px;
  background: var(--bg);
  border: 1px solid var(--outline);
  border-radius: 20px;
  text-align: left;
  transition: all 0.4s var(--ease);
}

.tier-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.05);
}

.tier-detail-card .section-title {
  font-size: 32px !important;
  margin-top: 8px;
  color: var(--text) !important;
}

.tier-detail-card .section-sub {
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 16px;
  max-width: 100%;
  color: var(--text-dim) !important;
}

/* ──────────────── FEATURE ROW MOBILE RE-ORDERING ──────────────── */
@media (max-width: 960px) {
  .specs-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    align-items: center;
    text-align: center;
  }
  .mobile-mockup-container, .admin-mockup-container {
    order: 1 !important;
    flex: none !important;
    width: 100% !important;
    max-width: 480px !important;
    height: auto !important;
    margin: 0 auto;
  }
  .specs-text {
    order: 2 !important;
    flex: none !important;
    width: 100% !important;
    align-items: center !important;
  }
  .specs-text .section-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .specs-normal-section {
    padding: 60px 0 !important;
  }
}

/* ──────────────── DASHBOARD GRID HUB ──────────────── */
.dash-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 960px) {
  .dash-grid-row {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  
  .dashboard-card {
    padding: 24px !important;
  }
}



/* ──────────────── HAMBURGER ARCHITECTURE ──────────────── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
  margin-left: auto;
}

.ham-line {
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}

/* Mobile Navbar Overrides */
@media (max-width: 860px) {
  .nav-hamburger { display: flex; }
  
  .nav-menu-overlay {
    position: fixed;
    top: 75px;
    right: 24px;
    width: 280px;
    height: auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 12px;
    gap: 4px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 
      0 4px 6px -1px rgba(0, 0, 0, 0.05), 
      0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 20px 40px -10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transform-origin: top right;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.dark-mode .nav-menu-overlay {
    background: rgba(15, 15, 15, 0.9);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  }

  .nav-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-menu-overlay .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.2s var(--ease);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-menu-overlay .nav-link:hover {
    background: rgba(0, 0, 0, 0.04);
  }

  body.dark-mode .nav-menu-overlay .nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-menu-overlay .nav-link.active {
    background: var(--blue-soft);
    color: var(--blue);
  }

  .nav-menu-overlay .menu-actions {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  body.dark-mode .nav-menu-overlay .menu-actions {
    border-top-color: rgba(255, 255, 255, 0.05);
  }

  .nav-menu-overlay .btn-menu-primary {
    background: var(--accent);
    color: var(--bg);
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    font-size: 14px;
    transition: transform 0.2s var(--ease);
  }

  .nav-menu-overlay .btn-menu-primary:active {
    transform: scale(0.98);
  }

  .nav-menu-overlay .btn-menu-ghost {
    background: transparent;
    color: var(--text-dim);
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    transition: all 0.2s var(--ease);
  }

  .nav-menu-overlay .btn-menu-ghost:hover {
    color: var(--text);
    background: rgba(0, 0, 0, 0.03);
  }

  
  /* Morphing Hamburger */
  .nav-hamburger.active .ham-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-hamburger.active .ham-line:nth-child(2) { opacity: 0; }
  .nav-hamburger.active .ham-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Footer Responsiveness */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

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

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-col {
    align-items: center;
    text-align: center;
  }

  .footer-moto {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ──────────────── WhatsApp Floating Action ──────────────── */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366; /* WhatsApp Green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 
    0 12px 24px rgba(37, 211, 102, 0.25),
    0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.4s var(--ease);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: visible;
}

body.dark-mode .wa-float {
  background: #25D366;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 12px 24px rgba(37, 211, 102, 0.35),
    0 4px 8px rgba(0,0,0,0.4);
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.2),
    0 0 20px rgba(59, 130, 246, 0.3);
}

.wa-float svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s var(--ease);
}

.wa-float:hover svg {
  transform: rotate(10deg);
}

/* Alive indicator */
.wa-ping {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border: 2px solid var(--black);
  border-radius: 50%;
}

body.dark-mode .wa-ping {
  border-color: #fff;
}

.wa-ping::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: #22c55e;
  border-radius: 50%;
  opacity: 0.6;
  animation: wa-ping-anim 2s infinite;
}

@keyframes wa-ping-anim {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--black);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s var(--ease);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

body.dark-mode .wa-tooltip {
  background: #fff;
  color: #000;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 860px) {
  .wa-float {
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
  }
}


