@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ─── VARIABLES ─── */
:root {
  --navy:         #0D2137;
  --navy-mid:     #1A3550;
  --teal:         #1A7A8C;
  --teal-bright:  #2A9AB0;
  --teal-light:   #5BBCD4;
  --seafoam:      #A8D5DC;
  --seafoam-pale: #E4F2F5;
  --bg:           #F4F7F7;
  --text:         #111D27;
  --text-muted:   #4A6070;
  --white:        #FFFFFF;
  --border:       #C8DDE2;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --nav-h:        72px;
  --max-w:        1180px;
  --pad-x:        clamp(24px, 5vw, 80px);
  --pad-y:        clamp(72px, 10vw, 128px);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-bright); }
img { max-width: 100%; display: block; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 var(--pad-x);
  transition: background .35s, box-shadow .35s;
}
.nav.transparent { background: transparent; }
.nav.scrolled, .nav.solid {
  background: var(--navy);
  box-shadow: 0 2px 32px rgba(13,33,55,.22);
}
.nav-inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); line-height: 1.25;
}
.nav-logo span {
  display: block; font-weight: 400;
  font-size: 10px; letter-spacing: .18em; opacity: .6;
  font-family: var(--font-body);
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.78); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--teal-light); transition: width .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links .nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 9px 22px; letter-spacing: .14em;
  transition: background .25s;
}
.nav-links .nav-cta:hover { background: var(--teal-bright); }
.nav-links .nav-cta::after { display: none; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: var(--navy); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--font-display); font-size: 30px; font-weight: 300;
  color: rgba(255,255,255,.85); letter-spacing: .05em;
}
.nav-overlay a:hover { color: var(--white); }
.nav-overlay .close-btn {
  position: absolute; top: 22px; right: 26px;
  font-size: 34px; background: none; border: none;
  color: rgba(255,255,255,.6); cursor: pointer; line-height: 1;
}

/* ─── ANIMATED GRADIENT ─── */
.gradient-bg {
  background: linear-gradient(-45deg, #0D2137, #0A3D4F, #1A7A8C, #0E4A5E, #0D2137);
  background-size: 400% 400%;
  animation: gradShift 14s ease infinite;
}
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── HERO (home) ─── */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(13,33,55,.45) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad-x); max-width: 880px;
}
.hero-eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--seafoam); margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s .3s forwards;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(42px, 7.5vw, 88px);
  font-weight: 300; line-height: 1.1; color: var(--white);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp .9s .6s forwards;
}
.hero-title em { font-style: italic; color: var(--seafoam); }
.hero-sub {
  font-family: var(--font-body); font-size: clamp(15px, 2vw, 19px);
  font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,.72); max-width: 620px; margin: 0 auto 48px;
  opacity: 0; animation: fadeUp .9s .9s forwards;
}
.hero-cta { opacity: 0; animation: fadeUp .9s 1.1s forwards; }
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeIn 1s 1.9s forwards;
}
.scroll-hint span {
  font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.38);
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .4; transform: scaleY(.55); }
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: calc(var(--nav-h) + 72px) var(--pad-x) 72px;
  text-align: center;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--seafoam); margin-bottom: 18px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 66px); font-weight: 300;
  color: var(--white); line-height: 1.14;
}
.page-title em { font-style: italic; color: var(--seafoam); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; padding: 16px 42px;
  border: 1.5px solid var(--teal-light); color: var(--white);
  text-decoration: none; position: relative; overflow: hidden;
  transition: border-color .3s, color .3s;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--teal); transform: translateX(-102%);
  transition: transform .32s; z-index: -1;
}
.btn:hover { border-color: var(--teal); color: var(--white); }
.btn:hover::before { transform: translateX(0); }
.btn-solid {
  background: var(--teal); border-color: var(--teal); color: var(--white);
}
.btn-solid::before { background: var(--teal-bright); }
.btn-solid:hover { border-color: var(--teal-bright); color: var(--white); }
.btn-dark {
  border-color: rgba(255,255,255,.3); color: var(--white);
}
.btn-dark::before { background: var(--navy-mid); }
.btn-dark:hover { border-color: var(--white); }

