:root {
  color-scheme: dark;
  --ink: #090b0c;
  --ink-soft: #111517;
  --paper: #f4f1e9;
  --paper-strong: #fffdf7;
  --text: #f7f8f5;
  --muted: #aeb5b0;
  --line: rgba(255, 255, 255, 0.18);
  --mint: #8cffc1;
  --green: #12e47f;
  --cyan: #57d7ff;
  --coral: #ff7b66;
  --amber: #ffc85c;
  --dark-text: #121514;
  --dark-muted: #525a56;
  --content: 1240px;
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

button,
summary,
a[href] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--paper-strong);
  color: var(--dark-text);
  border-radius: 4px;
  font-weight: 800;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(calc(100% - 48px), var(--content));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--line);
}

.site-header--solid {
  position: relative;
  left: auto;
  transform: none;
  background: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 19px;
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  object-fit: contain;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.header-links a {
  text-decoration: none;
}

.header-links a:not(.header-cta):hover {
  color: var(--mint);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--mint);
  border-radius: 4px;
  background: rgba(9, 11, 12, 0.68);
  color: var(--mint);
  transition: background-color 160ms ease, color 160ms ease;
}

.header-cta:hover {
  background: var(--mint);
  color: var(--dark-text);
}

.hero {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  min-height: min(82svh, 860px);
  max-height: none;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: #0c1012;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.62;
}

.hero-scrim {
  z-index: -2;
  background: rgba(4, 7, 8, 0.62);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 58%;
  content: "";
  background: rgba(4, 7, 8, 0.58);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-inner {
  width: min(calc(100% - 48px), var(--content));
  margin: 54px auto 0;
}

.hero-inner > * {
  max-width: 620px;
}

.release-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.release-label span {
  width: 9px;
  height: 9px;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero h1 {
  margin: 0;
  color: var(--paper-strong);
  font-size: 104px;
  line-height: 0.92;
  font-weight: 900;
}

.hero-line {
  margin: 18px 0 0;
  color: var(--paper-strong);
  font-size: 32px;
  line-height: 1.12;
  font-weight: 750;
}

.hero-copy {
  margin: 18px 0 22px;
  color: #d8ddd9;
  font-size: 18px;
  line-height: 1.5;
}

.waitlist-form {
  position: relative;
}

.no-js [data-waitlist-form] {
  display: none;
}

.no-js-waitlist {
  display: none;
  max-width: 620px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: inherit;
  font-size: 14px;
}

.no-js .no-js-waitlist {
  display: block;
}

.no-js-waitlist a {
  font-weight: 800;
}

.field-label {
  display: block;
  margin-bottom: 7px;
  color: currentColor;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.form-row input[type="email"] {
  width: 100%;
  min-width: 0;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(140, 255, 193, 0.78);
  border-radius: 4px;
  background: #f8fff9;
  color: #111814;
  font-size: 16px;
  box-shadow: inset 4px 0 0 var(--green);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row input[type="email"]::placeholder {
  color: #647069;
  opacity: 1;
}

.form-row input[type="email"]:focus {
  border-color: var(--amber);
  box-shadow: inset 4px 0 0 var(--amber);
  outline: 3px solid rgba(255, 200, 92, 0.34);
  outline-offset: 1px;
}

.form-row button {
  min-width: 186px;
  height: 54px;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 4px;
  background: var(--green);
  color: #06120b;
  font-size: 14px;
  font-weight: 900;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.form-row button:hover:not(:disabled) {
  border-color: var(--paper-strong);
  background: var(--paper-strong);
}

.form-row button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 10px;
  color: #c4cbc6;
  font-size: 12px;
  line-height: 1.45;
}

.consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-status {
  min-height: 22px;
  margin: 7px 0 0;
  color: var(--mint);
  font-size: 13px;
  font-weight: 750;
}

.waitlist-form[data-state="error"] .form-status {
  color: #ff9a8b;
}

.waitlist-form[data-state="success"] .form-row input {
  border-color: var(--mint);
  box-shadow: inset 4px 0 0 var(--mint);
}

.hero-note {
  margin: 2px 0 0;
  color: #9ba49e;
  font-size: 12px;
}

.signal-band {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 2fr);
  min-height: 150px;
  align-items: stretch;
  background: var(--mint);
  color: var(--dark-text);
  border-bottom: 1px solid #19231e;
}

.signal-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px max(24px, calc((100vw - var(--content)) / 2));
  border-right: 1px solid rgba(18, 21, 20, 0.38);
}

.signal-intro span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-intro strong {
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.25;
}

.signal-band ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-band li {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  border-right: 1px solid rgba(18, 21, 20, 0.26);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.product-intro {
  display: grid;
  width: min(calc(100% - 48px), var(--content));
  min-height: 460px;
  margin: 0 auto;
  padding: 110px 0 96px;
  grid-template-columns: 0.7fr 1.25fr 0.9fr;
  gap: 54px;
  align-items: start;
}

.section-kicker,
.step-index {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-intro h2,
.principles h2,
.waitlist-band h2,
.faq h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 850;
}

.product-intro p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.35fr);
  min-height: 720px;
  align-items: center;
  gap: 72px;
  padding: 80px max(24px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid rgba(18, 21, 20, 0.24);
}

.product-band--light {
  background: var(--paper);
  color: var(--dark-text);
}

.product-band--dark {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.8fr);
  background: #101416;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.product-band--paper {
  background: #e5f1ea;
  color: var(--dark-text);
}

.product-copy {
  max-width: 470px;
}

.product-copy h2 {
  margin: 14px 0 20px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 850;
}

.product-copy > p {
  margin: 0;
  color: var(--dark-muted);
  font-size: 17px;
}

.product-band--dark .product-copy > p {
  color: var(--muted);
}

.feature-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid currentColor;
}

