/* ================================
   Zitro Global Solutions — styles
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #0A1F3D;
  --navy-2: #0E2747;
  --navy-3: #142F54;
  --blue: #1E5BB8;
  --blue-soft: #3B73C9;
  --silver: #A8B5C7;
  --silver-soft: #C7D0DD;
  --coral: #F2994A;
  --coral-deep: #E27E2A;
  --light: #F7F8FA;
  --light-2: #EEF1F5;
  --ink: #1A2332;
  --ink-2: #4A5568;
  --ink-3: #6B7280;
  --line: rgba(255,255,255,0.08);
  --line-dark: rgba(10,31,61,0.10);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1280px;

  /* density */
  --section-y: 120px;
  --gap: 24px;
}

[data-density="compact"] {
  --section-y: 80px;
  --gap: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ===== Type ===== */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--silver);
}
.eyebrow.dark { color: var(--blue); }

.h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 5vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 4.6vw, 64px); line-height: 1.06; letter-spacing: -0.02em; }
.h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.15; letter-spacing: -0.015em; }
.lede { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--ink-2); }
.lede.light { color: rgba(255,255,255,0.78); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-coral { background: var(--coral); color: var(--navy); box-shadow: 0 8px 24px rgba(242,153,74,0.32); }
.btn-coral:hover { background: var(--coral-deep); color: var(--navy); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.22); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
.btn-ghost-dark { background: transparent; color: var(--navy); border: 1px solid rgba(10,31,61,0.18); }
.btn-ghost-dark:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-3); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }

/* ===== Layout ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}
.section { padding: var(--section-y) 0; }
.section-tight { padding: calc(var(--section-y) * 0.66) 0; }

.bg-navy { background: var(--navy); color: #fff; }
.bg-light { background: var(--light); color: var(--ink); }
.bg-white { background: #fff; color: var(--ink); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--line);
  height: 80px;
  transition: background .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(10,31,61,0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
}
.site-header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
/* Group spacing — logo | nav | cta, with nav floating between with auto margins */
.site-header .inner > .nav { margin-left: auto; margin-right: auto; padding: 0 24px; }
.site-header .inner > .nav-cta { margin-left: 0; flex-shrink: 0; }
.logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.logo .word {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: #fff;
}
.logo .sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--silver);
  margin-top: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap; /* never wrap to a 2nd line */
}
.nav-item {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 14.5px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.nav-item:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}
.nav-item::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  pointer-events: none;
}
.nav-item:hover { color: #fff; }
.nav-item:hover::after, .nav-item.active::after { transform: scaleX(1); }
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* ===== Services dropdown panel ===== */
.nav-menu-wrap {
  position: relative;
  display: inline-flex;
}
.nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-trigger.is-open { background: rgba(255,255,255,0.06); color: #fff; }
.nav-trigger svg { transition: transform .2s ease; }

.nav-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 560px;
  max-width: calc(100vw - 32px);
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(10,15,25,0.28), 0 4px 12px rgba(10,15,25,0.12);
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 110;
}
.nav-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
/* Reposition right-aligned if near right edge — handled by CSS only via nth-child fallback */
@media (min-width: 1100px) {
  .nav-menu-wrap:nth-last-child(-n+2) .nav-panel { left: auto; right: 0; }
}
.nav-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.nav-panel-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  min-height: 56px;
  transition: background .15s ease;
}
.nav-panel-item:hover { background: var(--sand); }
.nav-panel-item:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 0;
}
.nav-panel-item .t {
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
}
.nav-panel-item .b {
  font-size: 12.5px;
  color: rgba(10,31,61,0.62);
  line-height: 1.4;
}
.nav-panel-foot {
  border-top: 1px solid rgba(10,31,61,0.08);
  margin-top: 8px;
  padding: 10px 14px 4px;
}
.nav-panel-foot .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--coral);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
}

.mobile-only { display: none; }

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

/* ===== Responsive nav strategy =====
   ≥ 1100px : full nav + ghost CTA + coral CTA
   900–1099 : full nav, drop ghost CTA, keep coral CTA
   < 900    : hamburger only (drawer)
*/
@media (max-width: 1099px) {
  .nav-cta-ghost { display: none; }
}
@media (max-width: 899px) {
  .nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
  .site-header { height: 64px; }
}
@media (max-width: 380px) {
  .logo .sub { display: none; }
  .site-header .inner { gap: 12px; }
}

