.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;
}

.page-home {
  background: #0d1424;
}

.page-home::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(29, 211, 255, 0.06), transparent 18%),
    radial-gradient(circle at 50% 72%, rgba(95, 120, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(12, 18, 34, 0.98), rgba(12, 18, 34, 0.98));
  opacity: 1;
}

.page-home::after {
  opacity: 0.1;
  background-size: 88px 88px;
}

.page-home .wrapper {
  padding-bottom: 32px;
}

.page-home .content {
  padding-top: 8px;
}

.page-home article {
  width: 100%;
}

.page-home .s-header {
  padding-top: 4px;
}

.page-home .s-header__wrap {
  width: min(2000px, calc(100vw - 48px));
  padding: 16px 22px;
  border-radius: 12px;
  border-color: rgba(126, 152, 192, 0.08);
  background:
    linear-gradient(180deg, rgba(28, 35, 54, 0.9), rgba(28, 35, 54, 0.88)),
    rgba(20, 26, 42, 0.92);
  box-shadow: none;
}

.page-home .s-header__logo img {
  width: 104px;
  filter: none;
}

.page-home .s-header__nav {
  gap: clamp(18px, 2vw, 42px);
}

.page-home .s-header__nav-link {
  color: rgba(242, 245, 251, 0.9);
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.page-home .s-header__nav-link::after {
  bottom: -14px;
}

.page-home .a-button--header-glow {
  min-height: 50px;
  padding-inline: 22px;
  border-color: rgba(59, 68, 91, 0.5);
  background: rgba(10, 12, 18, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.page-home .a-button--header-glow .a-button__text,
.page-home .a-button--hero .a-button__text,
.page-home .a-button--hero-secondary .a-button__text {
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.page-home .a-button--header-glow .a-button__dot,
.page-home .a-button--hero .a-button__dot,
.page-home .a-button--hero-secondary .a-button__dot {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(86, 230, 255, 0.98), transparent 44%),
    radial-gradient(circle at 68% 40%, rgba(126, 143, 255, 0.94), transparent 48%),
    radial-gradient(circle at 50% 72%, rgba(73, 160, 255, 0.9), transparent 54%);
  box-shadow: 0 0 22px rgba(96, 152, 255, 0.36);
}

.page-home .a-button--hero {
  min-height: 52px;
  padding-inline: 24px;
  color: #121828;
  border: 0;
  background: linear-gradient(180deg, #f7f9fc, #dde6ef);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 20px 48px rgba(0, 0, 0, 0.24);
}

.page-home .a-button--hero-secondary {
  min-height: 52px;
  padding-inline: 24px;
  border-color: rgba(106, 135, 184, 0.14);
  background:
    linear-gradient(180deg, rgba(28, 36, 58, 0.94), rgba(18, 24, 38, 0.98)),
    rgba(13, 18, 31, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.22);
}

.home-stage {
  position: relative;
  min-height: 400vh;
  margin-top: 8px;
}

.home-stage__sticky {
  position: sticky;
  top: 96px;
  height: calc(100vh - 116px);
  min-height: 760px;
  width: min(1840px, calc(100vw - 48px));
  margin: 0 auto;
  overflow: hidden;
}

.home-stage__progress {
  position: absolute;
  top: 22px;
  left: 10px;
  right: 10px;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.home-stage.is-progress-visible .home-stage__progress {
  opacity: 1;
  transform: translateY(0);
}

.home-stage__progress-step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
}

.home-stage__progress-step span {
  color: rgba(229, 234, 244, 0.7);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.home-stage__progress-step i {
  position: relative;
  display: block;
  height: 1px;
  background: rgba(168, 182, 211, 0.42);
  border-bottom: 1px dotted rgba(168, 182, 211, 0.42);
}

.home-stage__progress-step i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(102, 125, 161, 0.32);
  transform: translateY(-50%);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.home-stage__progress-step.is-active i::after,
.home-stage__progress-step.is-complete i::after {
  background:
    linear-gradient(135deg, rgba(81, 237, 255, 0.98), rgba(124, 137, 255, 0.96));
  box-shadow: 0 0 20px rgba(94, 139, 255, 0.34);
}

.home-stage__progress-step.is-active i::after {
  transform: translateY(-50%) scale(1.35);
}

.home-stage__orb-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(64vw, 1080px);
  height: min(64vw, 1080px);
  transform: translate(-50%, -48%) scale(1);
  transition:
    top 0.8s ease,
    width 0.8s ease,
    height 0.8s ease,
    transform 0.8s ease,
    filter 0.7s ease,
    opacity 0.5s ease;
}

.home-stage__orb-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 50%, rgba(19, 30, 56, 0.92) 0%, rgba(13, 20, 36, 0.9) 40%, rgba(13, 20, 36, 0.18) 68%, transparent 80%),
    radial-gradient(circle at 34% 35%, rgba(124, 137, 255, 0.16), transparent 30%),
    radial-gradient(circle at 68% 70%, rgba(81, 237, 255, 0.16), transparent 28%);
  filter: blur(18px);
  transition: inset 0.8s ease, filter 0.8s ease, opacity 0.8s ease;
}

.home-stage__orb-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-stage__panel {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.home-stage__panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.home-stage__panel--hero {
  text-align: center;
}

.home-stage__alert {
  position: absolute;
  top: 54px;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  background: rgba(30, 38, 58, 0.7);
  color: rgba(236, 240, 247, 0.92);
  transform: translateX(-50%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.home-stage__alert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(24, 209, 246, 0.92);
  color: #07111a;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  font-weight: 700;
}

.home-stage__alert-text {
  font-size: 0.96rem;
  line-height: 1.1;
}

.home-stage__alert-arrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.18rem;
  color: rgba(61, 208, 255, 0.92);
}

.home-stage__hero-copy {
  position: absolute;
  top: 30%;
  left: 50%;
  z-index: 4;
  width: min(1020px, calc(100% - 56px));
  transform: translateX(-50%);
}

.home-stage__hero-title,
.home-stage__section-title,
.home-suite__title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.home-stage__hero-title {
  font-size: clamp(4rem, 8vw, 5.95rem);
  color: rgba(247, 249, 252, 0.98);
}

.home-stage__hero-subtitle,
.home-stage__section-text {
  margin: 20px auto 0;
  max-width: 780px;
  color: rgba(233, 238, 246, 0.86);
  font-size: clamp(1.16rem, 1.55vw, 1.58rem);
  line-height: 1.28;
}

.home-stage__hero-copy .a-button--hero {
  margin-top: 30px;
}

.home-stage__brand-row {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 76px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 32px;
}

.home-stage__brand {
  position: relative;
  min-height: 54px;
  color: rgba(247, 249, 252, 0.94);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.home-stage__brand::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 1px;
  height: 62px;
  border-right: 1px dotted rgba(173, 186, 214, 0.44);
  transform: translateY(-50%);
}

.home-stage__brand:last-child::after {
  display: none;
}

.home-stage__scroll {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 12px;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.home-stage__scroll span {
  display: block;
  height: 1px;
  border-bottom: 1px dotted rgba(160, 175, 204, 0.44);
}

.home-stage__scroll p {
  margin: 0;
  color: rgba(177, 190, 215, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-stage__left-copy {
  position: absolute;
  left: 44px;
  bottom: 0;
  z-index: 4;
  width: min(640px, calc(50% - 74px));
}

.home-stage__eyebrow,
.home-stage__mini-label {
  margin: 0 0 18px;
  color: rgba(165, 182, 214, 0.84);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-stage__section-title {
  font-size: clamp(3.3rem, 5.1vw, 5.3rem);
  color: rgba(247, 249, 252, 0.98);
}

.home-stage__section-text {
  margin-left: 0;
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.55;
}

.home-stage__right-column {
  position: absolute;
  top: 44px;
  right: 44px;
  z-index: 4;
  width: min(560px, calc(50% - 74px));
  display: grid;
  gap: 16px;
}

.home-stage__card {
  position: relative;
  overflow: hidden;
  padding: 26px 28px;
  border-radius: 20px;
  border: 1px solid rgba(96, 116, 154, 0.12);
  background:
    linear-gradient(180deg, rgba(29, 37, 58, 0.88), rgba(24, 31, 49, 0.96)),
    rgba(20, 27, 43, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

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

.home-stage__timeline-grid div {
  position: relative;
  padding-left: 12px;
  border-left: 1px dotted rgba(170, 184, 213, 0.38);
}

.home-stage__timeline-grid span,
.home-stage__stack-list span:first-child {
  display: block;
  color: rgba(169, 183, 211, 0.84);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.84rem;
}

.home-stage__timeline-grid strong,
.home-stage__metric-top strong {
  display: block;
  margin-top: 18px;
  color: rgba(247, 249, 252, 0.98);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.home-stage__timeline-grid small {
  display: block;
  margin-top: 8px;
  color: rgba(169, 183, 211, 0.74);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.home-stage__metric-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.home-stage__metric-bars {
  display: grid;
  gap: 3px;
  width: 64px;
}

.home-stage__metric-bars span {
  display: block;
  height: 8px;
  background: linear-gradient(90deg, rgba(81, 237, 255, 0.58), rgba(124, 137, 255, 0.58));
}

.home-stage__metric-bars span:last-child {
  background: rgba(242, 244, 248, 0.88);
}

.home-stage__metric-top strong {
  font-size: clamp(4rem, 6vw, 5rem);
}

.home-stage__card p,
.home-stage__chamber-copy p {
  margin: 18px 0 0;
  color: rgba(231, 236, 245, 0.82);
  font-size: 1rem;
  line-height: 1.38;
}

.home-stage__card--mini {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 18px;
}

.home-stage__mini-icon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  width: 54px;
  height: 54px;
  padding: 9px;
  border: 1px dotted rgba(170, 184, 213, 0.48);
  border-radius: 12px;
}

.home-stage__mini-icon span {
  border: 1px solid rgba(234, 239, 247, 0.86);
  border-radius: 999px;
}

.home-stage__right-column--core {
  width: min(560px, calc(50% - 74px));
  top: 76px;
}

.home-stage__stack-list {
  display: grid;
  gap: 10px;
}

.home-stage__stack-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(100, 126, 170, 0.16);
  background: rgba(15, 21, 34, 0.5);
  color: rgba(244, 247, 251, 0.92);
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
}

.home-stage__card--chamber {
  display: grid;
  grid-template-columns: 138px 1fr;
  align-items: center;
  gap: 24px;
  min-height: 248px;
}

.home-stage__chamber-ring {
  position: relative;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(20, 28, 46, 0.2) 28%, rgba(11, 17, 29, 0.02) 30%),
    conic-gradient(
      from 30deg,
      rgba(81, 237, 255, 0.92),
      rgba(94, 189, 255, 0.7),
      rgba(78, 147, 255, 0.72),
      rgba(124, 137, 255, 0.86),
      rgba(193, 213, 255, 0.7),
      rgba(81, 237, 255, 0.92)
    );
  box-shadow:
    inset 0 0 0 18px rgba(13, 19, 33, 0.94),
    0 0 44px rgba(74, 116, 255, 0.18);
}

.home-stage__chamber-ring::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dotted rgba(175, 189, 219, 0.52);
}

.home-stage__chamber-copy span {
  display: block;
  color: rgba(168, 184, 214, 0.8);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-stage__chamber-copy strong {
  display: block;
  margin-top: 12px;
  color: rgba(247, 249, 252, 0.98);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.1rem, 2.8vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
}

.home-stage__slides {
  position: relative;
  z-index: 0;
}

.home-stage__slide {
  height: 100vh;
}

.home-stage[data-active-stage="0"] .home-stage__orb-wrap {
  width: min(64vw, 1080px);
  height: min(64vw, 1080px);
  top: 50%;
  transform: translate(-50%, -46%) scale(1);
}

.home-stage[data-active-stage="1"] .home-stage__orb-wrap {
  width: min(68vw, 1140px);
  height: min(68vw, 1140px);
  top: 50%;
  transform: translate(-46%, -49%) scale(1.12);
}

.home-stage[data-active-stage="2"] .home-stage__orb-wrap {
  width: min(68vw, 1120px);
  height: min(68vw, 1120px);
  top: 52%;
  transform: translate(-43%, -50%) scale(1.04);
}

.home-stage[data-active-stage="3"] .home-stage__orb-wrap {
  width: min(92vw, 1780px);
  height: min(56vh, 540px);
  top: 71%;
  transform: translate(-50%, -48%) scale(1.02);
  filter: saturate(1.08) brightness(1.03);
}

.home-stage[data-active-stage="3"] .home-stage__orb-glow {
  inset: 18% 5% 4%;
  filter: blur(26px);
  opacity: 0.9;
}

.home-stage__panel--ground {
  text-align: center;
}

.home-stage__ground-copy {
  position: absolute;
  top: 13.5%;
  left: 50%;
  z-index: 4;
  width: min(1020px, calc(100% - 80px));
  transform: translateX(-50%);
  text-align: center;
}

.home-stage__ground-title {
  margin: 0;
  color: rgba(247, 249, 252, 0.98);
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.4rem, 5.6vw, 5.7rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.96;
}

.home-stage__ground-text {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(231, 236, 245, 0.84);
  font-size: clamp(1.08rem, 1.45vw, 1.42rem);
  line-height: 1.34;
}

.home-stage__ground-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.home-stage__ground-rule {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.home-stage__ground-rule span {
  display: block;
  height: 1px;
  border-bottom: 1px dotted rgba(160, 175, 204, 0.44);
}

.home-stage__ground-rule p {
  margin: 0;
  color: rgba(177, 190, 215, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-suite {
  position: relative;
  margin-top: -4vh;
  padding: 20px 0 80px;
  z-index: 2;
}

.home-suite__top {
  max-width: 980px;
  margin: 0 auto 24px;
  text-align: center;
}

.home-suite__title {
  font-size: clamp(2.2rem, 3.8vw, 4.1rem);
  color: rgba(247, 249, 252, 0.98);
}

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

.page-home .c-client-tile {
  min-height: 250px;
  text-align: center;
}

.page-home .module--cta {
  padding-top: 0;
}

.page-home .m-cta {
  text-align: center;
}

.page-home .m-cta__title,
.page-home .m-cta__text {
  margin-left: auto;
  margin-right: auto;
}

.page-home .m-cta__buttons {
  justify-content: center;
}

.page-home .s-footer__wrap {
  width: min(2000px, calc(100vw - 48px));
  padding: 28px;
  border-radius: 18px;
  border-color: rgba(104, 128, 171, 0.12);
  background:
    linear-gradient(180deg, rgba(18, 25, 39, 0.94), rgba(14, 20, 33, 0.98)),
    rgba(12, 17, 29, 0.98);
}

.home-ground-footer {
  padding-top: 18px;
}

.home-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.home-footer__masthead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.home-footer__top .m-cta__eyebrow {
  margin-bottom: 12px;
}

.home-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.home-footer__logo {
  width: 88px;
  flex: 0 0 auto;
}

.home-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.home-footer__panel {
  padding: 20px 22px;
  border: 1px solid rgba(104, 128, 171, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(27, 35, 54, 0.88), rgba(19, 25, 39, 0.96)),
    rgba(16, 22, 35, 0.9);
}

.home-footer__links,
.home-footer__meta {
  display: grid;
  gap: 10px;
}

.home-footer__meta p,
.home-footer__caption {
  margin: 0;
  color: rgba(177, 190, 215, 0.8);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-footer__meta p {
  text-transform: none;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.home-footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-footer__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(108, 132, 176, 0.16);
  color: rgba(238, 242, 248, 0.92);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  background: rgba(12, 18, 30, 0.6);
}

@media (max-width: 1320px) {
  .home-stage__brand {
    font-size: 1.5rem;
  }

  .home-stage__left-copy {
    width: min(560px, calc(50% - 48px));
  }

  .home-stage__right-column,
  .home-stage__right-column--core {
    width: min(500px, calc(50% - 48px));
  }
}

@media (max-width: 1100px) {
  .page-home .s-header__nav {
    gap: 18px;
  }

  .page-home .s-header__nav-link {
    font-size: 0.88rem;
  }

  .home-stage__sticky {
    min-height: 720px;
  }

  .home-stage__hero-title {
    font-size: clamp(3.6rem, 7vw, 5rem);
  }

  .home-stage__left-copy {
    left: 24px;
    width: min(500px, calc(50% - 28px));
  }

  .home-stage__right-column,
  .home-stage__right-column--core {
    right: 24px;
    width: min(420px, calc(50% - 28px));
  }

  .home-stage__card {
    padding: 22px;
  }

  .home-stage__brand-row,
  .home-suite__grid,
  .home-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stage__brand:nth-child(2)::after {
    display: none;
  }

  .home-stage__brand:nth-child(3)::after {
    display: block;
  }
}

@media (max-width: 900px) {
  .page-home .s-header__wrap {
    width: min(calc(100vw - 24px), 100%);
    padding: 14px 16px;
  }

  .page-home .s-header__button,
  .page-home .s-header__nav {
    display: none;
  }

  .page-home .s-header__toggle {
    display: block;
  }

  .home-stage {
    min-height: auto;
    padding-bottom: 24px;
  }

  .home-stage__sticky {
    position: relative;
    top: 0;
    height: auto;
    min-height: 0;
    width: min(calc(100vw - 24px), 100%);
    overflow: visible;
  }

  .home-stage__progress {
    display: none;
  }

  .home-stage__panel {
    position: relative;
    inset: auto;
    display: block;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    margin-top: 18px;
  }

  .home-stage__panel.is-active {
    display: block;
  }

  .home-stage__panel + .home-stage__panel {
    margin-top: 42px;
  }

  .home-stage__orb-wrap {
    position: relative;
    top: auto;
    left: auto;
    width: min(calc(100vw - 48px), 420px);
    height: min(calc(100vw - 48px), 420px);
    margin: 12px auto 0;
    transform: none;
  }

  .home-stage__hero-copy,
  .home-stage__left-copy,
  .home-stage__right-column,
  .home-stage__right-column--core,
  .home-stage__ground-copy {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    padding: 0 10px;
    text-align: center;
    transform: none;
  }

  .home-stage__hero-copy {
    margin-top: 18px;
    text-align: center;
    z-index: 4;
  }

  .home-stage[data-active-stage="0"] .home-stage__orb-wrap,
  .home-stage[data-active-stage="1"] .home-stage__orb-wrap,
  .home-stage[data-active-stage="2"] .home-stage__orb-wrap,
  .home-stage[data-active-stage="3"] .home-stage__orb-wrap {
    width: min(calc(100vw - 48px), 420px);
    height: min(calc(100vw - 48px), 420px);
    transform: none;
  }

  .home-stage[data-active-stage="3"] .home-stage__orb-glow {
    inset: 6%;
    filter: blur(36px);
  }

  .home-stage__hero-title {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
  }

  .home-stage__hero-subtitle,
  .home-stage__section-text {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .home-stage__alert {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: calc(100% - 12px);
    min-height: 0;
    margin: 0 auto 16px;
    padding: 10px 14px 10px 10px;
    gap: 10px;
    border-radius: 22px;
  }

  .home-stage__alert-text {
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .home-stage__alert-icon {
    width: 30px;
    height: 30px;
  }

  .home-stage__brand-row {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 26px;
    padding: 0 12px;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stage__brand {
    min-height: 0;
    padding-bottom: 0;
    font-size: 0.98rem;
    text-align: center;
  }

  .home-stage__brand::after {
    display: none;
  }

  .home-stage__scroll {
    display: none;
  }

  .home-stage__right-column,
  .home-stage__right-column--core,
  .home-stage__timeline-grid,
  .home-suite__grid,
  .home-footer__grid {
    grid-template-columns: 1fr;
  }

  .home-stage__ground-actions,
  .home-footer__masthead {
    flex-direction: column;
    align-items: center;
  }

  .home-stage__ground-actions,
  .page-home .m-cta__buttons {
    align-items: stretch;
  }

  .home-stage__left-copy,
  .home-stage__right-column,
  .home-stage__right-column--core,
  .home-stage__ground-copy {
    margin-top: 10px;
  }

  .home-stage__section-title,
  .home-stage__ground-title {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
  }

  .home-stage__card {
    padding: 18px;
    border-radius: 18px;
  }

  .home-stage__card p,
  .home-stage__chamber-copy p {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .home-stage__ground-copy {
    margin-top: 26px;
    text-align: center;
  }

  .home-stage__ground-rule {
    display: none;
  }

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

  .home-footer__logo {
    width: 76px;
  }

  .home-stage__card--chamber,
  .home-stage__card--mini {
    grid-template-columns: 1fr;
  }

  .home-stage__chamber-ring,
  .home-stage__mini-icon {
    margin: 0 auto;
  }

  .home-stage__slides {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-stage__brand-row {
    grid-template-columns: 1fr;
  }

  .home-stage__orb-wrap,
  .home-stage[data-active-stage="0"] .home-stage__orb-wrap,
  .home-stage[data-active-stage="1"] .home-stage__orb-wrap,
  .home-stage[data-active-stage="2"] .home-stage__orb-wrap,
  .home-stage[data-active-stage="3"] .home-stage__orb-wrap {
    width: min(calc(100vw - 44px), 360px);
    height: min(calc(100vw - 44px), 360px);
  }

  .home-stage__hero-title {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .home-stage__section-title,
  .home-stage__ground-title {
    font-size: clamp(2rem, 10.8vw, 2.7rem);
  }

  .home-stage__alert {
    width: 100%;
  }

  .home-stage__brand {
    font-size: 0.94rem;
  }

  .home-suite {
    padding-bottom: 56px;
  }

  .page-home .s-footer__wrap {
    width: min(calc(100vw - 24px), 100%);
    padding: 20px 18px;
  }
}
