/*
Theme Name: Thrynovva Online
Theme URI: https://thrynovva.online/
Author: Thrynovva Online
Author URI: https://thrynovva.online/
Description: Custom WordPress theme converted from the original thrynovva.online static website. Includes auto-created pages, connected internal links, static page templates, and the original design/assets.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: thrynovva-online
Tags: custom-site, responsive, landing-page, dark, business
*/

/* ═══════════════════════════════════════════════════════════
   thrynovva.online — PREMIUM UK MOBILE GUIDE
   Apple-inspired cinematic dark design system
   thrynovva.online
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── TOKENS ─── */
:root {
  --black:      #000000;
  --near-black: #0A0A0A;
  --dark1:      #111111;
  --dark2:      #1A1A1A;
  --dark3:      #222222;
  --border:     rgba(255,255,255,0.08);
  --border2:    rgba(255,255,255,0.13);
  --white:      #FFFFFF;
  --off-white:  #F5F5F5;
  --dim1:       rgba(255,255,255,0.72);
  --dim2:       rgba(255,255,255,0.45);
  --dim3:       rgba(255,255,255,0.22);
  --dim4:       rgba(255,255,255,0.10);
  --accent:     #E8E0D0;    /* warm cream */
  --gold:       #C9A84C;
  --blue-glow:  #2997FF;
  --green:      #30D158;
  --orange:     #FF9500;
  --red-soft:   #FF6B6B;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --max-w: 1200px;
  --gutter: clamp(20px, 5vw, 60px);
  --section: clamp(80px, 10vw, 140px);
  --r: 14px;
  --r-lg: 24px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: none; font-family: var(--font-body); border: none; background: none; }

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s, opacity .3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .4s cubic-bezier(.25,.46,.45,.94),
              height .4s cubic-bezier(.25,.46,.45,.94),
              border-color .3s;
}
.cursor.grow { width: 20px; height: 20px; }
.cursor-ring.grow { width: 70px; height: 70px; border-color: rgba(255,255,255,0.2); }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 58px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}
.nav.scrolled { background: rgba(0,0,0,0.92); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: 100%; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.01em;
}
.nav-brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, #222, #333);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700;
  color: var(--accent); letter-spacing: 0.08em;
}
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  color: var(--dim2); padding: 7px 13px;
  border-radius: 8px; transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); background: var(--dim4); }
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 8px 20px !important;
  background: var(--white) !important;
  color: var(--black) !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.88; background: var(--white) !important; }
.burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer;
}
.burger span {
  width: 22px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.drawer {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(40px);
  flex-direction: column;
  padding: 80px var(--gutter) 40px;
  overflow-y: auto;
}
.drawer.open { display: flex; }
.drawer-close {
  position: absolute; top: 14px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--dark3); color: var(--dim2);
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.drawer-section-title {
  font-size: 0.62rem; font-weight: 700;
  color: var(--dim3); letter-spacing: 0.14em; text-transform: uppercase;
  padding: 18px 0 6px;
}
.drawer a {
  padding: 13px 0; font-size: 1.1rem; font-weight: 400;
  color: var(--dim1); border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.drawer a:hover { color: var(--white); }

/* ─── SHARED LAYOUT ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--section) var(--gutter); }
.eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dim3);
}

/* ─── TYPOGRAPHY ─── */
.d-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 700; line-height: 1.02;
  letter-spacing: -0.02em;
}
.d-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em;
}
.d-md {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.015em;
}
.t-lg {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400; line-height: 1.65;
}
.t-md { font-size: clamp(0.92rem, 1.3vw, 1.05rem); line-height: 1.72; }
.t-sm { font-size: 0.84rem; line-height: 1.68; }
.t-xs { font-size: 0.76rem; line-height: 1.6; }

/* ─── COLOURS ─── */
.c-white  { color: var(--white); }
.c-dim1   { color: var(--dim1); }
.c-dim2   { color: var(--dim2); }
.c-dim3   { color: var(--dim3); }
.c-gold   { color: var(--gold); }
.c-green  { color: var(--green); }
.c-blue   { color: var(--blue-glow); }
.c-accent { color: var(--accent); }

