/* talicense — clean white v5 */

:root {
  --bg: #FFFFFF;
  --bg-2: #F7F7F5;        /* subtle off-white */
  --bg-3: #FAFAF8;
  --ink: #0D2260;
  --ink-2: #1A3480;
  --navy: #0A1628;        /* deep navy contrast surface */

  --text: #0D2260;
  --text-soft: rgba(13, 34, 96, 0.66);
  --text-dim: rgba(13, 34, 96, 0.42);
  --rule: rgba(13, 34, 96, 0.10);
  --rule-strong: rgba(13, 34, 96, 0.22);

  --accent: #1E45FF;          /* electric cobalt */
  --accent-2: #3D5FFF;
  --accent-soft: rgba(30, 69, 255, 0.07);
  --hot: #E8412B;             /* alert red — sparing */

  --display: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --max-w: 1280px;
  --gutter: 40px;
  --section-y: 140px;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--section-y) 0; position: relative; }

/* Type */
h1, h2, h3, h4, .display {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.96;
  color: var(--ink);
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}

em.italic, .it {
  font-style: normal;
  color: var(--accent);
}

p { color: var(--text-soft); text-wrap: pretty; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  height: 56px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule-strong);
}
.btn-secondary:hover { border-color: var(--ink); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-2); }
.btn .arrow { font-family: var(--mono); font-size: 15px; transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 11px; }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 10px 12px 10px 24px;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 4px 24px rgba(15,15,15,0.04);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--sans);
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
}
.nav-links {
  display: flex; align-items: center; gap: 30px;
  font-size: 13px; color: var(--text-soft); font-weight: 400;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
/* class-based (not :first/:last-child) so the LangSwitch position does not break it */
.nav-cta .btn-secondary { background: var(--hot); color: #fff; border: none; }   /* LICENSE = orange */
.nav-cta .btn-secondary:hover { background: #c42e1a; }
.nav-cta .btn-primary { background: var(--accent); color: #fff; border: none; }  /* PROTECT = blue */
.nav-cta .btn-primary:hover { background: var(--accent-2); }

/* HERO — focused, single column */
.hero {
  padding: 160px 0 0;
  min-height: calc(100vh - 130px);
  position: relative;
  overflow: hidden;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  gap: 16px;
}
.hero-meta .live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}
.hero-meta .live .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(30, 69, 255, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(30, 69, 255, 0.18); }
  50% { box-shadow: 0 0 0 14px rgba(30, 69, 255, 0.04); }
}

h1.hero-title {
  font-family: var(--sans);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 14ch;
}
h1.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-bottom {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: end;
  padding-bottom: 60px;
}
.hero-sub {
  font-size: 22px;
  line-height: 1.4;
  color: var(--text-soft);
  max-width: 48ch;
  font-weight: 400;
}
.hero-sub b { font-weight: 600; color: var(--ink); }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Floating live counter chip */
.hero-meta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.hero-counter-chip {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: var(--hot);
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(15,15,15,0.18);
}
.hero-counter-chip .num {
  font-family: var(--sans);
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.hero-counter-chip .num em {
  color: var(--accent);
  font-style: normal;
}
.hero-counter-chip .label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* WHAT WE DO — TWO BIG BLOCKS */
.what-section {
  background: var(--bg-2);
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
.what-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  transition: all 0.3s ease;
  min-height: 480px;
}
.what-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15,15,15,0.08);
}
.what-card.dark {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.what-card.dark:hover { box-shadow: 0 24px 60px rgba(10,22,40,0.32); }
.what-card .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 14px;
}
.what-card .label .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--sans);
  font-style: italic;
  font-size: 14px;
  font-weight: 600;
}
.what-card.dark .label { color: #fff; }
.what-card h3 {
  font-family: var(--sans);
  font-size: clamp(36px, 3.6vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}
.what-card.dark h3 { color: #fff; }
.what-card h3 em {
  font-style: italic;
  color: var(--accent);
}
.what-card .desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-soft);
  flex: 1;
}
.what-card.dark .desc { color: rgba(255,255,255,0.72); }
.what-card .for-row {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.what-card .for-row > span { white-space: nowrap; }
.what-card.dark .for-row { border-top-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.4); }
.what-card .for-row b { color: var(--ink); font-weight: 500; }
.what-card.dark .for-row b { color: #fff; }
.what-card .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.what-card.dark .cta { color: var(--accent); }
.what-card .cta:hover { gap: 14px; }
.what-card .cta .arrow { font-family: var(--mono); transition: transform 0.2s ease; }

/* ============================================
   WHAT WE DO v2 — dark two-card layout
   ============================================ */
.what-section-v2 {
  background: var(--navy);
  padding: var(--section-y) 0;
}

/* Header */
.wsv2-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 72px;
}
.wsv2-header .eyebrow {
  color: rgba(255,255,255,0.45);
  justify-content: center;
}
.wsv2-header .eyebrow::before { background: rgba(255,255,255,0.25); }

.wsv2-title {
  color: #fff !important;
  margin-top: 22px;
}
.wsv2-title em {
  color: var(--accent) !important;
}
.wsv2-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
}

