/* ===========================
   Радіодім — Promo Site Styles
   =========================== */

:root {
  --bg: #0a0c10;
  --bg-2: #0e1016;
  --surface: #11141c;
  --card: #161a24;
  --card-2: #1a1f2c;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(232, 200, 74, 0.3);

  --accent: #e8c84a;
  --accent-2: #4ae8c8;
  --accent-3: #e84a7a;
  --accent-4: #824ae8;

  --text: #e8e8f0;
  --text-2: #b8bcc8;
  --muted: #6b7080;
  --dim: #3a3f50;

  --radius: 14px;
  --radius-lg: 22px;

  --shadow-1: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px rgba(232, 200, 74, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===========================
   Background effects
   =========================== */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 200, 74, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 200, 74, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at top, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 0%, transparent 70%);
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.bg-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -200px;
  opacity: 0.18;
  animation: float1 18s ease-in-out infinite;
}

.bg-glow-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-2);
  bottom: 20%;
  left: -200px;
  opacity: 0.12;
  animation: float2 22s ease-in-out infinite;
}

.bg-glow-3 {
  width: 400px;
  height: 400px;
  background: var(--accent-3);
  top: 50%;
  right: 20%;
  opacity: 0.1;
  animation: float3 25s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 50px); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, -40px); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 60px); }
}

/* ===========================
   Navigation
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 12, 16, 0.6);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent) 0%, #d4a82a 100%);
  border-radius: 10px;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(232, 200, 74, 0.4);
}

.logo-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  border: 2px solid var(--accent);
  animation: logoPulse 2.5s ease-out infinite;
}

@keyframes logoPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.logo-text {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: #f5d866;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 200, 74, 0.3);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 4px 20px rgba(232, 200, 74, 0.3);
}

.btn-primary:hover {
  background: #f5d866;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 200, 74, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232, 200, 74, 0.05);
}

.btn-large {
  padding: 18px 32px;
  font-size: 15px;
}

/* ===========================
   Eyebrow / Section title
   =========================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.text-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #f5d866 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 300;
  max-width: 680px;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent-3);
  border-radius: 50%;
  animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 74, 122, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(232, 74, 122, 0); }
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  z-index: 1;
  padding: 160px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-subtitle strong {
  color: var(--accent);
  font-weight: 600;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-num span {
  color: var(--accent);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================
   Globe visualization
   =========================== */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

.globe-wrapper {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1;
}

.globe {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-core {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 200, 74, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(74, 232, 200, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #1a1f2c 0%, #0e1016 100%);
  border: 1px solid rgba(232, 200, 74, 0.3);
  box-shadow:
    inset 0 0 60px rgba(232, 200, 74, 0.1),
    0 0 80px rgba(232, 200, 74, 0.2);
  animation: globeRotate 20s linear infinite;
}

.globe-core::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background-image:
    linear-gradient(rgba(232, 200, 74, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 200, 74, 0.15) 1px, transparent 1px);
  background-size: 16px 16px;
  border: 1px solid rgba(232, 200, 74, 0.1);
  opacity: 0.5;
}

.globe-core::after {
  content: '📻';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  filter: drop-shadow(0 0 20px rgba(232, 200, 74, 0.5));
}

@keyframes globeRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(232, 200, 74, 0.2);
}

.globe-ring-1 {
  inset: 15%;
  animation: ringRotate 30s linear infinite;
}

.globe-ring-2 {
  inset: 0%;
  border-color: rgba(74, 232, 200, 0.15);
  animation: ringRotate 40s linear infinite reverse;
}

.globe-ring-3 {
  inset: -8%;
  border-color: rgba(232, 74, 122, 0.12);
  animation: ringRotate 50s linear infinite;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--angle)) translateY(-50%) translateY(-50%);
  /* Position dots in a circle */
}

.orbit-dot::before {
  content: '';
  position: absolute;
  transform: rotate(calc(-1 * var(--angle)));
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
  animation-delay: var(--delay);
}

.dot-label {
  position: absolute;
  transform: rotate(calc(-1 * var(--angle))) translate(20px, 0);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 6px;
  pointer-events: none;
}

@keyframes dotPulse {
  0%, 100% { transform: rotate(calc(-1 * var(--angle))) scale(1); }
  50% { transform: rotate(calc(-1 * var(--angle))) scale(1.4); }
}

/* Recompute positions for orbit dots using proper trigonometry */
.orbit-dot {
  transform: rotate(var(--angle)) translateX(0) translateY(0);
}

.orbit-dot::before {
  /* Use a calc trick to place on ring at radius from center */
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
}

/* Override: place dots manually using percentages */
.globe-ring-1 { /* radius ~38% */ }
.globe-ring-2 { /* radius ~50% */ }
.globe-ring-3 { /* radius ~58% */ }

