:root {
  color-scheme: light dark;
  --ink: #12302b;
  --muted: #536762;
  --line: #cbd8d4;
  --surface: #ffffff;
  --page: #f4f8f7;
  --brand: #0d5f50;
  --accent: #d6553f;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  line-height: 1.65;
}

header {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.nav,
main,
footer {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav img {
  display: block;
  width: 152px;
  height: auto;
}

.nav a,
footer a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

main {
  padding: 54px 0 72px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.2;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.35rem);
}

.updated {
  margin: 14px 0 42px;
  color: var(--muted);
}

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

h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  color: var(--brand);
  background: var(--surface);
  font-weight: 650;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: var(--brand);
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e4f3ef;
    --muted: #a9bdb7;
    --line: #37514a;
    --surface: #102a25;
    --page: #071d19;
    --brand: #9fe1cb;
    --accent: #ff9e88;
  }

  .nav img {
    filter: brightness(0) invert(1);
  }

  .button.primary {
    color: #071d19;
  }
}

@media (max-width: 520px) {
  .nav,
  main,
  footer {
    width: min(100% - 28px, 760px);
  }

  .nav {
    min-height: 64px;
  }

  .nav img {
    width: 132px;
  }

  main {
    padding-top: 38px;
  }
}

/* Product landing */

body.landing-page {
  --landing-bravo: #04342c;
  --landing-bravo-raised: #0a4b3f;
  --landing-cruce: #1d9e75;
  --landing-mint: #dff5ec;
  --landing-mint-strong: #9fe1cb;
  --landing-arena: #f1efe8;
  --landing-paper: #fbfaf6;
  --landing-ink: #2c2c2a;
  --landing-muted: #68736f;
  --landing-line: rgba(4, 52, 44, 0.16);
  --landing-amber: #f3a21b;
  --landing-red: #e03436;
  color-scheme: light;
  color: var(--landing-ink);
  background: var(--landing-arena);
  line-height: 1.5;
}

.landing-page a {
  text-underline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--landing-bravo);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.landing-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--landing-line);
  background: rgba(241, 239, 232, 0.96);
}

.landing-nav,
.landing-main,
.landing-footer {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

.landing-nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.landing-brand,
.footer-brand {
  display: grid;
  gap: 1px;
  color: var(--landing-bravo);
  text-decoration: none;
}

.landing-brand img {
  display: block;
  width: 174px;
  height: auto;
}

.landing-brand span,
.footer-brand span {
  margin-left: 13px;
  color: var(--landing-bravo);
  font-size: 0.84rem;
  font-weight: 500;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.landing-nav-links > a:not(.landing-button) {
  color: var(--landing-bravo);
  font-weight: 500;
  text-decoration: none;
}

.landing-main {
  max-width: none;
  padding: 0;
}

.landing-page section {
  border: 0;
}

.landing-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--landing-bravo);
  border-radius: 10px;
  color: #ffffff;
  background: var(--landing-bravo);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.landing-button:hover {
  background: var(--landing-bravo-raised);
  border-color: var(--landing-bravo-raised);
  transform: translateY(-1px);
}

.landing-button:focus-visible,
.landing-nav a:focus-visible,
.landing-footer a:focus-visible,
.text-link:focus-visible {
  outline: 3px solid var(--landing-mint-strong);
  outline-offset: 3px;
}

.landing-button-small {
  min-height: 42px;
  padding: 8px 16px;
}

.landing-button-secondary {
  color: var(--landing-bravo);
  background: transparent;
}

.landing-button-secondary:hover {
  color: #ffffff;
}

.landing-hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
  gap: 72px;
  align-items: center;
  padding: 64px 0 84px;
}

.hero-copy {
  display: grid;
  gap: 24px;
  align-content: center;
}

.landing-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--landing-bravo);
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
}

.landing-kicker > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--landing-cruce);
  box-shadow: 0 0 0 6px rgba(29, 158, 117, 0.12);
}

.landing-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--landing-bravo);
  font-size: 4.9rem;
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  color: var(--landing-muted);
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.source-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-pills li {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(29, 158, 117, 0.3);
  border-radius: 10px;
  color: var(--landing-bravo);
  background: rgba(223, 245, 236, 0.72);
  font-size: 0.88rem;
  font-weight: 500;
}

.source-pills li span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--landing-cruce);
}

.product-stage {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 24px 70px;
  border: 1px solid var(--landing-line);
  border-radius: 16px;
  background: var(--landing-paper);
}

