:root {
  --ink: #121417;
  --muted: #5e6874;
  --paper: #fffaf2;
  --cream: #fff4df;
  --line: rgba(18, 20, 23, 0.14);
  --orange: #ff5a14;
  --orange-deep: #d9410a;
  --teal: #0f9f8f;
  --mint: #b9f3dd;
  --pink: #ff77a8;
  --yellow: #ffd84d;
  --green: #42bd68;
  --blue: #274c77;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(18, 20, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 20, 23, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(18, 20, 23, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-link img {
  width: 154px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--white);
  box-shadow: 0 8px 20px rgba(18, 20, 23, 0.08);
}

.nav-cta {
  background: var(--ink);
  color: var(--white);
}

.nav-links .nav-cta:hover {
  background: var(--orange);
  color: var(--white);
}

.nav-socials {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
}

.nav-links .nav-social {
  width: 34px;
  height: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(18, 20, 23, 0.07);
}

.nav-links .nav-social:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 20, 23, 0.12);
}

.nav-links .nav-social-instagram {
  color: #c13584;
}

.nav-links .nav-social-tiktok {
  color: #111111;
}

.nav-links .nav-social-facebook {
  color: #1877f2;
  font-size: 18px;
  font-family: Arial, sans-serif;
}

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(18, 20, 23, 0.08);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.hero h1,
.page-hero h1 {
  margin: 20px 0 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.9;
  letter-spacing: 0;
  max-width: 860px;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--orange);
}

.lead {
  margin: 24px 0 0;
  color: #38424d;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  max-width: 680px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--yellow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--yellow);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--mint);
}

.button.ghost {
  background: transparent;
  box-shadow: none;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 660px;
}

.proof {
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.proof strong {
  display: block;
  font-size: 24px;
}

.proof span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.phone-stage {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.burst {
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 44% 56% 48% 52%;
  background: conic-gradient(from 120deg, var(--yellow), var(--pink), var(--mint), var(--orange), var(--yellow));
  border: 3px solid var(--ink);
  transform: rotate(-8deg);
  box-shadow: var(--shadow);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(330px, 78vw);
  aspect-ratio: 9 / 16.25;
  border: 12px solid var(--ink);
  border-radius: 42px;
  background: #fffaf2;
  box-shadow: 16px 18px 0 rgba(18, 20, 23, 0.16);
  padding: 0;
  overflow: hidden;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.035);
  transform-origin: center 34%;
}

.app-preview-phone {
  width: min(370px, 82vw);
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-width: 10px;
  border-radius: 42px;
  background: #edf5ea;
  box-shadow: 16px 18px 0 rgba(18, 20, 23, 0.16), 0 18px 70px rgba(15, 95, 79, 0.22);
}

.app-screen {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 650px;
  padding: 18px 14px 16px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.8), transparent 28%),
    linear-gradient(180deg, #eef6eb 0%, #f6f1e6 100%);
  overflow: hidden;
}

.app-status {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  font-weight: 950;
}

.app-title {
  margin-top: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  font-weight: 950;
}

.app-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}

.app-heading-row h3 {
  margin: 0;
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0;
}

.app-heading-row button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: #0e604f;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.app-chips {
  display: flex;
  gap: 8px;
  overflow: hidden;
  margin: 2px -4px 4px;
}

.app-chips span {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(18, 20, 23, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #141719;
  font-size: 13px;
  font-weight: 950;
}

.app-chips .active {
  background: #0e604f;
  color: #ffffff;
  border-color: #0e604f;
}

.swipe-card {
  position: relative;
  z-index: 2;
  align-self: end;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(18, 20, 23, 0.15);
}

.swipe-card::before,
.swipe-card::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -18px;
  height: 42px;
  border-radius: 0 0 16px 16px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 22px rgba(18, 20, 23, 0.1);
  z-index: -1;
}

.swipe-card::after {
  left: 16px;
  right: 16px;
  bottom: -32px;
  opacity: 0.64;
}

.swipe-image {
  position: relative;
  height: 268px;
  overflow: hidden;
  background: #f2eee6;
}

.swipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 38%;
  transform: scale(1.5);
}

.craving-pill {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(105, 94, 57, 0.52);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.swipe-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  justify-content: center;
  gap: 26px;
}

.swipe-actions span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(18, 20, 23, 0.15);
  font-size: 0;
  font-weight: 950;
}

.swipe-actions .pass::before {
  content: "x";
  color: #ff424b;
  font-size: 32px;
  line-height: 1;
}

.swipe-actions .info::before {
  content: "i";
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #0e604f;
  color: #fff;
  font-size: 21px;
  font-family: Georgia, serif;
  font-style: italic;
}

.swipe-actions .save::before {
  content: "";
  width: 24px;
  height: 24px;
  background: #2bd45f;
  transform: rotate(45deg);
  border-radius: 6px 6px 1px 6px;
}

.swipe-info {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 10px;
  padding: 18px 18px 22px;
}

.swipe-info h3 {
  margin: 0;
  font-size: 26px;
  line-height: 0.98;
  letter-spacing: 0;
}

