:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --paper: #f5f5f7;
  --surface: #ffffff;
  --line: rgba(29, 29, 31, 0.12);
  --accent: #1d6b63;
  --accent-dark: #0f403c;
  --preview: #dcae4b;
  --shadow: 0 30px 90px rgba(29, 29, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, rgba(255, 255, 255, 0.82) 44%, rgba(245, 245, 247, 0.92)),
    var(--paper);
  font: 16px/1.5 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

.sr-only,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
  font-size: 13px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--surface);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
}

nav,
.site-footer div {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.nav-left {
  justify-self: start;
}

.nav-cta {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 8px 14px;
  color: rgba(29, 29, 31, 0.76);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(29, 29, 31, 0.07);
  font-size: 13px;
  font-weight: 700;
}

.nav-cta:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
}

.hero-home {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100svh - 76px);
  overflow: hidden;
  padding: clamp(36px, 6vw, 82px) 20px 0;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(247, 248, 244, 0), var(--paper) 88%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100vw - 40px));
  padding-top: clamp(6px, 2vw, 28px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: rgba(29, 29, 31, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: clamp(88px, 16vw, 214px);
  font-weight: 850;
  line-height: 0.78;
  letter-spacing: 0;
}

.hero-statement {
  max-width: 1000px;
  margin: clamp(16px, 2vw, 24px) auto 0;
  color: var(--ink);
  font-size: clamp(48px, 8.8vw, 116px);
  font-weight: 850;
  line-height: 0.88;
  letter-spacing: -0.01em;
}

.hero-subcopy {
  max-width: 860px;
  margin: clamp(26px, 3.2vw, 40px) auto 0;
  color: rgba(29, 29, 31, 0.84);
  font-size: clamp(22px, 2.7vw, 35px);
  font-weight: 750;
  line-height: 1.12;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(760px, 100%);
  margin: clamp(22px, 3vw, 34px) auto 0;
}

.proof-strip span {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 0;
  color: rgba(29, 29, 31, 0.56);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-strip span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 12px;
  background: rgba(29, 29, 31, 0.28);
  border-radius: 999px;
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(520px, 100%);
  min-height: 52px;
  margin: clamp(16px, 2.4vw, 26px) auto 0;
  padding: 4px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 999px;
  box-shadow: 0 18px 54px rgba(29, 29, 31, 0.1);
  backdrop-filter: blur(16px);
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
}

.waitlist-form input[type="email"] {
  min-width: 0;
  min-height: 44px;
  padding: 0 6px 0 17px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
  font-weight: 650;
}

.waitlist-form input[type="email"]::placeholder {
  color: rgba(17, 19, 17, 0.46);
}

.waitlist-form:focus-within {
  border-color: rgba(17, 19, 17, 0.22);
  box-shadow: 0 20px 60px rgba(17, 19, 17, 0.14);
}

.waitlist-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  color: var(--surface);
  background: rgba(29, 29, 31, 0.92);
  border: 1px solid rgba(29, 29, 31, 0.92);
  border-radius: 999px;
  box-shadow: 0 16px 44px rgba(29, 29, 31, 0.14);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.1;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}

.waitlist-form button:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 50px rgba(15, 64, 60, 0.2);
  transform: translateY(-1px);
}

.waitlist-form.is-loading button {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.waitlist-form.is-invalid {
  border-color: rgba(176, 70, 48, 0.42);
}

.form-status {
  min-height: 20px;
  max-width: 360px;
  margin: 10px auto 0;
  color: rgba(29, 29, 31, 0.54);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.form-status:empty {
  min-height: 0;
  margin-top: 0;
}

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

.form-status[data-tone="error"] {
  color: #9b3a2f;
}

.form-status a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(1340px, calc(100vw - 40px));
  height: clamp(360px, 50svh, 620px);
  margin: clamp(26px, 4vw, 52px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-bottom: 0;
  border-radius: 44px 44px 0 0;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 42px 120px rgba(29, 29, 31, 0.13);
}

.hero-fallback-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.03);
  transform-origin: center top;
  filter: saturate(0.86) contrast(0.97);
  transition: opacity 220ms ease;
}

