:root {
  --bg: #080b12;
  --bg-alt: #0d111b;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: #121827;
  --text: #f4f7fb;
  --muted: #9aa6ba;
  --soft: #cbd3e0;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #74f0cf;
  --accent-two: #7d9cff;
  --accent-dark: #0a3329;
  --light-section: #f4f2ec;
  --light-text: #111319;
  --light-muted: #5e6470;
  --header-bg: rgba(8, 11, 18, .72);
  --shadow: 0 32px 100px rgba(0, 0, 0, .34);
}

html[data-theme="light"] {
  --bg: #f7f7f4;
  --bg-alt: #efeee9;
  --panel: rgba(16, 19, 25, .055);
  --panel-strong: #ffffff;
  --text: #111319;
  --muted: #626a77;
  --soft: #3a414c;
  --line: rgba(17, 19, 25, .12);
  --accent: #0c8e72;
  --accent-two: #536fd3;
  --accent-dark: #d8fff4;
  --light-section: #ffffff;
  --light-text: #111319;
  --light-muted: #5e6470;
  --header-bg: rgba(247, 247, 244, .78);
  --shadow: 0 32px 90px rgba(48, 52, 59, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background .28s ease, color .28s ease;
}

body,
.site-header,
.visual-frame,
.focus-card,
.contact-card,
.theme-toggle,
.header-contact,
.mobile-nav {
  transition: background .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 124px 0;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}

.nav-shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.025em;
}

.brand-symbol {
  width: 38px;
  height: 38px;
}

.brand-symbol svg {
  width: 100%;
  height: 100%;
}

.symbol-base {
  fill: currentColor;
}

.symbol-accent {
  fill: var(--accent);
}

.brand-name {
  font-size: 1.05rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.theme-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--panel);
  cursor: pointer;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html[data-theme="dark"] .moon-icon,
html[data-theme="light"] .sun-icon {
  display: none;
}

.header-contact {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  margin: 0 24px 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 11px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 70px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 84px;
  align-items: center;
}

.eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .17em;
}

.eyebrow-dot,
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 15%, transparent);
}

.hero h1 {
  max-width: 820px;
  margin: 20px 0 26px;
  font-size: clamp(4.2rem, 7.6vw, 7.8rem);
  line-height: .92;
  letter-spacing: -.075em;
}

.gradient-text {
  display: block;
  color: var(--accent);
  background: linear-gradient(110deg, var(--accent), var(--accent-two));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-intro {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 13px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: var(--accent-dark);
  box-shadow: 0 16px 38px color-mix(in srgb, var(--accent) 18%, transparent);
}

.button-ghost {
  border: 1px solid var(--line);
  background: var(--panel);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 650px;
  margin-top: 42px;
}

.hero-proof div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: .95rem;
}

.hero-proof span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .72rem;
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  min-height: 620px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--panel-strong) 86%, transparent), color-mix(in srgb, var(--panel) 70%, transparent));
  box-shadow: var(--shadow);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -12%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-two) 23%, transparent), transparent 67%);
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: auto -15% -24% auto;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 25%, transparent), transparent 68%);
}

.visual-topbar,
.visual-footer {
  position: relative;
  z-index: 3;
}

.visual-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
}

.signal {
  color: var(--accent);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.commerce-graphic {
  position: relative;
  min-height: 440px;
  margin-top: 14px;
}

.core-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 34px;
  background: linear-gradient(145deg, var(--accent), color-mix(in srgb, var(--accent-two) 48%, var(--accent)));
  color: var(--accent-dark);
  box-shadow: 0 26px 80px color-mix(in srgb, var(--accent) 25%, transparent);
}

.core-badge span {
  font-size: 2.7rem;
  font-weight: 950;
}

.ring {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 { width: 210px; height: 210px; }
.ring-2 { width: 330px; height: 330px; }
.ring-3 { width: 440px; height: 440px; }

.data-chip {
  position: absolute;
  z-index: 5;
  min-width: 142px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--bg-alt) 90%, transparent);
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
}

.data-chip span,
.data-chip strong {
  display: block;
}