/* ===== Hero (layout 3: split panels) ===== */
.hero {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  min-height: 720px;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
}
.hero-copy {
  padding: 96px 56px 96px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .hero-copy { padding: 64px 0 32px; }
}
.hero-copy .h1 { color: #fff; max-width: 18ch; margin: 18px 0 24px; font-size: clamp(40px, 4.6vw, 68px); }
.hero-copy .lede { max-width: 52ch; }
.hero-ctas { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }

.hero-media {
  position: relative;
  margin: 24px -32px 24px 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #1E5BB8 0%, #0A1F3D 100%);
  min-height: 560px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
}
@media (max-width: 980px) {
  .hero-media { margin: 0 0 64px; min-height: 380px; }
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  filter: contrast(1.06) saturate(1.08) brightness(1.02);
  transform: scale(1.02);
  transition: transform 1.2s ease;
}
.hero-media:hover img { transform: scale(1.05); }
.hero-media::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(242,153,74,0.18), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(30,91,184,0.35), transparent 60%);
  z-index: 1;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,31,61,0.05) 50%, rgba(10,31,61,0.78) 100%),
    linear-gradient(90deg, rgba(10,31,61,0.35) 0%, transparent 35%);
  pointer-events: none;
  z-index: 1;
}
.hero-floater {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 2;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(10,31,61,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.chip .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* glow blobs */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}
.glow-1 { top: -120px; left: -80px; width: 360px; height: 360px; background: var(--blue); }
.glow-2 { bottom: -120px; right: -80px; width: 320px; height: 320px; background: #2A6BD0; opacity: 0.35; }

/* ===== Marquee ===== */
.marquee-strip {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.marquee-strip.light {
  background: var(--light);
  color: var(--ink-3);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee-track > * { flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.client-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.7;
}
.client-logo.sans { font-family: var(--font-body); font-style: normal; font-weight: 700; letter-spacing: 0.02em; }
.client-logo.bold { font-weight: 700; font-style: normal; }

/* ===== Section heads ===== */
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head .h2 { margin-bottom: 16px; }

/* ===== Industries bento ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .bento { grid-template-columns: 1fr; } }

.tile {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  transition: transform 150ms ease-out, box-shadow 200ms ease-out;
  cursor: pointer;
  text-decoration: none;
}
/* Abstract texture layer (behind everything) */
.tile::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--tile-tex, none);
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transition: opacity 250ms ease-out;
}
/* Color overlay (on top of texture, under content) */
.tile::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--tile-overlay, currentColor);
  opacity: var(--tile-overlay-alpha, 0.88);
  transition: opacity 250ms ease-out;
}
.tile:hover, .tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(10,31,61,0.18);
}
.tile:hover::after, .tile:focus-within::after { opacity: var(--tile-overlay-hover, 0.55); }
.tile:hover::before, .tile:focus-within::before { opacity: 0.85; }
.tile:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}
.tile:focus { outline: none; }
.tile .tile-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.tile .tile-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: inherit;
  text-decoration: none;
}
.tile .tile-prop {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
  opacity: 0.85;
}
.tile .roles {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
}
.tile .roles li { display: flex; align-items: center; gap: 8px; }
.tile .roles li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.5;
}

/* Editorial reveal — hidden visually, present in DOM for screen readers */
.tile .tile-reveal {
  font-size: 14px;
  line-height: 1.55;
  margin-top: 16px;
  margin-bottom: 16px;
  max-width: 38ch;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 250ms ease-out, max-height 250ms ease-out, margin 250ms ease-out;
  text-shadow: 0 1px 2px rgba(0,0,0,0.18);
}
.tile:hover .tile-reveal,
.tile:focus-within .tile-reveal {
  opacity: 1;
  max-height: 140px;
}
/* Tiles with light backgrounds: drop the text-shadow */
.tile-silver .tile-reveal,
.tile-light .tile-reveal,
.tile-coral .tile-reveal { text-shadow: none; }

/* Mobile / no-hover devices: show inline by default, no hover dependency */
@media (hover: none) {
  .tile .tile-reveal { opacity: 1; max-height: 140px; }
  .tile::after { opacity: var(--tile-overlay-hover, 0.55); }
  .tile::before { opacity: 0.85; }
}

