:root {
  --ink: #15262d;
  --black: #000;
  --muted: #536275;
  --soft: #f7f5f3;
  --line: #eadfd7;
  --orange: #f77c0b;
  --green: #8be000;
  --brown: #2a190f;
  --secondary-200: #1f2d33;
  --secondary-300: #767d8c;
  --secondary: #3d4e5f;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(21, 38, 45, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--secondary);
  letter-spacing: 0;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.section-shell {
  /**width: min(1120px, calc(100% - 48px));**/
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  /* border-top: 2px solid #111; */
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1280px, calc(100% - 48px));
  height: 7rem;
  margin: 0 auto;
  display: flex;

  justify-content: space-between;
  gap: 2.8rem;
}

.brand {
  /*  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 116px;
  font-weight: 800;
  font-size: 22px;
  line-height: 1; */
}

.brand-text span:first-child {
  color: var(--orange);
}

.brand-text span:last-child {
  color: #61bf00;
}

.brand-bubbles {
  position: absolute;
  left: 6.4rem;
  top: -1rem;
  width: 3rem;
  height: 3rem;
}

.brand-bubbles i {
  position: absolute;
  display: block;
  width: 1.2rem;
  height: 2rem;
  border-radius: 50% 50% 45% 45%;
  background: radial-gradient(
    circle at 35% 25%,
    #ffffff 0 18%,
    #253137 22% 100%
  );
  transform-origin: 50% 100%;
}

.brand-bubbles i:nth-child(1) {
  left: 1px;
  top: 8px;
  transform: rotate(-36deg);
}

.brand-bubbles i:nth-child(2) {
  left: 10px;
  top: 0;
}