.feature-list li {
  position: relative;
  padding: 13px 0 13px 26px;
  border-bottom: 1px solid rgba(82, 90, 86, 0.34);
  font-size: 14px;
  font-weight: 720;
}

.product-band--dark .feature-list li {
  border-color: rgba(255, 255, 255, 0.16);
}

.feature-list li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--coral);
}

.product-band--dark .feature-list li::before {
  background: var(--mint);
}

.product-visual {
  width: 100%;
  margin: 0;
}

.product-visual button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 20, 0.68);
  border-radius: 6px;
  background: #090b0c;
  box-shadow: 16px 18px 0 rgba(17, 21, 20, 0.13);
}

.product-band--dark .product-visual button {
  border-color: rgba(140, 255, 193, 0.42);
  box-shadow: 16px 18px 0 rgba(140, 255, 193, 0.08);
}

.product-visual button:hover img {
  transform: scale(1.012);
}

.product-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  transition: transform 220ms ease;
}

.product-visual figcaption {
  margin-top: 14px;
  color: currentColor;
  font-size: 12px;
  font-weight: 750;
  opacity: 0.66;
}

.principles {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 112px 0;
}

.principles-heading {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 68px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid article {
  min-height: 260px;
  padding: 26px 26px 32px;
  border-right: 1px solid var(--line);
}

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

.principle-grid article > span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
}

.principle-grid h3 {
  margin: 54px 0 12px;
  font-size: 21px;
  line-height: 1.2;
}

.principle-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.waitlist-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  padding: 96px max(24px, calc((100vw - var(--content)) / 2));
  background: var(--amber);
  color: var(--dark-text);
  border-top: 1px solid #302716;
  border-bottom: 1px solid #302716;
}

.waitlist-band .section-kicker {
  color: #684900;
}

.waitlist-band h2 {
  max-width: 590px;
  margin-top: 12px;
}

.waitlist-band p {
  max-width: 560px;
  color: #4c402a;
}

.waitlist-form--footer {
  align-self: center;
}

.waitlist-form--footer .form-row input[type="email"] {
  border-color: #121514;
  background: var(--paper-strong);
  box-shadow: inset 4px 0 0 var(--coral);
}

.waitlist-form--footer .form-row button {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-strong);
}

