@font-face {
  font-family: "Host Grotesk Local";
  src: url("assets/fonts/host-grotesk-regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Madefor Text Local";
  src: url("assets/fonts/madefor-text.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Archivo Local";
  src: url("assets/fonts/archivo-variable.woff2") format("woff2");
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
}

:root {
  --bg: #000;
  --text: #f5f5f1;
  --muted: rgba(245, 245, 241, 0.76);
  --faint: rgba(245, 245, 241, 0.46);
  --panel: #202020;
  --line: rgba(255, 255, 255, 0.18);
  --max: 1215px;
  --gutter: clamp(24px, 7.9vw, 115px);
  --display: "Host Grotesk Local", "Helvetica Neue", Arial, sans-serif;
  --body: "Madefor Text Local", "Helvetica Neue", Arial, sans-serif;
  --band: "Archivo Local", "Helvetica Neue", Arial, sans-serif;
  --green: #2fa457;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
}

.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;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  padding: 28px clamp(18px, 3.75vw, 54px);
  color: #fff;
  transition: background 180ms ease, padding 180ms ease;
}

.inner-page .site-header,
.static-header {
  position: relative;
  background: #000;
}

.inner-page .site-header.is-scrolled {
  background: #000;
  backdrop-filter: none;
}

.primary-nav a[aria-current="page"] {
  color: #fff;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(16px);
  padding-block: 18px;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 27px;
}

.primary-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1;
}

.header-actions {
  gap: 10px;
}

.pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pill {
  min-height: 40px;
  padding: 0 22px;
  font-family: var(--display);
  font-size: 16px;
}

.pill-light,
.button-primary {
  background: #fff;
  color: #000;
}

.pill-outline,
.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #fff;
}

.pill:hover,
.button:hover {
  transform: translateY(-1px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  overflow: hidden;
  isolation: isolate;
  background: #0c0b09;
}

.hero-media {
  width: calc(100% - 44px);
  height: auto;
  margin: 0 22px 44px;
  border-radius: 18px;
}

.hero-overlay {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 112px clamp(24px, 3.75vw, 54px) 40px;
}

.hero-content {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--green);
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.meet-title h2,
.meet-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0 0 20px;
  font-family: var(--band);
  font-weight: 700;
  font-size: clamp(1.7rem, 8.4vw, 2.1rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
}

.hero-sub {
  max-width: 38ch;
  margin: 0 0 28px;
  color: #d8d6cf;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.55;
}

.hero-download-label {
  margin: 0 0 12px;
  color: #a9a69d;
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 13px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
}

.store-badge svg {
  flex: 0 0 auto;
}

.store-badge-light {
  background: #fff;
  color: #000;
}

.store-badge-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.store-badge-text {
  text-align: left;
  line-height: 1.1;
}

.store-badge-text span {
  display: block;
  font-size: 9.5px;
  opacity: 0.7;
}

.store-badge-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 7px;
  margin: 22px 0 0;
  color: #a9a69d;
  font-size: 12.5px;
}

.hero-trust span {
  color: var(--green);
}

