:root {
  --ink: #08131d;
  --ink-strong: #050e18;
  --forest: #0d2131;
  --forest-soft: #163247;
  --sea: #55d4f6;
  --mint: #55d4f6;
  --copper: #f0aa44;
  --amber: #f1d34f;
  --red: #ff736c;
  --green: #39d49b;
  --cream: rgba(241, 247, 252, 0.96);
  --cream-soft: rgba(201, 219, 234, 0.8);
  --cream-muted: rgba(183, 205, 224, 0.64);
  --line: rgba(163, 199, 224, 0.2);
  --line-strong: rgba(163, 199, 224, 0.32);
  --surface: rgba(12, 27, 41, 0.82);
  --surface-solid: #0d2131;
  --panel: rgba(14, 31, 47, 0.9);
  --max: 1380px;
  --radius: 8px;
  --shadow: 0 28px 72px rgba(3, 10, 20, 0.46);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body.landing-page {
  margin: 0;
  min-height: 100vh;
  color: var(--cream);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(1100px 720px at -8% -16%, rgba(85, 212, 246, 0.16), transparent 58%),
    radial-gradient(900px 620px at 108% 6%, rgba(85, 212, 246, 0.07), transparent 62%),
    radial-gradient(820px 560px at 54% 108%, rgba(240, 170, 68, 0.08), transparent 58%),
    linear-gradient(180deg, var(--ink), var(--forest));
  overflow-x: hidden;
}

body.landing-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(163, 199, 224, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 199, 224, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black 0%, black 60%, transparent 100%);
}

body.landing-page a,
body.landing-page button,
body.landing-page input {
  font: inherit;
}

body.landing-page button:focus-visible,
body.landing-page a:focus-visible,
body.landing-page input:focus-visible {
  outline: 2px solid rgba(85, 212, 246, 0.95);
  outline-offset: 3px;
}

.siteHeader {
  position: sticky;
  top: 14px;
  z-index: 1400;
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  padding: 10px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(163, 199, 224, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 14, 24, 0.88);
  box-shadow: 0 18px 44px rgba(3, 10, 20, 0.34);
  backdrop-filter: blur(18px);
  overflow: visible;
  transition:
    background 260ms var(--ease-out-quart),
    border-color 260ms var(--ease-out-quart),
    box-shadow 260ms var(--ease-out-quart),
    transform 260ms var(--ease-out-quart);
}

.landing-page.has-scrolled .siteHeader {
  border-color: rgba(163, 199, 224, 0.22);
  background: rgba(5, 14, 24, 0.94);
  box-shadow: 0 22px 54px rgba(3, 10, 20, 0.42);
  transform: translateY(-2px);
}

.siteBrand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: var(--cream);
  text-decoration: none;
}

.siteBrandMark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.siteBrandCopy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.siteBrandKicker,
.miniLabel,
.panelEyebrow,
.sectionEyebrow,
.galleryLabel,
.planMeta,
.sectionNote,
.field label,
.guideIndex {
  color: var(--cream-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.siteBrandName {
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
}

.siteTabs {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow-x: auto;
  padding: 2px;
  scrollbar-width: none;
}

.siteTabs::-webkit-scrollbar {
  display: none;
}

.siteTab {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  color: var(--cream-soft);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.siteTab:hover,
.siteTab.is-active {
  color: var(--cream);
  border-color: rgba(240, 170, 68, 0.28);
  background: rgba(240, 170, 68, 0.1);
}

.siteActions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.siteUtility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.landingLanguageForm {
  margin: 0;
}

.landingLanguageSelect {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(163, 199, 224, 0.16);
  border-radius: var(--radius);
  background: rgba(163, 199, 224, 0.07);
  color: var(--cream-muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landingLanguageSelect select {
  min-height: 30px;
  max-width: 128px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(5, 14, 24, 0.84);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.headerAction,
.heroButton,
.planAction,
.submitButton {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 170, 68, 0.38);
  background: linear-gradient(180deg, rgba(241, 211, 79, 0.96), rgba(240, 170, 68, 0.94));
  color: #06121c;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.headerAction:hover,
.heroButton:hover,
.planAction:hover,
.submitButton:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

.headerAction:active,
.heroButton:active,
.planAction:active,
.submitButton:active {
  transform: translateY(0) scale(0.985);
}

.headerActionGhost,
.heroButtonSecondary {
  border-color: rgba(163, 199, 224, 0.2);
  background: rgba(163, 199, 224, 0.08);
  color: var(--cream);
  box-shadow: none;
}

main {
  position: relative;
}

.landingMain {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.heroSection {
  position: relative;
  min-height: auto;
  padding: clamp(34px, 5vh, 62px) 16px 42px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  overflow: hidden;
}

.heroSection::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 19, 29, 0.92) 0%, rgba(8, 19, 29, 0.68) 36%, rgba(8, 19, 29, 0.14) 78%),
    linear-gradient(180deg, rgba(8, 19, 29, 0.04) 0%, rgba(8, 19, 29, 0.18) 62%, rgba(8, 19, 29, 0.92) 100%);
}

.heroProductScene {
  position: relative;
  width: min(100%, var(--max));
  min-height: clamp(560px, 62vh, 700px);
  margin-inline: auto;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(163, 199, 224, 0.16);
  border-radius: var(--radius);
  background: #08131d;
  box-shadow: var(--shadow);
  transform: translateY(0);
  animation: sceneEnter 760ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.heroBrandShowcase {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-areas:
    "copy video"
    "proof proof";
  grid-template-columns: minmax(360px, 0.86fr) minmax(460px, 1.14fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 38px) clamp(28px, 4.5vw, 76px);
  align-items: center;
  padding: clamp(32px, 4.8vh, 56px) clamp(30px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 34%, rgba(85, 212, 246, 0.18), transparent 30%),
    radial-gradient(circle at 78% 22%, rgba(240, 170, 68, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(5, 14, 24, 0.95), rgba(13, 33, 49, 0.82));
}

.heroBrandShowcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(163, 199, 224, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 199, 224, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, black, black 68%, transparent 100%);
  transform: translate3d(0, var(--hero-grid-drift, 0px), 0);
  will-change: transform;
}

.heroCopyPanel,
.heroVideoPanel {
  position: relative;
  z-index: 2;
}

.heroCopyPanel {
  grid-area: copy;
  width: min(560px, 100%);
  max-width: 560px;
  justify-self: start;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(163, 199, 224, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 19, 29, 0.82), rgba(13, 33, 49, 0.52)),
    rgba(8, 19, 29, 0.58);
  box-shadow: 0 24px 62px rgba(3, 10, 20, 0.28);
  backdrop-filter: blur(18px);
}

.heroAnimatedLogo {
  position: relative;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(85, 212, 246, 0.24), rgba(85, 212, 246, 0.04) 58%, transparent 62%),
    rgba(163, 199, 224, 0.04);
}

.heroAnimatedLogo img {
  position: relative;
  z-index: 3;
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 16px 28px rgba(3, 10, 20, 0.32));
  animation: logoFloat 4.8s cubic-bezier(0.19, 1, 0.22, 1) infinite alternate;
}

.logoOrbit,
.logoPulse {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(85, 212, 246, 0.34);
}

.logoOrbitOne {
  animation: logoOrbit 9s linear infinite;
}

.logoOrbitTwo {
  inset: 24px;
  border-color: rgba(240, 170, 68, 0.38);
  animation: logoOrbit 7s linear infinite reverse;
}

.logoOrbit::before,
.logoOrbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sea);
  box-shadow: 0 0 18px rgba(85, 212, 246, 0.72);
}

