:root {
  --bg: #000000;
  --card: #1a1a1a;
  --card-border: rgba(255, 255, 255, 0.06);
  --white: #ffffff;
  --muted: #888888;
  --muted-strong: #555555;
  --ink: #0a0a0a;
  --gradient: linear-gradient(
    90deg,
    #ff708b 0%,
    #ffc69f 100%
  );
  --hero-glow: radial-gradient(
    90% 42% at 42% 58%,
    rgba(255, 236, 230, 0.72) 0%,
    rgba(255, 220, 210, 0.28) 38%,
    rgba(255, 220, 210, 0) 70%
  );
  --page-inset: 20px;
  --radius-shell: 32px;
  --radius-card: 24px;
  --radius-media: 16px;
  --max: 1100px;
  --header-h: 64px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

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

.page {
  width: min(100% - (var(--page-inset) * 2), 1600px);
  margin: var(--page-inset) auto;
}

/* Asset placeholders */
.media-slot {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-media);
}

.media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.media-img.is-loaded {
  opacity: 1;
}

.media-img.is-missing {
  display: none;
}

.media-fallback {
  position: relative;
  z-index: 1;
  padding: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4;
  max-width: 90%;
}

.media-slot:has(.media-img.is-loaded) {
  border-color: transparent;
}

.media-slot:has(.media-img.is-loaded):not(.float-card):not(.hero-phone-slot) {
  background: transparent;
}

