/* ==========================================================================
   GM Partners — Design system
   ========================================================================== */

:root {
  --navy-950: #07051a;
  --navy-900: #12103a;
  --navy-800: #1c1958;
  --indigo-600: #372fd6;
  --violet-600: #7030a0;
  --violet-500: #8a4bc0;
  --neon-violet: #c084fc;
  --neon-indigo: #6d6bff;
  --neon-glow: rgba(155, 92, 246, 0.55);

  /* dark-theme surfaces */
  --cream: #120f30;
  --white: #ffffff;
  --ink: #f3f1fb;
  --muted: rgba(243, 241, 251, 0.66);
  --muted-light: rgba(243, 241, 251, 0.42);
  --border: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(255, 255, 255, 0.14);
  --card-bg: rgba(255, 255, 255, 0.045);

  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 60px -25px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 12px 32px -18px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--navy-950);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-violet);
  font-weight: 600;
  margin-bottom: 14px;
  text-shadow: 0 0 18px rgba(192, 132, 252, 0.45);
}

.section {
  position: relative;
  padding: 96px 0;
  background: var(--navy-950);
}
.section--tight { padding: 64px 0; }
.section--cream { background: var(--cream); }
.section--navy {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-950) 100%);
  color: var(--white);
}
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.78); }

.section-head {
  max-width: 680px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.lede {
  font-size: 1.1rem;
  color: var(--muted);
}
.section--navy .lede { color: rgba(255,255,255,0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(112, 48, 160, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(112, 48, 160, 0.6); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--neon-violet);
  color: var(--neon-violet);
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.35);
}

.btn-light {
  background: var(--white);
  color: var(--navy-950);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 0 26px rgba(255, 255, 255, 0.35); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(10, 8, 32, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 30px -18px rgba(0,0,0,0.5);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.brand img { height: 34px; width: 34px; border-radius: 50%; object-fit: cover; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { position: relative; }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}
.hero-bg::before {
  width: 46vw; height: 46vw; max-width: 980px; max-height: 980px;
  right: -8%; top: -16%;
  background: radial-gradient(circle, var(--violet-600), transparent 70%);
  animation: auraDrift 14s ease-in-out infinite;
}
.hero-bg::after {
  width: 34vw; height: 34vw; max-width: 760px; max-height: 760px;
  left: -6%; bottom: -14%;
  background: radial-gradient(circle, var(--indigo-600), transparent 70%);
  animation: auraDrift 18s ease-in-out infinite reverse;
}
@keyframes auraDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4%, 5%) scale(1.12); }
}
.cursor-spot {
  position: absolute;
  inset: 0;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 40%), rgba(192, 132, 252, 0.16), transparent 60%);
  pointer-events: none;
}

.text-neon {
  background: linear-gradient(90deg, var(--white), var(--neon-violet) 65%, var(--neon-indigo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  max-width: 760px;
}
#hero .hero-content { max-width: 1300px; }
#hero .lede { max-width: 640px; }
.hero-tagline {
  font-style: italic;
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-top: 22px;
}
.hero h1 { color: var(--white); }
.hero .lede { color: rgba(255,255,255,0.82); font-size: 1.2rem; }
.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
}
.hero-stat .label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  position: relative;
  padding: 168px 0 72px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 40vw; height: 40vw; max-width: 520px; max-height: 520px;
  left: 50%; top: -22%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--violet-600), transparent 68%);
  filter: blur(100px);
  opacity: 0.45;
  animation: auraDrift 16s ease-in-out infinite;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero .lede { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,0.78); }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

.value-card {
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.value-card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  display: flex; align-items: center; justify-content: center;
  color: white;
  margin-bottom: 18px;
  font-size: 1.2rem;
  box-shadow: 0 0 22px -4px var(--neon-glow);
}
.value-card h3 { margin-bottom: 10px; font-size: 1.15rem; color: var(--white); }
.value-card p { color: var(--muted); margin: 0; font-size: 0.96rem; }
.value-card .offer-jump { margin-top: 20px; padding: 10px 22px; font-size: 0.88rem; }

