:root {
  --ink: #132238;
  --muted: #5d6b7c;
  --paper: #f6f2ea;
  --paper-2: #eee8dd;
  --blue: #2a6f97;
  --blue-2: #468faf;
  --blue-3: #61a5c2;
  --orange: #f97316;
  --gold: #f4b400;
  --green: #2a9d8f;
  --red: #e65a5a;
  --purple: #8b5cf6;
  --white: #ffffff;
  --line: rgba(19, 34, 56, 0.12);
  --shadow: 0 18px 50px rgba(42, 111, 151, 0.18);
  --radius: 24px;
}

* { 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:
    radial-gradient(circle at 10% 10%, rgba(42,157,143,.12), transparent 25rem),
    radial-gradient(circle at 90% 0%, rgba(249,115,22,.12), transparent 28rem),
    linear-gradient(180deg, var(--paper), #fbf9f5);
  line-height: 1.6;
}

a { color: inherit; }

.wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(246, 242, 234, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
  box-shadow: 0 8px 20px rgba(42,111,151,.25);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover { color: var(--blue); }

.hero {
  padding: 92px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 16px;
}

h1 {
  margin: 0;
  font-size: clamp(3.3rem, 8vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.065em;
}

.tagline {
  margin: 20px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: .09em;
  color: var(--blue);
}

.hero-copy {
  color: var(--muted);
  max-width: 630px;
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), #3a86b8);
  color: white;
  box-shadow: 0 10px 26px rgba(42,111,151,.24);
}

.button.secondary {
  background: rgba(255,255,255,.76);
  border-color: rgba(42,111,151,.28);
  color: var(--blue);
}

.phone {
  max-width: 360px;
  margin: 0 auto;
  border-radius: 42px;
  padding: 14px;
  background: #172334;
  box-shadow: 0 30px 80px rgba(19,34,56,.26);
  transform: rotate(2deg);
}

.screen {
  min-height: 620px;
  overflow: hidden;
  border-radius: 31px;
  background: linear-gradient(180deg, #f5efe4, #fbf8f3);
  padding: 22px 18px;
}

.app-hero {
  color: white;
  text-align: center;
  padding: 27px 16px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2), var(--blue-3));
}

.truck-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 34px;
  background: rgba(255,255,255,.18);
}

.app-title {
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -.04em;
}

.app-tag {
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.crates {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}

.crate {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.3);
}

.c-blue { background: #4a90e2; }
.c-red { background: var(--red); }
.c-gold { background: #f4c542; }
.c-green { background: #56a764; }
.c-purple { background: var(--purple); }

.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
}

.mini-card {
  padding: 14px;
  border-radius: 17px;
  font-weight: 900;
  background: white;
  border: 1px solid var(--line);
}

.daily {
  padding: 16px;
  border-radius: 19px;
  color: white;
  background: linear-gradient(135deg, #f59e0b, var(--orange));
}

.daily b { display: block; font-size: 1.05rem; }

.fake-button {
  margin-top: 11px;
  padding: 13px 14px;
  text-align: center;
  border-radius: 14px;
  background: var(--blue);
  color: white;
  font-weight: 900;
}

.section {
  padding: 76px 0;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -.045em;
}

.section-lead {
  color: var(--muted);
  max-width: 700px;
  margin: 0 0 30px;
}

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

.card {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(19,34,56,.06);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: white;
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
}

.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); }

.band {
  background: linear-gradient(135deg, #173a56, var(--blue));
  color: white;
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.band p { color: rgba(255,255,255,.82); max-width: 720px; }

.legal {
  padding: 56px 0 90px;
}

.legal article {
  max-width: 860px;
  padding: clamp(24px, 5vw, 54px);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 42px rgba(19,34,56,.06);
}

.legal h1 {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  margin-bottom: 12px;
}

.legal h2 {
  font-size: 1.35rem;
  margin-top: 32px;
}

.legal p, .legal li { color: #425064; }
.legal .updated { color: var(--muted); font-weight: 700; }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .hero { padding-top: 56px; }
  .hero-grid { grid-template-columns: 1fr; }
  .phone { max-width: 335px; }
  .grid-3 { grid-template-columns: 1fr; }
  .nav-inner { align-items: flex-start; padding: 12px 0; }
  .nav-links { justify-content: flex-end; gap: 12px; }
}

@media (max-width: 520px) {
  .nav-links a:first-child { display: none; }
  .band { padding: 28px 22px; }
  .screen { min-height: 575px; }
}
