/* AURA landing — app-like glass aesthetic */
:root {
  --radius: 18px;
  --radius2: 26px;
  --max: 1160px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

:root[data-theme="dark"]{
  --bg0:#070a10;
  --bg1:#0b1020;
  --glass:rgba(255,255,255,.06);
  --glass2:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.12);
  --text:#e7eaf0;
  --text-muted:rgba(231,234,240,.68);
  --text-subtle:rgba(231,234,240,.55);
  --muted:rgba(231,234,240,.68);
  --accent:#7c5cff;
  --accent2:#06b6d4;
  --shadow: 0 20px 80px rgba(0,0,0,.55);
  --btn-primary-bg: linear-gradient(135deg, rgba(124,92,255,.95), rgba(6,182,212,.62));
  --btn-primary-text: #0b0d13;
  --btn-hover: rgba(255,255,255,.06);
  --btn-ghost: rgba(255,255,255,.02);
  --card-bg: rgba(255,255,255,.03);
  --input-bg: rgba(0,0,0,.22);
  --gradient-purple: rgba(124,92,255,.18);
  --gradient-cyan: rgba(6,182,212,.12);
}

:root[data-theme="light"]{
  --bg0:#f8fafc;
  --bg1:#e2e8f0;
  --glass:rgba(0,0,0,.06);
  --glass2:rgba(0,0,0,.08);
  --border:rgba(0,0,0,.12);
  --text:#1e293b;
  --text-muted:rgba(30,41,59,.68);
  --text-subtle:rgba(30,41,59,.55);
  --muted:rgba(30,41,59,.68);
  --accent:#7c3aed;
  --accent2:#0891b2;
  --shadow: 0 20px 80px rgba(0,0,0,.15);
  --btn-primary-bg: linear-gradient(135deg, rgba(124,58,237,.85), rgba(8,145,178,.72));
  --btn-primary-text: #ffffff;
  --btn-hover: rgba(0,0,0,.06);
  --btn-ghost: rgba(0,0,0,.02);
  --card-bg: rgba(0,0,0,.03);
  --input-bg: rgba(0,0,0,.08);
  --gradient-purple: rgba(124,58,237,.15);
  --gradient-cyan: rgba(8,145,178,.12);
}

*{box-sizing:border-box}
html,body{height:100%}

/* fixes the “white flash” on fast scroll */
html{ background: var(--bg0); }

body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background-color: var(--bg0);
  background:
    radial-gradient(1200px 600px at 15% 10%, var(--gradient-purple), transparent 55%),
    radial-gradient(900px 540px at 85% 20%, var(--gradient-cyan), transparent 55%),
    radial-gradient(900px 540px at 50% 85%, var(--gradient-purple), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 65%, var(--bg0));
  overflow-x:hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="light"] body {
  background:
    radial-gradient(1200px 600px at 15% 10%, var(--gradient-purple), transparent 55%),
    radial-gradient(900px 540px at 85% 20%, var(--gradient-cyan), transparent 55%),
    radial-gradient(900px 540px at 50% 85%, var(--gradient-purple), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 65%, #cbd5e1);
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.96}
h1,h2,h3{margin:0 0 10px 0;letter-spacing:.2px}
h1{font-size:clamp(34px, 3.4vw, 54px);font-weight:350;line-height:1.06}
h2{font-size:clamp(26px, 2.3vw, 38px);font-weight:340;line-height:1.12}
h3{font-size:20px;font-weight:420;line-height:1.2}
p{margin:0 0 10px 0;color:var(--muted);line-height:1.55}

.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.section{padding:72px 0}
.section--final{padding:64px 0 84px}
.center{text-align:center}
.small{font-size:12px}
.muted{color:var(--muted)}

.kicker{
  font-size:11px;
  letter-spacing:.38em;
  text-transform:uppercase;
  color:var(--text-subtle);
  margin-bottom:14px;
}

.noise{
  position:fixed;inset:-200px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events:none;
  opacity:.16;
  mix-blend-mode:overlay;
  transform: translateZ(0);
  will-change: transform;
}

.glass{
  background:linear-gradient(180deg, var(--glass2), var(--glass));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.card{padding:22px}
.card__tag{
  display:inline-block;
  font-size:12px;
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  color:var(--text-muted);
  margin-bottom:12px;
}

/* Make the brand behave like a single centered unit */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  height: 56px;          /* sets a predictable nav row height */
  line-height: 1;        /* avoids baseline weirdness */
}

/* Dot + text */
.brand__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  flex:0 0 auto;
}