/* ─── LAYOUT ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--pad-y) var(--pad-x); }
.section-white { background: var(--white); }
.section-pale  { background: var(--seafoam-pale); }
.section-navy  { background: var(--navy); color: var(--white); }
.section-dark  { background: #07131F; color: var(--white); }

/* ─── TYPE ─── */
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--teal);
  display: block; margin-bottom: 14px;
}
.section-navy .eyebrow, .section-dark .eyebrow { color: var(--seafoam); }
.display {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(30px, 4.5vw, 54px); line-height: 1.18;
  color: var(--navy); margin-bottom: 24px;
}
.section-navy .display, .section-dark .display { color: var(--white); }
h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px); color: var(--navy);
  margin-bottom: 18px; line-height: 1.25;
}
.section-navy h2, .section-dark h2 { color: var(--white); }
h3 {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2vw, 21px); color: var(--navy);
  margin-bottom: 12px; line-height: 1.3; font-weight: 700;
}
p { color: var(--text-muted); margin-bottom: 18px; line-height: 1.82; }
.section-navy p, .section-dark p { color: rgba(255,255,255,.72); }
.lead {
  font-size: clamp(17px, 2vw, 20px); line-height: 1.72;
  color: var(--text); font-weight: 300;
}
.section-navy .lead { color: rgba(255,255,255,.88); }
.divider { width: 48px; height: 3px; background: var(--teal); margin-bottom: 28px; }
.section-navy .divider { background: var(--seafoam); }

/* ─── HOME: INTRO ─── */
.intro-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start;
}
.intro-stat {
  border-top: 1px solid var(--border); padding-top: 28px; margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.stat-num {
  font-family: var(--font-display); font-size: 52px; font-weight: 300;
  color: var(--teal); line-height: 1; display: block; margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ─── HOME: CAPABILITIES STRIP ─── */
.cap-strip {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; background: var(--border);
}
.cap-item {
  background: var(--white); padding: 36px 24px;
  transition: background .28s;
}
.cap-item:hover { background: var(--seafoam-pale); }
.cap-num {
  font-family: var(--font-display); font-size: 46px; font-weight: 300;
  color: var(--seafoam); line-height: 1; margin-bottom: 16px;
}
.cap-title {
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px; line-height: 1.3;
}
.cap-desc { font-size: 13px; line-height: 1.62; color: var(--text-muted); margin: 0; }

/* ─── ABOUT ─── */
.about-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 80px; align-items: start;
}
.sidebar-card {
  background: var(--navy); padding: 40px 32px;
  position: sticky; top: calc(var(--nav-h) + 28px);
}
.sidebar-card h4 {
  font-size: 10px; font-weight: 600; letter-spacing: .24em;
  text-transform: uppercase; color: var(--seafoam); margin-bottom: 24px;
}
.sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.sidebar-card li {
  font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.5;
  padding-left: 14px; border-left: 2px solid var(--teal);
}

/* ─── SERVICES ─── */
.service-list { max-width: 820px; margin: 0 auto; }
.service-block {
  padding: 56px 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 80px 1fr; gap: 40px; align-items: start;
}
.service-block:last-child { border-bottom: none; }
.service-num {
  font-family: var(--font-display); font-size: 64px; font-weight: 300;
  color: var(--seafoam); line-height: 1; margin-top: -8px;
}
.service-title {
  font-family: var(--font-heading);
  font-size: clamp(19px, 2.5vw, 24px); color: var(--navy); margin-bottom: 18px;
}
.relevant-tag {
  display: inline-block; margin-top: 20px; padding: 10px 18px;
  border-left: 3px solid var(--teal); background: var(--seafoam-pale);
  font-size: 13px; color: var(--text-muted); font-style: italic; line-height: 1.5;
}

/* ─── TRACK RECORD ─── */
.track-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px; background: var(--border);
}
.track-item {
  background: var(--white); padding: 44px 36px;
  transition: background .28s;
}
.track-item:hover { background: var(--seafoam-pale); }
.track-bar { width: 36px; height: 3px; background: var(--teal); margin-bottom: 24px; }
.track-title {
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 14px; line-height: 1.35;
}
.track-item p { font-size: 14px; line-height: 1.78; margin: 0; }

