/* ===== UNICORN MARKETERS - MEET THE UNICORNS (v2) ============================
   Shared styles for tabbed + sticky variants.
   Diagnostics-aesthetic: light-majority, Gotham primary, JetBrains Mono for tech accents.
   ============================================================================ */

/* ===== FONTS ===== */
@font-face {
  font-family: 'Gotham';
  src: url('/our-unicorns/assets/fonts/Gotham-Book.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('/our-unicorns/assets/fonts/Gotham-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('/our-unicorns/assets/fonts/Gotham-Black.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('/our-unicorns/assets/fonts/Gotham-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('/our-unicorns/assets/fonts/Gotham-BlackItalic.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Light-majority palette from diagnostics page */
  --bg:        #f7f7f7;
  --bg-2:      #ffffff;
  --bg-tint:   #f0f7fb;
  --bg-dark:   #0f131c;
  --bg-darker: #0a0d14;
  --bg-deep:   #191e28;
  --bg-steel:  #546787;

  --text:      #191e28;
  --text-2:    #6b7280;
  --text-3:    #35393B;

  --cyan:      #00ACE9;
  --cyan-dim:  rgba(0, 172, 233, 0.12);
  --blue:      #2483c4;
  --green:     #3D916B;
  --gold:      #F5A623;
  --red:       #e74c3c;

  --border:     #e3e3e3;
  --border-dk:  rgba(255,255,255,0.08);
  --border-cyn: rgba(0, 172, 233, 0.25);

  --terminal:   rgba(17, 18, 21, 0.96);
  --terminal-2: rgba(20, 23, 30, 0.97);

  --mono:    'JetBrains Mono', 'Roboto Mono', monospace;
  --sans:    'Gotham', 'Montserrat', Arial, sans-serif;

  --hero-grad: linear-gradient(165deg, #ffffff 0%, #f0f7fb 30%, #e8f4fa 60%, #f7f7f7 100%);
  --dark-grad: linear-gradient(165deg, #0a0d14 0%, #0f131c 40%, #191e28 100%);
}

/* ===== RESETS ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--sans); text-wrap: pretty; line-height: 1.12; letter-spacing: -0.02em; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) {
  .container, .container-wide { padding: 0 20px; }
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-right {
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 1px;
}
.nav-right .status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 500;
}
.nav-right .status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@media (max-width: 720px) { .nav-right .mono-only { display: none; } }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 0 120px;
  background: var(--hero-grad);
  overflow: hidden;
  isolation: isolate;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}
.hero::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,172,233,0.18) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: heroOrb1 18s ease-in-out infinite alternate;
}
.hero::after {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(36,131,196,0.14) 0%, transparent 70%);
  bottom: -300px; right: -200px;
  animation: heroOrb2 20s ease-in-out infinite alternate;
}
@keyframes heroOrb1 { 0% { transform: translate(0,0); } 100% { transform: translate(80px, 60px); } }
@keyframes heroOrb2 { 0% { transform: translate(0,0); } 100% { transform: translate(-60px, -80px); } }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.hero-copy .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--cyan);
  background: rgba(0,172,233,0.08);
  border: 1px solid var(--border-cyn);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 26px;
}
.hero-copy .eyebrow-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulseDot 2s infinite;
}
.hero-copy h1 {
  font-size: clamp(44px, 6.2vw, 86px);
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  line-height: 1.02;
}
.hero-copy h1 .cyan { color: var(--cyan); display: inline-block; }
.hero-copy .sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.55;
  margin-bottom: 30px;
}
@media (max-width: 1024px) { .hero-copy .sub { margin-left: auto; margin-right: auto; } }
.hero-copy .quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
@media (max-width: 1024px) { .hero-copy .quick-stats { justify-content: center; } }
.hero-copy .qs-item .num {
  font-size: 28px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-copy .qs-item .lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Hero visual - character grid roster */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-height: 640px;
  margin-left: auto;
  width: 100%;
}
@media (max-width: 1024px) { .hero-visual { max-width: 520px; margin: 0 auto; } }

.hero-viz-card {
  position: absolute;
  background: var(--terminal);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,172,233,0.3);
  box-shadow: 0 30px 80px rgba(25,30,40,0.18), 0 0 0 1px rgba(255,255,255,0.05) inset;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.hero-viz-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-viz-card .glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0,172,233,0.15), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-viz-card .label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--cyan);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1.5px;
}

/* Central featured card */
.hero-viz-feat {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58%;
  aspect-ratio: 3 / 4;
  z-index: 3;
  border: 2px solid var(--cyan);
  box-shadow: 0 40px 100px rgba(0,172,233,0.3), 0 0 0 1px rgba(0,172,233,0.5) inset, 0 20px 50px rgba(0,0,0,0.3);
}
/* Surrounding 6 smaller cards */
.hero-viz-sat { width: 32%; aspect-ratio: 3 / 4; z-index: 2; opacity: 0.9; }
.hero-viz-sat.s1 { top: 2%; left: 4%; transform: rotate(-6deg); }
.hero-viz-sat.s2 { top: 1%; right: 6%; transform: rotate(5deg); }
.hero-viz-sat.s3 { top: 42%; left: -2%; transform: rotate(-3deg); width: 28%; }
.hero-viz-sat.s4 { top: 42%; right: -2%; transform: rotate(3deg); width: 28%; }
.hero-viz-sat.s5 { bottom: 2%; left: 8%; transform: rotate(4deg); }
.hero-viz-sat.s6 { bottom: 2%; right: 6%; transform: rotate(-5deg); }

/* Connecting lines SVG (drawn via svg element in HTML) */
.hero-viz-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

/* Diagnostic overlay text */
.hero-viz-hud {
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 1.5px;
  background: rgba(17,18,21,0.8);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border: 1px solid rgba(0,172,233,0.4);
  border-radius: 4px;
  z-index: 4;
  pointer-events: none;
  animation: hudFade 4s ease-in-out infinite alternate;
}
.hero-viz-hud.top-left { top: 12%; left: 3%; animation-delay: 0s; }
.hero-viz-hud.top-right { top: 8%; right: 2%; animation-delay: 1s; }
.hero-viz-hud.bot-left { bottom: 12%; left: 6%; animation-delay: 2s; }
.hero-viz-hud.bot-right { bottom: 8%; right: 3%; animation-delay: 3s; }
@keyframes hudFade { 0%,100% { opacity: 0.7; } 50% { opacity: 1; } }

@media (max-width: 640px) {
  .hero-viz-card { border-radius: 14px; }
  .hero-viz-hud { font-size: 9px; padding: 3px 7px; }
}

/* ===== SECTION BASE ===== */
section { padding: 100px 0; position: relative; }
section.alt { background: var(--bg-2); }
section.light { background: var(--bg); }
section.dark {
  background: var(--dark-grad);
  color: #fff;
}
section.dark h1, section.dark h2, section.dark h3 { color: #fff; }

.section-head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
section.dark .eyebrow { color: var(--cyan); }
.section-head h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-head p {
  font-size: 19px;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto;
}
section.dark .section-head p { color: rgba(255,255,255,0.75); }

/* ===== ACKNOWLEDGMENT ===== */
.ack-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 52px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--cyan);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(25,30,40,0.06);
  position: relative;
}
.ack-card::before {
  content: '//';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 1px;
  opacity: 0.4;
}
.ack-card .label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.ack-card p {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
}
.ack-card p + p { margin-top: 14px; }
.ack-card p strong { color: var(--blue); font-weight: 800; }
@media (max-width: 768px) {
  .ack-card { padding: 32px 24px; }
  .ack-card p { font-size: 17px; }
}