@media (min-width: 1100px) {
  .hero {
    flex-direction: row;
    align-items: center;
    min-height: min(54vw, 780px);
  }

  .hero-media {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: right center;
  }

  .hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(6, 6, 5, 0.94) 0%, rgba(6, 6, 5, 0.93) 8%, rgba(6, 6, 5, 0.9) 15%, rgba(6, 6, 5, 0.86) 21%, rgba(6, 6, 5, 0.8) 26%, rgba(6, 6, 5, 0.72) 31%, rgba(6, 6, 5, 0.62) 35%, rgba(6, 6, 5, 0.51) 39%, rgba(6, 6, 5, 0.4) 43%, rgba(6, 6, 5, 0.3) 47%, rgba(6, 6, 5, 0.21) 51%, rgba(6, 6, 5, 0.14) 55%, rgba(6, 6, 5, 0.08) 59%, rgba(6, 6, 5, 0.04) 64%, rgba(6, 6, 5, 0.015) 69%, rgba(6, 6, 5, 0) 76%),
      linear-gradient(180deg, rgba(6, 6, 5, 0.34) 0%, rgba(6, 6, 5, 0.24) 9%, rgba(6, 6, 5, 0.15) 18%, rgba(6, 6, 5, 0.08) 28%, rgba(6, 6, 5, 0.03) 38%, rgba(6, 6, 5, 0) 50%, rgba(6, 6, 5, 0.03) 62%, rgba(6, 6, 5, 0.09) 72%, rgba(6, 6, 5, 0.17) 82%, rgba(6, 6, 5, 0.26) 91%, rgba(6, 6, 5, 0.34) 100%);
  }

  .hero-inner {
    padding: clamp(120px, 11vw, 160px) clamp(24px, 3.75vw, 54px) clamp(56px, 6vw, 88px);
  }

  .hero-content {
    width: min(48%, 680px);
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 3.1vw, 3.4rem);
  }
}

.button {
  min-width: 270px;
  min-height: 50px;
  padding: 0 28px;
  font-family: var(--display);
  font-size: 14px;
}

.button.small {
  min-width: 148px;
  min-height: 48px;
  font-size: 14px;
}

.problem {
  background: #f2f1ed;
  color: #121210;
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 88px 26px;
}

.problem-eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.problem h2 {
  margin: 0 0 40px;
  font-family: var(--band);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.problem-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid #e3e2db;
}

.problem-list li:last-child {
  border-bottom: 1px solid #e3e2db;
}

.problem-num {
  min-width: 28px;
  color: var(--green);
  font-family: var(--band);
  font-size: 16px;
  font-weight: 700;
}

.problem-list p {
  margin: 0;
  font-family: var(--band);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.section-pad {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
  padding-block: 118px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(300px, 475px) minmax(280px, 1fr);
  align-items: start;
  gap: clamp(64px, 18vw, 330px);
}

.section-intro h2 {
  font-size: clamp(42px, 3.4vw, 48px);
  line-height: 0.96;
}

.section-intro p {
  max-width: 455px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.34;
}

.wide-photo {
  width: 100%;
  margin-top: 88px;
  border-radius: 12px;
}

.briefing-video {
  display: block;
  aspect-ratio: 16 / 9;
  background: #101010;
  object-fit: cover;
}

.meet {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 597px) 1fr;
  align-items: start;
  min-height: 1285px;
  gap: 42px;
}

.meet-title {
  align-self: start;
  padding-top: 260px;
}

.meet-title h2,
.meet-copy h2 {
  font-size: clamp(88px, 9.72vw, 140px);
  line-height: 0.8;
}

.corner-arrow {
  display: block;
  width: 76px;
  height: 76px;
  margin-top: 42px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg);
  transform-origin: center;
}

.phone-render {
  width: min(100%, 597px);
  margin-top: 292px;
}

.meet-copy {
  justify-self: end;
  width: min(100%, 330px);
  padding-top: 325px;
}

.meet-copy p {
  margin: 78px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.3;
}

.store-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.store-row img {
  width: 72px;
  height: auto;
}

.store-row.compact img {
  width: 82px;
}

/* Feature bands: colored cards floating on the dark page, on its own Archivo scale. */
.feature-bands {
  margin-top: 118px;
  padding-block: 56px;
  background: var(--bg);
  font-family: var(--band);
}

.band-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: min(1128px, calc(100% - 112px));
  margin-inline: auto;
}

.band-intro {
  width: min(1128px, calc(100% - 112px));
  margin: 0 auto 40px;
}

.band-intro h2 {
  margin: 6px 0 0;
  color: var(--text);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.98;
}

.band {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  padding: 72px 0 0 80px;
  overflow: hidden;
  border-radius: 36px;
}

.band-dark {
  background: #161614;
}

.band-mint {
  background: #e7f0e8;
}