/* ─── GRADIENT TEXT ─── */
.grad-text {
  background: linear-gradient(135deg, #fff 0%, #C9A84C 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-blue {
  background: linear-gradient(135deg, #2997FF 0%, #30D158 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ─── */
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  background: var(--white); color: var(--black);
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.01em;
  transition: opacity 0.22s, transform 0.22s;
}
.btn-white:hover { opacity: 0.87; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 100px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.88rem; font-weight: 500;
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.btn-text {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.84rem; font-weight: 600; color: var(--blue-glow);
  transition: gap 0.2s;
}
.btn-text:hover { gap: 10px; }
.btn-text .arr { transition: transform 0.2s; }
.btn-text:hover .arr { transform: translateX(3px); }

/* ─── HERO ─── */
.hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px var(--gutter) 60px;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.28;
  transition: opacity 1.2s ease;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.97) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero h1 { margin-bottom: 24px; }
.hero .lead {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: var(--dim2); line-height: 1.72;
  max-width: 640px; margin: 0 auto 40px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: bounce 2.5s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.1em; color: var(--dim3); text-transform: uppercase; }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--dark1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--gutter);
}
.stats-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.72rem; color: var(--dim3); font-weight: 500; letter-spacing: 0.03em; }

/* ─── FULLSCREEN SECTION (Apple-style) ─── */
.fs-section {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
}
.fs-bg {
  position: absolute; inset: 0; z-index: 0;
}
.fs-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s cubic-bezier(.25,.46,.45,.94);
}
.fs-section:hover .fs-bg img { transform: scale(1.03); }
.fs-overlay {
  position: absolute; inset: 0;
}
.fs-overlay-l {
  background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.1) 100%);
}
.fs-overlay-r {
  background: linear-gradient(270deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.1) 100%);
}
.fs-overlay-c {
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
}
.fs-overlay-b {
  background: linear-gradient(0deg, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.1) 80%, transparent 100%);
}
.fs-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); width: 100%; margin: 0 auto;
  padding: var(--section) var(--gutter);
}
.fs-content-center { text-align: center; }

/* ─── NETWORK CARDS — full bleed grid ─── */
.network-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 560px 560px;
  gap: 3px;
}
.net-tile {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.net-tile-bg {
  position: absolute; inset: 0;
}
.net-tile-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(.25,.46,.45,.94);
  filter: brightness(0.45) saturate(0.8);
}
.net-tile:hover .net-tile-bg img {
  transform: scale(1.06);
  filter: brightness(0.55) saturate(0.9);
}
.net-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 80%);
}
.net-tile-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity 0.4s;
}
.net-tile:hover .net-tile-accent { opacity: 1; }
.net-tile-body {
  position: relative; z-index: 2;
  padding: 36px 40px;
  width: 100%;
  transform: translateY(8px); transition: transform 0.4s cubic-bezier(.25,.46,.45,.94);
}
.net-tile:hover .net-tile-body { transform: translateY(0); }
.net-badge {
  display: inline-block;
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.1); color: var(--dim1);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}
.net-tile h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; margin-bottom: 10px;
  line-height: 1.08;
}
.net-tile p {
  font-size: 0.88rem; color: var(--dim2);
  line-height: 1.68; max-width: 380px; margin-bottom: 22px;
}
.net-tile-stats {
  display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap;
}
.n-stat { text-align: center; }
.n-stat-n {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700; color: var(--white);
  line-height: 1;
}
.n-stat-l { font-size: 0.62rem; color: var(--dim3); margin-top: 3px; }

/* ─── FEATURE PANELS ─── */
.feature-panels {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.feat-panel {
  position: relative; overflow: hidden;
  min-height: 520px; padding: 56px 50px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.feat-panel-bg {
  position: absolute; inset: 0;
}
.feat-panel-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.35);
  transition: transform 0.8s ease, filter 0.4s;
}
.feat-panel:hover .feat-panel-bg img {
  transform: scale(1.04); filter: brightness(0.42);
}
.feat-panel-body { position: relative; z-index: 2; }
.feat-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  font-weight: 700; color: var(--white);
  letter-spacing: -0.015em; margin-bottom: 12px;
  line-height: 1.1;
}
.feat-panel p {
  font-size: 0.9rem; color: var(--dim2);
  line-height: 1.7; max-width: 400px; margin-bottom: 24px;
}