.real-screenshot-stage {
  position: absolute;
  inset: 0;
  display: grid;
  overflow: hidden;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(245, 245, 247, 0.08), rgba(245, 245, 247, 0.86)),
    linear-gradient(115deg, rgba(29, 107, 99, 0.13), transparent 44%),
    #eef1ea;
  transition: opacity 220ms ease;
}

.hero-visual.has-real-screenshots .hero-fallback-image {
  opacity: 0;
}

.hero-visual.has-real-screenshots .real-screenshot-stage {
  opacity: 1;
}

.real-screenshot-cluster {
  position: relative;
  width: min(1060px, 90%);
  height: 100%;
  min-height: 440px;
  transform: translateY(-1%);
}

.real-phone {
  position: absolute;
  width: clamp(174px, 18.6vw, 252px);
  aspect-ratio: 1320 / 2868;
  padding: 8px;
  background: #111113;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  box-shadow:
    0 38px 84px rgba(29, 29, 31, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: phone-breathe 7s ease-in-out infinite;
}

.real-phone::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 52px;
  height: 15px;
  border-radius: 999px;
  background: #111311;
  transform: translateX(-50%);
}

.real-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #faf8f0;
  border-radius: 26px;
}

.real-phone--home {
  left: 4%;
  top: 20%;
  z-index: 1;
  transform: rotate(-7deg);
  animation-delay: -1.2s;
}

.real-phone--trip {
  left: 50%;
  top: 0;
  z-index: 3;
  width: clamp(220px, 23.8vw, 328px);
  transform: translateX(-50%) rotate(1.5deg);
  animation-delay: -2.8s;
}

.real-phone--bag {
  right: 4%;
  top: 18%;
  z-index: 2;
  transform: rotate(6deg);
  animation-delay: -4s;
}

.hero-visual figcaption {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vw, 46px);
  z-index: 3;
  display: inline-flex;
  max-width: min(420px, calc(100% - 40px));
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(29, 29, 31, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  transform: translateX(-50%);
}

@keyframes phone-breathe {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

[data-reveal] {
  opacity: 0.001;
  transform: translateY(32px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-note-rows article[data-reveal],
.flow-steps article[data-reveal],
.comparison-grid article[data-reveal] {
  transition-delay: var(--reveal-delay, 0ms);
}

.site-footer {
  position: relative;
  z-index: 4;
  min-height: 72px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.product-note {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(84px, 11vw, 150px) 0 clamp(72px, 9vw, 116px);
  border-top: 1px solid var(--line);
}

.product-note-copy {
  position: sticky;
  top: 28px;
  align-self: start;
}

.product-note h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(44px, 6.4vw, 86px);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: 0;
}

.product-note-rows {
  display: grid;
  gap: 0;
}

.product-note-rows article {
  display: grid;
  grid-template-columns: 46px minmax(0, 0.46fr) minmax(0, 1fr);
  gap: 18px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.product-note-rows article:last-child {
  border-bottom: 1px solid var(--line);
}

.product-note-rows span {
  color: rgba(29, 29, 31, 0.38);
  font-size: 12px;
  font-weight: 850;
}

.product-note h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 0.98;
}

.product-note p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  line-height: 1.38;
}

.section-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 11px 17px;
  color: var(--surface);
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 16px 44px rgba(17, 19, 17, 0.12);
  font-size: 14px;
  font-weight: 850;
}

.section-cta:hover {
  background: var(--accent-dark);
}

.how-it-works {
  position: relative;
  z-index: 4;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 138px) 0 clamp(82px, 11vw, 146px);
  border-top: 1px solid var(--line);
  text-align: center;
}

.section-heading {
  max-width: 980px;
  margin: 0 auto clamp(36px, 5vw, 64px);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(44px, 6.8vw, 92px);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: 0;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}