.brand__text{
  line-height: 1;
  display:flex;
  align-items:center;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 420px){
  .brand{ height: 48px; gap: 10px; }
  .brand__logo{ height: 34px; }
}

.nav__links{
  margin-left:8px;
  display:flex;
  gap:10px;
  flex:1;
  justify-content:center;
  flex-wrap:wrap
}
.nav__links a{
  color:var(--text);
  font-size:13px;
  padding:8px 10px;
  border-radius:10px
}
.nav__links a:hover{background:var(--btn-hover)}
.nav__cta{display:flex;gap:10px;align-items:center}

.nav__note{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px 12px 18px;
  color:var(--text-subtle);
  font-size:12px;
  display:flex;align-items:center;gap:10px
}
.dot{width:7px;height:7px;border-radius:99px;background:rgba(255,255,255,.35);display:inline-block}
.dot--ok{background:rgba(6,182,212,.85)}

.nav__burger{
  display:none;
  margin-left:auto;
  background:transparent;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  padding:10px 11px
}
.nav__burger span{display:block;width:18px;height:2px;background:rgba(231,234,240,.8);margin:4px 0;border-radius:99px}
.nav__mobile{display:none;max-width:var(--max);margin:0 auto;padding:0 18px 14px 18px}
.nav__mobile a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  color:rgba(231,234,240,.8);
  border:1px solid rgba(255,255,255,.06);
  background:var(--card-bg);
  margin-bottom:10px
}
.nav__mobileCta{display:flex;gap:10px;flex-wrap:wrap}
.nav__mobile.is-open{ display:block; }

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  font-size:13px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:var(--card-bg);
  color:var(--text);
  transition:transform .06s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover{background:var(--btn-hover)}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:var(--btn-primary-bg);
  border-color:var(--border);
  color:var(--btn-primary-text);
  font-weight:650;
}
[data-theme="light"] .btn--primary{
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.btn--ghost{background:var(--btn-ghost)}
.btn--wide{min-width:220px}
.btn:focus{outline:2px solid var(--accent2);outline-offset:2px}



/* Hero */
.hero{padding:26px 0 40px}
.hero__inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:stretch; /* <-- IMPORTANT */
}

/* Force both HERO cards to equal height */
.hero__copy,
.hero__orbWrap{
  height:100%;
}

.hero__copy{
  display:flex;
  flex-direction:column;
}

.hero__orbWrap{
  display:flex;
  flex-direction:column;
}

.orbCard{
  height:100%;
  display:flex;
  flex-direction:column;
}

.hero__copy{padding:26px}
.subhead{font-size:16px;color:var(--text);max-width:52ch;margin-top:8px}
.ctaRow{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.micro{font-size:12px;color:var(--text-subtle);margin-top:10px}

.hero__stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:18px}
.stat{padding:12px;border:1px solid rgba(255,255,255,.08);border-radius:14px;background:var(--card-bg)}
.stat__label{font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--text-subtle);margin-bottom:6px}
.stat__value{font-size:13px;color:var(--text)}

.hero__orbWrap{display:flex;flex-direction:column;gap:12px}
.orbCard{padding:18px}
.orbHeader{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px;gap:10px;flex-wrap:wrap}
.orbTitle{font-size:11px;letter-spacing:.34em;text-transform:uppercase;color:rgba(231,234,240,.60)}
.orbStatus{font-size:12px;color:var(--text-muted);display:flex;align-items:center;gap:10px}

.orb{
  position:relative;
  width:min(360px, 100%);
  aspect-ratio:1/1;
  margin: 6px auto 10px auto;
  display:grid;
  place-items:center;
}
.orb__ring{
  position:absolute;inset:0;border-radius:999px;
  background: conic-gradient(from 90deg, rgba(6,182,212,.85), rgba(124,92,255,.9), rgba(255,255,255,.25), rgba(6,182,212,.85));
  animation: spin 12s linear infinite;
  opacity:.85;
}
.orb__core{
  position:absolute;inset:18%;
  border-radius:999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(6,182,212,.55), rgba(124,92,255,.45) 55%, rgba(0,0,0,.35) 100%);
  box-shadow:
    0 0 80px rgba(124,92,255,.30),
    0 0 90px rgba(6,182,212,.18);
}
.orb__glow{
  position:absolute;inset:8%;
  border-radius:999px;
  background: radial-gradient(circle at 50% 55%, rgba(255,255,255,.18), transparent 60%);
  filter: blur(2px);
  opacity:.9;
}
@keyframes spin{to{transform:rotate(360deg)}}