/* ─── SATELLITE HERO ─── */
.satellite-hero {
  background: var(--black);
  padding: var(--section) var(--gutter);
  text-align: center; position: relative; overflow: hidden;
}
.sat-bg-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(41,151,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.sat-visual {
  position: relative; width: 260px; height: 260px;
  margin: 0 auto 56px;
  display: flex; align-items: center; justify-content: center;
}
.sat-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(41,151,255,0.18);
}
.sat-ring:nth-child(1) {
  inset: 0; animation: spin 12s linear infinite;
}
.sat-ring:nth-child(2) {
  inset: 14%; animation: spin 8s linear infinite reverse;
}
.sat-ring:nth-child(3) {
  inset: 28%; animation: spin 5s linear infinite;
}
@keyframes spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.sat-dot {
  position: absolute; width: 8px; height: 8px;
  border-radius: 50%; background: var(--blue-glow);
  box-shadow: 0 0 10px var(--blue-glow);
  top: -4px; left: 50%; transform: translateX(-50%);
}
.sat-core {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(41,151,255,0.2), rgba(0,0,0,0.9));
  border: 1px solid rgba(41,151,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; z-index: 2;
}

/* ─── PLAN SCROLL ─── */
.plan-scroll-wrap {
  overflow-x: auto; scrollbar-width: none; padding-bottom: 20px;
}
.plan-scroll-wrap::-webkit-scrollbar { display: none; }
.plan-scroll {
  display: flex; gap: 16px;
  padding: 0 var(--gutter);
  scroll-snap-type: x mandatory;
}
.plan-card {
  flex: 0 0 300px;
  background: var(--dark1);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  scroll-snap-align: start;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.plan-card:hover {
  border-color: var(--border2);
  background: var(--dark2);
  transform: translateY(-4px);
}
.plan-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 22px;
}
.plan-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700; color: var(--white);
  margin-bottom: 10px;
}
.plan-card > p { font-size: 0.85rem; color: var(--dim2); line-height: 1.68; margin-bottom: 22px; }
.plan-features { list-style: none; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.8rem; color: var(--dim2);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.plan-features li:last-child { border: none; }
.plan-check { color: var(--green); font-size: 0.7rem; margin-top: 1px; flex-shrink: 0; font-weight: 700; }

/* ─── COMPARE TABLE ─── */
.table-scroll { overflow-x: auto; border-radius: var(--r-lg); }
.cmp-table {
  width: 100%; border-collapse: collapse; min-width: 760px;
  background: var(--dark1);
}
.cmp-table thead tr { background: var(--dark2); }
.cmp-table th {
  padding: 16px 20px; text-align: left;
  font-size: 0.68rem; font-weight: 700;
  color: var(--dim3); letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.cmp-table td {
  padding: 14px 20px; font-size: 0.84rem;
  color: var(--dim2); border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cmp-table tbody tr:last-child td { border: none; }
.cmp-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.cmp-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.cov-bar { height: 3px; border-radius: 2px; background: rgba(255,255,255,0.07); width: 80px; margin-top: 5px; }
.cov-bar-fill { height: 100%; border-radius: 2px; background: var(--green); }
.tag-mno {
  display: inline-block; padding: 2px 10px; border-radius: 100px;
  font-size: 0.62rem; font-weight: 700;
  background: rgba(41,151,255,0.15); color: var(--blue-glow);
}
.tag-mvno {
  display: inline-block; padding: 2px 10px; border-radius: 100px;
  font-size: 0.62rem; font-weight: 700;
  background: rgba(201,168,76,0.15); color: var(--gold);
}

/* ─── TIMELINE ─── */
.tl {
  position: relative;
  padding-left: 0;
}
.tl::before {
  content: '';
  position: absolute; left: 28px; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.tl-row {
  display: flex; gap: 28px; margin-bottom: 28px;
}
.tl-year {
  flex-shrink: 0; width: 56px; height: 56px;
  background: var(--dark2); border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem; font-weight: 800; color: var(--accent);
  position: relative; z-index: 1;
  letter-spacing: 0.02em;
}
.tl-box {
  flex: 1; background: var(--dark1);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 22px 26px;
  transition: border-color 0.3s, background 0.3s;
}
.tl-box:hover { border-color: var(--border2); background: var(--dark2); }
.tl-box h3 {
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 700; color: var(--white); margin-bottom: 8px;
}
.tl-box p { font-size: 0.85rem; color: var(--dim2); line-height: 1.72; }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 22px 0; cursor: pointer; user-select: none;
}
.faq-q-text { font-size: 0.97rem; font-weight: 500; color: var(--white); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--dark2); color: var(--dim2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; transition: all 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--white); color: var(--black); transform: rotate(45deg);
}
.faq-a {
  display: none; padding: 0 0 20px;
  font-size: 0.88rem; color: var(--dim2); line-height: 1.78;
}
.faq-item.open .faq-a { display: block; }

/* ─── GLOSSARY ─── */
.glos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.glos-item {
  background: var(--dark1); border: 1px solid var(--border);
  padding: 26px; transition: all 0.25s;
}
.glos-item:hover { background: var(--dark2); border-color: var(--border2); }
.glos-term {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.glos-item p { font-size: 0.82rem; color: var(--dim2); line-height: 1.68; }

/* ─── INFO/WARN BOXES ─── */
.info-box {
  background: rgba(41,151,255,0.07);
  border-left: 3px solid var(--blue-glow);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px; font-size: 0.84rem;
  color: var(--dim2); margin: 28px 0;
}
.info-box strong { color: var(--blue-glow); }
.warn-box {
  background: rgba(255,149,0,0.07);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px; font-size: 0.84rem;
  color: var(--dim2); margin: 28px 0;
}
.warn-box strong { color: var(--orange); }

/* ─── STAT BOXES ─── */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 36px 0; }
.stat-box {
  background: var(--dark1); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px; text-align: center;
}
.stat-box .n {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; line-height: 1;
}
.stat-box .l { font-size: 0.7rem; color: var(--dim3); margin-top: 5px; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  min-height: 60vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 0 var(--gutter) clamp(48px,7vw,90px);
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.28);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.15) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: var(--max-w); width: 100%; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.7rem; color: var(--dim3); margin-bottom: 18px;
}
.breadcrumb a { color: var(--gold); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--dim3); }

