/* ============================================================
   VI DESIGN SYSTEM
   Exact Gilroy fonts from VI's CDN · teal #32CBBE · navy #122b4f
   ============================================================ */

/* ─── Gilroy Fonts (from VI production CDN) ─────────────────── */
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.prod.website-files.com/5de034f7b1a94eee0c714fde/5de0388cd49bc7c0e34926a4_Radomir%20Tinkov%20-%20Gilroy-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.prod.website-files.com/5de034f7b1a94eee0c714fde/5de0388cb1a94e76bb716563_Radomir%20Tinkov%20-%20Gilroy-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.prod.website-files.com/5de034f7b1a94eee0c714fde/5de0388cb1a94ea6a1716561_Radomir%20Tinkov%20-%20Gilroy-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('https://cdn.prod.website-files.com/5de034f7b1a94eee0c714fde/5de0388c131b56701901f0f9_Radomir%20Tinkov%20-%20Gilroy-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --teal:       #32CBBE;
  --teal-dark:  #0eccc2;
  --navy:       #122b4f;
  --navy-mid:   #1a3a62;
  --purple:     #6442c5;
  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-400:   #94a3b8;
  --gray-600:   #64748b;
  --gray-800:   #1e293b;

  --font:        'Gilroy', Arial, sans-serif;

  --radius:     4px;
  --radius-lg:  10px;
  --shadow:     0 2px 16px rgba(18,43,79,0.10);
  --shadow-lg:  0 8px 32px rgba(18,43,79,0.18);
  --transition: 160ms ease;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }

/* ─── Nav ─────────────────────────────────────────────────── */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 40px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(18,43,79,0.07);
}
.nav-logo { height: 28px; display: block; }
body { padding-top: 68px; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.01em;
}
.btn-teal { background: var(--teal); color: var(--navy); }
.btn-teal:hover { background: var(--teal-dark); color: var(--navy); }
.btn-purple { background: var(--purple); color: var(--white); }
.btn-purple:hover { background: #5535b0; color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover { border-color: var(--white); }
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }
.btn-lg { padding: 20px 48px; font-size: 1.1rem; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background: var(--navy);
}
/* When embedded in an iframe, vh resolves to the iframe's pixel height,
   so 100vh would equal the entire frame. Cap the hero to a sensible
   visual height instead. */
.in-iframe .hero { min-height: 640px; height: auto; }
@media (max-width: 640px) { .in-iframe .hero { min-height: 520px; } }
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(44, 20, 90, 0.74);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 40px;
  width: 100%;
}
.hero-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.80);
  line-height: 1.65;
  margin-bottom: 40px;
  font-weight: 400;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub .hi { color: var(--teal); font-style: normal; font-weight: 700; }

/* ─── Layout ──────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section  { padding: 100px 0; }
.section--sm  { padding: 64px 0; }
.section--dark { background: var(--navy); }
.section--gray { background: var(--off-white); }
.section--navy-mid { background: var(--navy-mid); }

/* ─── Eye label ───────────────────────────────────────────── */
.eyebrow {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}
.eyebrow--dark { color: rgba(255,255,255,0.45); }

