/* =========================================================
   TRINETRA — Design System
   Brand: third-eye / vision / intelligence
   Palette: Midnight Ink + Saffron Gold + Quantum Cyan + Violet
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* surfaces */
  --ink:        #05060E;
  --ink-2:      #090B17;
  --ink-3:      #0E1122;
  --line:       rgba(255, 255, 255, .09);
  --line-2:     rgba(255, 255, 255, .16);
  --glass:      rgba(255, 255, 255, .04);
  --glass-2:    rgba(255, 255, 255, .07);

  /* brand */
  --gold:       #FFC24B;
  --gold-deep:  #F59E0B;
  --ember:      #FF7A18;
  --cyan:       #2DE2C5;
  --violet:     #8B5CF6;
  --rose:       #FF5D8F;

  /* type */
  --text:       #EAEEFB;
  --text-2:     #B4BCD6;
  --muted:      #7F89A8;

  /* gradients */
  --grad-gold:  linear-gradient(120deg, #FFC24B 0%, #F59E0B 45%, #FF7A18 100%);
  --grad-cool:  linear-gradient(120deg, #2DE2C5 0%, #6EE7F9 45%, #8B5CF6 100%);
  --grad-mix:   linear-gradient(115deg, #FFC24B 0%, #FF7A18 35%, #8B5CF6 70%, #2DE2C5 100%);

  /* shape */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 34px;

  /* motion */
  --e-out:  cubic-bezier(.16, 1, .3, 1);
  --e-soft: cubic-bezier(.4, 0, .2, 1);

  /* layout */
  --max: 1240px;
  --nav-h: 76px;

  /* fonts */
  --f-display: "Sora", "Space Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* Light theme (toggle) */
:root[data-theme="light"] {
  --ink:      #F7F8FC;
  --ink-2:    #FFFFFF;
  --ink-3:    #EFF2FA;
  --line:     rgba(6, 10, 30, .10);
  --line-2:   rgba(6, 10, 30, .18);
  --glass:    rgba(9, 12, 30, .035);
  --glass-2:  rgba(9, 12, 30, .06);
  --text:     #0B1020;
  --text-2:   #3B455F;
  --muted:    #66708C;
  --gold-deep:#B45309;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--gold); color: #05060E; }

/* scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-deep), var(--violet));
  border-radius: 99px;
  border: 3px solid var(--ink);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Type scale ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.h-hero { font-size: clamp(2.6rem, 6.6vw, 5.2rem); font-weight: 800; letter-spacing: -.04em; }
.h1     { font-size: clamp(2.2rem, 5vw, 3.7rem); }
.h2     { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
.h3     { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--text-2);
  max-width: 62ch;
}

.grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text-cool {
  background: var(--grad-cool);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mono { font-family: var(--f-mono); font-size: .82rem; letter-spacing: .04em; }

/* ---------- 4. Layout ---------- */
.wrap { width: min(100% - 2.6rem, var(--max)); margin-inline: auto; }
section { position: relative; padding: clamp(72px, 9vw, 128px) 0; }
.section-tight { padding-block: clamp(52px, 6vw, 84px); }

.grid { display: grid; gap: 26px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* ---------- 5. Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 7px 15px;
  border: 1px solid rgba(255, 194, 75, .28);
  border-radius: 99px;
  background: rgba(255, 194, 75, .06);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 194, 75, .7);
  animation: pulseDot 2.4s infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(255, 194, 75, .65); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 194, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 194, 75, 0); }
}

.sec-head { max-width: 780px; margin-bottom: clamp(38px, 5vw, 62px); }
.sec-head.center { margin-inline: auto; }

/* ---------- 6. Buttons ---------- */
.btn {
  --bg: var(--grad-gold);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 0;
  border-radius: 99px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .96rem;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
  color: #0A0700;
  transition: transform .35s var(--e-out), box-shadow .35s var(--e-out), filter .3s;
  box-shadow: 0 10px 32px -12px rgba(245, 158, 11, .8);
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .75s var(--e-out);
  z-index: -1;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -14px rgba(245, 158, 11, .95); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px) scale(.985); }

