/* ================================================================
   SAPPHIRE AUTO LABS — LUXURY DESIGN SYSTEM
   ================================================================ */

:root {
  /* ── Base ── */
  --bg-base:   #05050a;
  --bg-1:      #080914;
  --bg-2:      #0c0e1c;
  --bg-card:   rgba(8, 9, 20, 0.88);

  /* ── Sapphire (primary) ── */
  --sapphire:       #1548d4;
  --sapphire-light: #3a6cf4;
  --sapphire-deep:  #0a1a55;
  --sapphire-glow:  rgba(21, 72, 212, 0.32);

  /* ── Ice / facet accent (brand-true replacement for "gold") ── */
  --ice:        #a0c4ff;
  --ice-bright: #dce8ff;
  --ice-edge:   #7aabff;

  /* Legacy gold-* aliases remap to ice so older references auto-upgrade */
  --gold:       var(--ice);
  --gold-light: var(--ice-bright);
  --gold-soft:  rgba(122, 171, 255, 0.12);
  --gold-glow:  rgba(122, 171, 255, 0.28);

  /* ── Text ── */
  --text:       #ededf5;
  --text-soft:  rgba(210, 213, 232, 0.72);
  --text-muted: rgba(140, 148, 180, 0.55);
  --muted:      rgba(210, 213, 232, 0.72);

  /* ── Borders ── */
  --border:        rgba(80, 95, 170, 0.12);
  --border-gold:   rgba(122, 171, 255, 0.18);
  --border-bright: rgba(255, 255, 255, 0.07);

  /* ── Shadows ── */
  --shadow-sm:  0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-md:  0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-lg:  0 32px 80px rgba(0, 0, 0, 0.72);

  /* ── Radii ── */
  --radius-sm:   0.625rem;
  --radius-md:   1rem;
  --radius-lg:   1.75rem;
  --radius-xl:   2.5rem;
  --radius-pill: 999px;

  /* ── Legacy aliases (keep Razor pages working) ── */
  --accent:      #1548d4;
  --accent-soft: rgba(21, 72, 212, 0.15);
  --silver:      #d0d8f0;
  --cyan:        var(--gold);        /* remap cyan → gold throughout */
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Rajdhani", system-ui, -apple-system, sans-serif;
  letter-spacing: 0.01em;
  /* Deep static luxury gradient — no animated blobs */
  background:
    radial-gradient(ellipse 140% 55% at 65% -5%,  rgba(15, 42, 140, 0.22), transparent 52%),
    radial-gradient(ellipse 80%  110% at -8%  80%, rgba(10, 28, 100, 0.14), transparent 55%),
    radial-gradient(ellipse 60%  60%  at 100% 40%, rgba(8,  20,  80,  0.1),  transparent 50%),
    #05050a;
  overflow-x: hidden;
}

/* Grain texture — tasteful, not distracting */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  mix-blend-mode: overlay;
  z-index: 9997;
}

/* Hex-facet grid — echoes the sapphire gem logo. Very subtle. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 52' width='60' height='52'%3E%3Cpath d='M15 0L45 0L60 26L45 52L15 52L0 26Z' fill='none' stroke='%237aabff' stroke-width='0.7' stroke-opacity='0.09'/%3E%3C/svg%3E");
  background-size: 72px 62px;
  z-index: 9995;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,0,0,0.85) 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,0,0,0.85) 0%, transparent 75%);
}

a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }
img, svg { max-width: 100%; display: block; }

/* ================================================================
   SCROLLBAR
   ================================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: rgba(122, 171, 255, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(122, 171, 255, 0.55); }

/* ================================================================
   SCROLL PROGRESS (1px gold hairline — refined, not flashy)
   ================================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  width: 0%;
  background: linear-gradient(90deg, var(--sapphire), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ================================================================
   CURSOR GLOW (very subtle — luxury)
   ================================================================ */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 72, 212, 0.04) 0%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9996;
  mix-blend-mode: screen;
}

/* ================================================================
   SKIP LINK
   ================================================================ */