.chips{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;margin:10px 0}
.chip{
  cursor:pointer;
  font-size:12px;
  padding:8px 11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:var(--card-bg);
  color:var(--text);
}
.chip:hover{background:var(--btn-hover)}
.chip.is-active{
  border-color:rgba(6,182,212,.45);
  box-shadow:0 0 0 2px rgba(6,182,212,.12);
  color:#dffdf7;
}

.hero__note{
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(231,234,240,.62);
  width: 100%;
  max-width: 100%;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.10);
}
@media (min-width: 980px){
  .hero__note{ max-width: 62ch; }
}

.duration{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin-top:6px}
.pill{
  cursor:pointer;
  font-size:12px;
  padding:8px 11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:var(--input-bg);
  color:var(--text);
}
.pill:hover{background:var(--btn-hover)}
.pill.is-active{
  border-color:rgba(124,92,255,.50);
  box-shadow:0 0 0 2px rgba(124,92,255,.12);
  color:#efeaff;
}

.orbActions{display:flex;flex-direction:column;gap:8px;align-items:center;margin-top:10px}
.hint{font-size:12px;color:var(--text-subtle)}
.hero__fineprint{font-size:12px;color:var(--text-subtle);padding:0 10px;text-align:right}

/* Make both hero columns equal height */
.hero__copy{ height:100%; }

/* Right column: reserve space for the fineprint, and let the card fill */
.hero__orbWrap{
  height:100%;
  position:relative;
  padding-bottom:22px; /* space for the fineprint line */
}

/* Stretch the glass card to match left card height */
.orbCard{
  height:100%;
}

/* Keep fineprint visually below the card without affecting height */
.hero__fineprint{
  position:absolute;
  right:0;
  bottom:0;
  padding:0 10px;
  text-align:right;
}

/* Layout grids */
.sectionHead{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:18px;flex-wrap:wrap}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}

/* Timeline */
.timeline{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.step{padding:22px}
.step__n{
  width:38px;height:38px;border-radius:14px;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.12);
  background:var(--card-bg);
  color:var(--text);
  margin-bottom:12px;
  font-weight:650;
}

/* Modules */
.module{padding:22px}
.module__kicker{font-size:11px;letter-spacing:.28em;text-transform:uppercase;color:var(--text-subtle);margin-bottom:10px}
.module ul{margin:10px 0 14px 18px;color:var(--text-muted)}
.module li{margin:6px 0}
.module--accent{border-color:rgba(6,182,212,.20)}
.callout{padding:16px;margin-top:14px;border-radius:var(--radius2);border-color:var(--border);background:rgba(255,255,255,.035)}

/* Profile lead capture */
.profile{padding:22px;display:grid;grid-template-columns:1.15fr .85fr;gap:14px;border-radius:var(--radius2)}
.form{margin-top:14px}
.label{display:block;font-size:12px;color:var(--text-muted);margin-bottom:8px}
.formRow{display:flex;gap:10px;flex-wrap:wrap}
.input{
  flex:1;
  min-width:240px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:var(--input-bg);
  color:var(--text);
}
.input::placeholder{color:var(--text-subtle)}
.formMsg{margin-top:10px;font-size:12px;color:var(--text-muted);min-height:18px}
.hp{position:absolute;left:-9999px;opacity:0}
.mini{padding:16px}
.mini__title{font-size:11px;letter-spacing:.26em;text-transform:uppercase;color:var(--text-subtle);margin-bottom:10px}
.mini ul{margin:10px 0 0 18px;color:var(--text-muted)}
.mini li{margin:6px 0}

/* Pricing: equal height cards + aligned CTAs */
.pricing{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  align-items:stretch; /* important: makes grid items stretch same row height */
}

.price{
  padding:22px;
  position:relative;

  display:flex;              /* NEW */
  flex-direction:column;     /* NEW */
  min-height: 100%;          /* NEW */
}

/* Let the features list take up the flexible space */
.price ul{
  margin:12px 0 16px 18px;
  color:var(--text-muted);
  flex:1;                    /* NEW: makes list grow, pushes CTA down */
}

