:root {
  /* brand */
  --blue: #06a5e1;
  --cyan: #14aac3;
  --green: #40b965;
  --teal: #0e8377;
  --teal-deep: #0b6b64;
  --mint: #22c7a9;

  /* ink */
  --ink: #16324a;
  --ink-soft: #33475b;
  --muted: #647688;

  /* surface */
  --bg-top: #f4fafb;
  --bg-bot: #ffffff;
  --line: rgba(14, 131, 119, 0.16);
  --line-soft: rgba(14, 131, 119, 0.1);
  --glass: rgba(255, 255, 255, 0.74);
  --card: #ffffff;

  --grad: linear-gradient(115deg, #0aa4de 0%, #14aac3 48%, #40b965 100%);
  --shadow-sm: 0 10px 30px -14px rgba(20, 80, 90, 0.28);
  --shadow-md: 0 26px 60px -28px rgba(20, 80, 90, 0.36);
  --shadow-lg: 0 40px 90px -40px rgba(16, 70, 82, 0.4);

  --radius: 20px;
  --radius-sm: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Sora", var(--font-body);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  /* logo gradient as a whisper-soft aurora: blue (top-right) → teal (centre) → green (bottom-left) */
  background:
    radial-gradient(58% 46% at 88% 6%, rgba(6, 165, 225, 0.1), transparent 62%),
    radial-gradient(52% 42% at 50% 42%, rgba(20, 170, 195, 0.055), transparent 68%),
    radial-gradient(62% 52% at 5% 97%, rgba(64, 185, 101, 0.11), transparent 62%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bot) 72%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.svg-hidden {
  display: none;
}

/* ---------------- top bar ---------------- */
.topbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 1.6vw, 1.4rem);
  padding: 1.6rem clamp(1.25rem, 3.4vw, 3.4rem);
}

.brand {
  display: block;
  height: 2.9rem;
}

.brand img {
  height: 100%;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.8rem);
  margin-left: auto;
  margin-right: clamp(1.2rem, 2.6vw, 2.8rem);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--teal-deep);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding: 0 1.6rem;
  line-height: 1;
  border-radius: 999px;
  background: var(--grad);
  background-size: 160% 160%;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px -12px rgba(20, 170, 150, 0.7);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-position 0.5s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 20px 40px -14px rgba(20, 170, 150, 0.8);
}

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(13rem, 15.5rem);
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  min-height: min(100svh, 1000px);
  padding: clamp(6.5rem, 8vw, 8.5rem) clamp(1.25rem, 3.4vw, 3.4rem) clamp(3rem, 5vw, 5rem);
}

/* topic-matched background scenes */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* left scrim so copy stays legible while the scene reads on the right */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(246, 251, 252, 0.95) 0%,
    rgba(246, 251, 252, 0.72) 22%,
    rgba(246, 251, 252, 0.18) 42%,
    rgba(246, 251, 252, 0) 56%
  );
  pointer-events: none;
}

.hero-bg__layer {
  position: absolute;
  inset: -2% -2% 0 -2%;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transform-origin: center 78%;
  will-change: opacity, transform;
}

/* left copy */
.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 38rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow em {
  font-style: normal;
  color: var(--mint);
}

h1 {
  color: var(--teal-deep); /* fallback — visible if text-clip is unsupported */
  font-size: clamp(2.5rem, 4vw, 4.7rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}

h1 .line > span {
  display: block;
  white-space: nowrap;
  /* logo-ring gradient clipped into the text */
  background: linear-gradient(128deg, #06a5e1 0%, #14aac3 25%, #40b965 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: headlineSheen 9s ease-in-out infinite;
}

@keyframes headlineSheen {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.lede {
  margin: 1.5rem 0 0;
  max-width: 27rem;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.15vw, 1.2rem);
  line-height: 1.55;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 1.9rem;
  margin: 2.1rem 0;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.stat svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--teal);
  flex: none;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
}

.stat span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: 3.4rem;
  padding: 0 1.7rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-position 0.5s var(--ease), border-color 0.3s var(--ease);
}

.btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.btn-primary {
  color: #fff;
  background: var(--grad);
  background-size: 160% 160%;
  box-shadow: 0 18px 36px -14px rgba(20, 170, 150, 0.75);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 24px 46px -16px rgba(20, 170, 150, 0.85);
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-primary svg {
  transition: transform 0.3s var(--ease);
}

.btn-ghost {
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
}

.btn-ghost svg {
  color: var(--teal);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}

.rotate-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 2.4rem 0 0;
}

.rotate-hint__icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--teal);
  background: rgba(255, 255, 255, 0.6);
}

.rotate-hint__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.rotate-hint__text {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.5;
}

.rotate-hint__text span {
  color: var(--muted);
}

.rotate-hint__text strong {
  display: block;
  color: var(--teal-deep);
  font-family: var(--font-display);
}

/* globe — large background layer */
.globe-stage {
  position: absolute;
  top: 52%;
  left: 44rem;
  transform: translateY(-50%);
  width: min(69vw, 60rem);
  aspect-ratio: 1;
  z-index: 1;
  pointer-events: none;
  transition:
    transform 1s var(--ease),
    top 1s var(--ease),
    left 1s var(--ease),
    width 1s var(--ease),
    height 1s var(--ease);
}

/* menu-open: globe becomes huge (viewport-sized) and shifts right, bleeding off every edge */
body.menu-open .globe-stage {
  position: fixed;
  top: 50%;
  left: 40vw;
  width: min(155vh, 95vw);
  height: min(155vh, 95vw);
  transform: translateY(-50%);
  z-index: 45;
}