.band-card {
  background: #fff;
  border: 1px solid #e7ebe5;
}

.band-copy {
  padding-bottom: 72px;
}

.band-eyebrow {
  margin: 0;
  color: #0e8749;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.band-dark .band-eyebrow {
  color: #4fc98b;
}

.band h2 {
  margin: 16px 0 0;
  color: #101312;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.band-dark h2 {
  color: #f4f6f2;
}

.band-lede {
  max-width: 42ch;
  margin: 14px 0 0;
  color: #69706c;
  font-size: 17.5px;
  line-height: 1.55;
}

.band-dark .band-lede {
  color: #9ba39d;
}

.band-mint .band-lede {
  color: #5c665f;
}

.band-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.band-chips li {
  padding: 10px 16px;
  border: 1px solid #e0e5de;
  border-radius: 999px;
  background: #f1f4f0;
  color: #2a2f2c;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1;
}

.band-dark .band-chips li {
  border-color: #2a2f2b;
  background: #1d211e;
  color: #d9ded9;
}

.band-mint .band-chips li {
  border-color: #d3e2d6;
  background: #fff;
  color: #20342a;
}

.band-phone {
  align-self: end;
  justify-self: center;
}

.phone-frame {
  width: 340px;
  aspect-ratio: 1 / 1.18;
  overflow: hidden;
  border-radius: 32px 32px 0 0;
  background: #f1f4f0;
  box-shadow: 0 -12px 40px rgba(16, 19, 18, 0.08);
}

.band-dark .phone-frame {
  box-shadow: none;
}

/* Screenshots are pre-cropped to the frame's 1:1.18 ratio, so they fill it exactly
   and the phone bleeds past the band's bottom edge. */
.phone-frame img {
  width: 100%;
}

.ecosystem {
  padding-top: 224px;
}

.orbit {
  width: min(100%, 1030px);
  margin: 122px auto 0;
}

.prompt {
  width: min(100%, 860px);
  margin: 210px auto 0;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  min-height: 414px;
  margin: 162px auto 0;
  padding: 78px 70px;
  background: var(--panel);
  border-radius: 11px;
}

.final-cta h2 {
  font-size: clamp(48px, 4.17vw, 60px);
  line-height: 0.96;
}

.cta-actions {
  justify-self: center;
  color: #fff;
  text-align: left;
}

.cta-actions p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.cta-actions .store-row {
  margin: 0 0 58px;
}

.site-footer {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin: 138px auto 0;
  padding-bottom: 32px;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2.4fr auto;
  gap: 72px;
  align-items: start;
}

.footer-brand {
  align-self: start;
}

.site-footer h2 {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.1;
}

.footer-stores img {
  width: 128px;
  margin-bottom: 10px;
}

.legal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.legal nav {
  display: flex;
  gap: 42px;
}

.legal a,
.legal p {
  margin: 0;
  color: inherit;
  white-space: nowrap;
}

.pricing-hero {
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
  padding: 178px 0 0;
  text-align: center;
}

.pricing-hero p,
.page-kicker {
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 20px;
}

.pricing-hero h1,
.promo-page h1,
.legal-page h1 {
  margin: 42px 0 0;
  font-family: var(--display);
  font-size: clamp(56px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
}

.billing-toggle {
  display: inline-flex;
  gap: 4px;
  margin-top: 172px;
  padding: 0;
}

.billing-toggle button {
  min-width: 92px;
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #f2f2f2;
  color: #0a0a0a;
  cursor: pointer;
  font-family: var(--display);
  font-size: 16px;
}

.billing-toggle button.is-active {
  background: #ffdf1a;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 38px;
  width: min(1060px, calc(100% - 48px));
  margin: 48px auto 0;
}

.price-card {
  min-height: 956px;
  padding: 38px 45px 56px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
}

.price-card h2,
.price-card h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
}

.price-card h2 {
  font-size: 28px;
}

.plan-copy {
  max-width: 330px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.price-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 46px;
}

