.page {
  --bg: #08090a;
  --panel: #101113;
  --panel-alt: #0c0d0f;
  --ink: #f7f8f8;
  --muted: #8a8f98;
  --line: rgba(255, 255, 255, 0.08);
  --coral: #ff5c57;
  min-width: 320px;
  overflow: clip;
  color: var(--ink);
  background: var(--bg);
}

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

.primaryButton {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.primaryButton {
  color: #171719;
  background: #ececec;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

.primaryButton:hover {
  background: #fff;
  transform: translateY(-2px);
}

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

.hero {
  position: relative;
  min-height: max(904px, calc(100svh - 76px));
  padding: 84px 0 560px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.heroArt {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 64%;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
}

.hero > .shell {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.betaLabel {
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero h1 {
  font-size: clamp(5.4rem, 8vw, 7.8rem);
  font-weight: 500;
  letter-spacing: -0.072em;
  line-height: 0.84;
}

.hero h1 em,
.controlIntro h2 em {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero > .shell > p {
  max-width: 670px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

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

.featureEquation {
  display: grid;
  width: min(660px, 100%);
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 44px;
}

.equationGroup {
  display: grid;
  min-width: 0;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.equationGroup:first-child {
  grid-template-columns: 1fr;
}

.equationGroup > i {
  display: grid;
  color: var(--coral);
  font-style: normal;
  place-items: center;
}

.equationPlus {
  width: 25px;
  height: 25px;
  color: #c4c7cc;
  stroke-width: 1.65;
}

.featureBands {
  padding: 60px 0 130px;
}

.featureBand {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 90px;
  align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}

.featureBand:nth-child(even) {
  grid-template-columns: minmax(420px, 1.18fr) minmax(0, 0.82fr);
}

.featureBand:nth-child(even) .featureCopy {
  order: 2;
}

.featureCopy > span,
.controlIntro > span {
  color: #ff6b66;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.featureCopy h2 {
  margin-top: 23px;
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.featureCopy > p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.featureCopy ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 28px 0 0;
  color: #c2c5ca;
  font-size: 12px;
  list-style: none;
}

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

.featureCopy li svg {
  width: 15px;
  height: 15px;
  color: var(--coral);
}

.featureSignal {
  position: relative;
  height: 280px;
}

.featureSignal > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.featureSignal path {
  fill: none;
  stroke: var(--coral);
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.featureSignal circle {
  fill: var(--coral);
}

.featureSignal > span {
  position: absolute;
  display: grid;
  color: var(--coral);
  background: var(--bg);
  box-shadow: 0 0 0 14px var(--bg);
  place-items: center;
}

.featureSignal > span svg {
  width: 32px;
  height: 32px;
}

.featureSignal > span[data-position="1"] {
  left: 2%;
  top: 57%;
}
.featureSignal > span[data-position="2"] {
  left: 47%;
  top: 12%;
}
.featureSignal > span[data-position="3"] {
  right: 2%;
  top: 52%;
}

.controlSection {
  padding: 160px 0 150px;
  background: var(--panel-alt);
  border-block: 1px solid var(--line);
  scroll-margin-top: 76px;
}

.controlLayout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(620px, 1.28fr);
  gap: 90px;
  align-items: start;
}

.controlIntro {
  padding-top: 12px;
}

.controlIntro h2 {
  margin-top: 27px;
  font-size: clamp(4rem, 5.2vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.controlIntro > p {
  max-width: 480px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.controlPrinciple {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 72px;
}

.controlPrinciple > i {
  display: block;
  width: 58px;
  height: 1px;
  flex: none;
  margin-top: 9px;
  background: var(--coral);
}

.controlPrinciple p {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
}

.controlPrinciple b {
  color: #e8e9ea;
  font-weight: 500;
}
.controlPrinciple span {
  color: #737880;
}

.permissionRoute {
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.permissionRoute > article {
  position: relative;
  display: grid;
  min-height: 140px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 29px 0 28px 85px;
  border-bottom: 1px solid var(--line);
}

.routeCord {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 13px;
  width: 48px;
  height: 560px;
  overflow: visible;
  pointer-events: none;
}

.routeCord path {
  fill: none;
  stroke: var(--coral);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.routeCord circle {
  fill: var(--panel-alt);
  stroke: var(--coral);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.routeCopy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.routeCopy small {
  color: #ff6b66;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.routeCopy strong {
  margin-top: 9px;
  color: #f1f2f2;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.routeCopy p {
  margin-top: 7px;
  color: #737880;
  font-size: 12px;
  line-height: 1.45;
}

.routePerson {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.routePerson > span {
  display: grid;
  width: 38px;
  height: 38px;
  color: #e5e6e7;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  font-size: 10px;
  place-items: center;
}

.routePerson > b {
  color: #b8bbc0;
  font-size: 11px;
  font-weight: 500;
}
.routePerson > svg {
  width: 17px;
  height: 17px;
  margin-left: 4px;
  color: #5865f2;
}

.routeSources {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 3px;
}

.routeSources > span {
  position: relative;
  display: grid;
  width: 29px;
  height: 29px;
  color: var(--route-color);
  place-items: center;
}

.routeSources > span > svg:first-child {
  width: 25px;
  height: 25px;
}
.routeSources > span > svg:last-child {
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 12px;
  height: 12px;
  color: #7ed391;
  stroke-width: 2.5;
}

.routeSources > .denied {
  color: #6f747b;
}
.denied b {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: line-through;
}
.routeSources > .denied > svg:last-child {
  color: var(--coral);
}

.routeDecision {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 2px 7px;
  color: #ff6b66;
  border-bottom: 1px solid var(--coral);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.routeDecision svg {
  width: 15px;
  height: 15px;
}

.routeRecord {
  display: flex;
  min-width: 105px;
  align-items: center;
  gap: 11px;
}

.routeRecord > svg {
  width: 19px;
  height: 19px;
  color: #7ed391;
  stroke-width: 2;
}
.routeRecord > span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.routeRecord b {
  color: #d9dbdd;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.routeRecord small {
  color: #666b72;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.permissionRoute > footer {
  display: grid;
  min-height: 64px;
  grid-template-columns: 160px 1fr;
  align-items: center;
  padding: 0 0 0 85px;
}

.permissionRoute > footer > span {
  color: #666b72;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.permissionRoute > footer p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  color: #777c84;
  font-size: 9px;
}

.permissionRoute > footer b {
  color: #b8bbc0;
  font-weight: 500;
}
.permissionRoute > footer i {
  display: block;
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.connectorsSection {
  padding: 130px 0;
  background: var(--bg);
}

.connectorsSection > .shell {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
  align-items: center;
}

.connectorsSection h2 {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.connectorsSection > .shell > div:first-child > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.connectorWall {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.connectorIcon {
  display: grid;
  flex: 0 0 auto;
  color: var(--connector);
  place-items: center;
}

.connectorIcon svg {
  width: 27px;
  height: 27px;
}

.connectorPlus {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: #9da1a8;
  stroke-width: 1.65;
}

.connectorBadge {
  display: grid;
  min-width: 90px;
  gap: 7px;
  color: var(--coral);
  place-items: center;
}

.connectorBadge svg {
  width: 28px;
  height: 28px;
}

.connectorBadge b {
  color: #c9ccd1;
  font-size: 11px;
  font-weight: 500;
}

.connectorBadge small {
  color: #79ce8a;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.connectorBadge.planned {
  color: #737880;
}

.connectorBadge.planned small {
  color: #e7b35e;
}

.closingCta {
  padding: 140px 0;
  text-align: center;
  background: var(--panel-alt);
  border-top: 1px solid var(--line);
}

.closingCta > .shell {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.closingCta > .shell > strong {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.closingCta h2 {
  margin-top: 28px;
  font-size: clamp(4.6rem, 7.5vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.87;
}

.closingCta .primaryButton {
  margin-top: 30px;
}

@media (max-width: 1050px) {
  .featureBand,
  .featureBand:nth-child(even) {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .featureBand:nth-child(even) .featureCopy {
    order: 0;
  }

  .featureCopy {
    max-width: 680px;
  }

  .featureBand:nth-child(even) .featureCopy {
    margin-left: auto;
  }

  .controlLayout {
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .controlIntro {
    max-width: 760px;
  }

  .controlPrinciple {
    margin-top: 48px;
  }

  .connectorsSection > .shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .shell {
    width: min(100% - 32px, 1200px);
  }

  .hero {
    min-height: 844px;
    padding: 50px 0 500px;
  }

  .heroArt {
    left: -40%;
    width: 180%;
    height: auto;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 14vw, 6rem);
  }

  .featureBands {
    padding-bottom: 80px;
  }

  .featureBand,
  .featureBand:nth-child(even) {
    gap: 42px;
    padding: 80px 0;
  }

  .featureSignal {
    height: 220px;
  }

  .controlSection {
    padding: 110px 0;
  }

  .controlIntro h2 {
    font-size: clamp(3.5rem, 11vw, 4.8rem);
  }

  .permissionRoute > article {
    min-height: 178px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 27px 0 25px 68px;
  }

  .routeCord {
    left: 7px;
    width: 45px;
    height: 712px;
  }

  .routePerson,
  .routeSources,
  .routeDecision,
  .routeRecord {
    justify-self: start;
    margin-top: 21px;
  }

  .permissionRoute > footer {
    display: block;
    min-height: 96px;
    padding: 21px 0 18px 68px;
  }

  .permissionRoute > footer p {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 12px;
    margin-top: 13px;
  }

  .connectorWall {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 22px 14px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 804px;
    padding: 42px 0 475px;
  }

  .heroArt {
    left: -40%;
    width: 180%;
    height: auto;
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero > .shell > p {
    font-size: 15px;
  }

  .heroActions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .featureEquation {
    margin-top: 32px;
  }

  .equationGroup > i svg {
    width: 30px;
    height: 30px;
  }

  .equationPlus {
    width: 16px;
    height: 16px;
  }

  .featureCopy h2 {
    font-size: 3.35rem;
  }

  .featureSignal {
    height: 170px;
  }

  .featureSignal > span {
    box-shadow: 0 0 0 9px var(--bg);
  }

  .featureSignal > span svg {
    width: 26px;
    height: 26px;
  }

  .controlSection {
    padding: 92px 0;
  }

  .controlIntro h2 {
    font-size: 3.35rem;
  }

  .controlIntro > p {
    font-size: 15px;
  }

  .permissionRoute > article {
    padding-right: 2px;
    padding-left: 56px;
  }

  .routeCord {
    left: 3px;
    width: 38px;
  }

  .routeCopy strong {
    font-size: 20px;
  }

  .routeCopy p {
    font-size: 11px;
  }

  .permissionRoute > footer {
    padding-left: 56px;
  }

  .permissionRoute > footer p {
    font-size: 8px;
  }

  .connectorsSection {
    padding: 95px 0;
  }

  .connectorsSection h2 {
    font-size: 42px;
  }

  .closingCta h2 {
    font-size: 4.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .primaryButton {
    transition: none;
  }
}