/* hide the globe's own UI (Smart Cities card, orbit, hints, sector list) while the menu is open */
body.menu-open .active-sector,
body.menu-open .sector-panel,
body.menu-open .orbit,
body.menu-open .rotate-hint,
body.menu-open .rotate-tag,
body.menu-open .drag-tag {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

#globe-canvas,
.active-sector {
  pointer-events: auto;
}

.globe-stage::after {
  /* soft ground shadow under globe */
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 62%;
  height: 8%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(16, 70, 82, 0.22), transparent 75%);
  filter: blur(6px);
  z-index: -1;
}

/* inward white glow around the globe rim — blends the edge into the light background (reference look) */
.globe-stage::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 83%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow:
    inset 0 0 120px 28px rgba(255, 255, 255, 0.45),
    inset 0 0 55px 8px rgba(255, 255, 255, 0.6),
    0 0 80px 12px rgba(255, 255, 255, 0.45);
  z-index: 2;
  pointer-events: none;
}

#globe-canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
}

#globe-canvas:active {
  cursor: grabbing;
}

.orbit {
  position: absolute;
  inset: 3%;
  border-radius: 50%;
  border: 1px dashed rgba(14, 131, 119, 0.38);
  pointer-events: none;
  animation: orbit-spin 60s linear infinite;
}

.orbit-dot {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(34, 199, 169, 0.2);
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.rotate-tag,
.drag-tag {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 6;
  white-space: nowrap;
}

.rotate-tag {
  top: 9%;
}

.drag-tag {
  bottom: 7%;
}

.rotate-tag svg,
.drag-tag svg {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--teal);
}

/* active sector card */
.active-sector {
  position: absolute;
  top: 50%;
  left: 18%;
  transform: translateY(-50%);
  width: 15rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  z-index: 8;
}

.active-sector::after {
  /* connector line to globe */
  content: "";
  position: absolute;
  top: 50%;
  right: -3.4rem;
  width: 3.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.active-sector::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -3.6rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  transform: translateY(-50%);
}

.active-sector__kicker {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.active-sector strong {
  display: block;
  margin: 0.7rem 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.active-sector__rule {
  display: block;
  width: 2.2rem;
  height: 3px;
  border-radius: 3px;
  background: var(--grad);
  margin-bottom: 0.9rem;
}

.active-sector p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.active-sector__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap 0.3s var(--ease);
}

.active-sector__link svg {
  width: 1rem;
  height: 1rem;
}

.active-sector__link:hover {
  gap: 0.8rem;
}

/* sector panel */
.sector-panel {
  position: relative;
  z-index: 9;
  justify-self: end;
  align-self: center;
  width: 100%;
  max-width: 15.5rem;
  padding: 0.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.sector-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink-soft);
  text-align: left;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.sector-button svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: none;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.sector-button span {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sector-button:hover {
  background: rgba(34, 199, 169, 0.1);
  color: var(--teal-deep);
}

.sector-button:hover svg {
  color: var(--teal);
}

.sector-button.active {
  background: linear-gradient(120deg, rgba(20, 170, 195, 0.16), rgba(64, 185, 101, 0.16));
  color: var(--teal-deep);
}

.sector-button.active svg {
  color: var(--teal);
}

/* ---------------- sections shared ---------------- */
.section {
  margin: 0 auto;
  max-width: 1475px;
}

.section-kicker {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.06;
}

/* countdown */
.countdown-band {
  position: relative;
  z-index: 5;
  margin: clamp(1rem, 3vw, 2.5rem) auto;
  max-width: 1475px;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3.4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.countdown div {
  min-width: 5rem;
  text-align: center;
}

.countdown strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
  color: var(--teal-deep);
  font-variant-numeric: tabular-nums;
}

.countdown span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.countdown__sep {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  padding-top: 0.1em;
}

.countdown-band > p {
  color: var(--muted);
  font-weight: 500;
  max-width: 18rem;
}

/* partners */
.partners-section {
  margin: 0 auto;
  max-width: 1550px;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 3.4vw, 3.4rem) clamp(2rem, 4vw, 3rem);
}

.section-heading {
  max-width: 46rem;
}

.section-heading.compact {
  max-width: 40rem;
}

.section-heading h2 {
  margin-top: 0;
}

.section-heading p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 36rem;
}

.partner-marquee {
  position: relative;
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  overflow: hidden;
  /* full-bleed: break out of the section to the full viewport width */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  /* fade to fully transparent at both screen edges so logos glide in/out */
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.partner-track {
  display: flex;
  flex: none;
  gap: 1rem;
  min-width: max-content;
  padding-right: 1rem;
  animation: marquee 40s linear infinite;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-logo {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(10rem, 13vw, 13rem);
  height: 6rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.partner-logo img {
  max-height: 3.3rem;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

/* about */
.content-grid {
  margin: 0 auto;
  max-width: 1475px;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 3.4vw, 3.4rem);
  display: grid;
  grid-template-columns: minmax(15rem, 0.85fr) minmax(20rem, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.content-grid > div > p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 1rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.check-list svg {
  flex: none;
  width: 1.3rem;
  height: 1.3rem;
  padding: 0.25rem;
  border-radius: 999px;
  color: #fff;
  background: var(--grad);
}

/* video */
.video-section {
  margin: 0 auto;
  max-width: 1475px;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 3.4vw, 3.4rem);
}

.video-frame {
  /* full-bleed: break out of the section's max-width to the full viewport width */
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-top: 2.5rem;
  aspect-ratio: 16 / 9;
  max-height: 90vh;
  overflow: hidden;
  border: 0;
  background: #08313a;
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: #08313a;
}

/* ================= media & coverage ================= */
.media-section {
  margin: 0 auto;
  max-width: 1475px;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 3.4vw, 3.4rem);
}

/* featured press cards (with imagery) */
.media-featured {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.press-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.press-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-deep);
}
.press-card__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(14, 131, 119, 0.08);
}
.press-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.press-card:hover .press-card__thumb img { transform: scale(1.06); }
.press-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: clamp(1.25rem, 2vw, 1.6rem);
  flex: 1;
}
.press-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.press-card__meta em { color: var(--muted); font-style: normal; opacity: 0.7; }
.press-card__meta i { width: 15px; height: 15px; }
.press-card__title {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.36;
  font-weight: 600;
  color: var(--ink);
}
.press-card__cta {
  margin-top: auto;
  padding-top: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s var(--ease), gap 0.25s var(--ease);
}
.press-card:hover .press-card__cta { color: var(--teal-deep); gap: 0.6rem; }
.press-card__cta i { width: 15px; height: 15px; }