.flow-steps article {
  min-height: 292px;
  padding: clamp(24px, 3.2vw, 38px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(29, 29, 31, 0.06);
}

.flow-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  color: var(--surface);
  background: var(--ink);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
}

.flow-steps h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.96;
}

.flow-steps p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 1.38;
}

.section-cta--center {
  margin: clamp(26px, 4vw, 42px) auto 0;
}

.why-carry {
  position: relative;
  z-index: 4;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 138px) 0 clamp(82px, 11vw, 146px);
  border-top: 1px solid var(--line);
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: left;
}

.comparison-grid article {
  min-height: 286px;
  padding: clamp(24px, 3.2vw, 38px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(29, 29, 31, 0.06);
}

.comparison-grid span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 46px;
  padding: 7px 10px;
  color: rgba(29, 29, 31, 0.68);
  background: rgba(245, 245, 247, 0.92);
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.comparison-grid h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.96;
}

.comparison-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 1.38;
}

.document-page,
.lab-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0;
}

.document-hero,
.document-section {
  max-width: 760px;
}

.document-hero {
  padding-bottom: 40px;
}

.document-hero h1,
.lab-heading h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.96;
}

.document-hero p,
.lab-heading p {
  color: var(--muted);
  font-size: 19px;
}

.document-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.document-section h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.05;
}

.document-section p,
.document-section li {
  margin: 0;
  color: var(--muted);
}

.document-section ul {
  margin: 0;
  padding-left: 22px;
}

.lab-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.mockup-workbench {
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
}

.mockup-controls,
.mockup-stage {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.mockup-controls {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
}

.mockup-controls h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.05;
}

.control-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.file-picker {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.file-picker input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--ink);
  border-radius: 8px;
  font-size: 14px;
}

.file-name {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.control-group {
  display: grid;
  gap: 8px;
}

.control-group label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.control-group input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.mockup-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plain-button {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--ink);
  background: #f4f5f1;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.plain-button:hover {
  background: #eceee8;
}

.mockup-stage {
  min-height: 680px;
  padding: clamp(24px, 5vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(29, 107, 99, 0.18), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(220, 174, 75, 0.22), transparent 34%),
    #f5f3ed;
  perspective: var(--mockup-perspective, 1050px);
}

.phone-scene {
  display: grid;
  min-height: 100%;
  place-items: center;
  transform-style: preserve-3d;
}

.phone-shell {
  --rx: 10deg;
  --ry: -24deg;
  --rz: 2deg;
  --scale: 1;
  position: relative;
  width: min(300px, 72vw);
  aspect-ratio: 390 / 844;
  padding: 13px;
  overflow: hidden;
  border: 10px solid #111412;
  border-radius: 42px;
  background: #111412;
  box-shadow: var(--shadow);
  transform: rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(var(--rz)) scale(var(--scale));
  transform-style: preserve-3d;
  transition: transform 180ms ease;
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 4;
  width: 78px;
  height: 22px;
  border-radius: 999px;
  background: #111412;
  transform: translateX(-50%);
}

.phone-shell::after {
  content: "";
  position: absolute;
  inset: 13px;
  z-index: 3;
  pointer-events: none;
  border-radius: 30px;
  background: linear-gradient(118deg, rgba(255, 255, 255, var(--glare, 0.24)), transparent 34%, rgba(255, 255, 255, 0.03) 72%);
  mix-blend-mode: screen;
}

.phone-screen,
.screen-empty {
  position: absolute;
  inset: 13px;
  border-radius: 30px;
}

.phone-screen {
  z-index: 1;
  width: calc(100% - 26px);
  height: calc(100% - 26px);
  object-fit: cover;
  background: #f9f8f2;
  opacity: 0;
}

.phone-shell.has-screen .phone-screen {
  opacity: 1;
}

.screen-empty {
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  background: #f9f8f2;
  border: 1px dashed rgba(21, 22, 21, 0.22);
}

