/* ══════════════ Ordo landing — design tokens ══════════════ */
:root {
  --orange: #FC5103;      /* locked brand orange (the wheel) */
  --orange-dk: #E0490B;
  --blue: #4D96FF;        /* friendly approachable blue */
  --blue-dk: #2f6fd6;
  --navy: #0A0E21;        /* midnight navy */
  --navy-2: #131a33;
  --ink: #10131a;
  --slate: #5a6270;
  --line: #e7eaf0;
  --tint: #f5f7fa;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(10, 14, 33, 0.10);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { line-height: 1.1; margin: 0; letter-spacing: -0.02em; }

.wrap { width: min(1120px, 92vw); margin-inline: auto; }
.wrap--narrow { width: min(720px, 92vw); }

/* ══════════════ buttons ══════════════ */
.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 6px 18px rgba(252, 81, 3, 0.28);
}
.btn:hover { transform: translateY(-2px); background: var(--orange-dk); box-shadow: 0 10px 26px rgba(252, 81, 3, 0.36); }
.btn--sm { padding: 9px 16px; font-size: .9rem; box-shadow: none; }
.btn--lg { padding: 16px 28px; font-size: 1.05rem; }
.btn--full { width: 100%; text-align: center; }
.btn--ghost { background: transparent; color: var(--blue); box-shadow: none; border: 1px dashed #c4d3ec; font-weight: 600; }
.btn--ghost:hover { background: #eef4ff; transform: none; }

/* ══════════════ nav ══════════════ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand__mark { border-radius: 8px; }
.brand__name { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
.nav__links { display: flex; gap: 22px; margin-left: auto; }
.nav__links a { color: var(--slate); text-decoration: none; font-size: .93rem; font-weight: 500; }
.nav__links a:hover { color: var(--ink); }

/* ══════════════ hero ══════════════ */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(77, 150, 255, 0.18), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: clamp(56px, 9vw, 110px) 0;
  overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: #b9c3e6; font-weight: 600; font-size: .9rem; margin: 0 0 18px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(252,81,3,.2); }
.hero h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); font-weight: 800; }
.hero h1 .accent { color: var(--orange); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: #cdd5ee; margin: 22px 0 30px; max-width: 30ch; }
.hero__cta .microcopy { color: #9aa4c9; }

.hero__art { position: relative; display: grid; place-items: center; min-height: 320px; }
.orb {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(252,81,3,.35), rgba(252,81,3,0) 62%);
  filter: blur(4px);
}
.hero__joebot { position: relative; width: clamp(200px, 26vw, 300px); filter: drop-shadow(0 20px 40px rgba(0,0,0,.4)); }
.chat-peek {
  position: absolute; bottom: -6px; right: -8px; width: 250px;
  background: #fff; color: var(--ink); border-radius: 14px; padding: 14px 16px;
  box-shadow: var(--shadow); font-size: .82rem; transform: rotate(-2deg);
}
.chat-peek__q { margin: 0 0 8px; color: var(--slate); font-style: italic; }
.chat-peek__a { margin: 0; line-height: 1.45; }
.chat-peek__a b { color: var(--orange-dk); }

/* ══════════════ sections ══════════════ */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--tint { background: var(--tint); }
.section--dark { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; }
.section__title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; text-align: center; margin-bottom: 42px; }
.section__title--left { text-align: left; margin-bottom: 20px; }

