:root {
  --bg: #030303;
  --bg-soft: #0b0b0d;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --muted: #9ca3af;
  --blue: #1e88e5;
  --blue-light: #4fc3f7;
  --orange: #ff6a1a;
  --orange-light: #ff9a3d;
  --green: #3bd67f;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(79, 195, 247, 0.3);
  --shadow-blue: 0 0 40px rgba(30, 136, 229, 0.16);
  --shadow-orange: 0 0 40px rgba(255, 106, 26, 0.16);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.45);
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(30, 136, 229, 0.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 106, 26, 0.14), transparent 22%),
    #000000;
  color: var(--text);
  font-family: "Outfit", sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  cursor: pointer;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell--menu-only {
  min-height: 100vh;
  padding: 0 0 80px;
}

.app-view {
  display: none;
  min-height: 100vh;
}

.app-view--active {
  display: block;
}

.page-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 136, 229, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 136, 229, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.55;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
}

.orb--blue {
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: var(--blue);
}

.orb--orange {
  right: -80px;
  bottom: 180px;
  width: 320px;
  height: 320px;
  background: var(--orange);
}

.hero-section,
.info-section,
.steps-section,
.menu-experience,
.social-proof,
.final-cta {
  position: relative;
  z-index: 1;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 48px 0 36px;
}

.hero-section--menu-home {
  padding: 40px 0 20px;
}

.hero-content,
.info-section,
.steps-section,
.menu-experience,
.social-proof,
.final-cta {
  width: var(--container);
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 420px);
  gap: 64px;
  align-items: center;
}

.hero-logo {
  width: 148px;
  margin-bottom: 28px;
}

.hero-badge,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(79, 195, 247, 0.22);
  background: rgba(30, 136, 229, 0.1);
  color: var(--blue-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 0 8px rgba(79, 195, 247, 0.08);
}

.hero-copy h1,
.section-intro h1,
.section-intro h2,
.menu-header h2,
.modal__header h2,
.final-cta__card h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin-top: 24px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  max-width: 760px;
}

.section-intro h1 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  max-width: 920px;
}

.hero-lead,
.section-intro p,
.menu-header__lead,
.feature-grid p,
.steps-grid p,
.testimonial-card p,
.final-cta__card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 620px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  border: 0;
  border-radius: 16px;
  padding: 15px 26px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

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

.btn--primary,
.checkout-button {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #ffffff;
  box-shadow: var(--shadow-orange);
}

.btn--secondary {
  border: 1px solid rgba(79, 195, 247, 0.38);
  background: rgba(30, 136, 229, 0.12);
  color: var(--blue-light);
  box-shadow: var(--shadow-blue);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  box-shadow: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.hero-proof span {
  color: #d1d5db;
  font-size: 0.92rem;
}

.phone-mockup {
  padding: 16px;
  border-radius: 40px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-blue);
  transform: perspective(1200px) rotateY(-10deg) rotateX(4deg);
}

.phone-screen {
  border-radius: 32px;
  padding: 18px;
  background: linear-gradient(180deg, #111317, #050505);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.phone-screen__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.phone-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.phone-brand__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  font-weight: 800;
}

.phone-brand strong,
.preview-item strong {
  display: block;
}

.phone-brand small,
.preview-item small,
.testimonial-card span {
  color: var(--muted);
}

.phone-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.12);
  color: var(--orange-light);
  font-size: 0.75rem;
  font-weight: 700;
}

.phone-screen__body {
  display: grid;
  gap: 12px;
}

.preview-item,
.glass-card,
.step-card,
.testimonial-card,
.product-card,
.order-panel__card,
.modal__dialog,
.choice-card,
.checkout-summary,
.mobile-cart {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.preview-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
}

.preview-item--selected {
  border-color: rgba(255, 106, 26, 0.48);
  background: rgba(255, 106, 26, 0.08);
}

.preview-item__emoji {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 106, 26, 0.24), rgba(79, 195, 247, 0.12));
  font-size: 1.5rem;
}

.preview-item span {
  display: inline-block;
  margin-top: 6px;
  color: var(--orange-light);
  font-weight: 700;
}

.btn--mockup {
  width: 100%;
  margin-top: 18px;
}