/* Ensure button row always sits at bottom and aligns */
.price .btn{
  margin-top:auto;           /* NEW: pushes button to bottom if needed */
}

/* Keep the small line under button consistent */
.price p.small{
  margin-top:10px;
}

/* Price top row stays stable */
.price__top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:12px;
}

/* Optional: keep featured badge from shifting layout */
.badge{ 
	position:absolute; 
	top:14px; 
	/* center it */
    left: 63%;
	right:37%; 
	font-size:11px; 
	padding:6px 10px; 
	border-radius:999px;
}

/* FAQ */
.faq details{padding:16px;border-radius:var(--radius2);margin-bottom:12px}
.faq summary{cursor:pointer;color:var(--text);font-size:14px;list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq__body{padding-top:10px;color:var(--text-muted);font-size:13px;line-height:1.6}

/* Final CTA + footer */
.final{
  padding:26px;
  text-align:center;
  border-radius:var(--radius2);
}

/* ✅ Align the two buttons under the Final CTA */
.final .ctaRow{
  display:flex;
  justify-content:center;   /* center both buttons */
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;          /* spacing from text */
}

/* Make both buttons feel consistent */
.final .ctaRow .btn{
  min-height:44px;
}

/* Mobile: stack buttons full-width */
@media (max-width: 520px){
  .final .ctaRow{
    flex-direction:column;
    align-items:stretch;
  }
  .final .ctaRow .btn{
    width:100%;
  }
}

.footer{
  padding:22px 0 40px;
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.10);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.footer__right{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.footer__right a{
  color:var(--text-muted);
  font-size:12px;
}
.footer__right a:hover{
  color:var(--text);
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr;gap:14px}
  .hero__fineprint{text-align:left}
  .timeline{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .profile{grid-template-columns:1fr}
  .nav__links{display:none}
  .nav__burger{display:inline-block}
  /* keep logo premium but not huge on small screens */
  .brand__logo{height:44px}
}

/* ===== NAV FIX OVERRIDES (place at end of landing.css) ===== */

.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,7,11,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Hard reset nav row geometry */
.nav__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Left brand block */
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  line-height: 1;
}

.brand__logo{
  height: clamp(42px, 4.2vw, 60px); /* min, fluid, max */
  width: auto;
  display: block;
  flex: 0 0 auto;
  margin: 0;
  object-fit: contain;
  transform: translateY(1px);
}

/*
.brand__logo{
  height: 60px;          /* desktop default 
  width: auto;
  display: block;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(124,92,255,.18))
          drop-shadow(0 0 10px rgba(6,182,212,.12));
  opacity: .96;
}*/

/* Dot */
.brand__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: radial-gradient(circle at 30% 30%, var(--accent2), var(--accent) 55%, rgba(124,92,255,.35) 100%);
  box-shadow: 0 0 18px rgba(124,92,255,.22);
}

/* Text */
.brand__text{
  font-weight: 560;
  letter-spacing: .05em;
  line-height: 1;
  white-space: nowrap;
}

