:root {
  --bg: #f6f1e8;
  --cream: #fffaf1;
  --ink: #101713;
  --muted: #70685f;
  --green: #0b3f34;
  --green-2: #128065;
  --mint: #e4f7ee;
  --gold: #ffd269;
  --white: #ffffff;
  --line: rgba(16, 23, 19, 0.1);
  --shadow: 0 28px 80px rgba(16, 23, 19, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% -5%, rgba(255, 210, 105, 0.36), transparent 28rem),
    radial-gradient(circle at 0% 12%, rgba(18, 128, 101, 0.13), transparent 24rem),
    linear-gradient(180deg, #fbf8f0 0%, var(--bg) 58%, #fbf8f0 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.nav,
.hero,
.download-panel,
.trust-strip,
.section,
.footer {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 10px 12px;
  background: rgba(255, 250, 241, 0.84);
  border: 1px solid rgba(16, 23, 19, 0.08);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(16, 23, 19, 0.06);
  backdrop-filter: blur(18px);
}

.nav nav,
.footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
}

.nav a[aria-current="page"] { color: var(--green); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 7px 17px 7px 8px;
  background: var(--green);
  color: white;
  border-radius: 999px;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.brand.small {
  font-size: 18px;
}

.brand.small img {
  width: 28px;
  height: 28px;
}

.menu-button {
  display: none;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 950;
}

.nav-download {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--green);
  color: white;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(11, 63, 52, 0.18);
}

.hero {
  position: relative;
  display: block;
  min-height: auto;
  margin-top: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.hero::before,
.hero::after { display: none; }

.hero-copy {
  position: absolute;
  left: clamp(26px, 5vw, 64px);
  top: clamp(40px, 7vw, 88px);
  z-index: 4;
  max-width: 500px;
}

.hero .pill {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  margin: 0 0 20px;
  background: var(--mint);
  color: var(--green-2);
  border: 1px solid rgba(18, 128, 101, 0.08);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(52px, 6.2vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero h1 {
  max-width: 500px;
  color: white;
  text-wrap: balance;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

h3 {
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.36;
}

.hero .lead {
  max-width: 430px;
  color: rgba(255, 250, 241, 0.86);
}

.button,
.store {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.button:hover,
.store:hover { transform: translateY(-2px); }

.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 18px 36px rgba(11, 63, 52, 0.24);
}

.hero .primary {
  min-width: 190px;
  background: #28d263;
  color: #07130f;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.18);
}

.secondary,
.store {
  background: rgba(255, 255, 255, 0.74);
  color: var(--green);
  border: 1px solid var(--line);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.hero-actions span {
  max-width: 240px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 780;
}

.device-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.glow,
.hero-board {
  display: none;
}

.media-card {
  position: relative;
  width: 100%;
  min-height: min(720px, calc(100vh - 94px));
  overflow: hidden;
  border-radius: 46px;
  background:
    linear-gradient(90deg, rgba(5, 36, 30, 0.98) 0%, rgba(6, 55, 46, 0.82) 44%, rgba(7, 60, 50, 0.22) 100%),
    radial-gradient(circle at 78% 24%, rgba(255, 210, 105, 0.72), transparent 0 15%, transparent 36%),
    radial-gradient(circle at 90% 70%, rgba(228, 247, 238, 0.56), transparent 0 18%, transparent 38%),
    linear-gradient(145deg, #073228 0%, #12604b 48%, #f2d477 135%);
  border: 1px solid rgba(16, 23, 19, 0.1);
  box-shadow: 0 30px 90px rgba(16, 23, 19, 0.16);
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.12), transparent 50%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.24), transparent 18rem);
  pointer-events: none;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(4, 31, 26, 0.76) 0%, rgba(4, 31, 26, 0.42) 36%, rgba(4, 31, 26, 0.08) 74%),
    radial-gradient(circle at 20% 34%, rgba(4, 31, 26, 0.5), transparent 22rem);
  pointer-events: none;
}

.app-ghost {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  top: 50%;
  z-index: 1;
  width: min(470px, 42vw);
  min-height: 500px;
  padding: 24px;
  border-radius: 42px;
  background:
    linear-gradient(160deg, rgba(19, 91, 73, 0.86), rgba(4, 39, 32, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.17);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
  transform: translateY(-50%) rotate(3deg);
  opacity: 0.58;
  filter: saturate(0.92);
}

.ghost-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #dff5ed;
  font-size: 14px;
  font-weight: 950;
}

.ghost-top b {
  display: inline-grid;
  min-width: 54px;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.ghost-location {
  display: grid;
  gap: 4px;
  margin: 34px 0 18px;
}

.ghost-location small {
  color: var(--gold);
  font-size: 14px;
  font-weight: 950;
}

.ghost-location strong {
  color: white;
  font-size: 64px;
  line-height: 0.9;
  letter-spacing: -0.085em;
}

.ghost-location span {
  color: rgba(255, 250, 241, 0.8);
  font-size: 17px;
  font-weight: 760;
}

.ghost-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-bottom: 18px;
}

.ghost-tabs span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f3fbf7;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
}

.ghost-post {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  padding: 12px;
  border-radius: 26px;
  background: rgba(255, 250, 241, 0.94);
}

.ghost-post i {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 22px;
  background: #ffe2a4;
  font-style: normal;
  font-size: 30px;
}

.ghost-post b,
.ghost-post span {
  display: block;
}

.ghost-post b {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.ghost-post span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.media-copy { display: none; }

.media-copy span,
.media-copy small,
.media-copy strong {
  display: block;
}

.media-copy span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--gold);
  font-size: 14px;
  font-weight: 950;
}

.media-copy strong {
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.085em;
}

.media-copy small {
  max-width: 330px;
  margin-top: 13px;
  color: rgba(255, 250, 241, 0.84);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 720;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
  width: min(360px, 31vw);
  padding: 12px;
  background: rgba(255, 250, 241, 0.92);
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.floating-card b,
.floating-card span,
.floating-card em {
  display: block;
}

.floating-card b {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.floating-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.floating-card em {
  width: fit-content;
  margin-bottom: 5px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #ffe3e0;
  color: #b4211f;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.floating-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: #ffe2a4;
  font-size: 32px;
}

.ask-card .floating-icon { background: #dff2eb; }
.food-card { right: 16%; top: 36%; }
.ask-card { right: 7%; bottom: 15%; }

.media-note {
  position: absolute;
  left: clamp(26px, 5vw, 64px);
  bottom: clamp(24px, 5vw, 54px);
  z-index: 4;
  max-width: 340px;
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(6, 46, 38, 0.78);
  color: rgba(255, 250, 241, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.board-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  color: #d8eee6;
  font-size: 15px;
  font-weight: 950;
}

.board-top b {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  min-height: 38px;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: white;
}

.board-location {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
}

.board-location small {
  color: var(--gold);
  font-size: 15px;
  font-weight: 950;
}

.board-location strong {
  color: white;
  font-size: clamp(44px, 5.4vw, 66px);
  line-height: 0.9;
  letter-spacing: -0.085em;
}

.board-location span {
  color: #d8eee6;
  font-size: 18px;
  font-weight: 760;
}

.mini-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin: 16px 0;
}

.mini-categories span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #f3fbf7;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.premium-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 13px;
  padding: 14px;
  background: rgba(255, 250, 241, 0.98);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.premium-card b,
.premium-card strong,
.premium-card span,
.premium-card em {
  display: block;
}

.premium-card b {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.premium-card strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 30px;
  letter-spacing: -0.06em;
}

.premium-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
}

.premium-card em {
  width: fit-content;
  margin-bottom: 6px;
  padding: 5px 9px;
  background: #ffe3e0;
  color: #b4211f;
  border-radius: 999px;
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
}

.premium-thumb {
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 25px;
  font-size: 36px;
}

.premium-thumb.rice { background: #ffe2a4; }
.premium-thumb.service { background: #dff2eb; }

.board-alert {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #e4f6ee;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  font-size: 15px;
  font-weight: 850;
}

.download-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(24px, 5vw, 42px);
  background: var(--green);
  color: white;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.download-panel .pill {
  background: rgba(255, 255, 255, 0.13);
  color: var(--gold);
}

.download-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(34px, 5vw, 58px);
}

.download-panel p {
  max-width: 660px;
  margin-bottom: 0;
  color: #d8eee6;
  font-size: 18px;
  line-height: 1.5;
}

.download-actions {
  display: grid;
  gap: 10px;
  min-width: 260px;
}

.download-panel .primary {
  background: var(--gold);
  color: var(--green);
}

.download-panel .secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 78px;
}

.trust-strip div,
.steps article,
.split,
.qr-section,
.final-cta,
.page-card,
.qr-card,
.category-grid div {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 16px 42px rgba(16, 23, 19, 0.06);
}

.trust-strip div {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.trust-strip span {
  color: var(--green-2);
  font-size: 13px;
  font-weight: 950;
}

.trust-strip strong {
  display: block;
  margin-top: 18px;
  font-size: 24px;
  letter-spacing: -0.045em;
}

.trust-strip small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 720;
}

.section { margin-bottom: 78px; }

.section p,
.section li,
.section .safety-list {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

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

.steps article { padding: 26px; }

.steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  background: var(--gold);
  color: var(--green);
  border-radius: 999px;
  font-weight: 950;
}

.category-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  align-items: start;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.category-grid div {
  display: grid;
  gap: 5px;
  min-height: 150px;
  padding: 22px;
  font-size: 28px;
}

.category-grid b {
  display: block;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.category-grid span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 720;
}

.split,
.qr-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
}

.split {
  background: var(--green);
  color: white;
}

.split p,
.split .safety-list { color: #d8eee6; }

.split .pill {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.safety-list {
  margin: 0;
  padding-left: 22px;
}

.safety-list li,
.page-card li { margin: 12px 0; }

.store-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.qr-card {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 26px;
  text-align: center;
}

.qr-card img {
  width: min(280px, 100%);
  height: auto;
  border-radius: 24px;
}

.qr-card strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.qr-card span {
  color: var(--muted);
  font-weight: 700;
}

.disabled {
  opacity: 0.62;
  pointer-events: none;
}

.final-cta {
  padding: clamp(38px, 7vw, 76px);
  text-align: center;
  background: linear-gradient(160deg, var(--green), #082d25);
  color: white;
}

.final-cta h2 { margin-inline: auto; }
.final-cta p { color: #d7ebe4; }

.final-cta .primary {
  background: var(--gold);
  color: var(--green);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 0 54px;
  color: var(--muted);
  font-weight: 760;
}

.footer-email {
  margin-top: 8px;
  color: var(--muted);
}

.footer-email a {
  color: var(--green);
  font-weight: 900;
}

.page-main {
  width: min(900px, calc(100% - 36px));
  margin: 46px auto 70px;
}

.page-card {
  padding: clamp(26px, 6vw, 58px);
}

.page-card h1 {
  font-size: clamp(44px, 7vw, 78px);
}

.page-card h2 {
  margin-top: 34px;
  font-size: clamp(28px, 4vw, 42px);
}

.page-card p,
.page-card li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.page-card a {
  color: var(--green-2);
  font-weight: 900;
}

.page-card .button { color: white; }

.contact-main {
  width: min(980px, calc(100% - 36px));
}

.contact-card {
  display: grid;
  gap: 26px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 210, 105, 0.28), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 241, 0.92));
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.contact-intro {
  max-width: 720px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

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

.field label {
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
}

.field label span {
  color: var(--muted);
  font-weight: 760;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(16, 23, 19, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input {
  min-height: 58px;
  padding: 0 18px;
}

.field textarea {
  min-height: 190px;
  padding: 18px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(18, 128, 101, 0.45);
  background: white;
  box-shadow: 0 0 0 5px rgba(18, 128, 101, 0.11);
}

.field-error {
  color: #b4211f;
  font-size: 14px;
  font-weight: 850;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.contact-actions span {
  max-width: 360px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 760;
}

.form-notice {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 24px;
  font-weight: 780;
}

.form-notice strong {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.form-notice span {
  color: var(--muted);
  line-height: 1.45;
}

.form-notice.success {
  background: var(--mint);
  border: 1px solid rgba(18, 128, 101, 0.12);
}

.form-notice.warning {
  background: #fff4d8;
  border: 1px solid rgba(151, 100, 0, 0.14);
}

@media (max-width: 920px) {
  .nav {
    top: 8px;
    align-items: center;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .nav nav {
    display: none;
    width: 100%;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
  }

  .nav.nav-open {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .nav.nav-open nav { display: flex; }

  .hero,
  .download-panel,
  .trust-strip,
  .steps,
  .split,
  .qr-section,
  .category-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .device-stage {
    min-height: auto;
    place-items: stretch;
  }

  .media-card {
    width: 100%;
    min-height: 600px;
    border-radius: 38px;
  }

  .app-ghost {
    right: -40px;
    width: min(430px, 58vw);
    opacity: 0.38;
  }

  .download-panel { align-items: stretch; }

  .category-grid { grid-template-columns: repeat(2, 1fr); }

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

  .footer { flex-direction: column; }
}

@media (max-width: 560px) {
  .nav,
  .hero,
  .download-panel,
  .trust-strip,
  .section,
  .footer {
    width: min(100% - 24px, 1160px);
  }

  .nav {
    margin-top: 10px;
    padding: 8px;
  }

  .nav nav { order: 4; }

  .brand {
    min-height: 44px;
    font-size: 19px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .nav-download {
    min-height: 42px;
    padding: 0 15px;
  }

  h1 {
    font-size: clamp(43px, 11.8vw, 56px);
    line-height: 0.96;
    letter-spacing: -0.075em;
  }

  .hero h1 {
    max-width: 310px;
    margin-bottom: 14px;
  }

  h2 { font-size: clamp(40px, 12vw, 60px); }

  .lead { font-size: 20px; }

  .hero .lead {
    max-width: 310px;
    font-size: 19px;
    line-height: 1.32;
  }

  .hero-copy {
    left: 24px;
    right: 24px;
    top: 30px;
    max-width: none;
  }

  .hero .pill {
    margin-bottom: 18px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .hero-actions,
  .store-row {
    display: grid;
  }

  .hero-actions {
    gap: 11px;
    width: min(100%, 310px);
    margin-top: 20px;
  }

  .hero-actions span {
    max-width: 100%;
    text-align: left;
    font-size: 13px;
  }

  .button,
  .store,
  .hero .primary {
    width: 100%;
    min-height: 56px;
  }

  .app-ghost {
    right: -92px;
    top: auto;
    bottom: 74px;
    width: 330px;
    min-height: 390px;
    padding: 18px;
    transform: rotate(5deg);
    opacity: 0.28;
  }

  .ghost-location {
    margin: 24px 0 14px;
  }

  .ghost-location strong {
    font-size: 48px;
  }

  .ghost-location span,
  .ghost-location small,
  .ghost-top {
    font-size: 12px;
  }

  .ghost-tabs {
    gap: 7px;
  }

  .ghost-tabs span {
    min-height: 34px;
    font-size: 11px;
  }

  .ghost-post {
    grid-template-columns: 58px 1fr;
    gap: 10px;
    padding: 9px;
    border-radius: 20px;
  }

  .ghost-post i {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 22px;
  }

  .ghost-post b {
    font-size: 16px;
  }

  .ghost-post span {
    font-size: 11px;
  }

  .floating-card {
    grid-template-columns: 54px 1fr;
    width: calc(100% - 44px);
    left: 22px;
    right: auto;
    padding: 8px;
    border-radius: 20px;
  }

  .floating-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 23px;
  }

  .floating-card b {
    font-size: 15.5px;
  }

  .floating-card span {
    margin-top: 3px;
    font-size: 11px;
  }

  .floating-card em {
    margin-bottom: 3px;
    padding: 4px 8px;
    font-size: 10.5px;
  }

  .food-card {
    top: auto;
    bottom: 100px;
    opacity: 0.96;
  }

  .ask-card {
    top: auto;
    right: auto;
    bottom: 26px;
    opacity: 0.96;
  }

  .media-note {
    display: none;
  }

  .trust-strip div { min-height: 142px; }

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

  .split,
  .qr-section,
  .download-panel {
    border-radius: 28px;
  }

  .page-main.contact-main {
    width: min(100% - 24px, 980px);
    margin-top: 28px;
  }

  .contact-card {
    border-radius: 30px;
  }

  .contact-actions .button {
    width: 100%;
  }
}