.gradient-text-blue {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.info-section,
.steps-section,
.social-proof {
  padding: 56px 0 0;
}

.menu-experience,
.final-cta {
  padding: 80px 0 0;
}

.menu-experience--standalone {
  padding-top: 28px;
}

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

.section-intro--left {
  text-align: left;
  margin-left: 0;
}

.section-intro--compact {
  margin-bottom: 32px;
}

.section-intro__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.section-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-tag--orange {
  color: var(--orange-light);
  background: rgba(255, 106, 26, 0.12);
  border-color: rgba(255, 154, 61, 0.18);
}

.section-intro h2,
.final-cta__card h2 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.feature-grid,
.steps-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

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

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

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 14px;
}

.glass-card,
.step-card,
.testimonial-card {
  border-radius: 28px;
  padding: 28px;
}

.feature-icon,
.step-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  margin-bottom: 18px;
}

.feature-icon--blue,
.step-number--blue {
  background: rgba(30, 136, 229, 0.16);
  color: var(--blue-light);
  border: 1px solid rgba(79, 195, 247, 0.28);
}

.feature-icon--orange,
.step-number--orange {
  background: rgba(255, 106, 26, 0.14);
  color: var(--orange-light);
  border: 1px solid rgba(255, 154, 61, 0.24);
}

.step-number--green {
  background: rgba(59, 214, 127, 0.14);
  color: #7bf0ae;
  border: 1px solid rgba(123, 240, 174, 0.24);
}

.glass-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
}

.app-shell {
  border-radius: 34px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.84), rgba(3, 3, 3, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-blue);
}

.menu-header {
  margin-bottom: 28px;
}