.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--line-2);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--glass-2);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 12px 34px -18px rgba(255, 194, 75, .9);
}

.btn-sm { padding: 10px 20px; font-size: .88rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--gold);
  font-size: .93rem;
}
.link-arrow svg { transition: transform .3s var(--e-out); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- 7. Ambient background ---------- */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .36;
  will-change: transform;
}
.aurora .a1 { width: 46vw; height: 46vw; background: #F59E0B; top: -14vw; left: -12vw; animation: drift1 26s ease-in-out infinite; opacity: .3; }
.aurora .a2 { width: 40vw; height: 40vw; background: #8B5CF6; top: 16vw; right: -12vw; animation: drift2 32s ease-in-out infinite; opacity: .32; }
.aurora .a3 { width: 34vw; height: 34vw; background: #2DE2C5; bottom: -12vw; left: 30vw; animation: drift3 29s ease-in-out infinite; opacity: .15; }

@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(9vw,7vw) scale(1.18)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-11vw,9vw) scale(.86)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(7vw,-8vw) scale(1.22)} }

/* grid veil */
.grid-veil {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 65% at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 65% at 50% 0%, #000 20%, transparent 78%);
}
.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 8. Scroll progress + cursor ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: var(--grad-mix);
  z-index: 999;
  box-shadow: 0 0 14px rgba(255, 194, 75, .8);
}

.cursor-glow {
  position: fixed;
  width: 420px; height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,194,75,.11), transparent 62%);
  transition: opacity .4s;
  opacity: 0;
  will-change: transform;
}

/* ---------- 9. Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity .7s var(--e-out), visibility .7s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-mark { width: 104px; }
.pre-name {
  margin-top: 20px;
  font-family: var(--f-display);
  letter-spacing: .5em;
  font-size: .82rem;
  text-transform: uppercase;
  color: var(--muted);
  text-indent: .5em;
}

/* ---------- 10. Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: background .4s var(--e-soft), box-shadow .4s, backdrop-filter .4s, height .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
  height: 66px;
  box-shadow: 0 12px 40px -22px rgba(0, 0, 0, .9);
}
.nav-inner {
  width: min(100% - 2.6rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 38px; height: 38px; flex: none; overflow: visible; }

/* Nav + footer: the bars draw in once on load, then hold still.
   A logo that never stops moving is a distraction — the flourish is on
   arrival and on hover, where it turns exactly one third (120°). */
.brand-mark .rotor {
  transform-origin: 256px 256px;
  transition: transform .7s var(--e-out);
}
.brand-mark .rotor path {
  stroke-dasharray: 254;
  animation: rotorDraw .8s var(--e-out) backwards;
}
.brand-mark .rotor path:nth-child(2) { animation-delay: .1s; }
.brand-mark .rotor path:nth-child(3) { animation-delay: .2s; }
.brand:hover .brand-mark .rotor { transform: rotate(120deg); }

/* Loading screen: the same draw, looped — the mark builds itself while you wait. */
.rotor-loop { transform-origin: 256px 256px; animation: spin 4.2s cubic-bezier(.7,0,.3,1) infinite; }
.rotor-loop path {
  stroke-dasharray: 254;
  animation: rotorPulse 4.2s cubic-bezier(.7,0,.3,1) infinite;
}
.rotor-loop path:nth-child(2) { animation-delay: .13s; }
.rotor-loop path:nth-child(3) { animation-delay: .26s; }
@keyframes rotorPulse { 0% { stroke-dashoffset: 254; } 30%, 100% { stroke-dashoffset: 0; } }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -.02em;
}
.brand-tag {
  font-family: var(--f-mono);
  font-size: .56rem;
  letter-spacing: .3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  padding: 9px 15px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 99px;
  transition: color .25s, background .25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 3px;
  width: 0; height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .35s var(--e-out);
}
.nav-links a:hover { color: var(--text); background: var(--glass); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 22px; }
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.theme-btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--glass);
  cursor: pointer;
  transition: .3s var(--e-out);
}
.theme-btn:hover { border-color: var(--gold); color: var(--gold); transform: rotate(28deg); }
:root[data-theme="light"] .theme-btn .moon { display: none; }
:root:not([data-theme="light"]) .theme-btn .sun { display: none; }

