:root {
  --page: #05070a;
  --page-2: #091018;
  --panel: rgba(9, 20, 32, 0.78);
  --panel-2: rgba(14, 27, 42, 0.9);
  --line: rgba(110, 184, 255, 0.22);
  --line-strong: rgba(110, 184, 255, 0.42);
  --text: #f7fbff;
  --soft: #c2d3e5;
  --muted: #8fa6bb;
  --blue: #2f8fff;
  --cyan: #71d5ff;
  --green: #36d781;
  --amber: #f7aa2f;
  --violet: #9b8cff;
  --rose: #ff5c7a;
  --shell: 1180px;
  --nav: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font: 400 16px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 82% 0%, rgba(47, 143, 255, 0.14), transparent 30%),
    radial-gradient(circle at 12% 46%, rgba(54, 215, 129, 0.06), transparent 28%),
    linear-gradient(180deg, #05070a 0%, #091018 48%, #05070a 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  background: none;
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

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

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  margin: 12px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07111f;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--nav);
  border-bottom: 1px solid transparent;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), backdrop-filter 200ms var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 7, 10, 0.86);
  border-color: rgba(110, 184, 255, 0.14);
  backdrop-filter: blur(18px) saturate(150%);
}

.site-header.is-open {
  height: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  height: var(--nav);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand > span:last-child span {
  color: var(--cyan);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  border: 1px solid rgba(142, 221, 255, 0.58);
  border-radius: 8px;
  background: linear-gradient(135deg, #237fff, #25c99a);
  box-shadow: 0 0 28px rgba(47, 143, 255, 0.42);
}

.brand-mark svg {
  width: 18px;
  height: 18px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  color: var(--soft);
  font-size: 13px;
  font-weight: 600;
}

.primary-nav a {
  padding: 7px 0;
  border-bottom: 1px solid transparent;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: #fff;
  border-color: rgba(113, 213, 255, 0.62);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  position: relative;
  white-space: nowrap;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), opacity 180ms var(--ease);
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button[aria-disabled="true"],
.button.is-disabled,
.button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
  box-shadow: none;
}

.button.is-loading {
  color: transparent;
  pointer-events: none;
}

.button.is-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

.button svg {
  width: 17px;
  height: 17px;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #2f8fff 0%, #1eb5ff 58%, #27d192 100%);
  box-shadow: 0 16px 42px rgba(47, 143, 255, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.23);
}

.button-outline {
  color: #f5faff;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline:hover {
  border-color: rgba(113, 213, 255, 0.7);
  background: rgba(113, 213, 255, 0.09);
}

.header-cta {
  min-height: 38px;
  padding-inline: 16px;
  font-size: 13px;
}

.header-secondary {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 13px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background 160ms var(--ease), border-color 160ms var(--ease);
}

.menu-button:hover,
.menu-button[aria-expanded="true"] {
  border-color: rgba(113, 213, 255, 0.7);
  background: rgba(113, 213, 255, 0.1);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.mobile-nav {
  display: none;
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
  padding: 10px 14px 16px;
  border: 1px solid rgba(110, 184, 255, 0.18);
  border-radius: 0 0 8px 8px;
  background: rgba(5, 7, 10, 0.96);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
}

.mobile-nav a {
  display: block;
  padding: 11px 0;
  color: var(--soft);
  font-size: 15px;
  font-weight: 800;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: #fff;
}

.mobile-nav .mobile-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 8px;
  color: #fff;
  border: 1px solid rgba(113, 213, 255, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, #2f8fff 0%, #1eb5ff 58%, #27d192 100%);
}

.hero {
  position: relative;
  min-height: clamp(690px, 94svh, 900px);
  padding: calc(var(--nav) + 30px) 0 88px;
  overflow: hidden;
}

.space-layer,
.space-layer img,
.space-layer canvas,
.hero-tint {
  position: absolute;
  inset: 0;
}

.space-layer {
  overflow: hidden;
}

.space-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.72;
  filter: saturate(112%) contrast(105%);
}

.space-layer canvas {
  width: 100%;
  height: 100%;
  opacity: 0.52;
}

.hero-tint {
  background:
    radial-gradient(ellipse at 74% 48%, rgba(47, 143, 255, 0.2), transparent 34%),
    radial-gradient(circle at 18% 20%, rgba(54, 215, 129, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(5, 7, 10, 0.97) 0%, rgba(5, 7, 10, 0.66) 42%, rgba(5, 7, 10, 0.16) 70%, rgba(5, 7, 10, 0.7) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.36) 0%, rgba(5, 7, 10, 0.1) 48%, rgba(5, 7, 10, 0.94) 100%);
}

.orbital-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(113, 213, 255, 0.8), transparent);
  box-shadow: 0 0 18px rgba(47, 143, 255, 0.34);
  opacity: 0.46;
}

