/* ============================================================
   RN MEDIAGROUP — Prototype v1
   Design tokens: brand red (modernized #B81820), dark layered
   ============================================================ */

/* ─── Tokens ─── */
:root {
  /* Brand red (sampled rgb(176,0,0), modernized for digital contrast) */
  --brand: #D5151F;
  --brand-deep: #A8101A;
  --brand-bright: #FF1F2D;
  --brand-glow: rgba(213, 21, 31, 0.35);
  --brand-glow-2: rgba(213, 21, 31, 0.12);

  /* Dark layered (default) */
  --bg-0: #07080A;
  --bg-1: #0E0F12;
  --bg-2: #15171C;
  --bg-3: #1D2026;
  --bg-glass: rgba(15, 17, 22, 0.65);

  /* Light alt for sections */
  --bg-light: #F6F6F7;

  /* Text */
  --ink: #F8F8FA;
  --ink-2: #C2C5CC;
  --ink-3: #7E828B;
  --ink-4: #4A4D55;
  --ink-on-light: #0A0B0F;

  /* Lines */
  --line: rgba(255,255,255,0.07);
  --line-2: rgba(255,255,255,0.14);
  --line-3: rgba(255,255,255,0.22);

  /* Status */
  --green: #20C97A;
  --amber: #F0B020;
  --blue: #4FA8FF;

  /* Typography */
  --f-display: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --f-body: 'Geist', 'Inter', system-ui, sans-serif;
  --f-mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;
  --f-italic: 'PT Serif', 'Lora', Georgia, serif;

  /* Layout */
  --container: 1280px;
  --pad-x: clamp(20px, 4vw, 48px);
  --section-pad: clamp(72px, 10vw, 144px);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-0);
  font-feature-settings: "ss01", "cv01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input { font: inherit; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
em { font-style: normal; font-family: var(--f-italic); font-style: italic; color: var(--brand-bright); font-weight: 400; }

/* Subtle global noise */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ─── Layout ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ─── Util Bar ─── */
.util-bar {
  background: var(--bg-0);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
  position: relative;
  z-index: 100;
}
.util-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 20px;
}
.util-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--bg-2);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 200ms var(--ease);
}
.util-pill:hover { border-color: var(--line-2); color: var(--ink-2); }
.util-right { display: flex; align-items: center; gap: 22px; }
.util-link { transition: color 150ms; }
.util-link:hover { color: var(--ink); }
.util-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-2);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.util-phone:hover { color: var(--brand-bright); }
.lang-switch {
  display: inline-flex;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 2px;
}
.lang-btn {
  padding: 4px 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-3);
  border-radius: var(--r-pill);
  transition: all 200ms var(--ease);
}
.lang-btn.active {
  background: var(--brand);
  color: var(--ink);
  box-shadow: 0 0 16px var(--brand-glow-2);
}
.lang-btn:not(.active):hover { color: var(--ink); }

