:root {
  --ink: #0a0a0a;
  --paper: #f2f0ea;
  --signal: #ef2b2d;
  --line: rgba(242, 240, 234, 0.22);
  --page: min(94vw, 1600px);
  --ticker-height: 52px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  overflow-x: hidden;
}

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

.masthead {
  width: var(--page);
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pod-mark {
  width: 30px;
  height: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  transform: rotate(45deg);
}

.pod-mark i {
  display: block;
  background: currentColor;
  border-radius: 3px;
}

.masthead__status {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 0.68rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.16em;
}

.status-light {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  animation: pulse 1.8s steps(2, end) infinite;
}

.hero {
  width: var(--page);
  min-height: calc(100svh - 86px - var(--ticker-height));
  margin: 0 auto;
  padding: clamp(34px, 6vh, 80px) 0 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 25% 25%;
  opacity: 0.18;
}

.hero__index,
.section-label,
.eyebrow {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero__index {
  position: absolute;
  top: 22px;
  right: 0;
  color: rgba(242, 240, 234, 0.48);
}

.eyebrow {
  margin: 0;
  padding-left: 22px;
  position: relative;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--signal);
  position: absolute;
  top: -1px;
  left: 0;
}

.hero h1 {
  margin: clamp(38px, 8vh, 90px) 0;
  font-size: clamp(4rem, 11.2vw, 11rem);
  line-height: 0.72;
  letter-spacing: -0.085em;
  font-weight: 950;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.hero h1 > span {
  display: block;
}

.hero h1 > span:nth-child(2) {
  padding-left: 10vw;
}

.hero__era-anchor,
.hero__era-r {
  display: inline;
}

.hero__contrast-letter {
  -webkit-text-stroke: 1px var(--ink);
  paint-order: stroke fill;
}

.hero h1 .accent {
  color: var(--signal);
}

@media (min-width: 761px) {
  .hero h1 .accent {
    width: fit-content;
    margin-left: var(--era-left, 56%);
    position: relative;
    z-index: 1;
  }
}

.hero__blade {
  width: clamp(130px, 19vw, 310px);
  height: 68%;
  position: absolute;
  top: 12%;
  right: 7%;
  z-index: -1;
  background: var(--paper);
  clip-path: polygon(62% 0, 100% 0, 38% 100%, 0 100%);
}

.hero__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.hero__footer p {
  max-width: 530px;
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.jump {
  width: 150px;
  height: 52px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  transition: color 160ms ease, background 160ms ease;
}

.jump__arrow {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
}

.jump:hover,
.jump:focus-visible {
  color: var(--paper);
  background: var(--signal);
}

.ticker {
  height: var(--ticker-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: var(--signal);
  border-top: 1px solid var(--signal);
  border-bottom: 1px solid var(--signal);
}

.ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  animation: crawl 34s linear infinite;
  will-change: transform;
}

.ticker__group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.ticker__track b {
  font-size: 0.45rem;
}

.launch {
  width: var(--page);
  margin: 0 auto;
  padding: 104px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8vw;
}

.launch h2 {
  margin: 24px 0 0;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.76;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.launch__copy {
  max-width: 430px;
  margin: 32px 0 0;
  color: rgba(242, 240, 234, 0.66);
  font-size: 1rem;
  line-height: 1.5;
}

.launch__form {
  align-self: end;
}

.launch__form label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.launch__input-row {
  display: flex;
  border-bottom: 1px solid var(--paper);
}

.launch__input-row input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--paper);
  background: transparent;
  font: inherit;
  font-size: 1.1rem;
}

.launch__input-row input::placeholder {
  color: rgba(242, 240, 234, 0.42);
}

.launch__input-row button {
  margin-left: 18px;
  padding: 16px 18px;
  border: 0;
  color: var(--ink);
  background: var(--paper);
  font: 900 0.66rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.launch__input-row button:hover,
.launch__input-row button:focus-visible {
  color: var(--paper);
  background: var(--signal);
}

.launch__input-row button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.launch .cf-turnstile {
  margin-top: 22px;
}

.launch__status {
  min-height: 1.5em;
  margin: 14px 0 0;
  color: rgba(242, 240, 234, 0.66);
  font-size: 0.8rem;
  line-height: 1.4;
}

.field--trap {
  position: absolute;
  left: -10000px;
}

.manifesto {
  width: var(--page);
  margin: 0 auto;
  padding: 110px 0 130px;
}

.section-label {
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: rgba(242, 240, 234, 0.56);
}

.manifesto__body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 8vw;
  align-items: end;
  padding-top: 70px;
}

.manifesto h2,
.closing h2 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.78;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.manifesto h2.mac-lockup {
  width: 100%;
  display: flex;
  align-items: flex-start;
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.mac-meet {
  display: block;
  flex: 0 0 auto;
}

.mac-acronym {
  min-width: 0;
  height: 2.46em;
  margin-left: 0.12em;
  display: block;
  flex: 1;
  position: relative;
}

.mac-word {
  display: flex;
  align-items: baseline;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  will-change: transform;
  transition: transform 1800ms cubic-bezier(0.22, 0.68, 0.24, 1);
}

.mac-word--m {
  transform: translate3d(0, 0, 0);
}

.mac-word--a {
  transform: translate3d(0.78em, 0, 0);
}

.mac-word--c {
  transform: translate3d(1.45em, 0, 0);
}

.mac-lockup.is-stacking .mac-word--a {
  transform: translate3d(0, 0.82em, 0);
}

.mac-lockup.is-stacking .mac-word--c {
  transform: translate3d(0, 1.64em, 0);
}

.mac-initial {
  flex: 0 0 auto;
  color: var(--signal);
}

.mac-rest {
  display: inline-flex;
  visibility: hidden;
  color: var(--paper);
}

.mac-rest.is-ready {
  visibility: visible;
}

.mac-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.08em);
  transition:
    opacity 220ms ease var(--char-delay),
    transform 360ms cubic-bezier(0.22, 0.68, 0.24, 1) var(--char-delay);
}

.mac-lockup.is-expanded .mac-char {
  opacity: 1;
  transform: translateY(0);
}

.manifesto__copy {
  padding-bottom: 5px;
}

.manifesto__copy p {
  max-width: 510px;
  margin: 24px 0 0;
  color: rgba(242, 240, 234, 0.66);
  font-size: 1rem;
  line-height: 1.55;
}

.manifesto__copy .lead {
  margin-top: 0;
  color: var(--paper);
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.principles {
  width: var(--page);
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles article {
  min-height: 390px;
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease;
}

.principles article:last-child {
  border-right: 0;
}

.principles article:hover {
  color: var(--ink);
  background: var(--paper);
}

.principle__number {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.principles h3 {
  margin: auto 0 32px;
  font-size: clamp(2.3rem, 4.3vw, 4.7rem);
  line-height: 0.83;
  letter-spacing: -0.065em;
}

.principles p {
  max-width: 300px;
  min-height: 2.8em;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.4;
}

.closing {
  width: var(--page);
  min-height: 78svh;
  margin: 0 auto;
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
}

.closing > p {
  position: relative;
  z-index: 2;
  margin: 0 0 60px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.closing h2 {
  position: relative;
  z-index: 2;
}

.closing__line {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--paper);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.closing__line span:last-child {
  color: var(--signal);
  font-size: 1.4rem;
}

.closing__signal {
  width: clamp(520px, 56vw, 940px);
  aspect-ratio: 1;
  position: absolute;
  right: -16%;
  top: -12%;
  z-index: 1;
  opacity: 0.94;
  animation: orbit-counterclockwise 45s linear infinite;
  transform-origin: center;
}

.closing__signal span {
  width: 38%;
  aspect-ratio: 1;
  position: absolute;
  border: 1px solid var(--signal);
  background: var(--ink);
  transform: rotate(45deg);
}

.closing__signal span:nth-child(1) {
  top: 2%;
  left: 31%;
}

.closing__signal span:nth-child(2) {
  top: 31%;
  left: 60%;
  background: var(--signal);
}

.closing__signal span:nth-child(3) {
  top: 60%;
  left: 31%;
}

.closing__signal span:nth-child(4) {
  top: 31%;
  left: 2%;
  background: var(--signal);
}

footer {
  width: var(--page);
  margin: 0 auto;
  padding: 26px 0 34px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(242, 240, 234, 0.55);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

@keyframes pulse {
  50% { opacity: 0.28; }
}

@keyframes crawl {
  to { transform: translateX(-25%); }
}

@keyframes orbit-counterclockwise {
  to { transform: rotate(-360deg); }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100vw - 34px);
  }

  .masthead {
    height: 72px;
  }

  .masthead__status span:last-child {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 72px - var(--ticker-height));
    padding: 24px 0 20px;
  }

  .hero h1 {
    margin: 28px 0;
    font-size: clamp(2.9rem, 14vw, 5rem);
    line-height: 0.76;
  }

  .hero h1 > span:nth-child(2) {
    padding-left: 0;
  }

  .hero__blade {
    width: 120px;
    height: 54%;
    top: 20%;
    right: -5%;
  }

  .hero__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero__footer p {
    max-width: 82%;
    font-size: clamp(0.95rem, 4.5vw, 1.15rem);
    line-height: 1.28;
  }

  .jump {
    width: 150px;
    height: 48px;
  }

  .manifesto {
    padding: 86px 0 90px;
  }

  .launch {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 78px 0;
  }

  .launch h2 {
    font-size: clamp(3.8rem, 18vw, 6.4rem);
  }

  .launch__input-row {
    gap: 16px;
    flex-direction: column;
    border-bottom: 0;
  }

  .launch__input-row input {
    min-height: 52px;
    border-bottom: 1px solid var(--paper);
  }

  .launch__input-row button {
    width: 100%;
    margin-left: 0;
  }

  .manifesto__body {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 52px;
  }

  .manifesto h2.mac-lockup {
    font-size: clamp(2.1rem, 9.4vw, 3.6rem);
  }

  .principles {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }

  .principles article {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles article:last-child {
    border-bottom: 0;
  }

  .closing {
    min-height: 70svh;
    padding: 70px 0 50px;
  }

  .closing__signal {
    width: 460px;
    right: -56%;
    top: 6%;
    opacity: 0.62;
  }

  footer span:nth-child(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .status-light,
  .ticker__track,
  .closing__signal {
    animation: none;
  }

  .mac-word,
  .mac-char {
    transition: none;
  }
}
