:root {
  --bg: #fbf3e9;
  --surface: #fffdf8;
  --raised: #fff6ed;
  --ink: #1a1410;
  --ink-2: #5c4a3a;
  --ink-3: #9c8775;
  --line: rgba(26, 20, 16, 0.1);
  --line-strong: rgba(26, 20, 16, 0.18);
  --primary: #ff4e1f;
  --primary-soft: #ffe2d4;
  --accent: #0b3b3c;
  --accent-soft: rgba(69, 214, 179, 0.16);
  --shadow: 0 24px 80px rgba(78, 35, 15, 0.12);
  --shadow-soft: 0 16px 38px rgba(78, 35, 15, 0.08);
  --content-width: 1180px;
  --header-height: 5.25rem;
  --radius-xl: 2rem;
  --radius-lg: 1.25rem;
  --radius-md: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 177, 122, 0.24), transparent 26%),
    linear-gradient(180deg, #fff8f1 0%, var(--bg) 32%, #fff8ef 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

main {
  overflow: clip;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding:
    calc(1rem + env(safe-area-inset-top, 0px))
    clamp(1rem, 3vw, 2rem)
    1rem;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 251, 246, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(26, 20, 16, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand__mark {
  display: grid;
  height: 2.2rem;
  width: 2.2rem;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, #ffd1af 0%, transparent 42%),
    linear-gradient(135deg, #ff4e1f, #ff9a5c);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 78, 31, 0.24);
}

.site-nav {
  display: inline-flex;
  gap: 1.4rem;
  font-size: 0.94rem;
  color: var(--ink-2);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  height: 1px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #ff7b47);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 36px rgba(255, 78, 31, 0.24);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(255, 78, 31, 0.28);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button--small {
  min-height: 2.75rem;
  padding: 0 1.1rem;
  font-size: 0.94rem;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(26, 20, 16, 0.1);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  box-shadow:
    inset 0 0 0 1px rgba(26, 20, 16, 0.16),
    0 18px 34px rgba(84, 50, 24, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 0 clamp(1rem, 3vw, 2rem);
  isolation: isolate;
}

.hero__glow {
  position: absolute;
  inset: auto -10% 8% auto;
  height: 28rem;
  width: 28rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 115, 59, 0.24), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hero__routes {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  opacity: 0.9;
  pointer-events: none;
}

.hero__routes path {
  fill: none;
  stroke: url(#routeStroke);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 18 12;
  animation: route-shift 24s linear infinite;
}

.hero__routes circle {
  fill: #fff4eb;
  stroke: rgba(255, 78, 31, 0.6);
  stroke-width: 3;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: var(--content-width);
  min-height: 100svh;
  margin: 0 auto;
  padding:
    max(6rem, calc(var(--header-height) + env(safe-area-inset-top, 0px)))
    0
    3rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(2rem, 6vw, 5.25rem);
}

.hero__copy {
  max-width: 35rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow--soft {
  color: #ffbda2;
}

.hero__brand,
.section__intro h2,
.lane h3,
.launch-band h3,
.waitlist__intro h2 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero__brand {
  font-size: clamp(4.5rem, 12vw, 8rem);
  line-height: 0.94;
}

.hero__headline {
  margin: 1.25rem 0 0;
  max-width: 19ch;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero__body,
.section__intro p,
.lane p,
.launch-band p,
.waitlist__intro p,
.site-footer p,
.process__step p {
  color: var(--ink-2);
  line-height: 1.65;
}

.hero__body {
  max-width: 33rem;
  margin: 1rem 0 0;
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.hero__meta li {
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(26, 20, 16, 0.08);
  color: var(--ink-2);
  font-size: 0.92rem;
}

.hero__visual {
  position: relative;
  min-height: clamp(30rem, 54vw, 42rem);
}

.float-chip,
.phone {
  position: absolute;
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out;
}

.float-chip {
  padding: 0.68rem 0.92rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    inset 0 0 0 1px rgba(26, 20, 16, 0.08),
    0 16px 32px rgba(78, 35, 15, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.float-chip--one {
  top: 9%;
  left: 3%;
}

.float-chip--two {
  top: 21%;
  right: 1%;
}

.float-chip--three {
  bottom: 9%;
  left: 9%;
}

.phone {
  width: min(19rem, 45vw);
  padding: 0.9rem 0.72rem;
  border-radius: 2.5rem;
  background: linear-gradient(180deg, #1d1713, #0f0b08);
  box-shadow:
    0 30px 80px rgba(41, 18, 7, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transform: translate3d(var(--float-x, 0px), var(--float-y, 0px), 0)
    rotate(var(--rotate, 0deg));
}

.phone--primary {
  top: 2%;
  left: 12%;
  --rotate: -8deg;
}

.phone--secondary {
  top: 23%;
  right: 5%;
  width: min(16rem, 38vw);
  --rotate: 9deg;
}

.phone--tertiary {
  right: 18%;
  bottom: 2%;
  width: min(14.5rem, 34vw);
  --rotate: 4deg;
}

.phone:hover {
  box-shadow:
    0 36px 90px rgba(41, 18, 7, 0.34),
    inset 0 1px 1px rgba(255, 255, 255, 0.18);
}

.phone__notch {
  width: 36%;
  height: 1.28rem;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.phone__screen {
  min-height: 29rem;
  padding: 1.2rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent),
    var(--surface);
  overflow: hidden;
}

.phone__screen--accent {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 40%),
    linear-gradient(145deg, #ff4e1f, #ff8350 62%, #ffb173);
  color: #fff;
}

.phone__screen--chat {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(180deg, #fff8f1, #fff1e4);
}

.screen__topline,
.screen__section-label,
.screen__context,
.process__number,
.lane__label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.screen__topline {
  font-size: 0.72rem;
  color: var(--ink-3);
}

.phone__screen--accent .screen__topline,
.phone__screen--accent .screen__body,
.phone__screen--accent .screen__pill {
  color: rgba(255, 255, 255, 0.88);
}

.screen__title {
  margin: 0.55rem 0 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 1.58rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.screen__tag-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.95rem;
}

.screen__tag-row span,
.screen__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.85rem;
  padding: 0 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px rgba(26, 20, 16, 0.08);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink);
}

.run-preview {
  position: relative;
  margin-top: 1.1rem;
  padding: 0.7rem;
  border-radius: 1.15rem;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(26, 20, 16, 0.08),
    0 10px 22px rgba(72, 39, 15, 0.08);
}

.run-preview__map {
  height: 8.7rem;
  border-radius: 0.95rem;
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 78, 31, 0.2), transparent 18%),
    radial-gradient(circle at 72% 62%, rgba(11, 59, 60, 0.24), transparent 22%),
    linear-gradient(135deg, #fdf7f0 0%, #ffe9d8 100%);
}

.run-preview__map::before,
.run-preview__map::after {
  content: "";
  position: absolute;
  inset: auto;
}

.run-preview__badge {
  position: absolute;
  top: 1.2rem;
  left: 1.15rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
}

.run-preview__content {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.run-preview__club {
  font-weight: 700;
}

.run-preview__meta {
  margin-top: 0.22rem;
  font-size: 0.76rem;
  color: var(--ink-2);
}

.run-preview__price {
  align-self: flex-start;
  font-weight: 700;
  color: var(--accent);
}

.screen__section-label {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  color: var(--ink-3);
}

.screen__mini-stack {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.screen__mini-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.9rem;
  border-top: 1px solid rgba(26, 20, 16, 0.08);
}

.screen__mini-card span {
  color: var(--ink-2);
  font-size: 0.84rem;
}

.screen__mini-card strong {
  font-size: 0.82rem;
}

.screen__body {
  margin: 0.8rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.avatar-row {
  display: flex;
  align-items: center;
  margin-top: 1.1rem;
}

.avatar-row span,
.avatar-row em {
  width: 2.2rem;
  height: 2.2rem;
  margin-left: -0.35rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.24);
}

.avatar-row span:first-child {
  margin-left: 0;
}

.avatar-row span:nth-child(1) {
  background: linear-gradient(135deg, #ffc197, #ff8c6a);
}

.avatar-row span:nth-child(2) {
  background: linear-gradient(135deg, #ffe1b7, #f6b86e);
}

.avatar-row span:nth-child(3) {
  background: linear-gradient(135deg, #ff7c53, #ff4e1f);
}

.avatar-row span:nth-child(4) {
  background: linear-gradient(135deg, #ffd9c6, #fb9d65);
}

.avatar-row em {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.24);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
}

.screen__pill {
  margin-top: 1.1rem;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.screen__button {
  display: grid;
  place-items: center;
  min-height: 3rem;
  margin-top: 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-weight: 700;
}

.screen__context {
  font-size: 0.72rem;
  color: var(--primary);
}

.chat-stack {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.chat-bubble {
  width: fit-content;
  max-width: 92%;
  padding: 0.8rem 0.95rem;
  border-radius: 1.05rem;
  line-height: 1.45;
  font-size: 0.87rem;
}

.chat-bubble--incoming {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(26, 20, 16, 0.08);
}

.chat-bubble--outgoing {
  margin-left: auto;
  background: var(--primary-soft);
}

.chat-compose {
  margin-top: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-3);
  font-size: 0.84rem;
}

.section {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 6rem clamp(1rem, 3vw, 2rem);
}

.section__intro {
  max-width: 42rem;
}

.section__intro h2,
.waitlist__intro h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.98;
}

.section__intro p,
.waitlist__intro p {
  margin-top: 1rem;
  max-width: 36rem;
}

.process__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  padding: 2.5rem 0 0;
  margin: 0;
  list-style: none;
}

.process__step {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-strong);
}

.process__number {
  font-size: 0.8rem;
  color: var(--primary);
}

.process__step h3 {
  margin: 0.85rem 0 0;
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.process__step p {
  margin-top: 0.9rem;
}

.section--dark {
  position: relative;
  max-width: none;
  margin-top: 1rem;
  background:
    radial-gradient(circle at top left, rgba(255, 138, 79, 0.22), transparent 24%),
    linear-gradient(180deg, #1d1612 0%, #120d09 100%);
  color: #fbf3e9;
}

.section--dark .section__intro {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.section__intro--dark p {
  color: rgba(251, 243, 233, 0.74);
}

.lanes,
.launch-band {
  max-width: var(--content-width);
  margin: 0 auto;
}

.lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 3rem;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.lane {
  padding: 1.6rem 1.35rem 0 0;
  border-top: 1px solid rgba(251, 243, 233, 0.12);
}

.lane + .lane {
  padding-left: 1.35rem;
  border-left: 1px solid rgba(251, 243, 233, 0.12);
}

.lane__label {
  margin: 0;
  font-size: 0.76rem;
  color: #ffbda2;
}

.lane h3 {
  margin-top: 1rem;
  font-size: 1.55rem;
  line-height: 1.02;
}

.lane p {
  margin-top: 0.9rem;
  color: rgba(251, 243, 233, 0.72);
}

.launch-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  margin-top: 3.4rem;
  padding: 2rem clamp(1rem, 3vw, 2rem) 0;
  border-top: 1px solid rgba(251, 243, 233, 0.12);
}

.launch-band__copy h3 {
  margin-top: 0.3rem;
  font-size: 1.6rem;
}

.launch-band__copy p:last-child {
  color: rgba(251, 243, 233, 0.72);
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-content: start;
  padding: 0;
  margin: 0;
  list-style: none;
}

.city-list li {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(251, 243, 233, 0.1);
  color: #fbf3e9;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.waitlist__notes {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.waitlist__notes li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink-2);
}

.waitlist__notes li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--primary);
}

.waitlist-form {
  padding: 1.55rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8)),
    var(--surface);
  box-shadow:
    inset 0 0 0 1px rgba(26, 20, 16, 0.08),
    var(--shadow);
  backdrop-filter: blur(18px);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field-row + .field-row {
  margin-top: 0.9rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field span {
  font-size: 0.9rem;
  font-weight: 600;
}

.field em {
  font-style: normal;
  color: var(--ink-3);
  font-weight: 500;
}

.field input,
.field select {
  min-height: 3.4rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(26, 20, 16, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: rgba(255, 78, 31, 0.5);
  box-shadow: 0 0 0 4px rgba(255, 78, 31, 0.12);
}

.field--hidden {
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

.waitlist-form__submit {
  width: 100%;
  margin-top: 1rem;
}

.waitlist-form__legal {
  margin: 0.95rem 0 0;
  color: var(--ink-3);
  font-size: 0.86rem;
  line-height: 1.55;
}

.waitlist-form__status {
  min-height: 1.4rem;
  margin: 0.7rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.waitlist-form__status.is-success {
  color: var(--accent);
}

.waitlist-form__status.is-error {
  color: #b42318;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
}

.brand--footer {
  font-size: 1rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

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

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

.hero__visual .float-chip,
.hero__visual .phone {
  opacity: 0;
  animation: hero-rise 900ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.hero__visual .float-chip--one,
.hero__visual .phone--primary {
  animation-delay: 200ms;
}

.hero__visual .float-chip--two,
.hero__visual .phone--secondary {
  animation-delay: 320ms;
}

.hero__visual .float-chip--three,
.hero__visual .phone--tertiary {
  animation-delay: 420ms;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform:
      translate3d(var(--float-x, 0px), calc(var(--float-y, 0px) + 26px), 0)
      rotate(var(--rotate, 0deg));
  }

  to {
    opacity: 1;
    transform:
      translate3d(var(--float-x, 0px), var(--float-y, 0px), 0)
      rotate(var(--rotate, 0deg));
  }
}

@keyframes route-shift {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -600;
  }
}

@media (max-width: 1080px) {
  .hero__inner,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 34rem;
    margin-top: 1rem;
  }

  .process__list,
  .lanes,
  .launch-band {
    grid-template-columns: 1fr;
  }

  .lane + .lane {
    padding-left: 0;
    border-left: 0;
  }

  .launch-band {
    padding-top: 1.5rem;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .hero__visual {
    min-height: 31rem;
  }

  .phone--primary {
    left: 4%;
  }

  .phone--secondary {
    right: 1%;
  }

  .phone--tertiary {
    right: 14%;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 1rem;
  }

  .site-header .button--small {
    display: none;
  }

  .hero {
    padding-inline: 1rem;
  }

  .hero__inner {
    padding-bottom: 2rem;
  }

  .hero__headline {
    max-width: 14ch;
  }

  .hero__body {
    font-size: 0.98rem;
  }

  .hero__visual {
    min-height: 28rem;
  }

  .phone {
    width: min(15rem, 64vw);
  }

  .phone--primary {
    top: 0;
    left: 0;
  }

  .phone--secondary {
    top: 24%;
    right: 0;
    width: min(13rem, 56vw);
  }

  .phone--tertiary {
    right: 15%;
    bottom: -2%;
    width: min(12rem, 50vw);
  }

  .float-chip--two {
    top: 16%;
    right: 6%;
  }

  .process__list,
  .field-row {
    grid-template-columns: 1fr;
  }

  .section,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .waitlist-form {
    padding: 1.15rem;
  }
}

@media (max-width: 520px) {
  .hero__brand {
    font-size: 4rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .phone__screen {
    min-height: 24rem;
  }

  .float-chip {
    font-size: 0.72rem;
  }
}

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

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

  .hero__routes path {
    animation: none;
  }
}