.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-2);
  background: var(--glass);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .35s var(--e-out);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; width: 13px; }
.burger span:nth-child(3) { top: 25px; }
.burger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: translateX(10px); }
.burger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 890;
  background: color-mix(in srgb, var(--ink) 96%, transparent);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 34px 1.3rem 60px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: .4s var(--e-out);
  overflow-y: auto;
}
.mobile-menu.open { transform: none; opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 15px 6px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-2);
}
.mobile-menu a:hover, .mobile-menu a[aria-current="page"] { color: var(--gold); }
.mobile-menu .btn { margin-top: 26px; justify-content: center; }

/* ---------- 11. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 70px;
  overflow: hidden;
}
#constellation {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .58;
}
.hero .wrap { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 54px;
  align-items: center;
}

.hero h1 { margin-bottom: 22px; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: block;
  transform: translateY(105%);
  animation: riseIn .95s var(--e-out) forwards;
}
.hero h1 .line:nth-child(1) > span { animation-delay: .15s; }
.hero h1 .line:nth-child(2) > span { animation-delay: .28s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .41s; }
@keyframes riseIn { to { transform: none; } }

.fade-up-1, .fade-up-2, .fade-up-3 {
  opacity: 0;
  animation: fadeUp .9s var(--e-out) forwards;
}
.fade-up-1 { animation-delay: .55s; }
.fade-up-2 { animation-delay: .68s; }
.fade-up-3 { animation-delay: .82s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.typed-wrap {
  font-family: var(--f-mono);
  font-size: clamp(.85rem, 1.4vw, 1rem);
  color: var(--cyan);
  margin-bottom: 26px;
  min-height: 1.6em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.typed-wrap .prompt { color: var(--muted); }
.caret {
  display: inline-block;
  width: 9px; height: 1.05em;
  background: var(--cyan);
  vertical-align: text-bottom;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-trust {
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}
.hero-trust div strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-trust div span { font-size: .8rem; color: var(--muted); letter-spacing: .04em; }

/* hero visual — the animated eye */
.mark-stage {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }

.mark-stage .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line-2);
}
.mark-stage .ring.r1 { inset: 2%;  border-style: dashed; animation: spin 42s linear infinite; }
.mark-stage .ring.r2 { inset: 13%; border-color: rgba(45, 226, 197, .25); animation: spin 28s linear infinite reverse; }
.mark-stage .ring.r3 { inset: 24%; border-color: rgba(255, 194, 75, .3); animation: spin 34s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.mark-stage .orbiter {
  position: absolute;
  inset: 2%;
  animation: spin 20s linear infinite;
}
.mark-stage .orbiter i {
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px 4px rgba(255, 194, 75, .8);
}
.mark-stage .orbiter.o2 { inset: 13%; animation-duration: 15s; animation-direction: reverse; }
.mark-stage .orbiter.o2 i { background: var(--cyan); box-shadow: 0 0 18px 4px rgba(45, 226, 197, .8); }

.mark-core { width: 58%; position: relative; z-index: 3; filter: drop-shadow(0 0 58px rgba(255, 160, 30, .35)); }

/* Hero: bars draw themselves in, the assembly settles, then turns slowly forever.
   Two nested groups so the entry transform and the endless spin don't fight. */
.mark-core .rotor-spin {
  transform-origin: 256px 256px;
  animation: spin 48s linear 1.5s infinite;
}
.mark-core .rotor-in {
  transform-origin: 256px 256px;
  animation: rotorSettle 1.4s var(--e-out) backwards;
}
.mark-core .rotor-in path {
  stroke-dasharray: 254;
  animation: rotorDraw 1.15s var(--e-out) backwards;
}
.mark-core .rotor-in path:nth-child(2) { animation-delay: .14s; }
.mark-core .rotor-in path:nth-child(3) { animation-delay: .28s; }

@keyframes rotorDraw   { from { stroke-dashoffset: 254; } to { stroke-dashoffset: 0; } }
@keyframes rotorSettle { from { transform: rotate(-100deg) scale(.72); } to { transform: none; } }

.mark-badges { position: absolute; inset: 0; pointer-events: none; }
.mark-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--ink-2) 82%, transparent);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(12px);
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .06em;
  white-space: nowrap;
  animation: floaty 6s ease-in-out infinite;
  box-shadow: 0 14px 40px -20px #000;
}
.mark-badge i { width: 7px; height: 7px; border-radius: 50%; }
.mark-badge.b1 { top: 8%;  left: -6%;  animation-delay: .3s; }
.mark-badge.b2 { top: 42%; right: -9%; animation-delay: 1.1s; }
.mark-badge.b3 { bottom: 9%; left: 4%; animation-delay: 1.9s; }

.scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted);
  font-family: var(--f-mono);
  font-size: .64rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-hint .rail {
  width: 22px; height: 36px;
  border: 1px solid var(--line-2);
  border-radius: 99px;
  position: relative;
}
.scroll-hint .rail::after {
  content: "";
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 7px;
  margin-left: -1.5px;
  background: var(--gold);
  border-radius: 2px;
  animation: wheel 1.9s var(--e-out) infinite;
}
@keyframes wheel { 0%{opacity:0;transform:translateY(0)} 35%{opacity:1} 100%{opacity:0;transform:translateY(14px)} }

/* ---------- 12. Page hero (inner pages) ---------- */
.page-hero {
  padding-top: calc(var(--nav-h) + 78px);
  padding-bottom: 62px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -280px; left: 50%;
  width: 900px; height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(245, 158, 11, .16), transparent 68%);
  pointer-events: none;
}
.crumbs {
  font-family: var(--f-mono);
  font-size: .74rem;
  color: var(--muted);
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.crumbs a:hover { color: var(--gold); }

/* ---------- 13. Cards ---------- */
.card {
  position: relative;
  padding: 30px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--glass-2), var(--glass));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .45s var(--e-out), border-color .45s, box-shadow .45s;
  backdrop-filter: blur(8px);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad-mix);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .45s;
  pointer-events: none;
}
.card::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 194, 75, .13), transparent 62%);
  left: var(--mx, 50%); top: var(--my, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.card:hover { transform: translateY(-7px); box-shadow: 0 30px 66px -34px rgba(0, 0, 0, .95); }
.card:hover::before, .card:hover::after { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: rgba(255, 194, 75, .1);
  border: 1px solid rgba(255, 194, 75, .24);
  color: var(--gold);
  transition: transform .45s var(--e-out), background .4s;
}
.card:hover .card-icon { transform: rotate(-8deg) scale(1.08); }
.card-icon.cy { background: rgba(45, 226, 197, .1); border-color: rgba(45, 226, 197, .26); color: var(--cyan); }
.card-icon.vi { background: rgba(139, 92, 246, .12); border-color: rgba(139, 92, 246, .3); color: var(--violet); }
.card-icon.ro { background: rgba(255, 93, 143, .1); border-color: rgba(255, 93, 143, .28); color: var(--rose); }

.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-2); font-size: .95rem; }

.card-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.tag {
  font-family: var(--f-mono);
  font-size: .68rem;
  padding: 5px 11px;
  border-radius: 99px;
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--muted);
  letter-spacing: .04em;
}

.num-badge {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--f-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--line-2);
  line-height: 1;
  transition: color .4s;
}
.card:hover .num-badge { color: rgba(255, 194, 75, .22); }

/* feature card (big) */
.card-feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 38px;
}