.skip-link {
  position: absolute;
  top: -64px; left: 16px;
  z-index: 2000;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  background: var(--sapphire);
  color: #fff;
  font-weight: 700;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(48px) saturate(160%);
  -webkit-backdrop-filter: blur(48px) saturate(160%);
  background: rgba(4, 4, 9, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 1px 0 rgba(122, 171, 255, 0.08);
}

.site-nav { padding: 0.9rem 0; }

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  transition: opacity 0.2s ease;
}
.brand-lockup:hover { opacity: 0.85; }

.brand-mark {
  width: 2.75rem; height: 2.75rem;
  display: inline-grid;
  place-items: center;
  filter: drop-shadow(0 0 10px rgba(122, 171, 255, 0.5));
  animation: gemFloat 6s ease-in-out infinite;
}
.brand-mark svg { width: 100%; height: 100%; }

.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
}

.brand-location {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(210, 213, 232, 0.65);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  position: relative;
  padding: 0.5rem 0.8rem;
  transition: color 0.2s ease;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus { color: #fff; }

/* Hover underline — gold, centered expand */
.navbar-dark .navbar-nav .nav-link:not(.nav-cta):not(.nav-cart)::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left 0.3s ease, right 0.3s ease;
  border-radius: 1px;
}
.navbar-dark .navbar-nav .nav-link:not(.nav-cta):not(.nav-cart):hover::after {
  left: 12%; right: 12%;
}

.nav-cta {
  padding: 0.55rem 1.2rem !important;
  border: 1px solid rgba(122, 171, 255, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(122, 171, 255, 0.06);
  color: var(--gold-light) !important;
  transition: all 0.25s ease !important;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}
.nav-cta:hover {
  background: rgba(122, 171, 255, 0.14) !important;
  border-color: rgba(122, 171, 255, 0.65) !important;
  color: #fff !important;
  box-shadow: 0 0 18px rgba(122, 171, 255, 0.15);
}

.nav-cart {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.65rem !important;
}
.cart-icon { font-size: 1.05rem; line-height: 1; }
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.25rem;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: #080912;
  font-size: 0.65rem;
  font-weight: 800;
  animation: badgePop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes badgePop { 0% { transform: scale(0); } 100% { transform: scale(1); } }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-family: "Rajdhani", sans-serif;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              background 0.3s ease,
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-premium:hover { transform: translateY(-2px); }
.btn-premium:active { transform: translateY(0px); }

/* Primary — deep sapphire */
.btn-primary-premium {
  background: var(--sapphire);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 28px rgba(21, 72, 212, 0.4);
}
.btn-primary-premium::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
}
.btn-primary-premium:hover::before {
  animation: shimmer 0.55s ease forwards;
}
.btn-primary-premium:hover {
  color: #fff;
  background: var(--sapphire-light);
  box-shadow: 0 12px 40px rgba(21, 72, 212, 0.55), 0 0 0 1px rgba(255,255,255,0.08);
}
@keyframes shimmer { 100% { left: 180%; } }

/* Secondary — ghost gold border */
.btn-secondary-premium {
  color: var(--text-soft);
  border-color: rgba(122, 171, 255, 0.28);
  background: rgba(122, 171, 255, 0.04);
}
.btn-secondary-premium:hover {
  background: rgba(122, 171, 255, 0.1);
  border-color: rgba(122, 171, 255, 0.55);
  color: #fff;
  box-shadow: 0 6px 28px rgba(122, 171, 255, 0.12);
}

/* ================================================================
   HERO
   ================================================================ */
.hero-section {
  padding: clamp(5.5rem, 11vw, 10rem) 0 clamp(3.5rem, 6vw, 6rem);
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.hero-copy { max-width: 38rem; }

/* Kicker / eyebrow — gold, restrained */
.kicker,
.section-kicker {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.015em;
  color: #fff;
  /* Subtle luminance gradient — not garish */
  background: linear-gradient(160deg, #ffffff 0%, #dce8ff 55%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* "Molecular Strength" — italic gold */
.hero-title .brand-word {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #fff 80%, var(--gold-light) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShift 7s linear infinite;
  filter: drop-shadow(0 0 24px rgba(122, 171, 255, 0.28));
}
@keyframes goldShift {
  0%   { background-position: 0% center; }
  100% { background-position: 250% center; }
}

.hero-subtitle {
  margin: 1.75rem 0 0;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.85;
  max-width: 34rem;
  letter-spacing: 0.01em;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Credential strip — replaces "hero stats row" — thin, elegant */
.credential-strip {
  display: flex;
  gap: 0;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.credential-item {
  flex: 1;
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  margin-right: 2rem;
}
.credential-item:last-child {
  border-right: none;
  margin-right: 0;
}
.credential-value {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.credential-label {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}

/* ── Product Showcase ── */
.hero-showcase { position: relative; }

.product-lab {
  position: relative;
  z-index: 1;
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius-xl);
  /* Very subtle card — lets the product breathe */
  background: linear-gradient(160deg, rgba(10, 13, 30, 0.5) 0%, rgba(4, 5, 14, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

/* Single refined top accent line — gold */
.product-lab::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 171, 255, 0.5), transparent);
  border-radius: 1px;
}

/* Slow shimmer sweep */
.product-lab::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.03), transparent);
  transform: skewX(-20deg);
  animation: sweep 12s ease-in-out infinite;
}

.product-stage {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.crystal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(122, 171, 255, 0.07);
  border: 1px solid rgba(122, 171, 255, 0.2);
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  font-weight: 600;
}
.crystal-badge::before {
  content: "◆";
  font-size: 0.45rem;
  color: var(--gold);
}

.bottle-visual {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

/* Sapphire "pedestal" glow — soft, behind the bottle */
.bottle-visual .insane-glow {
  position: absolute;
  bottom: -4%;
  left: 12%; right: 12%;
  height: 36%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(58, 108, 244, 0.55) 0%, rgba(122, 171, 255, 0.18) 40%, transparent 72%);
  filter: blur(32px);
  animation: pedestalPulse 5s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes pedestalPulse {
  0%   { opacity: 0.55; transform: scaleX(0.94); }
  100% { opacity: 0.85; transform: scaleX(1.04); filter: blur(38px); }
}

.bottle-animated .bottle-image {
  animation: floatBottle 7s ease-in-out infinite;
}
.bottle-visual .bottle-image {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  filter:
    drop-shadow(0 24px 48px rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 18px rgba(58, 108, 244, 0.3));
}
@keyframes floatBottle {
  0%   { transform: translateY(0)     rotateX(1deg)  rotateY(-4deg); }
  50%  { transform: translateY(-16px) rotateX(-1deg) rotateY(4deg);  filter: drop-shadow(0 40px 64px rgba(0,0,0,.7)) drop-shadow(0 0 30px rgba(201,168,112,.35)); }
  100% { transform: translateY(0)     rotateX(1deg)  rotateY(-4deg); }
}

/* Subtle rings — retired in favor of hex-chips + conic frame */
.bottle-rings { display: none; }
.bottle-rings-legacy {
  position: absolute;
  inset: -12%;
  z-index: 1;
  pointer-events: none;
}
.bottle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(122, 171, 255, 0.06);
}
.bottle-ring:nth-child(1) { inset: 0;   animation: ringBreath 5s ease-in-out infinite; }
.bottle-ring:nth-child(2) { inset: 12%; animation: ringBreath 5s ease-in-out 1.6s infinite; }
.bottle-ring:nth-child(3) { inset: 24%; animation: ringBreath 5s ease-in-out 3.2s infinite; }
@keyframes ringBreath {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.8; transform: scale(1.04); }
}

/* ================================================================
   GEM LOGO
   ================================================================ */
.gem-logo {
  filter: drop-shadow(0 0 8px rgba(122, 171, 255, 0.55));
  animation: logoGlow 5s ease-in-out infinite;
}
@keyframes logoGlow {
  0%,100% { filter: drop-shadow(0 0 5px rgba(122, 171, 255, 0.4)); }
  50%      { filter: drop-shadow(0 0 14px rgba(122, 171, 255, 0.75)); }
}
@keyframes gemFloat {
  0%,100% { transform: translateY(0)    rotate(-1.5deg); }
  50%      { transform: translateY(-7px) rotate(1.5deg); }
}

/* ================================================================
   SECTION SHELL
   ================================================================ */
.section-shell {
  padding: clamp(5rem, 9vw, 9rem) 0;
  position: relative;
}

.section-head { margin-bottom: 3.5rem; }

.section-title {
  margin: 0.75rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.96;
  color: #fff;
  letter-spacing: -0.015em;
}

.section-lead {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 40rem;
}

/* Hex-facet divider below kicker — matches the sapphire gem logo */
.section-divider {
  display: block;
  width: 14px;
  height: 14px;
  background: linear-gradient(160deg, var(--ice-bright) 0%, var(--sapphire-light) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin: 1rem 0 1.35rem;
  box-shadow: 0 0 14px rgba(122, 171, 255, 0.55);
  opacity: 0.9;
}
.section-head.mx-auto .section-divider,
.section-head.text-center .section-divider { margin-left: auto; margin-right: auto; }

/* ================================================================
   FEATURES — EDITORIAL GRID
   ================================================================ */
.features-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-col {
  padding: 2.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.35s ease;
  overflow: hidden;
}
.feature-col:nth-child(2n) { border-right: none; }
.feature-col:nth-child(3),
.feature-col:nth-child(4) { border-bottom: none; }
.feature-col:hover { background: rgba(21, 72, 212, 0.04); }

/* Ghost ordinal — large background number */
.feature-ord {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(122, 171, 255, 0.18);
  margin: 0 0 1.75rem;
  display: block;
  transition: -webkit-text-stroke-color 0.35s ease;
  user-select: none;
}
.feature-col:hover .feature-ord {
  -webkit-text-stroke-color: rgba(122, 171, 255, 0.45);
}

.feature-name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.85rem;
}

.feature-desc {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

/* Keep .feature-grid / .feature-card for any other pages referencing them */
.feature-grid { display: grid; gap: 1.25rem; }
.feature-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}
.feature-icon {
  width: 3rem; height: 3rem;
  margin-bottom: 1.25rem;
  border-radius: 0.875rem;
  display: grid;
  place-items: center;
  background: rgba(21, 72, 212, 0.2);
  border: 1px solid rgba(21, 72, 212, 0.3);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.8rem;
}
.feature-card h3 { margin: 0 0 0.5rem; font-size: 1.25rem; color: #fff; }
.feature-card p  { color: var(--text-soft); line-height: 1.75; margin: 0; }

/* ================================================================
   STEP CARDS
   ================================================================ */
.steps-grid { display: grid; gap: 1.5rem; }

.step-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
/* Gold top accent on hover */
.step-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.step-card:hover {
  transform: translateY(-7px);
  border-color: rgba(122, 171, 255, 0.2);
  box-shadow: var(--shadow-md);
}
.step-card:hover::before { opacity: 1; }

.step-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(21, 72, 212, 0.4);
  margin-bottom: 1rem;
  display: block;
}
.step-card h3 { margin: 0 0 0.6rem; font-size: 1.4rem; color: #fff; letter-spacing: 0.02em; }
.step-card p  { color: var(--text-soft); line-height: 1.8; margin: 0; }

/* ================================================================
   TESTIMONIALS — EDITORIAL
   ================================================================ */
.testimonial-grid { display: grid; gap: 1.5rem; }

.testimonial-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 1px solid rgba(122, 171, 255, 0.14);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, border-top-color 0.35s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-top-color: rgba(122, 171, 255, 0.45);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.quote-mark {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 4.5rem;
  line-height: 0.75;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 0.5rem;
  user-select: none;
}

.testimonial-card p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(237, 237, 245, 0.88);
  margin: 0 0 1.75rem;
  letter-spacing: 0.01em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sapphire), rgba(122, 171, 255, 0.7));
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-source {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, rgba(21, 72, 212, 0.18) 0%, rgba(4, 5, 14, 0.96) 55%, rgba(15, 30, 90, 0.12) 100%);
  border: 1px solid rgba(122, 171, 255, 0.14);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 171, 255, 0.4), transparent);
}
.cta-band::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.025), transparent);
  transform: skewX(-20deg);
  animation: sweep 12s ease-in-out infinite;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }

.cta-band h2 {
  margin: 0.5rem 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.01em;
}

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.product-card,
.info-card,
.contact-card,
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.product-card:hover,
.info-card:hover,
.contact-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(122, 171, 255, 0.2);
}

/* Main product card — featured product */
.main-product-card {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 4rem;
}
.main-product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 171, 255, 0.5), transparent);
}

/* Pill tags */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(122, 171, 255, 0.2);
  background: rgba(122, 171, 255, 0.05);
  color: rgba(220, 232, 255, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.pill:hover { background: rgba(122, 171, 255, 0.1); }

.product-meta {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-weight: 600;
}

/* Stat card */
.stat-card {
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.stat-value {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* ================================================================
   SHOP / CART / CHECKOUT
   ================================================================ */
.shop-qty-input {
  width: 4.5rem;
  padding: 0.65rem 0.75rem;
  background: rgba(4, 5, 14, 0.9);
  color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.shop-qty-input:focus {
  outline: none;
  border-color: rgba(122, 171, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(122, 171, 255, 0.08);
}

.nav-cart {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.65rem !important;
}

.cart-notice {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(21, 72, 212, 0.1);
  border: 1px solid rgba(21, 72, 212, 0.28);
  color: #b0c8f8;
  font-size: 0.95rem;
}
.cart-row { border-radius: var(--radius-md); padding: 1.5rem 2rem; }
.cart-thumb {
  width: 5rem; height: 5rem;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(4, 5, 14, 0.7);
  padding: 0.4rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.cart-item-name  { font-size: 1.05rem; color: #fff; font-weight: 600; }
.cart-item-price { font-size: 0.88rem; color: var(--text-muted); }
.cart-line-total {
  font-size: 1.1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #fff;
  font-weight: 700;
  min-width: 5rem;
  text-align: right;
}
.cart-remove-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  border-radius: 50%;
  width: 2.1rem; height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.cart-remove-btn:hover {
  background: rgba(220, 50, 50, 0.18);
  border-color: rgba(220, 50, 50, 0.4);
  color: #ff8080;
}

/* Checkout form */
.checkout-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.checkout-input {
  display: block;
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(4, 5, 14, 0.9);
  color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.checkout-input::placeholder { color: rgba(180, 185, 210, 0.3); }
.checkout-input:focus {
  outline: none;
  border-color: rgba(122, 171, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(122, 171, 255, 0.07);
}
.checkout-input.input-validation-error {
  border-color: rgba(255, 80, 80, 0.55);
}
.checkout-field-error { display: block; margin-top: 0.3rem; font-size: 0.8rem; color: #ff8080; }
.checkout-validation-summary {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(200, 40, 40, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.28);
  color: #ff9090;
  font-size: 0.9rem;
}
.checkout-validation-summary ul { margin: 0; padding-left: 1.25rem; }
.checkout-payment-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  border: 1px dashed rgba(122, 171, 255, 0.16);
  border-radius: var(--radius-md);
  gap: 0.5rem;
}
.checkout-payment-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  margin-top: 5rem;
  padding: 5rem 0 3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(2, 3, 9, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 171, 255, 0.3), rgba(21, 72, 212, 0.25), transparent);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.footer-copy {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.92rem;
  max-width: 28rem;
  margin: 0.5rem 0 0;
}
.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-meta {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ================================================================
   REVEAL
   ================================================================ */
.reveal { opacity: 0; transform: translateY(28px); }

/* ================================================================
   SHARED ANIMATIONS
   ================================================================ */
@keyframes sweep {
  0%, 40%  { transform: translateX(-100%) skewX(-20deg); opacity: 0; }
  50%       { opacity: 0.6; }
  100%      { transform: translateX(200%) skewX(-20deg); opacity: 0; }
}
@keyframes pulseBg {
  0%   { transform: scale(1);    opacity: 0.6; }
  100% { transform: scale(1.06); opacity: 1; }
}

/* Legacy */
.muted { color: var(--text-soft); }
.hero-stats { margin-top: 2rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.hero-stats-row { display: none; } /* Hidden — replaced by .credential-strip */

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (min-width: 768px) {
  .hero-grid, .info-grid, .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid, .testimonial-grid        { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr; align-items: start; }
  .features-bar { grid-template-columns: repeat(4, 1fr); }
  .features-bar .feature-col { border-bottom: none; }
  .features-bar .feature-col:nth-child(2n)   { border-right: 1px solid var(--border); }
  .features-bar .feature-col:nth-child(4n),
  .features-bar .feature-col:last-child       { border-right: none; }
}
@media (min-width: 1100px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 5rem; }
  .steps-grid, .testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 991.98px) {
  .navbar-collapse { padding-top: 1rem; }
  .navbar-dark .navbar-nav .nav-link { padding: 0.75rem 0; }
  .cta-band { padding: 2.5rem 2rem; }
  .product-lab { padding: 2.5rem 2rem; }
  .credential-strip { gap: 0; }
  .credential-item { padding-right: 1.25rem; margin-right: 1.25rem; }
}
@media (max-width: 767.98px) {
  .hero-section { padding-top: 3.5rem; }
  .footer-meta { flex-direction: column; }
  .section-shell { padding: 3rem 0; }
  .credential-strip { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .credential-item { border-right: none; margin-right: 0; flex: 0 0 auto; }
  .features-bar .feature-col { border-right: none; }
  .features-bar .feature-col:nth-child(odd) { border-right: 1px solid var(--border); }

  /* Hero mobile */
  .hero-grid { text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.8rem) !important; }
  .hero-subtitle { font-size: 1rem; }

  /* Bottle image — fill on mobile */
  .bottle-visual { width: 100%; }
  .bottle-visual .bottle-image { width: 100%; }

  /* Product lab / showcase card — less padding on mobile */
  .product-lab { padding: 1.5rem 1rem !important; }
  .product-stage { padding: 0; }

  /* Shop product card */
  .main-product-card { padding: 1.5rem 1.25rem !important; }
  .main-product-card .row { gap: 1.5rem; }

  /* Steps & testimonials single column */
  .steps-grid, .testimonial-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .step-card, .testimonial-card { padding: 1.5rem; }

  /* CTA band */
  .cta-band { padding: 2rem 1.25rem !important; text-align: center; }
  .cta-band .d-flex { justify-content: center !important; }

  /* Section headings */
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-lead { font-size: 0.95rem; }
  .section-head { padding: 0 0.5rem; }

  /* Features bar — 2 cols on mobile */
  .features-bar { grid-template-columns: repeat(2, 1fr); gap: 0; }
}

/* ================================================================
   AURORA BACKGROUND — drifting sapphire blobs behind hero
   ================================================================ */
.aurora-layer {
  position: absolute;
  inset: -10% -5% 0 -5%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  filter: blur(80px) saturate(140%);
  opacity: 0.9;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform;
}
.aurora-blob.b1 {
  top: -10%; left: -5%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle at 40% 40%, #1548d4 0%, transparent 65%);
  animation: auroraDrift1 22s ease-in-out infinite alternate;
}
.aurora-blob.b2 {
  top: 20%; right: -15%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle at 50% 50%, #3a6cf4 0%, transparent 60%);
  animation: auroraDrift2 28s ease-in-out infinite alternate;
}
.aurora-blob.b3 {
  bottom: -25%; left: 25%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle at 50% 50%, #7aabff 0%, transparent 62%);
  animation: auroraDrift3 26s ease-in-out infinite alternate;
  opacity: 0.5;
}
@keyframes auroraDrift1 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(12%, 8%) scale(1.18); }
}
@keyframes auroraDrift2 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-10%, 14%) scale(1.1); }
}
@keyframes auroraDrift3 {
  0%   { transform: translate(0,0) scale(0.95); }
  100% { transform: translate(10%, -10%) scale(1.2); }
}

/* Hero stacking context so aurora sits behind */
.hero-section { position: relative; isolation: isolate; }
.hero-section > .container { position: relative; z-index: 2; }

/* ================================================================
   SPARKLE FIELD — tiny twinkling points
   ================================================================ */
.sparkle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.sparkle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #dce8ff;
  box-shadow: 0 0 6px 1px rgba(220, 232, 255, 0.9);
  opacity: 0;
  animation: sparkleTwinkle 4s ease-in-out infinite;
}
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.4); }
  50%      { opacity: 1; transform: scale(1); }
}