.waitlist-form--footer .form-row button:hover:not(:disabled) {
  border-color: #334039;
  background: #334039;
}

.waitlist-form--footer .consent,
.waitlist-form--footer .form-status {
  color: #453917;
}

.waitlist-form--footer[data-state="error"] .form-status {
  color: #8b1c0b;
}

.faq {
  display: grid;
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 112px 0;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
}

.faq-heading h2 {
  margin-top: 12px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 24px 50px 24px 0;
  font-size: 18px;
  font-weight: 750;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 21px;
  right: 8px;
  content: "+";
  color: var(--mint);
  font-size: 26px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 680px;
  margin: -4px 50px 26px 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  width: min(calc(100% - 48px), var(--content));
  min-height: 180px;
  margin: 0 auto;
  padding: 38px 0 30px;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.brand--footer img {
  width: 36px;
  height: 36px;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 750;
}

.site-footer small {
  grid-column: 1 / -1;
  max-width: 900px;
  color: #747d77;
  font-size: 11px;
}

.lightbox {
  width: min(94vw, 1500px);
  max-width: none;
  padding: 42px 18px 18px;
  overflow: visible;
  border: 1px solid rgba(140, 255, 193, 0.7);
  border-radius: 6px;
  background: var(--ink);
  color: var(--text);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 96px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 5px;
  right: 8px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--text);
  font-size: 27px;
  line-height: 1;
}

.lightbox-close:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.legal-page {
  background: var(--paper);
  color: var(--dark-text);
}