.orbital-line-a {
  width: 540px;
  right: 2%;
  top: 18%;
  transform: rotate(-8deg);
}

.orbital-line-b {
  width: 440px;
  left: 35%;
  top: 36%;
  transform: rotate(14deg);
}

.orbital-line-c {
  width: 360px;
  right: 18%;
  bottom: 24%;
  transform: rotate(-16deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(430px, 540px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
}

.hero-copy {
  max-width: 540px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #e8f7ff;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow {
  padding: 7px 13px 7px 10px;
  border: 1px solid rgba(113, 213, 255, 0.42);
  border-radius: 999px;
  background: rgba(7, 35, 67, 0.68);
  box-shadow: 0 0 30px rgba(47, 143, 255, 0.18);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(113, 213, 255, 0.8);
}

.hero h1 {
  margin: 0;
  font-size: 58px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 strong {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #b8ecff 0%, #4fb8ff 44%, #2f8fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 42px rgba(47, 143, 255, 0.16);
}

.hero-lede {
  margin: 20px 0 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.58;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-proof svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(47, 143, 255, 0.42));
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.hero-metrics div {
  min-height: 82px;
  padding: 12px;
  border: 1px solid rgba(113, 213, 255, 0.22);
  border-radius: 8px;
  background: rgba(4, 13, 24, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.hero-metrics strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.14;
}

.hero-metrics span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.dashboard-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(760px, 84vw);
  height: min(760px, 84vw);
  transform: translate(-50%, -48%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 143, 255, 0.34), rgba(47, 143, 255, 0.14) 34%, transparent 68%);
  filter: blur(22px);
}

.dashboard-card {
  position: absolute;
  right: -10px;
  top: 26px;
  width: min(650px, 100%);
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(113, 213, 255, 0.54);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(8, 25, 49, 0.94), rgba(4, 12, 24, 0.82));
  box-shadow: var(--shadow), 0 0 76px rgba(47, 143, 255, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: perspective(1100px) rotateY(-7deg) rotateX(2deg);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 260ms var(--ease);
}

.hero-visual:hover .dashboard-card {
  border-color: rgba(113, 213, 255, 0.78);
  box-shadow: var(--shadow), 0 0 92px rgba(47, 143, 255, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg) translateY(-4px);
}

.dashboard-card img {
  width: 100%;
  border-radius: 6px;
}

.status-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
  padding: 12px 14px;
  border: 1px solid rgba(113, 213, 255, 0.3);
  border-radius: 8px;
  background: rgba(4, 14, 28, 0.82);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.status-chip > span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.status-chip strong,
.status-chip small {
  display: block;
}

.status-chip strong {
  font-size: 14px;
  line-height: 1.1;
}

.status-chip small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.chip-online {
  left: 0;
  top: 150px;
}

.chip-online > span {
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(54, 215, 129, 0.12), 0 0 20px rgba(54, 215, 129, 0.5);
}

.chip-alert {
  right: 24px;
  bottom: 78px;
}

.chip-alert > span {
  background: var(--amber);
  box-shadow: 0 0 0 7px rgba(247, 170, 47, 0.12), 0 0 20px rgba(247, 170, 47, 0.5);
}

.impact-strip {
  position: relative;
  z-index: 5;
  margin-top: -54px;
  padding-bottom: 78px;
}

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

.impact-grid article,
.feature-grid article,
.screen-panel,
.workflow-grid article,
.final-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12, 23, 35, 0.9), rgba(7, 14, 22, 0.86));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.impact-grid article,
.feature-grid article,
.workflow-grid article,
.vendor-grid span {
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.impact-grid article:hover,
.feature-grid article:hover,
.workflow-grid article:hover,
.vendor-grid span:hover {
  border-color: rgba(113, 213, 255, 0.48);
  background: linear-gradient(180deg, rgba(13, 30, 47, 0.94), rgba(8, 18, 29, 0.9));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), 0 0 40px rgba(47, 143, 255, 0.08);
  transform: translateY(-2px);
}

