/* Dealership — marketing site.
   Light system borrowed from lighter.fit (bg #f5f5f7, white surfaces, big
   radii, soft shadows, SF system stack); component vocabulary — chip clouds,
   night timeline, message bubbles — adapted from the Tommy site, re-lit for
   light mode. */

:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #4a4a4a;
  --ink-mute: #8a8a8e;
  --line: #e5e5ea;
  --blue: #007aff;
  --navy: #1b2740;
  --green: #34c759;
  --red: #e11d48;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 12px 40px rgba(0, 0, 0, 0.05);
  --shadow-deep: 0 2px 6px rgba(0, 0, 0, 0.06), 0 24px 70px rgba(0, 0, 0, 0.12);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --font-display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 245, 247, 0.82);
  backdrop-filter: saturate(1.8) blur(18px);
  -webkit-backdrop-filter: saturate(1.8) blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  height: 60px; max-width: 1080px; margin: 0 auto; padding: 0 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--ink); }
.nav-brand:hover { text-decoration: none; }
.nav-brand img { width: 28px; height: 28px; border-radius: 7px; }
.nav-links { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.nav-links a { color: var(--ink-soft); font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-cta {
  background: var(--ink); color: #fff !important; padding: 8px 16px;
  border-radius: 999px; font-weight: 600;
}
.nav-cta:hover { opacity: 0.85; text-decoration: none; }
@media (max-width: 760px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 40px; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 14px; font-size: 13px; font-weight: 600; color: var(--ink-soft);
  box-shadow: var(--shadow);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 68px);
  line-height: 1.04; letter-spacing: -0.03em; font-weight: 800;
  margin: 26px auto 18px; max-width: 820px;
}
.hero h1 .accent { color: var(--blue); }
.hero .sub {
  font-size: clamp(17px, 2.2vw, 20px); color: var(--ink-soft);
  max-width: 640px; margin: 0 auto 30px;
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-size: 16px; font-weight: 600;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { opacity: 0.87; }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow); }
.hero-note { margin-top: 16px; font-size: 13.5px; color: var(--ink-mute); }

/* ---------- Chips (Tommy component, light) ---------- */
.chips-band { padding: 46px 0 10px; text-align: center; }
.chips-band .lede { font-size: 14px; color: var(--ink-mute); font-weight: 600; margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 860px; margin: 0 auto; }
.chip {
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  box-shadow: var(--shadow);
}

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 60px 0; }
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 44px); letter-spacing: -0.02em; line-height: 1.1;
  font-weight: 800; max-width: 640px;
}
.section .lede { font-size: 17.5px; color: var(--ink-soft); max-width: 560px; margin-top: 14px; }
.center { text-align: center; }
.center h2, .center .lede { margin-left: auto; margin-right: auto; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--surface); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.02);
}
.step .num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: #fff;
  font-weight: 700; display: flex; align-items: center; justify-content: center;
  font-size: 15px; margin-bottom: 16px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 15px; }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