.logoOrbit::before {
  left: 50%;
  top: -4px;
}

.logoOrbit::after {
  right: 12%;
  bottom: 6%;
  background: var(--amber);
  box-shadow: 0 0 18px rgba(240, 170, 68, 0.64);
}

.logoPulse {
  inset: 0;
  border-color: rgba(85, 212, 246, 0.18);
  animation: logoPulse 2.8s ease-out infinite;
}

.heroSignalStats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.heroSignalStats span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  border: 1px solid rgba(163, 199, 224, 0.16);
  border-radius: var(--radius);
  background: rgba(163, 199, 224, 0.07);
  color: var(--cream-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.heroSignalStats strong {
  color: var(--cream);
}

.heroVideoPanel {
  grid-area: video;
  justify-self: end;
  align-self: center;
  width: min(650px, 100%);
  padding: 12px;
  border: 1px solid rgba(163, 199, 224, 0.16);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(5, 14, 24, 0.72);
  box-shadow: 0 30px 80px rgba(3, 10, 20, 0.42);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  animation: videoEnter 900ms 160ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.heroVideoTop,
.heroVideoCaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 4px 12px;
  color: var(--cream-muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heroVideoTop strong {
  color: var(--sea);
}

.heroVideoFrame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(85, 212, 246, 0.2);
  background:
    linear-gradient(135deg, rgba(85, 212, 246, 0.18), rgba(240, 170, 68, 0.08)),
    #08131d;
}

.heroVideoFrame iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}

.heroVideoGlow {
  position: absolute;
  inset: -18%;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 12%, rgba(85, 212, 246, 0.26), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(240, 170, 68, 0.2), transparent 34%);
  filter: blur(12px);
  animation: videoGlow 7s ease-in-out infinite alternate;
}

.heroVideoCaption {
  justify-content: flex-start;
  padding: 12px 4px 2px;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.82rem;
}

.captionDot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(57, 212, 155, 0.12);
}

.heroNetworkRibbon {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: var(--hero-ribbon-opacity, 0.48);
  transform: translate3d(0, var(--hero-drift, 0px), 0);
  will-change: transform, opacity;
}

.networkTrace {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(85, 212, 246, 0.72), rgba(241, 211, 79, 0.58), transparent);
  transform-origin: left center;
  animation: traceSweep 5.8s ease-in-out infinite;
}

.traceOne {
  width: 46%;
  left: 38%;
  top: 25%;
  transform: rotate(17deg);
}

.traceTwo {
  width: 34%;
  left: 44%;
  bottom: 22%;
  transform: rotate(-24deg);
  animation-delay: -1.8s;
}

.traceThree {
  width: 26%;
  left: 27%;
  top: 58%;
  transform: rotate(42deg);
  animation-delay: -3.2s;
}

.networkNode {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--sea);
  box-shadow: 0 0 0 8px rgba(85, 212, 246, 0.12), 0 0 28px rgba(85, 212, 246, 0.42);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.nodeOne { left: 68%; top: 28%; }
.nodeTwo { left: 79%; top: 61%; animation-delay: -0.9s; background: var(--amber); }
.nodeThree { left: 48%; top: 69%; animation-delay: -1.7s; }

.heroAppChrome {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 54px 1fr;
  background:
    linear-gradient(rgba(163, 199, 224, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 199, 224, 0.026) 1px, transparent 1px),
    #08131d;
  background-size: 34px 34px;
}

.heroChromeBar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(163, 199, 224, 0.14);
  background: rgba(5, 14, 24, 0.78);
}

.heroChromeBrand,
.heroChromeTabs,
.heroChromeStatus {
  display: inline-flex;
  align-items: center;
}

.heroChromeBrand {
  gap: 9px;
  color: var(--cream);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
}

.heroChromeBrand img {
  width: 28px;
  height: 28px;
}

.heroChromeTabs {
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.heroChromeTabs span,
.operatorPills span,
.deliveryButtons span,
.analysisToolbarMock span,
.analysisToolbarMock strong,
.gateListMock span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(163, 199, 224, 0.14);
  background: rgba(163, 199, 224, 0.07);
  color: var(--cream-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.heroChromeTabs .is-active,
.analysisToolbarMock strong {
  color: var(--cream);
  border-color: rgba(85, 212, 246, 0.36);
  background: rgba(85, 212, 246, 0.14);
}

.heroChromeStatus {
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: #06121c;
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
}

.heroDashboard {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(200px, 250px) minmax(360px, 1fr) minmax(230px, 310px);
  gap: 12px;
  padding: 12px;
}

.heroSidebar,
.heroInsightPanel,
.floatingInspector,
.reportSheetMock,
.videoTileMock,
.galleryShot,
.planCard,
.aboutCard,
.accessGuide,
.authShell,
.flowCard {
  border: 1px solid rgba(163, 199, 224, 0.16);
  border-radius: var(--radius);
  background: rgba(12, 27, 41, 0.82);
  box-shadow: 0 18px 42px rgba(3, 10, 20, 0.26);
}

.heroSidebar,
.heroInsightPanel {
  min-width: 0;
  padding: 14px;
}

.heroSidebar {
  display: grid;
  align-content: start;
  gap: 12px;
}

.heroSelect {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(163, 199, 224, 0.15);
  border-radius: var(--radius);
  background: rgba(163, 199, 224, 0.07);
  color: var(--cream);
  font-weight: 800;
}

.heroControlGrid,
.insightMetrics,
.reportSplit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.heroControlGrid span,
.insightMetrics div,
.miniStatCard {
  padding: 11px;
  border: 1px solid rgba(163, 199, 224, 0.14);
  border-radius: var(--radius);
  background: rgba(163, 199, 224, 0.065);
  font-weight: 800;
}

.heroControlBlock {
  display: grid;
  gap: 8px;
}

.operatorPills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.runButtonMock {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(241, 211, 79, 0.96), rgba(240, 170, 68, 0.94));
  color: #06121c;
  font-weight: 900;
}

.runButtonMock span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #06121c;
  box-shadow: 0 0 0 5px rgba(6, 18, 28, 0.12);
}