/* ---------- 14. Marquee ---------- */
.marquee {
  overflow: hidden;
  position: relative;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink-2) 60%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: slide 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 30px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-2);
  white-space: nowrap;
}
.marquee-track span::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-deep);
  opacity: .7;
}
.marquee-track span:hover { color: var(--gold); }

/* ---------- 15. Stats ---------- */
.stat {
  padding: 28px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--glass);
  text-align: center;
  transition: .4s var(--e-out);
}
.stat:hover { border-color: rgba(255,194,75,.4); transform: translateY(-5px); }
.stat b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.1;
}
.stat span { font-size: .84rem; color: var(--muted); letter-spacing: .05em; }

/* ---------- 16. Process timeline ---------- */
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(var(--gold), var(--violet), var(--cyan));
  opacity: .35;
}
.tl-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 22px 0;
  align-items: start;
}
.tl-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  font-family: var(--f-mono);
  font-size: .82rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: .4s var(--e-out);
}
.tl-item:hover .tl-dot {
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 194, 75, .08);
  transform: scale(1.06);
}
.tl-body h3 { margin-bottom: 7px; }
.tl-body p { color: var(--text-2); font-size: .95rem; max-width: 68ch; }

/* ---------- 17. Accordion ---------- */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 22px 46px 22px 0;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color .3s;
}
.acc-q:hover { color: var(--gold); }
.acc-q::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .35s var(--e-out);
}
.acc-item.open .acc-q::after { transform: translateY(-25%) rotate(-135deg); }
.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--e-out);
}
.acc-a p { padding-bottom: 24px; color: var(--text-2); max-width: 76ch; }

/* ---------- 18. CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(42px, 6vw, 78px);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background:
    radial-gradient(ellipse at 12% 0%, rgba(245, 158, 11, .22), transparent 55%),
    radial-gradient(ellipse at 92% 100%, rgba(139, 92, 246, .22), transparent 55%),
    var(--ink-2);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent);
}
.cta-band > * { position: relative; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---------- 19. Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink-2) 70%, transparent);
  padding-top: 70px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 52px;
}
.footer h4 {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer ul { display: grid; gap: 11px; }
.footer li a { color: var(--text-2); font-size: .92rem; transition: .25s; }
.footer li a:hover { color: var(--gold); padding-left: 5px; }
.footer .blurb { color: var(--text-2); font-size: .93rem; margin: 16px 0 20px; max-width: 40ch; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--text-2);
  transition: .3s var(--e-out);
}
.socials a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }

.addr { font-size: .92rem; color: var(--text-2); font-style: normal; display: grid; gap: 12px; }
.addr div { display: flex; gap: 10px; align-items: flex-start; }
.addr svg { flex: none; margin-top: 3px; color: var(--gold); }
.addr a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: var(--muted);
}
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold); }

.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-gold);
  color: #0A0700;
  border: 0;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  transform: translateY(16px) scale(.85);
  pointer-events: none;
  transition: .4s var(--e-out);
  box-shadow: 0 12px 34px -12px rgba(245, 158, 11, .9);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); }

/* ---------- 20. Forms ---------- */
.form-grid { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  background: var(--glass);
  color: var(--text);
  transition: border-color .3s, box-shadow .3s, background .3s;
  font-size: .96rem;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--glass-2);
  box-shadow: 0 0 0 4px rgba(255, 194, 75, .1);
}
.field select option { background: var(--ink-2); color: var(--text); }

.form-note { font-size: .82rem; color: var(--muted); }
.form-ok {
  display: none;
  padding: 15px 18px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(45, 226, 197, .4);
  background: rgba(45, 226, 197, .08);
  color: var(--cyan);
  font-size: .92rem;
}
.form-ok.show { display: block; animation: fadeUp .5s var(--e-out); }