/* ─── Main Nav ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(7, 8, 10, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 4px 24px var(--brand-glow);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.06em;
}
.brand-mark__r, .brand-mark__n { position: relative; z-index: 2; }
.brand-mark__dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
  bottom: 7px;
  right: 6px;
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
}
.brand-text {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.brand-text strong { font-weight: 700; }
.brand-text small {
  display: block;
  font-size: 10px;
  color: var(--ink-3);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav__menu { display: flex; gap: 28px; }
.nav__menu a {
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color 200ms var(--ease);
}
.nav__menu a:hover { color: var(--ink); }
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}
.nav__menu a:hover::after { transform: scaleX(1); }

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

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span { width: 22px; height: 1.5px; background: var(--ink); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 200ms var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--brand);
  color: var(--ink);
  box-shadow: 0 0 0 0 var(--brand-glow);
}
.btn--primary:hover {
  background: var(--brand-bright);
  box-shadow: 0 0 32px var(--brand-glow);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink-2);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--line); color: var(--ink); border-color: var(--line-3); }
.btn--ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost-light:hover { background: var(--bg-2); border-color: var(--brand); }
.btn--accent {
  background: linear-gradient(135deg, var(--brand-bright) 0%, var(--brand) 100%);
  color: var(--ink);
  box-shadow: 0 8px 32px var(--brand-glow);
}
.btn--accent:hover { transform: translateY(-1px); box-shadow: 0 12px 40px var(--brand-glow); }
.btn--full { width: 100%; }
.btn--lg {
  padding: 16px 28px;
  font-size: 15px;
  border-radius: var(--r-pill);
}
.btn--checker { padding: 14px 22px; }
.btn--link {
  background: transparent;
  border: 0;
  color: var(--ink);
  padding: 10px 4px;
  position: relative;
}
.btn--link::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 6px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  transition: opacity 200ms;
}
.btn--link:hover::after { opacity: 1; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: clamp(640px, 100vh, 920px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}
.hero-glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: float 16s ease-in-out infinite;
}
.hero-glow--2 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--brand-deep) 0%, transparent 65%);
  bottom: -300px; right: -200px;
  opacity: 0.4;
  animation: float 22s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(0.85) contrast(1.05);
  z-index: 0;
}
/* Cool wash over the warm video to keep brand red dominant */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 30% 30%, rgba(213,21,31,0.18), transparent 60%),
    linear-gradient(180deg, rgba(7,8,10,0.4) 0%, rgba(7,8,10,0.7) 60%, var(--bg-0) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-skyline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  height: 22%;
  z-index: 2;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, var(--bg-0) 100%),
    radial-gradient(ellipse 60% 50% at 50% 50%, transparent, rgba(7,8,10,0.6));
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
}
.hero-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--brand-bright);
  margin-bottom: 24px;
  display: inline-block;
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(40px, 7.5vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0 0 48px;
  max-width: 13ch;
}
.hero-title em {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand-bright), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Address checker */
.address-checker { max-width: 540px; margin-bottom: 32px; }
.address-checker__inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 8px;
  border-radius: var(--r-pill);
  position: relative;
  transition: all 300ms var(--ease);
}
.glass {
  background: var(--bg-glass);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}
.address-checker__inner:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-glow-2), 0 12px 40px rgba(0,0,0,0.4);
}
.address-checker__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--brand-bright);
}
.address-checker input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 12px 8px;
  font-size: 16px;
  color: var(--ink);
}
.address-checker input::placeholder { color: var(--ink-3); }
.address-checker__hint {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 12px;
  margin-left: 16px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--brand-bright);
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 var(--brand-glow);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,31,45,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255,31,45,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,31,45,0); }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-3);
}
.hero-trust strong { color: var(--ink); font-weight: 500; }
.trust-item { display: inline-flex; align-items: center; gap: 6px; }
.trust-stars { color: #F0B020; letter-spacing: 0.05em; font-size: 14px; }
.trust-stars .half { opacity: 0.5; }
.trust-sep {
  width: 4px; height: 4px;
  background: var(--ink-4);
  border-radius: 50%;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-3);
  z-index: 3;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--ink-3), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -40px; left: 0;
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--brand-bright), transparent);
  animation: scrollDown 2.5s linear infinite;
}
@keyframes scrollDown {
  0% { top: -40px; }
  100% { top: 40px; }
}

/* ─── Counter Strip ─── */
.counter-strip {
  background: var(--bg-1);
  border-block: 1px solid var(--line);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.counter-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, var(--brand-glow-2), transparent),
    radial-gradient(ellipse 60% 50% at 50% 100%, var(--brand-glow-2), transparent);
  pointer-events: none;
}
.counter-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.counter {
  text-align: center;
  position: relative;
}
.counter:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 60px;
  background: var(--line);
}
.counter__num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.counter__label {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* ─── Section heads (shared) ─── */
.section-head {
  margin-bottom: 64px;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}
.section-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--brand-bright);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.section-lead {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 auto;
  max-width: 60ch;
  line-height: 1.55;
}

/* ─── Packages ─── */
.packages {
  padding: var(--section-pad) 0;
  background: var(--bg-0);
  position: relative;
}
.pkg-toggle {
  display: inline-flex;
  margin-top: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 4px;
}
.pkg-toggle__btn {
  padding: 8px 18px;
  font-size: 13px;
  color: var(--ink-3);
  border-radius: var(--r-pill);
  transition: all 200ms var(--ease);
}
.pkg-toggle__btn.active {
  background: var(--ink);
  color: var(--ink-on-light);
  font-weight: 500;
}
.pkg-toggle__btn[data-period="24"].active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 0 0 1px var(--brand-deep), 0 6px 18px var(--brand-glow);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pkg-card {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  transition: all 300ms var(--ease);
}
.pkg-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.pkg-card--featured {
  background: linear-gradient(180deg, rgba(213, 21, 31, 0.08) 0%, var(--bg-2) 60%);
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 0 60px var(--brand-glow-2);
}
.pkg-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px var(--brand), 0 24px 80px var(--brand-glow);
}
.pkg-card--dark {
  background: linear-gradient(135deg, #1A1B20 0%, #0E0F12 100%);
  border-color: var(--line-2);
}
.pkg-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  background: var(--brand);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px var(--brand-glow);
}
.pkg-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 10px;
  background: rgba(213,21,31,0.12);
  border: 1px solid var(--brand-deep);
  color: var(--brand-bright);
  border-radius: 4px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.pkg-card__head { margin-bottom: 24px; }
