@font-face {
  font-family: Unbounded;
  src: url("assets/unbounded.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/manrope.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
:root {
  --bg: #111817;
  --panel: #18211f;
  --surface-alt: #1e2a28;
  --ink: #ecf4f3;
  --muted: #9aaeaa;
  --line: #293b38;
  --border-strong: #293b38;
  --lime: #00887b;
  --dark: #ecf4f3;
  --on-primary: #ffffff;
  --primary-deep: #006b62;
  --success: #67c7bb;
  --warning: #f0a742;
  --display: Unbounded, sans-serif;
  --body: Manrope, sans-serif;
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}
::selection {
  background: var(--lime);
  color: var(--on-primary);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
a,
button,
summary {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 6px;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
img {
  display: block;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 10;
  padding: 12px 20px;
  background: var(--lime);
  color: var(--on-primary);
}
.skip-link:focus {
  top: 16px;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  gap: 30px;
}
.wordmark {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.8px;
  white-space: nowrap;
}
.wordmark img {
  margin-right: 10px;
}
.wordmark span {
  color: var(--lime);
}
nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--muted);
}
nav a:hover,
footer a:hover {
  color: var(--lime);
}
.nav-action {
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
}
.nav-action span {
  margin-left: 16px;
  color: var(--lime);
  font-size: 20px;
}
.nav-action:hover {
  border-color: var(--lime);
}
.hero {
  display: grid;
  grid-template-columns: 1.14fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 770px;
  padding-block: 65px 95px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1.19;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.hero h1 span {
  color: var(--lime);
}
.hero-copy > p {
  max-width: 465px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 28px;
  font-size: 16px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 56px;
  padding: 15px 22px;
  border-radius: 5px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.button svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}
.primary {
  background: var(--lime);
  color: var(--on-primary);
}
.primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  text-underline-offset: 6px;
}
.text-link:hover {
  text-decoration: underline;
}
.principles {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
  margin-top: 25px;
}
.principles span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.principles svg {
  width: 16px;
  color: var(--lime);
}
.demo-stage {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.orbit {
  position: absolute;
  width: 112%;
  aspect-ratio: 1;
  border: 1px solid #355149;
  border-radius: 50%;
  z-index: -1;
  transform: rotate(-28deg) scaleY(0.83);
}
.orbit-two {
  width: 133%;
  transform: rotate(48deg) scaleY(0.58);
  border-color: #273e36;
}
.orbit-dot {
  position: absolute;
  right: 6%;
  top: 16%;
  width: 9px;
  height: 9px;
  background: var(--lime);
  border-radius: 50%;
}
.demo-caption {
  position: absolute;
  top: -15px;
  right: 25px;
  font-size: 9px;
  letter-spacing: 1.8px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
.shopping-demo {
  background: var(--panel);
  width: 348px;
  padding: 23px 23px 0;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  transform: rotate(5deg);
  box-shadow: 18px 30px 60px #0005;
  position: relative;
  animation: arrive 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.demo-back,
.demo-more {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0;
  line-height: 1;
  cursor: pointer;
}
.demo-back {
  font-size: 28px;
  font-weight: 300;
}
.demo-more {
  font-size: 13px;
  letter-spacing: 2px;
}
.demo-store {
  display: grid;
  justify-items: center;
  gap: 2px;
  font-size: 11px;
}
.demo-store span {
  color: var(--muted);
  font-size: 8px;
}
.mini-mark {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -2px;
}
.mini-mark span {
  color: var(--lime);
}
.offline {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--muted);
}
.demo-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.demo-day {
  font-size: 8px;
  letter-spacing: 1.3px;
  color: var(--muted);
}
.demo-heading h2 {
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 8px;
  letter-spacing: -0.8px;
}
.bag-icon {
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: var(--surface-alt);
  width: 54px;
  height: 58px;
  color: var(--lime);
  transform: rotate(-9deg);
}
.bag-icon svg {
  width: 28px;
  height: 28px;
}
.sort-chips {
  display: flex;
  gap: 5px;
  margin-top: 20px;
  overflow: hidden;
}
.sort-chip {
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--muted);
  padding: 4px 8px;
  font-size: 8px;
  white-space: nowrap;
}
.sort-chip.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--on-primary);
}
.sort-chip b {
  font-size: 11px;
  margin-left: 3px;
}
.section-label {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.1px;
  padding: 9px 0 2px;
}
.list-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
  margin-top: 25px;
}
.demo-progress {
  height: 3px;
  background: var(--line);
  margin: 9px 0 10px;
  border-radius: 4px;
  overflow: hidden;
}
.demo-progress span {
  height: 100%;
  display: block;
  background: var(--lime);
  width: 100%;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.35s;
}
.shopping-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-block: 12px;
  border-bottom: 1px solid #364239;
  cursor: pointer;
  position: relative;
}
.shopping-item:hover {
  background: #26362b;
}
.shopping-item input {
  position: absolute;
  opacity: 0;
  width: 23px;
  height: 23px;
  left: 0;
  margin: 0;
}
.check {
  width: 20px;
  height: 20px;
  border: 1px solid #6b7867;
  border-radius: 6px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.product-thumb {
  align-items: center;
  border-radius: 7px;
  display: inline-flex;
  flex: 0 0 27px;
  font-size: 10px;
  font-weight: 800;
  height: 27px;
  justify-content: center;
  color: var(--on-primary);
}
.product-thumb.milk {
  background: var(--primary-deep);
}
.product-thumb.bread {
  background: var(--warning);
}
.product-thumb.eggs {
  background: var(--success);
  color: var(--bg);
}
.product-thumb.banana {
  background: var(--warning);
  color: var(--bg);
}
.product-thumb.oats {
  background: var(--primary);
}
.shopping-item input:checked + .check {
  background: var(--lime);
  border-color: var(--lime);
}
.shopping-item input:checked + .check:after {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  transform: translateY(-1px) rotate(-45deg);
}
.shopping-item input:focus-visible + .check {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}
.item-name {
  font-size: 12px;
  font-weight: 700;
}
.item-name small {
  display: block;
  font-weight: 400;
  font-size: 9px;
  color: var(--muted);
  margin-top: 2px;
}
.shopping-item input:checked ~ .item-name {
  text-decoration: line-through;
  color: #a9b99d;
}
.shopping-item input:checked ~ .item-name small {
  text-decoration: none;
}
.price {
  margin-left: auto;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.price small {
  color: var(--muted);
  display: block;
  font-size: 8px;
  margin-top: 2px;
}
.demo-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 10px;
  color: var(--muted);
}
.demo-total strong {
  display: block;
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.budget {
  text-align: right;
  font-size: 9px;
}
.budget small {
  display: block;
  color: var(--lime);
  font-size: 11px;
  margin-top: 5px;
}
.demo-feedback {
  text-align: center;
  padding: 13px 0;
  color: var(--lime);
  font-size: 9px;
  letter-spacing: 0.1px;
}
.floating-note {
  position: absolute;
  bottom: 29px;
  left: -18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--lime);
  color: var(--on-primary);
  padding: 15px 19px;
  border-radius: 10px;
  transform: rotate(-4deg);
  box-shadow: 0 12px 24px #0003;
  font-size: 12px;
  font-weight: 800;
}
.floating-note small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  margin-top: 2px;
}
.note-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
}
.demo-disclaimer {
  position: absolute;
  bottom: -38px;
  text-align: center;
  font-size: 9px;
  color: var(--muted);
}
.promise-bar {
  background: var(--lime);
  color: var(--on-primary);
  padding-block: 25px;
  overflow: hidden;
}
.promise-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-family: var(--display);
  font-size: clamp(15px, 2.2vw, 30px);
  letter-spacing: -0.8px;
}
.done-word {
  display: flex;
  align-items: center;
  gap: 25px;
}
.done-word svg {
  width: 35px;
  height: 35px;
  stroke-width: 2;
}
.how {
  padding-block: 110px;
}
.section-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.section-intro h2,
.import-guide > h2,
.faq > h2 {
  font-family: var(--display);
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.4;
  letter-spacing: -0.035em;
}
.section-intro h2 span,
.import-guide h2 span {
  color: var(--muted);
}
.section-intro > p {
  max-width: 345px;
  font-size: 14px;
  color: var(--muted);
}
.feature-rows {
  margin-top: 55px;
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature-rows article {
  padding: 36px 38px 36px 0;
}
.feature-rows article + article {
  border-left: 1px solid var(--line);
  padding-left: 38px;
}
.feature-symbol {
  color: var(--lime);
  margin-bottom: 24px;
}
.feature-symbol svg {
  width: 32px;
  height: 32px;
}
.feature-rows h3 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.7px;
}
.feature-rows p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 18px;
  max-width: 310px;
}
.feature-tag {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-top: 24px;
  color: var(--lime);
}
.catalog-section {
  background: #1e2a28;
  border-block: 1px solid #344b3e;
  padding-block: 85px;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.catalog-copy h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.22;
  letter-spacing: -0.035em;
}
.catalog-copy h2 span {
  color: var(--lime);
}
.catalog-copy > p {
  max-width: 400px;
  margin-block: 25px;
  color: #b8c9bf;
  font-size: 15px;
}
.catalog-copy .text-link {
  color: var(--lime);
}
.catalog-package {
  background: var(--panel);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 30px;
}
.package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 15px;
}
.package-icon {
  color: var(--lime);
}
.package-icon svg {
  width: 40px;
  height: 40px;
}
.availability {
  font-size: 9px;
  letter-spacing: 1.2px;
  color: var(--lime);
  padding: 5px 9px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
}
.catalog-package h3 {
  font-size: 28px;
  letter-spacing: -0.8px;
}
.package-description {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.package-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 22px;
  margin-block: 22px;
  border-block: 1px solid var(--line);
}
.package-stats dt {
  font-size: 10px;
  color: var(--muted);
}
.package-stats dd {
  margin: 3px 0 0;
  font-weight: 800;
  font-size: 19px;
  font-variant-numeric: tabular-nums;
}
.catalog-package .button {
  width: 100%;
  justify-content: space-between;
}
.app-import-note {
  align-items: flex-start;
  background: var(--surface-alt);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--ink);
  display: flex;
  gap: 12px;
  padding: 14px;
}
.app-import-note strong {
  display: block;
  font-size: 12px;
}
.app-import-note small {
  color: var(--muted);
  display: block;
  font-size: 10px;
  line-height: 1.5;
  margin-top: 3px;
}
.app-import-icon {
  align-items: center;
  background: var(--lime);
  border-radius: 999px;
  color: var(--on-primary);
  display: inline-flex;
  flex: 0 0 24px;
  font-size: 16px;
  height: 24px;
  justify-content: center;
}
.unavailable {
  background: var(--surface-alt);
  color: var(--muted);
  cursor: not-allowed;
  border-color: var(--border-strong);
}
.download-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 13px;
}
.catalog-caveat {
  font-size: 10px;
  color: var(--muted);
  margin-top: 24px;
  line-height: 1.6;
}
.import-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-block: 100px;
  border-bottom: 1px solid var(--line);
}
.import-guide ol {
  list-style: none;
  counter-reset: steps;
  margin: 0;
  padding: 0;
}
.import-guide li {
  counter-increment: steps;
  position: relative;
  padding-left: 50px;
  padding-bottom: 30px;
}
.import-guide li:last-child {
  padding-bottom: 0;
}
.import-guide li:before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 29px;
  height: 29px;
  border: 1px solid #5d7150;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  color: var(--lime);
}
.import-guide h3 {
  font-size: 17px;
}
.import-guide p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 7px;
  max-width: 390px;
}
.faq {
  padding-block: 90px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.questions {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-block: 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 23px;
  color: var(--lime);
  font-weight: 400;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 23px;
  max-width: 520px;
}
.closing {
  text-align: center;
  border-block: 1px solid var(--line);
  padding-block: 75px;
}
.closing h2 {
  font-family: var(--display);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.035em;
}
.closing h2 span {
  color: var(--lime);
}
.closing .button {
  margin-top: 30px;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 35px;
}
footer .wordmark {
  font-size: 16px;
}
footer p,
footer > a:last-child {
  font-size: 10px;
  color: var(--muted);
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: #536747;
  border: 3px solid var(--bg);
  border-radius: 8px;
}
@keyframes arrive {
  from {
    transform: translateY(18px) rotate(8deg);
  }
  to {
    transform: translateY(0) rotate(5deg);
  }
}
@media (min-width: 1500px) {
  .hero {
    min-height: 810px;
  }
  .hero h1 {
    font-size: 70px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 15px;
    grid-template-columns: 1.08fr 1fr;
  }
  .hero h1 {
    font-size: 46px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-actions {
    gap: 18px;
  }
  .button {
    padding: 14px 17px;
    font-size: 12px;
  }
  .demo-stage {
    transform: scale(0.91);
    transform-origin: center;
  }
  .floating-note {
    left: -10px;
  }
  .catalog-layout,
  .import-guide {
    gap: 50px;
  }
  .section-intro {
    gap: 40px;
  }
  .feature-rows article {
    padding-right: 25px;
  }
  .feature-rows article + article {
    padding-left: 25px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    min-height: 84px;
  }
  .header nav {
    display: none;
  }
  .header .wordmark {
    font-size: 18px;
  }
  .nav-action {
    font-size: 11px;
    padding: 7px 11px;
  }
  .nav-action span {
    margin-left: 8px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-block: 55px 65px;
    gap: 65px;
    overflow: clip;
  }
  .hero-copy {
    max-width: 610px;
  }
  .hero h1 {
    font-size: clamp(38px, 7vw, 60px);
  }
  .hero-copy > p {
    max-width: 410px;
    font-size: 15px;
  }
  .hero-actions {
    gap: 22px;
  }
  .demo-stage {
    transform: none;
    max-width: 510px;
    width: 100%;
    margin: auto;
    min-height: 600px;
  }
  .shopping-demo {
    transform: none;
    animation: none;
  }
  .orbit-one {
    width: 100%;
  }
  .orbit-two {
    width: 117%;
  }
  .floating-note {
    left: 3%;
    bottom: 30px;
  }
  .demo-caption {
    top: 0;
    right: 15px;
  }
  .demo-disclaimer {
    bottom: -20px;
  }
  .promise-bar {
    padding-block: 22px;
  }
  .promise-bar .wrap {
    font-size: 14px;
    letter-spacing: -0.5px;
    gap: 16px;
  }
  .done-word {
    gap: 8px;
  }
  .done-word svg {
    width: 23px;
    height: 23px;
  }
  .section-intro {
    display: block;
  }
  .section-intro > p {
    margin-top: 25px;
    max-width: 430px;
  }
  .how {
    padding-block: 65px;
  }
  .feature-rows {
    margin-top: 35px;
  }
  .feature-rows h3 {
    font-size: 20px;
  }
  .feature-rows p {
    font-size: 12px;
  }
  .feature-rows article {
    padding: 26px 18px 26px 0;
  }
  .feature-rows article + article {
    padding-left: 18px;
  }
  .feature-tag {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .catalog-section {
    padding-block: 60px;
  }
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .catalog-copy h2 {
    font-size: 42px;
  }
  .catalog-package {
    max-width: 540px;
    width: 100%;
  }
  .import-guide {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 65px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 60px;
  }
  .faq h2 br {
    display: none;
  }
  .closing {
    padding-block: 55px;
  }
  footer {
    flex-wrap: wrap;
  }
  footer p {
    order: 3;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero {
    padding-top: 40px;
    gap: 55px;
  }
  .hero h1 {
    font-size: 39px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-actions .button {
    gap: 16px;
  }
  .principles {
    gap: 18px;
    font-size: 10px;
  }
  .shopping-demo {
    width: calc(100% - 20px);
    max-width: 348px;
    padding-inline: 20px;
  }
  .demo-stage {
    min-height: 593px;
  }
  .demo-caption {
    font-size: 8px;
    right: 20px;
    top: -3px;
  }
  .floating-note {
    left: 0;
    bottom: 30px;
    font-size: 11px;
    padding: 12px 14px;
  }
  .demo-disclaimer {
    font-size: 8px;
  }
  .promise-bar .wrap {
    font-size: 10px;
    letter-spacing: -0.3px;
  }
  .done-word svg {
    width: 18px;
    height: 18px;
  }
  .feature-rows {
    grid-template-columns: 1fr;
  }
  .feature-rows article,
  .feature-rows article + article {
    border-left: 0;
    padding: 28px 0;
  }
  .feature-rows article + article {
    border-top: 1px solid var(--line);
  }
  .feature-rows article {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 0 18px;
  }
  .feature-symbol {
    grid-row: 1/4;
    margin: 0;
  }
  .feature-rows h3 {
    font-size: 23px;
  }
  .feature-rows h3 br {
    display: none;
  }
  .feature-rows p {
    font-size: 13px;
    margin-top: 10px;
  }
  .feature-tag {
    margin-top: 16px;
    font-size: 9px;
  }
  .catalog-copy h2 {
    font-size: 38px;
  }
  .catalog-package {
    padding: 24px;
  }
  .package-stats dd {
    font-size: 18px;
  }
  .section-intro h2,
  .import-guide > h2,
  .faq > h2 {
    font-size: 25px;
  }
  .closing h2 {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .shopping-demo {
    transform: none;
  }
}
/* Keep the decorative orbital paths inside the hero's viewport. */
.hero {
  overflow: clip;
}

.floating-note {
  bottom: -15px;
  pointer-events: none;
}
.demo-disclaimer {
  bottom: -48px;
}
@media (max-width: 800px) {
  .floating-note {
    bottom: -12px;
  }
  .demo-disclaimer {
    bottom: -44px;
  }
}
