/* ============================================================
   AKETH PIRATES — Deep Ocean design system
   Static rebuild 2026 — no CMS, no PHP.
   ============================================================ */

:root {
  --abyss: #030b16;
  --deep: #061527;
  --surface: #0b2038;
  --surface-2: #10294a;
  --line: rgba(94, 172, 221, .16);
  --cyan: #38dcff;
  --cyan-soft: rgba(56, 220, 255, .12);
  --teal: #2dd4bf;
  --gold: #ffc94d;
  --text: #e9f3fb;
  --muted: #a3bdd1;
  --font-head: "Play", "Noto Sans", system-ui, sans-serif;
  --font-body: "Inter", "Noto Sans", system-ui, -apple-system, sans-serif;
  --radius: 18px;
  --shadow-1: 0 6px 24px rgba(1, 8, 18, .45);
  --shadow-glow: 0 0 32px rgba(56, 220, 255, .18);
  --maxw: 1180px;
  --nav-h: 74px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--abyss);
  color: var(--text);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* deep-sea layered background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(45, 122, 190, .20), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(24, 90, 157, .16), transparent 55%),
    radial-gradient(1000px 800px at 50% 120%, rgba(8, 46, 84, .5), transparent 70%),
    linear-gradient(180deg, #041020 0%, var(--abyss) 45%, #02070f 100%);
}
body::after { /* faint sonar grid */
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(86, 168, 222, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 168, 222, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 75%);
  pointer-events: none;
}

::selection { background: rgba(56, 220, 255, .35); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; letter-spacing: .02em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--cyan); color: #012; padding: 10px 18px; border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(4, 13, 25, .72);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; height: 100%;
  display: flex; align-items: center; gap: 18px; padding: 0 22px;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { height: 46px; width: auto; }
.brand span {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .08em; color: var(--text); white-space: nowrap;
}
.brand:hover { text-decoration: none; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: block; padding: 9px 13px; border-radius: 10px;
  color: var(--muted); font-size: .93rem; font-weight: 500;
  transition: color .2s, background .2s;
  cursor: pointer;
}
.nav-links a:hover { color: var(--text); background: rgba(86, 168, 222, .1); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--cyan); background: var(--cyan-soft); }

.lang-switch {
  display: flex; border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em;
}
.lang-switch a { padding: 7px 11px; color: var(--muted); cursor: pointer; }
.lang-switch a:hover { text-decoration: none; color: var(--text); background: rgba(86,168,222,.1); }
.lang-switch a.on { background: var(--cyan); color: #02121f; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 10px;
  width: 44px; height: 44px; cursor: pointer; color: var(--text);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(4, 13, 25, .97); border-bottom: 1px solid var(--line);
    padding: 12px 18px 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; font-size: 1rem; }
}

/* ---------- hero (home) ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--nav-h) + 40px) 22px 90px;
  overflow: hidden;
}
.hero-logo { width: min(300px, 62vw); margin-bottom: 26px; filter: drop-shadow(0 8px 40px rgba(56,220,255,.25)); }
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.2rem); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: linear-gradient(100deg, #fff 10%, var(--cyan) 55%, var(--teal) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-wrap: balance;
}
.hero .tagline {
  margin-top: 18px; max-width: 640px; color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.hero-ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--muted); opacity: .7;
}
.scroll-hint svg { width: 26px; height: 26px; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(8px);} }

/* sonar rings behind hero */
.sonar { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.sonar i {
  position: absolute; left: 50%; top: 46%;
  width: 90px; height: 90px; border-radius: 50%;
  border: 1.5px solid rgba(56, 220, 255, .5);
  transform: translate(-50%, -50%) scale(0);
  animation: ping 7s cubic-bezier(.15, .6, .4, 1) infinite;
  opacity: 0;
}
.sonar i:nth-child(2) { animation-delay: 1.75s; }
.sonar i:nth-child(3) { animation-delay: 3.5s; }
.sonar i:nth-child(4) { animation-delay: 5.25s; }
@keyframes ping {
  0% { transform: translate(-50%,-50%) scale(.2); opacity: .8; }
  100% { transform: translate(-50%,-50%) scale(14); opacity: 0; }
}

/* bubbles */
.bubbles { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.bubbles b {
  position: absolute; bottom: -30px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(160,225,255,.5), rgba(56,220,255,.06) 65%);
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  8% { opacity: .8; }
  100% { transform: translateY(-110vh) translateX(30px); opacity: 0; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .05em;
  cursor: pointer; border: 0; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary { background: linear-gradient(120deg, var(--cyan), var(--teal)); color: #02131f; box-shadow: var(--shadow-glow); }
.btn-primary:hover { box-shadow: 0 0 44px rgba(56,220,255,.34); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: rgba(56,220,255,.5); background: var(--cyan-soft); }
.btn svg { width: 18px; height: 18px; }

/* ---------- sections ---------- */
.section { padding: 92px 0; position: relative; }
.section-tight { padding: 56px 0; }
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: .8rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.sec-head .kicker::before, .sec-head .kicker::after {
  content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan));
}
.sec-head .kicker::after { background: linear-gradient(90deg, var(--cyan), transparent); }
.sec-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); text-wrap: balance; }