/* ===== STATS ===== */
.stats-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .stats-split { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats-split { grid-template-columns: 1fr; } }

.stat-big {
  padding: 38px 28px 34px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  position: relative;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  overflow: hidden;
}
.stat-big::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--cyan);
  border-radius: 0 0 3px 0;
}
.stat-big:hover { transform: translateY(-4px); border-color: var(--border-cyn); box-shadow: 0 20px 40px rgba(0,172,233,0.08); }
.stat-big .icon {
  width: 36px; height: 36px;
  color: var(--cyan);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-big .num {
  font-size: clamp(38px, 3.4vw, 52px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-big .num .unit { color: var(--cyan); }
.stat-big .lbl {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.45;
  font-weight: 500;
}
.stat-big .mono-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--cyan);
  background: var(--cyan-dim);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  margin-top: 14px;
}

/* Individual Unicorn records row */
.records-label {
  text-align: center;
  margin: 72px 0 28px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.records-label::before, .records-label::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 200px;
  background: linear-gradient(to right, transparent, var(--border-cyn), transparent);
}

.records-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) { .records-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .records-grid { grid-template-columns: 1fr; } }
.record-card {
  padding: 28px 26px;
  background: var(--terminal);
  color: #fff;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .35s ease, border-color .35s ease;
}
.record-card:hover { transform: translateY(-4px); border-color: var(--cyan); }
.record-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(0,172,233,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.record-card .r-mono {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.record-card .r-num {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.record-card .r-desc { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.8); }

/* ===== COVERAGE ===== */
.coverage-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 960px) { .coverage-wrap { grid-template-columns: 1fr; } }

.cov-panel {
  padding: 40px 36px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
}
.cov-panel h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cov-panel .headline {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.1;
}
.cov-panel .count {
  color: var(--cyan);
  font-size: 52px;
  line-height: 1;
  margin-right: 8px;
}

.cov-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 600px) { .cov-items { grid-template-columns: repeat(2, 1fr); } }
.cov-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .25s ease, transform .25s ease;
}
.cov-chip:hover { border-color: var(--cyan); transform: translateY(-2px); }
.cov-chip .ico,
.cov-chip .brand-ico,
.cov-chip .lucide-ico {
  width: 20px;
  height: 20px;
  color: var(--cyan);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}