.swipe-info strong {
  display: block;
  margin-top: 8px;
  color: #0e604f;
  font-size: 19px;
}

.swipe-info p {
  margin: 12px 0 0;
  color: #465149;
  font-size: 16px;
  line-height: 1.3;
}

.rating {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffd967;
  font-size: 25px;
  font-weight: 950;
}

.dish-meta,
.dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 13px;
}

.dish-meta span {
  color: #26322d;
  font-size: 14px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dish-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  background: #dcefe4;
  color: #141719;
  font-size: 13px;
  font-weight: 950;
}

.app-tabs {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 18px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(18, 20, 23, 0.13);
}

.app-tabs span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111;
  font-size: 11px;
  font-weight: 900;
}

.app-tabs .active {
  background: #e6e4df;
  color: #0e604f;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  font-weight: 900;
}

.app-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--white);
}

.dish-stack {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.dish-card {
  padding: 15px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(18, 20, 23, 0.12);
}

.dish-card.featured {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-2deg);
}

.dish-card .tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.dish-card h3 {
  margin: 12px 0 6px;
  font-size: 24px;
  letter-spacing: 0;
}

.dish-card p {
  margin: 0;
  color: inherit;
  opacity: 0.82;
  line-height: 1.4;
}

.float-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 58px;
  max-width: 292px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--yellow);
  font-weight: 900;
  box-shadow: 8px 8px 0 rgba(18, 20, 23, 0.2);
  transform: rotate(4deg);
}

.float-note span,
.float-note strong {
  display: block;
}

.float-note span {
  font-size: 14px;
  line-height: 1.08;
  white-space: nowrap;
}

.float-note strong {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.04;
  white-space: nowrap;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-header h2,
.page-section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-header p {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.pricing-card,
.story-card,
.signup-panel {
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(18, 20, 23, 0.1);
}

.feature-card {
  padding: 24px;
}

.feature-card:nth-child(2) {
  background: var(--mint);
}

.feature-card:nth-child(3) {
  background: #ffe4ef;
}

.feature-card b,
.story-card b {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
}

.feature-card h3,
.story-card h3,
.pricing-card h3 {
  margin: 0;
  font-size: 25px;
  letter-spacing: 0;
}

.feature-card p,
.story-card p,
.pricing-card p,
.page-section p {
  color: var(--muted);
  line-height: 1.6;
}

.how-it-works {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}

.color-panel {
  min-height: 460px;
  border: 2px solid var(--ink);
  border-radius: 30px;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(18, 20, 23, 0.12) 48% 52%, transparent 52%),
    linear-gradient(45deg, var(--orange), var(--pink));
  display: grid;
  place-items: center;
  padding: 30px;
  box-shadow: var(--shadow);
}

.color-panel img {
  width: min(330px, 88%);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  padding: 18px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--yellow);
  font-weight: 950;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.download-band {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 76px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border: 2px solid var(--ink);
  border-radius: 32px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 12px 12px 0 var(--orange);
}

.download-band p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  min-width: 176px;
  min-height: 58px;
  display: grid;
  align-content: center;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.store-badge strong {
  font-size: 17px;
}

.store-badge span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.66);
  text-transform: uppercase;
  font-weight: 850;
}

.page-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 34px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.pricing-card.highlight {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-10px);
  box-shadow: 10px 14px 0 var(--yellow);
}

.pricing-card.highlight p,
.pricing-card.highlight li {
  color: rgba(255, 255, 255, 0.86);
}

.promo-badge {
  position: absolute;
  top: 18px;
  right: -38px;
  width: 156px;
  padding: 8px 0;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(35deg);
  box-shadow: 0 8px 18px rgba(18, 20, 23, 0.16);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 22px 0 8px;
}

.price strong {
  font-size: 50px;
  letter-spacing: 0;
}

.price span {
  color: inherit;
  opacity: 0.72;
  font-weight: 850;
}