/* ---------- Orbit (circular, animated feature selector) ---------- */
.orbit {
  --orbit-size: 560px;
  --orbit-r: 225px;
  --dot-size: 66px;
  position: relative;
  width: var(--orbit-size);
  height: var(--orbit-size);
  max-width: 100%;
  margin: 20px auto 0;
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(192, 132, 252, 0.25);
  animation: orbitSpin 60s linear infinite;
}
.orbit-ring--outer {
  inset: -34px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.06);
  animation-duration: 90s;
  animation-direction: reverse;
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-hub {
  position: absolute;
  top: 50%; left: 50%;
  width: 108px; height: 108px;
  margin: -54px 0 0 -54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(112, 48, 160, 0.12), 0 0 50px -6px var(--neon-glow);
  animation: orbitPulse 3.6s ease-in-out infinite;
}
@keyframes orbitPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

.orbit-node {
  position: absolute;
  top: 50%; left: 50%;
  width: var(--dot-size);
  height: var(--dot-size);
  margin: calc(var(--dot-size) / -2) 0 0 calc(var(--dot-size) / -2);
  transform: rotate(var(--angle)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(-1 * var(--angle)));
  border: none;
  background: none;
  padding: 0;
}
.orbit-node__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--neon-violet);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.orbit-node__dot svg { width: 28px; height: 28px; flex-shrink: 0; }
.orbit-node.is-active .orbit-node__dot,
.orbit-node:hover .orbit-node__dot { color: var(--white); }
.orbit-node__label {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.25;
  transition: color 0.3s ease;
}
.orbit-node:hover .orbit-node__dot {
  transform: scale(1.1);
  border-color: var(--neon-violet);
  box-shadow: 0 0 26px -6px var(--neon-glow);
}
.orbit-node.is-active .orbit-node__dot {
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  border-color: transparent;
  box-shadow: 0 0 30px -4px var(--neon-glow);
  transform: scale(1.12);
}
.orbit-node.is-active .orbit-node__label { color: var(--white); }

.orbit-detail {
  max-width: 560px;
  margin: 84px auto 0;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  min-height: 110px;
}
.orbit-detail.is-visible { opacity: 1; transform: translateY(0); }
.orbit-detail h3 { font-size: 1.3rem; margin-bottom: 10px; }
.orbit-detail p { color: var(--muted); margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .orbit-ring, .orbit-hub { animation: none; }
}

@media (max-width: 860px) {
  .orbit {
    position: static;
    width: auto; height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .orbit-ring, .orbit-ring--outer, .orbit-hub { display: none; }
  .orbit-node {
    position: static;
    transform: none !important;
    margin: 0;
    width: auto; height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 10px;
    border-radius: var(--radius);
    background: var(--card-bg);
    border: 1px solid var(--border);
  }
  .orbit-node__dot { width: 52px; height: 52px; flex-shrink: 0; }
  .orbit-node.is-active { border-color: var(--neon-violet); }
  .orbit-node__label { position: static; transform: none; width: auto; font-size: 0.82rem; }
}

@media (max-width: 520px) {
  .orbit { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Process timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.timeline-step {
  position: relative;
  padding: 28px 22px;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.timeline-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--neon-violet);
  display: block;
  margin-bottom: 12px;
  text-shadow: 0 0 16px rgba(192, 132, 252, 0.4);
}
.timeline-step h4 { font-size: 1rem; margin: 0 0 8px; color: var(--white); font-family: var(--font-sans); font-weight: 700; }
.timeline-step p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ---------- Offers ---------- */
.offer-block {
  scroll-margin-top: 110px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
  margin-bottom: 40px;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
}
.offer-block__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.offer-block__number {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--violet-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.offer-block__head h2 { margin-bottom: 8px; }
.offer-block__for {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 620px;
}
.offer-block__cta { flex-shrink: 0; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tier-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
}
.tier-card.is-featured {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border-color: transparent;
  color: var(--white);
}
.tier-card.is-featured h4, .tier-card.is-featured .tier-for { color: var(--white); }
.tier-card.is-featured p { color: rgba(255,255,255,0.75); }
.tier-card .tier-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.tier-card .tier-for {
  font-size: 0.85rem;
  color: var(--neon-violet);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.tier-card.is-featured .tier-for { color: #d7b8f0; }
.tier-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }

.offer-block__deliverables {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.offer-block__deliverables li {
  font-size: 0.92rem;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}
.offer-block__deliverables li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--violet-600);
  font-weight: 700;
}

.offer-note {
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--muted-light);
  font-style: italic;
}

/* ---------- Comparison table ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  vertical-align: top;
}
.compare-table th {
  font-family: var(--font-serif);
  font-size: 1rem;
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  color: var(--white);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { font-weight: 600; color: var(--muted); width: 18%; }

/* ---------- Scroll timeline ---------- */
.scroll-timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.scroll-timeline-track {
  position: relative;
}
.scroll-timeline-rail {
  position: absolute;
  left: 19px;
  top: 6px;
  width: 2px;
  background: rgba(255, 255, 255, 0.16);
}
.scroll-timeline-rail-fill {
  position: absolute;
  inset-inline: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--violet-600), var(--indigo-600));
  border-radius: 2px;
  transition: height 0.05s linear;
}