/* Reduced-motion: keep crossfades, drop transforms */
@media (prefers-reduced-motion: reduce) {
  .tile, .tile::before, .tile::after, .tile .tile-reveal, .tile .explore .arrow {
    transition: opacity 250ms ease-out !important;
  }
  .tile:hover, .tile:focus-visible { transform: none !important; }
  .tile:hover .explore .arrow { transform: none !important; }
}
.tile .explore {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.tile .explore .arrow { transition: transform 150ms ease-out; }
.tile:hover .explore .arrow,
.tile:focus-within .explore .arrow { transform: translateX(2px); }

/* tile color variants — each defines overlay color and abstract texture */
.tile-navy   { background: var(--navy); color: #fff; --tile-overlay: linear-gradient(135deg, #0A1F3D 0%, #142F54 100%); --tile-overlay-alpha: 0.90; --tile-overlay-hover: 0.55;
  --tile-tex: radial-gradient(circle at 70% 20%, rgba(91,142,217,0.35) 0%, transparent 45%), radial-gradient(circle at 20% 80%, rgba(168,181,199,0.25) 0%, transparent 50%), linear-gradient(135deg, #0A1F3D 0%, #1A3258 50%, #0A1F3D 100%); }
.tile-navy .tile-icon { background: rgba(255,255,255,0.08); color: var(--silver); }
.tile-blue   { background: var(--blue); color: #fff; --tile-overlay: linear-gradient(135deg, #1E5BB8 0%, #2E6BC6 100%); --tile-overlay-alpha: 0.88; --tile-overlay-hover: 0.50;
  --tile-tex: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.20) 0%, transparent 55%), repeating-linear-gradient(105deg, transparent 0 38px, rgba(255,255,255,0.04) 38px 39px), linear-gradient(160deg, #1A4FA0 0%, #3170D0 100%); }
.tile-blue .tile-icon { background: rgba(255,255,255,0.15); color: #fff; }
.tile-silver { background: var(--silver); color: var(--navy); --tile-overlay: linear-gradient(135deg, #C7D0DB 0%, #A8B5C7 100%); --tile-overlay-alpha: 0.88; --tile-overlay-hover: 0.62;
  --tile-tex: repeating-linear-gradient(90deg, transparent 0 60px, rgba(10,31,61,0.06) 60px 61px), repeating-linear-gradient(0deg, transparent 0 80px, rgba(10,31,61,0.04) 80px 81px), linear-gradient(135deg, #B8C2D0 0%, #8E9CB0 100%); }
.tile-silver .tile-icon { background: rgba(10,31,61,0.10); color: var(--navy); }
.tile-light  { background: #fff; color: var(--ink); border: 1px solid var(--line-dark); --tile-overlay: linear-gradient(135deg, #FFFFFF 0%, #F5F7FA 100%); --tile-overlay-alpha: 0.92; --tile-overlay-hover: 0.78;
  --tile-tex: repeating-linear-gradient(90deg, transparent 0 24px, rgba(30,91,184,0.06) 24px 25px), radial-gradient(circle at 80% 80%, rgba(30,91,184,0.10) 0%, transparent 45%), linear-gradient(135deg, #EAF0F8 0%, #D8E2EE 100%); }
.tile-light .tile-icon { background: var(--light); color: var(--blue); }
.tile-coral  { background: linear-gradient(135deg, #F2994A 0%, #E27E2A 100%); color: var(--navy); --tile-overlay: linear-gradient(135deg, #F2994A 0%, #E27E2A 100%); --tile-overlay-alpha: 0.88; --tile-overlay-hover: 0.58;
  --tile-tex: radial-gradient(circle at 25% 25%, rgba(255,220,180,0.55) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(180,90,30,0.40) 0%, transparent 50%), linear-gradient(135deg, #E07020 0%, #F4A55E 100%); }
.tile-coral .tile-icon { background: rgba(10,31,61,0.12); color: var(--navy); }
.tile-deep   { background: linear-gradient(135deg, #142F54 0%, #0A1F3D 100%); color: #fff; --tile-overlay: linear-gradient(135deg, #142F54 0%, #0A1F3D 100%); --tile-overlay-alpha: 0.90; --tile-overlay-hover: 0.55;
  --tile-tex: radial-gradient(ellipse at 50% 30%, rgba(91,142,217,0.38) 0%, transparent 55%), repeating-linear-gradient(45deg, transparent 0 60px, rgba(255,255,255,0.04) 60px 61px), linear-gradient(160deg, #1A3258 0%, #0A1F3D 100%); }
.tile-deep .tile-icon { background: rgba(168,181,199,0.14); color: var(--silver); }

/* ===== Infomercials ===== */
.video-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .video-grid { grid-template-columns: 1fr; } }

.video-featured {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #142F54, #0A1F3D);
  cursor: pointer;
}
.video-featured .poster {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.video-featured::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  z-index: 3;
  transition: transform .3s ease, background .3s ease;
}
.video-featured:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--coral); color: var(--navy); }
.play-btn.sm { width: 48px; height: 48px; }

.video-meta {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  color: #fff; z-index: 3;
}
.video-meta .label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; margin-bottom: 8px; }
.video-meta .title { font-family: var(--font-display); font-size: 28px; font-weight: 500; line-height: 1.1; letter-spacing: -0.015em; }
.video-meta .duration {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  background: rgba(0,0,0,0.5);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.video-rail {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 4px;
}
.video-rail::-webkit-scrollbar { width: 6px; }
.video-rail::-webkit-scrollbar-thumb { background: var(--silver); border-radius: 999px; }

.video-thumb {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  padding: 12px;
  cursor: pointer;
  transition: border-color .25s ease, transform .25s ease;
}
.video-thumb:hover { border-color: var(--blue); transform: translateX(2px); }
.video-thumb.active { border-color: var(--blue); background: var(--light); }
.video-thumb .poster {
  position: relative;
  aspect-ratio: 9/16;
  max-height: 110px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
}
.video-thumb .poster.aspect-square { aspect-ratio: 1; }
.video-thumb .poster .play-btn { width: 32px; height: 32px; }
.video-thumb .info .title { font-weight: 600; font-size: 14px; line-height: 1.3; margin-bottom: 4px; color: var(--ink); }
.video-thumb .info .meta { font-size: 12px; color: var(--ink-3); }

/* poster art (fake but rich) */
.poster-art {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.poster-1 { background: radial-gradient(circle at 30% 40%, #2A6BD0, #0A1F3D 70%); }
.poster-2 { background: linear-gradient(135deg, #F2994A 0%, #1E5BB8 100%); }
.poster-3 { background: radial-gradient(circle at 70% 30%, #A8B5C7, #142F54 80%); }
.poster-4 { background: linear-gradient(160deg, #0A1F3D 0%, #1E5BB8 100%); }
.poster-5 { background: radial-gradient(circle at 50% 60%, #1E5BB8, #0A1F3D 80%); }
.poster-6 { background: linear-gradient(135deg, #142F54, #2A6BD0); }

/* ===== How It Works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  row-gap: 48px;
  position: relative;
  align-items: stretch;
}
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; column-gap: 24px; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

.step {
  padding: 32px 0 0;
  border-top: 2px solid rgba(255,255,255,0.12);
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  min-height: 360px;
}
.step::before {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  width: 56px; height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s ease;
}
.step.in-view::before { transform: scaleX(1); }
.step .step-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--coral);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.step .step-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}
.step .step-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  align-self: start;
}
.step .step-out {
  align-self: end;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.step .step-out strong { display: block; color: var(--silver); font-weight: 500; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
.step .step-out .out-text { color: #fff; font-size: 15px; line-height: 1.45; font-weight: 500; }

/* ===== Why Zitro stat bento ===== */
.stat-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: var(--gap);
}
@media (max-width: 900px) { .stat-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }

.stat-cell {
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.stat-cell .stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.025em;
}
.stat-cell .stat-num .small { font-size: 36px; }
.stat-cell .stat-title { font-weight: 600; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 6px; }
.stat-cell .stat-desc { font-size: 13px; line-height: 1.5; opacity: 0.78; }
.stat-cell.dark { background: var(--navy); color: #fff; }
.stat-cell.blue { background: var(--blue); color: #fff; }
.stat-cell.silver { background: var(--silver); color: var(--navy); }
.stat-cell.light { background: #fff; color: var(--ink); border: 1px solid var(--line-dark); }
.stat-cell.coral { background: var(--coral); color: var(--navy); }

.cell-2 { grid-column: span 2; }
.cell-3 { grid-column: span 3; }
.cell-4 { grid-column: span 4; }
.cell-6 { grid-column: span 6; grid-row: auto; min-height: 180px; }
.stat-cell-wide { padding: 36px 40px; }
.stat-cell-wide .wide-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; width: 100%;
}
.stat-cell-wide .wide-copy { flex: 1; min-width: 280px; max-width: 720px; }
.stat-cell-wide .wide-cta { flex-shrink: 0; }
@media (max-width: 700px) { .stat-cell-wide { padding: 28px; } .stat-cell-wide .wide-cta { width: 100%; justify-content: center; } }
@media (max-width: 900px) { .cell-2, .cell-3, .cell-4, .cell-6 { grid-column: span 2; } }

/* ===== Case studies ===== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
@media (max-width: 980px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(10,31,61,0.10); }
.case-card .industry {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}
.case-card .stat {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.case-card .desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.case-card .footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}

/* ===== Testimonials ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 48px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
}
.testi-card .poster-art { transition: transform .8s ease; }
.testi-card:hover .poster-art { transform: scale(1.04); }
.testi-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.85) 100%);
}
.testi-card .quote {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  color: #fff;
}
.testi-card .quote q {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 14px;
  quotes: none;
}
.testi-card .quote q::before, .testi-card .quote q::after { content: ''; }
.testi-card .quote .who { font-size: 13px; opacity: 0.8; }
.testi-card .play-btn { width: 56px; height: 56px; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.plan.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.plan.featured .plan-name, .plan.featured .plan-price-num { color: #fff; }
.plan-tag {
  position: absolute; top: -12px; right: 24px;
  background: var(--coral);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.plan-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.plan-hours {
  font-size: 13px; font-weight: 500; opacity: 0.7;
}
.plan-price {
  display: flex; align-items: baseline; gap: 6px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.plan:not(.featured) .plan-price { border-color: var(--line-dark); }
.plan-price .from { font-size: 13px; font-weight: 500; opacity: 0.65; }
.plan-price-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.plan-price .per { font-size: 13px; opacity: 0.65; }
.plan-best {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.78;
}
.plan ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.plan ul li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
.plan ul li svg { flex-shrink: 0; margin-top: 2px; opacity: 0.8; }
.plan ul li.no { opacity: 0.45; text-decoration: line-through; }
.plan .btn { margin-top: auto; justify-content: center; width: 100%; }

/* ===== Build Your Plan ===== */
.builder {
  margin-top: 48px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .builder { grid-template-columns: 1fr; padding: 32px; } }
.builder-form { display: flex; flex-direction: column; gap: 24px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); margin-bottom: 10px; font-weight: 500; }
.select, .text-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 14px 16px;
  font: inherit;
  color: #fff;
  font-size: 15px;
  transition: border-color .25s ease, background .25s ease;
}
.select:focus, .text-input:focus { outline: 0; border-color: var(--coral); background: rgba(255,255,255,0.10); }
.select { appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23A8B5C7' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.select::-ms-expand { display: none; }
textarea.text-input { resize: vertical; min-height: 100px; font-family: inherit; }

.slider-wrap { display: flex; flex-direction: column; gap: 12px; }
.slider-row { display: flex; justify-content: space-between; font-size: 14px; }
.slider-val { font-family: var(--font-display); font-size: 28px; line-height: 1; color: var(--coral); }
input[type="range"] {
  width: 100%; appearance: none; -webkit-appearance: none;
  height: 4px; border-radius: 999px;
  background: rgba(255,255,255,0.18);
  outline: 0;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--coral);
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 2px var(--coral);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--coral);
  border: 3px solid var(--navy);
  cursor: pointer;
}

.estimate {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 16px;
  align-self: stretch;
}
.estimate .label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--silver); font-weight: 500; }
.estimate .range { font-family: var(--font-display); font-weight: 500; font-size: 56px; line-height: 1; letter-spacing: -0.025em; color: #fff; }
.estimate .range .small { font-size: 24px; opacity: 0.6; }
.estimate .breakdown { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.6; }
.estimate .breakdown b { color: #fff; font-weight: 600; }
.estimate .btn { margin-top: auto; align-self: flex-start; }

/* ===== Resources ===== */
.resource-feat {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--gap);
  margin-bottom: 32px;
}
@media (max-width: 900px) { .resource-feat { grid-template-columns: 1fr; } }
.post {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.post:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(10,31,61,0.08); }
.post.feat {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  padding: 40px;
  min-height: 360px;
}
.post .thumb {
  height: 160px;
  border-radius: var(--radius-md);
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
}
.post.feat .thumb { height: 220px; }
.post .industry-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue);
}
.post.feat .industry-tag { color: var(--coral); }
.post .title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.post.feat .title { font-size: 36px; line-height: 1.1; }
.post .meta { font-size: 13px; color: var(--ink-3); margin-top: auto; padding-top: 8px; }
.post.feat .meta { color: rgba(255,255,255,0.6); }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }

.filter-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  color: var(--ink-2);
  transition: all .2s ease;
}
.filter-pill:hover { border-color: var(--navy); }
.filter-pill.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ===== For Talent CTA strip ===== */
.talent-strip {
  background: linear-gradient(135deg, #142F54 0%, #1E5BB8 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .talent-strip { grid-template-columns: 1fr; padding: 40px 28px; } }
.talent-strip .h2 { color: #fff; }

.talent-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.talent-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 24px;
}
.talent-stat .num { font-family: var(--font-display); font-size: 40px; line-height: 1; color: #fff; font-weight: 500; letter-spacing: -0.02em; }
.talent-stat .lbl { font-size: 13px; opacity: 0.75; margin-top: 8px; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.scheduler {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.scheduler .head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.scheduler .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--blue));
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff;
}
.scheduler .calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}
.cal-cell {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  background: rgba(255,255,255,0.04);
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}
.cal-cell.head { background: transparent; font-size: 11px; color: var(--silver); letter-spacing: 0.1em; text-transform: uppercase; cursor: default; }
.cal-cell.disabled { opacity: 0.3; cursor: default; }
.cal-cell:not(.head):not(.disabled):hover { background: rgba(242,153,74,0.15); }
.cal-cell.selected { background: var(--coral); color: var(--navy); }
.cal-cell.has-slots { box-shadow: inset 0 -2px 0 var(--coral); }

.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.slot {
  padding: 12px 0;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
}
.slot:hover { border-color: var(--coral); }
.slot.selected { background: var(--coral); color: var(--navy); border-color: var(--coral); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.contact-form .field label { color: var(--ink-2); }
.contact-form .text-input, .contact-form .select {
  background-color: var(--light);
  border-color: var(--line-dark);
  color: var(--ink);
}
.contact-form .select option { color: var(--ink); background: #fff; }
.contact-form .text-input::placeholder { color: var(--ink-3); }
.contact-form .select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231A2332' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form .promise {
  background: var(--light);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}
.contact-form .promise b { color: var(--navy); }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-col h4 { color: #fff; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot-col ul a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px;
}
.badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}
.newsletter { display: flex; gap: 8px; }
.newsletter input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit; color: #fff; font-size: 14px;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter input:focus { outline: 0; border-color: var(--coral); }
.newsletter button { white-space: nowrap; }

/* socials */
.socials { display: flex; gap: 8px; }
.social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all .2s ease;
}
.social:hover { border-color: var(--coral); color: var(--coral); }

/* ===== Mobile drawer ===== */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--navy);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .25s ease-out;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  color: #fff;
  visibility: hidden;
}
.drawer.open {
  transform: translateX(0);
  visibility: visible;
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.drawer-brand {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #fff;
}
.drawer .close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.drawer .close:focus-visible,
.drawer-acc:focus-visible,
.drawer-link:focus-visible,
.drawer-sub:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: -2px;
}
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.drawer-link,
.drawer-acc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px;
  min-height: 56px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  border: 0;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  text-align: left;
}
.drawer-link.active,
.drawer-acc.active {
  color: var(--coral);
  background: rgba(216,93,69,0.12);
}
.drawer-link:hover,
.drawer-acc:hover {
  background: rgba(255,255,255,0.05);
}
.drawer-acc svg { transition: transform .2s ease; opacity: 0.6; }
.drawer-acc.open svg { transform: rotate(180deg); }
.drawer-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease-out;
  display: flex;
  flex-direction: column;
}
.drawer-acc-panel.open {
  max-height: 600px;
}
.drawer-sub {
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 28px;
  min-height: 48px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-radius: 8px;
  border-left: 2px solid rgba(255,255,255,0.08);
  margin-left: 14px;
}
.drawer-sub:hover {
  color: #fff;
  border-left-color: var(--coral);
  background: rgba(255,255,255,0.04);
}
.drawer-foot {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.scrim.open { opacity: 1; pointer-events: auto; }

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* video modal */
.modal-scrim {
  position: fixed; inset: 0;
  background: rgba(10,15,25,0.92);
  z-index: 250;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal-vid {
  width: min(960px, 100%);
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background: #000;
  position: relative;
  overflow: hidden;
}
.modal-close {
  position: absolute; top: -44px; right: 0;
  color: #fff;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
}
.modal-close:hover { background: rgba(255,255,255,0.08); }

/* ===== Misc ===== */
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* Mini world map svg pattern */
.world-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(168,181,199,0.3) 1px, transparent 0);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  opacity: 0.6;
}