/* reveal on scroll */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ---------- cards / project grid ---------- */
.grid { display: grid; gap: 22px; }
.projects-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

.card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--surface), var(--deep));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); border-color: rgba(56, 220, 255, .45); box-shadow: var(--shadow-1), var(--shadow-glow); text-decoration: none; }
.card .thumb { aspect-ratio: 1 / 1; overflow: hidden; background: #071626; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .thumb img { transform: scale(1.05); }
.card .card-body { padding: 18px 20px 20px; }
.card h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 6px; }
.card p { font-size: .88rem; color: var(--muted); line-height: 1.55; }
.card .go {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 7px;
  color: var(--cyan); font-size: .85rem; font-weight: 600; letter-spacing: .03em;
}
.card .go svg { width: 15px; height: 15px; transition: transform .2s; }
.card:hover .go svg { transform: translateX(4px); }

/* ---------- prose (article content) ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose p { margin-bottom: 1.15em; color: #cddcea; }
.prose strong { color: var(--text); }
.prose ul, .prose ol { margin: 0 0 1.15em 1.4em; color: #cddcea; }
.prose li { margin-bottom: .45em; }
.prose li::marker { color: var(--cyan); }
.prose h3 { margin: 1.6em 0 .6em; color: var(--cyan); font-size: 1.25rem; }
.prose img { border-radius: var(--radius); margin: 1.4em auto; }

.lead-block {
  border-left: 3px solid var(--cyan);
  background: linear-gradient(90deg, rgba(56,220,255,.07), transparent 70%);
  padding: 22px 26px; border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.6em;
}
.lead-block p:last-child { margin-bottom: 0; }

/* award / highlight panel */
.panel {
  background: linear-gradient(150deg, var(--surface), var(--deep));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 32px; margin: 2em 0; box-shadow: var(--shadow-1);
}
.panel-gold { border-color: rgba(255, 201, 77, .35); background: linear-gradient(150deg, rgba(66,50,12,.45), var(--deep)); }
.panel-gold h3, .panel-gold strong { color: var(--gold); }
.panel h3 { margin-top: 0; }

/* team roster chip */
.roster {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 1.2em 0 0;
  padding: 0; list-style: none;
}
.roster li {
  background: var(--cyan-soft); border: 1px solid var(--line);
  padding: 8px 15px; border-radius: 999px; font-size: .88rem; color: var(--text);
}

/* ---------- page hero (project pages) ---------- */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 84px) 22px 74px;
  text-align: center; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -3;
  background-image: var(--hero-img); background-size: cover; background-position: center;
  filter: brightness(.32) saturate(1.1);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(3,11,22,.35), rgba(3,11,22,.6) 60%, var(--abyss) 100%);
}
.page-hero .badge {
  width: min(190px, 44vw); margin: 0 auto 22px; border-radius: 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.3rem); text-transform: uppercase; letter-spacing: .05em;
  background: linear-gradient(100deg, #fff 20%, var(--cyan) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-wrap: balance;
}
.page-hero .sub { margin-top: 14px; color: var(--muted); max-width: 620px; margin-inline: auto; }
.crumbs { margin-top: 26px; font-size: .84rem; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--cyan); }

/* ---------- gallery ---------- */
.gallery { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.gallery a {
  display: block; border-radius: 14px; overflow: hidden; position: relative;
  border: 1px solid var(--line); aspect-ratio: 4 / 3; background: #071626;
  cursor: zoom-in;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.gallery a:hover img { transform: scale(1.06); filter: brightness(1.1); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(2, 7, 15, .92); backdrop-filter: blur(6px);
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; width: auto; height: auto; border-radius: 12px; box-shadow: 0 20px 80px rgba(0,0,0,.7); }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; background: rgba(11, 32, 56, .8); color: var(--text);
  border: 1px solid var(--line); border-radius: 50%;
  width: 48px; height: 48px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox button:hover { background: var(--surface-2); }
.lightbox button svg { width: 22px; height: 22px; }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* ---------- video embed (lite youtube) ---------- */
.video-wrap { max-width: 860px; margin: 2.2em auto; }
.yt {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius);
  overflow: hidden; cursor: pointer; border: 1px solid var(--line);
  background: #000 center/cover no-repeat; box-shadow: var(--shadow-1);
}
.yt::after { content: ""; position: absolute; inset: 0; background: rgba(2,8,16,.25); transition: background .2s; }
.yt:hover::after { background: rgba(2,8,16,.05); }
.yt .play {
  position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 60px; border-radius: 16px;
  background: rgba(6, 21, 39, .85); border: 1px solid rgba(56,220,255,.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, background .2s ease; box-shadow: var(--shadow-glow);
}
.yt:hover .play { transform: translate(-50%, -50%) scale(1.08); background: rgba(9, 33, 60, .95); }
.yt .play svg { width: 30px; height: 30px; fill: var(--cyan); margin-left: 3px; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- footer ---------- */
.footer {
  margin-top: 60px; border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(6, 21, 39, .6), rgba(2, 7, 14, .95));
  padding: 64px 0 34px;
}
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.3fr 1fr 1fr; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.footer h3 { font-size: 1.02rem; color: var(--cyan); margin-bottom: 16px; letter-spacing: .08em; text-transform: uppercase; }
.footer p, .footer li { color: var(--muted); font-size: .92rem; margin-bottom: 8px; }
.footer strong { color: var(--text); font-weight: 600; }
.footer ul { list-style: none; }
.footer-brand img { height: 74px; margin-bottom: 14px; }
.social { display: flex; gap: 12px; margin-top: 6px; }
.social a {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: color .2s, border-color .2s, transform .2s;
}
.social a:hover { color: var(--cyan); border-color: rgba(56,220,255,.5); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; }
.copyright {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line);
  text-align: center; color: #6c8299; font-size: .82rem;
}

/* wave divider */
.wave { display: block; width: 100%; height: 70px; margin-bottom: -1px; color: rgba(56,220,255,.08); }

/* misc */
.center { text-align: center; }
.mt-2 { margin-top: 2em; }
.logo-inline { max-width: 320px; margin: 2em auto 0; }

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  body { font-size: 16px; }
  .panel { padding: 22px 20px; }
}
@media (max-width: 520px) {
  .brand span { display: none; }
  .nav-inner { gap: 10px; }
  .brand img { height: 42px; }
}