.brand-bubbles i:nth-child(3) {
  right: 0;
  top: 8px;
  transform: rotate(36deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #3e4d61;
  font-size: 1.6rem;
  font-weight: 500;
}

.nav-menu a:not(.btn) {
  padding: 8px 0;
}

.nav-menu a:not(.btn):hover {
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 22px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.btn-dark {
  background: var(--secondary-200);
  color: var(--white);
  height: 54px;
}

.btn-dark:hover {
  box-shadow: 0 10px 22px rgba(21, 38, 45, 0.22);
}

.btn-orange {
  min-height: 5.2rem;
  background: var(--orange);
  color: var(--white);
  font-size: 1.6rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #dde3e6;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at 80% 42%,
      rgba(255, 121, 0, 0.13),
      transparent 35%
    ),
    linear-gradient(107deg, #f8f8f8 0 46%, #f1e4d8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 64px;
  padding: 72px 0 86px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 68rem;
  color: #050505;
  font-size: clamp(4.6rem, 6vw, 7.8rem);
  line-height: 1.14;
  font-weight: 800;
}

.hero-copy h1 span {
  color: var(--orange);
  font-weight: 800;
}

.hero-copy h1 span::after {
  content: "Hub!";
  color: var(--green);
  margin-left: -0.02em;
}

.hero-copy h1 span {
  font-size: 0;
}

.hero-copy h1 span::before {
  content: "Was";
  color: var(--orange);
  font-size: clamp(4.6rem, 6vw, 7.8rem);
}

.hero-copy h1 span::after {
  font-size: clamp(4.6rem, 6vw, 7.8rem);
}

.hero-copy p {
  max-width: 61rem;
  margin: 2.6rem 0 3.8rem;
  color: var(--secondary);
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  line-height: 1.28;
  font-weight: 500;
}

.hero-copy .btn {
  min-width: 15rem;
}

.hero-visual {
  position: relative;
  min-height: 5.6rem;
}

.phone {
  position: relative;
  width: 27.8rem;
  border: 0.9rem solid #151a1d;
  border-radius: 4rem;
  background: #151a1d;
  box-shadow: 0 2.4rem 3.4rem rgba(30, 18, 10, 0.28);
}

.phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.8rem;
  z-index: 2;
  width: 7rem;
  height: 2rem;
  border-radius: 0 0 1.6rem 1.6rem;
  background: #050607;
  transform: translateX(-50%);
}

.phone-screen {
  overflow: hidden;
  min-height: 52rem;
  border-radius: 3rem;
  background: #fff;
  color: #0a0f12;
  padding: 1.8rem 1.6rem 1.6rem;
}

.phone-hero {
  position: absolute;
  right: 5.2rem;
  top: 3.6rem;
  width: 27.5rem;
  transform: rotate(14deg);
}

.status-bar,
.app-title,
.receipt-title,
.payment-panel dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-bar {
  margin-bottom: 1.4rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.app-title {
  margin-bottom: 1.4rem;
  font-size: 1.1rem;
}

.app-title button {
  width: 2.2rem;
  height: 2.2rem;
  border: 0.1rem solid #ffe0c5;
  border-radius: 50%;
  background: #fff8f0;
  color: var(--orange);
  line-height: 1;
}

.receipt-title {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
  color: #333;
  font-size: 0.8rem;
}

.receipt-title span,
.rating-panel span,
.payment-panel dt,
.payment-panel dd {
  color: #7d8791;
}

.map-card {
  position: relative;
  overflow: hidden;
  height: 11.6rem;
  margin: 1.3rem 0 0.8rem;
  border-radius: 0.7rem;
  background: #f1f2f2;
}

.map-grid {
  position: absolute;
  inset: -20px;
  opacity: 0.55;
  background:
    linear-gradient(22deg, transparent 47%, #cfd6d7 48% 51%, transparent 52%),
    linear-gradient(100deg, transparent 47%, #d9dfdf 48% 51%, transparent 52%),
    linear-gradient(#dfe5e5 1px, transparent 1px),
    linear-gradient(90deg, #dfe5e5 1px, transparent 1px);
  background-size:
    9.2rem 3.2rem,
    8.4rem 3.8rem,
    3rem 3rem,
    3rem 3rem;
}

.route {
  position: absolute;
  left: 8.2rem;
  top: 2.2rem;
  width: 7rem;
  height: 6.2rem;
  border-left: 0.2rem solid var(--orange);
  border-bottom: 0.2rem solid var(--orange);
  transform: skew(-16deg);
}

.pin {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 0.2rem solid var(--white);
  border-radius: 50%;
  background: var(--orange);
}

.pin-a {
  left: 7.6rem;
  top: 2.1rem;
}

.pin-b {
  left: 14.4rem;
  top: 7.8rem;
}

.small-link {
  border: 0;
  background: transparent;
  color: var(--orange);
  padding: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.rating-panel {
  margin: 1rem 0;
  padding: 1.1rem;
  border-radius: 8px;
  background: #f7f7f7;
  text-align: center;
  font-size: 0.8rem;
}

.rating-panel strong,
.rating-panel span {
  display: block;
}

.stars {
  margin-top: 8px;
  color: #d2d6d8;
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
}

.app-button {
  width: 100%;
  min-height: 3.4rem;
  border: 0;
  border-radius: 99.9rem;
  background: var(--ink);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.payment-panel {
  margin-top: 1.6rem;
  font-size: 0.8rem;
}

.payment-panel strong {
  display: block;
  margin-bottom: 0.8rem;
}

.payment-panel dl {
  margin: 0;
}

.payment-panel div {
  padding: 4px 0;
}

.payment-panel dd {
  margin: 0;
  font-weight: 800;
}

.payment-panel div:last-child dd,
.payment-panel div:last-child dt {
  color: var(--orange);
}

.annotation {
  position: absolute;
  z-index: 3;
  margin: 0;
  color: #16262d;
  font-family: Caveat, cursive;
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 700;
}

.annotation-top {
  right: -6px;
  top: 18px;
}

.annotation-left {
  left: 0;
  bottom: 170px;
}

.annotation-right {
  right: 8px;
  top: 300px;
}

.callout-line {
  position: absolute;
  z-index: 2;
  border: 3px solid var(--orange);
  border-color: var(--orange) transparent transparent var(--orange);
  border-radius: 44px 0 0 0;
}

.line-top {
  right: 95px;
  top: 78px;
  width: 72px;
  height: 44px;
  transform: rotate(6deg);
}

.line-left {
  left: 100px;
  bottom: 132px;
  width: 74px;
  height: 54px;
  transform: rotate(42deg);
}

.line-right {
  right: 102px;
  top: 330px;
  width: 72px;
  height: 44px;
  transform: rotate(182deg);
}

.trust-band,
.business-band {
  background: var(--secondary-200);
  color: var(--white);
}

.trust-band {
  padding: 10rem 0;
  font-size: 1.6rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4.4rem;
  text-align: center;
}

.benefit-grid article {
  min-width: 0;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.benefit-grid h2,
.benefit-grid h3 {
  margin: 1.6rem 0 1rem;
  font-size: 2.4rem;
  line-height: 1.2;
}

.benefit-grid p {
  max-width: 26rem;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.6rem;
  line-height: 1.35;
}

.services {
  padding: 15rem 0 7.6rem;
  background: #fbfbfb;
}

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

.section-heading h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 5rem);
  line-height: 1.08;
}

.section-heading h2 span {
  color: var(--orange);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.service-card {
  min-height: 128px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 24px rgba(255, 121, 0, 0.08);
}

.service-icon {
  display: inline-flex;
  color: var(--orange);
  margin-bottom: 14px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.service-card p {
  margin: 0;
  color: #767d8c;
  font-size: 1.6rem;
  line-height: 1.35;
}

.app-section {
  padding: 8rem 0 9.2rem;
  background: #fff;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 82px;
}

.app-preview {
  position: relative;
  min-height: 430px;
}

.tag-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-bottom: 12px;
  color: #233139;
  font-size: 0.6rem;
  font-weight: 700;
}

.tag-list span::before,
.check-list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--orange);
  vertical-align: middle;
}

.mock-copy,
.check-list,
.mock-row {
  color: #737f8c;
  font-size: 7px;
  line-height: 1.4;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  margin: 16px 0;
}

.mock-row strong {
  color: var(--orange);
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 18px;
  padding: 0;
  list-style: none;
}

.feature-copy h2 {
  margin: 0;
  color: #030303;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.03;
}

.feature-copy > p {
  /* max-width: 440px; josh*/
  margin: 12px 0 40px;
  color: #7a8594;
  font-size: 1.8rem;
  line-height: 1.35;
}

.feature-list {
  display: grid;
  gap: 42px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  align-items: start;
}

.feature-list article > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  color: var(--orange);
}

.feature-list h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 1.6rem;
}

.feature-list p {
  max-width: 360px;
  margin: 0;
  color: #8b95a3;
  font-size: 1.6rem;
  line-height: 1.45;
}

.business-band {
  padding: 12rem 0 9.2rem;
}

.section-heading.light {
  margin-bottom: 58px;
}

.section-heading.light h2 {
  color: #fff;
}

.section-heading.light p {
  max-width: 680px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.72);
}

.business-benefits p {
  max-width: 250px;
}

.how {
  padding: 12rem 0 9.2rem;
  background: #fbfbfb;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 120px;
  max-width: 920px;
  margin: 0 auto;
}

.steps-grid > div > h3 {
  margin: 0 0 22px;
  text-align: center;
  color: #0b0b0b;
  font-size: 1.8rem;
}

.step-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  margin-bottom: 14px;
  padding: 16px 20px;
  border: 1px solid #e4e7eb;
  border-radius: var(--radius);
  background: #fff;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.step-card.accent span {
  background: var(--orange);
}

.step-card h4 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 1.6rem;
}

.step-card p {
  margin: 0;
  color: var(--secondary-300);
  font-size: 1.6rem;
  line-height: 1.45;
}

.footer {
  padding: 12rem 0 0;
  background: var(--brown);
  color: #fff;
}

.footer-story {
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.footer-story h2 {
  margin: 0 0 1.8rem;
  font-size: clamp(3rem, 4vw, 4.2rem);
}

.footer-story h2 span {
  color: var(--orange);
}

.footer-story p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.8rem;
  line-height: 1.65;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4.2rem;
  margin-bottom: 8.4rem;
  text-align: center;
}

.footer-contact h3 {
  margin: 0 0 1.6rem;
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 600;
}

.footer-contact a {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
}

.footer-contact p {
  /* max-width: 230px; */
  margin: 0 auto;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.45;
  font-weight: 700;
}

.footer-bottom {
  min-height: 6.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.4rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 34px;
}

.footer-bottom div > a {
  color: var(--soft);
  font-weight: 500;
}
.footer-bottom a:hover {
  color: var(--orange);
}

.waitlist-modal[hidden] {
  display: none;
}

.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 2.4rem;
}

