:root {
  --brand: #f84304;
  --brand-soft: rgba(248, 67, 4, 0.12);
  --paper: #ededeb;
  --paper-deep: #dededc;
  --paper-line: rgba(15, 15, 14, 0.23);
  --ink: #111110;
  --black: #0b0b0b;
  --black-2: #111110;
  --white: #f7f7f4;
  --white-line: rgba(247, 247, 244, 0.23);
  --muted-light: #686865;
  --muted-dark: #b9b9b5;
  --success: #187a45;
  --error: #a32000;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Oxanium", "Noto Sans Mono", "Arial Black", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --shell: 1500px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --header-height: 72px;
  --section-pad: clamp(5.5rem, 9vw, 9rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-mono);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--brand);
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--brand);
  font-size: 0.75rem;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.light-section {
  position: relative;
  background:
    radial-gradient(circle at 73% 18%, rgba(255, 255, 255, 0.95), transparent 30rem),
    linear-gradient(180deg, #f0f0ee 0%, var(--paper) 100%);
  color: var(--ink);
}

.dark-section {
  position: relative;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.035), transparent 36rem),
    linear-gradient(135deg, var(--black) 0%, var(--black-2) 100%);
  color: var(--white);
}

.light-section::before,
.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.dark-section::before {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  color: var(--ink);
  background: rgba(222, 222, 220, 0.96);
  border-bottom: 1px solid rgba(17, 17, 16, 0.24);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(17, 17, 16, 0.08);
  background: rgba(222, 222, 220, 0.985);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  text-decoration: none;
}

.brand-mark img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
  font-size: 0.69rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
  background: var(--brand);
  transform: translateY(-1px);
}

.menu-toggle {
  display: grid;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 7px 5px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] i:nth-of-type(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:nth-of-type(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] i:nth-of-type(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: var(--white);
  background: rgba(11, 11, 11, 0.985);
  border-bottom: 1px solid var(--white-line);
}

.site-menu__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 1.25rem;
}

