/* Versatile Global Media — shared styles */
@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-VariableFont_wght.ttf') format('truetype-variations'),
       url('fonts/Geist-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Geist+Mono:wght@400;500&display=swap');

:root {
  /* Brand */
  --vgm-amber: #F8B64F;
  --vgm-amber-strong: #F4A82B;
  --vgm-amber-soft: #FFF5E0;
  --vgm-amber-tint: #FEFAEF;

  /* Neutrals */
  --ink: #0E0E10;
  --ink-2: #1B1B1F;
  --charcoal: #2A2A30;
  --slate: #555560;
  --muted: #8A8A95;
  --line: #ECECEE;
  --line-2: #E2E2E6;
  --paper: #FAFAFA;
  --paper-2: #F5F4F1;
  --white: #FFFFFF;

  /* Type */
  --font-sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', 'Geist', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, Menlo, monospace;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  /* Shadow */
  --sh-1: 0 1px 2px rgba(15,15,20,.04), 0 1px 1px rgba(15,15,20,.03);
  --sh-2: 0 4px 12px rgba(15,15,20,.06), 0 1px 2px rgba(15,15,20,.04);
  --sh-3: 0 12px 32px rgba(15,15,20,.08), 0 2px 6px rgba(15,15,20,.05);
  --sh-4: 0 24px 60px rgba(15,15,20,.12), 0 4px 12px rgba(15,15,20,.06);
  --sh-glow: 0 18px 50px rgba(248,182,79,.35);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  /* clip (not hidden) — blocks horizontal overflow without creating a scroll
     container, so position:sticky on the nav keeps working on mobile */
  overflow-x: clip;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Layout */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 24px; }

/* Typography helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--vgm-amber);
  box-shadow: 0 0 0 4px rgba(248,182,79,.2);
}
.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--ink);
}
.h-xl { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5.6vw, 84px); letter-spacing: -0.035em; line-height: 0.98; }
.h-lg { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 3.8vw, 56px); letter-spacing: -0.03em; line-height: 1.02; }
.h-md { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 2.6vw, 38px); letter-spacing: -0.025em; line-height: 1.05; }
.h-sm { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.018em; line-height: 1.15; }
.lead { font-size: 18px; color: var(--slate); line-height: 1.55; max-width: 60ch; }
.kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.amber-underline { background: linear-gradient(180deg, transparent 62%, rgba(248,182,79,.55) 62%, rgba(248,182,79,.55) 95%, transparent 95%); padding: 0 .08em; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  letter-spacing: -0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(3px); }
.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(15,15,20,.18);
}
.btn-primary:hover { background: #000; transform: translateY(-1px); box-shadow: 0 14px 32px rgba(15,15,20,.22); }
.btn-amber {
  background: var(--vgm-amber);
  color: var(--ink);
  box-shadow: var(--sh-glow);
}
.btn-amber:hover { background: var(--vgm-amber-strong); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 60px; padding: 0 28px; font-size: 16px; }

/* ======= Nav ======= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  width: 100%;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition: background .2s ease, border-color .2s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
/* Hide-on-scroll-down state — transition overridden to none by JS for instant exit */
.nav.nav-up { transform: translateY(-110%); }
/* Spacer that compensates for the fixed nav height */
.nav-spacer { height: 76px; }
.nav.is-stuck {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: var(--ink);
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--ink);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.brand-mark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(248,182,79,.5), transparent 60%);
}
.brand-mark svg { position: relative; z-index: 1; }
.brand .tag { font-family: var(--font-sans); font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; margin-left: 6px; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--r-pill);
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover { background: var(--paper-2); color: var(--ink); }
.nav-link.has-dd::after {
  content: ""; width: 8px; height: 8px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translate(-2px,-2px);
  opacity: .6;
  transition: transform .2s ease;
}
.nav-link.has-dd[aria-expanded="true"]::after {
  transform: rotate(225deg) translate(-2px,-2px);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Dropdown */
.dd-wrap { position: relative; }
.dd {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(720px, 92vw);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-4);
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.dd-wrap.open .dd { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dd-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--r-md);
  transition: background .15s ease;
}
.dd-item:hover { background: var(--paper-2); }
.dd-item .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--vgm-amber-tint);
  border: 1px solid #F4E7C4;
  display: grid; place-items: center;
  color: var(--ink);
}
.dd-item .ico svg { width: 22px; height: 22px; }
.dd-item .ttl { font-weight: 600; font-size: 14px; color: var(--ink); letter-spacing: -0.01em; }
.dd-item .sub { font-size: 12.5px; color: var(--slate); margin-top: 2px; line-height: 1.45; }
.dd-item .arr {
  width: 28px; height: 28px; border-radius: 999px; background: transparent;
  display: grid; place-items: center; color: var(--slate);
  transition: background .15s ease, color .15s ease, transform .2s ease;
}
.dd-item:hover .arr { background: var(--ink); color: var(--white); transform: translateX(2px); }
.dd-foot {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--paper-2);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--slate);
}
.dd-foot strong { color: var(--ink); font-weight: 600; }

/* Mobile nav */
.menu-btn { display: none; }
@media (max-width: 960px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .menu-btn {
    display: inline-flex;
    width: 44px; height: 44px; align-items: center; justify-content: center;
    border-radius: 999px; border: 1px solid var(--line-2); background: var(--white);
  }
  .menu-btn span { width: 18px; height: 1.6px; background: var(--ink); position: relative; display: block; }
  .menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; right: 0; height: 1.6px; background: var(--ink); }
  .menu-btn span::before { top: -6px; }
  .menu-btn span::after { top: 6px; }
}

/* Sections */
section { padding: 120px 0; position: relative; }
@media (max-width: 760px) { section { padding: 80px 0; } }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 56px;
}
.section-head .left { max-width: 640px; }
@media (max-width: 760px) {
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 36px; }
}

/* Reveal animation */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .4s; }
[data-reveal-delay="6"] { transition-delay: .48s; }

/* Footer */
.footer {
  background: var(--ink);
  color: #C9C9D0;
  padding: 80px 0 32px;
}
.footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .footer .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer .grid { grid-template-columns: 1fr; gap: 32px; } }
.footer h5 { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 18px; letter-spacing: 0.02em; text-transform: uppercase; }
.footer a { color: #B6B6BD; font-size: 14px; display: block; padding: 6px 0; transition: color .15s ease; }
.footer a:hover { color: var(--vgm-amber); }
.footer-meta {
  border-top: 1px solid #26262C; padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: #82828A;
}
.footer .brand { color: var(--white); }
.footer .brand .tag { color: var(--vgm-amber); }
.footer .pitch { color: #9A9AA2; font-size: 14px; line-height: 1.6; max-width: 320px; margin-top: 18px; }

/* Reusable card */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--line-2); box-shadow: var(--sh-2); transform: translateY(-2px); }

/* Tag pill */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: var(--vgm-amber-soft);
  color: #8A5A05;
  border: 1px solid #F0DDB0;
}
.pill.dark { background: var(--ink); color: var(--white); border-color: transparent; }
.pill.ghost { background: var(--white); color: var(--charcoal); border-color: var(--line-2); }