/* Grid */
.wsv2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* Card base */
.wsv2-card {
  border-radius: 20px;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wsv2-card:hover { transform: translateY(-5px); }

/* Card variants */
.wsv2-protect {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(232,65,43,0.25);
}
.wsv2-protect:hover {
  border-color: rgba(232,65,43,0.55);
  box-shadow: 0 32px 72px rgba(232,65,43,0.09);
}
.wsv2-license {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(30,69,255,0.25);
}
.wsv2-license:hover {
  border-color: rgba(30,69,255,0.55);
  box-shadow: 0 32px 72px rgba(30,69,255,0.11);
}

/* Card top section */
.wsv2-top { margin-bottom: 36px; }

/* Card big title */
.wsv2-card-title {
  font-family: var(--sans);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 20px;
}
.wsv2-protect .wsv2-card-title { color: #E8412B; }
.wsv2-license .wsv2-card-title { color: var(--accent); }

/* Card subheading */
.wsv2-heading {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

/* Feature list */
.wsv2-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.wsv2-features li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.wsv2-features li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

/* Card bottom */
.wsv2-bottom {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* For row */
.wsv2-for {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  display: flex;
  align-items: center;
  gap: 10px;
}
.wsv2-for-label {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* CTA buttons */
.wsv2-btn {
  width: 100%;
  justify-content: center;
}
.wsv2-btn-protect { background: #E8412B; color: #fff; }
.wsv2-btn-protect:hover { background: #FF5542; transform: translateY(-1px) !important; }
.wsv2-btn-license { background: var(--accent); color: #fff; }
.wsv2-btn-license:hover { background: var(--accent-2); transform: translateY(-1px) !important; }

/* Mobile */
@media (max-width: 920px) {
  .wsv2-grid { grid-template-columns: 1fr; }
  .wsv2-card { padding: 36px 28px; }
  .wsv2-header { margin-bottom: 48px; }
}

/* AUDIENCE STRIP */
.audience-strip {
  background: #000;
  color: #fff;
  padding: 16px 0;
}
.audience-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}
.audience-strip-label {
  font-family: var(--sans);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  align-self: center;
}
.audience-strip-label em {
  font-style: italic;
  color: var(--accent);
}
.audience-item {
  border-left: 1px solid rgba(255,255,255,0.16);
  padding-left: 22px;
}
.audience-item .ai {
  font-family: var(--sans);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  display: flex;
  align-items: flex-start;
}
.audience-item .ad {
  font-size: clamp(13px, 1.2vw, 15px);
  color: rgba(255,255,255,0.95);
  line-height: 1.4;
}

/* Section head */
.section-head {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
h2.section-title {
  font-size: clamp(40px, 5.6vw, 84px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

/* PROBLEM SECTION — light bg */
.problem-section {
  background: var(--bg);
  padding: 96px 0 0 !important;
  overflow: hidden;
  margin-top: 0 !important;
}
/* Remove gap from section above */
.audience-strip + .problem-section,
section + .problem-section {
  margin-top: 0;
}
.problem-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 28px;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
}
.eyebrow-light {
  color: var(--text-dim) !important;
}
.problem-title {
  color: var(--ink) !important;
}
.problem-title em {
  font-style: italic;
  color: var(--text-soft) !important;
}
.rv-header-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-bottom: 6px;
}
/* Problem category titles below video */
.problem-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  margin-top: 40px;
}
.prob-cat {
  font-family: var(--sans);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: -0.015em;
  line-height: 1.3;
  padding: 28px 32px;
  background: var(--bg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.prob-cat em {
  font-style: italic;
  color: var(--ink);
  font-weight: 600;
}
.prob-cat-num {
  font-family: var(--mono);
  font-size: 11px;
  color: #E8412B;
  letter-spacing: 0.12em;
  flex-shrink: 0;
}

/* REAL VIOLATIONS BLOCK */
.rv-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.rv-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: rv-pulse 1.4s ease-in-out infinite;
}
@keyframes rv-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.rv-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.rv-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 3fr 2fr;
  height: 380px;
}
.rv-video {
  background: #000;
  overflow: hidden;
}
.rv-video video {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.rv-info {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--rule);
}
.rv-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E8412B;
  margin-bottom: 10px;
}
.rv-name {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.rv-meta {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.rv-stats {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}
.rv-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.rv-key {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  min-width: 130px;
}
.rv-val {
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}
.rv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 4px;
  padding: 4px 10px;
  width: fit-content;
  margin-bottom: 16px;
}
.rv-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: rv-pulse 1.5s ease-in-out infinite;
}
.rv-pips {
  display: flex;
  gap: 6px;
  margin-top: auto;
}
.rv-pip {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: var(--rule);
  cursor: pointer;
  transition: background 0.3s;
}
.rv-pip.active { background: var(--accent); }
.rv-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px var(--gutter) 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0;
}
.rv-counter-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;
  animation: rv-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.rv-counter-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.rv-counter-num {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.rv-ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  margin-top: 0;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.rv-ticker {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: rv-ticker 120s linear infinite;
}
.rv-ticker span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  padding: 0 22px;
  border-right: 1px solid var(--rule);
  line-height: 1;
}
.rv-ticker span:last-child { border-right: none; }
@keyframes rv-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* PROOF BAND — map bg */
.proof-band {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
  padding: 0 !important;
}
.proof-map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
.proof-map-bg svg {
  width: 100%;
  height: 100%;
}
/* Animated map dots */
.map-dot {
  position: absolute;
  transform: translate(-50%, -50%);
}
.map-dot .dot-core {
  width: 8px; height: 8px;
  border-radius: 50%;
  position: relative; z-index: 3;
}
.map-dot.orange .dot-core { background: #E8412B; box-shadow: 0 0 6px #E8412B; }
.map-dot.blue   .dot-core { background: #5B9CF6; box-shadow: 0 0 6px #5B9CF6; }
.map-dot .dot-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  opacity: 0;
  animation: mapPulse 2.4s ease-out infinite;
}
.map-dot.orange .dot-ring { border: 1.5px solid #E8412B; }
.map-dot.blue   .dot-ring { border: 1.5px solid #5B9CF6; }
.map-dot .dot-ring:nth-child(2) { width: 24px; height: 24px; animation-delay: 0s; }
.map-dot .dot-ring:nth-child(3) { width: 42px; height: 42px; animation-delay: 0.5s; }
.map-dot .dot-ring:nth-child(4) { width: 62px; height: 62px; animation-delay: 1s; }
@keyframes mapPulse {
  0%   { transform: translate(-50%,-50%) scale(0.3); opacity: 0.7; }
  100% { transform: translate(-50%,-50%) scale(1);   opacity: 0; }
}
.map-dot .dot-label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 3px;
  pointer-events: none;
  z-index: 10;
}
.map-dot.orange .dot-label { color: #E8412B; background: rgba(232,65,43,0.15); border: 1px solid rgba(232,65,43,0.3); }
.map-dot.blue   .dot-label { color: #5B9CF6; background: rgba(91,156,246,0.15); border: 1px solid rgba(91,156,246,0.3); }

/* Stats overlay on top of map */
.proof-overlay {
  position: relative;
  z-index: 2;
  padding: 80px 0 320px;
}
.proof-head {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-bottom: 80px;
}
.proof-title {
  color: var(--ink) !important;
  margin-top: 20px;
}
.proof-title em { color: var(--text-soft) !important; }
.proof-grid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proof-stat {
  padding: 20px 24px;
  border-left: 2px solid var(--accent);
}
.proof-stat .v {
  font-family: var(--sans);
  font-size: 72px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.proof-stat .v em {
  font-style: italic;
  color: var(--accent);
}
.proof-stat .l {
  margin-top: 12px;
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* PILOT */
.pilot-section {
  background: var(--bg);
}
.pilot-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  margin-top: 64px;
  align-items: start;
}
.pilot-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
}
.pilot-list li {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  align-items: baseline;
}
.pilot-list li:last-child { border-bottom: 1px solid var(--rule); }
.pilot-list .num {
  font-family: var(--sans);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  width: 36px;
}
.pilot-form {
  background: var(--navy);
  color: #fff;
  padding: 44px;
  border-radius: 12px;
}
.pilot-form .form-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.pilot-form .form-eyebrow .ref { color: rgba(255,255,255,0.4); font-size: 10px; }
.field { margin-bottom: 26px; }
.field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 8px 0 12px;
  color: #fff;
  font-family: var(--sans);
  font-size: 20px;
  outline: none;
  transition: border-color 0.15s ease;
}
.field input:focus { border-bottom-color: var(--accent); }
.field input::placeholder { color: rgba(255,255,255,0.3); font-style: italic; }
.role-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.role-opt {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}
.role-opt:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.role-opt.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 500;
}
.form-submit { width: 100%; margin-top: 16px; background: var(--accent); color: #fff; }
.form-submit:hover { background: var(--accent-2); }
.form-success { text-align: center; padding: 60px 20px; }
.form-success .ok {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
  font-size: 26px;
  font-weight: 700;
}
.form-success h4 {
  font-family: var(--sans);
  font-size: 30px;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 400;
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
}
.footer-tagline {
  font-family: var(--sans);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 48px;
  max-width: 32ch;
}
.footer-tagline em {
  font-style: italic;
  color: var(--accent);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.footer-brand { max-width: 360px; }
.footer-brand .logo { margin-bottom: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.65; color: var(--text-soft); }
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-soft);
  cursor: pointer;
  transition: color 0.15s ease;
}
.footer-col li:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 12px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  letter-spacing: 0.06em;
}

/* Mobile */
@media (max-width: 920px) {
  :root { --section-y: 90px; --gutter: 20px; }
  .nav-links { display: none; }
  .nav-bar { padding: 8px 8px 8px 16px; }
  .hero { padding-top: 110px; }
  .hero-counter-chip { position: static; margin-top: 32px; max-width: 100%; }
  .hero-bottom { grid-template-columns: 1fr; gap: 36px; padding-bottom: 60px; align-items: stretch; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; }
  .what-grid { grid-template-columns: 1fr; }
  .audience-strip-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .audience-item { border-left: none; padding-left: 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .scale-cards { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .pilot-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-cta .btn-secondary { display: none; }   /* hide LICENSE on small screens */
}


/* ============================================================
   SERVICE SUBPAGES — informational, centered (v7)
   Titles: Inter Tight 700 per STYLE_GUIDE. No sales CTAs.
   ============================================================ */

/* footer + nav link styling */
a.btn { text-decoration: none; }
.nav-logo-link { text-decoration: none; display: inline-flex; }
.footer-col ul a, .footer-brand a { color: inherit; text-decoration: none; transition: color 0.18s ease; }
.footer-col ul a:hover { color: var(--accent); }
.nav-contact-link { color: var(--text-soft); text-decoration: none; font-size: 14px; transition: color 0.18s ease; }
.nav-contact-link:hover { color: var(--accent); }

/* readable secondary text token for these pages */
:root { --ipage-soft: rgba(13,34,96,0.74); }

/* --- hero (centered) --- */
.ipage-hero {
  padding: clamp(72px, 10vw, 132px) 0 clamp(28px, 4vw, 52px);
  text-align: center;
}
.ipage-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto;
}
.ipage-title em { font-style: normal; color: var(--accent); }
.ipage-lead {
  margin: 28px auto 0;
  max-width: 58ch;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ipage-soft);
}

/* --- generic section --- */
.ipage-section { padding: clamp(48px, 6vw, 92px) 0; text-align: center; }
.ipage-section-alt { background: var(--bg-2); }
.ipage-h2 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 clamp(36px, 4vw, 56px);
}
.ipage-h2::after {
  content: '';
  display: block;
  width: 130px;
  height: 8px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hot), var(--accent));
}
/* "How it works" headings sit on the alt section: grey + thinner */
.ipage-section-alt .ipage-h2::after {
  height: 3px;
  background: var(--rule-strong);
}

/* --- takeaway rows (no boxes; label | detail, ruled) --- */
.ipage-rows {
  max-width: 800px; margin: 0 auto; text-align: left;
  border-top: 1px solid var(--rule);
}
.ipage-row {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
  padding: 26px 4px; border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.ipage-row-k {
  font-family: var(--sans); font-weight: 700; font-size: 19px;
  color: var(--ink); letter-spacing: -0.01em;
}
.ipage-row-v { font-size: 16px; line-height: 1.55; color: var(--ipage-soft); }
@media (max-width: 640px) {
  .ipage-row { grid-template-columns: 1fr; gap: 8px; }
}

/* --- steps (big colored numbers) --- */
.ipage-steps {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 32px; max-width: 1040px; margin: 0 auto;
}
.ipage-step {
  flex: 1 1 260px; max-width: 320px;
  padding: 8px 18px; text-align: center;
}
.ipage-step-num {
  font-family: var(--sans); font-size: clamp(48px, 5.5vw, 68px); font-weight: 700;
  line-height: 1; letter-spacing: -0.03em; margin-bottom: 18px;
}
.ipage-step h3 { font-family: var(--sans); font-weight: 600; font-size: 20px; color: var(--ink); margin: 0 0 10px; }
.ipage-step p { font-size: 15px; line-height: 1.6; color: var(--ipage-soft); margin: 0; }

/* --- stats --- */
.ipage-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 48px; max-width: 900px; margin: 0 auto;
}
.ipage-stat { flex: 1 1 200px; max-width: 240px; }
.ipage-stat .v {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(44px, 5vw, 64px); line-height: 1; color: var(--ink); letter-spacing: -0.03em;
}
.ipage-stat .v em { font-style: normal; color: var(--accent); }
.ipage-stat .l { margin-top: 14px; font-size: 14px; line-height: 1.5; color: var(--ipage-soft); }

/* --- "for" line --- */
.ipage-for {
  text-align: center;
  padding: clamp(36px, 5vw, 60px) 24px;
  font-size: 15px; color: var(--text-dim);
  font-family: var(--sans);
}
.ipage-for a { color: var(--accent); text-decoration: none; }
.ipage-for a:hover { text-decoration: underline; }

/* --- evidence package (the protagonist) --- */
.ipage-package {
  max-width: 620px; margin: 0 auto; text-align: left;
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  border-radius: 18px;
  box-shadow: 0 24px 60px -28px rgba(13,34,96,0.28);
  overflow: hidden;
}
.ipage-package-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; background: var(--navy); color: #fff;
}
.ipage-package-head > span:first-child {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
}
.ipage-package-tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--accent); padding: 5px 10px; border-radius: 999px;
}
.ipage-package-row {
  display: grid; grid-template-columns: 120px 1fr; gap: 18px;
  padding: 20px 28px; border-top: 1px solid var(--rule);
}
.ipage-package-row:first-of-type { border-top: none; }
.ipage-package-k {
  font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--accent);
}
.ipage-package-v { font-size: 15px; line-height: 1.5; color: var(--text); }