.price {
  color: #fff;
  font-family: var(--display);
  font-size: 50px;
  line-height: 1;
}

.compare {
  color: rgba(255, 255, 255, 0.52);
  font-size: 31px;
  text-decoration: line-through;
}

.discount {
  padding: 7px 12px;
  border-radius: 999px;
  background: #2a2a2a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.billing-note {
  min-height: 42px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.price-card hr {
  margin: 42px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.62);
}

.price-card h3 {
  margin-bottom: 22px;
  font-size: 16px;
}

.check-list {
  display: grid;
  gap: 21px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.3;
}

.check-list li {
  position: relative;
  padding-left: 38px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  content: "✓";
  font-size: 24px;
  line-height: 1;
}

.solo-checks li::before {
  color: #b5a7ff;
}

.team-checks li::before {
  color: #59c7a6;
}

.seat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
}

.seat-row label {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.seat-control {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-width: 128px;
  min-height: 45px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
}

.seat-control button {
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 20px;
}

.seat-control output {
  min-width: 14px;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.compact-footer {
  margin-top: 190px;
}

.promo-page {
  width: min(1215px, calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  padding-top: 118px;
}

.promo-page h1 {
  max-width: 920px;
}

.beta-hero,
.ar-hero {
  text-align: center;
}

.fine-print {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.beta-layout {
  display: grid;
  grid-template-columns: minmax(280px, 586px) minmax(320px, 1fr);
  align-items: center;
  gap: 44px;
  margin-top: 118px;
  text-align: left;
}

.beta-phone {
  width: min(100%, 586px);
}

.store-row.large img {
  width: 162px;
}

.login-cta {
  width: min(100%, 440px);
  margin-top: 68px;
  font-size: 18px;
}

.beta-text {
  width: min(100%, 642px);
  margin-top: 110px;
}

.ar-image {
  width: min(100%, 1061px);
  margin: 72px auto 0;
}

.ar-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px;
  margin-top: 58px;
  text-align: left;
}

.ar-points p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 236px));
  justify-content: center;
  gap: 36px;
  width: min(100%, 560px);
  margin: 118px auto 0;
  text-align: left;
}

.waitlist-form label {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 16px;
}

.waitlist-form input {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: #101010;
  color: #fff;
}

.waitlist-form input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.64);
  outline-offset: 2px;
}