/* ─── CONTACT ─── */
.contact-wrap { max-width: 740px; margin: 0 auto; }
.form-group { margin-bottom: 26px; }
label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--navy); margin-bottom: 10px;
}
input, textarea, select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border); background: var(--white);
  font-family: var(--font-body); font-size: 16px; color: var(--text);
  border-radius: 0; -webkit-appearance: none; transition: border-color .2s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--teal); }
textarea { min-height: 148px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.submit-note { margin-top: 12px; font-size: 13px; color: var(--text-muted); }
.form-divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* ─── CTA BAND ─── */
.cta-band { text-align: center; }
.cta-band .display { margin-bottom: 18px; }
.cta-band p { max-width: 520px; margin: 0 auto 40px; font-size: 18px; }

/* ─── FOOTER ─── */
footer { background: #07131F; padding: 48px var(--pad-x); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-brand {
  font-family: var(--font-heading); font-size: 13px;
  letter-spacing: .08em; color: rgba(255,255,255,.45);
}
.footer-tagline {
  font-family: var(--font-display); font-size: 15px;
  font-style: italic; color: var(--seafoam); opacity: .65;
}
.footer-nav { display: flex; gap: 24px; list-style: none; }
.footer-nav a {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.38); transition: color .2s;
}
.footer-nav a:hover { color: rgba(255,255,255,.65); }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .cap-strip { grid-template-columns: repeat(3, 1fr); }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .service-block { grid-template-columns: 60px 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .cap-strip { grid-template-columns: 1fr 1fr; }
  .track-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-tagline { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .cap-strip { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 12px; }
  .service-num { font-size: 40px; }
  .intro-stat { grid-template-columns: 1fr; }
}

/* ─── RING MARK — NAV ─── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-ring {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: block;
}
.nav-logo-text { line-height: 1.25; }
.nav-logo-text span {
  display: block; font-weight: 400;
  font-size: 10px; letter-spacing: .18em; opacity: .6;
  font-family: var(--font-body); text-transform: none;
}

/* ─── HERO RING ─── */
.hero { justify-content: flex-start; }

.hero-ring-wrap {
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  height: 800px;
  pointer-events: none;
  z-index: 1;
}
.hero-ring-wrap canvas { width: 100%; height: 100%; display: block; }

.hero-content {
  text-align: left;
  margin-left: clamp(280px, 38vw, 480px);
  max-width: 580px;
  padding-left: 0;
}
.hero-content .hero-eyebrow,
.hero-content .hero-sub { margin-left: 0; }

/* ─── WIRED RING SECTION ─── */
.ring-bg-section {
  position: relative;
  overflow: hidden;
}
.ring-bg-canvas {
  position: absolute;
  pointer-events: none;
}
.ring-bg-canvas.right {
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  opacity: 0.22;
}
.ring-bg-canvas.center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  opacity: 0.14;
}

/* ─── MOBILE ADJUSTMENTS ─── */
@media (max-width: 900px) {
  .hero { justify-content: center; }
  .hero-ring-wrap {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    opacity: 0.35;
  }
  .hero-content {
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }
  .hero-content .hero-sub { margin: 0 auto 48px; }
  .ring-bg-canvas.right,
  .ring-bg-canvas.center { display: none; }
}
@media (max-width: 480px) {
  .hero-ring-wrap { width: 340px; height: 340px; }
}

/* ─── V3 PATCHES ─── */