/* --- pilot note (API) --- */
.ipage-pilot {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 4px auto 0; padding: 12px 22px;
  background: var(--accent-soft); border-radius: 999px;
  font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); line-height: 1.4;
}
.container > .ipage-pilot { display: flex; max-width: 640px; }
.ipage-pilot-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0;
}

@media (max-width: 600px) {
  .ipage-package-row { grid-template-columns: 1fr; gap: 6px; }
}

/* subpage nav: logo pinned left, links centered */
.nav-bar-sub { position: relative; justify-content: center; }
.nav-bar-sub .nav-logo-link {
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
}

/* offset anchored sections so the fixed nav does not cover the heading */
#what, #serve, #problem, #proof, #pilot { scroll-margin-top: 100px; }

/* language switcher (in nav, all pages) */
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
}
.lang-switch a {
  color: var(--text-dim); text-decoration: none; padding: 2px 3px;
  border-radius: 5px; transition: color 0.15s ease;
}
.lang-switch a:hover { color: var(--accent); }
.lang-switch a.active { color: var(--ink); font-weight: 600; }
/* on the service-page nav, pin the switch to the right (logo is absolute-left) */
.nav-bar-sub .nav-right { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); display: flex; align-items: center; gap: 10px; }

/* ============================================================
   RESOURCE HUB + ARTICLES (v8)
   ============================================================ */

