@font-face {
  font-family: 'Nunito';
  src: url('/fonts/Nunito-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('/fonts/Nunito-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('/fonts/Nunito-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('/fonts/Nunito-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

:root {
  --background: #fff9eb;
  --surface: #ffffff;
  --ink: #200f07;
  --muted: #705f55;
  --coral: #eb5e3d;
  --coral-dark: #c94427;
  --sage: #2e5233;
  --lime: #c5e384;
  --line: rgba(32, 15, 7, 0.12);
  --shadow: 0 24px 70px rgba(62, 35, 21, 0.16);
  --radius: 28px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: 'Nunito', ui-rounded, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transform: translateX(-50%);
}

.brand {
  width: 124px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 40px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  gap: 34px;
  align-items: center;
  color: #4f4038;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-header nav a,
.text-link {
  transition: color 180ms ease;
}

.site-header nav a:hover,
.text-link:hover {
  color: var(--coral-dark);
}

.header-cta {
  justify-self: end;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 12px 21px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.hero {
  min-height: 790px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr);
  gap: 52px;
  align-items: center;
  padding: 128px max(24px, calc((100vw - 1180px) / 2)) 70px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 24px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.9rem, 6.2vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero h1 span {
  display: block;
  color: var(--coral);
}

.hero-lede {
  max-width: 590px;
  margin: 32px 0 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.62;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  min-width: 184px;
  display: inline-flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 15px;
  padding: 10px 16px;
  font-weight: 800;
  line-height: 1.05;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-button small {
  margin-bottom: 3px;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(32, 15, 7, 0.13);
}

.store-button-dark {
  background: var(--ink);
  color: white;
}

.store-button-light {
  background: rgba(255, 255, 255, 0.74);
}

.text-link {
  width: fit-content;
  margin-top: 25px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  height: 615px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(235, 94, 61, 0.24);
  border-radius: 50%;
}

.hero-orbit-one {
  inset: 50px 0 20px 40px;
}

.hero-orbit-two {
  inset: 110px 80px 90px 110px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 8px solid #171310;
  border-radius: 46px;
  background: #171310;
  box-shadow: var(--shadow);
}

.phone::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 37px;
  content: '';
  pointer-events: none;
}

.phone img {
  width: 100%;
  height: 100%;
  border-radius: 37px;
  object-fit: cover;
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 10px;
  left: 50%;
  width: 29%;
  height: 20px;
  border-radius: 99px;
  background: #171310;
  transform: translateX(-50%);
}

.phone-feed {
  z-index: 3;
  top: 8px;
  left: 56px;
  width: 286px;
  height: 602px;
  transform: rotate(-3deg);
}

.phone-map {
  z-index: 2;
  right: 5px;
  bottom: 3px;
  width: 238px;
  height: 501px;
  transform: rotate(5deg);
  opacity: 0.96;
}

.map-note {
  position: absolute;
  z-index: 5;
  right: 0;
  top: 54px;
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(46, 82, 51, 0.18);
  border-radius: 999px;
  background: var(--lime);
  color: #193b23;
  padding: 11px 15px;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 13px 26px rgba(49, 86, 65, 0.16);
  transform: rotate(3deg);
}

.proof-strip {
  min-height: 72px;
  display: flex;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  color: white;
  padding: 18px 22px;
  white-space: nowrap;
}

.proof-strip span {
  font-size: clamp(0.94rem, 1.35vw, 1.1rem);
  font-weight: 800;
}

.proof-strip i {
  color: var(--coral);
  font-style: normal;
}

.intro {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 28px;
  text-align: center;
}

.intro h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro > p:last-child {
  max-width: 640px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

.showcase {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 108px 0;
}

.feature-row-reverse {
  grid-template-columns: minmax(440px, 1.14fr) minmax(0, 0.86fr);
}

.feature-row-reverse .feature-copy {
  order: 2;
}

.feature-number {
  margin-bottom: 42px;
  display: block;
  color: rgba(32, 15, 7, 0.38);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.feature-copy h2,
.trust-heading h2,
.faq-section h2,
.download-section h2 {
  margin: 0;
  font-size: clamp(2.55rem, 4.5vw, 4.65rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.feature-copy > p:not(.section-kicker) {
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.feature-list li,
.mini-facts span {
  display: flex;
  gap: 11px;
  align-items: center;
  font-size: 0.96rem;
  font-weight: 800;
}

.feature-list svg,
.mini-facts svg {
  color: var(--coral-dark);
  flex: 0 0 auto;
}

.inline-link {
  width: fit-content;
  margin-top: 30px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
  font-weight: 900;
}

.mini-facts {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px 20px;
}

.feature-stage {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 42px;
}

.feature-stage::before,
.feature-stage::after {
  position: absolute;
  border: 1px solid rgba(32, 15, 7, 0.1);
  border-radius: 50%;
  content: '';
}

.feature-stage::before {
  width: 530px;
  height: 530px;
}

.feature-stage::after {
  width: 390px;
  height: 390px;
}

.feature-stage-coral {
  background: #f6d9cb;
}

.feature-stage-sage {
  background: #dce8d3;
}

.feature-stage-cream {
  background: #f4ead9;
}

.phone.feature-phone {
  position: relative;
  z-index: 2;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 300px;
  height: 633px;
}

.feature-phone-restaurants {
  transform: translateY(55px) rotate(-2deg);
}

.feature-phone-map {
  transform: translateY(52px) rotate(1.5deg);
}

.feature-phone-profile {
  transform: translateY(58px) rotate(-1deg);
}

.dish-stamp,
.saved-note,
.map-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  gap: 7px;
  align-items: center;
  border: 1px solid rgba(32, 15, 7, 0.12);
  border-radius: 999px;
  background: white;
  padding: 11px 15px;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 13px 30px rgba(45, 24, 14, 0.15);
}

.dish-stamp {
  top: 68px;
  right: 46px;
  color: var(--coral-dark);
  transform: rotate(3deg);
}

.saved-note {
  top: 76px;
  left: 40px;
  color: var(--sage);
  transform: rotate(-3deg);
}

.map-chip {
  color: #22432b;
}

.chip-one {
  top: 80px;
  left: 48px;
  transform: rotate(-4deg);
}

.chip-two {
  top: 220px;
  right: 34px;
  transform: rotate(4deg);
}

.chip-three {
  right: 54px;
  bottom: 76px;
  transform: rotate(-2deg);
}

.trust-section {
  margin-top: 36px;
  background: var(--ink);
  color: white;
  padding: 118px max(24px, calc((100vw - 1180px) / 2));
}

.trust-heading {
  max-width: 920px;
}

.trust-heading .section-kicker {
  color: #ff8a6f;
}

.trust-heading h2 {
  max-width: 870px;
}

.trust-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 44px 38px 38px;
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid svg {
  color: #ff876b;
}

.trust-grid h3 {
  margin: 34px 0 12px;
  font-size: 1.35rem;
  font-weight: 900;
}

.trust-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.65;
}

.trust-grid a {
  width: fit-content;
  margin-top: auto;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #ff9a82;
  font-size: 0.91rem;
  font-weight: 900;
}

.faq-section {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  padding: 128px 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 25px 46px 25px 0;
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  color: var(--coral-dark);
  content: '+';
  font-size: 1.65rem;
  font-weight: 600;
  transform: translateY(-52%);
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list p {
  margin: -7px 48px 24px 0;
  color: var(--muted);
  line-height: 1.68;
}

.download-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(32, 15, 7, 0.14);
  border-radius: 44px;
  background: var(--coral);
  padding: 88px 28px;
  text-align: center;
}

.download-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
}

.download-section .section-kicker {
  color: #551f11;
}

.download-section h2 {
  max-width: 850px;
}

.download-section > p:not(.section-kicker) {
  max-width: 620px;
  margin: 24px 0 30px;
  color: #582316;
  font-size: 1.08rem;
}

.download-section .store-button-light {
  background: rgba(255, 249, 235, 0.96);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f5ead8;
  padding: 74px max(24px, calc((100vw - 1180px) / 2)) 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 0.65fr);
  gap: 54px;
}

.footer-brand img {
  width: 175px;
  height: auto;
}

.footer-brand p {
  max-width: 310px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-main h3 {
  margin: 0 0 20px;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-main a {
  width: fit-content;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 700;
}

.footer-main a:hover {
  color: var(--coral-dark);
}

.footer-bottom {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.store-disclaimer {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(112, 95, 85, 0.78);
  font-size: 0.72rem;
  line-height: 1.55;
}

.legal-header {
  width: min(900px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.legal-header .brand {
  width: 112px;
}

.legal-header > a:last-child {
  font-size: 0.9rem;
  font-weight: 900;
}

.legal-shell {
  min-height: 100vh;
  background: #fffaf0;
}

.legal-content {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 110px;
}

.legal-content h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.legal-intro {
  max-width: 650px;
  margin: 28px 0 48px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.legal-card {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  padding: 28px;
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  font-weight: 900;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.68;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a,
.legal-links a {
  color: var(--coral-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-links {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.support-actions {
  margin: 30px 0 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.support-actions a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 13px 19px;
  font-weight: 900;
}

.support-actions a:last-child {
  background: white;
  color: var(--ink);
}

.glyph {
  min-width: 1.15em;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  font-weight: 900;
  line-height: 1;
}

.feature-list .glyph,
.mini-facts .glyph {
  color: var(--coral-dark);
}

.trust-index {
  color: #ff876b;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

@media (max-width: 960px) {
  .site-header {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-visual {
    width: min(600px, 100%);
    margin: -4px auto 0;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 84px 0;
  }

  .feature-row-reverse .feature-copy {
    order: 0;
  }

  .feature-copy {
    max-width: 680px;
  }

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

  .trust-grid article {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: 72px;
  }

  .brand {
    width: 106px;
  }

  .header-cta {
    padding: 10px 16px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: auto;
    gap: 18px;
    padding: 104px 18px 44px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15.8vw, 4.5rem);
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 1rem;
  }

  .store-actions {
    width: 100%;
  }

  .store-button {
    min-width: 0;
    flex: 1 1 150px;
  }

  .hero-visual {
    height: 510px;
    margin-top: 8px;
  }

  .hero-orbit-one {
    inset: 50px -65px 20px -45px;
  }

  .phone-feed {
    left: calc(50% - 131px);
    width: 244px;
    height: 514px;
  }

  .phone-map {
    right: -54px;
    width: 190px;
    height: 400px;
  }

  .map-note {
    right: -4px;
    top: 24px;
  }

  .proof-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .intro {
    padding: 86px 22px;
  }

  .showcase,
  .faq-section,
  .download-section {
    width: calc(100% - 32px);
  }

  .feature-row,
  .feature-row-reverse {
    padding: 72px 0;
  }

  .feature-number {
    margin-bottom: 30px;
  }

  .feature-stage {
    min-height: 530px;
    border-radius: 30px;
  }

  .phone.feature-phone {
    width: 236px;
    height: 498px;
    border-width: 7px;
    border-radius: 38px;
  }

  .phone.feature-phone img,
  .phone.feature-phone::after {
    border-radius: 30px;
  }

  .dish-stamp {
    top: 34px;
    right: 14px;
  }

  .saved-note {
    top: 38px;
    left: 13px;
  }

  .map-chip {
    padding: 9px 12px;
    font-size: 0.75rem;
  }

  .chip-one {
    top: 42px;
    left: 18px;
  }

  .chip-two {
    top: 180px;
    right: 10px;
  }

  .chip-three {
    right: 18px;
    bottom: 45px;
  }

  .trust-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .trust-grid {
    margin-top: 48px;
  }

  .trust-grid article {
    padding: 36px 6px 32px;
  }

  .faq-section {
    padding: 92px 0;
  }

  .download-section {
    margin-bottom: 58px;
    border-radius: 30px;
    padding: 68px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 44px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-content {
    padding-top: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