.cov-chip .brand-ico { width: 18px; height: 18px; }
.cov-chip .lucide-ico { stroke: var(--cyan); }
.cov-chip .name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
}
.cov-more-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-2);
  margin-top: 16px;
  letter-spacing: 1px;
}
.cov-more-label span { color: var(--cyan); font-weight: 600; }

/* ===== BRAND WALL ===== */
.brand-wall {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .brand-wall { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .brand-wall { grid-template-columns: repeat(3, 1fr); } }

.brand-tile {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  aspect-ratio: 5 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px 12px;
  gap: 6px;
  transition: all .25s ease;
}
.brand-tile .brand-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,172,233,0.08);
  border: 1px solid rgba(0,172,233,0.2);
  margin-top: 2px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-tile:hover .brand-tag {
  background: rgba(0,172,233,0.15);
  border-color: rgba(0,172,233,0.4);
}
.brand-tile:hover {
  border-color: var(--border-cyn);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(25,30,40,0.06);
}
.brand-tile .logo {
  max-width: 90px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .25s ease;
}
.brand-tile:hover .logo { filter: grayscale(0%); }
.brand-tile .brand-name {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.brand-tile:hover .brand-name { color: var(--cyan); }
.brand-tile .logo[style*="display: none"] + .brand-name,
.brand-tile img:not([src]) + .brand-name { font-size: 13px; font-family: var(--sans); font-weight: 800; text-transform: none; letter-spacing: -0.01em; color: var(--text); }

.brand-wall-note {
  max-width: 1000px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  font-style: italic;
}

/* ===== CAMPAIGN SHOWCASE (replaces grey marquee) ===== */
.campaign-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.campaign-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px 26px 24px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.campaign-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--cyan), var(--blue));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
}
.campaign-card:hover::before { transform: scaleX(1); }
.campaign-card:hover { transform: translateY(-4px); border-color: var(--border-cyn); box-shadow: 0 20px 50px rgba(0,172,233,0.08); }

.cc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}
.cc-logo {
  height: 32px;
  max-width: 130px;
  object-fit: contain;
}
.cc-platform {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-2);
  text-transform: uppercase;
  text-align: right;
}
.cc-stat {
  font-size: 30px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.cc-stat-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cc-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}
.cc-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green);
  background: rgba(61,145,107,0.1);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ===== VETTING PROCESS ===== */
.vet-timeline {
  max-width: 1140px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
@media (max-width: 900px) { .vet-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .vet-timeline { grid-template-columns: 1fr; } }

.vet-step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px 26px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease;
}
.vet-step:hover { transform: translateY(-4px); border-color: var(--border-cyn); }
.vet-num {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan);
  color: #fff;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}
.vet-step h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.vet-step p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.vet-big {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 36px 32px;
  background: var(--terminal);
  border-radius: 20px;
  color: #fff;
  text-align: center;
}
@media (max-width: 640px) { .vet-big { grid-template-columns: 1fr; } }
.vet-big .bi-num {
  font-size: clamp(44px, 4vw, 58px);
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.vet-big .bi-lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== CLOSER ===== */
.closer {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closer h2 {
  font-size: clamp(36px, 4.4vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.closer h2 .platinum {
  background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 20%, #e3e3e3 50%, #cfcfcf 75%, #b5b5b5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.closer p {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.closer .signature {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--cyan);
  margin-top: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,0.5);
  padding: 32px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 1px;
}
footer a { color: var(--cyan); }
footer .foot-inner { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== UTILITY ===== */
.mono { font-family: var(--mono); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