.orbit-dot {
  /* We will rely on individual angle + custom offset per dot below */
  transform: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.orbit-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-left: -6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
  animation-delay: var(--delay);
  transform: rotate(var(--angle)) translateY(-180px);
}

.orbit-dot .dot-label {
  top: 50%;
  left: 50%;
  transform: rotate(var(--angle)) translateY(-180px) translateX(20px) rotate(calc(-1 * var(--angle)));
  margin-top: -10px;
  animation: dotPulse 2s ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.globe-caption {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border-hover);
  padding: 12px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: var(--shadow-1);
}

.globe-caption-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}

.globe-caption-text {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===========================
   COVERAGE
   =========================== */
.section-coverage {
  background: var(--bg-2);
}

.coverage-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.tab-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 12px 20px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.tab-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 600;
}

.coverage-content {
  position: relative;
  min-height: 400px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.platform-card {
  display: block;
  padding: 20px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 200, 74, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}

.platform-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-1), 0 0 0 1px rgba(232, 200, 74, 0.15);
}

.platform-card:hover::before {
  opacity: 1;
}

.platform-rank {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.platform-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  position: relative;
}

.platform-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.platform-region {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.own-card {
  border-color: rgba(232, 200, 74, 0.25);
  background: linear-gradient(135deg, rgba(232, 200, 74, 0.04) 0%, var(--card) 100%);
}

.own-card:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(232, 200, 74, 0.08) 0%, var(--card) 100%);
}

/* ===========================
   AUDIENCE
   =========================== */
.audience-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.audience-head .eyebrow {
  justify-content: center;
}

.audience-head .eyebrow::before {
  display: none;
}

.audience-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.big-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.big-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.5;
}

.big-stat:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.big-stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent) 0%, #f5d866 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.big-stat-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  font-weight: 400;
}

/* ===========================
   COMPARISON
   =========================== */
.section-comparison {
  background: var(--bg-2);
}

.comparison-table {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cmp-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.4fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.cmp-row:last-child {
  border-bottom: none;
}

.cmp-row:not(.cmp-head):hover {
  background: rgba(232, 200, 74, 0.03);
}

.cmp-cell {
  padding: 20px 28px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  border-right: 1px solid var(--border);
}

.cmp-cell:last-child {
  border-right: none;
}

.cmp-head .cmp-cell {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  background: var(--bg-2);
  padding-top: 16px;
  padding-bottom: 16px;
}

.cmp-fm {
  color: var(--muted);
}

.cmp-online {
  color: #fff;
  position: relative;
}

.cmp-online.highlight {
  background: linear-gradient(90deg, rgba(232, 200, 74, 0.04) 0%, transparent 100%);
}

.cmp-online.highlight::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
}

.cmp-cell strong {
  color: #fff;
  font-weight: 600;
}

.comparison-conclusion {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(232, 200, 74, 0.08) 0%, rgba(232, 200, 74, 0.02) 100%);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
}

.conclusion-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.conclusion-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}

.conclusion-text strong {
  color: var(--accent);
}

/* ===========================
   ECOSYSTEM
   =========================== */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.eco-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.eco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(232, 200, 74, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.eco-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.eco-card:hover::before {
  opacity: 1;
}

.eco-icon {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
}

.eco-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
  position: relative;
  letter-spacing: -0.03em;
}

.eco-label {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.eco-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
}

/* ===========================
   WHY (for advertisers)
   =========================== */
.section-why {
  background: var(--bg-2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
}

.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
}

.why-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.why-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.why-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.why-card p strong {
  color: var(--accent);
  font-weight: 600;
}

/* ===========================
   CTA / Contact
   =========================== */
.section-cta {
  padding-bottom: 120px;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--card) 0%, var(--card-2) 100%);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 200, 74, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(74, 232, 200, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-form input,
.cta-form textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 16px 20px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s;
  width: 100%;
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(232, 200, 74, 0.1);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: var(--muted);
}

.cta-form textarea {
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.cta-form .btn {
  align-self: center;
  margin-top: 8px;
}

.cta-direct {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.cta-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.cta-direct-link:hover {
  color: var(--accent);
}

.cta-direct-link span {
  font-size: 16px;
}

/* ===========================
   Footer
   =========================== */
.footer {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-tagline {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-2);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===========================
   Toast
   =========================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--accent);
  color: #000;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(232, 200, 74, 0.4);
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    min-height: 400px;
    order: -1;
  }

  .globe-wrapper {
    max-width: 400px;
  }

  .audience-stats,
  .ecosystem-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .cmp-row {
    grid-template-columns: 1fr;
  }

  .cmp-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .cmp-row .cmp-cell:last-child {
    border-bottom: none;
  }

  .cta-card {
    padding: 50px 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-top: none;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stat-num {
    font-size: 28px;
  }

  .cta-direct {
    flex-direction: column;
    gap: 12px;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cmp-cell {
    padding: 16px 20px;
  }

  .cta-card {
    padding: 40px 24px;
  }
}
