/* ═══════════════════════════════════════════════
   UNITYX.AI — Design System
   Mobile-first · Glass morphism · Spatial depth
═══════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --bg:          #050508;
  --bg-2:        #0a0a12;
  --glass-sm:    rgba(255,255,255,0.03);
  --glass:       rgba(255,255,255,0.05);
  --glass-lg:    rgba(255,255,255,0.08);
  --border-sm:   rgba(255,255,255,0.04);
  --border:      rgba(255,255,255,0.08);
  --border-lg:   rgba(255,255,255,0.14);
  --mint:        #6EE7B7;
  --indigo:      #818CF8;
  --amber:       #F9A826;
  --glow-mint:   rgba(110,231,183,0.18);
  --glow-indigo: rgba(129,140,248,0.18);
  --text-1:      #F0F0F5;
  --text-2:      #8888A0;
  --text-3:      #44445A;
  --r:           14px;
  --r-lg:        20px;
  --r-xl:        28px;
  --r-pill:      999px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── A11y ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  #bg-canvas { display: none; }
  body { background: linear-gradient(135deg, #050508 0%, #0d0d1a 100%); }
}

/* ── Canvas ── */
#bg-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.canvas-overlay {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  /* Radial vignette: globe glows through the center, edges dark */
  background:
    radial-gradient(
      ellipse 90% 70% at 50% 38%,
      rgba(5,5,8,0.00) 0%,
      rgba(5,5,8,0.18) 38%,
      rgba(5,5,8,0.60) 65%,
      rgba(5,5,8,0.96) 88%,
      rgba(5,5,8,1.00) 100%
    );
}
body > *:not(#bg-canvas):not(.canvas-overlay) { position: relative; z-index: 2; }

/* ── Container ── */
.container { width: 100%; max-width: 1100px; margin-inline: auto; padding-inline: 1.25rem; }

/* ── Glass card ── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.glass-card:hover {
  border-color: var(--border-lg);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(110,231,183,.06);
}

/* ── Type utilities ── */
.label {
  font-family: monospace;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mint);
}
.section-title {
  font-size: clamp(1.75rem, 4.5vw, 2.8rem);
  font-weight: 700; letter-spacing: -.04em; line-height: 1.15;
}
.accent-mint   { color: var(--mint); }
.accent-indigo { color: var(--indigo); }

/* ── Reveal ── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .18s; }
.reveal--delay-3 { transition-delay: .3s;  }
.reveal--delay-4 { transition-delay: .42s; }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.nav.scrolled {
  background: rgba(5,5,8,.78);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-sm);
}
.nav__inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 62px;
  max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem;
}
.nav__logo {
  text-align: center; text-decoration: none;
  font-size: 1.15rem; font-weight: 800; letter-spacing: -.03em;
  white-space: nowrap; line-height: 1;
  transition: opacity .2s;
}
.nav__logo:hover { opacity: .75; }
.logo-unity { color: var(--text-1); font-weight: 300; }
.logo-x     { color: var(--mint); font-weight: 900; font-size: 1.3em; }
.logo-ai    { color: var(--text-3); font-size: .75em; letter-spacing: .04em; }

.nav__side {
  font-size: .875rem; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  transition: color .2s;
  letter-spacing: .01em;
}
.nav__side:hover { color: var(--text-1); }
.nav__side--right { text-align: right; }
.nav__cta { color: var(--mint); font-weight: 600; }
.nav__cta:hover { color: #fff; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  text-align: center;
  padding: 100px 1.25rem 72px;
}
.hero__content {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem; max-width: 760px;
}

/* Eyebrow pill */
.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .3rem .9rem;
  border-radius: var(--r-pill);
  font-family: monospace;
  font-size: .7rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase;
}
.pill--live {
  background: rgba(110,231,183,.1);
  border: 1px solid rgba(110,231,183,.25);
  color: var(--mint);
}
.pill__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint); box-shadow: 0 0 8px var(--mint);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