/* subhead with hairline rule */
.media-subhead {
  margin: clamp(2.5rem, 4vw, 3.5rem) 0 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}
.media-subhead::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-soft);
}

/* compact partner mentions (no imagery) */
.mention-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 0.9rem;
}
.mention {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.05rem;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.mention:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--teal-deep); }
.mention__mark {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg, #0e8377 0%, #0a5563 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mention__mark i { width: 20px; height: 20px; }
.mention__text { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.mention__text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mention__text span {
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mention__arrow { flex: none; width: 16px; height: 16px; color: var(--muted); margin-left: auto; transition: color 0.25s var(--ease); }
.mention:hover .mention__arrow { color: var(--teal-deep); }

@media (max-width: 720px) {
  .media-featured { grid-template-columns: 1fr; }
}

/* gain */
.gain-section {
  margin: 0 auto;
  max-width: 1475px;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 3.4vw, 3.4rem);
}

.gain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.gain-grid article {
  padding: 1.6rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.gain-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}

.gain-grid svg {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--teal);
  padding: 0.6rem;
  border-radius: 12px;
  background: rgba(34, 199, 169, 0.12);
  box-sizing: content-box;
}

.gain-grid h3 {
  margin: 1.1rem 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}

.gain-grid p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* quote */
.quote-section {
  position: relative;
  margin: 0 auto;
  max-width: 1120px;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 3.4vw, 3.4rem);
  text-align: center;
}

.quote-mark {
  width: 3rem;
  height: 3rem;
  color: var(--mint);
  opacity: 0.5;
  margin-bottom: 1rem;
}

blockquote {
  margin: 0 auto;
  max-width: 800px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  font-weight: 600;
  line-height: 1.28;
  color: var(--teal-deep);
  letter-spacing: -0.01em;
}

.quote-cite {
  margin-top: 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}

.quote-cite span {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--muted);
  font-size: 0.92rem;
}

/* footer */
.footer {
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  max-width: 1475px;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 3.4vw, 3.4rem) clamp(3rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  border-top: 1px solid var(--line-soft);
}

.footer h2 {
  margin-top: 0.6rem;
}

address {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-style: normal;
  color: var(--muted);
  max-width: 30rem;
}

address a,
address span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

address a {
  color: var(--ink-soft);
  font-weight: 500;
  transition: color 0.25s var(--ease);
}

address a:hover {
  color: var(--teal-deep);
}

address svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--teal);
  flex: none;
}

/* ---------------- reveal ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

/* ---------------- burger + full-screen menu ---------------- */
.burger {
  position: relative;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: 0.35rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 61;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.burger:hover {
  background: #fff;
  border-color: rgba(14, 131, 119, 0.3);
  box-shadow: var(--shadow-sm);
}

.burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.42s var(--ease), opacity 0.28s var(--ease),
    background 0.3s var(--ease);
}

.burger span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}
.burger span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

body.menu-open .burger span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
body.menu-open .burger span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.4);
}
body.menu-open .burger span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

/* raise the top bar (logo + burger) above the overlay; hide the inline nav */
body.menu-open .topbar {
  z-index: 60;
}
body.menu-open .nav-links,
body.menu-open .nav-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

/* backdrop */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background:
    radial-gradient(90% 70% at 50% 125%, rgba(20, 170, 195, 0.18), transparent 62%),
    radial-gradient(70% 50% at 12% 0%, rgba(64, 185, 101, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(240, 248, 250, 0.82), rgba(226, 240, 244, 0.9));
  backdrop-filter: blur(16px) saturate(1.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
}

/* menu panel — right */
.menu-panel {
  position: fixed;
  top: 50%;
  right: clamp(1.5rem, 4vw, 4rem);
  transform: translateY(-50%);
  z-index: 50;
  width: min(30rem, 44vw);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

body.menu-open .menu-panel {
  opacity: 1;
  visibility: visible;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(0.35rem, 1vw, 0.75rem);
  text-align: right;
}

.menu-list li {
  width: 100%;
}

.menu-list a {
  white-space: nowrap;
}

.menu-list a {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3.6vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: #fff;
  text-shadow: 0 2px 22px rgba(9, 44, 54, 0.45);
  transition: transform 0.42s var(--ease), color 0.3s var(--ease);
}

.menu-list .menu-num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.6);
  transform: translateY(-0.2em);
}