.waitlist-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 15, 0.5);
  backdrop-filter: blur(4px);
}

.waitlist-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 104.9rem);
  min-height: min(62.5rem, calc(100vh - 4.8rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7.2rem 2.4rem 6.4rem;
  border-radius: 0;
  background: var(--secondary-200);
  color: var(--white);
  box-shadow: 0 3rem 7rem rgba(0, 0, 0, 0.32);
}

.waitlist-close {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 3rem;
  line-height: 1;
}

.waitlist-close:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.waitlist-header {
  max-width: 64rem;
  margin-bottom: 5.4rem;
  text-align: center;
}

.waitlist-header h2 {
  margin: 0 0 1.4rem;
  color: var(--white);
  font-size: clamp(3.6rem, 5vw, 5rem);
  line-height: 1.05;
  font-weight: 700;
}

.waitlist-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 1.4;
}

.waitlist-form {
  width: min(100%, 56.6rem);
  display: grid;
  gap: 1.6rem;
}

.waitlist-form input[type="text"],
.waitlist-form input[type="tel"],
.waitlist-form input[type="email"] {
  width: 100%;
  height: 4.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #3b3b3b;
  color: var(--white);
  padding: 0 1.9rem;
  outline: none;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.waitlist-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247, 124, 11, 0.18);
}