/* ─── PROSE ─── */
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700;
  color: var(--white); letter-spacing: -0.015em;
  margin: 44px 0 16px;
}
.prose h3 {
  font-size: 1.05rem; font-weight: 600; color: var(--gold);
  margin: 30px 0 12px;
}
.prose p { font-size: 0.92rem; color: var(--dim1); line-height: 1.82; margin-bottom: 18px; }
.prose ul { padding-left: 22px; margin-bottom: 20px; }
.prose ul li { font-size: 0.9rem; color: var(--dim1); margin-bottom: 9px; line-height: 1.7; }

/* ─── CONTACT ─── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.74rem; font-weight: 600;
  color: var(--dim2); margin-bottom: 8px; letter-spacing: 0.04em; text-transform: uppercase;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px;
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--r); color: var(--white);
  font-size: 0.9rem; font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s;
  outline: none; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--dim3); }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold); background: var(--dark3);
}
.form-group select { color: var(--dim1); cursor: none; }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--white); color: var(--black);
  border-radius: 100px; font-weight: 700; font-size: 0.92rem;
  transition: opacity 0.22s, transform 0.22s; cursor: none;
}
.form-submit:hover { opacity: 0.88; transform: translateY(-1px); }

/* ─── TOPBAR ─── */
.topbar {
  background: var(--dark2); border-bottom: 1px solid var(--border);
  text-align: center; padding: 10px 20px;
  font-size: 0.7rem; color: var(--dim3); letter-spacing: 0.02em;
}
.topbar strong { color: var(--dim1); }

/* ─── FOOTER ─── */
footer {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  padding: 70px var(--gutter) 32px;
}
.footer-grid { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 52px; border-bottom: 1px solid var(--border); margin-bottom: 30px;
}
.footer-brand-name {
  display: flex; align-items: center; gap: 11px; margin-bottom: 16px;
}
.footer-brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--dark3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem; font-weight: 700; color: var(--accent);
}
.footer-brand-text {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--white);
}
.footer-brand > p { font-size: 0.77rem; color: var(--dim3); line-height: 1.82; max-width: 230px; }
.footer-col h4 {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dim3); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 0.8rem; color: var(--dim3); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--dim1); }
.footer-bottom {
  font-size: 0.7rem; color: var(--dim3); line-height: 1.9;
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--dim1); }

/* ─── DIVIDER ─── */
.divider { height: 1px; background: var(--border); max-width: var(--max-w); margin: 0 auto; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(.25,.46,.45,.94),
              transform 0.75s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }

/* ─── NOISE OVERLAY ─── */
.noise::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px; pointer-events: none; opacity: 0.3;
}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
  .network-mosaic { grid-template-rows: 500px 500px; }
  .feature-panels { grid-template-columns: 1fr; }
  .glos-grid { grid-template-columns: repeat(2,1fr); }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media(max-width:768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .network-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .net-tile { min-height: 400px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .glos-grid { grid-template-columns: 1fr; }
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  button, a { cursor: auto; }
  .hero-btns { flex-direction: column; align-items: center; }
}
@media(max-width:480px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
  .plan-card { flex: 0 0 270px; }
}
