/* ============================================================
   Mynted — hi-fi landing page
   Near-monochrome + navy #00357a accent.
   Newsreader (serif display) + Hanken Grotesk (sans body).
   ============================================================ */

:root {
  --bg:        #F7F8F8;
  --surface:   #FFFFFF;
  --surface-2: #F1F3F3;

  --ink:   #14181B;
  --ink-2: #3D444A;
  --ink-3: #6A7178;
  --muted: #969CA2;

  --line:   #E6E8E7;
  --line-2: #EFF1F0;

  /* accent — overridden by Tweaks (navy default) */
  --accent:       #00357a;
  --accent-press: #00285e;
  --accent-soft:  #E8EEF6;
  --accent-line:  #C5D4E8;
  --on-accent:    #FFFFFF;

  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 10px;

  --shadow-soft: 0 1px 2px rgba(18,26,33,.04), 0 14px 32px -20px rgba(18,26,33,.20);
  --shadow-card: 0 1px 2px rgba(18,26,33,.05), 0 22px 48px -30px rgba(18,26,33,.26);
  --shadow-lift: 0 2px 4px rgba(18,26,33,.05), 0 30px 60px -28px rgba(18,26,33,.30);

  --maxw: 1200px;
  --pad: 40px;

  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

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

/* ---------- type ---------- */
h1, h2, h3 { margin: 0; font-weight: 500; }
.serif { font-family: var(--font-serif); }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.display {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.h-sec {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
}
.accent-text { color: var(--accent); }
.muted { color: var(--ink-3); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border-radius: 999px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s cubic-bezier(.16,1,.3,1), background .18s, box-shadow .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 1px 2px rgba(18,26,33,.10), 0 12px 26px -14px var(--accent);
}
.btn-primary:hover { background: var(--accent-press); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}
.btn-outline:hover { border-color: var(--ink-3); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink-2); padding-left: 8px; padding-right: 8px; }
.btn-ghost:hover { color: var(--accent); }
.btn-ghost .arr { transition: transform .2s; }
.btn-ghost:hover .arr { transform: translateX(3px); }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

.link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--accent-line);
  text-underline-offset: 3px;
}
.link:hover { text-decoration-color: var(--accent); }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.header.scrolled { border-color: var(--line); background: color-mix(in srgb, var(--bg) 90%, transparent); }
.header .row {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 48px; }
.nav { display: flex; gap: 30px; margin: 0 auto; }
.nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1.5px; background: var(--accent); transition: right .25s;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.menu-btn {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface); color: var(--ink);
  align-items: center; justify-content: center; cursor: pointer;
}
.menu-btn svg { width: 20px; height: 20px; }

/* mobile drawer */
.drawer {
  display: none;
  position: fixed; inset: 0; z-index: 60;
}
.drawer.open { display: block; }
.drawer .scrim { position: absolute; inset: 0; background: rgba(18,26,33,.34); }
.drawer .panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(82vw, 340px);
  background: var(--surface); padding: 22px;
  box-shadow: var(--shadow-lift);
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.drawer.open .panel { transform: translateX(0); }
.drawer .panel .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.drawer .panel a { padding: 14px 6px; font-weight: 500; font-size: 18px; border-bottom: 1px solid var(--line-2); }
.drawer .panel .btn { margin-top: 16px; }