/* hero background videos */
.hero-video, .page-hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2; pointer-events: none;
}
.hero-video { opacity: .45; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(180deg, rgba(3,11,22,.25), rgba(3,11,22,.55) 70%, var(--abyss) 100%);
}
.page-hero-video { filter: brightness(.38) saturate(1.1); }
@media (prefers-reduced-motion: reduce) { .hero-video, .page-hero-video { display: none; } }

/* ---------- team section (about layout) ---------- */
.team-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; gap: 34px; } }
.team-copy .sec-head { text-align: left; margin-bottom: 26px; }
.team-copy .sec-head .kicker::before { display: none; }
.team-copy p { margin-bottom: 1.1em; color: #cddcea; }
.team-copy strong { color: var(--text); }
.team-copy .hl { color: var(--cyan); font-weight: 600; }
.team-photo { position: relative; }
.team-photo img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-1), var(--shadow-glow);
  transform: rotate(1.2deg);
}
.team-photo::before {
  content: ""; position: absolute; inset: -22px -18px auto auto; width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(56,220,255,.22), transparent 65%);
  z-index: -1;
}
.team-photo .badge-float {
  position: absolute; top: -26px; left: -18px; width: 92px; height: auto;
  filter: drop-shadow(0 6px 22px rgba(56,220,255,.35));
  transform: rotate(-6deg);
}

/* ---------- feature cards ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  background: linear-gradient(160deg, var(--surface), var(--deep));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-1);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.feature:hover { transform: translateY(-5px); border-color: rgba(56,220,255,.4); box-shadow: var(--shadow-1), var(--shadow-glow); }
.feature .fi {
  width: 58px; height: 58px; border-radius: 16px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
}
.feature .fi svg { width: 30px; height: 30px; }
.fi-cyan { background: rgba(56,220,255,.12); color: var(--cyan); border: 1px solid rgba(56,220,255,.3); }
.fi-teal { background: rgba(45,212,191,.12); color: var(--teal); border: 1px solid rgba(45,212,191,.3); }
.fi-gold { background: rgba(255,201,77,.12); color: var(--gold); border: 1px solid rgba(255,201,77,.3); }
.feature h3 { font-size: 1.12rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: .93rem; line-height: 1.6; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chips span {
  font-family: var(--font-head); font-size: .74rem; letter-spacing: .04em; font-weight: 700;
  padding: 6px 11px; border-radius: 999px;
  background: rgba(255,201,77,.1); color: var(--gold); border: 1px solid rgba(255,201,77,.28);
}

/* ---------- stats bar ---------- */
.stats-bar {
  margin-top: 56px; border-radius: 22px;
  background: linear-gradient(120deg, rgba(9, 30, 55, .9), rgba(5, 17, 33, .95));
  border: 1px solid var(--line); box-shadow: var(--shadow-1), inset 0 0 60px rgba(56,220,255,.05);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 30px 18px;
}
@media (max-width: 900px) { .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 26px 0; } }
.stat { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 0 12px; }
.stats-bar .stat + .stat { border-left: 1px solid var(--line); }
@media (max-width: 900px) { .stats-bar .stat:nth-child(3) { border-left: none; } }
.stat svg { width: 34px; height: 34px; color: var(--cyan); flex-shrink: 0; }
.stat .num {
  font-family: var(--font-head); font-weight: 700; font-size: 1.75rem; line-height: 1.1;
  background: linear-gradient(100deg, #fff, var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  white-space: nowrap;
}
.stat .lbl { color: var(--muted); font-size: .82rem; line-height: 1.35; }