/* Middle links stay centered */
.nav__links{
  margin-left: 8px;
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

/* Right CTA pinned right */
.nav__cta{
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
}

/* Mobile */
@media (max-width: 980px){
  .nav__links{ display: none; }
  .nav__burger{ display: inline-block; margin-left: auto; }
}

@media (max-width: 420px){
  .brand{ gap: 10px; }
  .brand__logo{ height: 34px; }
}

@media (max-width: 980px){
  .hero__orbWrap{
    height:auto;
    padding-bottom:0;
  }
  .hero__fineprint{
    position:static;
    text-align:left;
  }
}

/* ===== HERO equal-height cards (NO internal reflow) ===== */

/* 1) Make the hero row stretch to the tallest column */
.hero__inner{
  align-items: stretch;
}

/* 2) IMPORTANT: undo any "push content to bottom" rules */
.hero__stats{
  margin-top: 18px !important;   /* back to your original spacing */
}
.orbActions{
  margin-top: 10px !important;   /* back to your original spacing */
}

/* 3) Right column: allow the *inner* glass card to stretch */
.hero__orbWrap{
  align-self: stretch;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* The glass card becomes the thing that fills the column height */
.hero__orbWrap .orbCard{
  flex: 1 1 auto;
  min-height: 100%;
  /* keep your internal layout untouched */
  display: block !important;
}

/* Optional: keep fineprint below without changing card height */
.hero__fineprint{
  margin-top: 10px;
}

/* On mobile (stacked), don't force heights */
@media (max-width: 980px){
  .hero__orbWrap{ height: auto; }
  .hero__orbWrap .orbCard{ min-height: 0; }
}

/* Keep the fineprint acting like a baseline under the right card */
.hero__orbWrap{
  display:flex;
  flex-direction:column;
}

.hero__fineprint{
  margin-top:10px;      /* consistent spacing */
  text-align:right;     /* matches your current look */
  opacity:.85;
}

@media (min-width: 980px){
  .hero__fineprint{ white-space:nowrap; }
}

/* ===== AURA BUTTON GLOW OVERRIDES (paste at end) ===== */
:root{
  --glowA: rgba(124, 92, 255, .42);  /* purple */
  --glowB: rgba(6, 182, 212, .28);   /* cyan */
  --glowSoft: rgba(255,255,255,.10);
}

/* Make primary CTAs feel alive */
.btn--primary{
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10) inset,
    0 10px 32px rgba(0,0,0,.35);
}

/* Vibrant hover (no black halo) */
.btn--primary:hover{
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 14px 36px rgba(0,0,0,.35),
    0 0 26px rgba(124,92,255,.28),
    0 0 22px rgba(6,182,212,.22);
  filter: brightness(1.02);
}

.btn{
  transition:
    transform .06s ease,
    background .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    filter .2s ease;
}

.btn:hover{
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 10px 30px rgba(0,0,0,.35),
    0 0 22px rgba(124,92,255,.18),
    0 0 18px rgba(6,182,212,.12);
}

/* Strong keyboard focus */
.btn--primary:focus{
  outline: none;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.16) inset,
    0 0 0 4px rgba(6,182,212,.22),
    0 14px 44px var(--glowA),
    0 10px 34px var(--glowB);
}

/* Optional: subtle glow on “ghost” CTAs too */
.btn--ghost:hover{
  background: rgba(255,255,255,.05);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 10px 26px rgba(0,0,0,.32),
    0 0 18px rgba(124,92,255,.14);
}

/* HERO NOTE: make it span across the 3 stat columns */
.hero__stats{
  align-items:stretch;
}

.hero__stats .hero__note{
  grid-column: 1 / -1;      /* <-- key: full row width */
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  color: rgba(231,234,240,.70);
  font-size: 12px;          /* smaller to “fit inside card” */
  line-height: 1.55;
}

/* Vibrant aura glow on hover/focus */
.btn--primary:hover{
  box-shadow:
    0 0 0 1px rgba(255,255,255,.14) inset,
    0 0 28px rgba(124,92,255,.35),
    0 0 22px rgba(6,182,212,.22);
}

.btn--ghost:hover{
  box-shadow:
    0 0 0 1px rgba(255,255,255,.14) inset,
    0 0 22px rgba(124,92,255,.22),
    0 0 16px rgba(6,182,212,.14);
}

/* Also make keyboard focus feel premium */
.btn:focus{
  outline: 2px solid rgba(6,182,212,.40);
  outline-offset: 2px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10) inset,
    0 0 26px rgba(6,182,212,.18);
}

/* NAV Try button: keep gradient + add aura glow on hover */
.nav__cta .btn--primary:hover,
#navTry:hover{
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(6,182,212,.72)) !important;
  border-color: rgba(255,255,255,.24);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12) inset,
    0 0 28px rgba(124,92,255,.42),
    0 0 22px rgba(6,182,212,.28);
  opacity: 1;
}

/* Optional: same glow when keyboard focusing */
.nav__cta .btn--primary:focus,
#navTry:focus{
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(6,182,212,.72)) !important;
  box-shadow:
    0 0 0 2px rgba(6,182,212,.35),
    0 0 26px rgba(124,92,255,.30),
    0 0 20px rgba(6,182,212,.18);
}

/* Mobile nav toggle behavior */
.nav__mobile{
  display:none;
}

.nav__mobile.is-open{
  display:block;
}

/* Optional: animate a bit */
.nav__mobile{
  overflow:hidden;
}
.nav__mobile.is-open{
  animation: navDrop .14s ease-out both;
}
@keyframes navDrop{
  from{opacity:0; transform:translateY(-6px)}
  to{opacity:1; transform:translateY(0)}
}
/* ===== MOBILE: NO BURGER / SCROLL-ONLY NAV ===== */
/* We intentionally hide jump-links on mobile to encourage scroll. */
@media (max-width: 980px){
  .nav__links{ display:none !important; }
}