/* ---------- sections ---------- */
section { position: relative; }
.sec-pad { padding: 92px 0; }
.sec-head { max-width: 640px; }
.sec-head .eyebrow { margin-bottom: 14px; }
.sec-head .lead { margin-top: 16px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- hero ---------- */
.hero { padding-top: 70px; overflow: hidden; }
.hero .inner { max-width: 880px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.hero .eyebrow { margin-bottom: 22px; }
.hero .display { margin: 0 auto; max-width: 28ch; text-wrap: balance; }
.hero .lead { margin: 24px auto 0; max-width: 820px; text-wrap: balance; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
.hero .trust {
  margin: 22px auto 0; max-width: 540px;
  font-size: 13.5px; color: var(--ink-3); line-height: 1.55;
}

.globe-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 74%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 74%, transparent 100%);
}
.globe-canvas {
  width: min(680px, 96vw);
  height: min(680px, 96vw);
  opacity: 0; transition: opacity .8s ease;
  cursor: grab; touch-action: pan-y;
}

/* ---------- industries / markets strip ---------- */
.strip { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip .inner { padding: 64px 0; }
.strip .intro { font-family: var(--font-serif); font-size: clamp(20px, 2.4vw, 26px); color: var(--ink); max-width: 620px; line-height: 1.35; }
.strip .lists { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 34px; }
.strip .col .label { font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-3); margin-bottom: 16px; }
.tagrow { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-weight: 500; font-size: 15px; color: var(--ink); white-space: nowrap;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px;
}
.strip .col.markets .tag { background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent); }

/* ---------- industries advantages list ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 40px; margin-top: 44px; }
.adv { display: flex; gap: 15px; align-items: flex-start; }
.adv-ic {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.adv-ic svg { width: 15px; height: 15px; }
.adv h3 { font-family: var(--font-sans); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 6px; }
.adv p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

/* ---------- markets ---------- */
.markets-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 46px; }
.market-card { transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s; }
.market-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.market-card .m-ic {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.market-card .m-ic svg { width: 22px; height: 22px; }
.market-card h3 { font-family: var(--font-serif); font-weight: 500; font-size: 23px; letter-spacing: -0.01em; margin-bottom: 9px; }
.market-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

/* ---------- world map ---------- */
.worldmap { position: relative; width: 100%; aspect-ratio: 2 / 1; margin-top: 40px; }
.worldmap-bg {
  width: 100%; height: 100%; object-fit: contain;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  user-select: none; pointer-events: none; opacity: .9;
}
.worldmap-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.worldmap-lines .arc {
  fill: none; stroke: url(#mapgrad); stroke-width: 1.3; stroke-linecap: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: mapDraw 4.6s ease-in-out infinite;
}
@keyframes mapDraw {
  0%   { stroke-dashoffset: 1; }
  35%  { stroke-dashoffset: 0; }
  72%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1; }
}
.worldmap-lines .node { fill: var(--accent); }
.worldmap-lines .node-halo { fill: var(--accent); opacity: .45; }
.worldmap-labels { position: absolute; inset: 0; pointer-events: none; }
.map-label {
  position: absolute; transform: translate(-50%, -150%);
  font-family: var(--font-sans); font-weight: 600; font-size: 12.5px; white-space: nowrap;
  color: var(--accent); background: var(--surface);
  border: 1px solid var(--accent-line); border-radius: 999px;
  padding: 4px 11px; box-shadow: var(--shadow-soft);
}
.map-label::after {
  content: ""; position: absolute; left: 50%; bottom: -5px; transform: translateX(-50%) rotate(45deg);
  width: 7px; height: 7px; background: var(--surface);
  border-right: 1px solid var(--accent-line); border-bottom: 1px solid var(--accent-line);
}
@media (prefers-reduced-motion: reduce) {
  .worldmap-lines .arc { animation: none; stroke-dashoffset: 0; }
}

/* ---------- services ---------- */
.grid { display: grid; gap: 22px; }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid transparent;
  box-shadow: var(--shadow-card);
  padding: 28px;
}
.svc { transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.svc .ic {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.svc .ic svg { width: 24px; height: 24px; }
.svc h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 9px; }
.svc p { font-size: 15px; color: var(--ink-2); line-height: 1.6; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; margin-top: 12px; }
.step { position: relative; z-index: 1; }
.step:not(:last-child)::before {
  content: ""; position: absolute; top: 24px; left: 24px;
  width: calc(100% + 26px); height: 0; z-index: 0;
  border-top: 1.5px dashed var(--accent-line);
}
.step .num {
  position: relative; z-index: 1;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--accent-line);
  color: var(--accent); font-family: var(--font-serif); font-weight: 600; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: var(--shadow-soft);
}
.step .sic { color: var(--ink-3); margin-bottom: 12px; }
.step .sic svg { width: 20px; height: 20px; }
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }

/* ---------- results ---------- */
.results { }
.result-card {
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  padding: clamp(40px, 6vw, 76px);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.result-card .eyebrow { color: #9fb6d8; margin-bottom: 26px; }
.result-card .stat {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(34px, 5vw, 58px); line-height: 1.05; letter-spacing: -0.02em;
  max-width: 16ch; margin: 0 auto;
}
.result-card .stat em { font-style: italic; color: #8fb0e0; }
.result-card .support { margin: 26px auto 0; max-width: 580px; color: #C4CBD2; font-size: 16.5px; line-height: 1.6; }
.result-card .halo {
  position: absolute; left: 50%; bottom: -55%; transform: translateX(-50%);
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 55%, transparent) 0%, transparent 62%);
  opacity: .5; pointer-events: none;
}

/* ---------- booking ---------- */
.book-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 28px; align-items: start; }
.book-left { padding: 32px; }
.host { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--surface-2); border: 1px dashed var(--accent-line);
  display: flex; align-items: center; justify-content: center; color: var(--ink-3);
  flex: 0 0 auto;
}
.avatar svg { width: 24px; height: 24px; }
.host .who { font-weight: 600; font-size: 16px; }
.host .ph-note { font-size: 12.5px; color: var(--muted); }
.book-left h3 { font-family: var(--font-serif); font-size: 26px; font-weight: 500; margin-bottom: 14px; }
.dur {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-weight: 600; font-size: 13px; color: var(--accent);
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  border-radius: 999px; padding: 6px 13px;
}
.dur svg { width: 14px; height: 14px; }
.book-left .blurb { margin-top: 18px; color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }
.book-left .price {
  margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-2);
  color: var(--ink-3); font-size: 14.5px; line-height: 1.6;
}

.book-right { padding: 30px; min-height: 380px; display: flex; flex-direction: column; }
.gate-q { font-family: var(--font-serif); font-size: 22px; font-weight: 500; margin-bottom: 6px; }
.gate-sub { color: var(--ink-3); font-size: 14px; margin-bottom: 22px; }
.budget-opts { display: flex; flex-direction: column; gap: 12px; }
.budget-opt {
  font-family: var(--font-sans); font-weight: 600; font-size: 16px; text-align: left;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 16px 18px; color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color .18s, background .18s, transform .12s;
}
.budget-opt .chev { color: var(--muted); transition: transform .18s; }
.budget-opt:hover { border-color: var(--accent); background: var(--accent-soft); }
.budget-opt:hover .chev { transform: translateX(3px); color: var(--accent); }
.budget-opt.sel { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); }

/* gate reveal panels */
.gate-result { margin-top: 6px; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 13px; color: var(--ink-3); cursor: pointer; margin-bottom: 16px;
}
.back-link:hover { color: var(--accent); }
.back-link svg { width: 14px; height: 14px; }
.sched-embed {
  border: 1.5px dashed var(--accent-line); border-radius: var(--r-md);
  background: repeating-linear-gradient(135deg, var(--surface-2) 0 12px, var(--surface) 12px 24px);
  min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 24px; color: var(--ink-3);
}
.sched-embed .cal { width: 46px; height: 46px; color: var(--accent); }
.sched-embed .lbl { font-weight: 600; font-size: 13px; letter-spacing: .02em; max-width: 280px; line-height: 1.5; }
.sched-embed .qual { font-size: 12.5px; color: var(--muted); }

/* TidyCal embed (direct iframe) */
.tidycal-frame {
  width: 100%; min-height: 640px; border: 0;
  border-radius: var(--r-md); background: var(--surface-2);
  display: block;
}

