/* ==========================================================================
   CryptoWire — design system & components
   Fonts: Orbitron (display), Exo (headings/UI), Josefin Sans (body)
   ========================================================================== */


/* ---------- fonts (self-hosted, variable) ---------- */
@font-face { font-family: "Exo"; font-style: normal; font-weight: 400 800; font-display: swap; src: url("../fonts/exo-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Exo"; font-style: normal; font-weight: 400 800; font-display: swap; src: url("../fonts/exo-latin-ext.woff2") format("woff2"); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Josefin Sans"; font-style: normal; font-weight: 300 700; font-display: swap; src: url("../fonts/josefin-sans-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Josefin Sans"; font-style: normal; font-weight: 300 700; font-display: swap; src: url("../fonts/josefin-sans-latin-ext.woff2") format("woff2"); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Orbitron"; font-style: normal; font-weight: 500 800; font-display: swap; src: url("../fonts/orbitron-latin.woff2") format("woff2"); }

/* ---------- tokens ---------- */
:root {
  --f-display: "Orbitron", "Exo", system-ui, sans-serif;
  --f-head: "Exo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Josefin Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-ar: "Noto Kufi Arabic", "Segoe UI", Tahoma, sans-serif;

  --bg: #f4f5fa;
  --bg-2: #eceef6;
  --surface: #ffffff;
  --surface-2: #f8f9fd;
  --ink: #0a0c1b;
  --ink-2: #2d3250;
  --muted: #62688a;
  --faint: #9aa0b8;
  --line: #e3e6f0;
  --line-2: #d2d7e6;

  --brand: #3647ff;
  --brand-hi: #5a68ff;
  --brand-lo: #2b3bed;
  --brand-ink: #2a37e0;
  --brand-soft: #eef0ff;
  --brand-soft-2: #dde1ff;
  --cyan: #0ab4e0;
  --up: #2b3bed;
  --down: #e5484d;

  --grad: linear-gradient(95deg, #2b3bed 0%, #3647ff 45%, #0aa6d8 100%);
  --grad-btn: linear-gradient(180deg, #4b5aff 0%, #2f3ff0 100%);

  --r-sm: 8px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --sh-1: 0 1px 2px rgba(16, 20, 56, .05), 0 2px 8px -2px rgba(16, 20, 56, .06);
  --sh-2: 0 2px 4px rgba(16, 20, 56, .04), 0 18px 40px -18px rgba(16, 20, 56, .22);
  --sh-3: 0 40px 80px -30px rgba(20, 28, 90, .35);

  --header-h: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: light;
}

[data-theme="dark"],
[data-theme-lock="dark"] {
  --bg: #060816;
  --bg-2: #0a0d21;
  --surface: #0d1027;
  --surface-2: #0b0e23;
  --ink: #eef0ff;
  --ink-2: #c6cbe8;
  --muted: #8e94bb;
  --faint: #5d6389;
  --line: rgba(148, 160, 255, .12);
  --line-2: rgba(148, 160, 255, .22);

  --brand: #4f5dff;
  --brand-hi: #7a86ff;
  --brand-ink: #93a0ff;
  --brand-soft: rgba(79, 93, 255, .14);
  --brand-soft-2: rgba(79, 93, 255, .26);
  --cyan: #3bd9ff;
  --up: #7c88ff;
  --down: #ff6b70;

  --grad: linear-gradient(95deg, #8e9aff 0%, #5a68ff 45%, #3bd9ff 100%);

  --sh-1: 0 1px 2px rgba(0, 0, 0, .3), 0 2px 8px -2px rgba(0, 0, 0, .35);
  --sh-2: 0 2px 4px rgba(0, 0, 0, .2), 0 22px 44px -18px rgba(0, 0, 0, .7);
  --sh-3: 0 40px 80px -30px rgba(0, 0, 0, .8);
  color-scheme: dark;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font: 400 17px/1.65 var(--f-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip; /* clip, unlike hidden, keeps position: sticky working */
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--f-head); color: var(--ink); margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }
::selection { background: var(--brand); color: #fff; }
:focus-visible { outline: 2px solid var(--brand-hi); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 10px; font: 600 14px var(--f-head); }
.skip:focus { top: 12px; }

.ic { width: 20px; height: 20px; flex: none; }
.ic--xs { width: 14px; height: 14px; }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 16px;
  font: 600 11.5px/1 var(--f-display);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--brand-ink);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 2px;
  background: var(--grad-btn); transform: rotate(45deg);
  box-shadow: 0 0 12px var(--brand);
}

.live-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-hi); flex: none; }
.live-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: inherit; animation: ping 1.8s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3); opacity: 0; } }