.waitlist-form button {
  grid-column: 1 / -1;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-family: var(--display);
  font-size: 16px;
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.waitlist-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: -18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.waitlist-status[data-state="success"] {
  color: #9ee8b3;
}

.waitlist-status[data-state="error"] {
  color: #ffb3ad;
}

.legal-page {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 120px;
}

.legal-brand {
  margin-bottom: 80px;
}

.legal-page article {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.legal-page h1 {
  margin: 0 0 24px;
}

.legal-page h2 {
  margin: 48px 0 18px;
  color: var(--text);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.12;
}

.legal-page h3 {
  margin: 30px 0 12px;
  color: var(--text);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.18;
}

.legal-page .legal-updated {
  color: var(--text);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.legal-page p {
  margin: 0 0 18px;
}

.legal-page ul {
  margin: 16px 0 26px;
  padding-left: 24px;
}

.legal-page li {
  margin: 9px 0;
}

.legal-page a {
  text-decoration: underline;
}

@media (max-width: 900px) {
  :root {
    --gutter: 16px;
  }

  .site-header {
    padding: 16px;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .brand img {
    width: auto;
    height: 17px;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    place-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #fff;
    /* Sit above the sliding menu panel (z-index 49) so the X is visible and tappable. */
    position: relative;
    z-index: 60;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    display: grid;
    position: fixed;
    z-index: 49;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100vw, 390px);
    padding: 88px 44px 44px;
    background: rgba(0, 0, 0, 0.94);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--display);
    font-size: 20px;
  }

  body.menu-open .mobile-menu {
    transform: translateX(0);
  }

  .hero-inner {
    padding: 112px 16px 40px;
  }

  .hero-media {
    width: calc(100% - 32px);
    margin: 0 16px 36px;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 18px;
    font-size: 10px;
  }

  .section-pad {
    width: calc(100% - 32px);
    padding-top: 72px;
  }

  .section-intro {
    display: block;
  }

  .section-intro h2 {
    max-width: 260px;
    font-size: 42px;
    line-height: 0.94;
  }

  .section-intro p {
    max-width: 100%;
    margin-top: 22px;
    font-size: 10px;
    line-height: 1.32;
  }

  .briefing .section-intro p {
    display: none;
  }

  .wide-photo {
    margin-top: 22px;
    border-radius: 6px;
  }

  .meet {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
    padding-top: 166px;
  }

  .meet-title {
    padding-top: 0;
  }

  .meet-title h2 {
    font-size: 64px;
    line-height: 0.94;
  }

  .corner-arrow {
    display: none;
  }

  .meet-copy {
    justify-self: start;
    order: 2;
    width: 100%;
    margin-top: -4px;
  }

  .meet-copy h2 {
    font-size: 50px;
    line-height: 0.84;
  }

  .meet-copy br {
    display: none;
  }

  .meet-copy p {
    max-width: 210px;
    margin-top: 18px;
    font-size: 10px;
  }

  .meet .store-row {
    display: grid;
    gap: 7px;
    margin-top: 13px;
  }

  .meet .store-row img {
    width: 84px;
  }

  .phone-render {
    order: 3;
    width: min(285px, 78vw);
    margin: 155px 0 0 20px;
  }

  .meet-copy {
    padding-top: 0;
  }

  .feature-bands {
    margin-top: 150px;
    padding-block: 32px;
  }

  .band-stack {
    gap: 16px;
    width: calc(100% - 32px);
  }

  .band {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 24px 0;
    border-radius: 24px;
  }

  .band-copy {
    padding-bottom: 0;
  }

  .band h2 {
    font-size: 34px;
  }

  .band-lede {
    font-size: 15px;
  }

  .phone-frame {
    width: min(280px, 74vw);
  }

  .store-row.compact {
    gap: 8px;
    margin-top: 14px;
  }

  .store-row.compact img {
    width: 84px;
  }

  .ecosystem {
    padding-top: 150px;
  }

  .orbit {
    width: 100%;
    margin-top: 41px;
  }

  .prompt {
    width: 100%;
    margin-top: 118px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    min-height: 386px;
    margin-top: 104px;
    padding: 31px 27px;
    border-radius: 3px;
  }

  .final-cta h2 {
    font-size: 32px;
  }

  .cta-actions {
    justify-self: center;
    margin-top: 28px;
    text-align: center;
  }

  .cta-actions p {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .cta-actions .store-row {
    display: grid;
    gap: 6px;
    justify-content: center;
    margin-bottom: 30px;
  }

  .button.small {
    min-width: 105px;
    min-height: 29px;
    font-size: 8px;
  }

  .site-footer {
    width: calc(100% - 32px);
    margin-top: 46px;
    padding-bottom: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer h2 {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .site-footer a {
    margin-bottom: 13px;
    font-size: 9px;
  }

  .footer-stores img {
    width: 96px;
  }

  .legal {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
    font-size: 9px;
  }

  .legal nav {
    gap: 24px;
  }

  .legal a,
  .legal p {
    white-space: normal;
  }

  .pricing-hero {
    width: calc(100% - 48px);
    padding-top: 66px;
  }

  .pricing-hero p,
  .page-kicker {
    font-size: 14px;
  }

  .pricing-hero h1,
  .promo-page h1,
  .legal-page h1 {
    margin-top: 26px;
    font-size: 40px;
  }

  .billing-toggle {
    margin-top: 86px;
  }

  .billing-toggle button {
    min-width: 76px;
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    gap: 30px;
    margin-top: 32px;
  }

  .price-card {
    min-height: auto;
    padding: 24px 22px 34px;
    border-radius: 13px;
  }

  .price-card h2 {
    font-size: 27px;
  }

  .plan-copy,
  .billing-note,
  .check-list {
    font-size: 13px;
  }

  .price-line {
    margin-top: 28px;
  }

  .price {
    font-size: 42px;
  }

  .compare {
    font-size: 26px;
  }

  .discount {
    font-size: 10px;
  }

  .check-list {
    gap: 18px;
  }

  .seat-row {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 34px;
  }

  .compact-footer {
    margin-top: 92px;
  }

  .promo-page {
    width: calc(100% - 48px);
    padding-top: 72px;
  }

  .beta-layout {
    grid-template-columns: 1fr;
    gap: 52px;
    margin-top: 72px;
    text-align: center;
  }

  .store-row.large {
    justify-content: center;
  }

  .store-row.large img {
    width: 128px;
  }

  .login-cta {
    margin-top: 34px;
    font-size: 13px;
  }

  .beta-text {
    margin-top: 48px;
  }

  .ar-points {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 42px;
    text-align: center;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .legal-page {
    width: calc(100% - 32px);
    padding-top: 32px;
  }

  .legal-page article {
    padding: 24px;
  }

  .legal-page h2 {
    margin-top: 38px;
    font-size: 23px;
  }

  .legal-page h3 {
    margin-top: 26px;
    font-size: 18px;
  }

  .legal-page p,
  .legal-page li {
    font-size: 14px;
  }

  .legal-page ul {
    padding-left: 18px;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .button {
    min-width: 220px;
  }

  .meet {
    grid-template-columns: 0.8fr minmax(320px, 460px) 0.9fr;
  }
}


/* Referral chapter: payoff, trust, and download CTA after How-it-works. */
.payoff {
  padding: clamp(72px, 9vw, 118px) 0;
  background: #e7f0e8;
  font-family: var(--band);
}

.payoff-inner {
  width: min(880px, calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
  text-align: center;
}

.payoff-eyebrow,
.trust-eyebrow,
.download-eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.payoff h2 {
  margin: 0 0 22px;
  color: #101312;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.04;
}

.payoff-lede {
  max-width: 62ch;
  margin: 0 auto;
  color: #4a5a4c;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
}

.trust {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin: 140px auto 0;
}

.trust h2 {
  max-width: 20ch;
  margin: 0 0 40px;
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-card {
  padding: 30px;
  background: var(--panel);
  border-radius: 11px;
}

.trust-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.15;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.download-cta {
  width: min(var(--max), calc(100% - 2 * var(--gutter)));
  margin: 118px auto 162px;
  padding: clamp(56px, 7vw, 92px) 40px;
  background: #f2f1ed;
  border-radius: 11px;
  text-align: center;
  font-family: var(--band);
}

.download-cta h2 {
  margin: 0 0 14px;
  color: #101312;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1;
}

.download-lede {
  margin: 0 0 30px;
  color: #69706c;
  font-size: clamp(16px, 1.7vw, 19px);
}

.download-cta .store-row {
  justify-content: center;
  margin: 0;
}

.download-note {
  margin: 22px 0 0;
  color: #8b918c;
  font-size: 13.5px;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}


.download-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Full-phone variant: show the entire app screen instead of the cropped top (bands 2-3). */
.band-phone-full {
  align-self: center;
  padding: 0;
}

.phone-frame-full {
  width: min(280px, 70vw);
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phone-frame-full img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 56px rgba(16, 19, 18, 0.25));
}


/* Wide photo variant for band media (band 1: on-the-job voice capture). */
.band-photo {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 24px 48px rgba(16, 19, 18, 0.4);
}


/* Bands show full media now: center both columns and give the card even padding
   to match the design reference. Mobile values restored below. */
.band {
  align-items: center;
  padding: 64px 64px 64px 80px;
}

.band-copy {
  padding-bottom: 0;
}

@media (max-width: 900px) {
  .band {
    padding: 44px 24px;
  }
}