.media-slot:has(.media-img.is-loaded) .media-fallback {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border: none;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn-dark:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.btn-footer {
  height: 52px;
  padding: 0 32px;
  background: var(--white);
  color: #ff7a8c;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.btn-footer:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

/* Hero — full first viewport, text above, phone clipped at bottom */
.hero {
  margin-bottom: 72px;
}

.hero-shell {
  position: relative;
  background-color: #ff708b;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  overflow: hidden;
  padding: 20px 40px 0;
  /* Slightly taller than viewport; phone hard-clips at the bottom */
  --hero-h: max(1040px, calc(100svh - (var(--page-inset) * 2) + 120px));
  height: var(--hero-h);
  min-height: var(--hero-h);
  display: flex;
  flex-direction: column;
}

.hero-shell::before {
  content: none;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  height: 52px;
  flex-shrink: 0;
}

.logo {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-img {
  position: static;
  width: 34px;
  height: 34px;
  opacity: 1;
  object-fit: contain;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 920px;
  /* Shift the copy block slightly upward */
  padding-top: clamp(12px, 2.5vh, 40px);
  flex-shrink: 0;
  animation: heroIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 14px;
  /* Space below Coming soon — keep title relatively close */
  margin-bottom: clamp(20px, 2.5vh, 32px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 920px;
  color: var(--white);
  font-family: "Inter", var(--font);
  font-size: 128px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 0.82;
  margin-bottom: clamp(52px, 6vh, 80px);
}

.hero-sub {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.55;
  margin-bottom: clamp(48px, 6vh, 76px);
}

.waitlist-form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(100%, 600px);
  padding: 8px;
  margin-bottom: 0;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(140, 50, 70, 0.14);
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  height: 56px;
  padding: 0 24px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.waitlist-form input::placeholder {
  color: rgba(10, 10, 10, 0.38);
}

.waitlist-form .btn {
  height: 56px;
  padding: 0 26px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #000;
  color: #fff;
  box-shadow: none;
}

.waitlist-form .btn:hover {
  background: #111;
  box-shadow: none;
}

.waitlist-form .btn:disabled {
  opacity: 0.75;
  cursor: default;
  transform: none;
}

/* Phone under the form; overflow:hidden on shell hard-clips the bottom */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding-top: clamp(60px, 7.5vh, 92px);
  flex-shrink: 0;
  /* Light hang — a touch more of the phone clipped vs previous */
  margin-bottom: -15%;
  pointer-events: none;
}

.phone-wrap {
  position: relative;
  /* Reference: phone ≈ 19–20% of shell */
  width: 20%;
  max-width: 300px;
  min-width: 200px;
  margin: 0;
  pointer-events: auto;
  animation: floatUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* Sharp CSS iPhone bezel — stays crisp at any size */
.iphone-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 473 / 1024;
  padding: 2.4%;
  background:
    linear-gradient(
      155deg,
      #2a2a2a 0%,
      #111 22%,
      #000 50%,
      #1a1a1a 78%,
      #2e2e2e 100%
    );
  border-radius: 16.5% / 8.2%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 0 2px rgba(0, 0, 0, 0.8),
    0 18px 44px rgba(0, 0, 0, 0.35);
}

.iphone-frame__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14.5% / 7.1%;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.iphone-frame .phone-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  border-radius: inherit;
  filter: none;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Hardware buttons */
.iphone-frame__button {
  position: absolute;
  background: linear-gradient(90deg, #2a2a2a, #0a0a0a 45%, #1f1f1f);
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.iphone-frame__button--silent {
  left: -1.6%;
  top: 14%;
  width: 1.6%;
  height: 4.5%;
  border-radius: 2px 0 0 2px;
}

.iphone-frame__button--vol-up {
  left: -1.6%;
  top: 22%;
  width: 1.6%;
  height: 7%;
  border-radius: 2px 0 0 2px;
}

.iphone-frame__button--vol-down {
  left: -1.6%;
  top: 31%;
  width: 1.6%;
  height: 7%;
  border-radius: 2px 0 0 2px;
}

.iphone-frame__button--power {
  right: -1.6%;
  top: 26%;
  width: 1.6%;
  height: 10%;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(90deg, #1f1f1f, #0a0a0a 55%, #2a2a2a);
}

.float-card {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  animation: floatCard 4.5s ease-in-out infinite;
  background: #000;
  border: none !important;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.float-card:has(.media-img.is-loaded) {
  background: #000;
  border: none !important;
}

.float-card .media-img {
  object-fit: cover;
}

.float-card-left {
  /* ~half phone width; sits on the left with a clear gap from the right card */
  width: 62%;
  max-width: none;
  aspect-ratio: 1024 / 481;
  left: -40%;
  top: 19%;
  animation-delay: 0.5s;
}

.float-card-right {
  width: 66%;
  max-width: none;
  aspect-ratio: 956 / 651;
  right: -42%;
  top: 30%;
  animation-delay: 1.1s;
}

/* Sections */
.section {
  padding: 120px 8px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2,
.steps-intro h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 12px;
}

.features .section-head h2 {
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 28px;
}

.section-head p,
.steps-intro p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto;
}

.features.section {
  padding-top: 72px;
  padding-bottom: 48px;
  padding-left: 0;
  padding-right: 0;
}

.features .section-head {
  margin-bottom: 72px;
}

.features .section-head p {
  color: var(--white);
  font-size: 16px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 648px);
  gap: 24px;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  justify-content: center;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  width: 648px;
  height: 476px;
  background: #121212;
  border: none;
  border-radius: var(--radius-card);
  padding: 36px 32px 30px;
  overflow: hidden;
}

/* Cards whose artwork is a full pre-composed export (text baked in) */
.feature-card-image {
  padding: 0;
  height: 500px;
  background: #121212;
  border-radius: var(--radius-card);
  border: none;
  overflow: hidden;
}

.feature-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-media {
  width: 100%;
  flex: 1;
  min-height: 0;
  height: auto;
  margin-bottom: 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.feature-media-wide {
  height: auto;
}

.feature-media .media-img {
  object-fit: contain;
  padding: 12px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.feature-card p {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: none;
  white-space: nowrap;
  line-height: 1.5;
  flex-shrink: 0;
}

/* Quote — tall scroll runway; sticky black full-viewport with reading reveal */
.quote {
  position: relative;
  height: 280vh;
  padding: 0;
  margin: 0;
  background: #000;
}

.quote-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(28px, 8vw, 120px);
  background: #000;
  box-sizing: border-box;
}

.quote-text {
  max-width: 100%;
  width: max-content;
  margin: 0;
  font-size: clamp(28px, 4.4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
  text-align: left;
}

.quote-line {
  display: block;
  white-space: nowrap;
}

.quote-word {
  color: #2e2e2e;
  transition: color 0.12s linear, text-shadow 0.12s linear;
}

.quote-word.is-lit {
  color: #f5f5f5;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35),
    0 -1px 0 rgba(0, 0, 0, 0.45),
    0 2px 4px rgba(0, 0, 0, 0.35),
    0 8px 22px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(255, 255, 255, 0.08);
}

/* Steps */
.steps {
  padding-top: 100px;
  padding-bottom: 120px;
  padding-left: 0;
  padding-right: 0;
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  gap: 56px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(8px, 2vw, 28px);
  padding-right: clamp(8px, 2vw, 28px);
  align-items: start;
  box-sizing: border-box;
}

.steps-intro {
  position: sticky;
  top: 40px;
  padding-top: 0;
  max-width: 400px;
}

.steps-intro h2 {
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-align: left;
}

.steps-heading-line,
.steps-sub-line {
  display: block;
  white-space: nowrap;
}

.steps-intro p {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.55;
  max-width: none;
  margin: 0;
  text-align: left;
}

.steps-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 56px;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: 0;
}

.timeline-line {
  position: absolute;
  left: 17px;
  top: 17px;
  bottom: 0;
  width: 0;
  border-left: 1.5px dashed rgba(255, 255, 255, 0.28);
}

.step-item {
  position: relative;
}

.step-number {
  position: absolute;
  left: -39px;
  top: 0;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transform: translateX(-50%);
}

.step-card {
  box-sizing: border-box;
  width: 760px;
  height: 543px;
  max-width: 100%;
  background: #121212;
  border: none;
  border-radius: var(--radius-card);
  padding: 40px 36px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.step-card-image {
  padding: 0;
}

.step-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.step-media {
  width: 100%;
  flex: 1;
  min-height: 0;
  aspect-ratio: auto;
  margin-bottom: 28px;
  border-radius: 18px;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.step-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.5;
  max-width: 420px;
  margin: 0 auto;
  flex-shrink: 0;
}

/* Footer — Deck-style full-bleed brand near the bottom */
.site-footer {
  margin-top: 40px;
}

.footer-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: min(580px, 76vh);
  padding: 56px 0 22px;
  background-color: #ff708b;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-shell);
  overflow: hidden;
  text-align: center;
}

.footer-shell .btn-footer {
  flex-shrink: 0;
  margin-left: clamp(20px, 3vw, 40px);
  margin-right: clamp(20px, 3vw, 40px);
  margin-bottom: 24px;
}

.footer-brand {
  display: block;
  width: 100%;
  margin-top: auto;
  margin-bottom: 28px;
  line-height: 0;
  padding: 0 clamp(12px, 1.5vw, 24px);
  box-sizing: border-box;
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-6px);
}

.footer-meta {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 0;
  padding: 0 clamp(20px, 3vw, 40px);
  box-sizing: border-box;
}

.footer-copy {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(80, 20, 40, 0.55);
  text-align: left;
  justify-self: start;
}

.footer-tagline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(80, 20, 40, 0.55);
  white-space: nowrap;
  justify-self: center;
}

.footer-heart {
  display: block;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(80, 20, 40, 0.55);
  justify-self: end;
}

.footer-links a:hover {
  color: rgba(40, 10, 20, 0.85);
}

/* Animations preserved / transferred from previous site */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Responsive */
@media (max-width: 1100px) {
  .hero-title {
    font-size: 88px;
    line-height: 72px; /* 105 * 88/128 */
    letter-spacing: 1.5px;
    margin-bottom: 40px;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 48px;
  }
}

@media (max-width: 1360px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 1316px;
  }

  .feature-card {
    width: 100%;
    height: auto;
    min-height: 420px;
    aspect-ratio: 648 / 476;
  }

  .feature-card-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 648 / 500;
  }
}

@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 648px;
  }

  .feature-card {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
  }

  .feature-card p {
    white-space: normal;
  }

  .features .section-head {
    margin-bottom: 56px;
  }

  .steps-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .steps-timeline {
    width: 100%;
    margin-left: 0;
  }

  .steps-heading-line,
  .steps-sub-line {
    white-space: normal;
  }

  .step-card {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 760 / 543;
  }

  .timeline-line {
    bottom: 28px;
  }

  .steps-intro {
    position: static;
    text-align: center;
  }

  .steps-intro h2,
  .steps-intro p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-head h2,
  .steps-intro h2 {
    font-size: 32px;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 24px, 1600px);
    margin: 12px auto;
  }

  .hero-shell,
  .footer-shell {
    border-radius: 18px;
  }

  .hero-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-shell {
    --hero-h: max(920px, calc(100svh - 24px + 80px));
    height: var(--hero-h);
    min-height: var(--hero-h);
    padding-top: 12px;
  }

  .hero-inner {
    min-height: 0;
  }

  .hero-title {
    font-size: 56px;
    line-height: 46px; /* 105 * 56/128 */
    letter-spacing: 1px;
    margin-bottom: 28px;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 24px;
    max-width: 420px;
    margin-bottom: 36px;
  }

  .waitlist-form {
    flex-direction: column;
    border-radius: 24px;
    padding: 10px;
    width: min(100%, 420px);
  }

  .waitlist-form input,
  .waitlist-form .btn {
    width: 100%;
    height: 48px;
  }

  .phone-wrap {
    width: 32%;
    max-width: 260px;
  }

  .hero-visual {
    margin-bottom: -10%;
    padding-top: 40px;
  }

  .float-card-left {
    left: -36%;
    width: 55%;
    top: 16%;
  }

  .float-card-right {
    right: -38%;
    width: 58%;
    top: 30%;
  }

  .section {
    padding: 72px 4px;
  }

  .feature-media {
    flex: 1;
    min-height: 180px;
    height: auto;
  }

  .footer-shell {
    min-height: 360px;
    padding-top: 36px;
    padding-bottom: 16px;
  }

  .footer-brand {
    margin-bottom: 20px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-meta {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-copy,
  .footer-links {
    justify-self: center;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 42px;
    line-height: 35px; /* 105 * 42/128 */
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }

  .phone-wrap {
    width: 48%;
    max-width: 260px;
  }

  .hero-visual {
    margin-bottom: -6%;
    padding-top: 32px;
  }

  .float-card {
    display: none;
  }

  .section-head h2,
  .steps-intro h2 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .quote-word {
    color: #f5f5f5;
    transition: none;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.35),
      0 -1px 0 rgba(0, 0, 0, 0.45),
      0 2px 4px rgba(0, 0, 0, 0.35),
      0 8px 22px rgba(0, 0, 0, 0.45),
      0 0 28px rgba(255, 255, 255, 0.08);
  }
}