/* Remove burger + mobile menu entirely (prevents "dead" icon) */
.nav__burger,
#burger,
.nav__mobile,
#mobileNav{
  display:none !important;
}

/* Subtle cue to guide scrolling (not a link) */
.hero__scrollCue{
  max-width: var(--max);
  margin: 10px auto 0 auto;
  padding: 0 18px;
  text-align: center;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(231,234,240,.58);
  user-select: none;
}

.hero__scrollCue::after{
  content:"";
  display:block;
  width: 36px;
  height: 1px;
  margin: 10px auto 0 auto;
  background: rgba(255,255,255,.10);
}

@media (prefers-reduced-motion: no-preference){
  .hero__scrollCue{
    animation: scrollCueFloat 2.6s ease-in-out infinite;
  }
  @keyframes scrollCueFloat{
    0%,100%{ transform: translateY(0); opacity:.72; }
    50%{ transform: translateY(4px); opacity:1; }
  }
}

/* Hide the scroll hint on desktop (only show on mobile) */
.scrollHint{
  display: none;
}

@media (max-width: 980px){
  .scrollHint{
    display: inline-flex;       /* or block */
  }
}

.scrollHint{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(231,234,240,.55);
  opacity: .9;
  user-select: none;
  pointer-events: none;
}

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

.skip-link{
  position:absolute;
  left:12px;
  top:12px;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(0,0,0,.75);
  border:1px solid rgba(255,255,255,.18);
  color:var(--text);
  transform:translateY(-140%);
  transition:transform .15s ease;
  z-index:1000;
}
.skip-link:focus{
  transform:translateY(0);
  outline:2px solid rgba(6,182,212,.45);
  outline-offset:2px;
}

/* Improve readability for longer text blocks */
.prose{
  text-align:justify;
  text-justify:inter-word;
}


/* Noscript notice */
.noscript{max-width:var(--max);margin:0 auto;padding:12px 18px;color:var(--text-muted);font-size:12px}

/* Keyboard focus */
:focus-visible{outline:2px solid rgba(6,182,212,.55);outline-offset:2px}

/* ===== THEME SWITCHER ===== */
:root[data-theme="light"] {
  --bg0: #f8fafc;
  --bg1: #e2e8f0;
  --glass: rgba(0, 0, 0, 0.06);
  --glass2: rgba(0, 0, 0, 0.08);
  --border: rgba(0, 0, 0, 0.12);
  --text: #1e293b;
  --muted: rgba(30, 41, 59, 0.68);
  --accent: #7c3aed;
  --accent2: #0891b2;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
}

:root[data-theme="light"] body {
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(124, 58, 237, 0.15), transparent 55%),
    radial-gradient(900px 540px at 85% 20%, rgba(8, 145, 178, 0.12), transparent 55%),
    radial-gradient(900px 540px at 50% 85%, rgba(124, 58, 237, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 65%, #cbd5e1);
}

.theme-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 64px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
}

.theme-switch:hover {
  background: var(--glass2);
  border-color: var(--accent2);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.theme-switch__slider {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: translateX(4px);
}

.theme-switch__icon {
  font-size: 14px;
  line-height: 1;
}

[data-theme="light"] .theme-switch__slider {
  transform: translateX(34px);
  background: linear-gradient(135deg, #f97316, #f59e0b);
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
}

/* ===== THEME OVERRIDES FOR LIGHT MODE ===== */
[data-theme="light"] .glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .card__tag,
[data-theme="light"] .chip,
[data-theme="light"] .pill {
  border-color: var(--border);
}

[data-theme="light"] .stat,
[data-theme="light"] .module {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .nav {
  background: rgba(248, 250, 252, 0.8);
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .dot {
  background: rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .dot--ok {
  background: rgba(8, 145, 178, 0.85);
}

[data-theme="light"] .input,
[data-theme="light"] select {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .orb::before {
  background: conic-gradient(from 90deg, rgba(8, 145, 178, .85), rgba(124, 58, 237, .9), rgba(0, 0, 0, .25), rgba(8, 145, 178, .85));
}

[data-theme="light"] .orb__inner {
  background: radial-gradient(circle at 50% 55%, rgba(0, 0, 0, .18), transparent 60%);
}

[data-theme="light"] footer {
  background: rgba(248, 250, 252, .9);
}