.phone-shell.has-screen .screen-empty {
  display: none;
}

.mockup-output {
  min-height: 40px;
  padding: 10px 12px;
  color: var(--muted);
  background: #f7f7f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: 12px/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

@media (max-width: 820px) {
  .product-note {
    grid-template-columns: 1fr;
  }

  .product-note-copy {
    position: static;
  }

  .product-note-rows article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .product-note-rows p {
    grid-column: 2;
  }

  .flow-steps {
    grid-template-columns: 1fr;
  }

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

  .flow-steps article {
    min-height: 0;
  }

  .comparison-grid article {
    min-height: 0;
  }

  .flow-steps span {
    margin-bottom: 34px;
  }

  .comparison-grid span {
    margin-bottom: 34px;
  }

  .mockup-workbench {
    grid-template-columns: 1fr;
  }

  .mockup-stage {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .document-page,
  .lab-page,
  .how-it-works,
  .why-carry {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
  }

  .nav-left {
    display: none;
  }

  nav {
    gap: 14px;
  }

  .brand {
    justify-self: start;
  }

  .nav-cta {
    display: none;
  }

  .hero-home {
    min-height: calc(100svh - 72px);
    padding: 34px 16px 0;
  }

  h1 {
    font-size: clamp(76px, 23vw, 104px);
    line-height: 0.82;
  }

  .hero-statement,
  .hero-subcopy {
    max-width: 342px;
  }

  .hero-statement {
    margin-top: 18px;
    font-size: clamp(40px, 11.6vw, 56px);
    line-height: 0.94;
  }

  .hero-subcopy {
    margin-top: 22px;
    font-size: clamp(20px, 5.8vw, 26px);
    line-height: 1.12;
  }

  .proof-strip {
    display: none;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    width: min(310px, 100%);
    padding: 5px;
    border-radius: 18px;
  }

  .waitlist-form input[type="email"] {
    min-height: 42px;
    padding: 0 12px;
    text-align: center;
  }

  .waitlist-form button {
    min-height: 42px;
    width: 100%;
  }

  .hero-visual {
    width: min(560px, calc(100vw - 32px));
    height: clamp(330px, 50svh, 460px);
    margin-top: 34px;
    border-radius: 30px 30px 0 0;
  }

  .real-screenshot-cluster {
    width: min(500px, 112%);
    min-height: 330px;
    transform: translateY(-5%);
  }

  .real-phone {
    width: clamp(118px, 33vw, 158px);
    padding: 5px;
    border-radius: 24px;
  }

  .real-phone::before {
    top: 11px;
    width: 34px;
    height: 10px;
  }

  .real-phone img {
    border-radius: 19px;
  }

  .real-phone--home {
    left: 4%;
    top: 26%;
  }

  .real-phone--trip {
    width: clamp(146px, 40vw, 190px);
    top: 7%;
  }

  .real-phone--bag {
    right: 4%;
    top: 24%;
  }

  .hero-visual figcaption {
    display: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }

  .how-it-works {
    padding-top: 58px;
  }

  .why-carry {
    padding-top: 58px;
  }

  .flow-steps {
    gap: 12px;
  }

  .comparison-grid {
    gap: 12px;
  }

  .flow-steps article {
    padding: 22px;
    border-radius: 22px;
  }

  .comparison-grid article {
    padding: 22px;
    border-radius: 22px;
  }

  .flow-steps span {
    width: 36px;
    height: 36px;
    margin-bottom: 28px;
    font-size: 16px;
  }

  .comparison-grid span {
    margin-bottom: 28px;
  }

  .product-note {
    width: min(100% - 32px, 1120px);
    padding-top: 70px;
  }

  .product-note h2,
  .section-heading h2 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.94;
  }

  .product-note h3,
  .flow-steps h3,
  .comparison-grid h3 {
    font-size: clamp(26px, 7.8vw, 34px);
  }

  [data-reveal] {
    transform: translateY(20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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