.pkg-card__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}
.pkg-card__sub { font-size: 13px; color: var(--ink-3); margin: 0; }

.pkg-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.price-currency { font-size: 18px; color: var(--ink-2); font-weight: 500; }
.price-period { font-size: 14px; color: var(--ink-3); margin-left: 4px; }
.pkg-card__price-alt {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.pkg-card__features {
  flex: 1;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.pkg-card__features li {
  font-size: 14px;
  color: var(--ink-2);
  padding: 6px 0 6px 22px;
  position: relative;
}
.pkg-card__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 14px; height: 14px;
  background: var(--brand-glow-2);
  border: 1px solid var(--brand-deep);
  border-radius: 50%;
}
.pkg-card__features li::after {
  content: '';
  position: absolute;
  left: 4px; top: 14px;
  width: 4px; height: 8px;
  border-right: 1.5px solid var(--brand-bright);
  border-bottom: 1.5px solid var(--brand-bright);
  transform: rotate(45deg);
}

.pkg-compare {
  margin-top: 40px;
  text-align: center;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14px;
  border-bottom: 1px solid var(--line-2);
  padding: 10px 0 10px;
  transition: all 200ms var(--ease);
}
.link-arrow:hover { color: var(--brand-bright); border-color: var(--brand-bright); gap: 12px; }
.link-arrow svg { transition: transform 200ms var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ─── Coverage section ─── */
.coverage {
  padding: var(--section-pad) 0;
  background: var(--bg-0);
  position: relative;
}
.coverage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, var(--brand-glow-2) 0%, transparent 70%);
  pointer-events: none;
}
.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}
.coverage-tag {
  padding: 8px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 200ms var(--ease);
  position: relative;
}
.coverage-tag::before {
  content: '[';
  margin-right: 6px;
  color: var(--brand);
  opacity: 0;
  transition: opacity 200ms;
}
.coverage-tag::after {
  content: ']';
  margin-left: 6px;
  color: var(--brand);
  opacity: 0;
  transition: opacity 200ms;
}
.coverage-tag:hover {
  border-color: var(--brand);
  color: var(--ink);
  background: var(--brand-glow-2);
}
.coverage-tag:hover::before, .coverage-tag:hover::after { opacity: 1; }
.coverage-tag.active {
  border-color: var(--brand);
  color: var(--ink);
  background: var(--brand-glow-2);
  box-shadow: 0 0 24px var(--brand-glow-2);
}
.coverage-tag.active::before, .coverage-tag.active::after { opacity: 1; }