.scroll-timeline-item {
  position: relative;
  display: flex;
  gap: 36px;
  padding-top: 92px;
}
.scroll-timeline-item:first-child { padding-top: 0; }

.scroll-timeline-sticky {
  position: sticky;
  top: 130px;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 0 0 210px;
  height: fit-content;
  padding-bottom: 40px;
}
.scroll-timeline-node {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy-950);
  border: 3px solid var(--violet-500);
  margin-left: 11px;
}
.scroll-timeline-item.is-current .scroll-timeline-node {
  background: var(--violet-500);
  box-shadow: 0 0 0 5px rgba(185, 138, 240, 0.22);
}
.scroll-timeline-year {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
}
.scroll-timeline-year--mobile { display: none; }

.scroll-timeline-content {
  flex: 1;
  min-width: 0;
  padding-bottom: 34px;
}
.scroll-timeline-content h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--white);
}
.scroll-timeline-content .career-org {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin-bottom: 0;
}
.badge-today {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  padding: 4px 10px;
  border-radius: 999px;
}

@media (max-width: 720px) {
  .scroll-timeline-rail { left: 11px; }
  .scroll-timeline-item { gap: 18px; padding-top: 44px; }
  .scroll-timeline-sticky {
    position: static;
    flex: 0 0 auto;
    padding-bottom: 0;
  }
  .scroll-timeline-year { display: none; }
  .scroll-timeline-year--mobile {
    display: block;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--violet-600);
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  .scroll-timeline-node { margin-left: 3px; }
  .scroll-timeline-content { padding-bottom: 8px; }
}

/* ---------- World map (full-bleed background) ---------- */
.section--globe { padding-bottom: 64px; }
.globe-fullbleed {
  position: relative;
  width: 100%;
  height: 560px;
  margin: 8px 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.globe-fullbleed canvas {
  cursor: grab;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
}
.globe-fullbleed canvas:active { cursor: grabbing; }
.globe-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  background: rgba(10,8,32,0.55);
  padding: 5px 12px;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .globe-fullbleed { height: 62vw; min-height: 340px; }
}

.map-caption {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.map-caption-group { text-align: left; }
.map-caption-group strong {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.map-caption-group span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}


/* ---------- Offers carousel ---------- */
.carousel {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 56px 64px;
  text-align: center;
}
.carousel-slide__num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #d7b8f0;
  margin-bottom: 14px;
}
.carousel-slide h3 {
  color: var(--white);
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.carousel-slide p {
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.02rem;
}
.carousel-tiers {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.tier-chip {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(10,8,32,0.4);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.carousel-arrow:hover {
  background: var(--violet-600);
  border-color: var(--violet-600);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 24px -4px var(--neon-glow);
}
.carousel-arrow.prev { left: -8px; }
.carousel-arrow.next { right: -8px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}
.carousel-dot.is-active {
  background: linear-gradient(135deg, var(--violet-500), var(--indigo-600));
  width: 26px;
  border-radius: 5px;
}

@media (max-width: 720px) {
  .carousel-slide { padding: 40px 28px; }
  .carousel-slide h3 { font-size: 1.4rem; }
  .carousel-arrow { display: none; }
}

/* ---------- Quote / positioning ---------- */
.quote-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  color: var(--white);
  margin: 0 0 20px;
  line-height: 1.4;
}

/* ---------- Segment / target cards ---------- */
.segment-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
}
.segment-card h4 { margin-bottom: 12px; }
.segment-card ul { display: flex; flex-direction: column; gap: 8px; }
.segment-card li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.segment-card li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--neon-violet);
}

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: 24px;
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  color: var(--white);
  padding: 64px;
  text-align: center;
  box-shadow: 0 30px 70px -20px rgba(112, 48, 160, 0.45);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 32px; width: 32px; border-radius: 50%; }
.footer-brand span { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); font-weight: 700; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: block; font-size: 0.92rem; margin-bottom: 10px; color: rgba(255,255,255,0.68); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--neon-violet); }