.data-chip .chip-label {
  color: var(--muted);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.data-chip strong {
  margin-top: 3px;
  font-size: .82rem;
}

.chip-a { top: 7%; left: 30%; }
.chip-b { top: 40%; right: 1%; }
.chip-c { bottom: 8%; left: 22%; }
.chip-d { top: 42%; left: 0; }

.spark {
  position: absolute;
  z-index: 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

.spark-1 { top: 21%; right: 25%; }
.spark-2 { bottom: 22%; right: 18%; }
.spark-3 { top: 34%; left: 18%; }

.visual-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.visual-footer div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.visual-footer span,
.visual-footer strong {
  display: block;
}

.visual-footer span {
  color: var(--muted);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.visual-footer strong {
  margin-top: 4px;
  font-size: .76rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.orb-a {
  width: 470px;
  height: 470px;
  right: 2%;
  top: 6%;
  background: color-mix(in srgb, var(--accent-two) 22%, transparent);
}

.orb-b {
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: -100px;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.scroll-line {
  width: 42px;
  height: 1px;
  background: var(--line);
}

.brand-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-layout {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.strip-layout > span {
  color: var(--muted);
  font-size: .8rem;
}

.strip-items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  font-size: .74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.light-section {
  background: var(--light-section);
  color: var(--light-text);
}

.about-layout {
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: 90px;
}

.section-kicker {
  display: flex;
  gap: 18px;
  color: var(--light-muted);
}

.section-kicker span {
  color: var(--accent);
  font-weight: 900;
}

.section-kicker p {
  margin: 0;
  font-size: .9rem;
  font-weight: 800;
}

.about-main h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
  color: var(--light-muted);
  font-size: 1.05rem;
}

.about-columns p {
  margin: 0;
}

.focus-section {
  background: var(--bg);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.section-heading h2,
.network-copy h2,
.vision-heading h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.8vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.section-summary {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.focus-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.focus-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% 20%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 13%, transparent), transparent 70%);
}

.card-number {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 850;
}

.card-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-top: 58px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
}

.card-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.focus-card h3,
.focus-card p {
  position: relative;
  z-index: 1;
}

.focus-card h3 {
  margin: 26px 0 10px;
  font-size: 1.35rem;
}

.focus-card p {
  margin: 0;
  color: var(--muted);
}

.network-section {
  background: var(--bg-alt);
}

.network-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.network-copy p:not(.section-label) {
  color: var(--muted);
}

.network-map {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 65% 35%, color-mix(in srgb, var(--accent-two) 15%, transparent), transparent 36%),
    var(--panel);
  overflow: hidden;
}

.network-map svg {
  width: 94%;
}

.map-land {
  fill: color-mix(in srgb, var(--text) 6%, transparent);
  stroke: var(--line);
  stroke-width: 1;
}

.route {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 2;
  stroke-dasharray: 7 7;
  opacity: .72;
}

.map-node {
  fill: var(--accent);
  stroke: color-mix(in srgb, var(--accent) 24%, transparent);
  stroke-width: 8;
}

.map-label {
  position: absolute;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
}

.label-nl { left: 18%; top: 43%; }
.label-asia { right: 20%; top: 43%; }
.label-global { right: 10%; bottom: 12%; }

.vision-section {
  background: var(--bg);
}

.vision-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 92px;
  align-items: start;
}

.vision-heading {
  position: sticky;
  top: 130px;
}

.vision-timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.vision-timeline::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 38px;
  bottom: 38px;
  width: 1px;
  background: var(--line);
}

.vision-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.vision-timeline article > span {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--accent);
  font-size: .68rem;
  font-weight: 900;
}

.vision-timeline h3 {
  margin: 6px 0 5px;
  font-size: 1.05rem;
}

.vision-timeline p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  padding-top: 70px;
  background: var(--bg);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 32%),
    var(--panel);
}

.contact-card p:not(.section-label) {
  max-width: 700px;
  color: var(--muted);
}

.contact-side {
  min-width: 250px;
  display: grid;
  gap: 12px;
  text-align: center;
}

.contact-side span {
  color: var(--muted);
  font-size: .72rem;
}

