:root {
  --ink: #1a0e04;
  --muted: #7a5e42;
  --paper: #fffbf5;
  --canvas: #fdf6ed;
  --line: #e8d2b5;
  --night: #0f0803;
  --night-2: #1c1008;
  --night-3: #281608;
  --orange: #f97316;
  --amber: #f59e0b;
  --red: #dc2626;
  --green: #16a34a;
  --blue: #3b82f6;
  --brand: #ea580c;
  --grad: linear-gradient(135deg, var(--orange), var(--amber));
  --shadow: 0 28px 90px rgba(26, 14, 4, 0.18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--canvas); color: var(--ink); font-family: "Trebuchet MS", "Avenir Next", "Gill Sans", sans-serif; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

/* ── Header ── */
.site-header {
  position: fixed; left: 50%; top: 18px; z-index: 50; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  width: min(1180px, calc(100% - 28px)); padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px;
  background: rgba(15,8,3,.82); color: #fff8f0; backdrop-filter: blur(20px); box-shadow: 0 16px 60px rgba(0,0,0,.28);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 16px; background: var(--grad); color: #fff; font-weight: 950; font-size: 15px; letter-spacing: -.04em; }
.brand-mark-img { width: 44px; height: 44px; border-radius: 14px; }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { line-height: 1; letter-spacing: -.04em; color: #fff8f0; }
.brand-copy small { margin-top: 3px; color: rgba(255,248,240,.5); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { border-radius: 999px; padding: 10px 14px; color: rgba(255,248,240,.72); font-size: 14px; font-weight: 700; transition: all .14s; }
.site-nav a:hover { background: rgba(255,255,255,.1); color: #fff8f0; }
.site-nav .nav-cta { background: var(--orange); color: #fff; font-weight: 800; padding: 10px 20px; }
.site-nav .nav-cta:hover { background: var(--brand); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; border-radius: 999px; background: rgba(255,255,255,.12); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 18px; height: 2px; border-radius: 999px; background: #fff8f0; transition: all .2s; }

/* ── Shared ── */
.section-shell { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.eyebrow { margin: 0 0 18px; color: var(--brand); font-size: 12px; font-weight: 950; letter-spacing: .24em; text-transform: uppercase; }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { font-family: "Avenir Next", "Trebuchet MS", sans-serif; letter-spacing: -.055em; }
h1 { max-width: 820px; margin-bottom: 26px; font-size: clamp(46px, 6.6vw, 90px); line-height: .91; }
h2 { margin-bottom: 18px; font-size: clamp(34px, 4.6vw, 60px); line-height: .96; }
h3 { margin-bottom: 10px; font-size: 24px; line-height: 1.1; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 14px 28px; font-weight: 800; font-size: 15px; border: 0; transition: all .15s; white-space: nowrap; }
.button.primary { background: var(--orange); color: #fff; }
.button.primary:hover { background: var(--brand); transform: translateY(-1px); }
.button.ghost { background: rgba(255,255,255,.1); color: #fff8f0; border: 1px solid rgba(255,255,255,.18); }
.button.ghost:hover { background: rgba(255,255,255,.18); }
.button.dark { background: var(--ink); color: var(--paper); }
.button.dark:hover { background: var(--brand); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; background: var(--night); color: #fff8f0; }
.hero::before { position: absolute; inset: 0; background: radial-gradient(circle at 16% 22%, rgba(249,115,22,.22), transparent 36%), radial-gradient(circle at 78% 12%, rgba(245,158,11,.18), transparent 30%), linear-gradient(135deg, rgba(255,255,255,.06), transparent 40%); content: ""; pointer-events: none; }
.hero-noise { position: absolute; inset: 0; opacity: .055; background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px); background-size: 42px 42px; pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 52px; min-height: 100vh; padding: 140px 0 84px; }
.hero .eyebrow { color: var(--orange); }
.hero-text { max-width: 640px; color: rgba(255,248,240,.72); font-size: 18px; line-height: 1.78; margin-bottom: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badges span { padding: 5px 13px; border-radius: 999px; background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.2); color: rgba(255,248,240,.75); font-size: 12px; font-weight: 700; }

/* ── Order mockup ── */
.order-panel { background: var(--night-2); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.5); }
.panel-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.04); }
.panel-bar span { width: 10px; height: 10px; border-radius: 999px; }
.panel-bar span:nth-child(1) { background: #ef4444; }
.panel-bar span:nth-child(2) { background: #f59e0b; }
.panel-bar span:nth-child(3) { background: #22c55e; }
.panel-bar strong { margin-left: 8px; font-size: 12px; font-weight: 700; color: rgba(255,248,240,.5); letter-spacing: .04em; }
.panel-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.order-card { background: var(--night-3); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 13px 15px; }
.order-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.order-num { font-size: 12px; font-weight: 800; color: var(--orange); }
.order-status { font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.status-new { background: rgba(249,115,22,.15); color: var(--orange); }
.status-prep { background: rgba(245,158,11,.15); color: var(--amber); }
.status-ready { background: rgba(34,197,94,.15); color: #22c55e; }
.status-way { background: rgba(59,130,246,.15); color: var(--blue); }
.order-items { font-size: 12px; color: rgba(255,248,240,.6); line-height: 1.7; }
.order-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.06); }
.order-total { font-size: 13px; font-weight: 800; color: #fff8f0; }
.order-time { font-size: 11px; color: rgba(255,248,240,.4); }
.driver-row { display: flex; align-items: center; gap: 10px; background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.15); border-radius: 10px; padding: 10px 13px; }
.driver-avatar { width: 32px; height: 32px; border-radius: 999px; background: var(--grad); display: grid; place-items: center; font-size: 11px; font-weight: 800; color: #fff; flex-shrink: 0; }
.driver-info { flex: 1; min-width: 0; }
.driver-name { font-size: 12px; font-weight: 700; color: #fff8f0; }
.driver-status { font-size: 10px; color: var(--blue); margin-top: 1px; }
.driver-eta { font-size: 11px; font-weight: 800; color: #22c55e; }
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.stat-mini { background: rgba(255,255,255,.04); border-radius: 10px; padding: 10px 12px; text-align: center; }
.stat-mini strong { display: block; font-size: 18px; font-weight: 900; color: var(--orange); letter-spacing: -.04em; }
.stat-mini span { font-size: 10px; color: rgba(255,248,240,.45); }

/* ── How it works ── */
.flow-section { padding: 100px 0; background: var(--paper); }
.flow-section .eyebrow { color: var(--brand); }
.section-heading { text-align: center; margin-bottom: 60px; }
.section-heading p { max-width: 560px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.7; }
.flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.flow-grid::before { content: ""; position: absolute; top: 40px; left: calc(16.6% + 14px); right: calc(16.6% + 14px); height: 2px; background: linear-gradient(90deg, var(--orange), var(--amber)); border-radius: 999px; }
.flow-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px 28px; position: relative; box-shadow: 0 4px 24px rgba(26,14,4,.06); }
.flow-num { width: 48px; height: 48px; border-radius: 999px; background: var(--grad); display: grid; place-items: center; font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 20px; position: relative; z-index: 1; }
.flow-card h3 { font-size: 20px; margin-bottom: 10px; }
.flow-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0; }
.flow-card ul { margin: 14px 0 0; padding: 0 0 0 16px; color: var(--muted); font-size: 13.5px; line-height: 1.8; }

/* ── Features ── */
.feat-section { padding: 100px 0; background: var(--night); color: #fff8f0; }
.feat-section .eyebrow { color: var(--orange); }
.feat-section .section-heading p { color: rgba(255,248,240,.6); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 28px 24px; transition: background .15s; }
.feat-card:hover { background: rgba(255,255,255,.07); }
.feat-icon { width: 44px; height: 44px; border-radius: 14px; background: rgba(249,115,22,.15); display: grid; place-items: center; color: var(--orange); margin-bottom: 18px; }
.feat-card h3 { font-size: 18px; margin-bottom: 9px; color: #fff8f0; }
.feat-card p { color: rgba(255,248,240,.55); font-size: 14px; line-height: 1.65; margin: 0; }

/* ── Pricing ── */
.plans-section { padding: 100px 0; background: var(--canvas); }
.plans-section .eyebrow { color: var(--brand); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 36px 30px; }
.plan-card.featured { background: var(--night); color: #fff8f0; border-color: var(--orange); position: relative; }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 14px; border-radius: 999px; white-space: nowrap; }
.plan-name { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.plan-card.featured .plan-name { color: var(--orange); }
.plan-price { font-size: 48px; font-weight: 900; letter-spacing: -.05em; line-height: 1; margin-bottom: 6px; }
.plan-card.featured .plan-price { color: #fff8f0; }
.plan-period { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.plan-card.featured .plan-period { color: rgba(255,248,240,.5); }
.plan-divider { height: 1px; background: var(--line); margin: 20px 0; }
.plan-card.featured .plan-divider { background: rgba(255,255,255,.1); }
.plan-features { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--muted); line-height: 1.45; }
.plan-card.featured .plan-features li { color: rgba(255,248,240,.72); }
.plan-features li::before { content: "✓"; color: var(--orange); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.plan-cta { display: block; text-align: center; border-radius: 999px; padding: 13px 24px; font-weight: 800; font-size: 14px; background: rgba(26,14,4,.08); color: var(--ink); transition: all .14s; }
.plan-cta:hover { background: var(--brand); color: #fff; }
.plan-card.featured .plan-cta { background: var(--orange); color: #fff; }
.plan-card.featured .plan-cta:hover { background: var(--amber); color: var(--ink); }
.plan-note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--muted); }

/* ── CTA / Contact ── */
.cta-section { padding: 100px 0; background: var(--night); color: #fff8f0; text-align: center; }
.cta-section .eyebrow { color: var(--orange); justify-content: center; display: block; }
.cta-section h2 { max-width: 640px; margin: 0 auto 20px; color: #fff8f0; }
.cta-section p { max-width: 500px; margin: 0 auto 36px; color: rgba(255,248,240,.6); font-size: 17px; line-height: 1.7; }
.cta-form { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 520px; margin: 0 auto; }
.cta-input { flex: 1; min-width: 200px; padding: 14px 20px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.07); color: #fff8f0; font-size: 15px; }
.cta-input::placeholder { color: rgba(255,248,240,.35); }
.cta-input:focus { outline: none; border-color: var(--orange); }
.cta-disclaimer { margin-top: 14px; font-size: 12px; color: rgba(255,248,240,.3); }

/* ── Footer ── */
footer { background: var(--night); border-top: 1px solid rgba(255,255,255,.07); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: rgba(255,248,240,.6); font-size: 13px; }
.footer-mark { width: 28px; height: 28px; border-radius: 8px; background: var(--grad); display: grid; place-items: center; font-size: 10px; font-weight: 900; color: #fff; }
.footer-links { display: flex; gap: 20px; font-size: 13px; color: rgba(255,248,240,.4); }
.footer-links a:hover { color: var(--orange); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; min-height: unset; padding: 130px 0 64px; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-grid::before { display: none; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; position: fixed; inset: 0; top: 72px; background: var(--night-2); flex-direction: column; align-items: flex-start; gap: 0; padding: 20px 16px; }
  body.nav-open .site-nav { display: flex; }
  .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
  .feat-grid { grid-template-columns: 1fr; }
  .cta-form { flex-direction: column; }
  .cta-input { min-width: unset; }
}