/* ================================================================
   ROTATING CONIC BORDER — premium card shimmer
   ================================================================ */
.conic-frame { position: relative; }
.conic-frame::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(122, 171, 255, 0.85) 35deg,
    rgba(58, 108, 244, 0.25) 75deg,
    transparent 120deg,
    transparent 240deg,
    rgba(220, 232, 255, 0.8) 285deg,
    transparent 330deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: conicSpin 9s linear infinite;
  z-index: 3;
}
@keyframes conicSpin { to { transform: rotate(360deg); } }

.product-lab,
.cta-band,
.main-product-card { /* picks up .conic-frame when added inline */ }

/* ================================================================
   FLOATING HEX CHIPS — at the corners of the product card, not the bottle
   ================================================================ */
.hex-chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hex-chip {
  position: absolute;
  width: 18px; height: 18px;
  background: linear-gradient(160deg, rgba(220, 232, 255, 0.75), rgba(58, 108, 244, 0.5));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 0 12px rgba(122, 171, 255, 0.5);
  opacity: 0.7;
  will-change: transform;
}
.hex-chip.c1 { top: 4%;  left: 3%;   animation: chipFloat 9s  ease-in-out infinite; }
.hex-chip.c2 { bottom: 6%; left: 4%;  width: 12px; height: 12px; animation: chipFloat 11s ease-in-out 1s infinite; }
.hex-chip.c3 { top: 6%;  right: 4%;  width: 14px; height: 14px; animation: chipFloat 10s ease-in-out 2s infinite; }
.hex-chip.c4 { bottom: 5%; right: 3%; animation: chipFloat 12s ease-in-out 0.5s infinite; }
@keyframes chipFloat {
  0%,100% { transform: translateY(0) rotate(0);     opacity: 0.7; }
  50%      { transform: translateY(-10px) rotate(22deg); opacity: 0.95; }
}