/* Headline */
.hero__headline {
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  font-weight: 900; letter-spacing: -.06em; line-height: 1.02;
}
.hero__headline em { font-style: normal; color: var(--mint); }
.hero__headline-dot { font-style: normal; }

.hero__sub {
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  font-weight: 300; color: var(--text-2); line-height: 1.75;
  max-width: 520px;
}
.br-desk { display: none; }
@media(min-width:640px){ .br-desk { display: block; } }

/* Counter */
.hero__counter {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  justify-content: center;
}
.hero__counter-text {
  font-size: .82rem; color: var(--text-2);
}
.counter-num { color: var(--text-1); font-weight: 700; }

/* Avatar stack */
.avatar-stack { display: flex; }
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--bg);
  background: hsl(var(--h), 38%, 34%);
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--text-3);
  animation: drift 2.8s ease-in-out infinite;
}
@keyframes drift { 0%,100%{opacity:.4;transform:translateX(-50%) translateY(0)} 50%{opacity:.75;transform:translateX(-50%) translateY(6px)} }

/* ═══════════════════════════════════════════════
   NOTIFY FORM
═══════════════════════════════════════════════ */
.notify-form { width: 100%; max-width: 500px; }

.notify-form__row {
  display: flex; flex-direction: column;
  gap: .625rem; width: 100%;
}

.notify-form__input-wrap {
  position: relative; flex: 1;
}
.notify-form__icon {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--text-3); pointer-events: none;
  transition: color .2s;
}

.notify-form__input {
  width: 100%; padding: .9rem 1rem .9rem 2.75rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  color: var(--text-1);
  font-family: inherit; font-size: .95rem; font-weight: 400;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  -webkit-appearance: none;
}
.notify-form__input::placeholder { color: var(--text-3); }
.notify-form__input:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px var(--glow-mint);
}
.notify-form__input:focus + .notify-form__icon,
.notify-form__input-wrap:focus-within .notify-form__icon { color: var(--mint); }
.notify-form__input.error {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,.15);
  animation: shake .4s var(--ease);
}
@keyframes shake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-6px)} 40%{transform:translateX(6px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)} }

.notify-form__error {
  font-size: .78rem; color: #f87171;
  min-height: 1em; text-align: center; padding-top: .3rem;
}

/* Success state */
.notify-form__success {
  display: none; align-items: center; justify-content: center;
  gap: .6rem; padding: .9rem 1.5rem;
  background: rgba(110,231,183,.07);
  border: 1px solid rgba(110,231,183,.2);
  border-radius: var(--r-pill);
  color: var(--mint); font-size: .9rem; font-weight: 600;
  animation: pop-in .45s var(--ease);
}
.notify-form.success .notify-form__row  { display: none; }
.notify-form.success .notify-form__success { display: flex; }
@keyframes pop-in { 0%{opacity:0;transform:scale(.92)} 100%{opacity:1;transform:scale(1)} }

/* ── Button ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .9rem 1.6rem;
  border: none; border-radius: var(--r-pill);
  font-family: inherit; font-size: .9rem; font-weight: 700;
  letter-spacing: .03em; cursor: pointer;
  text-decoration: none; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap; flex-shrink: 0;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--notify {
  background: linear-gradient(135deg, var(--mint) 0%, #34d399 100%);
  color: #050508;
  box-shadow: 0 4px 24px var(--glow-mint);
}
.btn--notify:hover { box-shadow: 0 8px 32px rgba(110,231,183,.4); }

/* Shimmer */
.btn::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg); transition: left 0s;
}
.btn:hover::after { left: 160%; transition: left .5s ease; }