.site-menu a {
  padding: 0.6rem 1rem;
  border-left: 1px solid var(--white-line);
  color: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-menu a:first-child {
  border-left: 0;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--brand);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(5rem, 8vw, 8rem) clamp(4rem, 7vw, 6.5rem);
  border-bottom: 1px solid var(--paper-line);
  overflow: clip;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(24rem, 0.82fr) minmax(33rem, 1.18fr);
  gap: clamp(2.5rem, 5vw, 7rem);
  align-items: center;
  min-height: min(720px, calc(100svh - var(--header-height) - 9rem));
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero__wordmark {
  margin-bottom: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: clamp(5rem, 8.7vw, 9.1rem);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 0.82;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.hero__headline {
  max-width: 37rem;
  margin-bottom: 1.6rem;
  color: var(--ink);
  font-size: clamp(1.42rem, 2.25vw, 2.35rem);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero__headline span {
  color: var(--brand);
}

.hero__subline {
  max-width: 37rem;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(0.86rem, 1.1vw, 1.02rem);
  line-height: 1.75;
}

.hero__art {
  position: relative;
  min-width: 0;
  justify-self: stretch;
}

.hero__art::after {
  content: "";
  position: absolute;
  inset: 24% 5% 8%;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(17, 17, 16, 0.09), transparent 68%);
  filter: blur(18px);
}

.hero__art img {
  width: min(100%, 900px);
  margin-inline: auto;
}

.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: -2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-light);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__scroll i {
  width: 16px;
  height: 16px;
  border-right: 1px solid var(--brand);
  border-bottom: 1px solid var(--brand);
  transform: rotate(45deg) translateY(-3px);
}

.pitch,
.ladder,
.real-now,
.ask {
  position: relative;
  z-index: 1;
}

.pitch {
  padding-block: var(--section-pad);
  border-bottom: 1px solid var(--white-line);
}

.pitch__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(24rem, 0.72fr) minmax(33rem, 1.28fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-kicker > span {
  width: 2px;
  height: 1.1rem;
  background: var(--brand);
}

.section-kicker h2,
.section-kicker p {
  margin: 0;
  font: inherit;
}

.section-kicker--dark {
  color: var(--ink);
}

.pitch__copy > p {
  max-width: 39rem;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

.pitch__copy > p + p {
  margin-top: 1.4rem;
}

.pitch__art img {
  width: 100%;
}

.ladder {
  padding-block: var(--section-pad);
  border-bottom: 1px solid var(--paper-line);
}

.ladder__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.5rem;
}

.rung {
  min-width: 0;
  padding: clamp(1rem, 2.5vw, 2.4rem) clamp(1.25rem, 3vw, 3.25rem);
  border-left: 1px solid var(--paper-line);
}

.rung:first-child {
  padding-left: 0;
  border-left: 0;
}

.rung:last-child {
  padding-right: 0;
}

.rung__meta {
  min-height: 7.9rem;
}

.rung__number {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
  font-size: 0.72rem;
}

.rung h3 {
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.rung__availability {
  display: block;
  max-width: 24rem;
  color: var(--brand);
  font-size: clamp(0.7rem, 0.9vw, 0.82rem);
  line-height: 1.35;
  text-transform: uppercase;
}

.rung__art {
  width: 100%;
  height: clamp(11.5rem, 18vw, 15.5rem);
  margin: 0.5rem 0 1.6rem;
  object-fit: contain;
}

.rung > p {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(0.79rem, 0.9vw, 0.92rem);
  line-height: 1.62;
}

.real-now {
  padding-block: clamp(4.8rem, 7vw, 7rem);
  border-bottom: 1px solid var(--white-line);
}

.real-now__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(20rem, 0.75fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.capability {
  min-width: 0;
  text-align: center;
}

.capability img {
  width: 100%;
  height: clamp(7rem, 11vw, 10rem);
  margin: 0 auto 0.8rem;
  object-fit: contain;
}

.capability h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(0.72rem, 0.92vw, 0.9rem);
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.real-now__copy {
  padding-left: clamp(2rem, 4vw, 4.5rem);
  border-left: 1px solid var(--white-line);
}

.real-now__intro {
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2.25vw, 2.15rem);
  line-height: 1.32;
  letter-spacing: -0.035em;
}

.real-now__detail,
.real-now__client-line {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  line-height: 1.6;
}

.ask {
  padding-block: clamp(4rem, 6.5vw, 6.5rem);
  border-bottom: 1px solid var(--paper-line);
}

.ask__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(20rem, 0.75fr) minmax(30rem, 1.25fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: end;
}

.ask__copy h2 {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.ask__copy > p:not(.ask__interim-line) {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
}

.access-form {
  width: 100%;
}

.access-form__row {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto;
  min-height: 58px;
  border: 1px solid rgba(17, 17, 16, 0.35);
  background: rgba(255, 255, 255, 0.14);
}

.access-form input {
  min-width: 0;
  width: 100%;
  padding: 0 1.35rem;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.8rem;
}

.access-form input::placeholder {
  color: #777773;
}

.access-form input:focus {
  box-shadow: inset 0 0 0 1px var(--brand);
}

.access-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  min-width: clamp(12.5rem, 18vw, 17.5rem);
  padding: 0 1.6rem;
  border: 0;
  color: var(--white);
  background: var(--brand);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease;
}

.access-form button:hover,
.access-form button:focus-visible {
  filter: brightness(0.92);
}

.access-form button:active {
  transform: translateY(1px);
}

.access-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.access-form__meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  min-height: 1.5rem;
  padding-top: 0.55rem;
  color: var(--ink);
  font-size: 0.64rem;
}

.access-form__meta p {
  margin: 0;
}

.access-form__meta [data-form-status] {
  text-align: right;
}

.access-form.is-success [data-form-status] {
  color: var(--success);
}

.access-form.is-error [data-form-status] {
  color: var(--error);
}

.site-footer {
  padding-block: 1.2rem 1.45rem;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem 2.25rem;
  padding-top: 0;
  color: var(--muted-light);
  font-size: 0.65rem;
  text-align: center;
}

.site-footer__inner a {
  color: var(--brand);
  text-decoration: none;
}

.site-footer__inner a:hover,
.site-footer__inner a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms cubic-bezier(.2, .7, .2, 1), transform 640ms cubic-bezier(.2, .7, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .hero__grid,
  .pitch__grid {
    grid-template-columns: minmax(21rem, 0.9fr) minmax(27rem, 1.1fr);
    gap: 2.5rem;
  }

  .hero__wordmark {
    font-size: clamp(4.8rem, 8vw, 7.1rem);
  }

  .real-now__layout {
    grid-template-columns: 1.45fr 0.75fr;
    gap: 3rem;
  }

  .rung {
    padding-inline: 1.8rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
    --section-pad: 5.5rem;
  }

  .site-menu__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-menu a:nth-child(3) {
    border-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
  }

  .hero__copy {
    max-width: 43rem;
  }

  .hero__art {
    width: min(100%, 46rem);
    margin-inline: auto;
  }

  .hero__scroll {
    display: none;
  }

  .pitch__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pitch__copy > p {
    max-width: 48rem;
  }

  .ladder__grid {
    grid-template-columns: 1fr;
  }

  .rung,
  .rung:first-child,
  .rung:last-child {
    display: grid;
    grid-template-columns: minmax(13rem, 0.7fr) minmax(18rem, 1.3fr);
    grid-template-areas:
      "meta art"
      "copy art";
    column-gap: 2.5rem;
    padding: 2.5rem 0;
    border-left: 0;
    border-top: 1px solid var(--paper-line);
  }

  .rung:first-child {
    border-top: 0;
  }

  .rung__meta {
    grid-area: meta;
    min-height: auto;
  }

  .rung__art {
    grid-area: art;
    align-self: center;
    height: 13rem;
    margin: 0;
  }

  .rung > p {
    grid-area: copy;
    align-self: end;
    margin-top: 1.5rem;
  }

  .real-now__layout {
    grid-template-columns: 1fr;
  }

  .real-now__copy {
    max-width: 44rem;
    padding: 2.5rem 0 0;
    border-top: 1px solid var(--white-line);
    border-left: 0;
  }

  .ask__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 1.15rem;
    --section-pad: 4.4rem;
  }

  .site-header__actions {
    gap: 0.65rem;
  }

  .header-cta {
    min-height: 34px;
    padding-inline: 0.8rem;
    font-size: 0.58rem;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
  }

  .site-menu__inner {
    grid-template-columns: 1fr;
  }

  .site-menu a,
  .site-menu a:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--white-line);
  }

  .site-menu a:first-child {
    border-top: 0;
  }

  .hero {
    padding-block: 3.9rem 4.5rem;
  }

  .hero__wordmark {
    margin-bottom: 1.55rem;
    font-size: clamp(3.8rem, 19vw, 5.4rem);
    letter-spacing: 0.015em;
  }

  .hero__headline {
    font-size: clamp(1.15rem, 5.2vw, 1.45rem);
    letter-spacing: -0.025em;
  }

  .hero__subline {
    font-size: 0.8rem;
    line-height: 1.65;
  }

  .hero__art {
    width: 115%;
    margin-left: -7.5%;
  }

  .pitch__copy > p {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .rung,
  .rung:first-child,
  .rung:last-child {
    display: block;
    padding-block: 2.7rem;
  }

  .rung__art {
    height: 12.2rem;
    margin: 1.2rem 0 1.4rem;
  }

  .rung > p {
    margin-top: 0;
  }

  .capabilities {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem 1rem;
  }

  .capability img {
    height: 7.3rem;
  }

  .real-now__intro {
    font-size: 1.45rem;
  }

  .ask__grid {
    gap: 2.4rem;
  }

  .access-form__row {
    grid-template-columns: 1fr;
    border: 0;
    gap: 0.65rem;
    background: transparent;
  }

  .access-form input,
  .access-form button {
    min-height: 54px;
    border: 1px solid rgba(17, 17, 16, 0.35);
  }

  .access-form button {
    width: 100%;
    min-width: 0;
  }

  .access-form__meta {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .access-form__meta [data-form-status] {
    text-align: left;
  }

  .site-footer__inner {
    align-items: center;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
