:root {
  --navy: #0b2d5b;
  --navy-deep: #061c39;
  --navy-soft: #163e70;
  --orange: #ff7a00;
  --red: #e63900;
  --cream: #fffaf5;
  --paper: #ffffff;
  --ink: #10243e;
  --slate: #667085;
  --line: #dfe5ec;
  --shadow: 0 22px 60px rgba(6, 28, 57, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; padding: 10px 16px; background: #fff; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: #fff;
  background: rgba(6, 28, 57, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 5px 13px;
  text-decoration: none;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.brand img { width: 218px; max-height: 52px; object-fit: contain; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,.84); text-decoration: none; font-weight: 600; font-size: .92rem; }
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; }
.nav-toggle { display: none; border: 0; background: transparent; color: #fff; font: inherit; font-weight: 700; }
.legal-nav { display: flex; align-items: center; gap: 24px; }
.legal-nav a { color: rgba(255,255,255,.84); text-decoration: none; font-weight: 600; font-size: .92rem; }
.legal-nav a:hover, .legal-nav a:focus-visible { color: #fff; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border: 2px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--orange), var(--red)); box-shadow: 0 12px 28px rgba(230, 57, 0, .28); }
.button-secondary { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.07); }
.button-dark { color: #fff; background: var(--navy); }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6,28,57,.98) 0%, rgba(6,28,57,.90) 37%, rgba(6,28,57,.30) 69%, rgba(6,28,57,.10) 100%),
    url("assets/local-takeaway-hero.png") center / cover no-repeat;
}
.hero-content { max-width: 650px; padding: 96px 0 108px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 20px; color: #ffd5b3; font-size: .82rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 32px; height: 3px; border-radius: 99px; background: var(--orange); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 680px; font-size: clamp(3rem, 7.6vw, 6.5rem); }
h1 span { color: var(--orange); }
.hero-copy { max-width: 580px; margin: 26px 0 32px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.launch-note { display: flex; align-items: center; gap: 11px; margin-top: 30px; color: rgba(255,255,255,.76); font-size: .92rem; }
.launch-note span { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(255,122,0,.18); }

.trust-strip { margin-top: -52px; position: relative; z-index: 3; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.trust-item { padding: 28px 30px; display: flex; gap: 16px; align-items: center; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-icon { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; color: var(--orange); background: #fff2e6; border-radius: 15px; font-size: 1.35rem; font-weight: 900; }
.trust-item strong { display: block; color: var(--navy); font-size: 1rem; }
.trust-item small { display: block; color: var(--slate); font-size: .86rem; }

section { padding: 104px 0; }
.section-kicker { margin: 0 0 12px; color: var(--red); font-size: .82rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-title { max-width: 760px; color: var(--navy); font-size: clamp(2.2rem, 4.5vw, 4rem); }
.section-intro { max-width: 720px; margin: 20px 0 0; color: var(--slate); font-size: 1.08rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.step { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.step-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 26px; color: #fff; background: var(--navy); border-radius: 14px; font-weight: 900; }
.step h3 { color: var(--navy); font-size: 1.45rem; }
.step p { margin: 14px 0 0; color: var(--slate); }

.reliability { color: #fff; background: var(--navy-deep); }
.reliability-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.reliability .section-title { color: #fff; }
.reliability .section-intro { color: rgba(255,255,255,.7); }
.signal-board { padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04)); box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.signal-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.14); }
.signal-head strong { font-size: 1.05rem; }
.live-pill { color: #b8ffd1; font-size: .82rem; font-weight: 800; }
.signal-list { display: grid; gap: 14px; margin-top: 20px; }
.signal { display: grid; grid-template-columns: 13px 1fr auto; gap: 13px; align-items: center; padding: 17px; background: rgba(255,255,255,.06); border-radius: 16px; }
.signal-dot { width: 11px; height: 11px; border-radius: 50%; background: #50d890; }
.signal strong { font-size: .94rem; }
.signal small { color: rgba(255,255,255,.58); }
.signal-alert .signal-dot { background: var(--orange); }
.signal-alert { border: 1px solid rgba(255,122,0,.3); }

.merchant { background: var(--cream); }
.merchant-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.merchant-copy { position: sticky; top: 120px; }
.benefits { display: grid; gap: 18px; }
.benefit { padding: 28px; border: 1px solid #eadfd4; border-radius: 22px; background: rgba(255,255,255,.82); }
.benefit h3 { color: var(--navy); font-size: 1.3rem; }
.benefit p { margin: 11px 0 0; color: var(--slate); }
.merchant-cta { margin-top: 30px; }

.promise-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; margin-top: 48px; }
.promise-main, .promise-side { padding: 40px; border-radius: 28px; }
.promise-main { color: #fff; background: linear-gradient(140deg, var(--orange), var(--red)); }
.promise-main h3 { max-width: 560px; font-size: clamp(2rem, 4vw, 3.4rem); }
.promise-main p { max-width: 600px; color: rgba(255,255,255,.85); }
.promise-side { color: #fff; background: var(--navy); }
.promise-side h3 { font-size: 1.75rem; }
.promise-side ul { margin: 24px 0 0; padding: 0; list-style: none; }
.promise-side li { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.14); }

.faq { background: #f6f8fb; }
.faq-list { max-width: 860px; margin-top: 42px; }
details { border-bottom: 1px solid #d8e0e9; }
summary { cursor: pointer; padding: 24px 0; color: var(--navy); font-weight: 800; font-size: 1.05rem; }
details p { max-width: 740px; margin: -6px 0 24px; color: var(--slate); }

.closing { padding: 90px 0; color: #fff; text-align: center; background: var(--navy); }
.closing h2 { font-size: clamp(2.3rem, 5vw, 4.6rem); }
.closing p { max-width: 650px; margin: 20px auto 30px; color: rgba(255,255,255,.72); }
.closing .hero-actions { justify-content: center; }

.site-footer { padding: 34px 0; color: #fff; background: #04152b; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { font-size: 1.2rem; font-weight: 900; }
.footer-brand span { color: var(--orange); }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .88rem; }
.fine-print { margin: 20px 0 0; color: rgba(255,255,255,.48); font-size: .78rem; }

.legal-hero { padding: 88px 0 62px; color: #fff; background: var(--navy); }
.legal-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
.legal-hero p { max-width: 700px; color: rgba(255,255,255,.72); }
.legal-page { max-width: 820px; padding-top: 70px; padding-bottom: 90px; }
.draft-banner { margin-bottom: 36px; padding: 18px 20px; border-left: 5px solid var(--orange); background: #fff2e6; }
.legal-page h2 { margin-top: 42px; color: var(--navy); font-size: 1.7rem; }
.legal-page p, .legal-page li { color: #475467; }
.legal-date { margin: 0 0 28px; font-size: .92rem; }

@media (max-width: 900px) {
  .brand img { width: 198px; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; inset: 78px 0 auto; display: none; padding: 24px 20px; flex-direction: column; align-items: flex-start; background: var(--navy-deep); }
  .nav-links.open { display: flex; }
  .hero { min-height: 670px; background-position: 62% center; }
  .hero-content { max-width: 600px; }
  .trust-grid, .steps { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .reliability-layout, .merchant-layout, .promise-grid { grid-template-columns: 1fr; }
  .merchant-copy { position: static; }
}

@media (max-width: 600px) {
  .wrap { width: min(100% - 28px, 1160px); }
  .nav { min-height: 70px; }
  .brand { padding: 4px 10px; border-radius: 12px; }
  .brand img { width: 166px; max-height: 48px; }
  .nav-links { top: 70px; }
  .legal-nav { gap: 14px; }
  .legal-nav a { font-size: .82rem; }
  .hero { min-height: 710px; background-position: 68% center; }
  .hero::before { content: ""; position: absolute; inset: 70px 0 0; background: linear-gradient(180deg, rgba(6,28,57,.18), rgba(6,28,57,.88) 58%, rgba(6,28,57,.99)); }
  .hero-content { position: relative; z-index: 1; align-self: end; padding: 220px 0 92px; }
  h1 { font-size: clamp(2.65rem, 14vw, 4.3rem); }
  .hero-actions .button { width: 100%; }
  section { padding: 76px 0; }
  .trust-strip { margin-top: -36px; }
  .step, .signal-board, .promise-main, .promise-side { padding: 26px; }
  .signal { grid-template-columns: 12px 1fr; }
  .signal small { grid-column: 2; }
  .footer-row { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