/* Loading */
.btn__loader {
  display: none; width: 14px; height: 14px;
  border: 2px solid rgba(5,5,8,.3); border-top-color: #050508;
  border-radius: 50%; animation: spin .7s linear infinite;
}
.btn.loading .btn__text   { opacity: 0; }
.btn.loading .btn__loader { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════ */
.section { padding: 5rem 0; }
.section .label { display: block; margin-bottom: .75rem; }
.section .section-title { margin-bottom: 2.5rem; }

/* ── What ── */
.what__layout {
  display: flex; flex-direction: column; gap: 3rem;
}
.what__copy { display: flex; flex-direction: column; gap: 1rem; }
.what__body {
  font-size: .95rem; color: var(--text-2); line-height: 1.85;
  font-weight: 300; max-width: 580px;
}
.what__body em { font-style: normal; color: var(--text-1); }

.what__stats {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.stat-card {
  padding: 1.5rem 1.75rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.stat-card__num {
  font-size: 2.5rem; font-weight: 800; letter-spacing: -.05em; line-height: 1;
}
.stat-card__label {
  font-size: .82rem; color: var(--text-2); line-height: 1.55; font-weight: 300;
}

/* ── How ── */
.steps {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.step {
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.step__num { color: var(--text-3); }
.step__glyph { font-size: 1.6rem; line-height: 1; margin-bottom: .25rem; }
.step__title { font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em; }
.step__desc  { font-size: .875rem; color: var(--text-2); line-height: 1.65; font-weight: 300; }

/* ── Features ── */
.features__grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.feature {
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.feature__icon { margin-bottom: .5rem; }
.feature__tag  { margin-bottom: .1rem; }
.feature__title { font-size: 1rem; font-weight: 700; letter-spacing: -.02em; }
.feature__desc  { font-size: .875rem; color: var(--text-2); line-height: 1.65; font-weight: 300; }

/* ── CTA block ── */
.cta-block {
  padding: 3.5rem 1.75rem;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(110,231,183,.04) 0%, rgba(129,140,248,.04) 100%);
  border-color: rgba(110,231,183,.1);
}
.cta-block__orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.cta-block__orb--mint   { width: 280px; height: 280px; background: rgba(110,231,183,.06); top: -80px; left: -60px; }
.cta-block__orb--indigo { width: 240px; height: 240px; background: rgba(129,140,248,.06); bottom: -60px; right: -40px; }
.cta-block > *:not(.cta-block__orb) { position: relative; z-index: 1; }

.cta-block__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -.05em; line-height: 1.1;
}
.cta-block__sub {
  font-size: .95rem; color: var(--text-2); font-weight: 300;
  max-width: 380px; line-height: 1.7;
}
.cta-block__note {
  font-size: .75rem; color: var(--text-3);
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border-sm);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem; text-align: center;
}
.footer__logo { font-size: 1rem; }
.footer__links {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
}
.footer__links a {
  color: var(--text-3); text-decoration: none;
  font-size: .85rem; transition: color .2s;
}
.footer__links a:hover { color: var(--text-2); }
.footer__legal {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}
.footer__legal span,
.footer__legal a {
  color: var(--text-3); font-size: .75rem; text-decoration: none;
}
.footer__legal a:hover { color: var(--text-2); }

/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */
.about-hero {
  min-height: 60vh; display: flex;
  align-items: flex-end; padding: 100px 1.25rem 4rem;
}
.about-hero__inner { max-width: 700px; }
.about-hero .label { margin-bottom: 1rem; }
.about-hero__headline {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900; letter-spacing: -.05em; line-height: 1.08; margin-bottom: 1.5rem;
}
.about-hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-2); line-height: 1.8; font-weight: 300; max-width: 560px;
}
.about-body { padding: 4rem 0 6rem; }
.about-body .container { display: flex; flex-direction: column; gap: 5rem; }
.about-block { display: flex; flex-direction: column; gap: 1.25rem; }
.about-block__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700; letter-spacing: -.03em; line-height: 1.2;
}
.about-block p {
  font-size: .95rem; color: var(--text-2); line-height: 1.85;
  font-weight: 300; max-width: 640px;
}
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.value-card { padding: 1.5rem; }
.value-card__icon { font-size: 1.5rem; margin-bottom: .75rem; }
.value-card__title { font-size: 1rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: .4rem; }
.value-card__desc  { font-size: .85rem; color: var(--text-2); line-height: 1.65; font-weight: 300; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.team-card { padding: 1.5rem 1.75rem; display: flex; gap: 1rem; align-items: flex-start; }
.team-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  background: rgba(110,231,183,.08); border: 1px solid rgba(110,231,183,.15);
}
.team-info__name { font-size: 1rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: .2rem; }
.team-info__role {
  font-size: .7rem; color: var(--mint);
  font-family: monospace;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: .5rem;
}
.team-info__bio { font-size: .85rem; color: var(--text-2); line-height: 1.6; font-weight: 300; }