.impact-grid article {
  display: flex;
  gap: 13px;
  min-height: 126px;
  padding: 18px;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  color: var(--cyan);
  border-radius: 8px;
  background: rgba(47, 143, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(113, 213, 255, 0.12);
}

.icon-box svg {
  width: 21px;
  height: 21px;
}

.icon-amber {
  color: var(--amber);
  background: rgba(247, 170, 47, 0.13);
}

.icon-violet {
  color: var(--violet);
  background: rgba(155, 140, 255, 0.13);
}

.impact-grid h2,
.feature-grid h3,
.workflow-grid h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.impact-grid p,
.feature-grid p,
.section-copy p,
.workflow-grid p,
.compatibility p,
.final-card p {
  margin: 8px 0 0;
  color: var(--soft);
}

.impact-grid p {
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 790px;
  margin-bottom: 30px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-head h2,
.section-copy h2,
.compatibility h2,
.final-card h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

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

.feature-grid article {
  min-height: 218px;
  padding: 22px;
}

.feature-grid .icon-box {
  margin-bottom: 32px;
}

.outage-section {
  background:
    radial-gradient(circle at 22% 38%, rgba(47, 143, 255, 0.1), transparent 30%),
    radial-gradient(circle at 88% 68%, rgba(247, 170, 47, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(5, 7, 10, 0), rgba(8, 16, 25, 0.84) 46%, rgba(5, 7, 10, 0));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 56px;
  align-items: center;
}

.screen-panel {
  padding: 10px;
  box-shadow: var(--shadow), 0 0 80px rgba(47, 143, 255, 0.12);
}

.screen-panel img {
  width: 100%;
  border-radius: 6px;
}

.section-copy {
  max-width: 540px;
}

.section-copy p,
.compatibility p,
.final-card p {
  font-size: 17px;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--soft);
  font-weight: 650;
}

.check-list span {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(54, 215, 129, 0.1);
}

.workflow-section {
  padding-bottom: 76px;
}

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

.workflow-grid article {
  min-height: 230px;
  padding: 24px;
}

.workflow-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.workflow-grid h3 {
  font-size: 23px;
}

.compatibility-section {
  padding-top: 34px;
}

.compatibility {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}

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

.vendor-grid span {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 12px;
  color: #eaf7ff;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 23, 35, 0.78);
  font-weight: 850;
  text-align: center;
}

.final-cta {
  padding: 24px 0 92px;
}

.final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 32px;
  background:
    radial-gradient(circle at 78% 18%, rgba(54, 215, 129, 0.18), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(155, 140, 255, 0.15), transparent 28%),
    linear-gradient(120deg, rgba(12, 66, 122, 0.76), rgba(7, 14, 22, 0.96)),
    url("/images/orbital-network-earth.png") center bottom / cover no-repeat;
}

.final-card > div:first-child {
  max-width: 680px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
}

.site-footer {
  padding: 28px 0 34px;
  border-top: 1px solid rgba(110, 184, 255, 0.14);
  background: #05070a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
}

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

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

  .space-layer canvas {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .compatibility {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .section-head h2,
  .section-copy h2,
  .compatibility h2,
  .final-card h2 {
    font-size: 42px;
  }

  .hero-visual {
    min-height: 490px;
  }

  .dashboard-card {
    left: 7%;
    right: auto;
    width: min(700px, 88%);
  }

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

@media (max-width: 860px) {
  :root {
    --nav: 62px;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open {
    height: 100svh;
    background: #05070a;
    backdrop-filter: none;
    transition: none;
  }

  .site-header.is-open .mobile-nav {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav) + 26px) 0 68px;
  }

  .feature-grid,
  .workflow-grid,
  .vendor-grid {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .section-copy h2,
  .compatibility h2,
  .final-card h2 {
    font-size: 38px;
  }

  .final-card,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .space-layer img {
    object-position: 61% bottom;
    opacity: 0.66;
  }

  .hero-tint {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.78) 0%, rgba(5, 7, 10, 0.48) 42%, rgba(5, 7, 10, 0.95) 100%),
      linear-gradient(90deg, rgba(5, 7, 10, 0.9), rgba(5, 7, 10, 0.4));
  }

  .orbital-line {
    display: none;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 1.06;
  }

  .hero-lede {
    font-size: 15px;
    margin-top: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    width: 100%;
    min-height: 42px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero-proof {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .hero-metrics div {
    min-height: auto;
    padding: 11px 12px;
  }

  .hero-metrics strong {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 250px;
    margin-top: 6px;
  }

  .dashboard-card {
    top: 10px;
    left: 0;
    width: 100%;
    padding: 7px;
    transform: none;
  }

  .status-chip {
    min-width: 0;
    padding: 10px 11px;
  }

  .chip-online {
    left: 10px;
    top: auto;
    bottom: 8px;
  }

  .chip-alert {
    display: none;
  }

  .impact-strip {
    margin-top: -28px;
    padding-bottom: 54px;
  }

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

  .impact-grid article {
    min-height: auto;
    padding: 16px;
  }

  .section {
    padding: 68px 0;
  }

  .section-head h2,
  .section-copy h2,
  .compatibility h2,
  .final-card h2 {
    font-size: 32px;
  }

  .feature-grid article,
  .workflow-grid article {
    min-height: auto;
  }

  .feature-grid .icon-box,
  .workflow-grid span {
    margin-bottom: 32px;
  }

  .screen-panel {
    padding: 7px;
  }

  .section-copy p,
  .compatibility p,
  .final-card p {
    font-size: 15px;
  }

  .final-card {
    padding: 22px;
  }
}