/* Smooth gradient — no visible seam */
.gradient-bg {
  background: linear-gradient(135deg,
    #0D2137 0%, #0D2B42 12%, #0E3F54 25%,
    #135C72 38%, #1A7A8C 50%,
    #135C72 62%, #0E3F54 75%,
    #0D2B42 88%, #0D2137 100%) !important;
  background-size: 260% 260% !important;
  animation: gradShiftV3 20s ease infinite !important;
}
@keyframes gradShiftV3 {
  0%   { background-position: 100% 0%; }
  50%  { background-position: 0% 100%; }
  100% { background-position: 100% 0%; }
}

/* Service / capability numbers — darker teal */
.cap-num {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 300;
  color: var(--teal) !important;
  line-height: 1; margin-bottom: 12px;
}
.service-num { color: var(--teal) !important; }

/* Shape icon wrapper for service blocks */
.shape-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.shape-icon canvas { display: block; }

/* Service block — icon left of number */
.service-icon-row {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.service-num-sm {
  font-family: var(--font-display); font-size: 28px; font-weight: 300;
  color: var(--teal); line-height: 1;
}

/* Capability strip shape icons */
.cap-shape { width: 42px; height: 42px; margin-bottom: 10px; }

/* Inline SVG network backgrounds */
.svg-bg {
  position: absolute; pointer-events: none; overflow: visible;
}
.svg-bg.right-edge { right: -60px; top: 50%; transform: translateY(-50%); width: 420px; height: 420px; opacity: 0.18; }
.svg-bg.left-fade  { left: -80px; top: 50%; transform: translateY(-50%); width: 480px; height: 480px; opacity: 0.16; }
.svg-bg.center-bg  { left: 50%; top: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; opacity: 0.13; }

/* Button text updates */
.btn-engage { /* same styling as .btn */ }

/* Sidebar LinkedIn */
.sidebar-linkedin {
  background: var(--navy); padding: 32px 28px;
  position: sticky; top: calc(var(--nav-h) + 28px);
  text-align: center;
}
.sidebar-linkedin p { color: rgba(255,255,255,.62); font-size:14px; line-height:1.6; margin-bottom:20px; }
.linkedin-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border: 1.5px solid var(--teal-light);
  color: var(--white); font-size:12px; font-weight:600;
  letter-spacing:.12em; text-transform:uppercase; transition: background .25s;
}
.linkedin-btn:hover { background: var(--teal); color: var(--white); }
.linkedin-icon { width:18px; height:18px; fill: currentColor; }

@media(max-width:768px){
  .svg-bg { display:none; }
}

/* ─── V4 PATCHES ─── */

/* Fix service-block layout — single column, not grid */
.service-block {
  display: block !important;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
  max-width: 820px;
  margin: 0 auto;
}
.service-block:last-child { border-bottom: none; }

/* Ring variant sections */
.ring-showcase {
  background: var(--navy);
  padding: clamp(48px,8vw,96px) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ring-showcase.reverse { direction: rtl; }
.ring-showcase.reverse > * { direction: ltr; }
.ring-canvas-wrap {
  display: flex; align-items: center; justify-content: center;
}
.ring-canvas-wrap canvas {
  width: 100%; max-width: 360px; height: auto;
  display: block;
}
.ring-text-block { color: var(--white); }
.ring-text-block .eyebrow { color: var(--seafoam); }
.ring-text-block h2 { color: var(--white); margin-bottom: 16px; }
.ring-text-block p { color: rgba(255,255,255,.72); }

/* World map section */
.map-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--white);
}
.map-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: start;
}
#world-map {
  width: 100%; border-radius: 4px;
  background: var(--navy);
}

@media (max-width: 900px) {
  .ring-showcase { grid-template-columns: 1fr; gap: 32px; }
  .ring-showcase.reverse { direction: ltr; }
  .map-grid { grid-template-columns: 1fr; }
  #world-map { margin-top: 32px; }
}
