:root {
  color-scheme: light;
  --ink: #20242a;
  --muted-brand: #66756d;
  --muted: #5d6862;
  --canvas: #fef5e6;
  --surface: #fffcf5;
  --line: #e3d7c5;
  --warm: #f97316;
  --warm-readable: #c2410c;
  --teal: #087f5b;
  --teal-soft: #d8f3e3;
  --blue: #168aad;
  --blue-readable: #0f6f8d;
  --blue-soft: #d8f3fa;
  --success: #2f8f5b;
  --shadow: 0 18px 48px rgba(32, 36, 42, 0.09);
  font-family: Aptos, "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body,
button,
select {
  font-family: inherit;
}

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

a {
  color: inherit;
}

button,
summary,
select {
  font: inherit;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.hero-shell {
  padding: 28px 56px 48px;
}

.hero-boundary {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.marketing-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}

.logo-link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  flex: 0 0 auto;
  border-radius: 6px;
  text-decoration: none;
}

.logo-link::before,
.logo-link::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 10.8%;
  width: 18.4%;
  aspect-ratio: 1;
  border: 2px solid rgba(232, 93, 4, 0.42);
  border-radius: 50%;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
  animation: spotwait-logo-spotlight 820ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.logo-link::after {
  animation-delay: 320ms;
}

.logo-link .logo-lockup {
  position: relative;
  z-index: 1;
  display: block;
  width: 240px;
  height: 76px;
}

@keyframes spotwait-logo-spotlight {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }

  18% {
    opacity: 0.32;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-link::before,
  .logo-link::after {
    animation: none;
  }
}

.nav-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-height: 50px;
}

.serve-menu {
  position: relative;
}

.serve-menu > summary {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

.serve-menu > summary::-webkit-details-marker {
  display: none;
}

.serve-menu > summary:hover,
.serve-menu[open] > summary {
  background: rgba(255, 252, 245, 0.8);
}

.serve-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(390px, calc(100vw - 32px));
  max-height: min(660px, calc(100vh - 96px));
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.serve-popover .menu-status {
  margin: 8px 10px 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.serve-popover a {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-radius: 7px;
  text-decoration: none;
}

.serve-popover a:hover,
.serve-popover a:focus-visible {
  background: var(--teal-soft);
}

.serve-popover strong {
  font-size: 15px;
}

.serve-popover span {
  color: var(--muted);
  font-size: 13px;
}

.serve-popover em {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #116c87;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.google-sign-in {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid #d7d2c8;
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 2px 7px rgba(32, 36, 42, 0.06);
}

.google-mark {
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.google-mark::before {
  content: "G";
}

.language-selector {
  display: inline-flex;
}

.language-selector select {
  min-height: 46px;
  padding: 0 32px 0 13px;
  border: 1px solid #d7d2c8;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.hero-copy {
  max-width: 1060px;
  margin: 56px auto 36px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--warm-readable);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(58px, 6.2vw, 80px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 850px;
  margin: 27px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 500;
  line-height: 1.48;
}

.hero-showcase {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
  background: var(--canvas);
  box-shadow: none;
}

.hero-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.start-button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 24px auto 0;
  padding: 14px 24px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(8, 127, 91, 0.18);
}

.start-button:hover,
.start-button:focus-visible {
  background: #066b4c;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 38px;
  padding: 0;
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 700;
  list-style: none;
}

.trust-line li::before {
  content: "✓";
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--warm);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.page-section {
  padding: 72px 0;
}

.page-boundary,
.footer-boundary {
  width: min(100% - 112px, 1180px);
  margin-inline: auto;
}

.section-intro {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-intro h2,
.comparison-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.section-intro > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

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

.flow-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(32, 36, 42, 0.06);
}

.flow-card picture {
  display: block;
  margin: 12px 12px 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background: #f4ead9;
}

.flow-card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px 24px 27px;
}

.step-number {
  margin: 0 0 7px;
  color: var(--warm-readable);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.flow-copy h3,
.outcome-band h3,
.plan-card h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.flow-copy > p:not(.step-number),
.plan-card > p:not(.plan-price) {
  margin: 13px 0 0;
  color: var(--muted);
}

.context-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.context-link:hover {
  color: var(--warm-readable);
}

.flow-copy .context-link {
  margin-top: auto;
  padding-top: 18px;
}

.intro-link {
  margin-top: 18px;
}

.section-cta {
  margin-top: 32px;
}

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

.outcome-band > article {
  --outcome-accent: var(--teal);
  --outcome-border: #addcbe;
  --outcome-start: #effaf5;
  --outcome-end: #d8f3e3;
  --outcome-glow: rgba(8, 127, 91, 0.1);
  --outcome-step: "01";
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--outcome-border);
  border-top: 4px solid var(--outcome-accent);
  border-radius: 12px;
  background: linear-gradient(145deg, var(--outcome-start), var(--outcome-end));
  box-shadow: 0 14px 30px rgba(32, 36, 42, 0.07);
}

.outcome-band > article:nth-child(2) {
  --outcome-accent: var(--blue-readable);
  --outcome-border: #abd9e7;
  --outcome-start: #f0f9fc;
  --outcome-end: #d8f3fa;
  --outcome-glow: rgba(22, 138, 173, 0.1);
  --outcome-step: "02";
}

.outcome-band > article:nth-child(3) {
  --outcome-accent: var(--warm-readable);
  --outcome-border: #efc99f;
  --outcome-start: #fffaf0;
  --outcome-end: #fde8c8;
  --outcome-glow: rgba(194, 65, 12, 0.09);
  --outcome-step: "03";
}

.outcome-band > article::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -62px;
  right: -48px;
  width: 150px;
  height: 150px;
  border: 22px solid var(--outcome-glow);
  border-radius: 999px;
}