@media (max-width: 940px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--surface); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.02);
}
.feature .icon { font-size: 26px; margin-bottom: 14px; }
.feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 7px; }
.feature p { color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Real app screenshots gallery ---------- */
.shots {
  display: flex; gap: 22px; overflow-x: auto; padding: 44px 24px 20px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.shot { scroll-snap-align: center; flex-shrink: 0; text-align: center; }
.shot img {
  width: 232px; border-radius: 30px; border: 7px solid #0c0c0e;
  box-shadow: var(--shadow-deep); background: #0c0c0e;
}
.shot figcaption { margin-top: 12px; font-size: 13.5px; font-weight: 600; color: var(--ink-mute); }
@media (min-width: 1340px) { .shots { justify-content: center; } }

/* ---------- Dealer 3-step cards ---------- */
.dsteps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
@media (max-width: 940px) { .dsteps { grid-template-columns: 1fr; } }
.dstep {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.02);
  display: flex; flex-direction: column;
}
.dstep-visual {
  background: linear-gradient(160deg, #e9eef8, #f4f2ec);
  padding: 26px 22px; min-height: 210px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.dstep-copy { padding: 22px 26px 26px; }
.dstep-copy h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.dstep-copy p { color: var(--ink-soft); font-size: 14.5px; }

/* visual 1: website -> extracted brand kit */
.mini-browser {
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-deep);
  width: 150px; overflow: hidden; flex-shrink: 0;
}
.mini-browser .bar { display: flex; gap: 4px; padding: 7px 9px; border-bottom: 1px solid #eee; }
.mini-browser .bar i { width: 6px; height: 6px; border-radius: 50%; background: #e0e0e4; }
.mini-browser .bar i:first-child { background: #ff5f57; }
.mini-browser .bar i:nth-child(2) { background: #febc2e; }
.mini-browser .bar i:nth-child(3) { background: #28c840; }
.mini-browser .site { padding: 10px; }
.mini-browser .site .hero-block { height: 34px; border-radius: 6px; background: linear-gradient(120deg, #1b2740, #35507e); margin-bottom: 7px; }
.mini-browser .site .row { display: flex; gap: 5px; }
.mini-browser .site .row i { flex: 1; height: 20px; border-radius: 5px; background: #ececf0; }
.extract-arrow { font-size: 18px; color: var(--ink-mute); flex-shrink: 0; }
.brand-kit { display: flex; flex-direction: column; gap: 6px; }
.brand-kit span {
  background: #fff; border-radius: 999px; padding: 5px 12px; font-size: 11.5px;
  font-weight: 700; color: var(--ink-soft); box-shadow: var(--shadow); white-space: nowrap;
}
.brand-kit span b { color: var(--green); margin-right: 4px; }

/* visual 2: mini phone, app ready */
.mini-phone {
  width: 96px; border-radius: 20px; background: #0c0c0e; padding: 5px;
  box-shadow: var(--shadow-deep); flex-shrink: 0;
}
.mini-phone .scr {
  border-radius: 16px; background: #fff; height: 168px; overflow: hidden;
  display: flex; flex-direction: column; font-size: 7px;
}
.mini-phone .scr .hd { background: #1b2740; color: #fff; padding: 14px 8px 8px; font-weight: 800; font-size: 8px; }
.mini-phone .scr .bd { padding: 6px; display: flex; flex-direction: column; gap: 5px; background: #f4f4f6; flex: 1; }
.mini-phone .scr .bd i { background: #fff; border-radius: 6px; height: 22px; box-shadow: 0 1px 2px rgba(0,0,0,0.06); }
.ready-badge {
  background: #fff; border-radius: 999px; padding: 9px 16px; font-size: 13px; font-weight: 800;
  box-shadow: var(--shadow-deep); color: var(--ink); display: flex; align-items: center; gap: 7px;
}
.ready-badge b { color: var(--green); font-size: 15px; }

/* visual 3: push lands, bookings follow */
.dstep-stack { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 250px; }
.mini-push {
  background: rgba(255,255,255,0.9); border-radius: 13px; padding: 10px 12px;
  box-shadow: var(--shadow-deep); display: flex; gap: 9px; align-items: center;
}
.mini-push img { width: 26px; height: 26px; border-radius: 6px; }
.mini-push .t { font-size: 11.5px; font-weight: 800; }
.mini-push .b { font-size: 10.5px; color: var(--ink-soft); }
.stat-chip {
  background: var(--navy); color: #fff; border-radius: 999px; padding: 7px 14px;
  font-size: 12px; font-weight: 700; align-self: flex-start;
  display: flex; gap: 7px; align-items: center;
}
.stat-chip b { color: #8fd6a4; }

/* benefits band */
.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  background: var(--surface); border-radius: var(--radius); padding: 26px 28px;
  box-shadow: var(--shadow); margin-top: 24px; border: 1px solid rgba(0,0,0,0.02);
}
@media (max-width: 940px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits { grid-template-columns: 1fr; } }
.benefit { display: flex; gap: 12px; align-items: flex-start; }
.benefit .bicon {
  width: 40px; height: 40px; border-radius: 12px; background: #eef3fd; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.benefit h4 { font-size: 14.5px; font-weight: 800; margin-bottom: 2px; }
.benefit p { font-size: 13px; color: var(--ink-soft); }

/* ---------- Night timeline (Tommy component, light) ---------- */
.night {
  background: var(--surface); border-radius: var(--radius-lg); padding: 56px 40px;
  margin-top: 44px; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.02);
}
@media (max-width: 620px) { .night { padding: 36px 22px; } }
.night h3 { font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; letter-spacing: -0.02em; }
.night .sub { color: var(--ink-soft); margin-top: 8px; font-size: 15.5px; max-width: 520px; }
.timeline { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.tl-item {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 16px; padding: 16px 20px;
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
}
.tl-time { font-variant-numeric: tabular-nums; font-size: 13px; color: var(--ink-mute); font-weight: 600; min-width: 74px; }
.tl-what { font-weight: 600; font-size: 15px; }
.tl-result { color: #1f9d55; font-size: 14px; width: 100%; padding-left: 90px; font-weight: 600; }
@media (max-width: 620px) { .tl-result { padding-left: 0; } }

/* ---------- Push notification demos ---------- */
.pushes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 760px) { .pushes { grid-template-columns: 1fr; } }
.push-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border-radius: 18px; padding: 14px 16px;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.03);
  display: flex; gap: 12px; align-items: flex-start;
}
.push-card img { width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0; }
.push-card .from { font-size: 12px; color: var(--ink-mute); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.push-card .title { font-weight: 700; font-size: 14.5px; margin-top: 1px; }
.push-card .body { font-size: 13.5px; color: var(--ink-soft); margin-top: 1px; }
.push-wall { background: linear-gradient(160deg, #e8ecf4, #f2f0ea); border-radius: var(--radius-lg); padding: 40px; margin-top: 44px; }
@media (max-width: 620px) { .push-wall { padding: 22px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 44px auto 0; }
.faq details {
  background: var(--surface); border-radius: 16px; padding: 20px 24px;
  margin-bottom: 12px; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.02);
}
.faq summary { font-weight: 700; font-size: 16px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; color: var(--ink-mute); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 12px; color: var(--ink-soft); font-size: 15px; }

/* ---------- Final CTA ---------- */
.final {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 70px 40px; text-align: center; box-shadow: var(--shadow);
}
.final h2 { margin: 0 auto 14px; }
.final .lede { margin-bottom: 30px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); margin-top: 84px; padding: 50px 0 60px; }
.foot { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-brand { max-width: 300px; }
.foot-brand .brandline { display: flex; align-items: center; gap: 10px; font-weight: 700; margin-bottom: 10px; }
.foot-brand img { width: 26px; height: 26px; border-radius: 7px; }
.foot-brand p { color: var(--ink-mute); font-size: 13.5px; }
.foot-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-mute); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--ink-soft); font-size: 14.5px; margin-bottom: 10px; }
.foot-col a:hover { color: var(--ink); }
.legal-note { margin-top: 40px; font-size: 12.5px; color: var(--ink-mute); }

/* ---------- Legal pages ---------- */
.doc { max-width: 760px; margin: 0 auto; padding: 70px 24px 40px; }
.doc h1 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 44px); letter-spacing: -0.02em; font-weight: 800; margin-bottom: 8px; }
.doc .updated { color: var(--ink-mute); font-size: 14px; margin-bottom: 36px; }
.doc h2 { font-size: 22px; font-weight: 700; margin: 38px 0 12px; letter-spacing: -0.01em; }
.doc h3 { font-size: 17px; font-weight: 700; margin: 24px 0 8px; }
.doc p, .doc li { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 12px; }
.doc ul { padding-left: 22px; margin-bottom: 12px; }
.doc li { margin-bottom: 8px; }
.doc .card {
  background: var(--surface); border-radius: var(--radius); padding: 24px 28px;
  box-shadow: var(--shadow); margin: 20px 0;
}
.doc table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14.5px; }
.doc th { text-align: left; padding: 10px 12px; border-bottom: 2px solid var(--line); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-mute); }
.doc td { padding: 10px 12px; border-bottom: 1px solid var(--line); color: var(--ink-soft); vertical-align: top; }