.app-device {
  position: relative;
  z-index: 2;
  width: min(100%, 408px);
  padding: 12px;
  border: 2px solid #2c2c2a;
  border-radius: 42px;
  background: #171816;
  box-shadow: 0 26px 60px rgba(4, 52, 44, 0.18);
}

.app-speaker {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  width: 96px;
  height: 24px;
  border-radius: 14px;
  background: #171816;
  transform: translateX(-50%);
}

.app-screen {
  min-height: 654px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 32px 15px 18px;
  border-radius: 31px;
  overflow: hidden;
  color: var(--landing-ink);
  background: var(--landing-arena);
}

.app-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.app-topbar > div:first-child {
  display: grid;
  gap: 0;
}

.app-topbar img {
  width: 112px;
  height: auto;
}

.app-topbar > div:first-child span {
  margin-left: 9px;
  color: var(--landing-bravo);
  font-size: 0.67rem;
  font-weight: 500;
}

.app-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(29, 158, 117, 0.42);
  border-radius: 50%;
  color: #ffffff;
  background: var(--landing-bravo);
  font-size: 0.78rem;
}

.app-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--landing-line);
  border-radius: 10px;
  background: #ffffff;
}

.app-tabs span {
  padding: 9px 4px;
  border-right: 1px solid var(--landing-line);
  font-size: 0.72rem;
  font-weight: 500;
  text-align: center;
}

.app-tabs span:last-child {
  border-right: 0;
}

.app-tabs .active {
  color: var(--landing-bravo);
  background: var(--landing-mint);
}

.app-live {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(29, 158, 117, 0.34);
  border-radius: 14px;
  background: rgba(223, 245, 236, 0.72);
}

.app-live-heading,
.app-best-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-live-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--landing-bravo);
  font-size: 0.78rem;
  font-weight: 500;
}

.app-live-heading i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--landing-cruce);
}

.app-live small,
.app-best-heading small {
  color: var(--landing-muted);
  font-size: 0.64rem;
}

.app-live p {
  color: var(--landing-muted);
  font-size: 0.68rem;
}

.app-progress {
  height: 5px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(29, 158, 117, 0.16);
}

.app-progress span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: var(--landing-bravo);
}

.app-best {
  display: grid;
  gap: 10px;
  padding: 15px;
  border-radius: 16px;
  color: #ffffff;
  background: var(--landing-bravo);
}

.app-best-heading {
  color: var(--landing-mint-strong);
  font-size: 0.78rem;
  font-weight: 500;
}

.app-best-heading small {
  color: rgba(223, 245, 236, 0.68);
}

.app-best h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.12;
}

.app-time-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-time-row strong {
  color: #ffffff;
  font-size: 2.8rem;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.app-time-row strong small {
  font-size: 1rem;
  font-weight: 400;
}

.app-time-row > span {
  padding: 8px 10px;
  border: 1px solid rgba(159, 225, 203, 0.35);
  border-radius: 9px;
  color: var(--landing-mint);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
}

.app-best p {
  color: var(--landing-mint-strong);
  font-size: 0.67rem;
}

.app-crossings {
  display: grid;
  gap: 8px;
}

.app-crossings article {
  min-height: 72px;
  display: grid;
  grid-template-columns: 5px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(4, 52, 44, 0.09);
  border-radius: 12px;
  background: #ffffff;
}

.app-crossings i {
  width: 5px;
  height: 52px;
  border-radius: 3px;
  background: var(--landing-cruce);
}

.app-crossings i.medium {
  background: var(--landing-amber);
}

.app-crossings i.high {
  background: var(--landing-red);
}

.app-crossings article > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.app-crossings strong,
.app-crossings small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-crossings strong {
  color: var(--landing-ink);
  font-size: 0.75rem;
  font-weight: 500;
}

.app-crossings small {
  color: var(--landing-muted);
  font-size: 0.58rem;
}

.app-crossings b {
  color: var(--landing-ink);
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  white-space: nowrap;
}

.stage-note {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(29, 158, 117, 0.28);
  border-radius: 12px;
  color: var(--landing-bravo);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(4, 52, 44, 0.12);
}

.stage-note strong {
  font-weight: 500;
}

.stage-note small,
.stage-note span {
  color: var(--landing-muted);
  font-size: 0.72rem;
}

.stage-note-top {
  top: 72px;
  right: 24px;
}

.stage-note-bottom {
  bottom: 72px;
  left: 22px;
}

.stage-pulse {
  width: 9px;
  height: 9px;
  margin-bottom: 5px;
  border-radius: 50%;
  background: var(--landing-cruce);
  animation: livePulse 2.2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29, 158, 117, 0.28); }
  50% { box-shadow: 0 0 0 7px rgba(29, 158, 117, 0); }
}