/* ---------- buttons ---------- */
.btn {
  --h: 46px;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  height: var(--h); padding: 0 20px;
  border-radius: 12px; border: 1px solid transparent;
  font: 600 15px/1 var(--f-head); letter-spacing: .01em; white-space: nowrap;
  transition: background .25s, color .25s, border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.btn .ic { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover .ic:last-child:not(:first-child) { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--sm { --h: 38px; padding: 0 14px; font-size: 14px; border-radius: 10px; }
.btn--lg { --h: 54px; padding: 0 26px; font-size: 16px; border-radius: 14px; }
.btn--block { width: 100%; }
.btn--primary {
  color: #fff; background: var(--grad-btn);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 10px 26px -10px rgba(54, 71, 255, .75);
}
.btn--primary:hover { background: linear-gradient(180deg, #5d6bff 0%, #3647ff 100%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 14px 32px -10px rgba(54, 71, 255, .9); }
.btn--glass { color: #fff; background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .16); backdrop-filter: blur(10px); }
.btn--glass:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .3); }
.btn--outline { color: var(--ink); border-color: var(--line-2); background: var(--surface); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand-ink); }
.btn--ghost { color: var(--ink-2); }
.btn--ghost:hover { background: var(--brand-soft); color: var(--brand-ink); }

.icon-btn {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  color: var(--ink-2); transition: background .2s, color .2s;
}
.icon-btn:hover { background: var(--brand-soft); color: var(--ink); }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font: 600 15px var(--f-head); color: var(--brand-ink); white-space: nowrap; }
.link-arrow .ic { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover .ic { transform: translateX(4px); }

/* ---------- logo (placeholder) ---------- */
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); flex: none; }
.logo__mark { width: 34px; height: 34px; filter: drop-shadow(0 4px 12px rgba(54, 71, 255, .45)); }
.logo__word { font: 700 17px/1 var(--f-display); letter-spacing: .08em; }
.logo__word b { font-weight: 800; color: var(--brand-hi); }
.logo__word i { font-style: normal; font-weight: 500; color: var(--muted); font-size: .78em; letter-spacing: .04em; margin-left: 1px; }

/* ---------- topbar ---------- */
.topbar { background: #03040f; border-bottom: 1px solid rgba(124, 136, 255, .1); color: var(--ink-2); font: 500 13px/1 var(--f-head); position: relative; z-index: 51; }
.topbar__in { display: flex; align-items: center; gap: 18px; height: 38px; }
.topbar__live { display: inline-flex; align-items: center; gap: 8px; font: 600 10px/1 var(--f-display); letter-spacing: .18em; text-transform: uppercase; color: #fff; flex: none; }
.topbar__ticker { flex: 1; min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 40px, #000 calc(100% - 40px), transparent); }
.ticker__track { display: flex; gap: 28px; width: max-content; animation: marquee 60s linear infinite; }
.topbar__ticker:hover .ticker__track { animation-play-state: paused; }
.tick { display: inline-flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.tick b { color: #fff; font-weight: 700; letter-spacing: .02em; }
.tick__p { font-variant-numeric: tabular-nums; }
.tick__c { font-size: 12px; font-variant-numeric: tabular-nums; color: var(--muted); }
.tick__c.is-up { color: #2fd394; } /* market convention: green up, red down */
.tick__c.is-down { color: var(--down); }
.topbar__meta { display: flex; gap: 20px; flex: none; }
.topbar__meta a { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); transition: color .2s; }
.topbar__meta a:hover { color: #fff; }
.topbar__meta .ic { width: 14px; height: 14px; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: #05071a;
  border-bottom: 1px solid rgba(124, 136, 255, .1);
  transition: background .3s, box-shadow .3s;
  --ink: #eef0ff; --ink-2: #c6cbe8; --muted: #8e94bb; --brand-soft: rgba(79, 93, 255, .16);
}
.header.is-stuck { background: rgba(5, 7, 26, .9); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px); box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .6); }
.header__in { display: flex; align-items: center; gap: 28px; height: 100%; }
.nav { margin-inline: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 5px;
  height: 40px; padding: 0 14px; border-radius: 10px;
  font: 600 15px/1 var(--f-head); color: rgba(226, 230, 255, .78);
  transition: color .2s, background .2s;
}
.nav__link:hover, .nav__item.is-open > .nav__link { color: #fff; background: rgba(255, 255, 255, .05); }
.nav__item.is-active > .nav__link { color: #fff; }
.nav__item.is-active > .nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: -16px; height: 2px; border-radius: 2px;
  background: var(--grad-btn); box-shadow: 0 0 14px 1px rgba(90, 104, 255, .9);
}
.nav__link .ic { transition: transform .25s; }
.nav__item.is-open .nav__link .ic { transform: rotate(180deg); }
.nav__sub {
  position: absolute; top: calc(100% + 14px); left: 50%; width: 320px; padding: 8px;
  background: rgba(13, 16, 39, .97); border: 1px solid rgba(124, 136, 255, .16); border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7);
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
  transition: opacity .2s, transform .25s var(--ease), visibility .2s;
}
.nav__sub::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.nav__item.has-sub:hover .nav__sub, .nav__item.is-open .nav__sub { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__sub a { display: block; padding: 12px 14px; border-radius: 10px; transition: background .2s; }
.nav__sub a:hover { background: rgba(90, 104, 255, .14); }
.nav__sub strong { display: block; font: 600 15px/1.2 var(--f-head); color: #fff; }
.nav__sub span { display: block; margin-top: 3px; font-size: 14px; color: var(--muted); }
.header__tools { display: flex; align-items: center; gap: 4px; }
.header__cta { margin-left: 8px; }
.header__burger { display: none; }
.ic--sun { display: none; }
[data-theme="dark"] .ic--sun { display: block; }
[data-theme="dark"] .ic--moon { display: none; }

/* drawer + search */
.drawer {
  position: fixed; inset: 0; z-index: 120; overflow-y: auto;
  display: flex; flex-direction: column; gap: 22px;
  padding: 16px clamp(16px, 5vw, 32px) 32px;
  background: #05071a; color: #fff;
  --ink: #eef0ff; --ink-2: #c6cbe8; --muted: #8e94bb; --line: rgba(148, 160, 255, .12); --brand-soft: rgba(79, 93, 255, .16);
  animation: fadeIn .25s var(--ease);
}
.drawer__head { display: flex; justify-content: space-between; align-items: center; height: 56px; }
.drawer__nav { display: grid; }
.drawer__nav a { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font: 700 22px/1.2 var(--f-head); }
.drawer .socials { justify-content: center; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.search-overlay {
  position: fixed; inset: 0; z-index: 130;
  display: flex; flex-direction: column; align-items: center; padding-top: 18vh; padding-inline: 16px;
  background: rgba(4, 6, 20, .82); backdrop-filter: blur(12px);
  animation: fadeIn .2s var(--ease);
}
.search-overlay__form {
  display: flex; align-items: center; gap: 14px; width: min(760px, 100%);
  height: 68px; padding: 0 22px; border-radius: 18px;
  background: #0d1027; border: 1px solid rgba(124, 136, 255, .3); color: #fff;
  box-shadow: 0 30px 80px -20px rgba(54, 71, 255, .45);
}
.search-overlay__form .ic { color: #8e94bb; }
.search-overlay__form input { flex: 1; min-width: 0; height: 100%; background: none; border: 0; outline: 0; color: #fff; font: 500 20px var(--f-head); }
.search-overlay__form kbd { font: 600 11px var(--f-display); color: #8e94bb; border: 1px solid rgba(124, 136, 255, .25); border-radius: 6px; padding: 5px 7px; }
.search-overlay__hints { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 18px; width: min(760px, 100%); font: 500 14px var(--f-head); color: #8e94bb; }
.search-overlay__hints a { padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(124, 136, 255, .2); color: #c6cbe8; }
.search-overlay__hints a:hover { border-color: #5a68ff; color: #fff; }

/* socials */
.socials { display: flex; flex-wrap: wrap; gap: 8px; }
.socials a {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .03); color: var(--ink-2);
  transition: color .2s, border-color .2s, background .2s, transform .25s var(--ease);
}
.socials a:hover { color: #fff; background: var(--brand); border-color: var(--brand); transform: translateY(-2px); }
.socials .ic { width: 17px; height: 17px; }

/* ---------- sections ---------- */
.section { position: relative; padding-block: clamp(72px, 9vw, 124px); }
.section--dark { background: #060816; color: var(--ink); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px 48px; margin-bottom: clamp(28px, 4vw, 48px); }
.sec-head__text { max-width: 740px; }
.sec-head--center { justify-content: center; text-align: center; }
.sec-head--center .sec-head__text { margin-inline: auto; }
.sec-title { font: 700 clamp(1.85rem, 3.3vw, 2.9rem)/1.08 var(--f-head); letter-spacing: -.022em; text-wrap: balance; }
.sec-head p { margin-top: 14px; font-size: 18px; color: var(--muted); text-wrap: pretty; }

/* ==========================================================================
   HOME — hero + world map
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: #04061a; color: var(--ink); padding-top: clamp(31px, 4.2vw, 53px); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
  background:
    radial-gradient(120% 70% at 50% 0%, transparent 55%, rgba(0, 0, 0, .55) 100%),
    linear-gradient(180deg, #02030b 0%, #050823 42%, #03040f 100%);
}
/* Slow-moving light ribbons at the top of the hero. */
.aurora { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .6; mix-blend-mode: screen; will-change: transform; }
.aurora--1 { width: 62vw; max-width: 1100px; height: 420px; top: -230px; left: 12%;
  background: conic-gradient(from 200deg at 50% 50%, #3647ff, #18d6ff 30%, #2b3bed 55%, #6a3dff 80%, #3647ff);
  animation: auroraA 26s ease-in-out infinite alternate; }
.aurora--2 { width: 46vw; max-width: 820px; height: 360px; top: -190px; right: 4%;
  background: conic-gradient(from 20deg at 50% 50%, #6a3dff, #3647ff 40%, #0fb8ff 70%, #6a3dff);
  opacity: .42; animation: auroraB 32s ease-in-out infinite alternate; }
.aurora--3 { width: 38vw; max-width: 640px; height: 300px; top: 34%; left: 52%;
  background: radial-gradient(closest-side, rgba(54, 71, 255, .9), rgba(24, 214, 255, .25) 60%, transparent);
  opacity: .22; filter: blur(90px); animation: auroraC 20s ease-in-out infinite alternate; }
@keyframes auroraA { from { transform: translate3d(-6%, 0, 0) rotate(-6deg) scale(1); } to { transform: translate3d(8%, 40px, 0) rotate(8deg) scale(1.12); } }
@keyframes auroraB { from { transform: translate3d(4%, 10px, 0) rotate(10deg); } to { transform: translate3d(-10%, 50px, 0) rotate(-6deg) scale(1.15); } }
@keyframes auroraC { from { transform: translate3d(-50%, 0, 0) scale(.9); } to { transform: translate3d(-58%, -30px, 0) scale(1.1); } }
/* Planet-edge horizon: a huge circle whose glowing rim arcs behind the stats bar. */
.hero__horizon { --hz: max(2100px, 150vw); position: absolute; left: 50%; top: calc(100% - 205px); width: var(--hz); height: var(--hz); margin-left: calc(var(--hz) / -2); border-radius: 50%;
  background: radial-gradient(closest-side, #02030b 96%, #050a2a 100%); }
.hero__horizon::before { content: ""; position: absolute; inset: -1.5px; z-index: -1; border-radius: 50%;
  background: linear-gradient(90deg, transparent 26%, rgba(90, 104, 255, .7) 40%, #d4f7ff 50%, rgba(90, 104, 255, .7) 60%, transparent 74%); }
.hero__horizon::after { content: ""; position: absolute; inset: -60px; z-index: -2; border-radius: 50%; filter: blur(50px); opacity: .75;
  background: linear-gradient(90deg, transparent 30%, rgba(54, 71, 255, .8) 44%, rgba(24, 214, 255, .7) 50%, rgba(54, 71, 255, .8) 56%, transparent 70%); }
/* Decorative pattern layered over the lighting (chosen in the Customizer). */
.hero__pattern { position: absolute; left: 0; top: 0; width: 100%; height: min(100%, 1020px); object-fit: cover; object-position: center top; pointer-events: none;
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 88%); -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 88%); }
@media (max-width: 760px) { .hero__pattern { height: 760px; } }
.grain { position: absolute; inset: 0; opacity: .09; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 180px 180px; }
.hero__head { position: relative; text-align: center; max-width: 1040px; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px; height: 34px; padding: 0 16px 0 12px; border-radius: 999px;
  font: 500 13.5px/1 var(--f-head); color: #d6dbff;
  background: linear-gradient(180deg, rgba(79, 93, 255, .18), rgba(79, 93, 255, .06));
  border: 1px solid rgba(124, 136, 255, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.hero__pill-sep { width: 4px; height: 4px; border-radius: 50%; background: #5a68ff; }
.hero__title {
  margin: 24px auto 18px; max-width: 21ch;
  font: 800 clamp(1.9rem, 4.32vw, 3.68rem)/1.04 var(--f-head); letter-spacing: -.03em; color: #fff; text-wrap: balance;
}
.hero__rotator { display: inline-flex; align-items: center; gap: 14px; font: 500 clamp(11px, 1.1vw, 14px)/1.4 var(--f-display); letter-spacing: .2em; text-transform: uppercase; color: #9fe9ff; }
.hero__rotator ul { display: grid; }
.hero__rotator li { grid-area: 1 / 1; opacity: 0; transform: translateY(8px); filter: blur(4px); transition: opacity .5s, transform .6s var(--ease), filter .5s; white-space: nowrap; }
.hero__rotator li.is-active { opacity: 1; transform: none; filter: none; }
.hero__rotator-br { width: 28px; height: 1px; background: linear-gradient(90deg, transparent, #5a68ff); font-size: 0; }
.hero__rotator-br:last-child { transform: scaleX(-1); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }

.hero__map { position: relative; width: 100%; max-width: 1680px; margin: clamp(26px, 3.6vw, 44px) auto 0; padding-inline: clamp(8px, 2vw, 28px); }

.wm { position: relative; }
.wm__stage { position: relative; aspect-ratio: 1800 / 660; }
.wm__dots, .wm__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.wm__dots { opacity: .95; mask-image: radial-gradient(80% 90% at 50% 45%, #000 55%, transparent 100%); }
.wm__svg { overflow: visible; }
.wm__grid line { stroke: rgba(124, 136, 255, .05); stroke-width: 1; vector-effect: non-scaling-stroke; }
.wm-beam { fill: none; stroke-width: 2.2; stroke-linecap: round; vector-effect: non-scaling-stroke; stroke-dasharray: .3 1.4; stroke-dashoffset: .3; opacity: 0; }
.wm-beam--en { stroke: #a5afff; filter: drop-shadow(0 0 4px #5a68ff); }
.wm-beam--ar { stroke: #9fe9ff; filter: drop-shadow(0 0 4px #3bd9ff); }
.wm-beam.is-live { animation: beam 3.2s cubic-bezier(.33, 0, .25, 1) forwards; }
@keyframes beam { 0% { stroke-dashoffset: .3; opacity: 0; } 8% { opacity: 1; } 88% { opacity: 1; } 100% { stroke-dashoffset: -1.1; opacity: 0; } }
.wm-pin { transform-box: fill-box; transform-origin: center; transition: transform .4s var(--ease); }
.wm-pin--en { fill: #6f7bff; }
.wm-pin--ar { fill: #6f7bff; }
.wm-pin.is-live { transform: scale(2); }
.wm__hub-core { fill: #fff; filter: drop-shadow(0 0 8px #7c88ff) drop-shadow(0 0 18px #3647ff); }
.wm__hub-ring { fill: none; stroke: #7c88ff; stroke-width: 1.5; vector-effect: non-scaling-stroke; transform-box: fill-box; transform-origin: center; animation: hubRing 3s ease-out infinite; }
.wm__hub-ring--2 { animation-delay: 1.5s; }
@keyframes hubRing { 0% { transform: scale(.5); opacity: .9; } 100% { transform: scale(3.4); opacity: 0; } }
.wm__hub-label {
  position: absolute; z-index: 2; transform: translate(-50%, -190%);
  padding: 5px 10px; border-radius: 7px; white-space: nowrap;
  font: 600 clamp(8px, .7vw, 11px)/1 var(--f-display); letter-spacing: .14em; text-transform: uppercase; color: #fff;
  background: linear-gradient(180deg, #4b5aff, #2f3ff0); box-shadow: 0 6px 20px -4px rgba(54, 71, 255, .8);
}
.wm__hub-label::after { content: ""; position: absolute; left: 50%; top: 100%; width: 1px; height: 10px; background: linear-gradient(#5a68ff, transparent); }

.wm__tiles { position: absolute; inset: 0; }
.wm-tile {
  position: absolute; width: 10%; aspect-ratio: 3 / 1;
  display: grid; place-items: center; padding: 0; overflow: hidden;
  background: #fff; border-radius: clamp(4px, .45vw, 9px);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .5), 0 10px 26px -10px rgba(0, 0, 0, .85);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  animation: tileIn .7s var(--ease) both; animation-delay: calc(var(--d, 0) * 1ms);
}
.wm-tile::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 2px; border-radius: 0 2px 2px 0; background: #5a68ff; }
.wm-tile--ar::before { background: #16c3ef; }
.wm-tile::after { content: ""; position: absolute; left: 50%; top: 100%; width: 1px; height: 15%; background: rgba(165, 175, 255, .55); }
.wm-tile--ar::after { background: rgba(59, 217, 255, .55); }
.wm-tile img { width: 100%; height: 100%; object-fit: contain; }
.wm-tile__ar { font: 700 clamp(7px, .98vw, 16px)/1.1 var(--f-ar); color: #0a0c1b; white-space: nowrap; }
.wm-tile:hover, .wm-tile.is-live { z-index: 2; transform: translate(-50%, -50%) scale(1.12); }
.wm-tile.is-live { box-shadow: 0 0 0 2px #6f7bff, 0 0 26px 2px rgba(90, 104, 255, .75); }
.wm-tile--ar.is-live { box-shadow: 0 0 0 2px #3bd9ff, 0 0 26px 2px rgba(59, 217, 255, .65); }
@keyframes tileIn { from { opacity: 0; transform: translate(-50%, -30%) scale(.9); } to { opacity: 1; transform: translate(-50%, -50%); } }
.wm__rails { display: none; }

.hero__stats { position: relative; z-index: 2; margin-top: clamp(-8px, -1vw, 0px); padding-bottom: clamp(40px, 5vw, 64px); }
.stats { display: grid; grid-template-columns: repeat(5, 1fr); }
.stats--hero {
  border-radius: 22px; overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 20, 60, .72), rgba(6, 8, 26, .82));
  border: 1px solid rgba(124, 136, 255, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 30px 60px -30px rgba(0, 0, 0, .8);
  backdrop-filter: blur(14px);
}
.stat { position: relative; display: flex; flex-direction: column; gap: 8px; padding: clamp(18px, 2.2vw, 28px) clamp(16px, 2vw, 28px); }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 24%; bottom: 24%; width: 1px; background: linear-gradient(transparent, rgba(124, 136, 255, .3), transparent); }
.stat__num { font: 700 clamp(1.5rem, 2.5vw, 2.3rem)/1 var(--f-display); color: #fff; letter-spacing: .01em; font-variant-numeric: tabular-nums; }
.stat__num small { font-size: .55em; font-weight: 600; color: var(--brand-hi); margin-left: 2px; }
.stat__label { font: 500 14px/1.2 var(--f-head); color: var(--muted); }

/* ---------- partners ---------- */
.partners { background: var(--surface); border-bottom: 1px solid var(--line); }
.partners__in { display: flex; align-items: center; gap: clamp(20px, 4vw, 56px); padding-block: 26px; }
.partners__label { flex: none; font: 700 15px/1.3 var(--f-head); color: var(--ink); }
.partners__label span { font-weight: 500; font-size: 14px; color: var(--muted); }
.marquee { position: relative; flex: 1; min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 18px; width: max-content; animation: marquee var(--marquee-dur, 40s) linear infinite; }
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.partners .marquee img { width: 180px; height: 60px; object-fit: contain; border-radius: 10px; background: #fff; border: 1px solid var(--line); padding: 0; filter: grayscale(1); opacity: .75; transition: filter .3s, opacity .3s; }
.partners .marquee a:hover img { filter: none; opacity: 1; }

/* ---------- tabs ---------- */
.tabs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; margin-bottom: 28px; padding-bottom: 2px; }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: none; height: 40px; padding: 0 18px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  font: 600 14px/1 var(--f-head); color: var(--ink-2);
  transition: background .2s, color .2s, border-color .2s;
}
.tab:hover { border-color: var(--line-2); color: var(--ink); }
.tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--bg); }
[data-theme="dark"] .tab.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------- cards ---------- */
.chip {
  position: relative; z-index: 2; display: inline-flex; align-items: center;
  height: 24px; padding: 0 9px; border-radius: 6px;
  background: var(--brand-soft); color: var(--brand-ink);
  font: 700 10.5px/1 var(--f-head); letter-spacing: .07em; text-transform: uppercase; white-space: nowrap;
  transition: background .2s, color .2s;
}
.chip:hover { background: var(--brand); color: #fff; }
.meta, .card__top time { font: 500 13px/1 var(--f-head); color: var(--muted); font-variant-numeric: tabular-nums; }

.card {
  position: relative; display: flex; flex-direction: column; min-width: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--line-2); }
.card__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }
.card__body { display: flex; flex-direction: column; gap: 12px; padding: 20px 22px 24px; flex: 1; }
.card__top { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; }
.card__top time { white-space: nowrap; }
.card__title { font: 700 18.5px/1.32 var(--f-head); letter-spacing: -.01em; text-wrap: pretty; }
.card__title a { background-image: linear-gradient(currentColor, currentColor); background-size: 0 1px; background-repeat: no-repeat; background-position: 0 100%; transition: background-size .4s var(--ease), color .2s; }
.card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card:hover .card__title a { color: var(--brand-ink); }
.card__ex { color: var(--muted); font-size: 16px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.card--lead .card__media { aspect-ratio: 16 / 9.4; }
.card--lead .card__body { padding: 26px 30px 30px; gap: 14px; }
.card--lead .card__title { font-size: clamp(1.45rem, 2.2vw, 2rem); line-height: 1.18; letter-spacing: -.02em; }
.card--lead .card__ex { -webkit-line-clamp: 3; font-size: 17px; }

.card--row { flex-direction: row; align-items: center; gap: 18px; padding: 16px 0; background: none; border: 0; border-radius: 0; overflow: visible; }
.card--row + .card--row { border-top: 1px solid var(--line); }
.card--row:hover { transform: none; box-shadow: none; }
.card--row .card__media { flex: none; width: 38%; max-width: 168px; aspect-ratio: 4 / 3; border-radius: 12px; }
.card--row .card__body { padding: 0; gap: 9px; }
.card--row .card__title { font-size: 16.5px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.card--overlay { justify-content: flex-end; min-height: 100%; border: 0; color: #fff; background: #0a0d24; }
.card--overlay .card__media { position: absolute; inset: 0; aspect-ratio: auto; }
.card--overlay .card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4, 6, 26, 0) 30%, rgba(4, 6, 26, .55) 55%, rgba(4, 6, 26, .95) 100%); }
.card--overlay .card__body { flex: none; margin-top: auto; position: relative; z-index: 1; padding: clamp(22px, 3vw, 36px); pointer-events: none; }
.card--overlay .card__body a { pointer-events: auto; }
.card--overlay .card__title, .card--overlay .card__title a { color: #fff; }
.card--overlay:hover .card__title a { color: #fff; }
.card--overlay .card__top time { color: rgba(255, 255, 255, .72); }
.card--overlay .chip { background: rgba(255, 255, 255, .14); color: #fff; backdrop-filter: blur(8px); }
.card--overlay .card__ex { color: rgba(255, 255, 255, .78); }

.card--text { background: none; border: 0; border-radius: 0; overflow: visible; }
.card--text:hover { transform: none; box-shadow: none; }
.card--text .card__body { padding: 0; }

/* newsroom block on home */
.section--newsroom { background: var(--bg); }
.nr-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 32px; align-items: stretch; }
.nr-grid > .card--lead .card__media { flex: 1 1 auto; aspect-ratio: auto; min-height: 240px; }
.nr-grid > .card--lead .card__title, .nr-row .card__title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nr-grid > .card--lead .card__ex, .nr-row .card__ex { -webkit-line-clamp: 2; }
.nr-grid > .card--lead .card__body { flex: none; }
.nr-side { display: flex; flex-direction: column; justify-content: space-between; margin-block: -16px; }
.nr-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 32px; }
.nr-panel.is-active { animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- how it works ---------- */
.how { overflow: hidden; }
.how .container { position: relative; }
.steps { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.steps__line { list-style: none; pointer-events: none; position: absolute; left: 12%; right: 12%; top: 86px; height: 1px; background: linear-gradient(90deg, transparent, rgba(124, 136, 255, .45), transparent); }
.steps__line i { position: absolute; top: -1px; left: 0; width: 120px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, transparent, #9fe9ff, transparent); animation: travel 4s var(--ease) infinite; }
@keyframes travel { from { left: 0; } to { left: calc(100% - 120px); } }
.step {
  position: relative; padding: 26px 26px 30px; border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
  border: 1px solid rgba(124, 136, 255, .15);
  transition: border-color .3s, transform .4s var(--ease), background .3s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(124, 136, 255, .4); background: linear-gradient(180deg, rgba(79, 93, 255, .12), rgba(79, 93, 255, .02)); }
.step__n { position: absolute; top: 24px; right: 24px; font: 700 13px/1 var(--f-display); color: rgba(165, 175, 255, .5); letter-spacing: .1em; }
.step__icon {
  position: relative; display: grid; place-items: center; width: 60px; height: 60px; margin: 12px 0 26px;
  border-radius: 16px; color: #9fe9ff;
  background: linear-gradient(160deg, rgba(90, 104, 255, .35), rgba(16, 20, 60, .9));
  box-shadow: inset 0 0 0 1px rgba(159, 233, 255, .2), 0 10px 30px -10px rgba(54, 71, 255, .8);
}
.step__icon .ic { width: 26px; height: 26px; }
.step h3 { font: 700 20px/1.25 var(--f-head); color: #fff; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 16px; }

/* ---------- capabilities ---------- */
.caps { background: var(--bg); }
.caps__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.cap {
  position: relative; display: flex; flex-direction: column; gap: 12px; padding: 30px; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.cap:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--brand-soft-2); }
.cap__icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 8px; border-radius: 14px; background: var(--brand-soft); color: var(--brand-ink); }
.cap__icon .ic { width: 24px; height: 24px; }
.cap h3 { font: 700 20px/1.25 var(--f-head); letter-spacing: -.01em; }
.cap p { color: var(--muted); font-size: 16px; }
.cap--wide { grid-column: span 2; background: linear-gradient(135deg, var(--surface) 40%, var(--brand-soft) 100%); }
.cap--wide h3 { font-size: 26px; }
.cap--wide p { max-width: 560px; font-size: 17px; }
.pipeline { display: flex; flex-wrap: wrap; align-items: center; gap: 0; margin-top: auto; padding-top: 22px; }
.pipeline__node { display: inline-flex; align-items: center; height: 34px; padding: 0 14px; border-radius: 10px; font: 600 10.5px/1 var(--f-display); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); background: var(--surface); border: 1px solid var(--line-2); white-space: nowrap; }
.pipeline__node.is-ai { color: #fff; background: var(--grad-btn); border-color: transparent; box-shadow: 0 6px 18px -6px rgba(54, 71, 255, .8); }
.pipeline__wire { position: relative; width: 34px; height: 2px; background: var(--line-2); overflow: hidden; }
.pipeline__wire i { position: absolute; inset: 0; width: 40%; background: var(--brand); animation: wire 1.6s linear infinite; }
.pipeline__wire:nth-of-type(4) i { animation-delay: .5s; }
.pipeline__wire:nth-of-type(6) i { animation-delay: 1s; }
@keyframes wire { from { transform: translateX(-100%); } to { transform: translateX(250%); } }

/* ---------- network (home) ---------- */
.netw { background: var(--surface-2); border-block: 1px solid var(--line); overflow: hidden; }
.netw__in { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.netw__lead { margin-top: 18px; font-size: 18px; color: var(--muted); max-width: 520px; }
.tier-bars { display: grid; gap: 14px; margin: 30px 0 34px; max-width: 520px; }
.tier-bars li { display: grid; grid-template-columns: auto 110px 1fr 36px; align-items: center; gap: 14px; }
.tb__label { font: 600 14px var(--f-head); color: var(--ink-2); }
.tb__bar { height: 8px; border-radius: 8px; background: var(--bg-2); overflow: hidden; }
.tb__bar i { display: block; height: 100%; border-radius: inherit; background: var(--grad-btn); transform-origin: left; animation: grow 1.4s var(--ease) both; }
@keyframes grow { from { transform: scaleX(0); } }
.tier-bars b { font: 700 15px var(--f-display); text-align: right; }
.netw__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.netw__wall { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; height: 600px; overflow: hidden; mask-image: linear-gradient(transparent, #000 14%, #000 86%, transparent); }
.ncol { display: flex; flex-direction: column; gap: 14px; animation: scrollUp var(--dur, 60s) linear infinite; }
.ncol--1 { animation-direction: reverse; }
.netw__wall:hover .ncol { animation-play-state: paused; }
@keyframes scrollUp { to { transform: translateY(calc(-50% - 7px)); } }

.tier { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; font: 700 11px/1 var(--f-display); flex: none; }
.tier--a { background: var(--grad-btn); color: #fff; box-shadow: 0 4px 12px -4px rgba(54, 71, 255, .7); }
.tier--b { background: rgba(10, 180, 224, .14); color: #0892b8; }
.tier--c { background: var(--bg-2); color: var(--muted); }
[data-theme="dark"] .tier--b { color: #3bd9ff; }

.outlet { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color .3s, box-shadow .3s, transform .35s var(--ease); }
.outlet:hover { border-color: var(--brand-soft-2); box-shadow: var(--sh-2); }
.outlet__logo { display: grid; place-items: center; height: 80px; padding: 4px 8px; overflow: hidden; background: #fff; border-bottom: 1px solid var(--line); }
.outlet__logo img { width: 100%; height: 100%; object-fit: contain; }
.outlet__body { padding: 12px 14px 14px; }
.outlet__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.outlet__domain { display: inline-flex; align-items: center; gap: 4px; min-width: 0; font: 600 13.5px/1.2 var(--f-head); color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.outlet__domain .ic { opacity: 0; transition: opacity .2s; }
.outlet:hover .outlet__domain .ic { opacity: 1; }
.outlet__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 12px 0 0; }
.outlet__metrics div { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 2px 8px; }
.outlet__metrics dt { font: 600 9.5px/1 var(--f-display); letter-spacing: .12em; color: var(--muted); }
.outlet__metrics dd { margin: 0; font: 700 14.5px/1 var(--f-head); text-align: right; font-variant-numeric: tabular-nums; }
.outlet__metrics .bar { grid-column: 1 / -1; height: 3px; border-radius: 3px; background: var(--bg-2); overflow: hidden; }
.outlet__metrics .bar i { display: block; height: 100%; background: var(--grad-btn); border-radius: inherit; }

/* ---------- pricing ---------- */
.pricing-teaser { background: var(--bg); }
.switch { position: relative; display: flex; width: max-content; margin: 0 auto 40px; padding: 5px; gap: 4px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-1); }
.switch button { position: relative; z-index: 1; height: 42px; padding: 0 26px; border-radius: 999px; font: 600 15px/1 var(--f-head); color: var(--muted); transition: color .3s; }
.switch button.is-active { color: #fff; }
.switch__thumb { position: absolute; z-index: 0; top: 5px; bottom: 5px; left: 5px; border-radius: 999px; background: var(--grad-btn); box-shadow: 0 8px 20px -8px rgba(54, 71, 255, .8); transition: transform .45s var(--ease), width .45s var(--ease); }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 380px)); justify-content: center; gap: 22px; align-items: start; }
.plan { position: relative; display: flex; flex-direction: column; padding: 30px 28px; border-radius: 24px; background: var(--surface); border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.plan[data-hidden] { display: none; }
.plan--featured { border-color: transparent; background: linear-gradient(var(--surface), var(--surface)) padding-box, linear-gradient(160deg, #6f7bff, #2b3bed 40%, #0ab4e0) border-box; border: 1.5px solid transparent; box-shadow: 0 30px 60px -30px rgba(54, 71, 255, .55); }
.plan__badge { position: absolute; top: -13px; right: 24px; height: 26px; padding: 0 12px; display: inline-flex; align-items: center; border-radius: 999px; font: 700 10px/1 var(--f-display); letter-spacing: .14em; text-transform: uppercase; color: #fff; background: var(--grad-btn); box-shadow: 0 8px 20px -6px rgba(54, 71, 255, .8); }
.plan__name { font: 700 23px/1 var(--f-head); }
.plan__name span { font-weight: 500; color: var(--muted); }
.plan__price { display: flex; align-items: flex-start; gap: 4px; margin: 22px 0 6px; }
.plan__price sup { font: 700 22px/1 var(--f-display); margin-top: 8px; color: var(--brand-ink); }
.plan__price strong { font: 700 clamp(2.4rem, 3.4vw, 3rem)/1 var(--f-display); letter-spacing: -.01em; }
.plan__price span { align-self: flex-end; margin: 0 0 6px 6px; font: 500 14px var(--f-head); color: var(--muted); }
.plan__fee { font: 500 13px var(--f-head); color: var(--muted); }
.plan__key { display: flex; align-items: baseline; gap: 8px; margin: 20px 0; padding: 12px 14px; border-radius: 12px; background: var(--brand-soft); font: 600 14px var(--f-head); color: var(--ink-2); }
.plan__key span { font: 700 20px/1 var(--f-display); color: var(--brand-ink); }
.plan__feats { display: grid; gap: 18px; margin-top: 26px; padding-top: 24px; border-top: 1px dashed var(--line-2); }
.feat-group > span { display: block; margin-bottom: 10px; font: 600 10px/1 var(--f-display); letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.feat-group ul { display: grid; gap: 9px; }
.feat { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; line-height: 1.35; color: var(--ink-2); }
.ic--feat { width: 18px; height: 18px; padding: 3px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-ink); stroke-width: 2.6; margin-top: -1px; }
.feat--off { color: var(--faint); }
.feat--off .ic--feat { background: var(--bg-2); color: var(--faint); }
.feat__link { display: inline-flex; vertical-align: middle; color: var(--brand-ink); }
.plans__note { margin-top: 30px; text-align: center; font: 500 14px var(--f-head); color: var(--muted); }
.plans__note a { color: var(--brand-ink); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- faq ---------- */
.faq-sec { background: var(--surface); border-top: 1px solid var(--line); }
.faq-sec__in { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 88px); align-items: start; }
.faq-sec__aside { position: sticky; top: calc(var(--header-h) + 32px); display: grid; gap: 18px; justify-items: start; }
.faq-sec__aside > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.faq-sec__aside .eyebrow { margin-bottom: -2px; }
.help-card { display: flex; align-items: center; gap: 14px; width: 100%; padding: 14px 14px 14px 16px; border-radius: 18px; background: var(--bg); border: 1px solid var(--line); }
.help-card__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-ink); flex: none; }
.help-card div { flex: 1; min-width: 0; }
.help-card strong { display: block; font: 700 15px/1.25 var(--f-head); }
.help-card div span { font-size: 14px; color: var(--muted); }
.faq { border-bottom: 1px solid var(--line); }
.faq:first-child { border-top: 1px solid var(--line); }
.faq summary { display: grid; grid-template-columns: 38px 1fr 28px; align-items: center; gap: 12px; padding: 22px 0; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq__n { font: 600 12px/1 var(--f-display); color: var(--brand-ink); letter-spacing: .08em; }
.faq__q { font: 600 18px/1.35 var(--f-head); transition: color .2s; }
.faq summary:hover .faq__q { color: var(--brand-ink); }
.faq__icon { position: relative; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); transition: background .3s, border-color .3s, transform .4s var(--ease); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 1.6px; background: currentColor; transform: translate(-50%, -50%); border-radius: 2px; }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s var(--ease); }
.faq[open] .faq__a { animation: fadeUp .4s var(--ease); }
.faq[open] .faq__icon { background: var(--brand); border-color: var(--brand); color: #fff; }
.faq[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a { padding: 0 40px 24px 50px; color: var(--muted); font-size: 17px; }


/* ---------- footer ---------- */
.footer { position: relative; overflow: hidden; background: #04061a; color: var(--ink-2); }
.footer .container { position: relative; }
.footer__cta { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-block: clamp(56px, 7vw, 88px); border-bottom: 1px solid var(--line); }
.footer__cta-title { max-width: 680px; font: 700 clamp(1.8rem, 3.4vw, 2.9rem)/1.1 var(--f-head); letter-spacing: -.02em; color: #fff; text-wrap: balance; }
.footer__cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.footer__grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr) 1.4fr; gap: 40px; padding-block: 64px 56px; }
.footer__brand p { margin: 20px 0 22px; max-width: 360px; font-size: 15.5px; color: var(--muted); }
.footer__col h3 { margin-bottom: 20px; font: 600 11px/1 var(--f-display); letter-spacing: .2em; text-transform: uppercase; color: #fff; }
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { font: 500 15px/1.3 var(--f-head); color: var(--muted); transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; align-items: center; gap: 10px; font: 500 15px/1.3 var(--f-head); color: var(--muted); }
.footer__contact .ic { width: 16px; height: 16px; color: var(--brand-hi); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 24px; border-top: 1px solid var(--line); font: 500 14px var(--f-head); color: var(--muted); }
.footer__pay { display: flex; flex-wrap: wrap; gap: 6px; }
.footer__pay li { padding: 5px 9px; border-radius: 6px; border: 1px solid var(--line); font: 700 10.5px/1 var(--f-head); letter-spacing: .04em; color: var(--ink-2); }

.to-top { position: fixed; right: 20px; bottom: 20px; z-index: 40; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; color: #fff; background: var(--grad-btn); box-shadow: 0 12px 30px -10px rgba(54, 71, 255, .9); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .3s, transform .3s var(--ease); }
.to-top .ic { transform: rotate(-90deg); }
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   INNER PAGES
   ========================================================================== */
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }

/* ---------- page hero ---------- */
.page-hero { position: relative; overflow: hidden; background: #04061a; color: var(--ink); isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
  background: radial-gradient(38% 90% at 8% -10%, rgba(54, 71, 255, .5), transparent 70%), radial-gradient(30% 80% at 34% -30%, rgba(24, 214, 255, .16), transparent 70%), radial-gradient(28% 70% at 70% -20%, rgba(106, 61, 255, .16), transparent 70%), linear-gradient(180deg, #02030b, #050823); }
/* Dotted map on the right of every dark page header: it drifts slowly, its bright dots
   twinkle (animated inside world-dots.svg), a light sweep lights the land up and
   signal pings pulse on key cities. */
.ph-map { position: absolute; right: -110px; top: 50%; width: 1040px; aspect-ratio: 1800 / 660; opacity: .62;
  transform: translate3d(0, -50%, 0);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .55) 22%, #000 48%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .55) 22%, #000 48%);
  animation: phDrift 22s ease-in-out infinite alternate; will-change: transform; }
.ph-map img { display: block; width: 100%; height: 100%; }
@keyframes phDrift { from { transform: translate3d(0, -50%, 0) scale(1); } to { transform: translate3d(-34px, -47%, 0) scale(1.05); } }
.ph-scan { position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, transparent 42%, rgba(159, 233, 255, .95) 50%, transparent 58%, transparent 100%) 0 0 / 300% 100% no-repeat;
  -webkit-mask: url("../img/world-dots.svg") 0 0 / 100% 100% no-repeat;
  mask: url("../img/world-dots.svg") 0 0 / 100% 100% no-repeat;
  animation: phScan 7s cubic-bezier(.45, 0, .25, 1) infinite; }
@keyframes phScan { from { background-position: 100% 0; } to { background-position: 0 0; } }
.ph-ping { position: absolute; width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; border-radius: 50%; background: #c3c9ff; box-shadow: 0 0 10px 2px rgba(54, 71, 255, .95); }
.ph-ping::before, .ph-ping::after { content: ""; position: absolute; inset: -3px; border-radius: 50%; border: 1px solid rgba(124, 136, 255, .95); animation: phPing 3.2s ease-out infinite; animation-delay: var(--d, 0s); }
.ph-ping::after { animation-delay: calc(var(--d, 0s) + 1.6s); }
@keyframes phPing { 0% { transform: scale(.5); opacity: .95; } 100% { transform: scale(5.5); opacity: 0; } }
@media (max-width: 760px) { .ph-map { width: 760px; right: -300px; opacity: .4; } }
@media (prefers-reduced-motion: reduce) { .ph-map, .ph-scan, .ph-ping::before, .ph-ping::after { animation: none; } }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; opacity: .09; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 180px 180px; }
.page-hero::after, .mast::after, .post__head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent 5%, rgba(90, 104, 255, .5) 35%, rgba(189, 243, 255, .85) 50%, rgba(90, 104, 255, .5) 65%, transparent 95%); }
.page-hero__in { padding-block: clamp(36px, 5vw, 56px) clamp(48px, 6vw, 76px); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font: 500 13.5px/1.4 var(--f-head); color: var(--muted); }
.crumbs li { display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
.crumbs li + li::before { content: ""; width: 5px; height: 5px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); opacity: .6; margin-right: 4px; }
.crumbs a:hover { color: #fff; }
.crumbs [aria-current] { color: var(--ink-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.page-hero__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px 56px; margin-top: clamp(28px, 4vw, 44px); }
.page-hero__text { max-width: 760px; }
.page-hero__title { font: 800 clamp(2.2rem, 4.6vw, 3.9rem)/1.04 var(--f-head); letter-spacing: -.03em; color: #fff; text-wrap: balance; }
.page-hero__lead { margin-top: 18px; max-width: 640px; font-size: clamp(17px, 1.5vw, 19px); color: var(--muted); text-wrap: pretty; }
.page-hero__aside { flex: none; display: grid; gap: 14px; justify-items: end; }
.page-hero__aside--wide { width: min(440px, 100%); justify-items: stretch; }
.page-hero__meta { display: inline-flex; align-items: center; gap: 10px; font: 500 14px var(--f-head); color: var(--muted); }
.search-inline { display: flex; align-items: center; gap: 10px; width: min(380px, 100%); height: 50px; padding: 0 16px; border-radius: 14px; background: rgba(255, 255, 255, .05); border: 1px solid var(--line-2); color: var(--muted); transition: border-color .2s, background .2s; }
.search-inline:focus-within { border-color: var(--brand-hi); background: rgba(255, 255, 255, .08); }
.search-inline input { flex: 1; min-width: 0; height: 100%; background: none; border: 0; outline: 0; color: var(--ink); font: 500 16px var(--f-head); }
.search-inline input::placeholder { color: var(--muted); }
.search-inline--lg { width: 100%; height: 58px; }
.count-badge { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-radius: 16px; background: rgba(255, 255, 255, .04); border: 1px solid var(--line); }
.count-badge strong { font: 700 38px/1 var(--f-display); color: #fff; }
.count-badge span { font: 500 14px/1.3 var(--f-head); color: var(--muted); }
.hero-facts { display: flex; gap: 0; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, .03); backdrop-filter: blur(8px); }
.hero-facts li { display: grid; gap: 6px; padding: 18px 22px; }
.hero-facts li + li { border-left: 1px solid var(--line); }
.hero-facts strong { font: 700 26px/1 var(--f-display); color: #fff; }
.hero-facts small { font-size: .5em; color: var(--brand-hi); margin-left: 2px; }
.hero-facts span { font: 500 13px/1.2 var(--f-head); color: var(--muted); white-space: nowrap; }

/* ---------- newsroom page ---------- */
.catnav { position: sticky; top: var(--header-h); z-index: 30; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: 0 8px 20px -18px rgba(10, 12, 40, .5); }
.catnav__in { display: flex; align-items: center; gap: 20px; }
.catnav__list { display: flex; gap: 2px; flex: 1; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.catnav__list::-webkit-scrollbar { display: none; }
.catnav__link { position: relative; display: inline-flex; align-items: center; gap: 7px; height: 56px; padding: 0 14px; font: 600 14.5px/1 var(--f-head); color: var(--muted); white-space: nowrap; transition: color .2s; }
.catnav__link span { font: 600 10px/1 var(--f-display); padding: 4px 6px; border-radius: 6px; background: var(--bg-2); color: var(--muted); }
.catnav__link:hover { color: var(--ink); }
.catnav__link.is-active { color: var(--ink); }
.catnav__link.is-active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: -1px; height: 2px; border-radius: 2px; background: var(--grad-btn); }
.catnav__submit { flex: none; display: inline-flex; align-items: center; gap: 8px; font: 600 14px var(--f-head); color: var(--brand-ink); }
.catnav__submit .ic { width: 16px; height: 16px; }

.nr-top { padding-block: 32px 8px; }
.nr-top__grid { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr); gap: 20px; }
.nr-top__grid > .card--overlay { min-height: 540px; }
.nr-top__grid > .card--overlay .card__title { font-size: clamp(1.6rem, 2.6vw, 2.35rem); line-height: 1.14; letter-spacing: -.02em; max-width: 24ch; }
.nr-top__side { display: grid; gap: 20px; }
.nr-top__side .card--overlay { min-height: 260px; }
.nr-top__side .card__title { font-size: 19px; }

.nr-main { padding-block: 40px clamp(64px, 8vw, 104px); }
.nr-main__grid, .archive__grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(32px, 4vw, 56px); align-items: start; }
.nr-main__content { display: grid; gap: clamp(48px, 6vw, 72px); min-width: 0; }

.block__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.block__head .meta { display: inline-flex; align-items: center; gap: 6px; }
.block__title { display: flex; align-items: center; gap: 12px; font: 700 clamp(1.35rem, 2vw, 1.65rem)/1.1 var(--f-head); letter-spacing: -.015em; }
.block__mark { width: 10px; height: 22px; border-radius: 3px; background: var(--grad-btn); box-shadow: 0 0 14px rgba(54, 71, 255, .6); }

.stream { display: grid; }
.stream__item { position: relative; display: grid; grid-template-columns: 76px minmax(0, 1fr) 180px; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.stream__item:first-child { padding-top: 4px; }
.stream__time { position: relative; font: 600 12px/1.3 var(--f-display); letter-spacing: .04em; color: var(--muted); padding-top: 4px; }
.stream__time::after { content: ""; position: absolute; right: -12px; top: 6px; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
.stream__body { display: grid; gap: 8px; align-content: start; }
.stream__body h3 { font: 700 19px/1.3 var(--f-head); letter-spacing: -.01em; }
.stream__body h3 a:hover { color: var(--brand-ink); }
.stream__body p { font-size: 15.5px; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.stream__media { border-radius: 12px; overflow: hidden; aspect-ratio: 3 / 2; background: var(--bg-2); }
.stream__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.stream__item:hover .stream__media img { transform: scale(1.05); }

.lay-feature { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 28px; }
.lay-feature > .card--overlay { min-height: 460px; }
.lay-feature > .card--overlay .card__title { font-size: 24px; line-height: 1.2; }
.lay-feature__list { display: flex; flex-direction: column; margin-top: -16px; }
.lay-trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.lay-quad { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.lay-quad .card__title { font-size: 16px; }
.lay-quad .card__body { padding: 16px 16px 18px; }
.lay-duo { display: grid; gap: 20px; }
.lay-duo .card--row { padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); gap: 24px; }
.lay-duo .card--row + .card--row { border-top: 1px solid var(--line); }
.lay-duo .card--row .card__media { max-width: 280px; width: 42%; }
.lay-duo .card--row .card__title { font-size: 21px; }
.lay-band { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.lay-band .card--overlay { min-height: 380px; }
.lay-band .card__title { font-size: 19px; }
.lay-band:has(> :nth-child(2):last-child) { grid-template-columns: 1fr 1fr; }
.lay-ledger { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 28px; align-items: start; }
.ledger { counter-reset: l; }
.ledger__row { position: relative; display: grid; grid-template-columns: 34px 1fr 20px; grid-template-rows: auto auto; column-gap: 12px; row-gap: 4px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.ledger__row:first-child { padding-top: 0; }
.ledger__n { grid-row: span 2; font: 700 20px/1 var(--f-display); color: var(--line-2); }
.ledger__row time { font: 500 12.5px var(--f-head); color: var(--muted); }
.ledger__row a { grid-column: 2; font: 600 16px/1.35 var(--f-head); }
.ledger__row a::after { content: ""; position: absolute; inset: 0; }
.ledger__row .ic { grid-column: 3; grid-row: 1 / span 2; align-self: center; width: 18px; color: var(--faint); transition: color .2s, transform .3s var(--ease); }
.ledger__row:hover a { color: var(--brand-ink); }
.ledger__row:hover .ic { color: var(--brand-ink); transform: translate(2px, -2px); }
.ledger__row:hover .ledger__n { color: var(--brand); }

.pager { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 8px; }
.pager ol { display: flex; gap: 6px; }
.pager ol a, .pager ol span { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 6px; border-radius: 12px; font: 600 15px var(--f-head); color: var(--ink-2); border: 1px solid var(--line); background: var(--surface); }
.pager ol a:hover { border-color: var(--brand); color: var(--brand-ink); }
.pager ol [aria-current] { background: var(--ink); border-color: var(--ink); color: var(--bg); }
[data-theme="dark"] .pager ol [aria-current] { background: var(--brand); border-color: var(--brand); color: #fff; }
.pager ol span { border: 0; background: none; }
.pager__btn { display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); font: 600 14px var(--f-head); }
.pager__btn .ic { width: 16px; height: 16px; }
.pager__btn:hover:not(.is-disabled) { border-color: var(--brand); color: var(--brand-ink); }
.pager__btn.is-disabled { opacity: .45; }

.sidebar { position: sticky; top: calc(var(--header-h) + 76px); display: grid; gap: 22px; align-content: start; }
.widget { padding: 22px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); }
.widget__title { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font: 700 13px/1 var(--f-display); letter-spacing: .12em; text-transform: uppercase; }
.widget__title .ic { width: 18px; height: 18px; color: var(--brand-ink); }
.ranked li { display: grid; grid-template-columns: 36px 1fr; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); }
.ranked li:first-child { border-top: 0; padding-top: 0; }
.rank { font: 700 18px/1.2 var(--f-display); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ranked a { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font: 600 15px/1.35 var(--f-head); margin-bottom: 6px; }
.ranked a:hover { color: var(--brand-ink); }
.ranked .meta { font-size: 12.5px; }
.widget--cta { position: relative; overflow: hidden; background: #070a26; border-color: rgba(124, 136, 255, .2); color: var(--ink); }
.widget--cta::before { content: ""; position: absolute; inset: 0; background: url("../img/world-dots.svg") 30% 40% / 700px auto no-repeat, radial-gradient(80% 60% at 100% 0%, rgba(54, 71, 255, .45), transparent 70%); opacity: .6; pointer-events: none; }
.widget--cta > * { position: relative; }
.widget--cta .eyebrow { margin-bottom: 12px; }
.widget--cta h3 { font: 700 22px/1.2 var(--f-head); color: #fff; margin-bottom: 10px; }
.widget--cta p:not(.eyebrow) { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.cat-list a { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-top: 1px solid var(--line); font: 600 15px var(--f-head); color: var(--ink-2); }
.cat-list li:first-child a { border-top: 0; padding-top: 0; }
.cat-list b { font: 600 11px/1 var(--f-display); padding: 5px 8px; border-radius: 7px; background: var(--bg-2); color: var(--muted); transition: background .2s, color .2s; }
.cat-list a:hover { color: var(--brand-ink); }
.cat-list a:hover b { background: var(--brand); color: #fff; }

/* ---------- archive ---------- */
.archive-list { padding-block: 36px clamp(64px, 8vw, 104px); }
.archive__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.archive__bar .tabs { margin: 0; }
.archive__bar .tab { display: inline-flex; align-items: center; }
.select { position: relative; display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 14px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); color: var(--muted); flex: none; }
.select select { appearance: none; background: none; border: 0; outline: 0; padding-right: 18px; font: 600 14px var(--f-head); color: var(--ink); cursor: pointer; }
.select::after { content: ""; position: absolute; right: 14px; top: 50%; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.select option { color: #0a0c1b; }
.post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-bottom: 40px; }
.post-grid > .card--lead { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); }
.post-grid > .card--lead .card__media { aspect-ratio: auto; height: 100%; min-height: 320px; }
.post-grid > .card--lead .card__body { justify-content: center; }
.post-grid > .card--lead .card__title { font-size: clamp(1.35rem, 2vw, 1.7rem); }

/* ---------- article ---------- */
.progress { position: fixed; left: 0; right: 0; top: 0; z-index: 60; height: 3px; pointer-events: none; }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, #3647ff, #3bd9ff); transform: scaleX(0); transform-origin: left; box-shadow: 0 0 12px #3647ff; }
.post__head { position: relative; overflow: hidden; background: #04061a; isolation: isolate; padding-bottom: 150px; }
.post__head-in { padding-top: clamp(32px, 4vw, 48px); max-width: 1000px; }
.post__head .crumbs { margin-bottom: 30px; }
.chip--lg { height: 30px; padding: 0 12px; font-size: 11.5px; background: rgba(90, 104, 255, .2); color: #c4caff; }
.post__title { margin: 16px 0 14px; font: 700 20px/1.4 var(--f-head); letter-spacing: -.005em; color: #fff; text-wrap: balance; }
.post__dek { max-width: 760px; font-size: 16px; line-height: 1.6; color: var(--muted); }
.post__meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 32px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.byline { display: flex; align-items: center; gap: 12px; }
.byline__avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; font: 700 13px var(--f-display); color: #fff; background: var(--grad-btn); box-shadow: 0 0 0 3px rgba(90, 104, 255, .25); }
.byline strong { display: block; font: 700 15px/1.2 var(--f-head); color: #fff; }
.byline span { font: 500 13px var(--f-head); color: var(--muted); }
.post__facts { display: flex; flex-wrap: wrap; gap: 8px 22px; font: 500 14px var(--f-head); color: var(--ink-2); }
.post__facts li { display: inline-flex; align-items: center; gap: 7px; }
.post__facts .ic { width: 16px; height: 16px; color: var(--brand-hi); }
.post__figure { position: relative; z-index: 1; margin: -120px auto 0; max-width: 1100px; }
.post__figure img { width: 100%; border-radius: 24px; box-shadow: var(--sh-3); aspect-ratio: 16 / 9; object-fit: cover; background: var(--bg-2); }
.post__figure figcaption { margin-top: 10px; font: 500 13px var(--f-head); color: var(--muted); text-align: right; }
.post__layout { display: grid; grid-template-columns: 56px minmax(0, 720px) minmax(0, 320px); justify-content: space-between; gap: 40px; padding-block: 40px 80px; }
.post__rail .share { position: sticky; top: calc(var(--header-h) + 32px); flex-direction: column; }
.share { display: flex; gap: 8px; }
.share a, .share button { position: relative; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); color: var(--ink-2); transition: all .25s var(--ease); }
.share a:hover, .share button:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-2px); }
.share .ic { width: 18px; height: 18px; }
.share__done { position: absolute; left: calc(100% + 8px); top: 50%; transform: translateY(-50%); padding: 4px 8px; border-radius: 6px; background: var(--ink); color: var(--bg); font: 600 12px var(--f-head); opacity: 0; pointer-events: none; transition: opacity .2s; white-space: nowrap; }
.is-done .share__done { opacity: 1; }
.post__share-bottom .share__done { left: auto; right: calc(100% + 8px); }
.prose { font-size: 18.5px; line-height: 1.78; color: var(--ink-2); min-width: 0; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-top: 1.9em; font: 700 clamp(1.4rem, 2.2vw, 1.8rem)/1.2 var(--f-head); letter-spacing: -.015em; }
.prose h3 { margin-top: 1.8em; font: 700 1.25rem/1.25 var(--f-head); }
.prose a { color: var(--brand-ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul { display: grid; gap: 12px; }
.prose ul li { position: relative; padding-left: 28px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: .7em; width: 8px; height: 8px; border-radius: 2px; background: var(--grad-btn); transform: rotate(45deg); }
.dateline { font-family: var(--f-head); font-weight: 700 !important; color: var(--ink) !important; }
.prose blockquote { position: relative; margin: 1.8em 0; padding: 26px 30px 26px 34px; border-radius: 18px; background: var(--brand-soft); border-left: 4px solid var(--brand); font: 600 clamp(1.15rem, 1.8vw, 1.4rem)/1.45 var(--f-head); color: var(--ink); }
.prose blockquote p { margin: 0; }
.post__body { min-width: 0; }
.post__body > * + * { margin-top: 28px; }
.disclaimer { display: flex; gap: 16px; margin-top: 40px !important; padding: 20px 22px; border-radius: 16px; background: var(--surface); border: 1px solid var(--line); font-size: 15px; line-height: 1.6; }
.disclaimer .ic { width: 22px; height: 22px; color: var(--brand-ink); flex: none; margin-top: 2px; }
.disclaimer strong { display: block; font-family: var(--f-head); margin-bottom: 4px; }
.disclaimer p { color: var(--muted); }
.post__tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-top: 1em; }
.post__tags span { font: 600 11px/1 var(--f-display); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-right: 6px; }
.post__tags a { padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font: 600 13.5px/1 var(--f-head); color: var(--ink-2); text-decoration: none; }
.prose .post__tags a:hover { border-color: var(--brand); color: var(--brand-ink); }
.post__share-bottom { display: none; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 0; border-block: 1px solid var(--line); font: 600 15px var(--f-head); color: var(--ink); }
.post__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.post__nav-link { display: grid; gap: 8px; padding: 18px 20px; border-radius: 16px; border: 1px solid var(--line); background: var(--surface); text-decoration: none; color: var(--ink); transition: border-color .2s, box-shadow .3s; }
.post__nav-link:hover { border-color: var(--brand-soft-2); box-shadow: var(--sh-2); }
.post__nav-link span { display: inline-flex; align-items: center; gap: 6px; font: 600 11px/1 var(--f-display); letter-spacing: .12em; text-transform: uppercase; color: var(--brand-ink); }
.post__nav-link span .ic { width: 14px; height: 14px; }
.post__nav-link strong { font: 600 15px/1.35 var(--f-head); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post__nav-link--next { text-align: right; }
.post__nav-link--next span { justify-content: flex-end; }
.sidebar--post { top: calc(var(--header-h) + 24px); align-self: start; }
.related { background: var(--surface-2); border-top: 1px solid var(--line); }

/* ---------- pricing page ---------- */
.pricing-page { padding-top: clamp(48px, 6vw, 72px); }
.plans--full { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.plans--full:has(> .plan:not([data-hidden]):nth-last-child(n + 4)) { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.plans--full .plan { padding: 28px 24px; }
.pay-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 20px; margin-top: 36px; font: 600 14px var(--f-head); color: var(--ink-2); }
.pay-row > span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.pay-row .ic { width: 18px; height: 18px; color: var(--brand-ink); }
.pay-row ul { display: flex; flex-wrap: wrap; gap: 6px; }
.pay-row li { padding: 7px 12px; border-radius: 8px; background: var(--surface); border: 1px solid var(--line); font: 700 12px/1 var(--f-head); }
.pay-row__note { color: var(--muted); font-weight: 500; }
.perks-sec { padding-top: 0; }
.perks { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.perk { display: flex; gap: 14px; padding: 22px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); }
.perk__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-ink); flex: none; }
.perk h3 { font: 700 16px/1.25 var(--f-head); margin-bottom: 6px; }
.perk p { font-size: 14.5px; line-height: 1.5; color: var(--muted); }
.compare { background: var(--surface-2); border-block: 1px solid var(--line); }
.ct-wrap { position: relative; overflow-x: auto; border-radius: 22px; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--sh-1); }
.ct { width: 100%; min-width: 880px; border-collapse: collapse; font: 500 15px/1.3 var(--f-head); }
.ct th, .ct td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--line); }
.ct tbody th { text-align: left; font-weight: 500; color: var(--ink-2); }
.ct thead th { padding-block: 22px; vertical-align: bottom; background: var(--surface); }
.ct__corner { text-align: left !important; font: 700 12px/1 var(--f-display) !important; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.ct__name { display: block; font: 700 17px/1.2 var(--f-head); }
.ct__price { display: block; margin-top: 6px; font: 700 20px/1 var(--f-display); color: var(--brand-ink); }
.ct th:first-child { position: sticky; left: 0; z-index: 1; background: var(--surface); min-width: 230px; }
.ct__group th { padding: 12px 16px; text-align: left !important; font: 600 10.5px/1 var(--f-display) !important; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-ink) !important; background: var(--brand-soft) !important; }
.ct tbody tr:not(.ct__group):hover td, .ct tbody tr:not(.ct__group):hover th { background: var(--surface-2); }
.ct .yes, .ct .no { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; }
.ct .yes { background: var(--brand-soft); color: var(--brand-ink); }
.ct .no { color: var(--faint); }
.ct .yes .ic, .ct .no .ic { width: 14px; height: 14px; stroke-width: 2.6; }
.ct .val { font: 700 14px var(--f-display); color: var(--ink); }
.ct__foot td, .ct__foot th { border-bottom: 0; padding-block: 20px; }
.ct td:nth-child(4), .ct th:nth-child(4), .ct td:nth-child(6), .ct th:nth-child(6) { background: color-mix(in srgb, var(--brand-soft) 45%, transparent); }
.custom-band { padding-block: clamp(56px, 7vw, 88px); }
.custom { position: relative; overflow: hidden; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(32px, 5vw, 56px); border-radius: 28px; background: #070a26; border: 1px solid rgba(124, 136, 255, .2); }
.custom::before { content: ""; position: absolute; inset: 0; background: url("../img/world-dots.svg") right -80px center / 900px auto no-repeat, radial-gradient(50% 90% at 0% 0%, rgba(54, 71, 255, .45), transparent 70%); opacity: .7; pointer-events: none; }
.custom > * { position: relative; }
.custom h2 { max-width: 620px; font: 700 clamp(1.6rem, 2.8vw, 2.3rem)/1.15 var(--f-head); color: #fff; margin-bottom: 12px; letter-spacing: -.02em; }
.custom p:not(.eyebrow) { max-width: 560px; color: var(--muted); }
.custom__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- network directory ---------- */
.dir-legend { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 32px; padding: 18px 22px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); margin-bottom: 20px; }
.dir-legend__key { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font: 500 14px var(--f-head); color: var(--muted); }
.dir-legend__key b { font: 700 12px var(--f-display); color: var(--ink); letter-spacing: .06em; }
.dir-legend__key i { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); margin-inline: 8px; }
.dir-legend ul { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.dir-legend li { display: flex; align-items: center; gap: 10px; }
.dir-legend strong { display: block; font: 700 14px/1.2 var(--f-head); }
.dir-legend li span:not(.tier) { font-size: 13px; color: var(--muted); }
.dir-bar { position: sticky; top: calc(var(--header-h) + 12px); z-index: 20; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 10px; border-radius: 18px; background: color-mix(in srgb, var(--surface) 88%, transparent); backdrop-filter: blur(14px); border: 1px solid var(--line); box-shadow: var(--sh-2); }
.dir-search { display: flex; align-items: center; gap: 10px; flex: 1 1 240px; height: 44px; padding: 0 14px; border-radius: 12px; background: var(--bg); border: 1px solid transparent; color: var(--muted); }
.dir-search:focus-within { border-color: var(--brand); }
.dir-search input { flex: 1; min-width: 0; background: none; border: 0; outline: 0; font: 500 15px var(--f-head); color: var(--ink); }
.dir-search .ic { width: 18px; height: 18px; }
.seg { display: flex; gap: 2px; padding: 3px; border-radius: 12px; background: var(--bg); }
.seg__btn { display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 14px; border-radius: 9px; font: 600 14px var(--f-head); color: var(--muted); transition: background .2s, color .2s; }
.seg__btn span { font: 600 10px/1 var(--f-display); padding: 3px 5px; border-radius: 5px; background: var(--bg-2); }
.seg__btn:hover { color: var(--ink); }
.seg__btn.is-active { background: var(--surface); color: var(--ink); box-shadow: var(--sh-1); }
.seg__btn.is-active span { background: var(--brand); color: #fff; }
.seg--icons .seg__btn { width: 40px; padding: 0; justify-content: center; }
.seg--icons .ic { width: 18px; height: 18px; }
.dir-count { margin: 22px 0 14px; font: 500 14px var(--f-head); color: var(--muted); }
.dir-count b { color: var(--ink); font-family: var(--f-display); }
.dir-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 1180px) { .dir-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.dir-grid .outlet:hover { transform: translateY(-3px); }
.dir-grid.is-list { grid-template-columns: 1fr; gap: 8px; }
.dir-grid.is-list .outlet { flex-direction: row; align-items: center; }
.dir-grid.is-list .outlet__logo { width: 190px; height: 64px; border-bottom: 0; border-right: 1px solid var(--line); flex: none; }
.dir-grid.is-list .outlet__body { flex: 1; display: grid; grid-template-columns: 1fr 320px; align-items: center; gap: 20px; padding: 10px 20px; }
.dir-grid.is-list .outlet__metrics { margin: 0; }
.dir-empty { padding: 40px; text-align: center; color: var(--muted); font: 500 16px var(--f-head); }
.dir-downloads { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 48px; padding: 28px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); }
.dir-downloads h3 { font: 700 20px var(--f-head); margin-bottom: 4px; }
.dir-downloads p { color: var(--muted); font-size: 16px; }
.dir-downloads__btns { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- about ---------- */
.about-intro__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 88px); margin-bottom: clamp(48px, 6vw, 72px); }
.about-intro__text { display: grid; gap: 18px; align-content: start; color: var(--muted); font-size: 18px; }
.about-intro__text .lead { font: 500 clamp(1.2rem, 1.9vw, 1.5rem)/1.5 var(--f-head); color: var(--ink); }
.about-intro__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.stats--panel { border-radius: 22px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-1); }
.stats--panel .stat__num { color: var(--ink); }
.stats--panel .stat + .stat::before { background: var(--line); }
.flow-sec { overflow: hidden; }
.flow-sec .container { position: relative; }
.flow { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; counter-reset: f; }
.flow::before { content: ""; position: absolute; left: 30px; right: 30px; top: 30px; height: 1px; background: linear-gradient(90deg, rgba(124, 136, 255, .1), rgba(124, 136, 255, .6), rgba(59, 217, 255, .6), rgba(124, 136, 255, .1)); }
.flow__step { position: relative; }
.flow__icon { position: relative; display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; color: #9fe9ff; background: radial-gradient(circle at 30% 30%, #2b3bed, #0d1030); box-shadow: 0 0 0 6px #060816, 0 0 0 7px rgba(124, 136, 255, .3), 0 0 30px rgba(54, 71, 255, .6); }
.flow__icon .ic { width: 24px; height: 24px; }
.flow__n { display: block; margin: 22px 0 8px; font: 600 11px/1 var(--f-display); letter-spacing: .14em; color: var(--brand-hi); }
.flow__step h3 { font: 700 21px/1.2 var(--f-head); color: #fff; margin-bottom: 8px; }
.flow__step p { font-size: 15.5px; color: var(--muted); padding-right: 12px; }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--surface); }
.pillar { position: relative; display: grid; gap: 12px; align-content: start; padding: 34px 32px 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s; }
.pillar:hover { background: var(--surface-2); }
.pillar__n { position: absolute; top: 30px; right: 30px; font: 700 13px/1 var(--f-display); color: var(--faint); }
.pillar h3 { font: 700 20px/1.25 var(--f-head); }
.pillar p { color: var(--muted); font-size: 16px; }
.partners--about { border-top: 1px solid var(--line); }

/* ---------- editorial ---------- */
.specs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.spec { position: relative; overflow: hidden; display: grid; padding: 26px 24px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); }
.spec::after { content: ""; position: absolute; right: -30px; bottom: -30px; width: 110px; height: 110px; border-radius: 50%; background: radial-gradient(circle, var(--brand-soft-2), transparent 70%); }
.spec strong { font: 700 clamp(1.7rem, 2.6vw, 2.2rem)/1 var(--f-display); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.spec span { margin-top: 6px; font: 600 14px var(--f-head); color: var(--ink-2); }
.spec em { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line-2); font: 600 10.5px/1 var(--f-display); font-style: normal; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.editorial { padding-top: 12px; }
.editorial__grid { display: grid; grid-template-columns: 230px minmax(0, 1fr) 360px; gap: clamp(28px, 4vw, 56px); align-items: start; }
.editorial__toc { position: sticky; top: calc(var(--header-h) + 32px); display: grid; gap: 14px; }
.editorial__toc ol { display: grid; gap: 2px; margin-bottom: 8px; }
.editorial__toc ol a { display: flex; gap: 12px; padding: 10px 12px; border-radius: 10px; font: 600 15px/1.3 var(--f-head); color: var(--muted); transition: background .2s, color .2s; }
.editorial__toc ol a span { font: 600 11px/1.6 var(--f-display); color: var(--faint); }
.editorial__toc ol a:hover { background: var(--surface); color: var(--ink); }
.editorial__toc ol a:hover span { color: var(--brand-ink); }
.editorial__body { display: grid; gap: 18px; }
.ed-sec { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 30px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 24px); }
.ed-sec__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--grad-btn); color: #fff; box-shadow: 0 12px 26px -10px rgba(54, 71, 255, .8); }
.ed-sec__icon .ic { width: 24px; height: 24px; }
.ed-sec__n { font: 600 11px/1 var(--f-display); letter-spacing: .16em; text-transform: uppercase; color: var(--brand-ink); margin-bottom: 8px; }
.ed-sec h2 { font: 700 23px/1.2 var(--f-head); margin-bottom: 10px; }
.ed-sec > div > p { color: var(--muted); }
.checks { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.checks li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px 8px 8px; border-radius: 10px; background: var(--bg); font: 600 14px/1.2 var(--f-head); color: var(--ink-2); }
.checks .ic { width: 20px; height: 20px; padding: 3px; border-radius: 50%; background: var(--brand); color: #fff; stroke-width: 2.8; }
.doc { position: sticky; top: calc(var(--header-h) + 32px); }
.doc__paper { position: relative; padding: 26px 24px; border-radius: 18px; background: #fff; border: 1px solid #e3e6f0; box-shadow: var(--sh-2); color: #0a0c1b; }
.doc__paper::before { content: ""; position: absolute; top: 0; right: 0; width: 34px; height: 34px; background: linear-gradient(225deg, #f4f5fa 50%, #dde1ff 50%); border-bottom-left-radius: 8px; }
.doc__row { display: grid; gap: 8px; padding: 14px 0; border-bottom: 1px dashed #e3e6f0; }
.doc__row:last-child { border-bottom: 0; }
.doc__tag { justify-self: start; padding: 4px 8px; border-radius: 6px; background: #eef0ff; font: 600 9.5px/1 var(--f-display); letter-spacing: .12em; text-transform: uppercase; color: #2a37e0; }
.doc__title { font: 800 17px/1.25 var(--f-head); }
.doc__dateline { font: 700 12.5px/1.4 var(--f-head); color: #2d3250; }
.doc__boiler { font: 700 14px var(--f-head); }
.doc__contact { font: 500 13.5px var(--f-head); color: #62688a; }
.doc__lines { display: grid; gap: 7px; }
.doc__lines i { display: block; height: 6px; border-radius: 4px; background: #eceef6; }
.doc__note { display: flex; gap: 8px; margin-top: 14px; font: 500 13.5px/1.45 var(--f-head); color: var(--muted); }
.doc__note .ic { margin-top: 2px; color: var(--brand-ink); }

/* ---------- faqs page ---------- */
.faqs-page { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faqs-page .faq-list { margin-top: 8px; }
.faqs-page__aside { position: sticky; top: calc(var(--header-h) + 32px); }
.contact-card.contact-card--feature { position: relative; overflow: hidden; display: grid; gap: 12px; padding: 30px 26px; border-radius: 24px; background: #070a26; border: 1px solid rgba(124, 136, 255, .2); }
.contact-card--feature::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 100% 0%, rgba(54, 71, 255, .5), transparent 70%); pointer-events: none; }
.contact-card--feature > * { position: relative; }
.contact-card--feature h3 { font: 700 23px/1.2 var(--f-head); color: #fff; margin-top: 8px; }
.contact-card--feature p { color: var(--muted); font-size: 15.5px; margin-bottom: 8px; }

/* ---------- contact ---------- */
.contact { padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(72px, 9vw, 120px); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card { position: relative; display: flex; align-items: flex-start; gap: 14px; height: 100%; padding: 22px 20px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); transition: border-color .3s, box-shadow .3s, transform .35s var(--ease); }
a.contact-card:hover { border-color: var(--brand-soft-2); box-shadow: var(--sh-2); transform: translateY(-3px); }
.contact-card__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--brand-soft); color: var(--brand-ink); flex: none; }
.contact-card--feature .contact-card__icon { background: var(--grad-btn); color: #fff; }
.contact-card div { min-width: 0; }
.contact-card__label { display: block; font: 600 10.5px/1 var(--f-display); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 4px 0 8px; }
.contact-card strong { display: block; font: 700 16px/1.25 var(--f-head); word-break: break-word; }
.contact-card small { display: block; margin-top: 4px; font-size: 14px; color: var(--muted); }
.contact-card__go { position: absolute; top: 18px; right: 18px; width: 18px; height: 18px; color: var(--faint); transition: color .2s, transform .3s var(--ease); }
a.contact-card:hover .contact-card__go { color: var(--brand-ink); transform: translate(2px, -2px); }
.contact-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.contact-meta > div { display: flex; gap: 12px; padding: 18px 20px; border-radius: 18px; background: var(--surface-2); border: 1px dashed var(--line-2); font-size: 15px; color: var(--muted); }
.contact-meta .ic { color: var(--brand-ink); margin-top: 2px; }
.contact-meta strong { display: block; font: 700 15px var(--f-head); color: var(--ink); margin-bottom: 2px; }
.contact-social { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); font: 600 15px var(--f-head); }
.form { display: grid; gap: 18px; padding: clamp(24px, 3.4vw, 40px); border-radius: 26px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-2); }
.form__head h2 { font: 700 26px/1.2 var(--f-head); letter-spacing: -.015em; }
.form__head p { margin-top: 6px; font-size: 15px; color: var(--muted); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field label { font: 600 14px var(--f-head); color: var(--ink-2); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--bg);
  font: 500 16px/1.4 var(--f-head); color: var(--ink); outline: 0; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand); background: var(--surface); box-shadow: 0 0 0 4px var(--brand-soft); }
.field__err { display: none; font: 500 13px var(--f-head); color: var(--down); }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--down); box-shadow: 0 0 0 4px color-mix(in srgb, var(--down) 14%, transparent); }
.field.is-invalid .field__err { display: block; }
.form__status { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 12px; background: color-mix(in srgb, var(--up) 12%, transparent); color: var(--up); font: 600 15px var(--f-head); }

/* ---------- 404 ---------- */
.nf { position: relative; overflow: hidden; min-height: 72vh; display: grid; place-items: center; text-align: center; background: #04061a; isolation: isolate; }
.nf__map { position: absolute; inset: 0; z-index: -1; background: url("../img/world-dots.svg") center / min(1400px, 150%) auto no-repeat, radial-gradient(50% 50% at 50% 50%, rgba(54, 71, 255, .3), transparent 70%); opacity: .6; }
.nf__in { display: grid; justify-items: center; gap: 18px; padding-block: 80px; max-width: 720px; }
.nf .nf__code { font: 800 clamp(6rem, 18vw, 11rem)/.9 var(--f-display); background: linear-gradient(180deg, #fff, #5a68ff 70%, transparent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nf h1 { font: 800 clamp(1.8rem, 3.6vw, 2.8rem)/1.1 var(--f-head); color: #fff; letter-spacing: -.02em; }
.nf p { color: var(--muted); font-size: 18px; }
.nf .search-inline { max-width: 520px; margin-top: 8px; }
.nf__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

/* ---------- inner page responsive ---------- */
@media (max-width: 1180px) {
  .editorial__grid { grid-template-columns: 200px minmax(0, 1fr); }
  .doc { position: static; grid-column: 1 / -1; max-width: 520px; }
  .post__layout { grid-template-columns: 56px minmax(0, 1fr); }
  .sidebar--post { display: none; }
  .perks { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 40px; }
  .flow::before { display: none; }
}
@media (max-width: 1024px) {
  .page-hero__row { flex-direction: column; align-items: flex-start; }
  .page-hero__aside { justify-items: start; }
  .nr-main__grid, .archive__grid, .faqs-page, .contact__grid, .about-intro__grid { grid-template-columns: minmax(0, 1fr); }
  .sidebar, .faqs-page__aside { position: static; grid-template-columns: 1fr 1fr; }
  .nr-top__grid { grid-template-columns: 1fr; }
  .nr-top__side { grid-template-columns: 1fr 1fr; }
  .lay-feature, .lay-ledger { grid-template-columns: 1fr; }
  .lay-feature__list { margin-top: 0; }
  .lay-quad { grid-template-columns: 1fr 1fr; }
  .editorial__grid { grid-template-columns: 1fr; }
  .editorial__toc { position: static; }
  .editorial__toc ol { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .specs { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .catnav__submit { display: none; }
}
@media (max-width: 760px) {
  .hero-facts { width: 100%; }
  .hero-facts li { flex: 1; padding: 14px; }
  .hero-facts strong { font-size: 20px; }
  .hero-facts span { white-space: normal; }
  .sidebar { grid-template-columns: 1fr; }
  .nr-top__side, .lay-trio, .lay-band, .lay-band:has(> :nth-child(2):last-child), .post-grid { grid-template-columns: 1fr; }
  .nr-top__grid > .card--overlay { min-height: 420px; }
  .stream__item { grid-template-columns: minmax(0, 1fr) 110px; gap: 14px; }
  .stream__time { display: none; }
  .stream__body h3 { font-size: 16.5px; }
  .stream__body p { display: none; }
  .lay-duo .card--row { flex-direction: column; align-items: stretch; }
  .lay-duo .card--row .card__media { width: 100%; max-width: none; }
  .post-grid > .card--lead { display: flex; }
  .post-grid > .card--lead .card__media { min-height: 0; aspect-ratio: 16 / 9; }
  .archive__bar { flex-direction: column; align-items: stretch; }
  .post__layout { grid-template-columns: 1fr; }
  .post__rail { display: none; }
  .post__share-bottom { display: flex; flex-wrap: wrap; }
  .post__figure { margin-top: -90px; }
  .post__figure img { border-radius: 16px; }
  .post__head { padding-bottom: 110px; }
  .post__nav { grid-template-columns: 1fr; }
  .prose { font-size: 17px; }
  .ct th:first-child { min-width: 170px; }
  .perks, .specs, .pillars, .contact-cards, .contact-meta, .form__row { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr 1fr; }
  .dir-bar { position: static; }
  .dir-bar .seg:not(.seg--icons) { order: 3; width: 100%; overflow-x: auto; }
  .seg--icons { display: none; }
  .dir-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .dir-grid .outlet__logo { height: 60px; padding: 10px; }
  .dir-grid .outlet__metrics { grid-template-columns: 1fr; gap: 8px; }
  .ed-sec { grid-template-columns: 1fr; padding: 24px; }
  .pager ol li:nth-child(n + 3):not(:last-child) { display: none; }
  .pager__btn { padding: 0 12px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .nav { display: none; }
  .header__burger { display: inline-grid; }
  .header__tools { margin-left: auto; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 1024px) {
  .nr-grid, .netw__in, .faq-sec__in { grid-template-columns: minmax(0, 1fr); }
  .nr-side { margin-top: 0; }
  .caps__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps__line { display: none; }
  .faq-sec__aside { position: static; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stats .stat:nth-child(4)::before { display: none; }
  .stats--hero .stat:nth-child(n + 4) { border-top: 1px solid rgba(124, 136, 255, .14); }
  .topbar__meta { display: none; }
  .netw__wall { height: 460px; }
}
@media (max-width: 860px) {
  .wm__tiles, .wm__hub-label { display: none; }
  .wm__rails { display: grid; gap: 10px; margin-top: 18px; }
  .wm-chip { display: grid; place-items: center; width: 132px; height: 44px; padding: 0; border-radius: 10px; background: #fff; overflow: hidden; }
  .wm-chip img { width: 100%; height: 100%; object-fit: contain; }
  .wm-chip .wm-tile__ar { font-size: 14px; }
  .wm-pin { transform: scale(1.8); }
  .partners__in { flex-direction: column; align-items: stretch; text-align: center; }
  .partners__label br { display: none; }
  .nr-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .header__cta { display: none; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .sec-head--center { align-items: center; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:nth-child(n)::before { display: none; }
  .stats--hero .stat:nth-child(n + 3) { border-top: 1px solid rgba(124, 136, 255, .14); }
  .stats--hero .stat:last-child { grid-column: 1 / -1; }
  .caps__grid, .steps, .nr-row { grid-template-columns: 1fr; }
  .cap--wide { grid-column: auto; }
  .card--row .card__media { width: 34%; }
  .netw__wall { grid-template-columns: repeat(2, minmax(0, 1fr)); height: 420px; }
  .header__in { gap: 10px; }
  .header__tools { gap: 0; }
  .logo__word { font-size: 15px; }
  .logo__mark { width: 30px; height: 30px; }
  .netw__wall .ncol--2 { display: none; }
  .tier-bars li { grid-template-columns: auto 1fr 36px; }
  .tb__label { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer__contact { grid-column: 1 / -1; }
  .faq summary { grid-template-columns: 30px 1fr 28px; }
  .faq__q { font-size: 16.5px; }
  .faq__a { padding: 0 0 22px 42px; }
  .hero__rotator li { white-space: normal; }
  .hero__pill-sep, .hero__pill-extra, .hero__rotator-br { display: none; }
  .hero__rotator { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .marquee__track, .ticker__track, .ncol { animation: none !important; }
}
.topbar__in:has(.is-offline) .topbar__live { visibility: hidden; }
.topbar__ticker.is-offline .ticker__track { visibility: hidden; }

/* ==========================================================================
   WordPress theme additions — newsroom redesign, Lordicon, WP elements
   ========================================================================== */

/* ---------- Lordicon ---------- */
.lordi { display: inline-grid; place-items: center; width: var(--size, 44px); height: var(--size, 44px); flex: none; }
.lordi lord-icon { width: 100%; height: 100%; }

/* ---------- placeholders & WP bits ---------- */
.thumb-ph { display: block; width: 100%; height: 100%; min-height: 100%; background: url("../img/world-dots.svg") center / 180% auto no-repeat, radial-gradient(80% 80% at 30% 20%, rgba(54, 71, 255, .45), transparent 70%), #0a0d24; }
.logo--custom .logo__img { width: auto; height: 42px; max-width: 240px; object-fit: contain; }
.field--hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.page-body { max-width: 820px; }
.empty { display: grid; justify-items: center; gap: 12px; padding: 64px 24px; border-radius: 22px; background: var(--surface); border: 1px solid var(--line); text-align: center; color: var(--muted); }
.empty .ic { width: 36px; height: 36px; color: var(--brand-ink); }
.empty h2 { font: 700 24px var(--f-head); }
.post__figure--none { display: none; }
.post:not(:has(.post__figure img)) .post__head { padding-bottom: 56px; }
.post:not(:has(.post__figure img)) .post__layout { padding-top: 48px; }
.prose img { height: auto; border-radius: 14px; }
.prose figure { margin: 1.6em 0; }
.prose figcaption { margin-top: 8px; font: 500 13px var(--f-head); color: var(--muted); }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prose th, .prose td { padding: 10px 12px; border: 1px solid var(--line); }
.prose ol { padding-left: 1.3em; list-style: decimal; display: grid; gap: 10px; }
.comments { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.comments__title { font: 700 22px var(--f-head); margin-bottom: 20px; }
.comments__list { display: grid; gap: 18px; margin-bottom: 28px; }
.comment-body { padding: 18px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); font-size: 16px; }
.comment-form { display: grid; gap: 14px; }
.comment-form label { display: block; font: 600 14px var(--f-head); margin-bottom: 6px; }
.comment-form input:not([type=submit]):not([type=checkbox]), .comment-form textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--surface); color: var(--ink); font: 500 16px var(--f-head); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.alignwide, .alignfull { max-width: 100%; }
.pager .dots { border: 0 !important; background: none !important; }

/* ---------- newsroom masthead ---------- */
.mast { position: relative; overflow: hidden; background: #04061a; isolation: isolate; color: var(--ink); }
.mast__in { padding-block: 26px 28px; }
.mast__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px 40px; margin-top: 22px; }
.mast__title { display: flex; align-items: center; gap: 18px; min-width: 0; }
.mast__title .eyebrow { margin-bottom: 10px; }
.mast__title h1 { font: 800 clamp(2rem, 3.8vw, 3.1rem)/1.02 var(--f-head); letter-spacing: -.03em; color: #fff; text-wrap: balance; }
.mast__icon { display: grid; place-items: center; width: 98px; height: 98px; border-radius: 24px; background: #fff; box-shadow: 0 16px 40px -18px rgba(54, 71, 255, .9), inset 0 0 0 1px rgba(255, 255, 255, .6); flex: none; }
.mast .search-inline { flex: none; }
.mast__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 32px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); }
.mast__lead { max-width: 680px; font-size: 17px; color: var(--muted); }
.mast__meta { display: inline-flex; align-items: center; gap: 10px; font: 500 14px var(--f-head); color: var(--ink-2); white-space: nowrap; }

/* ---------- newsroom front: lead / pair / wire ---------- */
.front { padding-block: 32px 8px; }
.front__grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, .92fr); gap: 24px; align-items: stretch; }
.front__lead > .card { height: 100%; }
.front__lead .card__media { flex: 1 1 auto; aspect-ratio: auto; min-height: 280px; }
.front__lead .card__body { flex: none; }
.front__pair > .card { height: 100%; }
.front__pair .card__media { flex: 1 1 auto; aspect-ratio: auto; min-height: 150px; }
.front__pair .card__body { flex: none; }
.front__lead .card__body { padding: 24px 26px 28px; }
.front__lead .card__title { font-size: clamp(1.4rem, 2vw, 1.85rem); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.front__lead .card__ex { -webkit-line-clamp: 3; }
.front__pair { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }
.front__pair .card__body { padding: 16px 18px 18px; gap: 10px; }
.front__pair .card__title { font-size: 16.5px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.wire { display: flex; flex-direction: column; padding: 20px 20px 8px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); }
.wire__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 2px solid var(--ink); }
.wire__head h2 { display: inline-flex; align-items: center; gap: 10px; font: 700 12px/1 var(--f-display); letter-spacing: .16em; text-transform: uppercase; }
.wire__head a { font: 600 13px var(--f-head); color: var(--brand-ink); }
.wire__list { display: grid; flex: 1; }
.wire__list li { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.wire__list li:last-child { border-bottom: 0; }
.wire__list time { font: 600 10.5px/1.7 var(--f-display); letter-spacing: .04em; color: var(--muted); white-space: nowrap; }
.wire__cat { display: block; margin-bottom: 4px; font: 700 10.5px/1.2 var(--f-head); letter-spacing: .07em; text-transform: uppercase; color: var(--brand-ink); }
.wire__list a { font: 600 14.5px/1.35 var(--f-head); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wire__list a::after { content: ""; position: absolute; inset: 0; }
.wire__list li:hover a { color: var(--brand-ink); }

/* ---------- newsroom body: desks ---------- */
.nr-body { padding-block: 44px clamp(64px, 8vw, 104px); }
.nr-body__grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(32px, 4vw, 52px); align-items: start; }
.nr-body__main { display: grid; gap: clamp(48px, 5vw, 64px); min-width: 0; }
.desk__head { position: relative; display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.desk__head::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 88px; height: 2px; background: var(--grad-btn); }
.desk__icon { display: grid; place-items: center; width: 78px; height: 78px; border-radius: 20px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-1); flex: none; transition: border-color .3s, box-shadow .3s; }
.desk__head:hover .desk__icon { border-color: var(--brand-soft-2); box-shadow: 0 10px 26px -14px rgba(54, 71, 255, .7); }
[data-theme="dark"] .desk__icon { background: #fff; }
.desk__title { min-width: 0; }
.desk__title h2 { font: 700 clamp(1.35rem, 2vw, 1.6rem)/1.15 var(--f-head); letter-spacing: -.015em; }
.desk__title h2 a:hover { color: var(--brand-ink); }
.desk__title p { margin-top: 3px; font: 500 13.5px var(--f-head); color: var(--muted); }
.desk__head .link-arrow { margin-left: auto; }
.desk .card__title { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.desk__split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 28px; align-items: stretch; }
.desk__split > .card .card__title { font-size: 20px; }
.desk__list { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.desk__list .card--row { padding-block: 0; }
.desk__list .card--row + .card--row { padding-top: 18px; }
.desk__list .card--row .card__media { max-width: 150px; }
.desk__list .card--row .card__title { font-size: 15.5px; }
.desk__trio { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.desk__trio .card__title { font-size: 16.5px; }
.desk__trio .card__body { padding: 16px 18px 20px; }
.feed { display: grid; }
.card--feed { padding: 20px 0; }
.card--feed .card__media { max-width: 220px; width: 32%; aspect-ratio: 16 / 10; }
.card--feed .card__title { font-size: 18px; -webkit-line-clamp: 2; }
.card--feed .card__ex { font-size: 15.5px; }
.desk--feed .pager { margin-top: 28px; }

/* ---------- archive lead card height ---------- */
.post-grid > .card--lead .card__title { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-grid .card--std .card__title { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

@media (max-width: 1180px) {
  .front__grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
  .wire { grid-column: 1 / -1; }
  .wire__list { grid-template-columns: 1fr 1fr; column-gap: 28px; }
  .wire__list li:nth-last-child(2) { border-bottom: 0; }
}
@media (max-width: 1024px) {
  .nr-body__grid { grid-template-columns: minmax(0, 1fr); }
  .nr-body .sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .nr-grid > .card--lead .card__media { flex: none; aspect-ratio: 16 / 9; min-height: 0; }
  .nr-side { margin-block: 0; }
  .mast__row { flex-direction: column; align-items: stretch; }
  .mast .search-inline { width: 100%; }
}
@media (max-width: 760px) {
  .front__lead .card__media, .front__pair .card__media { flex: none; aspect-ratio: 16 / 9; min-height: 0; }
  .front__grid, .desk__split, .desk__trio { grid-template-columns: minmax(0, 1fr); }
  .front__pair { grid-template-rows: none; }
  .wire__list { grid-template-columns: 1fr; }
  .wire__list li:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .nr-body .sidebar { grid-template-columns: 1fr; }
  .mast__icon { width: 60px; height: 60px; border-radius: 16px; }
  .mast__icon .lordi { --size: 44px !important; }
  .desk__head .link-arrow span, .desk__title p { font-size: 12.5px; }
  .card--feed .card__ex { display: none; }
  .mast__meta { white-space: normal; }
}
.form__status.is-error { background: color-mix(in srgb, var(--down) 12%, transparent); color: var(--down); }

/* ---------- newsroom desks: split alignment + extra layouts ---------- */
.desk__split > .card { height: 100%; }
.desk__split > .card .card__media { flex: 1 1 auto; aspect-ratio: auto; min-height: 220px; }
.desk__split > .card .card__body { flex: none; }
.desk__split > .card .card__title { -webkit-line-clamp: 2; }
.desk__split > .card .card__ex { -webkit-line-clamp: 2; }

/* Spotlight (Blockchain & DeFi): wide feature + three tiles. */
.card--wide { flex-direction: row; }
.card--wide .card__media { flex: none; width: 50%; aspect-ratio: 16 / 10.5; }
.card--wide .card__body { justify-content: center; padding: 26px 30px; gap: 14px; }
.card--wide .card__title { font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.22; -webkit-line-clamp: 3; }
.card--wide .card__ex { -webkit-line-clamp: 3; }
.spotlight__row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.desk .card--tile { align-items: flex-start; gap: 12px; padding: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; transition: border-color .3s, box-shadow .3s; }
.desk .card--tile:hover { border-color: var(--brand-soft-2); box-shadow: var(--sh-2); }
.card--tile .card__media { width: 40%; max-width: 104px; aspect-ratio: 1; border-radius: 10px; }
.card--tile .card__body { gap: 6px; }
.card--tile .chip { display: none; }
.desk .card--tile .card__title { font-size: 14.5px; line-height: 1.32; -webkit-line-clamp: 3; }

/* Panel (FinTech): tinted board with a 2 x 2 grid. */
.panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding: 16px; border-radius: 24px;
  background: radial-gradient(90% 120% at 0% 0%, var(--brand-soft), transparent 60%), var(--surface-2); border: 1px solid var(--brand-soft-2); }
.desk .card--panel, .desk .card--panel + .card--panel { align-items: stretch; gap: 14px; padding: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.desk .card--panel:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.card--panel .card__media { width: 42%; max-width: 170px; aspect-ratio: auto; min-height: 120px; border-radius: 12px; }
.card--panel .card__body { gap: 8px; justify-content: center; }
.desk .card--panel .card__title { font-size: 16px; -webkit-line-clamp: 2; }
.card--panel .card__ex { display: -webkit-box; -webkit-line-clamp: 2; font-size: 14.5px; line-height: 1.45; }

/* Index (AI): numbered headlines beside a tall feature. */
.index { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr); gap: 28px; align-items: stretch; }
.index__list { display: flex; flex-direction: column; justify-content: space-between; }
.index__item { position: relative; display: grid; grid-template-columns: 64px minmax(0, 1fr) 20px; align-items: center; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.index__item:first-child { padding-top: 4px; }
.index__item:last-child { border-bottom: 0; }
.index__n { font: 700 34px/1 var(--f-display); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .85; }
.index__item time { display: block; margin-bottom: 6px; font: 500 12.5px var(--f-head); color: var(--muted); }
.index__item a { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font: 600 17px/1.35 var(--f-head); }
.index__item a::after { content: ""; position: absolute; inset: 0; }
.index__go { width: 20px; height: 20px; color: var(--faint); transition: color .2s, transform .3s var(--ease); }
.index__item:hover a { color: var(--brand-ink); }
.index__item:hover .index__go { color: var(--brand-ink); transform: translate(2px, -2px); }
.index__item:hover .index__n { opacity: 1; }
.card--tall { height: 100%; }
.card--tall .card__media { flex: 1 1 auto; aspect-ratio: auto; min-height: 200px; }
.card--tall .card__body { flex: none; }
.card--tall .card__title { -webkit-line-clamp: 3; }

@media (max-width: 760px) {
  .card--wide { flex-direction: column; }
  .card--wide .card__media { width: 100%; }
  .card--wide .card__body { padding: 18px 20px 22px; }
  .spotlight__row, .panel-grid, .index { grid-template-columns: minmax(0, 1fr); }
  .panel-grid { padding: 10px; }
  .index .card--tall { order: -1; }
  .card--tall .card__media, .desk__split > .card .card__media { flex: none; aspect-ratio: 16 / 9; min-height: 0; }
  .desk__list .card--row + .card--row { padding-top: 14px; }
  .index__item { grid-template-columns: 48px minmax(0, 1fr) 18px; }
  .index__n { font-size: 26px; }
  .mast__icon .lordi { --size: 50px !important; }
}

/* Archive grid: a last card left alone on its row (only possible on the final page) spans the row as a wide card. */
.post-grid > .card--lead ~ .card--std:last-child:nth-child(even),
.post-grid:not(:has(> .card--lead)) > .card--std:last-child:nth-child(odd) { grid-column: 1 / -1; flex-direction: row; }
.post-grid > .card--lead ~ .card--std:last-child:nth-child(even) .card__media,
.post-grid:not(:has(> .card--lead)) > .card--std:last-child:nth-child(odd) .card__media { width: 46%; flex: none; aspect-ratio: 16 / 10; }
.post-grid > .card--lead ~ .card--std:last-child:nth-child(even) .card__body,
.post-grid:not(:has(> .card--lead)) > .card--std:last-child:nth-child(odd) .card__body { justify-content: center; }
@media (max-width: 760px) {
  .post-grid > .card--std:last-child { flex-direction: column !important; }
  .post-grid > .card--std:last-child .card__media { width: 100% !important; }
}

/* Article footer "More in …": two lines of title and two of excerpt. */
.related .card__title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related .card__ex { -webkit-line-clamp: 2; }

/* ==========================================================================
   About — pillars with Lordicon animations
   ========================================================================== */
.pillars-sec { background: var(--bg); }
.pls { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; counter-reset: pl; }
.pl { position: relative; isolation: isolate; display: flex; flex-direction: column; gap: 12px; padding: 30px 30px 32px; overflow: hidden;
  border-radius: 26px; background: var(--surface); border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s; }
.pl::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(140deg, #6f7bff, transparent 38%, transparent 62%, #3bd9ff);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  opacity: 0; transition: opacity .5s; }
.pl::after { content: ""; position: absolute; z-index: -2; right: -80px; top: -80px; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(closest-side, var(--brand-soft-2), transparent); opacity: .7; transition: transform .8s var(--ease), opacity .5s; }
.pl:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 30px 60px -34px rgba(35, 45, 140, .45); }
.pl:hover::before { opacity: 1; }
.pl:hover::after { transform: scale(1.35); opacity: 1; }
.pl__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.pl__icon { display: grid; place-items: center; width: 100px; height: 100px; border-radius: 28px;
  background: linear-gradient(160deg, #ffffff, #eef0ff);
  box-shadow: inset 0 0 0 1px rgba(90, 104, 255, .14), 0 18px 34px -20px rgba(54, 71, 255, .6); }
.pl__n { font: 700 46px/1 var(--f-display); color: transparent; -webkit-text-stroke: 1.2px var(--line-2); letter-spacing: .02em; transition: -webkit-text-stroke-color .4s; }
.pl:hover .pl__n { -webkit-text-stroke-color: var(--brand-hi); }
.pl h3 { font: 700 21px/1.25 var(--f-head); letter-spacing: -.01em; }
.pl p { font-size: 16px; line-height: 1.6; color: var(--muted); }
.pl__bar { position: relative; height: 3px; margin-top: auto; border-radius: 3px; background: var(--bg-2); overflow: hidden; }
.pl p + .pl__bar { margin-top: 14px; }
.pl__bar i { position: absolute; inset: 0 auto 0 0; width: 28%; border-radius: inherit; background: var(--grad-btn); transition: width .7s var(--ease); }
.pl:hover .pl__bar i { width: 100%; }
@media (max-width: 1024px) { .pls { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) {
  .pls { grid-template-columns: minmax(0, 1fr); }
  .pl { padding: 24px; }
  .pl__icon { width: 84px; height: 84px; border-radius: 22px; }
  .pl__icon .lordi { --size: 58px !important; }
}

/* ==========================================================================
   Blog — magazine listing
   ========================================================================== */
.blog-list { padding-block: 40px clamp(64px, 8vw, 104px); }
.bfeat { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 0; overflow: hidden;
  border-radius: 28px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-1);
  transition: box-shadow .5s var(--ease), transform .5s var(--ease); }
.bfeat:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.bfeat__media { display: block; min-height: 380px; overflow: hidden; background: var(--bg-2); }
.bfeat__media img, .bfeat__media .thumb-ph { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.bfeat:hover .bfeat__media img { transform: scale(1.04); }
.bfeat__body { display: flex; flex-direction: column; justify-content: center; gap: 16px; padding: clamp(28px, 3.4vw, 48px); }
.bfeat__label { display: inline-flex; align-items: center; gap: 8px; width: max-content; height: 30px; padding: 0 12px; border-radius: 999px;
  font: 700 10.5px/1 var(--f-display); letter-spacing: .16em; text-transform: uppercase; color: #fff; background: var(--grad-btn); box-shadow: 0 8px 20px -8px rgba(54, 71, 255, .8); }
.bmeta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; font: 500 13.5px var(--f-head); color: var(--muted); }
.bmeta span { display: inline-flex; align-items: center; gap: 6px; }
.bmeta .ic { width: 15px; height: 15px; color: var(--brand-ink); }
.bfeat__title { font: 800 clamp(1.5rem, 2.4vw, 2.15rem)/1.15 var(--f-head); letter-spacing: -.02em; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bfeat__title a::after { content: ""; position: absolute; inset: 0; }
.bfeat:hover .bfeat__title a { color: var(--brand-ink); }
.bfeat__ex { font-size: 17px; line-height: 1.6; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bfeat__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 6px; padding-top: 18px; border-top: 1px solid var(--line); }
.bauthor { display: flex; align-items: center; gap: 10px; font: 600 14px var(--f-head); }
.bauthor i { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; font: 700 10px var(--f-display); font-style: normal; color: #fff; background: var(--grad-btn); }
.bauthor small { display: block; font: 500 12.5px var(--f-head); color: var(--muted); }
.blog__head { margin: clamp(40px, 5vw, 60px) 0 24px; }

.bgrid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px; }
.bcard { grid-column: span 2; position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: 22px; background: var(--surface); border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s; }
.bcard:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: var(--brand-soft-2); }
.bcard__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-2); }
.bcard__media img, .bcard__media .thumb-ph { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.bcard:hover .bcard__media img { transform: scale(1.05); }
.bcard__body { display: flex; flex-direction: column; gap: 12px; flex: 1; padding: 22px 24px 24px; }
.bcard__title { font: 700 19px/1.32 var(--f-head); letter-spacing: -.01em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bcard__title a::after { content: ""; position: absolute; inset: 0; }
.bcard:hover .bcard__title a { color: var(--brand-ink); }
.bcard__ex { font-size: 15.5px; line-height: 1.55; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bcard__more { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 6px; font: 600 14px var(--f-head); color: var(--brand-ink); }
.bcard__more .ic { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.bcard:hover .bcard__more .ic { transform: translateX(4px); }
/* A short last row stretches to fill the width. */
.bgrid > .bcard:last-child:nth-child(3n + 1) { grid-column: 1 / -1; flex-direction: row; }
.bgrid > .bcard:last-child:nth-child(3n + 1) .bcard__media { width: 44%; flex: none; aspect-ratio: auto; min-height: 260px; }
.bgrid > .bcard:last-child:nth-child(3n + 1) .bcard__body { justify-content: center; padding: 30px 36px; }
.bgrid > .bcard:nth-last-child(2):nth-child(3n + 1), .bgrid > .bcard:last-child:nth-child(3n + 2) { grid-column: span 3; }
.blog-list .pager { margin-top: 40px; }
.blog__cta { margin-top: clamp(48px, 6vw, 72px); }

@media (max-width: 1024px) {
  .bfeat { grid-template-columns: minmax(0, 1fr); }
  .bfeat__media { min-height: 0; aspect-ratio: 16 / 9; }
  .bgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bcard, .bgrid > .bcard:nth-last-child(2):nth-child(3n + 1), .bgrid > .bcard:last-child:nth-child(3n + 2) { grid-column: span 1; }
  .bgrid > .bcard:last-child:nth-child(3n + 1) { grid-column: span 1; flex-direction: column; }
  .bgrid > .bcard:last-child:nth-child(3n + 1) .bcard__media { width: 100%; aspect-ratio: 16 / 10; min-height: 0; }
  .bgrid > .bcard:last-child:nth-child(3n + 1) .bcard__body { padding: 22px 24px 24px; }
  .bgrid > .bcard:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .bgrid { grid-template-columns: minmax(0, 1fr); }
  .bgrid > .bcard:last-child:nth-child(odd) { grid-column: auto; }
  .bfeat__foot { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   About — principles, two per row (overrides the three-column version)
   ========================================================================== */
.pls { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.pl { flex-direction: row; align-items: flex-start; gap: 28px; padding: 34px 36px 34px 34px; }
.pl__icon { flex: none; width: 116px; height: 116px; border-radius: 30px; }
.pl__body { position: static; display: flex; flex-direction: column; gap: 10px; flex: 1; min-width: 0; padding-top: 4px; }
.pl__n { position: absolute; top: 26px; right: 30px; font-size: 40px; }
.pl h3 { padding-right: 70px; font-size: 22px; }
.pl p { font-size: 16.5px; line-height: 1.7; }
.pl__bar { width: 100%; margin-top: 16px; }
@media (max-width: 1024px) { .pls { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 640px) {
  .pl { flex-direction: column; gap: 18px; padding: 26px 24px; }
  .pl__icon { width: 92px; height: 92px; border-radius: 24px; }
  .pl__icon .lordi { --size: 60px !important; }
  .pl__n { top: 22px; right: 22px; font-size: 32px; }
  .pl h3 { padding-right: 0; }
}

/* ==========================================================================
   Home — how it works: Lordicon steps, rotating rings, animated background
   ========================================================================== */
.steps { gap: 26px; }
.steps__line { display: none; }
.step { display: flex; flex-direction: column; padding: 32px 26px 32px; border-radius: 26px; backdrop-filter: blur(6px); }
.step__icon { position: relative; display: grid; place-items: center; width: 108px; height: 108px; margin: 0 0 24px;
  border-radius: 50%; background: none; box-shadow: none; color: inherit; }
.step__icon::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(124, 136, 255, .22); }
.step__ring { position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 58%, rgba(90, 104, 255, .9) 78%, #bdf3ff 92%, transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2.5px), #000 calc(100% - 2px));
  animation: stepSpin 5s linear infinite; animation-delay: calc(var(--i, 0) * -1.25s); }
@keyframes stepSpin { to { transform: rotate(360deg); } }
.step__disc { display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 0 7px rgba(90, 104, 255, .12), 0 18px 40px -12px rgba(54, 71, 255, .75); }
.step__n { position: static; display: block; margin-bottom: 10px; font: 600 11px/1 var(--f-display); letter-spacing: .2em; text-transform: uppercase; color: #9fe9ff; }
.step h3 { font-size: 21px; }
.step__arrow { position: absolute; z-index: 2; top: 86px; right: -29px; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  color: #bdf3ff; background: #0b0f2e; border: 1px solid rgba(124, 136, 255, .4); box-shadow: 0 0 18px -2px rgba(54, 71, 255, .7);
  animation: stepNudge 2.4s ease-in-out infinite; animation-delay: calc(var(--i, 0) * .4s); }
.step__arrow .ic { width: 15px; height: 15px; }
@keyframes stepNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
.step:hover .step__disc { box-shadow: 0 0 0 9px rgba(90, 104, 255, .2), 0 20px 46px -12px rgba(54, 71, 255, .9); }
@media (max-width: 1024px) { .step__arrow { display: none; } }
@media (prefers-reduced-motion: reduce) { .step__ring, .step__arrow { animation: none; } }
.pl { align-items: stretch; }
.pl__icon { align-self: flex-start; }
.pl p { margin-bottom: 18px; }
.pl .pl__bar, .pl p + .pl__bar { margin-top: auto; }

/* How it works: the same drifting dotted map, sweep and city pings as the page headers, centred */
.how { position: relative; isolation: isolate; }
.how__map { background: radial-gradient(40% 60% at 0% 0%, rgba(54, 71, 255, .24), transparent 70%), radial-gradient(40% 60% at 100% 100%, rgba(59, 217, 255, .08), transparent 70%), #060816; }
.how__map::after { opacity: .06; }
.how__map .ph-map { right: auto; left: 50%; top: 56%; width: max(1500px, 118%); opacity: .62;
  transform: translate3d(-50%, -50%, 0); animation-name: howDrift; animation-duration: 26s;
  -webkit-mask-image: radial-gradient(56% 62% at 50% 50%, #000 30%, transparent 78%);
  mask-image: radial-gradient(56% 62% at 50% 50%, #000 30%, transparent 78%); }
@keyframes howDrift { from { transform: translate3d(-50%, -50%, 0) scale(1); } to { transform: translate3d(calc(-50% - 40px), -48%, 0) scale(1.05); } }
@media (max-width: 760px) { .how__map .ph-map { width: 1100px; opacity: .35; } }

/* Footer: the hero's moving light ribbons and flowing lines, kept low so the text stays calm */
.footer { isolation: isolate; }
.footer__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; background: linear-gradient(180deg, #050823 0%, #03040f 100%); }
.footer__bg .aurora--1 { opacity: .38; top: -260px; }
.footer__bg .aurora--2 { opacity: .26; top: -220px; }
.footer__waves { position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: .85;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .6) 45%, transparent 90%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .6) 45%, transparent 90%); }

/* Compact footer (about 20% shorter, same design) */
.footer__cta { padding-block: clamp(36px, 3.8vw, 50px); }
.footer__grid { padding-block: 36px 28px; }
.footer__brand p { margin: 14px 0 16px; }
.footer__col h3 { margin-bottom: 14px; }
.footer__col ul { gap: 9px; }
.footer__bottom { padding-block: 16px; }
.faq__a, .footer__brand p { text-align: justify; text-justify: inter-word; }

/* ==========================================================================
   About — principles: sticky index on the left, principle cards on the right
   ========================================================================== */
.pillars-sec { overflow: clip; background: radial-gradient(40% 50% at 0% 0%, rgba(54, 71, 255, .07), transparent 70%), var(--bg); }
.pv { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 96px); align-items: stretch; }
.pv__sticky { position: sticky; top: calc(var(--header-h) + 40px); }
.pv__lead { margin-top: 16px; font-size: 18px; color: var(--muted); text-align: justify; text-justify: inter-word; }
.pv__index { display: grid; margin: 34px 0 34px; border-left: 1px solid var(--line); list-style: none; }
.pv__index a { position: relative; display: flex; align-items: baseline; gap: 14px; padding: 11px 0 11px 22px; font: 600 15.5px/1.35 var(--f-head); color: var(--muted); transition: color .3s; }
.pv__index a::before { content: ""; position: absolute; left: -1px; top: 8px; bottom: 8px; width: 2px; border-radius: 2px; background: var(--brand); transform: scaleY(0); transition: transform .35s var(--ease); }
.pv__index span { font: 700 11px/1 var(--f-display); letter-spacing: .12em; color: var(--muted-2, var(--muted)); opacity: .7; }
.pv__index a:hover, .pv__index a.is-active { color: var(--ink); }
.pv__index a.is-active::before { transform: scaleY(1); }
.pv__index a.is-active span { color: var(--brand); opacity: 1; }

.pv__list { display: grid; gap: 20px; list-style: none; }
.pv__item { position: relative; isolation: isolate; display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 28px; padding: 34px 38px 36px 34px;
  border-radius: 24px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-1);
  transition: border-color .4s, box-shadow .4s, transform .4s var(--ease); }
.pv__item::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; padding: 1.5px; opacity: 0; transition: opacity .4s;
  background: linear-gradient(135deg, #3647ff, #18d6ff 50%, rgba(54, 71, 255, .15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.pv__item.is-active, .pv__item:hover { border-color: transparent; box-shadow: 0 28px 60px -32px rgba(35, 45, 140, .42); }
.pv__item.is-active::before, .pv__item:hover::before { opacity: 1; }
.pv__icon { position: relative; display: grid; place-items: center; width: 96px; height: 96px; border-radius: 26px;
  background: linear-gradient(160deg, #fff, var(--brand-soft)); border: 1px solid var(--brand-soft-2);
  box-shadow: inset 0 1px 0 #fff, 0 16px 30px -18px rgba(54, 71, 255, .55); }
.pv__glow { position: absolute; inset: 14px; z-index: -1; border-radius: 50%; background: radial-gradient(closest-side, rgba(54, 71, 255, .35), transparent); filter: blur(12px); opacity: 0; transition: opacity .4s; }
.pv__item.is-active .pv__glow { opacity: 1; }
.pv__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.pv__n { font: 700 12px/1 var(--f-display); letter-spacing: .14em; color: var(--brand); }
.pv__tag { padding: 6px 10px; border-radius: 999px; background: var(--brand-soft); font: 600 10.5px/1 var(--f-display); letter-spacing: .14em; text-transform: uppercase; color: var(--brand-ink); }
.pv__body h3 { margin-bottom: 12px; font: 700 23px/1.25 var(--f-head); letter-spacing: -.01em; color: var(--ink); }
.pv__body p:last-child { font-size: 16.5px; line-height: 1.75; color: var(--muted); text-align: justify; text-justify: inter-word; hyphens: manual; -webkit-hyphens: manual; }

[data-theme="dark"] .pv__icon { background: linear-gradient(160deg, #fff, #e8ebff); border-color: transparent; }
[data-theme="dark"] .pv__tag { background: rgba(90, 104, 255, .16); color: #b9c1ff; }

@media (max-width: 1024px) {
  .pv { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .pv__sticky { position: static; }
  .pv__index { display: none; }
  .pv__sticky .btn { display: none; }
}
@media (max-width: 640px) {
  .pv__item { grid-template-columns: minmax(0, 1fr); gap: 18px; padding: 26px 22px; }
  .pv__icon { width: 80px; height: 80px; border-radius: 22px; }
  .pv__body h3 { font-size: 20px; }
}

/* Site logo image: the light version on dark surfaces (header, drawer, footer) */
.logo--img { gap: 0; }
.logo__img { display: block; width: auto; height: 38px; }
.logo__img--on-light { display: none; }
.logo--on-light .logo__img--on-light { display: block; }
.logo--on-light .logo__img--on-dark { display: none; }
.footer .logo__img { height: 40px; }
@media (max-width: 600px) { .logo__img { height: 32px; } }

/* Footer: the copyright line on its own, centred */
.footer__bottom--center { justify-content: center; text-align: center; }
.footer__contact li { min-height: 28px; }

/* Outlets whose logo file is not bundled fall back to their name */
.outlet__logo--text { padding: 10px 14px; text-align: center; }
.outlet__logo--text span { font: 700 15px/1.25 var(--f-head); letter-spacing: -.01em; color: #101438; }
.ncol .outlet__logo--text span { font-size: 13px; }

/* Article images: keep classic-editor captions (they carry an inline pixel width) inside the column */
.prose .wp-caption { width: auto !important; max-width: 100%; margin-inline: auto; }
.prose .wp-caption img { width: 100%; }
.prose .wp-caption-text { margin-top: 8px; font: 500 13px var(--f-head); color: var(--muted); }
.prose figure, .prose img, .prose iframe, .prose video, .prose embed { max-width: 100%; }
.prose .aligncenter { display: block; float: none; margin-inline: auto; }
.prose .alignleft { float: left; max-width: min(50%, 340px); margin: .4em 1.6em 1.1em 0; }
.prose .alignright { float: right; max-width: min(50%, 340px); margin: .4em 0 1.1em 1.6em; }
.prose > *:not(figure):not(img) { clear: both; }
@media (max-width: 600px) {
  .prose .alignleft, .prose .alignright { float: none; max-width: 100%; margin-inline: auto; }
}

/* Some releases arrive with their paragraphs inside a wrapper (e.g. <div class="xn-content">);
   give those the same rhythm as paragraphs that sit directly in the article. */
.prose :where(div, article, section, main) > * + * { margin-top: 1.15em; }

/* ==========================================================================
   Pricing — pay by QR
   ========================================================================== */
.plan__qr { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 10px; padding: 9px 12px;
  border-radius: 12px; border: 1px dashed var(--line-2); background: none; cursor: pointer;
  font: 600 13.5px/1 var(--f-head); color: var(--muted); transition: color .25s, border-color .25s, background .25s; }
.plan__qr:hover { color: var(--brand-ink); border-color: var(--brand); background: var(--brand-soft); }
.plan__qr .ic { width: 16px; height: 16px; }

.qrm { position: fixed; inset: 0; z-index: 130; display: grid; place-items: center; padding: 20px;
  background: rgba(4, 6, 26, .72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: fadeUp .25s var(--ease); }
.qrm[hidden] { display: none; }
.qrm__box { position: relative; width: min(380px, 100%); max-height: 92vh; overflow-y: auto; padding: 30px 28px 26px; text-align: center;
  border-radius: 24px; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 40px 90px -40px rgba(8, 12, 60, .75); }
.qrm__close { position: absolute; top: 14px; right: 14px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--bg); color: var(--muted); cursor: pointer; }
.qrm__close:hover { color: var(--ink); border-color: var(--line-2); }
.qrm__eyebrow { font: 600 10.5px/1 var(--f-display); letter-spacing: .2em; text-transform: uppercase; color: var(--brand-ink); }
.qrm__title { margin-top: 10px; font: 700 21px/1.2 var(--f-head); color: var(--ink); }
.qrm__price { margin-top: 4px; font: 700 26px/1 var(--f-display); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.qrm__code { margin: 18px auto 14px; width: 232px; padding: 12px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.qrm__code img { width: 100%; height: auto; display: block; }
.qrm__note { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 16px; text-align: left; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.qrm__note .ic { flex: none; margin-top: 2px; color: var(--brand); }

/* ==========================================================================
   Tablet and phone polish (desktop layout untouched)
   ========================================================================== */
@media (max-width: 1024px) {
  /* keep the dotted map from washing out the header text */
  .ph-map { opacity: .42; }
  .mast__lead, .page-hero__lead { position: relative; }
  .dir-legend__key span { white-space: nowrap; }
  .seg__btn { white-space: nowrap; }
}
@media (max-width: 900px) {
  /* the label stacks onto one line here, so it needs its own spacing */
  .partners__label span { display: block; margin-top: 2px; }
}
@media (max-width: 760px) {
  .ph-map { opacity: .3; }
  .outlet__head { min-width: 0; }
  .outlet__domain { display: block; flex: 1 1 auto; min-width: 0; max-width: 100%; font-size: 12px; }
  .outlet__domain .ic { display: none; }
  .help-card { flex-wrap: wrap; row-gap: 12px; }
  .help-card .btn { width: 100%; }
}
@media (max-width: 600px) {
  /* justified text leaves large gaps on a narrow screen, so it reads left-aligned there */
  .faq__a, .footer__brand p, .pv__lead, .pv__body p:last-child, .prose p, .prose li { text-align: left !important; }
}

/* ---------- phone: the logo rails and the pipeline chain ---------- */
@media (max-width: 860px) {
  /* breathing room between the scrolling logos and the stats bar */
  .hero__map { margin-bottom: 20px; }
  .hero__stats { margin-top: 0; }
  .wm__rails { gap: 12px; margin-top: 22px; }
  .wm-chip { width: 124px; height: 42px; border-radius: 12px; box-shadow: 0 10px 24px -14px rgba(4, 8, 40, .9); }
  .wm__rails .marquee__track { gap: 12px; }
}
@media (max-width: 600px) {
  /* the chain reads top to bottom instead of breaking across lines */
  .pipeline { flex-direction: column; align-items: stretch; padding-top: 20px; }
  .pipeline__node { justify-content: center; width: 100%; }
  .pipeline__wire { width: 2px; height: 16px; margin: 0 auto; }
  .pipeline__wire i { width: 100%; height: 45%; animation-name: wireV; }
}
@keyframes wireV { from { transform: translateY(-120%); } to { transform: translateY(260%); } }

/* Phone footer: Categories and Contact information sit side by side, like Pages and Useful Links */
@media (max-width: 640px) {
  .footer__contact { grid-column: auto; }
  .footer__grid { grid-template-columns: .85fr 1.15fr; }
  .footer__col h3 { font-size: 10px; letter-spacing: .12em; }
  .footer__contact li { align-items: flex-start; font-size: 13.5px; line-height: 1.45; gap: 8px; }
  .footer__contact .ic { margin-top: 2px; }
  .footer__contact a, .footer__contact span { overflow-wrap: anywhere; }
}