.menu-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-light);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.menu-header__eyebrow span {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.menu-header h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.menu-header__lead {
  margin: 14px 0 0;
  max-width: 520px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.category-pill {
  border: 1px solid rgba(79, 195, 247, 0.22);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(30, 136, 229, 0.08);
  color: var(--blue-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.category-pill.is-active,
.category-pill:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

.menu-layout {
  display: block;
}

.menu-column,
.product-list {
  display: grid;
  gap: 18px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-header__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: var(--shadow-orange);
}

.section-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
}

.section-header__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(79, 195, 247, 0.4), transparent);
}

.product-card {
  border-radius: 26px;
  padding: 18px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.product-card:hover,
.testimonial-card:hover,
.glass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 195, 247, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.product-card__layout {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
}

.product-card__media {
  border-radius: 22px;
  min-height: 132px;
  background:
    radial-gradient(circle at top right, rgba(79, 195, 247, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255, 106, 26, 0.18), rgba(30, 136, 229, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
}

.product-card__media span {
  color: #d1d5db;
  font-size: 0.88rem;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.product-card__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
}

.product-card__name,
.order-panel__head h3 {
  margin: 0;
  font-size: 1.24rem;
  font-weight: 800;
}

.product-card__description {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-card__price,
.cart-item__price,
.order-totals__final strong,
.checkout-summary__total strong,
.mobile-cart__summary strong {
  color: var(--orange-light);
  font-weight: 800;
}

.product-card__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.quantity-control button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1rem;
}

.quantity-control button[data-decrease-qty],
.quantity-control button[data-cart-decrease] {
  background: rgba(30, 136, 229, 0.82);
}

.quantity-control button[data-increase-qty],
.quantity-control button[data-cart-increase] {
  background: rgba(255, 106, 26, 0.92);
}

.quantity-control span {
  min-width: 18px;
  text-align: center;
  font-weight: 700;
}

.btn-add-inline {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 106, 26, 0.1);
  color: var(--orange-light);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.addons {
  margin-top: 16px;
}

.addons__title {
  font-size: 0.82rem;
  color: var(--blue-light);
}

.addons__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.addon-option {
  position: relative;
}

.addon-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.addon-option span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(79, 195, 247, 0.24);
  background: rgba(30, 136, 229, 0.1);
  color: #dbeafe;
  font-size: 0.8rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.addon-option input:checked + span {
  background: rgba(255, 106, 26, 0.14);
  border-color: rgba(255, 154, 61, 0.45);
  color: #ffffff;
}

.order-panel__count,
.mobile-cart__summary span {
  color: var(--blue-light);
  font-size: 0.85rem;
}

.mobile-cart__summary small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.order-items {
  min-height: 72px;
  margin-top: 18px;
}

.cart-items--empty,
.cart-item__addons,
.cart-item__details {
  color: var(--muted);
}

.cart-item {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.cart-item__top,
.cart-item__bottom,
.order-totals div,
.checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-item__title {
  margin: 0;
  font-size: 0.95rem;
}

.cart-item__addons,
.cart-item__details {
  margin: 4px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.cart-item__bottom {
  align-items: center;
  margin-top: 12px;
}

.cart-item__remove {
  border: 0;
  background: transparent;
  color: var(--orange-light);
  font-weight: 700;
}

.order-totals {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.order-totals span,
.checkout-summary span {
  color: var(--muted);
}

.order-totals__final strong,
.checkout-summary__total strong {
  font-size: 1.72rem;
}

.checkout-button {
  width: 100%;
  min-height: 48px;
  margin-top: 20px;
  border: 0;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.checkout-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.mobile-cart {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
}

.desktop-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: min(360px, calc(100vw - 48px));
  display: none;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.desktop-cart__summary,
.mobile-cart__summary {
  display: grid;
  gap: 2px;
  flex: 1;
  text-align: left;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

.desktop-cart__summary span,
.mobile-cart__summary span {
  color: var(--blue-light);
  font-size: 0.85rem;
}

.desktop-cart__summary strong,
.mobile-cart__summary strong {
  color: var(--orange-light);
  font-weight: 800;
}

.desktop-cart__summary small,
.mobile-cart__summary small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.desktop-cart__action {
  width: auto;
  min-width: 138px;
  margin-top: 0;
}

.checkout-button--mobile {
  width: auto;
  min-width: 138px;
  margin-top: 0;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  transform: translate(-50%, 18px);
  z-index: 40;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  background: rgba(14, 14, 16, 0.92);
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.modal__dialog {
  position: relative;
  width: min(780px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  margin: 14px auto;
  overflow: auto;
  padding: 26px;
  border-radius: 30px;
}

.modal__dialog--cart {
  width: min(640px, calc(100vw - 28px));
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--blue-light);
}

.modal__eyebrow {
  margin: 0 0 8px;
  color: var(--orange-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal__header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.checkout-form {
  margin-top: 22px;
}

.order-type,
.form-grid {
  display: grid;
  gap: 14px;
}

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

.choice-card {
  position: relative;
  border-radius: 20px;
  padding: 16px;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card strong {
  display: block;
}

.choice-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.choice-card:has(input:checked) {
  border-color: rgba(255, 154, 61, 0.4);
  background: rgba(255, 106, 26, 0.09);
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.9rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.44);
  color: #ffffff;
  padding: 14px 16px;
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 154, 61, 0.4);
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field--full {
  margin-top: 14px;
}

.field.is-hidden {
  display: none;
}

#changeField.is-hidden {
  display: none;
}

.checkout-summary {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
}

.checkout-button--submit {
  margin-top: 18px;
}

.final-cta {
  padding-bottom: 80px;
}

.final-cta__card {
  padding: 38px;
  border-radius: 34px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(7, 7, 8, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-orange);
}

.final-cta__card p {
  max-width: 620px;
  margin: 18px auto 0;
}

.final-cta__card .btn {
  margin-top: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.view-menu-active .desktop-cart {
  display: flex;
}

@media (max-width: 980px) {
  .hero-content,
  .feature-grid,
  .steps-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 36px;
  }

  .hero-copy,
  .section-intro,
  .menu-header {
    text-align: center;
  }

  .hero-logo,
  .hero-badge,
  .menu-header__eyebrow,
  .section-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .section-intro--left {
    margin-right: auto;
  }

  .section-intro__topbar {
    flex-direction: column;
  }

  .section-intro__actions {
    justify-content: center;
  }

  .menu-header__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .view-menu-active .mobile-cart {
    display: flex;
  }

  .view-menu-active .desktop-cart {
    display: none;
  }

  body {
    padding-bottom: 96px;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

  .hero-section {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .section-intro h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .phone-mockup {
    transform: none;
  }

  .app-shell,
  .final-cta__card,
  .modal__dialog {
    padding: 20px;
  }

  .product-card__layout,
  .product-card__top,
  .form-grid,
  .order-type {
    grid-template-columns: 1fr;
    display: grid;
  }

  .product-card__media {
    min-height: 92px;
  }

  .feature-grid,
  .steps-grid,
  .testimonial-grid {
    gap: 16px;
  }
}