.feature-band {
  padding: 92px 0 100px;
  border-top: 1px solid var(--landing-line) !important;
}

.section-heading {
  max-width: 780px;
  display: grid;
  gap: 14px;
  margin-bottom: 42px;
}

.section-heading h2,
.decision-copy h2,
.trust-copy h2,
.beta-section h2 {
  margin: 0;
  color: var(--landing-bravo);
  font-size: 3.15rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.trust-copy > p,
.beta-section > div:first-child > p:last-child {
  color: var(--landing-muted);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--landing-line);
  border-radius: 14px;
  background: var(--landing-paper);
}

.feature-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 10px;
  color: var(--landing-bravo);
  background: var(--landing-mint);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.feature-grid h3 {
  margin: 0;
  color: var(--landing-bravo);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}

.feature-grid p {
  color: var(--landing-muted);
  font-size: 0.95rem;
}

.decision-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  gap: 72px;
  align-items: center;
  padding: 84px 72px;
  border-radius: 16px;
  color: #ffffff;
  background: var(--landing-bravo);
}

.landing-kicker-light {
  color: var(--landing-mint-strong);
}

.decision-copy {
  display: grid;
  gap: 20px;
}

.decision-copy h2,
.beta-section h2 {
  color: #ffffff;
}

.decision-copy > p:not(.landing-kicker) {
  max-width: 650px;
  color: rgba(223, 245, 236, 0.76);
  font-size: 1.08rem;
}

.decision-list {
  display: grid;
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid rgba(159, 225, 203, 0.22);
}

.decision-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(159, 225, 203, 0.22);
}

.decision-list strong {
  color: #ffffff;
  font-weight: 500;
}

.decision-list span {
  color: rgba(223, 245, 236, 0.7);
}

.decision-card {
  display: grid;
  gap: 20px;
  padding: 30px;
  border: 1px solid rgba(159, 225, 203, 0.28);
  border-radius: 14px;
  color: var(--landing-ink);
  background: var(--landing-paper);
}

.decision-status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--landing-bravo);
  font-size: 0.85rem;
  font-weight: 500;
}

.decision-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--landing-cruce);
}

.decision-card h3 {
  margin: 0;
  color: var(--landing-bravo);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.12;
}

.decision-time {
  display: flex;
  align-items: center;
  gap: 16px;
}

.decision-time strong {
  color: var(--landing-bravo);
  font-size: 5.5rem;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  line-height: 0.9;
}

.decision-time span {
  color: var(--landing-muted);
  line-height: 1.25;
}

.decision-sources {
  display: grid;
  gap: 9px;
}

.decision-sources span {
  padding: 10px 12px;
  border: 1px solid var(--landing-line);
  border-radius: 9px;
  color: var(--landing-bravo);
  background: rgba(223, 245, 236, 0.55);
  font-size: 0.85rem;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: 86px;
  align-items: center;
  padding: 112px 0;
}

.trust-copy {
  display: grid;
  gap: 18px;
}

.text-link {
  width: fit-content;
  color: var(--landing-bravo);
  font-weight: 500;
  text-decoration: none;
}

.trust-facts {
  display: grid;
  border-top: 1px solid var(--landing-line);
}

.trust-facts article {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--landing-line);
}

.trust-facts strong {
  color: var(--landing-bravo);
  font-weight: 500;
}

.trust-facts span {
  color: var(--landing-muted);
}

.beta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.72fr);
  gap: 48px;
  align-items: end;
  padding: 72px;
  border-radius: 16px;
  color: #ffffff;
  background: var(--landing-bravo-raised);
}

.beta-section > div:first-child {
  max-width: 760px;
  display: grid;
  gap: 16px;
}

.beta-section > div:first-child > p:last-child {
  color: rgba(223, 245, 236, 0.76);
}

.newsletter-wrap {
  display: grid;
  gap: 14px;
  width: 100%;
}

.newsletter-form {
  position: relative;
  display: grid;
  gap: 10px;
}