.menu-list a:hover {
  transform: translateX(-10px);
  color: transparent;
  text-shadow: none;
  background: linear-gradient(115deg, #06a5e1, #14aac3 48%, #40b965);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* faq panel — left, with converging connectors */
.faq-panel {
  position: fixed;
  top: 50%;
  left: clamp(1.5rem, 5vw, 5.5rem);
  transform: translateY(-50%);
  z-index: 50;
  width: min(28rem, 40vw);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

body.menu-open .faq-panel {
  opacity: 1;
  visibility: visible;
}

.faq-eyebrow {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.faq-list li {
  position: relative;
}

.faq-q {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.62rem 3.6rem 0.62rem 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.98rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}

.faq-q:hover,
.faq-q[aria-expanded="true"] {
  color: var(--teal-deep);
}

.faq-q:focus {
  outline: none;
}

.faq-q:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 6px;
}

/* node on the trunk, anchored to the question row so it stays put when answers open */
.faq-q::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translate(50%, -50%);
  box-shadow: 0 0 0 4px rgba(20, 170, 195, 0.14);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.faq-q[aria-expanded="true"]::after {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(64, 185, 101, 0.2);
}

/* horizontal stub from label to trunk */
.faq-q::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 2.1rem;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(20, 170, 195, 0), var(--cyan));
}

/* collapsible answer (grid 0fr → 1fr for smooth height) */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.faq-q[aria-expanded="true"] + .faq-a {
  grid-template-rows: 1fr;
}

.faq-a__inner {
  overflow: hidden;
}

.faq-a p {
  margin: 0;
  padding: 0.15rem 3.6rem 0.6rem 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

/* vertical trunk linking all nodes */
.faq-list::after {
  content: "";
  position: absolute;
  right: 0;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 2px;
  transform: translateX(50%);
  background: linear-gradient(180deg, var(--blue), var(--cyan) 50%, var(--green));
  border-radius: 2px;
}

/* output line from the trunk toward the globe, ending in a hub node */
.faq-out {
  position: absolute;
  top: 50%;
  right: 0;
  height: 2px;
  width: 0;
  transform: translate(100%, -50%);
  background: linear-gradient(90deg, var(--cyan), rgba(20, 170, 195, 0.15));
  transition: width 0.75s var(--ease) 0.45s;
}

body.menu-open .faq-out {
  width: clamp(6rem, 16vw, 15rem);
}

.faq-out::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--cyan));
  transform: translate(50%, -50%);
  box-shadow: 0 0 0 5px rgba(20, 170, 195, 0.16), 0 0 22px rgba(20, 170, 195, 0.5);
}

/* ---------------- responsive ---------------- */
@media (max-width: 1400px) {
  .hero {
    grid-template-columns: minmax(16rem, 1fr) minmax(20rem, 1.1fr);
    grid-template-areas:
      "copy globe"
      "panel panel";
    row-gap: 1.5rem;
    align-items: center;
  }

  .hero-copy {
    grid-area: copy;
  }

  .globe-stage {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    grid-area: globe;
    justify-self: center;
    align-self: center;
    width: min(100%, 34rem);
    z-index: 4;
    pointer-events: auto;
  }

  .active-sector {
    left: -1rem;
    width: 13rem;
  }

  .sector-panel {
    grid-area: panel;
    justify-self: stretch;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
  }
}

@media (max-width: 860px) {
  .topbar {
    padding: 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .brand {
    height: 2.4rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    min-height: auto;
    padding-top: 6rem;
    gap: 2.5rem;
  }

  .hero-copy {
    max-width: none;
  }

  .globe-stage {
    width: min(100%, 26rem);
    margin: 0 auto;
  }

  .rotate-tag,
  .drag-tag {
    display: none;
  }

  .active-sector {
    left: 0;
    top: auto;
    bottom: -1.5rem;
    transform: none;
    width: 14rem;
    background: #fff;
  }

  .active-sector::before,
  .active-sector::after {
    display: none;
  }

  .sector-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem;
  }
  .sector-button {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.6rem 0.5rem;
    min-height: 4.6rem;
    overflow: hidden;
  }
  .sector-button span {
    font-size: 0.6rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }
  .sector-button > svg { margin-right: 1.2rem; }
  .sector-count {
    position: absolute;
    top: 0.35rem;
    right: 0.4rem;
    margin-left: 0;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .gain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .countdown-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .nav-cta {
    padding: 0.7rem 1.1rem;
  }

  .stat-row {
    gap: 1.2rem 1.6rem;
  }

  .btn {
    flex: 1 1 auto;
  }

  .countdown div {
    min-width: 3.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .partner-marquee {
    mask-image: none;
    overflow-x: auto;
  }
}

/* ---------------- registration: sector counts + modal ---------------- */
.sector-count {
  margin-left: auto;
  min-width: 1.5rem;
  padding: 0.1rem 0.42rem;
  border-radius: 999px;
  background: rgba(14, 131, 119, 0.1);
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  font-variant-numeric: tabular-nums;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.sector-button.active .sector-count {
  background: rgba(255, 255, 255, 0.7);
}

.sector-count.bump {
  transform: scale(1.35);
  background: var(--grad);
  color: #fff;
}

.reg-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.reg-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.reg-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 40, 46, 0.42);
  backdrop-filter: blur(8px);
}

.reg-modal__card {
  position: relative;
  width: min(100%, 34rem);
  max-height: calc(100dvh - 2.5rem);
  overflow-y: auto;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}

.reg-modal.is-open .reg-modal__card {
  transform: none;
  opacity: 1;
}

.reg-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.reg-modal__close:hover {
  background: #f3f8f9;
  transform: rotate(90deg);
}

.reg-modal__close svg {
  width: 1.15rem;
  height: 1.15rem;
}

.reg-modal__kicker {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reg-modal__card h2 {
  margin: 0.6rem 0 0.5rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.reg-modal__lede {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.reg-form {
  display: grid;
  gap: 0.95rem;
}

.reg-form label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.reg-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

.reg-form input:not([type="checkbox"]),
.reg-form select {
  width: 100%;
  height: 3.1rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7fbfc;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.reg-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230e8377' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}

.reg-form input:not([type="checkbox"]):focus,
.reg-form select:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 170, 195, 0.14);
}

.reg-form input::placeholder {
  color: #9fb0bb;
}

.reg-form__submit {
  margin-top: 0.4rem;
  width: 100%;
  height: 3.4rem;
}

.reg-form__note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.reg-form__note svg {
  width: 0.95rem;
  height: 0.95rem;
  flex: none;
  color: var(--teal);
}

.reg-modal__success {
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
}

.reg-success__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--grad);
  box-shadow: 0 16px 34px -14px rgba(20, 170, 150, 0.8);
}

.reg-success__icon svg {
  width: 1.9rem;
  height: 1.9rem;
}

.reg-modal__success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.reg-modal__success p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

@media (max-width: 520px) {
  .reg-form__row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reg-modal,
  .reg-modal__card,
  .reg-modal__close,
  .sector-count {
    transition: none;
  }
}

/* ---------------- agenda + speakers (Google Sheet synced) ---------------- */
.agenda-section,
.speakers-section {
  margin: 0 auto;
  max-width: 1475px;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 3.4vw, 3.4rem);
}