/* ═══════════════════════════════════════════════
   TABLET 640px+
═══════════════════════════════════════════════ */
@media (min-width: 640px) {
  .notify-form__row { flex-direction: row; }

  .what__stats    { grid-template-columns: repeat(3, 1fr); }
  .steps          { grid-template-columns: repeat(3, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid    { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }

  .footer__inner  { flex-direction: row; justify-content: space-between; text-align: left; }
  .cta-block      { padding: 4.5rem 3rem; }
}

/* ═══════════════════════════════════════════════
   DESKTOP 1024px+
═══════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .what__layout   { flex-direction: row; align-items: flex-start; gap: 5rem; }
  .what__copy     { flex: 1; }
  .what__stats    { flex: 0 0 300px; grid-template-columns: 1fr; }

  .features__grid { grid-template-columns: repeat(4, 1fr); }
  .values-grid    { grid-template-columns: repeat(4, 1fr); }

  .cta-block { padding: 5.5rem 4rem; }

  .about-body .container { gap: 7rem; }
  .about-block { flex-direction: row; align-items: flex-start; gap: 4rem; }
  .about-block__header { flex: 0 0 220px; }
  .about-block__body   { flex: 1; }
  .about-block p       { max-width: 100%; }
}

/* ═══════════════════════════════════════════════
   SHARED LOGO STRIP
═══════════════════════════════════════════════ */
.logo-strip {
  display: flex; align-items: center;
  gap: 8px; text-decoration: none; flex-shrink: 0;
}
.logo-ring {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--mint);
  display: flex; align-items: center; justify-content: center;
}
.logo-ring span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
}
.logo-wordmark {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.3px; color: var(--text-1);
}
.logo-wordmark em { color: var(--mint); font-style: normal; }

/* ═══════════════════════════════════════════════
   SITE HEADER / NAV
═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 62px;
  display: flex; align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
  background: rgba(15,15,16,0.88);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-header .logo-strip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Inline nav — hidden; navigation is always via the burger dropdown */
.site-nav { display: none; }

/* Burger button */
.burger {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 11px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  cursor: pointer;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: background 0.2s, border-color 0.2s;
}
.burger:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.18); }
.burger__line {
  width: 18px; height: 1.5px;
  background: var(--text-1); border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s var(--ease), opacity 0.25s var(--ease);
}
.burger.open .burger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open .burger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open .burger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Compact dropdown panel */
.nav-overlay {
  position: fixed;
  top: 70px; right: 20px;
  z-index: 150;
  width: 180px;
  background: rgba(18,18,20,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 8px;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
}
.nav-overlay.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }

/* Nav links */
.nav-overlay__links {
  display: flex; flex-direction: column; gap: 2px;
}
.nav-overlay__link {
  font-size: 0.875rem; font-weight: 600;
  color: var(--text-2); text-decoration: none;
  padding: 8px 12px; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-overlay__link:hover   { color: var(--text-1); background: rgba(255,255,255,0.05); }
.nav-overlay__link--active { color: var(--mint); }

/* CTA button inside dropdown */
.nav-overlay__cta {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin-top: 6px; padding: 9px 14px; border-radius: 8px;
  background: linear-gradient(135deg, #C8D4DC 0%, #8A9EAE 100%);
  color: #080B0D; font-size: 0.82rem; font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-overlay__cta:hover { opacity: 0.88; }

/* Footer hidden in compact mode */
.nav-overlay__footer { display: none; }