.newsletter-form > label {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.newsletter-field {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
}

.newsletter-field input {
  min-width: 0;
  min-height: 50px;
  padding: 11px 14px;
  border: 1px solid rgba(223, 245, 236, 0.42);
  border-radius: 10px;
  outline: 0;
  color: var(--landing-ink);
  background: #ffffff;
  font: inherit;
}

.newsletter-field input::placeholder {
  color: #77817d;
}

.newsletter-field input:focus {
  border-color: var(--landing-mint-strong);
  box-shadow: 0 0 0 3px rgba(159, 225, 203, 0.22);
}

.newsletter-field .landing-button {
  min-height: 50px;
  white-space: nowrap;
}

.newsletter-field .landing-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.newsletter-consent {
  color: rgba(223, 245, 236, 0.68);
  font-size: 0.74rem;
  line-height: 1.45;
}

.newsletter-consent a,
.newsletter-question {
  color: var(--landing-mint);
  font-weight: 500;
}

.newsletter-question {
  width: fit-content;
  font-size: 0.88rem;
}

.newsletter-status {
  min-height: 24px;
  color: var(--landing-mint);
  font-size: 0.88rem;
  font-weight: 500;
}

.newsletter-status.is-error {
  color: #ffd1c7;
}

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

.landing-button-light {
  color: var(--landing-bravo);
  background: #ffffff;
  border-color: #ffffff;
}

.landing-button-light:hover {
  color: var(--landing-bravo);
  background: var(--landing-mint);
  border-color: var(--landing-mint);
}

.landing-footer {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 36px;
  margin-top: 72px;
  padding: 40px 0 48px;
  border-top: 1px solid var(--landing-line);
  color: var(--landing-muted);
}

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

.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.landing-footer nav a {
  color: var(--landing-bravo);
  font-weight: 500;
  text-decoration: none;
}

.landing-footer p {
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .stage-pulse {
    animation: none;
  }

  .landing-button {
    transition: none;
  }
}

@media (max-width: 1160px) {
  .landing-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 44px;
  }

  .landing-hero h1 {
    font-size: 3.8rem;
  }

  .product-stage {
    padding-inline: 48px;
  }

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

  .decision-section {
    gap: 46px;
    padding-inline: 48px;
  }

  .trust-section {
    gap: 56px;
  }
}

@media (max-width: 920px) {
  .landing-nav,
  .landing-main,
  .landing-footer {
    width: min(100% - 40px, 720px);
  }

  .landing-nav-links > a:not(.landing-button) {
    display: none;
  }

  .landing-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 54px 0 72px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .landing-hero h1 {
    font-size: 4rem;
  }

  .product-stage {
    min-height: 720px;
  }

  .decision-section,
  .trust-section,
  .beta-section {
    grid-template-columns: 1fr;
  }

  .decision-section {
    gap: 54px;
  }

  .trust-section {
    gap: 42px;
    padding: 92px 0;
  }

  .beta-section {
    align-items: start;
  }

  .landing-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .landing-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .landing-nav,
  .landing-main,
  .landing-footer {
    width: min(100% - 28px, 560px);
  }

  .landing-nav {
    min-height: 76px;
  }

  .landing-brand img {
    width: 132px;
  }

  .landing-brand span {
    display: none;
  }

  .landing-nav-links {
    gap: 0;
  }

  .landing-button-small {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .landing-hero {
    gap: 42px;
    padding: 42px 0 64px;
  }

  .landing-hero h1 {
    font-size: 3.05rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions {
    display: grid;
  }

  .source-pills li {
    font-size: 0.78rem;
  }

  .product-stage {
    min-height: 0;
    padding: 18px 8px;
    background: transparent;
  }

  .app-device {
    width: 100%;
    max-width: 390px;
  }

  .stage-note {
    display: none;
  }

  .feature-band {
    padding: 72px 0;
  }

  .section-heading h2,
  .decision-copy h2,
  .trust-copy h2,
  .beta-section h2 {
    font-size: 2.35rem;
  }

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

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

  .decision-section,
  .beta-section {
    margin-inline: -14px;
    padding: 54px 24px;
    border-radius: 0;
  }

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

  .decision-card {
    padding: 24px;
  }

  .decision-list div,
  .trust-facts article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .decision-time strong {
    font-size: 4.8rem;
  }

  .trust-section {
    padding: 78px 0;
  }

  .landing-footer {
    gap: 26px;
    margin-top: 52px;
  }

  .landing-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 390px) {
  .landing-hero h1 {
    font-size: 2.65rem;
  }

  .landing-nav-links .landing-button {
    font-size: 0.76rem;
  }

  .app-screen {
    padding-inline: 11px;
  }

  .app-crossings article {
    grid-template-columns: 5px minmax(0, 1fr);
  }

  .app-crossings b {
    grid-column: 2;
  }

  .decision-time {
    align-items: flex-end;
  }
}