.content-state {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 1.5rem 0;
}

.agenda {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem;
}

.agenda-day__label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.agenda-day__label::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--grad);
}

.agenda-row {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line-soft);
  align-items: start;
}

.agenda-row:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.agenda-row__time {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal-deep);
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
  padding-top: 0.1rem;
}

.agenda-row__title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.agenda-row__meta {
  margin-top: 0.35rem;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
}

.agenda-row__meta span {
  color: var(--muted);
  font-weight: 500;
}

.agenda-row__desc {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 46rem;
}

.agenda-row__desc a {
  color: var(--teal-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 131, 119, 0.3);
  transition: border-color 0.2s ease;
}
.agenda-row__desc a:hover { border-bottom-color: var(--teal-deep); }

.agenda-row__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.6rem;
  margin-right: 0.6rem;
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap 0.2s ease, opacity 0.2s ease;
}
.agenda-row__link i { width: 0.9rem; height: 0.9rem; }
.agenda-row__link:hover { gap: 0.5rem; opacity: 0.85; }

.agenda-row__track {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(14, 131, 119, 0.09);
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speakers-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1.1rem;
}

.speaker-card {
  padding: 1.3rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.speaker-card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}

.speaker-card__photo {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  object-fit: cover;
  background: linear-gradient(135deg, #dfeef0, #eff7f7);
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
}

.speaker-card__name {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.speaker-card__role {
  margin-top: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.speaker-card__org {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.speaker-card__foot {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.speaker-card__sector {
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: rgba(20, 170, 195, 0.1);
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.speaker-card__li {
  margin-left: auto;
  color: var(--muted);
  display: inline-grid;
  place-items: center;
  transition: color 0.25s var(--ease);
}

.speaker-card__li:hover {
  color: var(--teal-deep);
}

.speaker-card__li svg {
  width: 1.15rem;
  height: 1.15rem;
}

@media (max-width: 640px) {
  .agenda-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

/* ---------------- agenda v2: track icons, distinct breaks, dated days ---------------- */
.agenda { gap: 3.25rem; }

.agenda-day__head {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--line);
}
.agenda-day__label { margin: 0; }
.agenda-day__date {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.agenda-row {
  grid-template-columns: 6.2rem 2.4rem 1fr;
  gap: 0.4rem 1.1rem;
  align-items: start;
}
.agenda-row__time { padding-top: 0.55rem; }
.agenda-row__icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(14, 131, 119, 0.08);
  color: var(--teal);
  margin-top: 0.3rem;
}
.agenda-row__icon svg { width: 1.15rem; height: 1.15rem; }

.agenda-row.is-break {
  padding: 0.6rem 0;
  align-items: center;
}
.agenda-row.is-break .agenda-row__time { padding-top: 0; }
.agenda-row.is-break .agenda-row__icon {
  background: transparent;
  color: var(--muted);
  margin-top: 0;
  width: 2.4rem;
  height: auto;
}
.agenda-row.is-break .agenda-row__title {
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--muted);
  padding-top: 0;
}
.agenda-row.is-break .agenda-row__time { color: var(--muted); }

/* speaker "to be announced" placeholder */
.speaker-card.is-tba {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.45);
}
.speaker-card__photo.is-tba {
  color: var(--muted);
  background: linear-gradient(135deg, #eef4f5, #f7fbfb);
}
.speaker-card__photo.is-tba svg { width: 1.8rem; height: 1.8rem; }
.speaker-card.is-tba .speaker-card__name { color: var(--muted); }

@media (max-width: 640px) {
  .agenda-row {
    grid-template-columns: 2.4rem 1fr;
    column-gap: 0.9rem;
  }
  .agenda-row__time {
    grid-column: 1 / -1;
    padding-top: 0;
  }
}

/* ---------------- dark section (Programme + Footer) ---------------- */
.section-dark {
  position: relative;
  isolation: isolate;
  color: #fff;
}
.section-dark::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(20, 170, 195, 0.35), transparent 60%),
    linear-gradient(158deg, #0b3947 0%, #0c5261 52%, #0a3f4d 100%);
}
/* in dark theme the dark sections take the navy palette so they blend with the page */
:root[data-theme="dark"] .section-dark::before {
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(6, 165, 225, 0.22), transparent 60%),
    linear-gradient(158deg, #060a2d 0%, #0a1240 52%, #05081e 100%);
}
.section-dark h2 { color: #fff; }
.section-dark .section-kicker { color: var(--mint); }
.section-dark .section-heading p { color: rgba(255, 255, 255, 0.68); }

.agenda-section.section-dark {
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

/* day switcher tabs */
.agenda-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 2.2rem 0 2rem;
}
.agenda-tab {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.6rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  text-align: left;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.agenda-tab:hover { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.agenda-tab.is-active {
  background: #fff;
  color: var(--teal-deep);
  border-color: transparent;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.5);
}
.agenda-tab__day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.agenda-tab__date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.agenda { margin-top: 0; display: block; }
.agenda-day { display: none; }
.agenda-day.is-active { display: block; }

/* dark agenda rows */
.section-dark .agenda-row { border-top-color: rgba(255, 255, 255, 0.13); }
.section-dark .agenda-row:last-child { border-bottom-color: rgba(255, 255, 255, 0.13); }
.section-dark .agenda-row__time { color: var(--mint); }
.section-dark .agenda-row__title { color: #fff; }
.section-dark .agenda-row__meta { color: #6fe3cf; }
.section-dark .agenda-row__meta span { color: rgba(255, 255, 255, 0.6); }
.section-dark .agenda-row__desc { color: rgba(255, 255, 255, 0.62); }
.section-dark .agenda-row__desc a { color: var(--mint); border-bottom-color: rgba(111, 227, 207, 0.35); }
.section-dark .agenda-row__desc a:hover { border-bottom-color: var(--mint); }
.section-dark .agenda-row__link { color: var(--mint); }
.section-dark .agenda-row__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--mint);
}
.section-dark .agenda-row__track {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}
.section-dark .agenda-row.is-break .agenda-row__title,
.section-dark .agenda-row.is-break .agenda-row__time { color: rgba(255, 255, 255, 0.55); }
.section-dark .agenda-row.is-break .agenda-row__icon { color: rgba(255, 255, 255, 0.5); background: transparent; }

/* speaker faces inside agenda */
.agenda-row__face {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  object-fit: cover;
  margin-top: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
}
.agenda-row__face.is-initials {
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
}

/* countdown location link */
.countdown__location {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 20rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.25s var(--ease);
}
.countdown__location:hover { color: var(--teal-deep); }
.countdown__location svg { width: 1.15rem; height: 1.15rem; color: var(--teal); flex: none; }

/* bigger speaker cards */
.speakers-grid {
  grid-template-columns: repeat(auto-fill, minmax(18.5rem, 1fr));
  gap: 1.4rem;
}
.speaker-card { padding: 1.7rem; }
.speaker-card__photo { width: 6rem; height: 6rem; font-size: 1.7rem; }
.speaker-card__name { font-size: 1.2rem; margin-top: 1.25rem; }
.speaker-card__role { font-size: 0.98rem; margin-top: 0.4rem; }
.speaker-card__org { font-size: 0.92rem; }

/* dark footer */
.footer.section-dark {
  border-top: none;
  flex-direction: column;
  align-items: stretch;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

/* top row: address · brand+social · contact */
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 0.9rem;
}
.footer-address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 22rem;
}
.footer-address a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.footer-address a:hover { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.6); }
.footer-col--right { text-align: right; margin-left: auto; }
.footer-contact {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  transition: color 0.25s ease;
}
.footer-contact:hover { color: var(--mint); }

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.footer-logo { height: 44px; width: auto; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-social a:hover { background: var(--grad); color: #fff; transform: translateY(-2px); }

/* government sponsor · partner logos on clean chips (logos carry dark text) */
.footer-orgs {
  margin-top: clamp(2.75rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
}
.footer-org { display: flex; flex-direction: column; gap: 1rem; }
.footer-org--right { align-items: flex-end; text-align: right; }
.footer-orgs--three { grid-template-columns: 1fr 1fr 1fr; }
.footer-org--center { align-items: center; text-align: center; }
.footer-logo-chip {
  display: inline-flex;
  background: #fff;
  border-radius: 12px;
  padding: 0.9rem 1.15rem;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}
.footer-logo-chip img { height: 42px; width: auto; display: block; }


@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 2.5rem; }
  .footer-address { max-width: none; }
  .footer-col--right { text-align: center; margin-left: 0; }
  .footer-orgs { grid-template-columns: 1fr; justify-items: center; gap: 2.5rem; text-align: center; }
  .footer-org--right { align-items: center; text-align: center; }
}

.footer.section-dark .footer-legal {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer.section-dark .footer-legal a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer.section-dark .footer-legal a:hover { color: var(--mint); }

/* registration consent checkbox */
.reg-form .reg-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  line-height: 1.45;
  cursor: pointer;
}
.reg-form__consent input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.08rem;
  accent-color: var(--teal);
  flex: none;
}
.reg-form__consent a { color: var(--teal-deep); text-decoration: underline; }

/* ---------------- sector insights section ---------------- */
.insights-section {
  margin: 0 auto;
  max-width: 1475px;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 3.4vw, 3.4rem);
}
.insights {
  display: grid;
  grid-template-columns: minmax(13rem, 19rem) 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
}
.insights__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.insight-tab {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.insight-tab svg { width: 1.2rem; height: 1.2rem; color: var(--muted); flex: none; transition: color 0.25s var(--ease); }
.insight-tab:hover { background: rgba(14, 131, 119, 0.06); color: var(--teal-deep); }
.insight-tab:hover svg { color: var(--teal); }
.insight-tab.is-active { background: linear-gradient(120deg, rgba(20,170,195,0.14), rgba(64,185,101,0.14)); color: var(--teal-deep); }
.insight-tab.is-active svg { color: var(--teal); }

.insights__detail {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-soft);
  align-self: start;
}
.insight-detail__icon {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(20, 170, 195, 0.1);
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.insight-detail__icon svg { width: 1.7rem; height: 1.7rem; }
.insight-detail__name {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.insight-detail__text {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.65;
  max-width: 46rem;
}

@media (max-width: 760px) {
  .insights { grid-template-columns: 1fr; }
  .insights__nav { flex-direction: row; flex-wrap: wrap; }
  .insight-tab { width: auto; }
  .insight-tab span { display: none; }
  .insight-tab { padding: 0.7rem; }
}

/* ---------------- quote author photo ---------------- */
.quote-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1.9rem;
}
.quote-author .quote-cite { margin-top: 0; }
.quote-photo {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  background: #e6f0f1;
}

/* ---------------- become a sponsor (floating tab + form extras) ---------------- */
.sponsor-tab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--grad);
  background-size: 160% 160%;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 34px -12px rgba(20, 170, 150, 0.8);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-position 0.5s var(--ease);
}
.sponsor-tab:hover {
  transform: translateY(-2px);
  background-position: 100% 0;
  box-shadow: 0 22px 44px -14px rgba(20, 170, 150, 0.9);
}
.sponsor-tab svg { width: 1.05rem; height: 1.05rem; flex: none; }

@media (max-width: 560px) {
  .sponsor-tab { right: 1rem; bottom: 1rem; padding: 0.85rem; gap: 0; }
  .sponsor-tab span { display: none; }
  .sponsor-tab svg { width: 1.35rem; height: 1.35rem; }
}

.reg-form textarea {
  width: 100%;
  min-height: 5rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7fbfc;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.5;
  resize: vertical;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.reg-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20, 170, 195, 0.14);
}
.reg-form textarea::placeholder { color: #9fb0bb; }
.reg-form .opt { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.7rem; }

/* ---------------- mobile full-screen menu: globe behind · nav on top · FAQ below ---------------- */
@media (max-width: 860px) {
  body.menu-open .globe-stage {
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(125vh, 150vw);
    height: min(125vh, 150vw);
  }

  .menu-panel {
    top: 7.5rem;
    left: 1.25rem;
    right: auto;
    transform: none;
    width: calc(100% - 2.5rem);
  }
  .menu-list {
    align-items: flex-start;
    text-align: left;
    gap: 0.15rem;
  }
  .menu-list a {
    justify-content: flex-start;
    gap: 0.6rem;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  /* inverse of desktop: coloured text by default, solid white when tapped */
  .menu-list a {
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    background-clip: text;
    -webkit-background-clip: text;
  }
  .menu-list li:nth-child(1) a { background-image: linear-gradient(115deg, #06a5e1, #14aac3); }
  .menu-list li:nth-child(2) a { background-image: linear-gradient(115deg, #14aac3, #2bb59a); }
  .menu-list li:nth-child(3) a { background-image: linear-gradient(115deg, #2bb59a, #40b965); }
  .menu-list li:nth-child(4) a { background-image: linear-gradient(115deg, #40b965, #7cc247); }
  .menu-list li:nth-child(5) a { background-image: linear-gradient(115deg, #7cc247, #06a5e1); }
  .menu-list li:nth-child(6) a { background-image: linear-gradient(115deg, #06a5e1, #40b965); }
  .menu-list a:hover,
  .menu-list a:active,
  .menu-list a:focus {
    transform: none;
    color: #fff;
    -webkit-text-fill-color: #fff;
    background-image: none;
    text-shadow: 0 2px 22px rgba(9, 44, 54, 0.5);
  }
  .menu-list .menu-num { color: rgba(9, 44, 54, 0.55); }

  .faq-panel {
    top: auto;
    bottom: 1.5rem;
    left: 1.25rem;
    right: 1.25rem;
    transform: none;
    width: calc(100% - 2.5rem);
    padding: 1.1rem 1.25rem 0.6rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-md);
    max-height: 44vh;
    overflow-y: auto;
  }
  /* drop the desktop connector flourishes on mobile */
  .faq-out,
  .faq-list::after,
  .faq-q::before,
  .faq-q::after { display: none; }
  .faq-q { padding-right: 0.5rem; }
  .faq-a p { padding-right: 0.5rem; }
}

/* ============================================================
   THEME TOGGLE  +  DARK THEME
   ============================================================ */
.theme-toggle {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease), opacity 0.3s var(--ease);
}
.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: var(--shadow-md);
}
.theme-toggle:active { transform: scale(0.92); }

/* soft glow that blooms from the centre on hover */
.theme-toggle__glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(20, 170, 195, 0.55), transparent 70%);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.theme-toggle:hover .theme-toggle__glow { opacity: 1; transform: scale(1); }

/* both icons stacked; crossfade with a rotate/scale sweep when the theme flips */
.theme-toggle svg {
  grid-area: 1 / 1;
  width: 20px;
  height: 20px;
  transition: opacity 0.4s var(--ease), transform 0.55s var(--ease);
}
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); }
.theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.4); }
:root[data-theme="dark"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.4); }
:root[data-theme="dark"] .theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); }

/* keep it out of the way when the mobile menu is open */
body.menu-open .theme-toggle { opacity: 0; pointer-events: none; }

@media (max-width: 560px) {
  .theme-toggle { left: 1rem; bottom: 1rem; width: 44px; height: 44px; }
}

/* --- dark palette (data-theme="dark" on <html>) --- */
:root[data-theme="dark"] {
  --ink: #e9f2f4;
  --ink-soft: #b6c4d6;
  --muted: #7e8fb0;
  --teal: #3fcabe;
  --teal-deep: #7fe0d3;
  --bg-top: #060a2d;
  --bg-bot: #03051a;
  --line: rgba(120, 150, 220, 0.16);
  --line-soft: rgba(120, 150, 220, 0.08);
  --glass: rgba(12, 18, 48, 0.72);
  --card: #0b1130;
  --shadow-sm: 0 10px 30px -14px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 26px 60px -28px rgba(0, 0, 0, 0.66);
  --shadow-lg: 0 40px 90px -40px rgba(0, 0, 0, 0.72);
}

/* deep navy canvas with the logo gradient woven across it as a soft aurora:
   blue (top-right) → teal (centre) → green (bottom-left) */
:root[data-theme="dark"] body {
  background:
    radial-gradient(58% 46% at 88% 6%, rgba(6, 165, 225, 0.2), transparent 62%),
    radial-gradient(52% 42% at 50% 42%, rgba(20, 170, 195, 0.1), transparent 68%),
    radial-gradient(62% 52% at 5% 97%, rgba(64, 185, 101, 0.18), transparent 62%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bot) 72%);
}

/* hero left scrim → dark so the light copy stays legible over the dark scenes */
:root[data-theme="dark"] .hero-bg::after {
  background: linear-gradient(
    100deg,
    rgba(5, 14, 19, 0.95) 0%,
    rgba(5, 14, 19, 0.74) 24%,
    rgba(5, 14, 19, 0.22) 44%,
    rgba(5, 14, 19, 0) 58%
  );
}

/* frosted light panels → dark glass */
:root[data-theme="dark"] .btn-ghost,
:root[data-theme="dark"] .rotate-hint__icon,
:root[data-theme="dark"] .active-sector,
:root[data-theme="dark"] .sector-panel,
:root[data-theme="dark"] .countdown-band,
:root[data-theme="dark"] .partner-logo,
:root[data-theme="dark"] .gain-grid article,
:root[data-theme="dark"] .speaker-card,
:root[data-theme="dark"] .insights__detail {
  background: rgba(13, 20, 52, 0.72);
  border-color: var(--line);
}
:root[data-theme="dark"] .speaker-card.is-tba { background: rgba(13, 20, 52, 0.42); }

/* the FAQ card only has a panel on mobile (desktop sits straight on the backdrop),
   so only give the mobile card a dark surface — never the desktop one */
@media (max-width: 860px) {
  :root[data-theme="dark"] .faq-panel {
    background: rgba(13, 20, 52, 0.72);
    border-color: var(--line);
  }
}

/* solid white cards / controls → dark */
:root[data-theme="dark"] .reg-modal__card { background: #0b1130; }
:root[data-theme="dark"] .reg-modal__close { background: rgba(255, 255, 255, 0.08); }
:root[data-theme="dark"] .reg-modal__close svg { color: var(--ink); }
:root[data-theme="dark"] .sector-button.active .sector-count { background: rgba(255, 255, 255, 0.16); }

/* form fields → dark */
:root[data-theme="dark"] .reg-form input:not([type="checkbox"]),
:root[data-theme="dark"] .reg-form select,
:root[data-theme="dark"] .reg-form textarea {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}
:root[data-theme="dark"] .reg-form input:not([type="checkbox"]):focus,
:root[data-theme="dark"] .reg-form select:focus,
:root[data-theme="dark"] .reg-form textarea:focus {
  background-color: rgba(255, 255, 255, 0.09);
}
:root[data-theme="dark"] .reg-form input::placeholder,
:root[data-theme="dark"] .reg-form textarea::placeholder { color: var(--muted); }

/* globe rim: the inward glow is set to the exact night-sky colour of the dark scenes
   (~#040A28), so the globe's edge melts into the sky instead of wearing a white ring */
:root[data-theme="dark"] .globe-stage::before {
  box-shadow:
    inset 0 0 130px 32px rgba(4, 10, 40, 0.82),
    inset 0 0 58px 9px rgba(4, 10, 40, 0.55),
    0 0 96px 20px rgba(4, 10, 40, 0.65);
}
:root[data-theme="dark"] .globe-stage::after {
  background: radial-gradient(closest-side, rgba(4, 10, 40, 0.4), transparent 75%);
}

/* full-screen menu: the frosted backdrop is light by default → go dark so the white
   nav links stay legible; lift the number colour on mobile too */
:root[data-theme="dark"] .menu-backdrop {
  background:
    radial-gradient(90% 70% at 50% 125%, rgba(20, 170, 195, 0.22), transparent 62%),
    radial-gradient(70% 50% at 12% 0%, rgba(64, 185, 101, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(6, 10, 45, 0.86), rgba(3, 5, 24, 0.93));
}
:root[data-theme="dark"] .menu-list .menu-num { color: rgba(255, 255, 255, 0.5); }