/* hub list */
.res-list { max-width: 820px; margin: 0 auto; display: grid; gap: 16px; text-align: left; }
.res-card {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 30px; background: var(--bg); border: 1px solid var(--rule);
  border-radius: 16px; text-decoration: none; transition: border-color 0.18s ease, transform 0.18s ease;
}
.res-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.res-card-title {
  font-family: var(--sans); font-weight: 600; font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink); letter-spacing: -0.01em; line-height: 1.3;
}
.res-card-go {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap; display: inline-flex; align-items: center; gap: 8px;
}

/* article */
.res-article { padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 7vw, 100px); }
.res-narrow { max-width: 720px; }
.res-back {
  display: inline-block; margin-bottom: 28px; font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.08em; color: var(--text-soft); text-decoration: none;
}
.res-back:hover { color: var(--accent); }
.res-title {
  font-family: var(--sans); font-weight: 700; font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.04; letter-spacing: -0.035em; color: var(--ink); max-width: 20ch;
}
.res-title em { font-style: normal; color: var(--accent); }
.res-answer {
  margin-top: 28px; font-size: clamp(18px, 1.7vw, 22px); line-height: 1.5;
  color: var(--ink); font-weight: 500;
  border-left: 4px solid var(--accent); padding-left: 22px;
}
.res-block { margin-top: 44px; }
.res-block h2 {
  font-family: var(--sans); font-weight: 700; font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink); letter-spacing: -0.02em; margin-bottom: 14px;
}
.res-block p, .res-faq-item p {
  font-size: 16.5px; line-height: 1.65; color: var(--ipage-soft); margin-bottom: 14px;
}
.res-block p:last-child { margin-bottom: 0; }