/* ─── Media Hub ─── */
.media-hub {
  padding: var(--section-pad) 0;
  background: var(--bg-1);
  position: relative;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.media-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 300ms var(--ease);
}
.media-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.media-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.media-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.media-card:hover .media-card__thumb img { transform: scale(1.05); }
.media-card__live {
  position: absolute;
  top: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(213,21,31,0.95);
  border-radius: 4px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.media-card__visual {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at center, var(--brand-glow-2) 0%, transparent 70%),
    linear-gradient(180deg, #1A1B20 0%, #0E0F12 100%);
  position: relative;
  overflow: hidden;
}
.radio-eq {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}
.radio-eq span {
  display: inline-block;
  width: 6px;
  background: linear-gradient(180deg, var(--brand-bright), var(--brand));
  border-radius: 3px;
  animation: eq 1.4s ease-in-out infinite;
}
.radio-eq span:nth-child(1) { animation-delay: 0s; height: 30%; }
.radio-eq span:nth-child(2) { animation-delay: 0.1s; height: 70%; }
.radio-eq span:nth-child(3) { animation-delay: 0.2s; height: 100%; }
.radio-eq span:nth-child(4) { animation-delay: 0.3s; height: 60%; }
.radio-eq span:nth-child(5) { animation-delay: 0.4s; height: 90%; }
.radio-eq span:nth-child(6) { animation-delay: 0.5s; height: 40%; }
.radio-eq span:nth-child(7) { animation-delay: 0.6s; height: 70%; }
@keyframes eq {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
.radio-freq {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--ink-2);
}

.paper-mock {
  padding: 24px 28px;
  background: #F0EDE7;
  color: #14130E;
  font-family: 'PT Serif', Georgia, serif;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.media-card__thumb--paper { background: #F0EDE7; padding: 0; }
.paper-mock__head {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #14130E;
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.paper-mock__title {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 15px;
}
.paper-mock__nr { font-size: 11px; opacity: 0.7; }
.paper-mock__headline {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.paper-mock__lines { display: flex; flex-direction: column; gap: 4px; }
.paper-mock__lines span {
  height: 4px;
  background: #14130E;
  opacity: 0.5;
}
.paper-mock__lines span:nth-child(1) { width: 100%; }
.paper-mock__lines span:nth-child(2) { width: 92%; }
.paper-mock__lines span:nth-child(3) { width: 96%; }
.paper-mock__lines span:nth-child(4) { width: 60%; }

.media-card__body { padding: 20px 22px 22px; }
.media-card__brand {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--brand-bright);
  margin-bottom: 8px;
}
.media-card__body h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.media-card__body p {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0 0 16px;
}
.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  background: var(--brand);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  transition: all 200ms var(--ease);
}
.play-btn svg { background: rgba(255,255,255,0.15); border-radius: 50%; padding: 6px; width: 32px; height: 32px; }
.play-btn:hover { background: var(--brand-bright); box-shadow: 0 0 24px var(--brand-glow); }

/* ─── Testimonials ─── */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg-0);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  margin: 0;
  padding: 32px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px; left: 18px;
  font-family: var(--f-italic);
  font-size: 80px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.2;
}
.testimonial-card p {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 20px;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.testimonial-card footer {
  font-size: 14px;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.testimonial-card footer strong { color: var(--ink-2); font-weight: 500; }

/* ─── Marquee ─── */
.marquee-section {
  padding: 60px 0;
  background: var(--bg-1);
  border-block: 1px solid var(--line);
  text-align: center;
}
.marquee-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee__track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  padding-left: 56px;
}
.ch {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink-3);
  letter-spacing: -0.01em;
  transition: color 200ms;
}
.ch:hover { color: var(--brand-bright); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ─── Footer CTA ─── */
.footer-cta {
  padding: var(--section-pad) 0;
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, var(--brand-glow-2) 0%, transparent 70%);
}
.footer-cta__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px;
  background: linear-gradient(180deg, rgba(213,21,31,0.08), rgba(213,21,31,0.02));
  border: 1px solid var(--brand-deep);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 80px var(--brand-glow-2), inset 0 0 80px var(--brand-glow-2);
}
.footer-cta__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.footer-cta__sub {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 32px;
}
.footer-cta__row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
}
.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer__brand strong { font-size: 16px; }
.footer__brand p {
  font-size: 13px;
  color: var(--ink-3);
  margin: 4px 0 0;
  max-width: 240px;
  line-height: 1.5;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  padding: 4px 0;
  transition: color 150ms;
}
.footer__col a:hover { color: var(--brand-bright); }
.footer__col p { font-size: 13px; color: var(--ink-3); margin: 8px 0 0; }
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--ink-2);
  transition: all 200ms var(--ease);
}
.footer__social-link:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
/* Brand-color social variants — keep original logo colors on hover */
.footer__social-link--facebook:hover,
.footer__social-link--youtube:hover {
  background: var(--bg-2);
  border-color: var(--brand);
  transform: translateY(-2px);
}
.footer__bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-4);
}
.footer__bottom a:hover { color: var(--brand-bright); }

/* ─── Reveal animations ─── */
[data-blur-text] span {
  display: inline-block;
}
.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(12px);
  transition: opacity 800ms var(--ease-out), filter 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-video { display: none; }
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .counter-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .counter:not(:last-child)::after { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav__cta .btn--ghost { display: none; }
  .util-bar__inner { font-size: 12px; }
  .util-link { display: none; }
  .util-pill span:not(:first-of-type) { display: none; }
  .pkg-grid { grid-template-columns: 1fr; }
  .hero__content { padding: 48px 0 80px; }
  .hero-title { font-size: clamp(36px, 11vw, 64px); }
  .footer-cta__inner { padding: 40px 20px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}
