:root {
  color-scheme: dark;
  --bg: #081b29;
  --surface: #0b2233;
  --ink: #f3f8fc;
  --muted: #99b4c8;
  --accent: #6bd9e4;
  --line: #f3f8fc16;
  --color-primary: #6bd9e4;
  --color-primary-content: #081b29;
  --color-base-100: #081b29;
  --color-base-200: #0b2233;
  --color-base-300: #123957;
  --color-base-content: #f3f8fc;
  font-family: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
select {
  font: inherit;
}
button,
a,
summary,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img {
  max-width: 100%;
  object-fit: contain;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
}
h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.15;
}
h3 {
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.25;
}
p {
  line-height: 1.7;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 6px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.accent {
  color: var(--accent);
}
.muted {
  color: var(--muted);
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.19em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 27px;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px #6bd9e440;
  display: inline-block;
  flex-shrink: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-200%);
  z-index: 100;
  background: var(--accent);
  color: var(--bg);
  padding: 14px;
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: relative;
  z-index: 10;
  padding-top: 24px;
}
.nav-shell {
  width: min(1320px, calc(100% - 64px));
  margin: auto;
  border: 1px solid var(--line);
  border-radius: 70px;
  min-height: 78px;
  padding: 15px 23px 15px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--surface);
}
.wordmark {
  display: inline-flex;
  flex-direction: column;
  font-family: Manrope, sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1.6px;
}
.wordmark span {
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  letter-spacing: 3px;
  font-weight: 500;
  margin-top: 7px;
}
.desktop-links {
  display: flex;
  gap: 32px;
  font-size: 12px;
  color: var(--muted);
}
.desktop-links a:hover,
.text-link:hover {
  color: var(--accent);
}
.btn {
  min-height: 44px;
  height: auto;
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
}
.nav-cta {
  background: var(--accent);
  color: var(--bg);
  border: 0;
  border-radius: 99px;
  padding: 12px 18px;
  font-size: 11px;
  gap: 25px;
}
.mobile-toggle {
  display: none;
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 24px;
  right: 24px;
  background: var(--surface);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.mobile-nav a {
  display: block;
  padding: 15px;
}
.hero-section {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  min-height: 730px;
  padding-block: 75px 80px;
  gap: 10px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  font-size: clamp(3.9rem, 6.5vw, 6.25rem);
  line-height: 1.045;
  letter-spacing: -0.068em;
  font-weight: 500;
}
.hero-description {
  max-width: 440px;
  margin-top: 29px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
}
.primary-btn {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--bg);
  border: 0;
  padding: 8px 8px 8px 22px;
  border-radius: 99px;
  gap: 20px;
  font-size: 12px;
}
.primary-btn:hover,
.nav-cta:hover {
  background: var(--ink);
}
.arrow-disc {
  display: inline-grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent);
  font-size: 20px;
}
.text-link {
  font-size: 11px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 43px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.09em;
}
.hero-foot span + span:before {
  content: "+";
  margin-right: 20px;
  color: var(--accent);
}
.orbital-scene {
  height: 560px;
  position: relative;
  isolation: isolate;
}
.orbit-grid {
  position: absolute;
  inset: -25px;
  background-image: radial-gradient(#499bea2f 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse, #000 30%, transparent 70%);
  z-index: -1;
}
.orbit {
  position: absolute;
  left: 50%;
  top: 49%;
  border: 1px solid #499bea22;
  border-radius: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.orbit-one {
  width: 330px;
  height: 330px;
}
.orbit-two {
  width: 465px;
  height: 465px;
  border-style: dashed;
}
.orbit-three {
  width: 560px;
  height: 560px;
  border-color: #499bea0d;
}
.core-position {
  position: absolute;
  left: 50%;
  top: 49%;
  translate: -50% -50%;
}
.core {
  height: 220px;
  width: 220px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(circle at 38% 20%, #123957, #0b2233 60%, #081b29);
  border: 1px solid #6bd9e445;
  box-shadow:
    0 0 100px #499bea0b,
    inset 0 0 24px #6bd9e410;
}
.core-caption {
  font-size: 8px;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.core-symbol {
  font-size: 80px;
  line-height: 1.1;
  color: var(--accent);
  font-weight: 400;
}
.core-label {
  font-family: Manrope, sans-serif;
  text-align: center;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}
.satellite {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #6bd9e426;
  border-radius: 18px;
  background: linear-gradient(135deg, #123957, #0b2233);
  padding: 17px 20px;
  box-shadow: 0 12px 30px #0003;
  font-size: 18px;
  letter-spacing: -0.025em;
  font-weight: 600;
  z-index: 2;
}
.satellite small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 4px;
}
.satellite:hover {
  border-color: var(--accent);
}
.sat-mia {
  top: 42px;
  left: 5%;
  rotate: -7deg;
}
.sat-madi {
  top: 95px;
  right: -1%;
  rotate: 8deg;
}
.sat-mac {
  top: 244px;
  left: -2%;
  flex-direction: column;
  gap: 0;
  rotate: -5deg;
  padding: 24px;
}
.product-name {
  font-family: Manrope, sans-serif;
  font-size: 32px;
  letter-spacing: -2px;
}
.sat-magda {
  bottom: 48px;
  left: 13%;
  rotate: 5deg;
}
.sat-maui {
  bottom: 110px;
  right: 0;
  rotate: -6deg;
  padding: 24px 29px;
}
.mini-label {
  position: absolute;
  right: 10px;
  top: -10px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 5px;
  font-size: 7px;
  letter-spacing: 1px;
  padding: 4px 7px;
}
.scene-caption {
  position: absolute;
  bottom: 1px;
  left: 50%;
  translate: -50% 0;
  white-space: nowrap;
  font-size: 8px;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
}
.replay {
  position: absolute;
  bottom: -35px;
  left: 50%;
  translate: -50% 0;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 10px;
  padding: 10px;
  min-height: 44px;
}
.domain-band {
  border-block: 1px solid var(--line);
  padding: 28px 0;
  background: var(--surface);
}
.domain-band span {
  font-size: 8px;
  letter-spacing: 0.11em;
  color: var(--muted);
  line-height: 1.9;
}
.domain-band strong {
  font-size: 11px;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ink);
}
.domain-band p {
  font-family: Manrope, sans-serif;
  font-size: 17px;
  color: var(--ink);
}
.domain-band b {
  font-weight: 400;
  color: #499bea;
  margin-inline: 20px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
  margin-bottom: 42px;
}
.section-heading > p {
  max-width: 325px;
  color: var(--muted);
  font-size: 12px;
  padding-bottom: 5px;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}
.filter-btn {
  border: 1px solid var(--line);
  border-radius: 99px;
  background: transparent;
  color: var(--ink);
  padding: 10px 18px;
  font-size: 11px;
  min-height: 40px;
  font-weight: 400;
}
.filter-btn[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.filter-btn span {
  border-radius: 99px;
  background: #081b2915;
  padding: 1px 6px;
  font-size: 9px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 29px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  scroll-margin-top: 30px;
  min-width: 0;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 31px;
  flex-wrap: wrap;
}
.product-title {
  font-family: Manrope, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.long-name {
  font-size: 19px;
}
.small-label {
  font-size: 7px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.status-badge {
  font-size: 7px;
  letter-spacing: 0.05em;
  border: 1px solid #6bd9e428;
  border-radius: 99px;
  background: #6bd9e409;
  color: var(--muted);
  padding: 5px 8px;
  height: auto;
  white-space: normal;
}
.product-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}
.product-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 12px;
}
.product-card .eyebrow {
  font-size: 8px;
  color: var(--accent);
  margin-bottom: 15px;
}
.capabilities {
  padding: 0;
  margin: 22px 0 24px;
  list-style: none;
  font-size: 11px;
  line-height: 2;
  color: var(--ink);
}
.capabilities li:before {
  content: "+";
  color: var(--accent);
  margin-right: 10px;
}
.card-link {
  border-top: 1px solid var(--line);
  padding-top: 19px;
  margin-top: auto;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
}
.card-link span {
  font-size: 21px;
}
.card-link:hover {
  color: var(--accent);
}
.product-note {
  font-size: 10px !important;
  color: var(--muted) !important;
  margin-bottom: 20px;
}
.featured {
  background: linear-gradient(140deg, #123957, #0b2233);
}
.mia-card {
  background: linear-gradient(160deg, #0b2233, #081b29);
}
.madi-card {
  background: linear-gradient(155deg, #123957, #081b29);
}
.maui-card {
  background: linear-gradient(155deg, #0b2233, #081b29);
}
.new-badge {
  background: var(--accent);
  color: var(--bg);
  border: 0;
  font-size: 8px;
  letter-spacing: 0.1em;
}
.roadmap-card {
  background: var(--surface);
  grid-column: span 1;
}
.roadmap-card:last-child {
  grid-column: span 2;
}
.mac-art {
  height: 165px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 17px;
}
.mac-art strong {
  grid-row: 1/3;
  grid-column: 2;
  font-size: 33px;
  background: #6bd9e410;
  border: 1px solid #6bd9e430;
  border-radius: 50%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 400;
}
.mac-art span {
  font-size: 9px;
  border: 1px solid #6bd9e420;
  padding: 12px 5px;
  text-align: center;
  border-radius: 8px;
}
.learning-art {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 9px;
  height: 180px;
  margin-bottom: 25px;
  padding-inline: 15px;
  rotate: -5deg;
}
.lesson-chip {
  background: #499bea0c;
  border: 1px solid #6bd9e427;
  padding: 13px 20px;
  border-radius: 10px;
  color: var(--accent);
  font-size: 12px;
}
.lesson-chip:nth-child(2) {
  translate: 0 -13px;
}
.lesson-chip:nth-child(3) {
  translate: 0 10px;
}
.lesson-chip:nth-child(4) {
  background: var(--accent);
  color: var(--bg);
}
.inventory-art {
  height: 180px;
  position: relative;
  margin-bottom: 25px;
}
.inventory-art div {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  width: 115px;
  height: 85px;
  border: 1px solid #6bd9e465;
  border-radius: 12px;
  transform: rotate(-30deg) skew(25deg);
  background: #499bea1c;
  top: 26px;
}
.inventory-art div:nth-child(2) {
  top: 53px;
  background: #499bea26;
}
.inventory-art div:nth-child(3) {
  top: 79px;
  background: #499bea39;
}
.inventory-art span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--muted);
  font-size: 9px;
}
.ecosystem-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.ecosystem-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 70px;
  align-items: center;
}
.connection-map {
  height: 340px;
  position: relative;
}
.connection-map svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
}
.connection {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
}
.connection.planned {
  stroke: #499bea;
  stroke-dasharray: 5 6;
}
.map-node {
  position: absolute;
  translate: -50% -50%;
  border: 1px solid #6bd9e440;
  background: var(--surface);
  border-radius: 15px;
  padding: 18px;
  text-align: center;
  font-size: 16px;
  font-family: Manrope, sans-serif;
  z-index: 1;
}
.map-node small {
  display: block;
  font-size: 8px;
  color: var(--muted);
  margin-top: 5px;
}
.map-mac {
  left: 25%;
  top: 50%;
  font-size: 36px;
  padding: 35px;
}
.map-mia {
  left: 75%;
  top: 17.65%;
  min-width: 120px;
}
.map-emp {
  left: 75%;
  top: 50%;
  font-size: 12px;
}
.map-magda {
  left: 75%;
  top: 82.35%;
  background: #123957;
  min-width: 120px;
}
.connection-copy h3 {
  font-size: 26px;
  margin-bottom: 18px;
}
.connection-copy > p {
  font-size: 12px;
  color: var(--muted);
}
.map-legend {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 10px;
  margin: 24px 0;
}
.map-legend i {
  display: inline-block;
  width: 25px;
  border-top: 2px solid var(--accent);
  margin-right: 9px;
  vertical-align: middle;
}
.map-legend .dashed {
  border-top: 2px dashed #499bea;
}
.independent {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 20px;
}
.independent > span {
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.independent p {
  font-size: 12px;
  margin-top: 10px;
}
.independent small {
  font-size: 9px;
  color: var(--muted);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.step-number {
  font-size: 48px;
  font-weight: 400;
  color: #499bea;
  letter-spacing: -0.05em;
}
.approach-grid article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.approach-grid h3 {
  font-size: 23px;
  margin: 17px 0 13px;
}
.approach-grid p {
  font-size: 12px;
  color: var(--muted);
  max-width: 310px;
}
.start-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  padding: 65px;
  border-radius: 26px;
  background: #123957;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.start-panel .eyebrow {
  font-size: 9px;
  color: var(--accent);
}
.start-panel h2 {
  font-size: clamp(2.8rem, 4.3vw, 4.2rem);
}
.start-panel h2 span {
  color: var(--accent);
}
.start-panel > div > p:not(.eyebrow) {
  font-size: 12px;
  margin-top: 27px;
  color: var(--ink);
}
.solution-picker {
  align-self: center;
}
.solution-picker label {
  font-family: Manrope, sans-serif;
  font-size: 20px;
  display: block;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}
.solution-picker .select {
  width: 100%;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid #6bd9e445;
  border-radius: 9px;
  font-size: 12px;
  padding: 14px;
  height: 50px;
}
.solution-picker .select option {
  background: var(--bg);
  color: var(--ink);
}
.solution-picker select:focus-visible,
.solution-picker button:focus-visible {
  outline-color: var(--accent);
}
#selection-summary {
  min-height: 70px;
  font-size: 12px;
  margin-top: 15px;
  line-height: 1.6;
}
.dark-btn {
  border-radius: 99px;
  background: var(--accent);
  color: var(--bg);
  border: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 23px;
  font-size: 12px;
}
.dark-btn:hover {
  background: var(--ink);
}
.contact-note {
  font-size: 10px !important;
  color: var(--muted);
  margin-top: 15px;
  line-height: 1.65;
}
#download-status {
  font-size: 11px;
  margin-top: 10px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  padding-top: 30px;
}
.faq-list .collapse {
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
}
.faq-list .collapse-title {
  font-size: 13px;
  padding: 22px 36px 22px 0;
  font-weight: 400;
}
.faq-list .collapse-content {
  padding-left: 0;
  font-size: 12px;
  color: var(--muted);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.site-footer p,
.site-footer > a:last-child {
  font-size: 10px;
  color: var(--muted);
}
@media (min-width: 1600px) {
  .hero-section {
    min-height: 850px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero-section {
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
  }
  .hero-copy h1 {
    font-size: 68px;
  }
  .orbital-scene {
    scale: 0.85;
    transform-origin: center;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 20px;
  }
  .product-card {
    padding: 23px;
  }
  .product-card h3 {
    font-size: 22px;
  }
  .small-label {
    display: none;
  }
  .domain-band b {
    margin-inline: 10px;
  }
  .start-panel {
    padding: 45px;
    gap: 40px;
  }
  .ecosystem-layout {
    gap: 35px;
  }
  .desktop-links {
    gap: 20px;
  }
  .nav-cta {
    font-size: 10px;
  }
  .orbit-three {
    display: none;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-shell {
    width: calc(100% - 32px);
    padding: 17px 23px;
  }
  .desktop-links,
  .nav-cta {
    display: none;
  }
  .mobile-toggle:not([hidden]) {
    display: flex;
    color: var(--ink);
    gap: 15px;
  }
  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 65px;
    padding-bottom: 35px;
  }
  .hero-copy h1 {
    font-size: clamp(58px, 10vw, 86px);
  }
  .hero-description {
    max-width: 480px;
  }
  .hero-actions {
    gap: 25px;
  }
  .orbital-scene {
    width: min(540px, 100%);
    margin: 25px auto 0;
    scale: 1;
    height: 500px;
  }
  .sat-mac {
    left: 0;
  }
  .sat-madi {
    right: 0;
  }
  .sat-maui {
    right: 2%;
  }
  .orbit-two {
    width: 430px;
    height: 430px;
  }
  .core {
    width: 200px;
    height: 200px;
  }
  .scene-caption {
    bottom: 15px;
  }
  .replay {
    bottom: -19px;
  }
  .hero-foot {
    margin-top: 32px;
  }
  .domain-band p {
    font-size: 12px;
  }
  .domain-band b {
    margin-inline: 7px;
  }
  .section {
    padding-block: 70px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .section-heading > p {
    max-width: 460px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .roadmap-card:last-child {
    grid-column: span 1;
  }
  .mac-art {
    height: 130px;
  }
  .learning-art,
  .inventory-art {
    height: 160px;
  }
  .ecosystem-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .connection-map {
    max-width: 620px;
    width: 100%;
    margin: auto;
  }
  .connection-copy {
    max-width: 540px;
  }
  .approach-grid {
    gap: 25px;
  }
  .approach-grid h3 {
    font-size: 20px;
  }
  .start-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .start-panel h2 {
    font-size: 52px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .site-footer {
    flex-wrap: wrap;
  }
  .site-footer p {
    order: 3;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero-section {
    padding-top: 48px;
  }
  .hero-copy h1 {
    font-size: 59px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-foot {
    gap: 12px;
    font-size: 7px;
  }
  .hero-foot span + span:before {
    margin-right: 12px;
  }
  .orbital-scene {
    height: 420px;
    margin-top: 40px;
  }
  .orbit-one {
    width: 255px;
    height: 255px;
  }
  .orbit-two {
    width: 330px;
    height: 330px;
  }
  .core {
    width: 165px;
    height: 165px;
  }
  .core-symbol {
    font-size: 58px;
  }
  .core-label {
    font-size: 16px;
  }
  .core-caption {
    font-size: 7px;
  }
  .satellite {
    padding: 12px;
    gap: 8px;
    font-size: 14px;
    border-radius: 12px;
  }
  .satellite img {
    width: 31px;
    height: 32px;
  }
  .satellite small {
    font-size: 8px;
  }
  .sat-mia {
    top: 25px;
    left: 1%;
  }
  .sat-madi {
    top: 80px;
    right: 0;
  }
  .sat-mac {
    top: 190px;
    left: 0;
    padding: 16px 12px;
  }
  .product-name {
    font-size: 25px;
  }
  .sat-magda {
    bottom: 40px;
    left: 9%;
  }
  .sat-maui {
    bottom: 88px;
    right: 0;
    padding: 17px 20px;
  }
  .scene-caption {
    font-size: 6px;
    bottom: 3px;
  }
  .replay {
    bottom: -34px;
  }
  .domain-band {
    margin-top: 30px;
  }
  .domain-band p {
    line-height: 2;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 27px;
  }
  .product-card h3 {
    font-size: 27px;
  }
  .small-label {
    display: block;
  }
  .mac-art {
    height: 150px;
  }
  .learning-art,
  .inventory-art {
    height: 155px;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .approach-grid h3 {
    font-size: 23px;
  }
  .approach-grid p {
    max-width: 100%;
  }
  .start-panel {
    padding: 30px 24px;
    border-radius: 20px;
  }
  .start-panel h2 {
    font-size: 43px;
  }
  .solution-picker label {
    font-size: 19px;
  }
  .map-node {
    padding: 12px;
    font-size: 14px;
  }
  .map-mac {
    font-size: 25px;
    left: 20%;
    padding: 25px 13px;
  }
  .map-emp {
    font-size: 9px;
  }
  .map-mia,
  .map-magda {
    min-width: 95px;
  }
  .connection-map {
    height: 290px;
  }
  .filter-btn {
    font-size: 10px;
    padding: 8px 13px;
  }
  .wordmark {
    font-size: 26px;
  }
  .section-heading .eyebrow {
    margin-bottom: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .replay {
    display: none;
  }
}