.pricing-card ul,
.signup-panel ul {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.pricing-card li,
.signup-panel li {
  color: var(--muted);
  line-height: 1.45;
}

.pricing-card li::before,
.signup-panel li::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.story-card {
  padding: 26px;
}

.policy-hero {
  padding-bottom: 28px;
}

.policy-section {
  padding-top: 8px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 28px;
  align-items: start;
}

.policy-summary {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.policy-summary h2,
.policy-content h2 {
  margin: 0 0 10px;
  letter-spacing: 0;
}

.policy-summary p,
.policy-content p {
  color: var(--muted);
  line-height: 1.65;
}

.policy-summary p:last-child,
.policy-content article p:last-child {
  margin-bottom: 0;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-content article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.about-hero .lead {
  max-width: 820px;
}

.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.about-split h2 {
  margin: 16px 0 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.about-copy {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 8px 8px 0 #ffe4ef;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.pledge-card {
  padding: 32px;
  border: 2px solid var(--ink);
  border-radius: 32px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 12px 12px 0 var(--yellow);
}

.pledge-card h2 {
  max-width: 820px;
  margin: 16px 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.pledge-card p {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 17px;
}

.about-values .feature-card:nth-child(2) {
  background: #ffe4ef;
}

.about-values .feature-card:nth-child(3) {
  background: var(--mint);
}

.about-band .store-badges {
  justify-content: flex-end;
}

.about-band .button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.signup-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  padding: 30px;
  background: #fff;
}

.signup-box {
  padding: 22px;
  border-radius: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.signup-box label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.signup-box input {
  width: 100%;
  min-height: 46px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 0 12px;
  background: var(--white);
}

.form-status {
  margin: 12px 0 0;
  min-height: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.soon-hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 62px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 38px;
  align-items: center;
}

.soon-copy h1 {
  margin: 20px 0 0;
  max-width: 760px;
  font-size: clamp(52px, 7vw, 98px);
  line-height: 0.9;
  letter-spacing: 0;
}

.soon-copy .lead strong {
  color: var(--orange-deep);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-links a {
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-weight: 950;
  box-shadow: 4px 4px 0 rgba(18, 20, 23, 0.12);
}

.demo-card,
.restaurant-interest-card {
  border: 2px solid var(--ink);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--mint);
  overflow: hidden;
}

.demo-card {
  width: min(390px, 100%);
  justify-self: center;
  transform: rotate(1deg);
}

.demo-frame {
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 90, 20, 0.16), rgba(255, 119, 168, 0.18)),
    var(--cream);
}

.demo-frame video,
.demo-frame img {
  width: min(330px, 100%);
  max-height: min(74vh, 680px);
  aspect-ratio: 45 / 91;
  border: 8px solid var(--ink);
  border-radius: 34px;
  background: #050505;
  object-fit: contain;
  object-position: center;
  box-shadow: 10px 12px 0 rgba(18, 20, 23, 0.16);
}

.demo-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
}

.demo-caption strong {
  font-size: 20px;
}

.demo-caption span {
  max-width: 350px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 750;
}

.soon-section {
  padding-top: 48px;
}

.early-panel {
  align-items: stretch;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 77, 0.28), transparent 32%),
    var(--white);
}

.soon-form {
  display: grid;
  align-content: start;
  gap: 14px;
}

.soon-form label {
  margin-bottom: 0;
}

.soon-form textarea {
  width: 100%;
  min-height: 94px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 12px;
  background: var(--white);
  font: inherit;
  resize: vertical;
}

.soon-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.soon-form legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.soon-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 10px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  text-transform: none;
}

.soon-form input[type="radio"] {
  width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  accent-color: var(--orange);
}

.restaurant-interest-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 30px;
  box-shadow: 12px 12px 0 var(--pink);
}

.restaurant-interest-card h2,
.early-panel h2 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.restaurant-interest-card p,
.early-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.soon-close h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.soon-close p {
  font-size: 22px;
  font-weight: 900;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) {
  .hero,
  .soon-hero,
  .how-it-works,
  .download-band,
  .about-split,
  .signup-panel,
  .restaurant-interest-card {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .pricing-grid,
  .story-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-summary {
    position: static;
  }

  .pricing-card.highlight {
    transform: none;
  }

  .section-header {
    display: grid;
  }

  .about-band .store-badges {
    justify-content: flex-start;
  }
}

@media (min-width: 681px) and (max-width: 920px) {
  .nav-inner {
    align-items: flex-start;
    min-height: 0;
    padding: 16px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links a {
    padding: 9px 11px;
  }

  .hero {
    width: min(760px, calc(100% - 48px));
    padding: 48px 0 42px;
    gap: 34px;
  }

  .soon-hero {
    width: min(760px, calc(100% - 48px));
    padding: 48px 0 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(52px, 8vw, 68px);
    max-width: 720px;
  }

  .lead {
    font-size: 19px;
    max-width: 720px;
  }

  .proof-row {
    max-width: none;
  }

  .phone-stage {
    min-height: 560px;
  }

  .burst {
    width: min(520px, 82%);
  }

  .phone {
    width: min(300px, 54vw);
  }

  .float-note {
    right: 52px;
    bottom: 38px;
  }

  .section,
  .page-hero,
  .download-band {
    width: min(760px, calc(100% - 48px));
  }

  .feature-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid .feature-card:last-child,
  .story-grid .story-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid .pricing-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .download-band {
    padding: 28px;
  }

  .demo-card {
    transform: none;
  }
}

@media (max-width: 680px) {
  .nav-inner {
    align-items: flex-start;
    padding: 14px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }

  .soon-hero {
    padding-top: 38px;
    grid-template-columns: minmax(0, 1fr);
  }

  .soon-copy h1 {
    font-size: 48px;
  }

  .demo-caption,
  .restaurant-interest-card {
    display: grid;
  }

  .soon-form fieldset {
    grid-template-columns: 1fr;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 520px;
  }

  .phone {
    min-height: auto;
  }

  .float-note {
    right: 8px;
    bottom: 20px;
  }

  .section,
  .page-hero {
    padding: 48px 0;
  }

  .footer-inner {
    display: grid;
  }
}