.microcopy { font-size: .88rem; color: var(--slate); margin: 12px 0 0; }
.microcopy--center { text-align: center; max-width: 56ch; margin-inline: auto; }
.prose { font-size: 1.08rem; color: #3a414f; }
.prose--muted { color: var(--slate); font-size: 1rem; }

/* cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow);
}
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; background: #fff4ee; margin-bottom: 16px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { margin: 0; color: #3a414f; font-size: .98rem; }

/* rewards ladder */
.ladder { display: grid; gap: 12px; max-width: 760px; margin-inline: auto; }
.ladder__row {
  display: grid; grid-template-columns: 200px 1fr; gap: 20px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px;
}
.ladder__row--hi { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(252,81,3,.10); }
.ladder__when { font-weight: 700; color: var(--navy); }
.ladder__get { color: #3a414f; }
.ladder__get b { color: var(--orange-dk); }

/* coverage */
.coverage { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; }
.marques { display: flex; flex-wrap: wrap; gap: 12px; }
.marques span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-weight: 700; color: var(--navy); box-shadow: var(--shadow);
}
.marques .marques--more { background: var(--navy); color: #fff; border-color: var(--navy); }

/* join form */
.join__head { text-align: center; margin-bottom: 34px; }
.form {
  max-width: 560px; margin-inline: auto; background: #fff; color: var(--ink);
  border-radius: 20px; padding: 30px; box-shadow: var(--shadow); display: grid; gap: 20px;
}
.field { display: grid; gap: 8px; }
.field__label { font-weight: 700; font-size: .95rem; }
.field__label em { color: var(--slate); font-weight: 400; font-style: normal; font-size: .85rem; }
.form input[type=email], .car-row input {
  width: 100%; padding: 13px 14px; border: 1px solid #d4dae4; border-radius: 10px;
  font-size: 1rem; font-family: inherit; transition: border .15s, box-shadow .15s;
}
.form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(77,150,255,.2); }
.car-row { display: grid; grid-template-columns: 1fr 1fr 90px; gap: 10px; margin-bottom: 10px; }
.car-row__year { text-align: center; }
.field--optional { background: var(--tint); border: 1px solid var(--line); border-radius: 12px; padding: 16px; gap: 12px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; color: var(--slate); }
.check--tight { font-size: .85rem; }
.wtp { display: grid; gap: 8px; }
.wtp__q { font-size: .85rem; color: var(--slate); }
.wtp__row { display: flex; align-items: center; gap: 8px; }
.wtp__row select { padding: 10px 8px; border: 1px solid #d4dae4; border-radius: 10px; background: #fff; font-size: 1rem; }
.wtp__row input { flex: 1; padding: 11px 12px; border: 1px solid #d4dae4; border-radius: 10px; font-size: 1rem; }
.wtp__per { color: var(--slate); font-size: .9rem; }
.check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--orange); flex: none; }
.form__note { text-align: center; margin: 0; font-weight: 600; min-height: 1.2em; }
.form__note.ok { color: #17915b; }
.form__note.err { color: #d23b3b; }

/* faq */
.qa { border-bottom: 1px solid var(--line); padding: 6px 0; }
.qa summary {
  cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; font-size: 1.05rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; color: var(--orange); font-size: 1.5rem; font-weight: 400; }
.qa[open] summary::after { content: "–"; }
.qa p { margin: 0 0 18px; color: #3a414f; }

/* why-August — Bertha Benz */
.bertha { text-align: center; }
.bertha__badge {
  display: inline-block; margin: 0 0 18px;
  background: var(--navy); color: #fff; font-weight: 700; letter-spacing: .02em;
  padding: 8px 18px; border-radius: 999px; font-size: .9rem;
  box-shadow: 0 6px 18px rgba(10,14,33,.18);
}
.bertha__body { max-width: 60ch; margin-inline: auto; color: #3a414f; }

/* final */
.final { text-align: center; }
.final__line { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 800; color: var(--navy); margin: 0 0 26px; }

/* legal / privacy page */
.legal { padding: clamp(40px, 6vw, 72px) 0 80px; }
.legal__back { display: inline-block; color: var(--blue); text-decoration: none; font-weight: 600; font-size: .9rem; margin-bottom: 20px; }
.legal__back:hover { text-decoration: underline; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 8px; }
.legal__meta { color: var(--slate); font-size: .9rem; margin: 0 0 28px; }
.legal__lead { font-size: 1.12rem; color: #3a414f; border-left: 3px solid var(--orange); padding-left: 18px; margin: 0 0 36px; }
.legal h2 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin: 40px 0 12px; }
.legal p { color: #3a414f; margin: 0 0 14px; }
.legal ul { color: #3a414f; padding-left: 22px; margin: 0 0 16px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--blue-dk); }
.legal__table { width: 100%; border-collapse: collapse; margin: 8px 0 18px; font-size: .95rem; }
.legal__table th, .legal__table td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); vertical-align: top; }
.legal__table th { background: var(--tint); font-weight: 700; color: var(--navy); }
.legal__foot { margin-top: 44px; font-weight: 700; color: var(--navy); }
@media (max-width: 620px) {
  .legal__table, .legal__table thead, .legal__table tbody, .legal__table tr, .legal__table th, .legal__table td { display: block; }
  .legal__table thead { display: none; }
  .legal__table tr { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; padding: 6px; }
  .legal__table td { border: none; padding: 6px 10px; }
}

/* footer */
.footer { background: var(--navy); color: #aeb7d6; padding: 44px 0; }
.footer__inner { display: grid; gap: 14px; text-align: center; justify-items: center; }
.footer .brand__name { color: #fff; }
.footer__trust { margin: 0; font-weight: 600; color: #cdd5ee; }
.footer__links { margin: 0; }
.footer__links a { color: #aeb7d6; text-decoration: none; font-size: .88rem; }
.footer__links a:hover { color: #fff; text-decoration: underline; }
.footer__meta { margin: 0; font-size: .82rem; color: #7681a6; }

/* ══════════════ responsive ══════════════ */
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__art { min-height: 260px; order: -1; }
  .cards { grid-template-columns: 1fr; }
  .coverage { grid-template-columns: 1fr; gap: 24px; }
  .ladder__row { grid-template-columns: 1fr; gap: 6px; }
  .nav__links { display: none; }
}
