:root {
  color-scheme: dark;
  --bg: #000;
  --text: #f7f7f4;
  --muted: #6f6f70;
  --subtle: #2a2a2a;
  --field: rgba(255, 255, 255, 0.055);
  --field-border: rgba(255, 255, 255, 0.16);
  --field-focus: rgba(255, 255, 255, 0.5);
  --error: #ef9d91;
  --success: #c8e6cc;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 82% 42% at 50% 82%, rgba(255, 255, 255, 0.055), transparent 63%),
    linear-gradient(#000, #000);
  color: var(--text);
  font-family:
    "Arial Narrow", "Helvetica Neue Condensed", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

.landing-page {
  --footer-height: 72px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) var(--footer-height);
  height: 100vh;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
}

.landing-page .page-shell {
  height: 100%;
  min-height: 0;
}

.landing-page .hero {
  height: 100%;
  min-height: 0;
}

.landing-page .site-footer {
  height: var(--footer-height);
  min-height: 0;
}

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

.page-shell {
  position: relative;
  min-height: calc(100vh - 88px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-bar {
  position: absolute;
  z-index: 3;
  top: clamp(28px, 5.1vh, 58px);
  right: clamp(28px, 3.65vw, 86px);
  left: clamp(28px, 3.65vw, 86px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark {
  display: inline-block;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.78rem, 0.74vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.36em;
  line-height: 1;
}

.brand-lockup {
  display: block;
  width: clamp(116px, 8vw, 172px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.about-link,
.about-back {
  position: relative;
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.68rem, 0.68vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.about-link::after,
.about-back::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: rgba(255, 255, 255, 0.72);
  content: "";
  transition: transform 180ms ease;
}

.about-link:hover,
.about-link:focus-visible,
.about-back:hover,
.about-back:focus-visible {
  color: #fff;
}

.about-link:hover::after,
.about-link:focus-visible::after,
.about-back:hover::after,
.about-back:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 88px);
  place-items: center;
  padding: clamp(120px, 13vh, 176px) clamp(20px, 4vw, 96px) clamp(64px, 8vh, 92px);
  isolation: isolate;
}

@media (min-width: 861px) {
  .landing-page .hero {
    padding-top: clamp(92px, 10vh, 132px);
    padding-bottom: clamp(24px, 3.8vh, 44px);
  }
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.7)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 48%, rgba(0, 0, 0, 0.74));
}

.hero::after {
  width: min(1060px, 82vw);
  height: min(220px, 18vw);
  left: 50%;
  bottom: clamp(68px, 7.8vh, 98px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  filter: blur(22px);
}

.product-reveal {
  position: absolute;
  z-index: -2;
  top: clamp(150px, 19vh, 220px);
  left: 50%;
  width: min(58vw, 980px);
  min-width: 420px;
  height: auto;
  transform: translateX(-49%);
  opacity: 0.82;
  filter: contrast(1.08) brightness(0.82);
  user-select: none;
}

.hero-content {
  width: min(100%, 1860px);
  margin-top: clamp(172px, 27vh, 342px);
  text-align: center;
}

h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.45rem, 7.25vw, 9.4rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

#hero-title {
  font-family: "Bebas Neue", "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.035em;
}

.nowrap {
  white-space: nowrap;
}

@media (min-width: 861px) {
  .hero-content {
    transform: translateY(clamp(72px, 9vh, 112px));
  }
}

.legal-page {
  display: grid;
  align-content: start;
  min-height: 100vh;
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: clamp(42px, 8vh, 86px) 0;
}

.legal-page .brand-mark {
  margin-bottom: clamp(54px, 9vh, 104px);
}

.legal-page h1 {
  margin: 0 0 28px;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.94;
}

.legal-page h2 {
  margin: 42px 0 12px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.legal-page p,
.legal-page li {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.legal-page ul {
  margin: 0 0 22px;
  padding-left: 1.2em;
}

.legal-page li {
  margin-bottom: 10px;
  padding-left: 0.2em;
}

.legal-page p a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-date {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.release-kicker {
  margin: clamp(22px, 3.4vh, 48px) 0 clamp(36px, 6vh, 82px);
  color: rgba(255, 255, 255, 0.32);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.72rem, 0.76vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.48em;
  line-height: 1.4;
  text-transform: uppercase;
}

.notify-form {
  display: grid;
  grid-template-columns: minmax(260px, 480px) 202px;
  justify-content: center;
  gap: 14px;
  width: min(100%, 730px);
  margin: 0 auto;
}

.notify-form input,
.notify-form button {
  min-height: 72px;
  border-radius: 0;
}

.notify-form input {
  width: 100%;
  border: 1px solid var(--field-border);
  outline: 0;
  background: var(--field);
  color: rgba(255, 255, 255, 0.9);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.04rem, 0.96vw, 1.22rem);
  font-weight: 400;
  font-stretch: normal;
  letter-spacing: 0.01em;
  padding: 0 28px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, 0.24);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.notify-form input:focus {
  border-color: var(--field-focus);
  background: rgba(255, 255, 255, 0.075);
}

.notify-form input[aria-invalid="true"] {
  border-color: rgba(239, 157, 145, 0.72);
}

.notify-form button {
  display: inline-grid;
  min-width: 0;
  place-items: center;
  border: 1px solid #fff;
  background: #fff;
  color: #050505;
  cursor: pointer;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.84rem, 0.8vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.36em;
  line-height: 1;
  padding: 0 28px;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.notify-form button:hover:not(:disabled),
.notify-form button:focus-visible:not(:disabled) {
  transform: translateY(-1px);
  background: #e8e8e3;
  border-color: #e8e8e3;
}

.notify-form button:disabled {
  cursor: wait;
  opacity: 0.52;
}

.turnstile-anchor {
  width: min(100%, 730px);
  margin: 0 auto;
}

.form-status {
  min-height: 22px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.form-status[data-tone="error"] {
  color: var(--error);
}

.form-status[data-tone="success"] {
  color: var(--success);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 clamp(24px, 3.7vw, 86px);
  color: rgba(255, 255, 255, 0.32);
  font-size: clamp(0.74rem, 0.74vw, 0.96rem);
  letter-spacing: 0.28em;
}

.site-footer p {
  margin: 0;
}

.site-footer > p:first-child {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 46px);
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: rgba(255, 255, 255, 0.72);
}

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

@media (max-width: 860px) {
  .landing-page {
    --footer-height: 96px;
  }

  .hero {
    padding: clamp(72px, 9svh, 104px) 20px clamp(18px, 3.2svh, 34px);
  }

  .product-reveal {
    top: clamp(74px, 12svh, 112px);
    width: min(122vw, 660px);
    min-width: 0;
    transform: translateX(-48%);
    opacity: 0.72;
  }

  .hero-content {
    margin-top: clamp(130px, 25svh, 238px);
  }

  h1 {
    font-size: clamp(3rem, 13.6vw, 6.2rem);
    line-height: 0.95;
  }

  .release-kicker {
    margin: clamp(16px, 2.4svh, 26px) 0 clamp(22px, 3.2svh, 34px);
  }

  .notify-form {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 480px);
  }

  .notify-form input,
  .notify-form button {
    min-height: clamp(56px, 7.4svh, 62px);
  }

  .site-footer {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 14px;
    padding: 18px 22px;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .brand-bar {
    left: 24px;
  }

  .hero-content {
    margin-top: clamp(142px, 26svh, 220px);
  }

  h1 {
    font-size: clamp(2.75rem, 14.2vw, 4.8rem);
  }

  .notify-form input {
    padding: 0 18px;
  }

  .notify-form button {
    letter-spacing: 0.34em;
  }

  .site-footer nav {
    gap: 18px;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 430px) and (max-height: 760px) {
  .landing-page {
    --footer-height: 82px;
  }

  .brand-bar {
    top: 22px;
  }

  .brand-lockup {
    width: 136px;
  }

  .product-reveal {
    top: 62px;
    width: min(116vw, 500px);
  }

  .hero-content {
    margin-top: clamp(96px, 22svh, 152px);
  }

  h1 {
    font-size: clamp(2.45rem, 12.8vw, 3.9rem);
  }

  .release-kicker {
    margin-bottom: 18px;
    font-size: 0.68rem;
  }

  .notify-form {
    gap: 10px;
  }

  .notify-form input,
  .notify-form button {
    min-height: 52px;
  }

  .site-footer {
    gap: 10px;
    padding: 12px 18px;
    font-size: 0.66rem;
  }
}

@media (min-width: 521px) and (max-width: 860px) {
  .brand-lockup {
    width: clamp(152px, 20vw, 196px);
  }

  .hero-content {
    width: min(100%, 760px);
  }

  .notify-form {
    grid-template-columns: minmax(300px, 480px) 190px;
    width: min(100%, 690px);
  }

  .notify-form input,
  .notify-form button {
    min-height: 64px;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .brand-lockup {
    width: clamp(148px, 14vw, 188px);
  }

  .product-reveal {
    top: clamp(112px, 16vh, 174px);
    width: min(70vw, 760px);
  }

  .hero-content {
    margin-top: clamp(132px, 22vh, 240px);
    transform: translateY(clamp(36px, 6vh, 72px));
  }

  h1 {
    font-size: clamp(4.9rem, 8.1vw, 7.4rem);
  }
}

/* About */

.about-page {
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.055), transparent 26%),
    #000;
}

.about-header {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(30px, 5vh, 56px) clamp(24px, 4.2vw, 84px);
}

.about-page main {
  overflow: hidden;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(80px, 0.38fr) minmax(0, 2fr) minmax(220px, 0.7fr);
  align-items: end;
  gap: clamp(24px, 4vw, 76px);
  min-height: 100svh;
  padding: clamp(150px, 18vh, 220px) clamp(24px, 4.2vw, 84px) clamp(70px, 9vh, 108px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero::before {
  position: absolute;
  top: 14%;
  right: -9vw;
  width: min(54vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 7vw rgba(255, 255, 255, 0.012),
    0 0 0 14vw rgba(255, 255, 255, 0.009);
  content: "";
}

.about-index {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.28);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.62rem, 0.65vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(5.8rem, 12.3vw, 13.5rem);
  line-height: 0.82;
  text-align: left;
}

.mission-lede {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1.65;
}

.mission-mark {
  position: absolute;
  right: clamp(24px, 4.2vw, 84px);
  bottom: clamp(22px, 3vh, 36px);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.mission-mark::before,
.mission-mark::after,
.mission-mark span {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.62);
  content: "";
}

.mission-mark::before {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.mission-mark::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.mission-mark span {
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #000;
}

.mission-section,
.principles-section {
  display: grid;
  grid-template-columns: minmax(100px, 0.55fr) minmax(0, 2fr);
  gap: clamp(36px, 8vw, 180px);
  padding: clamp(110px, 15vw, 220px) clamp(24px, 4.2vw, 84px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-copy {
  max-width: 1120px;
}

.mission-copy h2,
.principles-heading h2,
.about-closing h2 {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: clamp(4.4rem, 9vw, 10rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}

.mission-copy > p {
  max-width: 690px;
  margin: 42px 0 0 auto;
  color: rgba(255, 255, 255, 0.57);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.02rem, 1.25vw, 1.3rem);
  line-height: 1.75;
}

.mission-copy > p + p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.38);
}

.principles-section {
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.5fr);
  background: #f2f2ed;
  color: #090909;
}

.principles-section .about-index {
  color: rgba(0, 0, 0, 0.36);
}

.principles-heading h2 {
  margin-top: clamp(44px, 8vw, 110px);
  color: #090909;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: end;
}

.principles-grid article {
  min-height: 250px;
  padding: clamp(24px, 3.2vw, 48px);
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.principles-grid article:nth-child(odd) {
  border-right: 1px solid rgba(0, 0, 0, 0.18);
}

.principles-grid span {
  display: block;
  margin-bottom: clamp(58px, 7vw, 100px);
  color: rgba(0, 0, 0, 0.34);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.68rem;
}

.principles-grid h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.12rem, 1.5vw, 1.5rem);
  letter-spacing: -0.03em;
}

.principles-grid p {
  max-width: 350px;
  margin: 0;
  color: rgba(0, 0, 0, 0.55);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.65;
}

.about-closing {
  min-height: min(80vw, 980px);
  padding: clamp(120px, 16vw, 240px) clamp(24px, 4.2vw, 84px) 90px;
  background:
    radial-gradient(circle at 50% 85%, rgba(255, 255, 255, 0.07), transparent 34%),
    #000;
  text-align: center;
}

.about-closing > p {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.34);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.about-closing h2 {
  font-size: clamp(4.8rem, 10.8vw, 12rem);
}

.about-closing a {
  display: inline-block;
  margin-top: clamp(66px, 9vw, 120px);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.7);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 860px) {
  .about-hero {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 30px;
    padding-bottom: 80px;
  }

  .about-hero::before {
    top: 20%;
    right: -46vw;
    width: 120vw;
  }

  .about-hero h1 {
    font-size: clamp(5.2rem, 23vw, 9rem);
  }

  .mission-lede {
    max-width: 520px;
  }

  .mission-section,
  .principles-section {
    grid-template-columns: 1fr;
  }

  .mission-copy > p {
    margin-left: 0;
  }

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

@media (max-width: 520px) {
  .brand-bar {
    right: 24px;
  }

  .about-link,
  .about-back {
    font-size: 0.62rem;
  }

  .about-header {
    padding-top: 28px;
  }

  .about-header .brand-lockup {
    width: 116px;
  }

  .about-hero {
    min-height: 780px;
    padding-top: 130px;
  }

  .about-hero h1 {
    font-size: clamp(4.8rem, 25vw, 7.2rem);
  }

  .mission-mark {
    display: none;
  }

  .mission-section,
  .principles-section {
    padding-block: 100px;
  }

  .mission-copy h2,
  .principles-heading h2,
  .about-closing h2 {
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }

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

  .principles-grid article:nth-child(odd) {
    border-right: 0;
  }

  .principles-grid article {
    min-height: 220px;
  }

  .about-closing {
    min-height: 720px;
  }
}
