.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: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  color: #171719;
  background: #ececec;
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.3);
  font-size: 13px;
  font-weight: 600;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.primaryButton:hover {
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

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

.hero {
  position: relative;
  display: flex;
  min-height: max(824px, calc(100svh - 76px));
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #000;
  border-bottom: 1px solid var(--line);
}

.heroArt {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -3%;
  width: 82%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24%);
  mask-image: linear-gradient(90deg, transparent 0, #000 24%);
}

.heroCopy {
  display: flex;
  max-width: 780px;
  align-items: flex-start;
  flex-direction: column;
}

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

.heroCopy h1 {
  max-width: 760px;
  font-size: clamp(4.7rem, 6vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.87;
}

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

.heroCopy > p {
  max-width: 570px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.heroCopy .primaryButton {
  margin-top: 34px;
}

.connectorStrip {
  background: var(--panel-alt);
  border-bottom: 1px solid var(--line);
}

.connectorStrip > .shell {
  display: grid;
  min-height: 108px;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: center;
}

.connectorStripLabel {
  color: #686d75;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.connectorStripIcons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.connectorStripIcons > span {
  position: relative;
  display: grid;
  min-height: 42px;
  color: var(--connector);
  place-items: center;
}

.connectorStripIcons > span + span::before {
  position: absolute;
  left: 0;
  width: 1px;
  height: 18px;
  background: var(--line);
  content: "";
}

.connectorStripIcons svg {
  width: 21px;
  height: 21px;
}

.connectorStripIcons b {
  color: #868b93;
  font-size: 10px;
  font-weight: 500;
}

.editorialIntro {
  padding: 160px 0 120px;
}

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

.editorialIntro h2,
.daySection h2,
.sectionTitle h2,
.knowledgeCopy h2,
.closingCta h2 {
  font-size: clamp(4rem, 6.5vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.93;
}

.editorialIntro p {
  max-width: 680px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.capabilities {
  padding-bottom: 140px;
}

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

.capability {
  display: flex;
  min-height: 520px;
  justify-content: space-between;
  flex-direction: column;
  padding: 38px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.capabilityMotif {
  position: relative;
  width: 100%;
  height: 150px;
  margin-bottom: 26px;
}

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

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

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

.motifNode {
  position: absolute;
  display: grid;
  color: var(--coral);
  background: var(--panel);
  border-radius: 0;
  box-shadow: 0 0 0 10px var(--panel);
  place-items: center;
}

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

.motifNode[data-position="1"] {
  left: 0;
  top: 57%;
}
.motifNode[data-position="2"] {
  left: 47%;
  top: 8%;
}
.motifNode[data-position="3"] {
  right: 0;
  top: 43%;
}
.motifNode[data-variant="act"][data-position="1"] {
  top: 12%;
}
.motifNode[data-variant="act"][data-position="2"] {
  top: 63%;
}
.motifNode[data-variant="act"][data-position="3"] {
  top: 20%;
}
.motifNode[data-variant="anticipate"][data-position="1"] {
  top: 49%;
}
.motifNode[data-variant="anticipate"][data-position="2"] {
  top: 8%;
}
.motifNode[data-variant="anticipate"][data-position="3"] {
  top: 34%;
}

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

.capabilityCopy h3 {
  max-width: 520px;
  margin-top: 35px;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.capabilityCopy p {
  max-width: 490px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.daySection {
  padding: 150px 0;
  background: var(--panel-alt);
  border-block: 1px solid var(--line);
}

.dayTimeline {
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.dayTimeline article {
  display: grid;
  min-height: 128px;
  grid-template-columns: 100px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.dayTimeline article > span {
  color: #71767f;
  font-size: 12px;
}

.dayTimeline article > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 180px;
  align-items: center;
}

.dayTimeline small {
  color: #ff6b66;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.dayTimeline h3 {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.dayTools {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ff6b66;
  justify-self: end;
}

.dayTools > svg {
  width: 25px;
  height: 25px;
}

.dayToolGroup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.dayToolGroup > i {
  display: grid;
  padding: 0;
  color: var(--tool-color);
  font-style: normal;
  place-items: center;
}

.dayToolPlus {
  width: 19px;
  height: 19px;
  margin: 0 12px;
  color: #b6bac0;
  stroke-width: 1.65;
}

.knowledgeSection {
  padding: 150px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.knowledgeCopy {
  max-width: 760px;
}

.knowledgeCopy > p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.knowledgeCopy li,
.knowledgeCopy > a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.knowledgeCopy li svg,
.knowledgeCopy > a {
  color: var(--coral);
}

.knowledgeCopy li svg {
  width: 15px;
  height: 15px;
}

.knowledgeCopy > a {
  width: fit-content;
  min-height: 40px;
  font-size: 12px;
}

.knowledgeCopy > a svg {
  width: 15px;
  height: 15px;
}

.integrationsSection {
  padding: 150px 0;
}

.sectionTitle {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.sectionTitle > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
}

.integrationChain {
  display: grid;
  gap: 54px;
  margin-top: 82px;
}

.integrationRow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.integrationGroup {
  display: contents;
}

.integrationIcon {
  display: flex;
  width: 98px;
  align-items: center;
  flex-direction: column;
  gap: 13px;
  color: var(--coral);
}

.integrationIcon svg {
  width: 38px;
  height: 38px;
}

.integrationIcon b {
  color: #9a9ea5;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.integrationPlus {
  width: 19px;
  height: 19px;
  margin: 0 clamp(10px, 2.2vw, 28px);
  color: #5f636a;
  stroke-width: 1.35;
}

.closingCta {
  display: grid;
  min-height: 850px;
  align-items: center;
  padding: 120px 0;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

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

.wordmark {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.closingCta h2 {
  margin-top: 28px;
  font-size: clamp(5rem, 8vw, 7.2rem);
  line-height: 0.85;
}

.closingCta p {
  margin-top: 28px;
  color: #81868e;
  font-size: 15px;
}

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

@media (max-width: 1050px) {
  .capabilities > .shell {
    grid-template-columns: 1fr;
  }

  .capability {
    min-height: 430px;
  }

  .connectorStrip > .shell {
    min-height: 112px;
  }
}

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

  .hero {
    min-height: 844px;
    align-items: flex-start;
    padding: 50px 0 430px;
  }

  .heroArt {
    top: auto;
    right: -32%;
    bottom: 0;
    width: 135%;
    height: 52%;
    object-position: 58% center;
    -webkit-mask-image: none;
    mask-image: none;
  }

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

  .connectorStrip > .shell {
    display: block;
    padding: 24px 0;
  }

  .connectorStripLabel {
    display: block;
    margin-bottom: 17px;
  }

  .editorialIntro,
  .daySection,
  .knowledgeSection,
  .integrationsSection {
    padding: 110px 0;
  }

  .capabilities {
    padding-bottom: 110px;
  }

  .capability {
    min-height: 470px;
    padding: 30px;
  }

  .dayTimeline article {
    grid-template-columns: 70px 1fr;
  }

  .dayTimeline article > div {
    grid-template-columns: 90px 1fr;
    padding: 25px 0;
  }

  .dayTools {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 17px;
  }

  .closingCta {
    min-height: 760px;
    padding: 100px 0;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 784px;
    padding: 38px 0 370px;
  }

  .heroArt {
    right: -47%;
    width: 160%;
    height: 46%;
  }

  .heroCopy h1 {
    font-size: 3.55rem;
  }

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

  .connectorStripIcons {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
  }

  .connectorStripIcons > span:nth-child(odd)::before {
    display: none;
  }

  .editorialIntro h2,
  .daySection h2,
  .sectionTitle h2,
  .knowledgeCopy h2 {
    font-size: 3.35rem;
  }

  .capability {
    min-height: 470px;
    padding: 28px 21px;
  }

  .capabilityMotif {
    height: 125px;
  }

  .motifNode {
    box-shadow: 0 0 0 7px var(--panel);
  }

  .motifNode svg {
    width: 24px;
    height: 24px;
  }

  .capabilityCopy h3 {
    font-size: 34px;
  }

  .dayTimeline {
    margin-top: 52px;
  }

  .dayTimeline article {
    grid-template-columns: 55px 1fr;
  }

  .dayTimeline article > div {
    display: block;
  }

  .dayTimeline h3 {
    margin-top: 9px;
    font-size: 19px;
  }

  .dayTools {
    margin-top: 16px;
  }

  .integrationChain {
    gap: 38px;
    margin-top: 58px;
  }
  .integrationIcon {
    width: calc((100% - 80px) / 6);
    min-width: 0;
    gap: 9px;
  }
  .integrationIcon svg {
    width: 27px;
    height: 27px;
  }
  .integrationIcon b {
    max-width: 48px;
    overflow: hidden;
    font-size: 8px;
    text-overflow: ellipsis;
  }
  .integrationPlus {
    width: 10px;
    height: 10px;
    margin: 0 3px;
  }

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

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