.outcome-band h3 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.outcome-band h3::before {
  content: var(--outcome-step);
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--outcome-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.outcome-band .check-list li::before {
  background: var(--outcome-accent);
  box-shadow: 0 0 0 4px var(--outcome-glow);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 23px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 29px;
  color: #46534d;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: var(--success);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.measurement-band {
  margin-top: 20px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(32, 36, 42, 0.05);
}

.measurement-band > h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.measurement-band > p {
  margin: 10px 0 0;
  color: var(--muted);
}

.measurement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 25px;
}

.measurement-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fffaf0;
}

.measurement-grid h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
}

.measurement-grid p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  min-height: 335px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(32, 36, 42, 0.06);
}

.starter-plan {
  border: 2px solid var(--teal);
}

.plan-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 27px;
  margin: -18px 0 14px;
}

.plan-badges span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--warm-readable);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-badges span + span {
  background: var(--teal-soft);
  color: #156f50;
}

.plan-price {
  margin: 15px 0 0;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-card .check-list {
  margin-top: 24px;
}

.comparison {
  margin-top: 86px;
  padding: 54px;
  border: 1px solid #abd9e7;
  border-radius: 8px;
  background: rgba(216, 243, 250, 0.58);
}

.comparison-heading {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.comparison-heading > p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.burst {
  position: absolute;
  width: 44px;
  height: 48px;
  color: var(--warm);
}

.burst svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}

.burst-left {
  left: -18px;
  top: 4px;
  color: var(--teal);
}

.burst-right {
  right: -18px;
  top: 34px;
}

.freshness {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.freshness span {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: #176e50;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 560px);
  margin: 30px auto 0;
  padding: 4px;
  border: 1px solid #a9d4df;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.65);
}

.comparison-tabs button {
  min-height: 45px;
  padding: 9px 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.comparison-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: #fff;
}

.comparison-panel {
  margin-top: 24px;
  padding: 30px;
  border: 1px solid #b8dce5;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(32, 36, 42, 0.07);
}

.comparison-panel[hidden] {
  display: none;
}

.comparison-panel > h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.comparison-panel > p {
  margin: 6px 0 0;
  color: var(--muted);
}

.price-chart {
  display: grid;
  gap: 17px;
  margin-top: 29px;
}

.price-row {
  display: grid;
  grid-template-columns: 175px minmax(100px, 1fr) 94px;
  gap: 17px;
  align-items: center;
}

.competitor-logo {
  display: flex;
  min-height: 48px;
  align-items: center;
  text-decoration: none;
}

.competitor-logo img {
  width: 144px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.spotwait-row .competitor-logo img {
  width: 168px;
  height: 52px;
}

.nextme-logo {
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
}

.nextme-logo img {
  width: 44px;
  height: 44px;
  border-radius: 9px;
}

.price-track {
  height: 21px;
  overflow: hidden;
  border-radius: 4px;
  background: #e5ecec;
}

.price-track--unavailable {
  border: 1px dashed #aab8b8;
  background: transparent;
}

.price-track span {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.spotwait-row .price-track span {
  background: var(--success);
}

.price-row strong {
  font-size: 15px;
  text-align: right;
  white-space: nowrap;
}

.price-unavailable {
  white-space: normal !important;
  line-height: 1.15;
}

.table-scroll {
  overflow-x: auto;
}

.experience-panel table {
  width: 100%;
  min-width: 810px;
  border-collapse: collapse;
  font-size: 14px;
}

.experience-panel th,
.experience-panel td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: top;
}

.experience-panel th:first-child {
  width: 190px;
  text-align: left;
}

.experience-panel thead th {
  font-weight: 900;
}

.experience-panel thead span {
  color: var(--muted);
  font-size: 12px;
}

.experience-panel tbody th {
  font-weight: 800;
}

.comparison-legend,
.comparison-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.comparison-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
  margin: 20px auto 0;
}

.comparison-links .context-link {
  color: #176e50;
}

.comparison-note {
  margin: 17px auto 0;
  text-align: center;
}

.comparison .section-cta {
  width: min(100%, 860px);
}

.marketing-footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.footer-boundary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-boundary p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.footer-boundary nav {
  display: flex;
  gap: 26px;
}

.footer-boundary a {
  font-weight: 800;
  text-decoration: none;
}

.footer-boundary a:hover {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison {
    padding: 42px 34px;
  }
}

@media (max-width: 980px) {
  .hero-shell {
    padding-inline: 24px;
  }

  .marketing-nav {
    align-items: center;
  }

  .logo-link .logo-lockup {
    width: 208px;
    height: auto;
  }

  .nav-controls {
    flex-wrap: wrap;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 7.5vw, 64px);
  }

  .page-boundary,
  .footer-boundary {
    width: min(100% - 48px, 1180px);
  }
}

@media (max-width: 820px) {
  .page-section {
    padding: 76px 0;
  }

  .outcome-band {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .outcome-band > article {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 26px 30px;
  }

  .outcome-band .check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 0;
  }

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

  .price-row {
    grid-template-columns: 150px minmax(80px, 1fr) 90px;
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .marketing-nav {
    display: grid;
    justify-items: center;
  }

  .nav-controls {
    justify-content: center;
  }

  .hero-copy {
    margin-top: 40px;
  }

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

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

  .comparison {
    margin-top: 68px;
    padding: 36px 20px;
  }

  .burst {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero-shell {
    padding: 14px 24px 16px;
  }

  .marketing-nav {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: 8px;
    align-items: center;
    justify-items: initial;
  }

  .logo-link {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .logo-link .logo-lockup {
    width: 132px;
  }

  .nav-controls {
    display: contents;
  }

  .serve-menu {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .google-sign-in {
    grid-column: 3;
    grid-row: 1;
  }

  .language-selector {
    grid-column: 4;
    grid-row: 1;
  }

  .serve-menu > summary {
    min-height: 38px;
    padding-inline: 9px;
    font-size: 14px;
  }

  .google-sign-in {
    min-height: 42px;
    gap: 6px;
    padding-inline: 9px;
    font-size: 13px;
  }

  .language-selector select {
    min-height: 42px;
    padding: 0 25px 0 9px;
    font-size: 13px;
  }

  .serve-popover {
    position: fixed;
    top: 108px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .hero-copy {
    margin: 22px auto 22px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 52px);
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 17px;
  }

  .hero-showcase {
    border-radius: 12px;
  }

  .start-button {
    min-height: 58px;
    margin-top: 18px;
    font-size: 17px;
  }

  .trust-line {
    display: grid;
    justify-content: start;
    width: max-content;
    max-width: 100%;
    margin-top: 16px;
    margin-inline: auto;
    gap: 8px;
  }

  .page-boundary,
  .footer-boundary {
    width: min(100% - 32px, 1180px);
  }

  .page-section {
    padding: 28px 0;
  }

  .section-intro {
    margin-bottom: 20px;
  }

  .section-intro h2,
  .comparison-heading h2 {
    font-size: 34px;
  }

  .section-intro > p:last-child,
  .comparison-heading > p {
    font-size: 16px;
  }

  .measurement-band,
  .plan-card,
  .comparison-panel {
    padding: 24px;
  }

  .comparison {
    margin-top: 28px;
    padding-inline: 14px;
  }

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

  .price-row {
    grid-template-columns: 120px 1fr;
  }

  .competitor-logo img {
    width: 112px;
  }

  .spotwait-row .competitor-logo img {
    width: 120px;
  }

  .nextme-logo {
    font-size: 17px;
  }

  .nextme-logo img {
    width: 38px;
    height: 38px;
  }

  .price-row strong {
    grid-column: 2;
    grid-row: 2;
    margin-top: -10px;
    text-align: left;
  }

  .footer-boundary {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .marketing-nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .serve-menu {
    grid-column: 2 / 4;
    grid-row: 2;
  }

  .google-sign-in {
    grid-column: 2;
  }

  .language-selector {
    grid-column: 3;
  }

  .outcome-band > article {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .outcome-band .check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .hero-shell {
    padding-inline: 16px;
  }

  .logo-link .logo-lockup {
    width: 120px;
  }
}