/* ---------- 21. Misc components ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; }
.pill {
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: var(--glass);
  font-size: .84rem;
  color: var(--text-2);
  transition: .3s var(--e-out);
  cursor: default;
}
.pill:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.checklist { display: grid; gap: 13px; margin-top: 22px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); font-size: .95rem; }
.checklist li::before {
  content: "";
  flex: none;
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(45, 226, 197, .14);
  border: 1px solid rgba(45, 226, 197, .5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232DE2C5' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.code-window {
  border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
  background: #070912;
  overflow: hidden;
  box-shadow: 0 34px 80px -40px rgba(0,0,0,.95);
}
.code-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.code-bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.code-bar i:nth-child(1) { background: #FF5F57; }
.code-bar i:nth-child(2) { background: #FEBC2E; }
.code-bar i:nth-child(3) { background: #28C840; }
.code-bar span { margin-left: 8px; font-family: var(--f-mono); font-size: .72rem; color: var(--muted); }
.code-window pre {
  padding: 20px;
  overflow-x: auto;
  font-family: var(--f-mono);
  font-size: .78rem;
  line-height: 1.75;
  color: #C8D2F0;
}
.code-window .k { color: #C084FC; }
.code-window .s { color: #FDBA74; }
.code-window .c { color: #4E5878; font-style: italic; }
.code-window .f { color: #2DE2C5; }
.code-window .n { color: #F9A8D4; }

.quote {
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--glass);
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: 4px; left: 22px;
  font-family: var(--f-display);
  font-size: 5rem;
  color: rgba(255, 194, 75, .2);
  line-height: 1;
}
.quote p { position: relative; color: var(--text-2); font-size: 1rem; margin-bottom: 20px; }
.quote footer { display: flex; align-items: center; gap: 13px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  background: var(--grad-gold);
  color: #0A0700;
  flex: none;
}
.quote footer strong { display: block; font-size: .92rem; }
.quote footer span { font-size: .8rem; color: var(--muted); }

/* leader / team */
.person {
  text-align: center;
  padding: 32px 24px;
}
.person .ava-lg {
  width: 116px; height: 116px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #0A0700;
  background: var(--grad-gold);
  box-shadow: 0 0 0 6px rgba(255, 194, 75, .1), 0 18px 50px -20px rgba(245,158,11,.8);
  position: relative;
}
.person .ava-lg::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 194, 75, .35);
  animation: spin 24s linear infinite;
}
.person .role { color: var(--gold); font-size: .85rem; font-family: var(--f-mono); letter-spacing: .08em; margin-top: 4px; }
.person p { margin-top: 14px; }

/* job listing */
.job {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 28px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--glass);
  transition: .4s var(--e-out);
}
.job:hover { border-color: rgba(255,194,75,.45); background: var(--glass-2); transform: translateX(6px); }
.job h3 { font-size: 1.12rem; }
.job .meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

/* ---------- 22. Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .85s var(--e-out), transform .85s var(--e-out);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-38px); }
[data-reveal="right"] { transform: translateX(38px); }
[data-reveal="zoom"]  { transform: scale(.94); }

/* ---------- 23. Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .mark-stage { max-width: 460px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: block; }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .card-feature { grid-column: span 2; grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .wrap { width: min(100% - 1.9rem, var(--max)); }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .card-feature { grid-column: span 1; }
  .hero-trust { gap: 24px; }
  .hero-trust div strong { font-size: 1.45rem; }
  .job { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cursor-glow { display: none; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- 24. Light-theme refinements ----------
   Saffron reads beautifully on midnight ink and washes out on white.
   In light mode the brand shifts to its deeper amber/teal registers so
   text keeps AA contrast while the identity stays recognisably Trinetra. */
:root[data-theme="light"] .aurora span { opacity: .13; filter: blur(110px); }
:root[data-theme="light"] .aurora .a3  { opacity: .07; }
:root[data-theme="light"] .noise       { opacity: .03; }