/* faq */
.res-faq { margin-top: 56px; border-top: 1px solid var(--rule); padding-top: 40px; }
.res-faq > h2 {
  font-family: var(--sans); font-weight: 700; font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink); letter-spacing: -0.02em; margin-bottom: 24px;
}
.res-faq-item { margin-bottom: 26px; }
.res-faq-item h3 {
  font-family: var(--sans); font-weight: 600; font-size: 17px; color: var(--ink); margin-bottom: 8px;
}

/* disclaimer */
.res-disclaimer {
  margin-top: 48px; padding: 16px 20px; border-radius: 12px; background: var(--bg-2);
  font-family: var(--mono); font-size: 12px; line-height: 1.55; color: var(--text-dim);
  max-width: 820px; margin-left: auto; margin-right: auto;
}

/* resource article: banner + two-column with sticky TOC (v9) */
.res-wrap { max-width: 1060px; }
.res-banner {
  display: block; width: 100%; height: auto; border-radius: 16px;
  border: 1px solid var(--rule); margin: 4px 0 36px;
}
.res-head { max-width: 760px; }
.res-body {
  display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 56px;
  margin-top: 44px; align-items: start;
}
.res-main { max-width: 720px; }
.res-main .res-block:first-child { margin-top: 0; }
.res-main .res-disclaimer { margin-left: 0; margin-right: 0; max-width: none; }
.res-block, .res-faq { scroll-margin-top: 100px; }