.heroMapStage {
  position: relative;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(163, 199, 224, 0.12);
  border-radius: var(--radius);
  background: #0d2131;
}

.productMap {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background:
    linear-gradient(rgba(163, 199, 224, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 199, 224, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(85, 212, 246, 0.14), transparent 34%),
    linear-gradient(180deg, #d6e4ea, #9fb8c6);
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.productMapHero {
  position: absolute;
  inset: 0;
}

.productMapLarge {
  min-height: 560px;
  border-radius: var(--radius);
}

.productMap::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    linear-gradient(120deg, transparent 6%, rgba(85, 212, 246, 0.1) 7%, transparent 8%),
    linear-gradient(36deg, transparent 26%, rgba(241, 211, 79, 0.08) 27%, transparent 28%);
  animation: mapDrift 14s linear infinite;
}

.mapRegion {
  position: absolute;
  border: 1px solid rgba(65, 96, 117, 0.18);
  background: rgba(241, 247, 252, 0.18);
  transform: rotate(-12deg);
}

.regionA {
  width: 38%;
  height: 68%;
  left: 24%;
  top: 13%;
  clip-path: polygon(24% 0%, 88% 12%, 100% 42%, 78% 82%, 40% 100%, 8% 72%, 0% 28%);
}

.regionB {
  width: 28%;
  height: 46%;
  right: 16%;
  top: 27%;
  clip-path: polygon(12% 12%, 88% 0%, 100% 48%, 76% 100%, 8% 78%, 0% 34%);
}

.gridLine,
.weatherBand {
  position: absolute;
  display: block;
  border-radius: 999px;
  transform-origin: left center;
}

.gridLine {
  height: 5px;
  background: rgba(18, 31, 37, 0.44);
  box-shadow: 0 0 0 1px rgba(241, 247, 252, 0.22);
}

.lineOne {
  width: 54%;
  left: 17%;
  top: 33%;
  transform: rotate(17deg);
  background: linear-gradient(90deg, var(--mint), var(--amber), var(--red));
}

.lineTwo {
  width: 38%;
  left: 37%;
  top: 62%;
  transform: rotate(-26deg);
  background: linear-gradient(90deg, rgba(85, 212, 246, 0.72), rgba(241, 247, 252, 0.44));
}

.lineThree {
  width: 34%;
  left: 15%;
  top: 70%;
  transform: rotate(10deg);
  background: rgba(57, 212, 155, 0.86);
}

.lineFour {
  width: 28%;
  left: 54%;
  top: 45%;
  transform: rotate(44deg);
  background: rgba(240, 170, 68, 0.9);
}

.weatherBand {
  height: 90px;
  width: 46%;
  filter: blur(18px);
  opacity: 0.34;
  animation: weatherSweep 9s ease-in-out infinite alternate;
}

.bandWind {
  left: 52%;
  top: 8%;
  transform: rotate(28deg);
  background: var(--sea);
}

.bandPrecip {
  left: 6%;
  bottom: 8%;
  transform: rotate(-18deg);
  background: var(--copper);
  animation-delay: -2s;
}

.mapHotspot {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #06121c;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow:
    0 0 0 7px rgba(255, 115, 108, 0.16),
    0 14px 28px rgba(3, 10, 20, 0.26);
  animation: hotspotPulse 2.6s ease-in-out infinite;
}

.hotOne {
  top: 30%;
  left: 61%;
}

.hotTwo {
  top: 54%;
  left: 42%;
  background: var(--amber);
  animation-delay: -0.6s;
}

.hotThree {
  top: 67%;
  left: 54%;
  background: var(--green);
  animation-delay: -1.2s;
}

.mapLabel {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(163, 199, 224, 0.16);
  background: rgba(8, 19, 29, 0.68);
  color: var(--cream-soft);
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.labelAgder {
  left: 18%;
  top: 16%;
}

.labelCoast {
  right: 12%;
  bottom: 18%;
}

.mapLegendMock {
  position: absolute;
  left: 16px;
  bottom: 70px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(163, 199, 224, 0.16);
  background: rgba(8, 19, 29, 0.72);
  color: var(--cream-soft);
  font-size: 0.74rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.riskDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.riskGreen { background: var(--green); }
.riskYellow { background: var(--amber); }
.riskOrange { background: var(--copper); }
.riskRed { background: var(--red); }

.timelineMock {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid rgba(163, 199, 224, 0.16);
  background: rgba(8, 19, 29, 0.72);
  backdrop-filter: blur(12px);
}

.timelineRail,
.timelineFill,
.timelineTick,
.timelineKnob {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
}

.timelineRail {
  left: 18px;
  right: 18px;
  height: 4px;
  background: rgba(163, 199, 224, 0.18);
}

.timelineFill {
  left: 18px;
  width: 64%;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), var(--amber));
  animation: timelineFill 5s ease-in-out infinite alternate;
}

.timelineTick {
  width: 8px;
  height: 8px;
  background: rgba(201, 219, 234, 0.46);
}

.tickOne { left: 26%; }
.tickTwo { left: 52%; }
.tickThree { left: 78%; }

.timelineKnob {
  left: 64%;
  width: 18px;
  height: 18px;
  background: var(--cream);
  box-shadow: 0 0 0 6px rgba(163, 199, 224, 0.16);
  animation: knobDrift 5s ease-in-out infinite alternate;
}

.heroInsightPanel {
  display: grid;
  align-content: start;
  gap: 14px;
}

.panelTopline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--cream-muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.panelTopline strong {
  color: #06121c;
  background: var(--amber);
  border-radius: var(--radius);
  padding: 5px 8px;
}

.heroInsightPanel h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.insightMetrics span {
  display: block;
  color: var(--cream-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.insightMetrics strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.miniForecast,
.analysisGraph,
.reportChart,
.timelineCardMock {
  display: grid;
  align-items: end;
  gap: 7px;
}

.miniForecast {
  min-height: 116px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 12px;
  border: 1px solid rgba(163, 199, 224, 0.14);
  border-radius: var(--radius);
  background: rgba(163, 199, 224, 0.065);
}

.miniForecast span,
.analysisGraph span,
.reportChart span,
.timelineCardMock span {
  display: block;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--mint), rgba(85, 212, 246, 0.18));
}

.miniForecast span:nth-child(5),
.analysisGraph span:nth-child(5),
.reportChart span:nth-child(4) {
  background: linear-gradient(180deg, var(--copper), rgba(240, 170, 68, 0.22));
}

.deliveryButtons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.heroKicker {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.heroCopyPanel h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.35rem, 5.2vw, 6.15rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
}

.heroCopyPanel p {
  margin: 0;
  max-width: 500px;
  color: var(--cream-soft);
  font-size: 1.04rem;
  line-height: 1.48;
}

.heroActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.heroButton {
  min-height: 50px;
  padding-inline: 18px;
}

.heroProofRail {
  grid-area: proof;
  position: relative;
  z-index: 3;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.heroProofRail article,
.productStrip article {
  border: 1px solid rgba(163, 199, 224, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 19, 29, 0.72);
  backdrop-filter: blur(18px);
}

.heroProofRail article {
  padding: 14px 16px;
}

.heroProofRail span,
.productStrip p {
  color: var(--cream-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.heroProofRail strong,
.productStrip strong {
  display: block;
  margin-top: 5px;
  color: var(--cream);
  font-size: 1rem;
}

.scrollReveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 760ms var(--ease-out-expo),
    transform 760ms var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scrollReveal[data-reveal-kind="soft"] {
  transform: translate3d(0, 22px, 0);
}

.scrollReveal[data-reveal-kind="panel"] {
  transform: translate3d(0, 38px, 0) scale(0.975);
}

.scrollReveal[data-reveal-kind="left"] {
  transform: translate3d(-28px, 18px, 0) scale(0.985);
}

.scrollReveal[data-reveal-kind="right"] {
  transform: translate3d(28px, 18px, 0) scale(0.985);
}

.landing-page.is-scrolling-up .scrollReveal:not(.is-visible) {
  transform: translate3d(0, -34px, 0) scale(0.985);
}

.landing-page.is-scrolling-up .scrollReveal[data-reveal-kind="soft"]:not(.is-visible) {
  transform: translate3d(0, -22px, 0);
}

.landing-page.is-scrolling-up .scrollReveal[data-reveal-kind="panel"]:not(.is-visible) {
  transform: translate3d(0, -38px, 0) scale(0.975);
}

.landing-page.is-scrolling-up .scrollReveal[data-reveal-kind="left"]:not(.is-visible) {
  transform: translate3d(-28px, -18px, 0) scale(0.985);
}

.landing-page.is-scrolling-up .scrollReveal[data-reveal-kind="right"]:not(.is-visible) {
  transform: translate3d(28px, -18px, 0) scale(0.985);
}

.scrollReveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.productStrip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.productStrip article {
  padding: 18px;
  display: grid;
  gap: 9px;
  background: rgba(12, 27, 41, 0.74);
}

.productStrip p {
  margin: 0;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

.stripIcon {
  width: 32px;
  height: 32px;
  position: relative;
  display: block;
  border: 1px solid rgba(163, 199, 224, 0.16);
  border-radius: var(--radius);
  background: rgba(163, 199, 224, 0.07);
}

.stripIcon::before,
.stripIcon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.stripIconMap::before {
  left: 6px;
  top: 14px;
  width: 20px;
  height: 4px;
  transform: rotate(20deg);
  background: var(--mint);
}

.stripIconMap::after {
  right: 6px;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--red);
}

.stripIconPulse::before {
  left: 6px;
  right: 6px;
  top: 14px;
  height: 3px;
  background: var(--amber);
}

.stripIconPulse::after {
  left: 14px;
  top: 8px;
  width: 7px;
  height: 16px;
  background: var(--mint);
}

.stripIconReport::before {
  left: 7px;
  right: 7px;
  top: 9px;
  height: 3px;
  background: var(--cream-soft);
  box-shadow: 0 6px 0 rgba(201, 219, 234, 0.36), 0 12px 0 rgba(201, 219, 234, 0.2);
}

.stripIconGate::before {
  left: 8px;
  top: 13px;
  width: 16px;
  height: 10px;
  border: 2px solid var(--mint);
}

.stripIconGate::after {
  left: 11px;
  top: 7px;
  width: 10px;
  height: 12px;
  border: 2px solid var(--amber);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.demoAnalysisShell {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  gap: 12px;
  align-items: stretch;
}

.demoMapPanel,
.demoInsightPanel,
.demoNarrative,
.demoDaily,
.demoDrivers {
  border: 1px solid rgba(163, 199, 224, 0.16);
  border-radius: var(--radius);
  background: rgba(12, 27, 41, 0.78);
  box-shadow: 0 18px 42px rgba(3, 10, 20, 0.26);
}

.demoMapPanel {
  min-width: 0;
  overflow: hidden;
}

.demoPanelTop {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(163, 199, 224, 0.14);
  background: rgba(5, 14, 24, 0.5);
}

.demoPanelTop strong {
  display: block;
  margin-top: 5px;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
}

.demoNetworkFocus {
  display: block;
  margin-top: 6px;
  color: var(--cream-muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.demoGradePill {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(163, 199, 224, 0.16);
  background: rgba(163, 199, 224, 0.08);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
}

.demoGradePill.is-green { border-color: rgba(57, 212, 155, 0.34); background: rgba(57, 212, 155, 0.14); }
.demoGradePill.is-yellow { border-color: rgba(241, 211, 79, 0.38); background: rgba(241, 211, 79, 0.14); color: rgba(255, 241, 189, 0.98); }
.demoGradePill.is-orange { border-color: rgba(240, 170, 68, 0.42); background: rgba(240, 170, 68, 0.16); color: rgba(255, 225, 183, 0.98); }
.demoGradePill.is-red { border-color: rgba(255, 115, 108, 0.42); background: rgba(255, 115, 108, 0.15); color: rgba(255, 226, 225, 0.98); }

.demoModeBar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(163, 199, 224, 0.12);
}

.demoModeBar button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(163, 199, 224, 0.14);
  border-radius: var(--radius);
  background: rgba(163, 199, 224, 0.06);
  color: var(--cream-soft);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.demoModeBar button.is-active {
  border-color: rgba(85, 212, 246, 0.42);
  background: rgba(85, 212, 246, 0.16);
  color: var(--cream);
}

.demoMapViewport {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #07131e;
}

.demoLeafletMap {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #07131e;
}

.demoLeafletMap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 550;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 19, 29, 0.12), transparent 28%, rgba(8, 19, 29, 0.22)),
    radial-gradient(circle at 24% 18%, rgba(85, 212, 246, 0.12), transparent 34%);
  mix-blend-mode: multiply;
}

.demoLeafletMap .leaflet-tile-pane {
  filter: saturate(0.82) contrast(0.96) brightness(0.92);
}

.demoLeafletMap .leaflet-control-zoom {
  border: 1px solid rgba(163, 199, 224, 0.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(3, 10, 20, 0.24);
}

.demoLeafletMap .leaflet-control-zoom a {
  width: 34px;
  height: 34px;
  border: 0;
  background: rgba(8, 19, 29, 0.86);
  color: var(--cream);
  line-height: 34px;
}

.demoLeafletMap .leaflet-control-zoom a:hover {
  background: rgba(85, 212, 246, 0.2);
  color: var(--cream);
}

.demoLeafletMap .leaflet-control-attribution {
  background: rgba(8, 19, 29, 0.72);
  color: rgba(241, 247, 252, 0.62);
  font-size: 0.62rem;
}

.demoLeafletMap .leaflet-control-attribution a {
  color: rgba(85, 212, 246, 0.82);
}

.demoHotspotPin {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(8, 19, 29, 0.72);
  background: var(--green);
  color: #06121c;
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow:
    0 0 0 7px rgba(8, 19, 29, 0.2),
    0 12px 24px rgba(3, 10, 20, 0.28);
}

.demoHotspotPin.is-yellow { background: var(--amber); }
.demoHotspotPin.is-orange { background: var(--copper); }
.demoHotspotPin.is-red { background: var(--red); color: var(--cream); }

.demoMetricTag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border: 1px solid rgba(85, 212, 246, 0.28);
  border-radius: 999px;
  background: rgba(8, 19, 29, 0.78);
  color: var(--cream);
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(3, 10, 20, 0.24);
  white-space: nowrap;
}

.demoMetricTag.is-strong {
  border-color: rgba(85, 212, 246, 0.5);
  background: rgba(8, 19, 29, 0.9);
}

.demoSpotPopup .leaflet-popup-content-wrapper,
.demoSpotPopup .leaflet-popup-tip {
  border: 1px solid rgba(85, 212, 246, 0.24);
  background: rgba(8, 19, 29, 0.94);
  color: var(--cream);
  box-shadow: 0 20px 44px rgba(3, 10, 20, 0.32);
}

.demoSpotPopup .leaflet-popup-content {
  min-width: 180px;
  margin: 12px 14px;
  display: grid;
  gap: 5px;
  font-size: 0.82rem;
}

.demoSpotPopup strong {
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
}

.demoSpotPopup span {
  color: var(--cream-soft);
}

.demoMapEmpty {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 19, 29, 0.72);
  color: var(--cream-soft);
  font-weight: 900;
}

.demoMapEmpty[hidden] {
  display: none;
}

.demoInsightPanel {
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.demoSnapshotMeta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--cream-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.demoMetricGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.demoMetricGrid article,
.demoDetailCard {
  border: 1px solid rgba(163, 199, 224, 0.14);
  border-radius: var(--radius);
  background: rgba(163, 199, 224, 0.06);
}

.demoMetricGrid article {
  padding: 12px;
}

.demoMetricGrid span,
.demoDetailMeta span {
  color: var(--cream-muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.demoMetricGrid strong {
  display: block;
  margin-top: 6px;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
}

.demoDetailCard {
  padding: 16px;
}

.demoDetailCard h3 {
  margin: 8px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.2;
}

.demoDetailCard p {
  margin: 8px 0 0;
  color: var(--cream-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.demoDetailMeta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.demoDetailMeta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: var(--radius);
  background: rgba(8, 19, 29, 0.5);
}

.demoDriverList {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.demoDriverList li {
  color: var(--cream-soft);
  font-size: 0.88rem;
  line-height: 1.35;
}

.demoHotspotList {
  display: grid;
  gap: 8px;
}

.demoHotspotButton {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(163, 199, 224, 0.14);
  border-radius: var(--radius);
  background: rgba(163, 199, 224, 0.06);
  color: var(--cream);
  text-align: left;
  cursor: pointer;
}

.demoHotspotButton span {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #06121c;
  font-weight: 900;
}

.demoHotspotButton.is-yellow span { background: var(--amber); }
.demoHotspotButton.is-orange span { background: var(--copper); }
.demoHotspotButton.is-red span { background: var(--red); }

.demoHotspotButton strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.92rem;
}

.demoHotspotButton small {
  color: var(--cream-muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.demoHotspotButton:hover,
.demoHotspotButton.is-selected {
  border-color: rgba(85, 212, 246, 0.36);
  background: rgba(85, 212, 246, 0.12);
}

.demoBelowGrid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) minmax(260px, 0.72fr);
  gap: 12px;
}

.demoNarrative,
.demoDaily,
.demoDrivers {
  padding: 16px;
}

.demoNarrative p {
  margin: 10px 0 0;
  color: var(--cream-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.demoDaily,
.demoDrivers {
  display: grid;
  align-content: start;
  gap: 9px;
}

.demoDailyRow {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  align-items: center;
}

.demoDailyRow strong {
  color: var(--cream);
}

.demoDailyRow span {
  color: var(--cream-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.demoDailyRow i {
  grid-column: 1 / -1;
  height: 7px;
  border-radius: 999px;
  background: rgba(163, 199, 224, 0.16);
  overflow: hidden;
}

.demoDailyRow i::before {
  content: "";
  display: block;
  width: var(--bar, 30%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--amber));
}

.demoDriverRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(163, 199, 224, 0.06);
}

.demoDriverRow strong {
  min-width: 0;
  color: var(--cream);
  font-size: 0.9rem;
}

.demoDriverRow span {
  flex: 0 0 auto;
  color: var(--cream-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.demoDriverRow.is-yellow { box-shadow: inset 3px 0 0 var(--amber); }
.demoDriverRow.is-orange { box-shadow: inset 3px 0 0 var(--copper); }
.demoDriverRow.is-red { box-shadow: inset 3px 0 0 var(--red); }
.demoDriverRow.is-green { box-shadow: inset 3px 0 0 var(--green); }

.contentSection {
  padding-top: 104px;
  scroll-margin-top: 124px;
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.appGallerySection,
.siteFooter {
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}

.sectionIntro {
  max-width: 760px;
}

.sectionIntroWide {
  max-width: 920px;
}

.sectionEyebrow,
.panelEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sectionEyebrow::before,
.panelEyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(241, 211, 79, 0.64);
}

.sectionIntro h2 {
  margin: 16px 0 0;
  max-width: 820px;
  font-family: "Sora", sans-serif;
  font-size: 3.1rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.solutionTabs {
  margin-top: 28px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(163, 199, 224, 0.14);
  border-radius: var(--radius);
  background: rgba(163, 199, 224, 0.06);
}

.solutionTab,
.authModeButton {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--cream-soft);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0 15px;
}

.solutionTab.is-active,
.authModeButton.is-active {
  color: var(--ink);
  background: var(--mint);
}

.solutionStage {
  margin-top: 18px;
}

.solutionPane {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: 14px;
  align-items: stretch;
}

.solutionPane.is-active .solutionCopy,
.solutionPane.is-active .solutionShowcase {
  animation: panelContentEnter 440ms var(--ease-out-expo) both;
}

.solutionPane.is-active .solutionShowcase {
  animation-delay: 70ms;
}

.solutionCopy {
  padding: 24px;
  border-left: 2px solid var(--copper);
}

.solutionCopy h3,
.guideStep h3,
.authCard h3 {
  margin: 14px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.75rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.solutionCopy p,
.aboutNarrative p,
.authLead,
.guideStep p {
  margin: 12px 0 0;
  color: var(--cream-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.solutionShowcase {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(163, 199, 224, 0.16);
  border-radius: var(--radius);
  background: rgba(12, 27, 41, 0.74);
  box-shadow: var(--shadow);
}

.floatingInspector {
  position: absolute;
  right: 18px;
  top: 18px;
  width: min(280px, calc(100% - 36px));
  padding: 16px;
  backdrop-filter: blur(16px);
}

.floatingInspector strong {
  display: block;
  margin-top: 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
}

.floatingInspector p {
  margin: 8px 0 0;
  color: var(--cream-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.severityScale span {
  height: 8px;
  border-radius: 999px;
}

.severityScale span:nth-child(1) { background: var(--green); }
.severityScale span:nth-child(2) { background: var(--amber); }
.severityScale span:nth-child(3) { background: var(--copper); }
.severityScale span:nth-child(4) { background: var(--red); }

.analysisShowcase {
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 14px;
  background:
    linear-gradient(rgba(163, 199, 224, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 199, 224, 0.035) 1px, transparent 1px),
    rgba(12, 27, 41, 0.74);
  background-size: 42px 42px;
}

.analysisToolbarMock {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.flowCard {
  padding: 18px;
}

.flowCard span {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
}

.flowCard strong {
  display: block;
  margin-top: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.analysisGraph {
  min-height: 210px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 20px;
  border: 1px solid rgba(163, 199, 224, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 19, 29, 0.68);
}

.deliveryShowcase {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.8fr);
  gap: 14px;
  align-items: stretch;
}

.reportSheetMock,
.videoTileMock {
  padding: 18px;
}

.reportSheetMock {
  display: grid;
  align-content: start;
  gap: 13px;
  background: linear-gradient(180deg, rgba(251, 253, 252, 0.97), rgba(242, 247, 248, 0.95));
  color: rgba(18, 31, 37, 0.96);
}

.reportHeaderMock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(43, 63, 73, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reportHeaderMock strong {
  color: rgba(18, 31, 37, 0.96);
  background: rgba(57, 212, 155, 0.24);
  padding: 5px 8px;
  border-radius: var(--radius);
}

.reportTitleLine,
.reportTextLine {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(23, 23, 19, 0.16);
}

.reportTitleLine {
  width: 72%;
  height: 16px;
  background: rgba(23, 23, 19, 0.32);
}

.reportTextLine {
  width: 74%;
}

.reportTextLine.is-wide {
  width: 92%;
}

.reportChart,
.reportMapMini {
  min-height: 150px;
  border-radius: var(--radius);
  background: rgba(23, 23, 19, 0.08);
}

.reportChart {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 14px;
}

.reportMapMini {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 23, 19, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 19, 0.08) 1px, transparent 1px),
    rgba(23, 23, 19, 0.06);
  background-size: 22px 22px;
}

.reportMapMini span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
}

.reportMapMini span:nth-child(1) {
  left: 58%;
  top: 32%;
}

.reportMapMini span:nth-child(2) {
  left: 34%;
  top: 62%;
  background: var(--amber);
}

.videoTileMock {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(240, 170, 68, 0.14), transparent 44%),
    rgba(12, 27, 41, 0.84);
}

.playButtonMock {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 12px rgba(163, 199, 224, 0.12);
}

.playButtonMock::before {
  content: "";
  margin-left: 5px;
  border-left: 18px solid var(--ink);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.videoTileMock strong {
  margin-top: 18px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.videoTileMock p {
  margin: 8px 0 0;
  max-width: 240px;
  color: var(--cream-soft);
  line-height: 1.45;
}

.appGallerySection {
  padding-top: 104px;
}

.appGallery {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 12px;
}

.galleryShot {
  min-height: 300px;
  padding: 16px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
}

.galleryShot strong {
  display: block;
  max-width: 430px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1.22;
}

.galleryMapMini {
  position: relative;
  min-height: 190px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(rgba(163, 199, 224, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 199, 224, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #d6e4ea, #9fb8c6);
  background-size: 32px 32px;
}

.galleryMapMini .gridLine {
  height: 4px;
}

.galleryMapMini .lineOne {
  width: 58%;
}

.galleryMapMini .lineTwo {
  width: 44%;
}

.galleryMapMini .mapHotspot {
  width: 28px;
  height: 28px;
}

.timelineCardMock {
  min-height: 190px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 22px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(163, 199, 224, 0.04) 1px, transparent 1px),
    rgba(163, 199, 224, 0.06);
  background-size: 26px 26px;
}

.timelineCardMock span:nth-child(1) { height: 30%; }
.timelineCardMock span:nth-child(2) { height: 52%; }
.timelineCardMock span:nth-child(3) { height: 78%; }
.timelineCardMock span:nth-child(4) { height: 64%; }
.timelineCardMock span:nth-child(5) { height: 92%; background: linear-gradient(180deg, var(--copper), rgba(240, 170, 68, 0.2)); }

.gateListMock {
  min-height: 190px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.gateListMock span {
  justify-content: space-between;
  min-height: 48px;
}

.gateListMock span::after {
  content: "Oppgrader";
  color: var(--amber);
}

.planGrid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.planCard {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.planCard.is-featured {
  border-color: rgba(241, 211, 79, 0.44);
  background:
    linear-gradient(135deg, rgba(240, 170, 68, 0.14), transparent 42%),
    rgba(12, 27, 41, 0.9);
}

.planCardHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.planCardHead h3 {
  margin: 10px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0;
}

.planBadge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border-radius: var(--radius);
  border: 1px solid rgba(241, 211, 79, 0.26);
  background: rgba(241, 211, 79, 0.11);
  color: rgba(255, 234, 172, 0.96);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.planBadgeMuted {
  color: var(--cream-soft);
  border-color: rgba(163, 199, 224, 0.14);
  background: rgba(163, 199, 224, 0.065);
}

.planPriceBlock {
  display: grid;
  gap: 7px;
}

.planPrice {
  font-family: "Sora", sans-serif;
  font-size: 2.45rem;
  line-height: 1;
  letter-spacing: 0;
}

.detailList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.detailList li {
  position: relative;
  padding-left: 18px;
  color: var(--cream-soft);
  font-size: 0.92rem;
  line-height: 1.48;
}

.detailList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
}

.planFeatureRow {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.featurePill {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(163, 199, 224, 0.14);
  background: rgba(163, 199, 224, 0.065);
  color: var(--cream-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.featurePill.is-on {
  border-color: rgba(85, 212, 246, 0.28);
  color: var(--cream);
}

.featurePill.is-off {
  color: rgba(183, 205, 224, 0.44);
  text-decoration: line-through;
}

.planAction,
.submitButton {
  width: 100%;
  border: 0;
}

.sectionNote {
  margin: 18px 0 0;
  display: inline-flex;
}

.aboutGrid,
.accessGrid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 14px;
  align-items: start;
}

.aboutNarrative {
  padding-right: 20px;
}

.aboutNarrative p {
  margin: 0;
  max-width: 620px;
  font-size: 1.18rem;
}

.aboutCards {
  display: grid;
  gap: 10px;
}

.aboutCard {
  padding: 18px;
}

.aboutCard strong {
  display: block;
  margin-top: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.28;
}

.accessGuide,
.authShell {
  padding: 18px;
}

.accessGuide {
  display: grid;
  gap: 12px;
}

.guideStep {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(163, 199, 224, 0.14);
}

.guideStep:first-child {
  padding-top: 0;
  border-top: 0;
}

.guideIndex {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(240, 170, 68, 0.28);
  color: rgba(255, 224, 166, 0.94);
  background: rgba(240, 170, 68, 0.1);
}

.guideStep h3 {
  margin-top: 0;
  font-size: 1.28rem;
}

.guideStep p {
  font-size: 0.94rem;
}

.authModeSwitch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(163, 199, 224, 0.14);
  border-radius: var(--radius);
  background: rgba(163, 199, 224, 0.06);
}

.authPanel {
  margin-top: 16px;
}

.authCard {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(163, 199, 224, 0.15);
  background: rgba(8, 19, 29, 0.58);
}

.field {
  margin-top: 15px;
}

.field label {
  display: block;
  margin-bottom: 8px;
}

.field input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border-radius: var(--radius);
  border: 1px solid rgba(163, 199, 224, 0.16);
  background: rgba(163, 199, 224, 0.07);
  color: var(--cream);
  font-size: 0.96rem;
}

.field input:focus {
  border-color: rgba(85, 212, 246, 0.48);
  box-shadow: 0 0 0 4px rgba(85, 212, 246, 0.09);
}

.twoColumnField {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.passwordRow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.togglePassword {
  min-width: 70px;
  padding: 0 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(163, 199, 224, 0.16);
  background: rgba(163, 199, 224, 0.07);
  color: var(--cream-soft);
  cursor: pointer;
  font-weight: 800;
}

.formMessage {
  margin-top: 14px;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.45;
}

.formMessage.is-error {
  border: 1px solid rgba(255, 115, 108, 0.34);
  background: rgba(255, 115, 108, 0.13);
  color: rgba(255, 230, 226, 0.96);
}

.formMessage.is-success {
  border: 1px solid rgba(57, 212, 155, 0.34);
  background: rgba(57, 212, 155, 0.12);
  color: rgba(235, 253, 240, 0.96);
}

.submitButton {
  margin-top: 18px;
}

.authFoot {
  margin: 13px 0 0;
  color: var(--cream-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.siteFooter {
  width: min(calc(100% - 32px), var(--max));
  margin: 80px auto 34px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(163, 199, 224, 0.14);
}

.siteFooterBrand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.siteFooterBrand img {
  width: 34px;
  height: 34px;
}

.siteFooterBrand strong {
  display: block;
}

.siteFooterBrand span {
  display: block;
  margin-top: 2px;
  color: var(--cream-muted);
  font-size: 0.86rem;
}

.siteFooterLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.siteFooterLinks a {
  color: var(--cream-soft);
  text-decoration: none;
  font-weight: 700;
}

@keyframes sceneEnter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes copyEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFloat {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-7px) scale(1.035);
  }
}

@keyframes logoOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.82);
  }
  72%,
  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

@keyframes videoEnter {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes videoGlow {
  from {
    transform: translateX(-3%) translateY(2%) scale(1);
  }
  to {
    transform: translateX(3%) translateY(-2%) scale(1.04);
  }
}

@keyframes panelContentEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.988);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes traceSweep {
  0%,
  100% {
    opacity: 0.22;
    clip-path: inset(0 100% 0 0);
  }
  46%,
  70% {
    opacity: 0.82;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.68;
  }
  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes mapDrift {
  from {
    transform: translateX(-2%) translateY(0);
  }
  to {
    transform: translateX(2%) translateY(-2%);
  }
}

@keyframes weatherSweep {
  from {
    opacity: 0.22;
    transform: translateX(-10px) rotate(24deg);
  }
  to {
    opacity: 0.42;
    transform: translateX(18px) rotate(28deg);
  }
}

@keyframes hotspotPulse {
  0%, 100% {
    box-shadow:
      0 0 0 7px rgba(255, 115, 108, 0.14),
      0 14px 28px rgba(3, 10, 20, 0.26);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(255, 115, 108, 0.04),
      0 18px 34px rgba(3, 10, 20, 0.34);
  }
}

@keyframes timelineFill {
  from {
    width: 34%;
  }
  to {
    width: 74%;
  }
}

@keyframes knobDrift {
  from {
    left: 34%;
  }
  to {
    left: 74%;
  }
}

@media (max-width: 1180px) {
  .siteHeader {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .siteTabs,
  .siteUtility,
  .siteActions {
    width: 100%;
    justify-content: flex-start;
  }

  .siteUtility {
    flex-wrap: wrap;
  }

  .heroProductScene {
    width: min(100%, var(--max));
    min-height: clamp(560px, 68vh, 700px);
  }

  .heroBrandShowcase {
    grid-template-columns: minmax(300px, 0.86fr) minmax(360px, 1.14fr);
    grid-template-areas:
      "copy video"
      "proof proof";
    gap: clamp(18px, 3vw, 34px);
    padding: clamp(28px, 4vw, 44px);
  }

  .heroCopyPanel h1 {
    font-size: clamp(3.35rem, 5.6vw, 5.6rem);
  }

  .heroAnimatedLogo {
    width: 94px;
    height: 94px;
  }

  .heroAnimatedLogo img {
    width: 48px;
    height: 48px;
  }

  .heroDashboard {
    grid-template-columns: minmax(0, 1fr);
  }

  .heroSidebar {
    display: none;
  }

  .heroInsightPanel {
    position: absolute;
    right: 24px;
    top: 78px;
    width: min(310px, calc(100% - 48px));
    backdrop-filter: blur(16px);
  }

  .heroMapStage {
    min-height: 620px;
  }

  .productStrip,
  .planGrid,
  .appGallery,
  .aboutGrid,
  .accessGrid {
    grid-template-columns: 1fr 1fr;
  }

  .demoAnalysisShell,
  .demoBelowGrid {
    grid-template-columns: 1fr;
  }

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

  .solutionCopy {
    padding: 0 0 0 18px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 188px;
  }

  .siteHeader,
  .landingMain,
  .siteFooter {
    width: min(calc(100% - 20px), var(--max));
  }

  .siteHeader {
    top: 10px;
    margin-top: 10px;
  }

  .siteActions {
    flex-direction: column;
    align-items: stretch;
  }

  .siteUtility,
  .landingLanguageForm,
  .landingLanguageSelect {
    width: 100%;
  }

  .landingLanguageSelect {
    justify-content: space-between;
  }

  .landingLanguageSelect select {
    max-width: none;
  }

  .headerAction {
    width: 100%;
  }

  .heroSection {
    padding: 24px 10px 34px;
    gap: 12px;
  }

  .heroSection::after {
    background:
      linear-gradient(180deg, rgba(8, 19, 29, 0.68) 0%, rgba(8, 19, 29, 0.4) 34%, rgba(8, 19, 29, 0.94) 82%);
  }

  .heroProductScene {
    width: min(100%, var(--max));
    min-height: 860px;
  }

  .heroBrandShowcase {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "video"
      "proof";
    grid-template-rows: auto auto auto;
    align-content: start;
    padding: 14px;
    gap: 12px;
  }

  .heroCopyPanel {
    grid-area: copy;
    max-width: none;
    gap: 10px;
    padding: 14px;
  }

  .heroAnimatedLogo {
    width: 82px;
    height: 82px;
  }

  .heroAnimatedLogo img {
    width: 42px;
    height: 42px;
  }

  .heroCopyPanel h1 {
    max-width: 360px;
    font-size: 3.05rem;
    letter-spacing: -0.06em;
  }

  .heroCopyPanel p {
    max-width: 360px;
    font-size: 0.92rem;
  }

  .heroSignalStats {
    display: none;
  }

  .heroVideoPanel {
    grid-area: video;
    justify-self: stretch;
    align-self: start;
    width: 100%;
    padding: 8px;
  }

  .heroVideoTop,
  .heroVideoCaption {
    font-size: 0.68rem;
  }

  .heroChromeBar {
    grid-template-columns: 1fr;
    align-content: start;
    height: 94px;
    gap: 8px;
  }

  .heroChromeTabs {
    justify-content: flex-start;
    overflow: hidden;
  }

  .heroChromeStatus {
    display: none;
  }

  .heroAppChrome {
    grid-template-rows: 94px 1fr;
  }

  .heroMapStage {
    min-height: 560px;
  }

  .heroInsightPanel {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 70px;
    width: auto;
  }

  .heroInsightPanel h3 {
    font-size: 1.1rem;
  }

  .miniForecast {
    min-height: 72px;
  }

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

  .heroProofRail article {
    padding: 11px 12px;
  }

  .productStrip,
  .demoAnalysisShell,
  .demoBelowGrid,
  .planGrid,
  .appGallery,
  .aboutGrid,
  .accessGrid,
  .deliveryShowcase,
  .analysisFlowGrid,
  .heroControlGrid,
  .insightMetrics,
  .reportSplit,
  .twoColumnField {
    grid-template-columns: 1fr;
  }

  .contentSection,
  .appGallerySection {
    padding-top: 78px;
  }

  .sectionIntro h2 {
    font-size: 2.05rem;
  }

  .solutionShowcase,
  .productMapLarge,
  .demoMapViewport {
    min-height: 440px;
  }

  .analysisGraph,
  .galleryMapMini,
  .timelineCardMock,
  .gateListMock {
    min-height: 160px;
  }

  .floatingInspector {
    left: 14px;
    right: 14px;
    top: 14px;
    width: auto;
  }

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

@media (max-width: 460px) {
  .heroCopyPanel h1 {
    font-size: 2.55rem;
  }

  .heroActions {
    flex-direction: column;
  }

  .heroButton {
    width: 100%;
  }

  .siteBrandKicker {
    display: none;
  }

  .mapLegendMock {
    display: none;
  }
}

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

  .scrollReveal,
  .scrollReveal[data-reveal-kind] {
    opacity: 1 !important;
    transform: none !important;
  }

  .heroBrandShowcase::before,
  .heroNetworkRibbon {
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