:root[data-theme="light"] .grid-veil {
  background-image:
    linear-gradient(to right, rgba(6,10,30,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(6,10,30,.045) 1px, transparent 1px);
}

/* gradient text needs deeper stops to stay legible on a light ground */
:root[data-theme="light"] .grad-text,
:root[data-theme="light"] .stat b,
:root[data-theme="light"] .hero-trust div strong {
  background: linear-gradient(120deg, #D97706 0%, #EA580C 52%, #C2410C 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
:root[data-theme="light"] .grad-text-cool {
  background: linear-gradient(120deg, #0D9488 0%, #0891B2 48%, #6D28D9 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

:root[data-theme="light"] .eyebrow {
  color: var(--gold-deep);
  border-color: rgba(180, 83, 9, .3);
  background: rgba(180, 83, 9, .07);
}
:root[data-theme="light"] .eyebrow::before { background: var(--gold-deep); }

:root[data-theme="light"] .link-arrow,
:root[data-theme="light"] .footer h4,
:root[data-theme="light"] .tl-dot,
:root[data-theme="light"] .nav-links a[aria-current="page"],
:root[data-theme="light"] .mobile-menu a[aria-current="page"],
:root[data-theme="light"] .mobile-menu a:hover,
:root[data-theme="light"] .footer li a:hover,
:root[data-theme="light"] .addr a:hover,
:root[data-theme="light"] .marquee-track span:hover,
:root[data-theme="light"] .acc-q:hover,
:root[data-theme="light"] .pill:hover,
:root[data-theme="light"] .btn-ghost:hover,
:root[data-theme="light"] .socials a:hover,
:root[data-theme="light"] .theme-btn:hover,
:root[data-theme="light"] .footer-bottom a:hover { color: var(--gold-deep); }

:root[data-theme="light"] .addr svg { color: var(--gold-deep); }
:root[data-theme="light"] .acc-q::after { border-color: var(--gold-deep); }
:root[data-theme="light"] .card-icon { color: var(--gold-deep); }
:root[data-theme="light"] .card-icon.cy { color: #0D9488; border-color: rgba(13,148,136,.3); }
:root[data-theme="light"] .card-icon.vi { color: #6D28D9; border-color: rgba(109,40,217,.3); }
:root[data-theme="light"] .card-icon.ro { color: #BE185D; border-color: rgba(190,24,93,.3); }

/* teal check marks — the neon cyan disappears on white */
:root[data-theme="light"] .checklist li::before {
  border-color: rgba(13,148,136,.55);
  background-color: rgba(13,148,136,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D9488' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

:root[data-theme="light"] .typed-wrap { color: #0D9488; }
:root[data-theme="light"] .caret      { background: #0D9488; }
:root[data-theme="light"] .form-ok    { color: #0F766E; border-color: rgba(13,148,136,.45); background: rgba(13,148,136,.08); }

:root[data-theme="light"] .ring,
:root[data-theme="light"] .scroll-hint .rail { border-color: rgba(6,10,30,.16); }
:root[data-theme="light"] .scroll-hint .rail::after { background: var(--gold-deep); }

:root[data-theme="light"] #constellation { opacity: .3; }
:root[data-theme="light"] .card:hover { box-shadow: 0 26px 56px -34px rgba(6,10,30,.4); }
:root[data-theme="light"] .nav.scrolled { box-shadow: 0 10px 34px -22px rgba(6,10,30,.35); }
:root[data-theme="light"] ::-webkit-scrollbar-thumb { background: linear-gradient(#D97706, #6D28D9); }

/* the code window stays dark in both themes — it reads as a terminal, not a panel */
:root[data-theme="light"] .code-window { border-color: rgba(6,10,30,.2); }

/* ---------- 25. Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero h1 .line > span { transform: none; }
}

.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;
}
.skip-link {
  position: absolute;
  top: -60px; left: 16px;
  z-index: 1000;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  background: var(--gold);
  color: #0A0700;
  font-weight: 600;
  transition: top .3s;
}
.skip-link:focus { top: 0; }

@media print {
  .nav, .to-top, .aurora, .grid-veil, .noise, #preloader, .cursor-glow, .progress { display: none !important; }
  body { background: #fff; color: #000; }
}