/* ─── Headings ────────────────────────────────────────────── */
.h1 {
  font-weight: 700;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.h3 {
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.25;
}
.h4 { font-weight: 700; font-size: 1.1rem; line-height: 1.3; }
.body-lg { font-size: 1.15rem; line-height: 1.7; color: var(--gray-600); font-weight: 400; }
.body { font-size: 1rem; line-height: 1.65; color: var(--gray-600); }
.body-sm { font-size: 0.88rem; line-height: 1.6; color: var(--gray-600); }
.disclaimer { font-size: 0.75rem; color: var(--gray-400); line-height: 1.6; }

/* ─── Stats Band ──────────────────────────────────────────── */
.stats-band {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 40px 28px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Big Stat callout (isolated) ────────────────────────── */
.big-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.big-stat {
  padding: 56px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.big-stat:last-child { border-right: none; }
.big-stat-num {
  font-weight: 700;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  display: block;
}
.big-stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* ─── Market Grid ─────────────────────────────────────────── */
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.market-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.market-card:hover, .market-card.active {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(50,203,190,0.14);
  transform: translateY(-1px);
}
.market-city {
  font-weight: 700; font-size: 1.1rem; margin-bottom: 3px; color: var(--navy);
}
.market-stadium {
  font-size: 0.78rem; color: var(--gray-600); margin-bottom: 18px; line-height: 1.4;
}
.market-nums { display: flex; gap: 24px; margin-bottom: 16px; }
.market-num-val {
  font-weight: 700; font-size: 1.8rem;
  color: var(--teal); line-height: 1;
}
.market-num-key {
  font-size: 0.68rem; color: var(--gray-600);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px;
}
.market-prices { display: flex; gap: 8px; flex-wrap: wrap; }
.price-chip {
  font-weight: 700; font-size: 0.72rem; padding: 4px 10px;
  border-radius: 3px; letter-spacing: 0.03em; text-transform: uppercase;
}
.price-chip--teal { background: var(--teal); color: var(--navy); }
.price-chip--navy { background: var(--navy); color: var(--white); }

/* ─── Market Detail Table ─────────────────────────────────── */
.market-detail {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px; margin-top: 24px;
}
.market-detail-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px; flex-wrap: wrap; gap: 16px;
}

/* ─── Table ───────────────────────────────────────────────── */
.vi-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.vi-table th {
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 13px 18px; text-align: left;
}
.vi-table td { padding: 12px 18px; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
.vi-table tr:last-child td { border-bottom: none; }
.vi-table tr:hover td { background: #f0fafa; }
.vi-table .num { font-weight: 700; text-align: right; font-size: 0.95rem; }
.vi-table .price { font-weight: 700; color: var(--teal-dark); text-align: right; }
.vi-table tfoot td {
  background: var(--navy); color: var(--white);
  font-weight: 700; padding: 13px 18px;
}
.vi-table tfoot .num, .vi-table tfoot .price { color: var(--teal); }

/* ─── Feature Row (text + visual, alternating) ────────────── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

/* ─── Steps ───────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 32px 0; border-bottom: 1px solid var(--gray-200);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--navy); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  margin-top: 2px;
}
.step-body h4 { font-weight: 700; font-size: 1.15rem; margin-bottom: 6px; color: var(--navy); }
.step-body p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.65; }

/* ─── Steps dark variant ──────────────────────────────────── */
.steps--dark .step { border-bottom-color: rgba(255,255,255,0.08); }
.steps--dark .step-num { background: var(--teal); color: var(--navy); }
.steps--dark .step-body h4 { color: var(--white); }
.steps--dark .step-body p { color: rgba(255,255,255,0.6); }

/* ─── CTA Block ───────────────────────────────────────────── */
.cta-block {
  background: var(--navy); padding: 100px 0; text-align: center;
}

/* ─── Toggle ──────────────────────────────────────────────── */
.toggle-bar {
  display: inline-flex; background: var(--gray-100);
  border-radius: var(--radius); padding: 4px; gap: 4px;
}
.toggle-btn {
  padding: 11px 26px; border-radius: 3px; border: none;
  background: transparent; font-family: var(--font);
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer; color: var(--gray-600); transition: all var(--transition);
}
.toggle-btn.active { background: var(--navy); color: var(--white); }

/* ─── Map ─────────────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-placeholder {
  background: var(--gray-100); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); height: 520px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
}

/* ─── Brand chip ──────────────────────────────────────────── */
.approved-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(50,203,190,0.10); border: 1.5px solid rgba(50,203,190,0.30);
  border-radius: var(--radius); padding: 10px 18px;
  font-weight: 700; font-size: 0.82rem; color: var(--navy);
  letter-spacing: 0.04em;
}
.approved-badge span { color: var(--teal); font-size: 1.1em; }

/* ─── Section Head ────────────────────────────────────────── */
.section-head { max-width: 680px; }
.section-head--center { max-width: 680px; margin: 0 auto; text-align: center; }

/* ─── Divider ─────────────────────────────────────────────── */
.divider { width: 48px; height: 4px; background: var(--teal); margin: 20px 0; }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .big-stat-grid { grid-template-columns: 1fr 1fr; }
  .big-stat:nth-child(2) { border-right: none; }
  .big-stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); grid-column: 1 / -1; }
  .market-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .feature-row { grid-template-columns: 1fr; gap: 48px; }
  .feature-row.reverse { direction: ltr; }
  .wrap { padding: 0 24px; }
}
@media (max-width: 640px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 24px 14px; }
  .stat-num { font-size: clamp(2rem, 8vw, 2.6rem); }
  .section { padding: 56px 0; }
  .section--sm { padding: 40px 0; }
  .hero-title { font-size: clamp(34px, 9vw, 44px); line-height: 1.1; }
  .hero-sub { font-size: 0.95rem; }
  .nav-bar { padding: 0 16px; height: 60px; }
  .nav-logo { height: 24px; }
  body { padding-top: 60px; }
  .cta-block { padding: 56px 0; }
  .wrap { padding: 0 18px; }
  .h1 { font-size: clamp(30px, 8vw, 40px); }
  .h2 { font-size: clamp(24px, 6vw, 32px); }
  .h3 { font-size: clamp(18px, 5vw, 22px); }
  .body-lg { font-size: 1rem; }
  .btn { padding: 14px 24px; font-size: 0.95rem; }
  .btn-lg { padding: 16px 28px; font-size: 1rem; }
  .market-grid { grid-template-columns: 1fr; }
  .vi-table { font-size: 0.8rem; }
  .vi-table th, .vi-table td { padding: 10px 10px; }
  .market-detail { padding: 20px; }
}
@media (max-width: 420px) {
  .stats-band { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-cell:last-child { border-bottom: none; }
}