.legal-page .site-header {
  width: 100%;
  padding: 0 max(24px, calc((100vw - var(--content)) / 2));
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.legal-content {
  width: min(calc(100% - 48px), 860px);
  margin: 0 auto;
  padding: 100px 0 120px;
}

.legal-content h1 {
  margin: 10px 0 18px;
  font-size: 68px;
  line-height: 1;
}

.legal-lead {
  max-width: 720px;
  margin: 0 0 72px;
  color: var(--dark-muted);
  font-size: 20px;
}

.legal-content section {
  padding: 34px 0;
  border-top: 1px solid rgba(18, 21, 20, 0.24);
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.legal-content p {
  margin: 0;
  color: var(--dark-muted);
}

.legal-content a {
  color: #075e48;
  font-weight: 750;
}

.legal-updated {
  margin-top: 18px !important;
  font-size: 13px;
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 34px;
  padding: 0 18px;
  border: 1px solid var(--dark-text);
  border-radius: 4px;
  text-decoration: none;
}

.legal-page .site-footer {
  border-top-color: rgba(18, 21, 20, 0.28);
}

.legal-page .brand--footer,
.legal-page .site-footer nav,
.legal-page .site-footer a {
  color: var(--dark-text);
}

.legal-page .site-footer p,
.legal-page .site-footer small {
  color: var(--dark-muted);
}

@media (max-width: 1080px) {
  .header-links {
    gap: 18px;
  }

  .hero h1 {
    font-size: 82px;
  }

  .product-intro {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .product-intro p {
    grid-column: 2;
  }

  .product-band,
  .product-band--dark {
    grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
    gap: 44px;
  }

  .principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .principle-grid article:nth-child(2) {
    border-right: 0;
  }

  .principle-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .site-header {
    width: calc(100% - 32px);
    min-height: 68px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-links > a:not(.header-cta) {
    display: none;
  }

  .hero {
    height: auto;
    min-height: min(620px, calc(100svh - 64px));
    max-height: none;
    padding: 76px 0 16px;
  }

  .hero::after {
    width: 100%;
    border-right: 0;
    background: rgba(4, 7, 8, 0.48);
  }

  .hero-media img {
    object-position: 58% top;
    opacity: 0.48;
  }

  .hero-inner {
    width: calc(100% - 32px);
    margin-top: 0;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-line {
    font-size: 27px;
  }

  .signal-band {
    grid-template-columns: 1fr;
  }

  .signal-intro {
    padding: 25px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 21, 20, 0.32);
  }

  .signal-band ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-band li:nth-child(2) {
    border-right: 0;
  }

  .signal-band li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(18, 21, 20, 0.26);
  }

  .product-intro {
    width: calc(100% - 40px);
    min-height: 0;
    padding: 82px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-intro p {
    grid-column: 1;
  }

  .product-intro h2,
  .principles h2,
  .waitlist-band h2,
  .faq h2 {
    font-size: 38px;
  }

  .product-band,
  .product-band--dark {
    min-height: 0;
    padding: 76px 24px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-band--dark .product-visual {
    order: 2;
  }

  .product-band--dark .product-copy {
    order: 1;
  }

  .product-copy {
    max-width: 620px;
  }

  .principles {
    width: calc(100% - 40px);
    padding: 84px 0;
  }

  .principles-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 46px;
  }

  .waitlist-band,
  .faq {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .waitlist-band {
    padding: 76px 24px;
  }

  .faq {
    width: calc(100% - 40px);
    padding: 84px 0;
  }

  .site-footer {
    width: calc(100% - 40px);
    grid-template-columns: auto 1fr;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    font-size: 17px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: min(540px, calc(100svh - 48px));
    max-height: none;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-line {
    margin-top: 13px;
    font-size: 24px;
  }

  .hero-copy {
    margin: 13px 0 16px;
    font-size: 15px;
  }

  .release-label {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row input[type="email"],
  .form-row button {
    width: 100%;
    height: 50px;
  }

  .form-row button {
    min-width: 0;
  }

  .consent {
    margin-top: 8px;
  }

  .hero-note {
    display: none;
  }

  .signal-band ul {
    grid-template-columns: 1fr;
  }

  .signal-band li {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 21, 20, 0.26);
  }

  .product-intro h2,
  .principles h2,
  .waitlist-band h2,
  .faq h2 {
    font-size: 33px;
  }

  .product-copy h2 {
    font-size: 31px;
  }

  .product-band,
  .product-band--dark {
    padding: 62px 18px;
  }

  .product-visual button,
  .product-band--dark .product-visual button {
    box-shadow: 7px 8px 0 rgba(17, 21, 20, 0.13);
  }

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

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

  .principle-grid article:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .principle-grid h3 {
    margin-top: 40px;
  }

  .waitlist-band {
    padding: 62px 18px;
  }

  .faq summary {
    font-size: 16px;
  }

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

  .site-footer nav,
  .site-footer small {
    grid-column: 1;
  }

  .legal-content {
    width: calc(100% - 36px);
    padding: 78px 0 90px;
  }

  .legal-content h1 {
    font-size: 46px;
  }

  .legal-lead {
    margin-bottom: 52px;
    font-size: 17px;
  }
}

@media (max-width: 820px) and (max-height: 520px) and (orientation: landscape) {
  .hero {
    min-height: min(360px, calc(100svh - 56px));
    padding: 72px 0 12px;
  }

  .hero-inner {
    display: grid;
    grid-template-areas:
      "release form"
      "title form"
      "line form"
      "copy form";
    grid-template-columns: minmax(0, 0.82fr) minmax(230px, 1.18fr);
    column-gap: 22px;
    align-items: start;
  }

  .release-label {
    grid-area: release;
    margin-bottom: 7px;
    font-size: 10px;
  }

  .hero h1 {
    grid-area: title;
    font-size: 50px;
  }

  .hero-line {
    grid-area: line;
    margin-top: 8px;
    font-size: 20px;
  }

  .hero-copy {
    grid-area: copy;
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.35;
  }

  .waitlist-form--hero,
  .hero .no-js-waitlist {
    grid-area: form;
    margin-top: 0;
  }

  .waitlist-form--hero .form-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .waitlist-form--hero .form-row input[type="email"],
  .waitlist-form--hero .form-row button {
    width: auto;
    height: 48px;
  }

  .waitlist-form--hero .form-row button {
    min-width: 128px;
    padding: 0 12px;
  }

  .waitlist-form--hero .consent {
    font-size: 11px;
  }

  .hero-note {
    display: none;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