.waitlist-type {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 0;
  border: 0;
}

.waitlist-type label {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.waitlist-type input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.waitlist-type i {
  width: 2.8rem;
  height: 2.8rem;
  border: 1.5px solid var(--orange);
  border-radius: 4px;
  background: transparent;
}

.waitlist-type input:checked + i {
  background:
    linear-gradient(var(--orange), var(--orange)) center / 1.2rem 1.2rem no-repeat,
    transparent;
}

.waitlist-type input:focus-visible + i {
  box-shadow: 0 0 0 3px rgba(247, 124, 11, 0.3);
}

.waitlist-submit {
  width: 100%;
  margin-top: 0.8rem;
  min-height: 5rem;
  font-size: 1.5rem;
}

.waitlist-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.waitlist-message {
  min-height: 2rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 1.4rem;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .app-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .app-preview {
    width: min(600px, 100%);
    margin: 0 auto;
  }

  .feature-copy {
    /* max-width: 600px; josh */
    margin: 0 auto;
  }

  .feature-copy h2,
  .feature-copy > p {
    max-width: none;
  }

  .steps-grid {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .section-shell,
  .nav {
    width: min(100% - 32px, 720px);
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 31;
  }

  .nav-menu {
    position: fixed;
    inset: 66px 0 auto;
    z-index: 30;
    display: grid;
    gap: 8px;
    padding: 22px 16px 28px;
    border-top: 1px solid #eef0f1;
    background: #fff;
    box-shadow: 0 22px 40px rgba(21, 38, 45, 0.14);
    transform: translateY(-130%);
    transition: transform 200ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
  }

  .nav-menu a {
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 13px 8px;
    text-align: center;
  }

  .nav-menu .btn {
    margin-top: 10px;
  }

  .hero-grid {
    padding: 52px 0 64px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .hero-copy h1 span::before,
  .hero-copy h1 span::after {
    font-size: clamp(4rem, 12vw, 5.8rem);
  }

  .hero-copy p {
    font-size: 1.7rem;
  }

  .benefit-grid,
  .service-grid,
  .footer-contact {
    grid-template-columns: 1fr;
  }

  .trust-band,
  .business-band,
  .services,
  .app-section,
  .how {
    padding: 6.4rem 0;
  }

  .service-grid {
    gap: 18px;
  }

  .service-card {
    min-height: 0;
  }

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

  .footer-bottom {
    min-height: 78px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

@media (max-width: 620px) {
  .nav {
    height: 7rem;
    align-items: center;
  }

  .nav-menu {
    inset: 60px 0 auto;
  }

  .brand {
    font-size: 1.9rem;
  }

  .brand-bubbles {
    left: 56px;
    transform: scale(0.82);
  }

  .hero-grid {
    padding-top: 42px;
  }

  .hero-copy {
    text-align: left;
  }
.hero-copy h1 {
  font-weight: 800;
  }
  .hero-copy p {
    margin: 20px 0 28px;
    font-size: 1.9rem;
    line-height: 1.6;
  }
.feature-copy > p {
    max-width: auto
}
  .hero-visual {
    min-height: 480px;
    transform: scale(0.82);
    transform-origin: top center;
    width: 610px;
    max-width: 122vw;
    margin-left: 50%;
    translate: -50% 0;
    display:none;
  }

  .phone-hero {
    right: 144px;
  }

  .annotation-top {
    right: 84px;
  }

  .annotation-right {
    right: 76px;
  }

  .annotation-left {
    left: 50px;
  }

  .line-top {
    right: 184px;
  }
  .iphone16 {
    width: 35rem;
  }
  .line-right {
    right: 168px;
  }

  .line-left {
    left: 148px;
  }

  .app-preview {
    min-height: 430px;
    /* transform: scale(0.8); */
    transform-origin: top center;
/*     width: 550px;
    max-width: 124vw;
    margin-left: 50%;
    translate: -50% 0; */
  }

  .phone-front {
    left: 70px;
  }

  .phone-back {
    left: 286px;
  }

  .feature-list {
    gap: 26px;
  }

  .feature-list article {
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }

  .feature-list article > span {
    width: 38px;
    height: 38px;
  }

  .step-card {
    grid-template-columns: 36px 1fr;
    padding: 14px;
  }

  .footer {
    padding-top: 58px;
  }

  .footer-story {
    margin-bottom: 42px;
  }

  .footer-contact {
    margin-bottom: 48px;
  }
  .hero{
    min-height: 90vh;
  }

  .waitlist-modal {
    padding: 0;
  }

  .waitlist-dialog {
    width: 100%;
    min-height: 100vh;
    justify-content: flex-start;
    padding: 8.4rem 1.6rem 4rem;
    overflow-y: auto;
  }

  .waitlist-close {
    top: 1.6rem;
    right: 1.6rem;
  }

  .waitlist-header {
    margin-bottom: 3.6rem;
  }

  .waitlist-type {
   
  }

  .waitlist-type label {
    justify-content: space-between;
    gap: 1.6rem;
  }
}

@media (max-width: 390px) {
  .section-shell,
  .nav {
    width: min(100% - 24px, 360px);
  }

  .hero-copy h1,
  .hero-copy h1 span::before,
  .hero-copy h1 span::after {
    font-size: 3.8rem;
  }

  .btn {
    width: 100%;
  }

  .nav-cta {
    width: min(100%, 520px);
  }
}