/* ================================================================
   MARQUEE TICKER
   ================================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(122, 171, 255, 0.14);
  border-bottom: 1px solid rgba(122, 171, 255, 0.14);
  background: linear-gradient(180deg, rgba(8,10,24,0.6), rgba(4,5,14,0.9));
  padding: 1.1rem 0;
  margin-top: -1rem;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeSlide 38s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  color: rgba(220, 232, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}
.marquee-item::after {
  content: "◆";
  color: var(--ice);
  font-size: 0.7rem;
  opacity: 0.8;
}
@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ================================================================
   HERO TITLE PARALLAX WRAPPER
   ================================================================ */
.hero-title { will-change: transform; transition: transform 0.25s ease-out; }

/* Bigger, hotter title gradient */
.hero-title {
  background: linear-gradient(160deg, #ffffff 0%, #c8dcff 50%, #ffffff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================================================================
   BUTTON — aggressive outer glow pulse
   ================================================================ */
.btn-primary-premium {
  box-shadow:
    0 6px 28px rgba(21, 72, 212, 0.5),
    0 0 0 0 rgba(58, 108, 244, 0.5);
  animation: ctaPulse 3.2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(21, 72, 212, 0.5), 0 0 0 0 rgba(58, 108, 244, 0.45); }
  50%      { box-shadow: 0 10px 38px rgba(21, 72, 212, 0.65), 0 0 0 8px rgba(58, 108, 244, 0); }
}

/* ================================================================
   CREDENTIAL VALUE — larger, with ice drop-shadow
   ================================================================ */
.credential-value {
  font-size: 2.75rem;
  text-shadow: 0 0 22px rgba(122, 171, 255, 0.35);
}

/* ================================================================
   CARD HOVER — sharper lift + sapphire aura
   ================================================================ */
.step-card:hover,
.testimonial-card:hover,
.product-card:hover {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(122, 171, 255, 0.18),
    0 0 42px rgba(21, 72, 212, 0.22);
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