.email-cap h4 { font-family: var(--font-serif); font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.email-cap p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; margin-bottom: 18px; }
.field {
  width: 100%; height: 50px; border: 1.5px solid var(--line); border-radius: var(--r-md);
  background: var(--surface); padding: 0 16px; font-family: var(--font-sans); font-size: 15px; color: var(--ink);
  margin-bottom: 12px; outline: none; transition: border-color .18s, box-shadow .18s;
}
.field::placeholder { color: var(--muted); }
.field:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

/* ---------- faq ---------- */
.faq-wrap { max-width: 820px; }
.faq {
  border-bottom: 1px solid var(--line);
}
.faq:first-child { border-top: 1px solid var(--line); }
.faq .q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; text-align: left;
  font-family: var(--font-sans); font-weight: 600; font-size: 18px; color: var(--ink);
}
.faq .q .ic {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); transition: transform .25s, background .25s, color .25s, border-color .25s;
}
.faq .q .ic svg { width: 16px; height: 16px; }
.faq[open] .q .ic, .faq.open .q .ic { background: var(--accent); color: #fff; border-color: var(--accent); transform: rotate(180deg); }
.faq .a {
  overflow: hidden; max-height: 0; transition: max-height .3s ease;
}
.faq .a .inner { padding: 0 4px 26px; color: var(--ink-2); font-size: 16px; line-height: 1.65; max-width: 680px; }

/* ---------- footer ---------- */
.footer { background: var(--surface); border-top: 1px solid var(--line); }
.foot-cta { padding: 78px 0; text-align: center; border-bottom: 1px solid var(--line-2); }
.foot-cta h2 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 42px); font-weight: 500; margin-bottom: 26px; letter-spacing: -0.015em; }
.foot-bot { padding: 40px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.foot-bot .brand img { height: 46px; margin-bottom: 12px; }
.foot-bot .desc { color: var(--ink-3); font-size: 14.5px; }
.foot-links { display: flex; gap: 30px; }
.foot-links .col .h { font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 10px; }
.foot-links .col a, .foot-links .col span { display: block; color: var(--ink-2); font-size: 14.5px; padding: 3px 0; }
.foot-links .col a:hover { color: var(--accent); }
.copyright { padding: 22px 0 40px; color: var(--muted); font-size: 13px; }

/* ---------- card style tweak ---------- */
[data-card="outline"] .card { box-shadow: none; border-color: var(--line); }
[data-card="outline"] .svc:hover { box-shadow: var(--shadow-soft); }
[data-card="sharp"] { --r-lg: 6px; --r-md: 8px; }
[data-card="sharp"] .card { box-shadow: none; border-color: var(--line); border-radius: 6px; }
[data-card="sharp"] .btn { border-radius: 8px; }
[data-card="sharp"] .tag, [data-card="sharp"] .dur, [data-card="sharp"] .budget-opt { border-radius: 8px; }
[data-card="sharp"] .result-card { border-radius: 10px; }

/* ---------- reveal ---------- */
/* opacity flips instantly (stays visible even where transitions are paused);
   only the translate is animated, giving a clean slide-up. */
.reveal { opacity: 0; transform: translateY(18px); transition: transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav, .header-cta .btn { display: none; }
  .menu-btn { display: flex; }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .steps::before, .step::before { display: none; }
  .book-grid { grid-template-columns: 1fr; }
  .strip .lists { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  :root { --pad: 22px; }
  .sec-pad { padding: 64px 0; }
  .g4 { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps { grid-template-columns: 1fr; }
  .foot-bot { flex-direction: column; }
  .hero { padding-top: 36px; }
  .hero .display { max-width: 100%; }
  .hero .cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero .cta-row .btn { width: 100%; justify-content: center; }
  .globe-wrap { height: 230px; }
  .map-label { font-size: 11px; padding: 3px 8px; }
  .foot-cta { padding: 56px 0; }
  .header .row { height: 64px; }
  .brand img { height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .globe-canvas { opacity: 1 !important; }
}