.site-footer {
  padding: 62px 0 36px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-layout p,
.footer-layout a {
  color: var(--muted);
  font-size: .84rem;
}

.footer-layout p {
  margin: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-meta a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: var(--text);
}

.footer-meta {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .header-contact {
    display: none;
  }

  .hero-layout,
  .section-heading,
  .network-layout,
  .vision-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 760px;
  }

  .vision-heading {
    position: static;
  }

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

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-side {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 30px, 1240px);
  }

  .section {
    padding: 86px 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17vw, 5.5rem);
  }

  .hero-proof,
  .visual-footer,
  .about-columns,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .visual-frame {
    min-height: 560px;
  }

  .commerce-graphic {
    min-height: 400px;
  }

  .ring-3 {
    width: 340px;
    height: 340px;
  }

  .data-chip {
    min-width: 118px;
    padding: 10px;
  }

  .chip-a { left: 22%; }
  .chip-b { right: -2%; }
  .chip-c { left: 12%; }
  .chip-d { left: -2%; }

  .scroll-cue {
    display: none;
  }

  .strip-layout {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-columns {
    gap: 24px;
  }

  .network-map {
    min-height: 350px;
  }

  .vision-timeline article {
    grid-template-columns: 52px 1fr;
    padding: 22px;
  }

  .vision-timeline article > span {
    width: 52px;
    height: 52px;
  }

  .vision-timeline::before {
    left: 26px;
  }

  .contact-card {
    padding: 34px 24px;
  }

  .footer-meta {
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .button {
    transition: none;
  }
}


/* Hero Edition */
.hero-cinematic {
  min-height: 100vh;
  padding-top: 148px;
  padding-bottom: 86px;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 82%);
  opacity: .24;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 35%, transparent 0, transparent 28%, color-mix(in srgb, var(--bg) 72%, transparent) 72%),
    linear-gradient(to bottom, transparent, var(--bg) 92%);
}

.cinematic-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 78px;
  align-items: center;
}

.cinematic-copy h1 {
  max-width: 820px;
  margin: 18px 0 28px;
  font-size: clamp(4.6rem, 7.7vw, 8.4rem);
  line-height: .9;
  letter-spacing: -.08em;
}

.cinematic-copy .gradient-text {
  display: block;
}

.cinematic-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.cinematic-stats div {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.cinematic-stats strong,
.cinematic-stats span {
  display: block;
}

.cinematic-stats strong {
  font-size: .9rem;
}

.cinematic-stats span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .68rem;
}

.hero-globe-wrap {
  position: relative;
}

.globe-card {
  position: relative;
  min-height: 680px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--panel-strong) 88%, transparent), color-mix(in srgb, var(--panel) 72%, transparent));
  box-shadow: var(--shadow);
}

.globe-card::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -15%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-two) 24%, transparent), transparent 68%);
}

.globe-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
}

.globe-topline,
.globe-footer {
  position: relative;
  z-index: 8;
}

.globe-topline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
}

.globe-scene {
  position: relative;
  height: 520px;
  margin-top: 12px;
  perspective: 1200px;
}

.globe {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 390px;
  height: 390px;
  transform: translate(-50%, -50%);
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%, color-mix(in srgb, var(--accent-two) 16%, transparent), transparent 36%),
    radial-gradient(circle at 62% 64%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 40%),
    color-mix(in srgb, var(--bg-alt) 78%, transparent);
  box-shadow:
    inset 0 0 60px color-mix(in srgb, var(--accent-two) 10%, transparent),
    0 0 90px color-mix(in srgb, var(--accent-two) 18%, transparent);
  animation: globeFloat 7s ease-in-out infinite;
  overflow: hidden;
}

.globe::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 22% 40%, color-mix(in srgb, var(--text) 8%, transparent) 0 12%, transparent 13%),
    radial-gradient(circle at 58% 32%, color-mix(in srgb, var(--text) 7%, transparent) 0 9%, transparent 10%),
    radial-gradient(circle at 68% 62%, color-mix(in srgb, var(--text) 6%, transparent) 0 11%, transparent 12%);
  filter: blur(1px);
}

.globe-grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: .45;
}