.res-toc { position: sticky; top: 100px; }
.res-toc-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 16px;
}
.res-toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; border-left: 2px solid var(--rule); }
.res-toc a {
  display: block; padding-left: 16px; margin-left: -2px; border-left: 2px solid transparent;
  font-size: 13.5px; line-height: 1.35; color: var(--text-soft); text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.res-toc a:hover { color: var(--accent); border-left-color: var(--accent); }

@media (max-width: 920px) {
  .res-body { grid-template-columns: 1fr; gap: 0; }
  .res-toc { display: none; }
}

/* FIX: .res-block / .res-faq are <section> elements and were inheriting the global
   `section { padding: 140px 0 }`, creating huge gaps. Reset their padding. */
.res-block { padding: 0; }
.res-faq { padding: 40px 0 0; }

/* ============================================================
   MOBILE / iPhone hardening (v10)
   ============================================================ */

/* hamburger + dropdown hidden on desktop */
.nav-toggle { display: none; }
.nav-menu { display: none; }
@media (min-width: 921px) { .nav-menu, .nav-toggle { display: none !important; } }

@media (max-width: 920px) {
  /* show hamburger, hide desktop-only License button (it moves into the menu) */
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 4.5px;
    width: 42px; height: 42px; padding: 0 10px; border-radius: 11px; cursor: pointer;
    background: transparent; flex-shrink: 0;
  }
  .nav-toggle span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; }
  .nav-desktop-cta { display: none; }

  /* dropdown panel */
  .nav-menu {
    display: flex; flex-direction: column; gap: 2px;
    margin: 10px var(--gutter) 0; padding: 8px;
    background: rgba(255,255,255,0.98); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    border: 1px solid var(--rule); border-radius: 18px; box-shadow: 0 10px 34px rgba(15,15,15,0.12);
  }
  .nav-menu a, .nav-menu button {
    display: block; width: 100%; text-align: left; min-height: 46px; line-height: 1.3;
    padding: 13px 16px; border-radius: 12px; font-family: var(--sans); font-size: 15.5px; font-weight: 500;
    color: var(--ink); text-decoration: none; background: transparent; border: none; cursor: pointer;
  }
  .nav-menu a:active, .nav-menu button:active, .nav-menu a:hover { background: var(--bg-2); color: var(--accent); }
}

/* ----- homepage layout collapses ----- */
@media (max-width: 760px) {
  .hero { padding-top: 116px; min-height: 0; }
  .hero-meta { flex-direction: column; gap: 18px; }
  .hero-meta-right { align-items: flex-start; }
  .hero-bottom { grid-template-columns: 1fr; gap: 30px; margin-top: 38px; padding-bottom: 40px; }
  .hero-cta-row { width: 100%; }
  .hero-cta-row .btn { flex: 1 1 auto; justify-content: center; }

  .audience-strip-inner { grid-template-columns: 1fr; gap: 16px; }
  .audience-strip-label { align-self: start; }
  .audience-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.16); padding-left: 0; padding-top: 16px; }

  .rv-card { grid-template-columns: 1fr; height: auto; }
  .rv-video { height: 230px; }
  .rv-video video { width: 100%; height: 100%; object-fit: cover; }
}

@media (max-width: 560px) {
  .proof-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .problem-cats { grid-template-columns: 1fr; }
}

/* safety: nothing should force horizontal scroll */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, svg { max-width: 100%; }
