/* ============================================================
   ZNCU — one page. dark, liquid green, Apple-type.
   ============================================================ */

:root {
  --bg: #060907;
  --bg-2: #0a0f0b;
  --ink: #eef4ef;
  --ink-dim: #c4cfc7;
  --muted: #8b988f;
  --line: rgba(238, 244, 239, 0.08);
  --line-strong: rgba(238, 244, 239, 0.16);
  --acc: #7be392;
  --acc-soft: #a9f0b8;
  --acc-deep: #1d5c33;
  --acc-glow: rgba(123, 227, 146, 0.35);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
  --mono: var(--font);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  min-height: 100vh;
}

::selection { background: var(--acc); color: #04140a; }

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

a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }


/* ---------- grain ---------- */
.grain {
  position: fixed;
  inset: -10%;
  z-index: 90;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  20% { transform: translate(3%, 1%); }
  30% { transform: translate(-1%, 3%); }
  40% { transform: translate(2%, -2%); }
  50% { transform: translate(-3%, 1%); }
  60% { transform: translate(1%, 2%); }
  70% { transform: translate(3%, -1%); }
  80% { transform: translate(-2%, 2%); }
  90% { transform: translate(2%, 3%); }
}

/* ---------- loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  transform: translateY(0);
  transition: transform 0.95s cubic-bezier(0.76, 0, 0.24, 1);
}
.loader::after {
  /* curved curtain edge that trails the panel on exit */
  content: "";
  position: absolute;
  top: 100%;
  left: -6%;
  right: -6%;
  height: 11vh;
  background: var(--bg);
  border-radius: 0 0 50% 50%;
}
.loader.is-done {
  transform: translateY(-114%);
  pointer-events: none;
}
.loader__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.loader__mark {
  display: flex;
  gap: 0.04em;
  font-size: clamp(64px, 11vw, 120px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.05;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.loader__mark span {
  display: inline-block;
  animation: loaderUp 0.75s var(--ease-out) both;
}
.loader__mark span:nth-child(2) { animation-delay: 0.05s; }
.loader__mark span:nth-child(3) { animation-delay: 0.10s; }
.loader__mark span:nth-child(4) { animation-delay: 0.15s; }
.loader__mark span:nth-child(5) { animation-delay: 0.20s; }
.loader__dot { color: var(--acc); }
@keyframes loaderUp {
  from { transform: translateY(115%); }
  to { transform: translateY(0); }
}
.loader.is-leaving .loader__mark span {
  animation: loaderOut 0.45s var(--ease-io) both;
}
.loader.is-leaving .loader__mark span:nth-child(2) { animation-delay: 0.04s; }
.loader.is-leaving .loader__mark span:nth-child(3) { animation-delay: 0.08s; }
.loader.is-leaving .loader__mark span:nth-child(4) { animation-delay: 0.12s; }
.loader.is-leaving .loader__mark span:nth-child(5) { animation-delay: 0.16s; }
@keyframes loaderOut {
  from { transform: translateY(0); }
  to { transform: translateY(-125%); }
}
.loader__tag {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.loader__count {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  bottom: clamp(28px, 5vh, 56px);
  font-size: clamp(60px, 8.5vw, 128px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.loader__count i {
  font-style: normal;
  font-size: 0.32em;
  font-weight: 600;
  margin-left: 0.1em;
  color: var(--acc);
}
.loader.is-leaving .loader__tag,
.loader.is-leaving .loader__count {
  opacity: 0;
  transform: translateY(26px);
}
.loader.is-leaving .loader__tag { transform: translateY(14px); }
.loader__bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--line);
  overflow: hidden;
}
.loader__bar i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--acc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(20px, 4vw, 56px);
  transition: background-color 0.4s, backdrop-filter 0.4s, border-color 0.4s,
              transform 0.5s var(--ease-out), opacity 0.5s;
  border-bottom: 1px solid transparent;
  opacity: 0;
  transform: translateY(-12px);
}
body.is-loaded .nav { opacity: 1; transform: translateY(0); }
.nav.is-scrolled {
  background: rgba(6, 9, 7, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav__logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: baseline;
}
.nav__dot {
  width: 5px; height: 5px;
  margin-left: 3px;
  border-radius: 50%;
  background: var(--acc);
}
.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  font-size: 14px;
  color: var(--ink-dim);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--acc);
  transition: right 0.35s var(--ease-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { right: 0; }

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-out), background-color 0.3s,
              color 0.3s, border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.btn span { position: relative; z-index: 1; }
.btn--nav {
  padding: 10px 20px;
  font-size: 14px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn--nav:hover {
  background: var(--acc);
  border-color: var(--acc);
  color: #04140a;
  box-shadow: 0 6px 30px var(--acc-glow);
}
.btn--solid {
  padding: 16px 30px;
  background: var(--acc);
  color: #04140a;
}
.btn--solid:hover {
  background: var(--acc-soft);
  box-shadow: 0 10px 40px var(--acc-glow);
}
.btn--ghost {
  padding: 16px 30px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--acc);
  color: var(--acc);
}
.btn--big { padding: 20px 38px; font-size: clamp(16px, 2vw, 19px); }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4vh) clamp(20px, 4vw, 56px) 10vh;
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--bg) 6%, rgba(6, 9, 7, 0) 58%);
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: 50%; right: -12vw;
  width: 62vw; height: 62vw;
  max-width: 980px; max-height: 980px;
  transform: translateY(-50%);
  background: radial-gradient(circle at center,
    rgba(123, 227, 146, 0.14) 0%,
    rgba(31, 92, 51, 0.10) 32%,
    rgba(6, 9, 7, 0) 68%);
  pointer-events: none;
}
.hero__globe {
  position: absolute;
  top: 50%; right: -7vw;
  width: min(56vw, 880px);
  height: min(56vw, 880px);
  transform: translateY(-50%);
  touch-action: pan-y;
  cursor: grab;
  z-index: 0;
}
.hero__globe.is-dragging { cursor: grabbing; }
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero__title {
  margin: 26px 0 28px;
  font-size: clamp(46px, 7.6vw, 118px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.hline { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hline__in {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 1s var(--ease-out);
}
body.is-loaded .hline__in { transform: translateY(0); }
.hline:nth-child(2) .hline__in { transition-delay: 0.1s; }

.swap {
  position: relative;
  display: inline-block;
  color: var(--acc);
  text-shadow: 0 0 40px rgba(123, 227, 146, 0.25);
}
.swap__word {
  display: inline-block;
  transform: translateY(0.2em);
  opacity: 0;
  filter: blur(6px);
  transition: transform 0.55s var(--ease-out), opacity 0.45s, filter 0.5s;
}
.swap__word.is-in { transform: translateY(0); opacity: 1; filter: blur(0); }
.swap__word.is-out { transform: translateY(-0.2em); opacity: 0; filter: blur(6px); }

.hero__sub {
  max-width: 480px;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}
.hero__hint {
  position: absolute;
  left: clamp(20px, 4vw, 56px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.8s 1.2s;
}
body.is-loaded .hero__hint { opacity: 1; }
.hero__hint i {
  width: 52px;
  height: 1px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.hero__hint i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--acc);
  transform: translateX(-100%);
  animation: hintSweep 2.2s var(--ease-io) infinite;
}
@keyframes hintSweep {
  0% { transform: translateX(-100%); }
  55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ---------- reveals ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- marquee ---------- */
.marquee {
  position: relative;
  padding: clamp(40px, 7vh, 90px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: clip;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee__row { overflow: clip; }
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__row--b .marquee__track {
  animation: marqueeRev 32s linear infinite;
}
.marquee__track span {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.25;
  white-space: nowrap;
  padding-right: 0.6em;
}
.marquee__row--b .marquee__track span {
  font-size: clamp(26px, 3.6vw, 52px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 244, 239, 0.34);
}
.marquee__track i {
  font-style: normal;
  font-size: 0.42em;
  color: var(--acc);
  margin: 0 0.9em;
  animation: spinStar 7s linear infinite;
}
@keyframes spinStar { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes marqueeRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ---------- sections ---------- */
.section {
  position: relative;
  padding: clamp(90px, 14vh, 170px) clamp(20px, 4vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
}
.section__head { max-width: 780px; margin-bottom: clamp(48px, 7vh, 90px); }
.section__title {
  margin: 22px 0 18px;
  font-size: clamp(36px, 5.2vw, 76px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.section__sub {
  max-width: 460px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
}

/* ---------- service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  background: var(--bg);
  padding: clamp(26px, 2.6vw, 40px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: background-color 0.4s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx) var(--my),
    rgba(123, 227, 146, 0.09), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card__num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--acc);
  margin-bottom: auto;
}
.card__title {
  margin: 34px 0 10px;
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 600;
  letter-spacing: -0.025em;
}
.card__copy {
  font-size: 15px;
  color: var(--muted);
  max-width: 340px;
}

/* ---------- stack / logos ---------- */
.logos {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: clamp(34px, 3.4vw, 56px) 16px;
  background: var(--bg);
  color: rgba(238, 244, 239, 0.82);
  transition: background-color 0.45s, color 0.45s;
}
.logo:hover { color: var(--brand, var(--acc)); background: var(--bg-2); }
.logo__icon {
  height: 44px;
  display: grid;
  place-items: center;
  transition: transform 0.5s var(--ease-out), filter 0.5s;
  animation: logoFloat 5.5s ease-in-out infinite;
  animation-delay: var(--float-d, 0s);
}
.logo:nth-child(1) .logo__icon { --float-d: 0s; }
.logo:nth-child(2) .logo__icon { --float-d: 0.6s; }
.logo:nth-child(3) .logo__icon { --float-d: 1.2s; }
.logo:nth-child(4) .logo__icon { --float-d: 1.8s; }
.logo:nth-child(5) .logo__icon { --float-d: 2.4s; }
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.logo:hover .logo__icon {
  transform: translateY(-4px) scale(1.08);
  filter: drop-shadow(0 4px 14px color-mix(in srgb, currentColor 45%, transparent));
  animation-play-state: paused;
}
.logo__icon svg { width: 40px; height: 40px; }
.logo__icon--word svg { width: 110px; height: 34px; }
.logo__name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.4s;
}
.logo:hover .logo__name { color: var(--ink-dim); }
/* icons pop in when the row scrolls into view */
.logo:not(.logo--ms):not(.logo--g)[data-reveal] .logo__icon svg {
  opacity: 0;
  transform: scale(0.55);
  filter: blur(5px);
  transition: opacity 0.7s var(--ease-out) 0.25s,
              transform 0.7s var(--ease-out) 0.25s,
              filter 0.7s var(--ease-out) 0.25s;
}
.logo:not(.logo--ms):not(.logo--g)[data-reveal].is-visible .logo__icon svg {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* Google: four segments pop in one by one, brand colors on hover */
.gseg {
  fill: currentColor;
  transition: fill 0.4s, opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  transform-box: fill-box;
  transform-origin: center;
}
.logo--g:hover .gseg--red { fill: #ea4335; }
.logo--g:hover .gseg--blue { fill: #4285f4; }
.logo--g:hover .gseg--yellow { fill: #fbbc05; }
.logo--g:hover .gseg--green { fill: #34a853; }
.logo--g[data-reveal] .gseg { opacity: 0; transform: scale(0); }
.logo--g[data-reveal].is-visible .gseg { opacity: 1; transform: scale(1); }
.logo--g[data-reveal].is-visible .gseg--red { transition-delay: 0.25s; }
.logo--g[data-reveal].is-visible .gseg--blue { transition-delay: 0.34s; }
.logo--g[data-reveal].is-visible .gseg--yellow { transition-delay: 0.43s; }
.logo--g[data-reveal].is-visible .gseg--green { transition-delay: 0.52s; }

/* Microsoft: four squares get their brand colors on hover */
.logo--ms:hover .ms--1 { fill: #f25022; }
.logo--ms:hover .ms--2 { fill: #7fba00; }
.logo--ms:hover .ms--3 { fill: #00a4ef; }
.logo--ms:hover .ms--4 { fill: #ffb900; }
.ms {
  transition: fill 0.4s, opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  transform-box: fill-box;
  transform-origin: center;
}
.logo--ms[data-reveal] .ms { opacity: 0; transform: scale(0); }
.logo--ms[data-reveal].is-visible .ms { opacity: 1; transform: scale(1); }
.logo--ms[data-reveal].is-visible .ms--1 { transition-delay: 0.25s; }
.logo--ms[data-reveal].is-visible .ms--2 { transition-delay: 0.34s; }
.logo--ms[data-reveal].is-visible .ms--3 { transition-delay: 0.43s; }
.logo--ms[data-reveal].is-visible .ms--4 { transition-delay: 0.52s; }

/* ---------- footer ---------- */
.footer {
  position: relative;
  margin-top: clamp(40px, 8vh, 110px);
  padding: clamp(100px, 16vh, 200px) clamp(20px, 4vw, 56px) 0;
  overflow: clip;
  border-top: 1px solid var(--line);
}
.footer__liquid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.footer.no-webgl {
  background:
    radial-gradient(120% 90% at 15% 100%, rgba(38, 110, 60, 0.5), transparent 55%),
    radial-gradient(100% 80% at 85% 70%, rgba(23, 72, 40, 0.55), transparent 60%),
    #04140a;
}
.footer__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(6, 9, 7, 0.25) 22%,
      rgba(6, 9, 7, 0.22) 68%, rgba(6, 9, 7, 0.62) 100%);
  pointer-events: none;
}
.footer__content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
}
.eyebrow--light { color: rgba(238, 244, 239, 0.75); }
.footer__title {
  margin: 24px 0 40px;
  font-size: clamp(52px, 9vw, 140px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-shadow: 0 4px 60px rgba(4, 20, 10, 0.6);
}
.footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(80px, 12vh, 150px);
}
.footer__actions .btn--ghost {
  border-color: rgba(238, 244, 239, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.footer__actions .btn--ghost:hover { border-color: var(--ink); color: var(--ink); }

.footer__bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
  padding: 26px 0;
  border-top: 1px solid rgba(238, 244, 239, 0.14);
  font-size: 13px;
  color: rgba(238, 244, 239, 0.8);
}
.footer__powered {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__aoxi img {
  height: 20px;
  width: auto;
  opacity: 0.95;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.footer__aoxi:hover img { opacity: 1; transform: translateY(-2px); }
.footer__meta {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.footer__clock { color: var(--acc-soft); }

.footer__mega {
  position: relative;
  z-index: 2;
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto;
  pointer-events: none;
}
.footer__mega span {
  display: block;
  font-size: clamp(84px, 24.5vw, 380px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.72;
  text-align: center;
  transform: translateY(18%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 244, 239, 0.35);
  transition: -webkit-text-stroke-color 0.6s;
}
.footer:hover .footer__mega span { -webkit-text-stroke-color: rgba(238, 244, 239, 0.6); }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  z-index: 250;
  transform: translate(-50%, 20px);
  width: max-content;
  max-width: min(92vw, 480px);
  text-align: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(10, 15, 11, 0.9);
  border: 1px solid var(--acc-deep);
  color: var(--acc-soft);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s var(--ease-out);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .logo--wide { grid-column: span 2; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .hero {
    align-items: flex-end;
    padding-bottom: 14vh;
  }
  .hero::before {
    background: linear-gradient(0deg, var(--bg) 22%, rgba(6, 9, 7, 0) 62%);
  }
  .hero__globe {
    top: 4vh;
    right: 50%;
    transform: translateX(50%);
    width: min(96vw, 480px);
    height: min(96vw, 480px);
  }
  .hero__glow {
    top: 10vh; right: 50%;
    transform: translateX(50%);
    width: 110vw; height: 110vw;
  }
  .hero__content { max-width: 100%; }
  .hero__title { font-size: clamp(31px, 9.6vw, 64px); }
  .hero__hint { display: none; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card__title { margin-top: 22px; }
  .logos { grid-template-columns: repeat(2, 1fr); }
  .logo--wide { grid-column: span 2; }
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer__meta { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain,
  .marquee__track,
  .marquee__track i,
  .logo__icon,
  .nav__dot,
  .hero__hint i::after { animation: none !important; }
  .loader { transition-duration: 0.01s; }
  .loader__mark span { animation-duration: 0.01s; }
  [data-reveal],
  .hline__in,
  .swap__word,
  .logo__icon svg,
  .ms,
  .gseg { transition-duration: 0.01s !important; transition-delay: 0s !important; }
}