.globe-grid-lat {
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 28px, color-mix(in srgb, var(--text) 9%, transparent) 29px 30px);
}

.globe-grid-lon {
  background:
    repeating-linear-gradient(90deg, transparent 0 46px, color-mix(in srgb, var(--text) 8%, transparent) 47px 48px);
  transform: rotate(8deg);
}

.globe-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 5;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  background: linear-gradient(145deg, var(--accent), color-mix(in srgb, var(--accent-two) 46%, var(--accent)));
  color: var(--accent-dark);
  font-size: 2.5rem;
  font-weight: 950;
  box-shadow: 0 24px 70px color-mix(in srgb, var(--accent) 24%, transparent);
}

.route-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  opacity: .65;
  animation: dashMove 6s linear infinite;
}

.route-b {
  stroke: var(--accent-two);
  animation-duration: 7.5s;
}

.route-c {
  animation-duration: 5s;
}

.location-dot {
  position: absolute;
  z-index: 6;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 10%, transparent), 0 0 18px var(--accent);
}

.dot-nl { left: 30%; top: 47%; }
.dot-de { left: 38%; top: 45%; }
.dot-tr { left: 48%; top: 61%; }
.dot-cn { right: 22%; top: 44%; }
.dot-us { right: 8%; top: 54%; }

.globe-halo {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.halo-one {
  width: 470px;
  height: 470px;
}

.halo-two {
  width: 560px;
  height: 560px;
}

.floating-panel {
  position: absolute;
  z-index: 9;
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: color-mix(in srgb, var(--bg-alt) 90%, transparent);
  box-shadow: 0 18px 38px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
}

.floating-panel span,
.floating-panel strong {
  display: block;
}

.floating-panel span {
  color: var(--muted);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.floating-panel strong {
  margin-top: 3px;
  font-size: .82rem;
}

.panel-one { left: 4%; top: 22%; }
.panel-two { right: 2%; top: 34%; }
.panel-three { left: 12%; bottom: 11%; }

.particle {
  position: absolute;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
  animation: particleFloat 6s ease-in-out infinite;
}

.p1 { left: 18%; top: 12%; animation-delay: -1s; }
.p2 { left: 72%; top: 15%; animation-delay: -2.2s; }
.p3 { left: 86%; top: 61%; animation-delay: -3.5s; }
.p4 { left: 28%; top: 76%; animation-delay: -4.2s; }
.p5 { left: 52%; top: 8%; animation-delay: -5.1s; }
.p6 { left: 62%; top: 82%; animation-delay: -.4s; }

.globe-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.globe-footer div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.globe-footer span,
.globe-footer strong {
  display: block;
}

.globe-footer span {
  color: var(--muted);
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.globe-footer strong {
  margin-top: 4px;
  font-size: .77rem;
}

@keyframes globeFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0) rotateZ(-1deg); }
  50% { transform: translate(-50%, -50%) translateY(-10px) rotateZ(1deg); }
}

@keyframes dashMove {
  to { stroke-dashoffset: -180; }
}

@keyframes particleFloat {
  0%, 100% { transform: translate3d(0,0,0); opacity: .45; }
  50% { transform: translate3d(10px,-18px,0); opacity: 1; }
}

@media (max-width: 1100px) {
  .cinematic-layout {
    grid-template-columns: 1fr;
  }

  .hero-globe-wrap {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .hero-cinematic {
    padding-top: 120px;
  }

  .cinematic-copy h1 {
    font-size: clamp(3.7rem, 17vw, 5.8rem);
  }

  .cinematic-stats,
  .globe-footer {
    grid-template-columns: 1fr 1fr;
  }

  .globe-card {
    min-height: 610px;
  }

  .globe-scene {
    height: 450px;
  }

  .globe {
    width: 300px;
    height: 300px;
  }

  .halo-one {
    width: 360px;
    height: 360px;
  }

  .halo-two {
    width: 430px;
    height: 430px;
  }

  .floating-panel {
    min-width: 118px;
    padding: 10px;
  }

  .panel-one { left: -1%; }
  .panel-two { right: -2%; }
  .panel-three { left: 4%; }
}