/* ---------- Legal pages (prose) ---------- */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 44px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--muted); }
.legal-content ul { margin: 0 0 1em; padding-left: 4px; }
.legal-content li {
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}
.legal-content li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--neon-violet);
}
.legal-content a { color: var(--neon-violet); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--white); }
.legal-content strong { color: var(--white); }

/* ---------- Contact form ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-info-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  color: var(--white);
  border-radius: 20px;
  padding: 40px;
}
.contact-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--violet-500);
  box-shadow: 0 0 0 6px rgba(155, 92, 246, 0.18);
  margin-bottom: 24px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 18px; }
.contact-info-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.contact-info-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.contact-info-list li { font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.contact-info-list strong { display: block; color: var(--white); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; color: #d7b8f0; }
.contact-info-list a { transition: color 0.2s ease; }
.contact-info-list a:hover { color: var(--neon-violet); text-decoration: underline; }

.form-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.field .hint { font-size: 0.78rem; color: var(--muted-light); font-weight: 400; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--neon-violet);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select option { background: var(--navy-900); color: var(--ink); }

.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pill {
  position: relative;
}
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill label {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.radio-pill input:checked + label {
  background: linear-gradient(135deg, var(--violet-600), var(--indigo-600));
  color: var(--white);
  border-color: transparent;
}

.form-note {
  font-size: 0.82rem;
  color: var(--muted-light);
  margin-top: 6px;
}
.form-status {
  margin-top: 18px;
  font-size: 0.9rem;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.success { background: rgba(52, 199, 89, 0.14); color: #6fe39a; border: 1px solid rgba(52, 199, 89, 0.3); }
.form-status.error { background: rgba(255, 69, 58, 0.14); color: #ff8a80; border: 1px solid rgba(255, 69, 58, 0.3); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Staggered reveal — items in a grid animate in one after another */
.grid-3 .reveal:nth-child(1), .timeline .reveal:nth-child(1), .career-timeline .reveal:nth-child(1) { transition-delay: 0s; }
.grid-3 .reveal:nth-child(2), .timeline .reveal:nth-child(2), .career-timeline .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid-3 .reveal:nth-child(3), .timeline .reveal:nth-child(3), .career-timeline .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid-3 .reveal:nth-child(4), .timeline .reveal:nth-child(4), .career-timeline .reveal:nth-child(4) { transition-delay: 0.24s; }
.grid-3 .reveal:nth-child(5), .timeline .reveal:nth-child(5), .career-timeline .reveal:nth-child(5) { transition-delay: 0.32s; }
.grid-3 .reveal:nth-child(6), .timeline .reveal:nth-child(6), .career-timeline .reveal:nth-child(6) { transition-delay: 0.4s; }
.timeline .reveal:nth-child(7) { transition-delay: 0.48s; }
.timeline .reveal:nth-child(8) { transition-delay: 0.56s; }

/* ---------- Motion & interactivity ---------- */
.value-card, .tier-card, .segment-card, .timeline-step {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.value-card:hover, .segment-card:hover, .timeline-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px -18px rgba(0, 0, 0, 0.55), 0 0 32px -6px var(--neon-glow);
  border-color: rgba(192, 132, 252, 0.45);
}
.tier-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-violet);
  box-shadow: 0 0 28px -8px var(--neon-glow);
}
.tier-card.is-featured {
  box-shadow: 0 0 40px -10px rgba(112, 48, 160, 0.55);
}
.tier-card.is-featured:hover { transform: translateY(-6px) scale(1.01); }

.value-card .icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.value-card:hover .icon { transform: scale(1.12) rotate(-6deg); }

.timeline-step::before { transition: transform 0.35s ease, color 0.35s ease; }
.timeline-step:hover::before { transform: translateX(4px); color: var(--indigo-600); }

/* Animated underline on nav links */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Gentle breathing glow on the hero's primary call to action */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 14px 30px -12px rgba(112, 48, 160, 0.55); }
  50% { box-shadow: 0 14px 40px -8px rgba(112, 48, 160, 0.85); }
}
.hero .btn-primary { animation: ctaPulse 3.2s ease-in-out infinite; }
.hero .btn-primary:hover { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .hero .btn-primary { animation: none; }
  .value-card, .tier-card, .segment-card, .timeline-step, .reveal { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .offer-block { padding: 30px; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(10, 8, 32, 0.97);
    padding: 28px 24px;
    gap: 20px;
    backdrop-filter: blur(10px);
  }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .offer-block__head { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cta-band { padding: 40px 24px; }
  .compare-table { display: block; overflow-x: auto; white-space: nowrap; }
  .section { padding: 64px 0; }
}
