@font-face {
  font-family: "Tekno";
  src: url("assets/fonts/tekno.woff") format("woff");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --ink: #f8f5ef;
  --muted: rgba(248, 245, 239, 0.78);
  --quiet: rgba(248, 245, 239, 0.58);
  --hairline: rgba(248, 245, 239, 0.15);
  --black: #030303;
  --panel: rgba(10, 9, 8, 0.64);
  --red: #e20d17;
  --red-hot: #ff372d;
  --red-dark: #230406;
  --max-width: 1200px;
  --body-font: Inter, Arial, Helvetica, sans-serif;
  --display-font: Tekno, "Arial Black", Impact, Haettenschweiler, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  background: var(--black);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--body-font);
  letter-spacing: 0;
  background:
    linear-gradient(118deg, #020202 0%, #050505 48%, var(--red-dark) 100%),
    linear-gradient(180deg, #090909 0%, #000 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 9px, 88px 100%;
  opacity: 0.46;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.3) 52%, rgba(0, 0, 0, 0.62)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 44%, rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

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

.field-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.88;
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100svh;
  overflow-x: hidden;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: absolute;
  top: 108px;
  right: min(8vw, 96px);
  bottom: 72px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 55, 45, 0.58), transparent);
  transform: skewX(-16deg);
  pointer-events: none;
}

.site-header,
.launch {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding-block: 22px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 248px;
  max-width: 52vw;
  height: auto;
}

.header-lockup {
  display: grid;
  justify-items: end;
  gap: 7px;
  min-width: 0;
  color: var(--muted);
  text-align: right;
}

.header-lockup span,
.build-grid article > span {
  font-family: var(--display-font);
  line-height: 1;
  text-transform: uppercase;
}

.header-lockup span {
  color: var(--red-hot);
  font-size: 1rem;
}

.header-lockup a {
  margin: 0;
  border-top: 1px solid rgba(248, 245, 239, 0.22);
  padding-top: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.header-lockup a,
.method-status a {
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.header-lockup a:hover,
.method-status a:hover {
  color: var(--ink);
}

.launch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  align-items: center;
  gap: 64px;
  min-height: calc(100svh - 96px);
  padding-block: 56px 72px;
}

.hero-copy {
  width: 100%;
  max-width: 860px;
}

.eyebrow {
  display: inline-grid;
  grid-template-columns: 44px auto;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  color: rgba(248, 245, 239, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 20px rgba(255, 55, 45, 0.72);
}

h1 {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 7.65rem;
  font-weight: 400;
  line-height: 0.84;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 0 34px rgba(226, 13, 23, 0.2),
    0 20px 58px rgba(0, 0, 0, 0.66);
}

h1 > span {
  display: block;
}

.lede {
  max-width: 780px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1.26rem;
  font-weight: 500;
  line-height: 1.58;
}

.launch-note {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 22px;
  max-width: 760px;
  margin-top: 34px;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}

.launch-note span {
  color: var(--red-hot);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.launch-note p {
  margin: 0;
  color: var(--quiet);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.55;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 850px;
  margin-top: 42px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.build-grid article {
  min-width: 0;
  padding: 22px 22px 24px 0;
}

.build-grid article + article {
  border-left: 1px solid var(--hairline);
  padding-left: 22px;
}

.build-grid article > span {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 55, 45, 0.72);
  font-size: 0.84rem;
}

.build-grid h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.1;
}

.build-grid p {
  margin: 0;
  color: var(--quiet);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.48;
}

.method-panel {
  position: relative;
  align-self: center;
  width: min(100%, 380px);
  justify-self: end;
  border: 1px solid rgba(248, 245, 239, 0.17);
  border-right-color: rgba(255, 55, 45, 0.36);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 55, 45, 0.1), transparent 34%),
    var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.method-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 22px;
  width: 72px;
  height: 2px;
  background: var(--red-hot);
  box-shadow: 0 0 22px rgba(255, 55, 45, 0.65);
}

.panel-kicker {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.method-panel ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: method;
}

.method-panel li {
  position: relative;
  border-top: 1px solid rgba(248, 245, 239, 0.13);
  padding: 19px 0 18px 42px;
  counter-increment: method;
}

.method-panel li::before {
  content: "0" counter(method);
  position: absolute;
  top: 20px;
  left: 0;
  color: rgba(255, 55, 45, 0.78);
  font-family: var(--display-font);
  font-size: 0.9rem;
  line-height: 1;
}

.method-panel li span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
}

.method-panel li p {
  margin: 0;
  color: var(--quiet);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.5;
}

.method-status {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 55, 45, 0.3);
  padding-top: 22px;
}

.method-status span {
  color: var(--red-hot);
  font-family: var(--display-font);
  font-size: 2.6rem;
  line-height: 0.8;
}

.method-status p {
  margin: 0;
  color: rgba(248, 245, 239, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.method-status a {
  display: inline-block;
  border-bottom: 1px solid rgba(255, 55, 45, 0.58);
  color: inherit;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 55, 45, 0.13), transparent 66%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 220ms ease;
}

@media (max-width: 1100px) {
  .launch {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
    gap: 44px;
  }

  h1 {
    font-size: 6.38rem;
  }

  .lede {
    font-size: 1.15rem;
  }
}

@media (max-width: 920px) {
  .launch {
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: start;
  }

  h1 {
    font-size: 6rem;
  }

  .method-panel {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .build-grid {
    grid-template-columns: 1fr;
  }

  .build-grid article,
  .build-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--hairline);
    padding: 20px 0;
  }

  .build-grid article:first-child {
    border-top: 0;
  }

  .launch-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .launch {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    align-items: flex-start;
    gap: 16px;
    min-height: 88px;
    padding-block: 18px;
  }

  .brand-logo {
    width: 170px;
    max-width: 48vw;
  }

  .header-lockup {
    gap: 6px;
  }

  .header-lockup span {
    font-size: 0.82rem;
  }

  .header-lockup a {
    font-size: 0.68rem;
  }

  .launch {
    min-height: auto;
    padding-block: 46px 54px;
  }

  .eyebrow {
    grid-template-columns: 34px auto;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 0.7rem;
  }

  .eyebrow::before {
    width: 34px;
  }

  h1 {
    font-size: 3.82rem;
    line-height: 0.88;
  }

  .lede {
    margin-top: 24px;
    font-size: 1rem;
  }

  .launch-note {
    margin-top: 28px;
  }

  .build-grid {
    margin-top: 30px;
  }

  .method-panel {
    padding: 24px 20px;
  }

  .method-panel li {
    padding-left: 36px;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 150px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .header-lockup a {
    font-size: 0.63rem;
  }
}

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

  .field-canvas,
  .cursor-glow {
    display: none;
  }
}
