:root {
  --bg: #fff8de;
  --bg2: #f3f7ff;
  --panel: #ffffff;
  --ink: #0f172a;
  --muted: rgba(15, 23, 42, 0.72);
  --line: rgba(15, 23, 42, 0.10);
  --yellow: #facc15;
  --yellow2: #fde047;
  --orange: #fb7185;
  --blue: #60a5fa;
  --green: #34d399;
  --shadow: 0 20px 60px rgba(2, 6, 23, 0.10);
  --radius: 22px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(250, 204, 21, 0.55), transparent 60%),
    radial-gradient(900px 520px at 100% 10%, rgba(96, 165, 250, 0.35), transparent 55%),
    radial-gradient(700px 520px at 10% 105%, rgba(52, 211, 153, 0.22), transparent 55%),
    linear-gradient(180deg, #ffffff, var(--bg2));
}

a { color: inherit; text-decoration: none; }

.container { width: min(1120px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Increase logo visually without changing header layout height */
.brand-mark {
  height: 76px;
  width: auto;
  display: block;
  transform: scale(1.75);
  transform-origin: left center;
}
.brand-name { font-weight: 900; }

.nav-cta { display: flex; gap: 0.55rem; align-items: center; }

.site-nav {
  display: flex;
  gap: 1.1rem;
  color: rgba(15, 23, 42, 0.75);
}

.site-nav a {
  padding: 0.4rem 0.5rem;
  border-radius: 999px;
}

.site-nav a:hover {
  background: rgba(250, 204, 21, 0.22);
  color: rgba(15, 23, 42, 0.95);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(2, 6, 23, 0.10); }

.btn-primary {
  background: linear-gradient(135deg, var(--yellow2), var(--yellow));
  color: #111827;
  border-color: rgba(202, 138, 4, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--line);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.hero {
  padding: 4.6rem 0 2.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.badge-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.86rem;
}

.badge-soft {
  background: rgba(96, 165, 250, 0.14);
  border-color: rgba(96, 165, 250, 0.25);
}

.hero h1 {
  margin: 0.95rem 0 0.65rem;
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.headline-accent {
  display: inline-block;
  position: relative;
  padding: 0 0.05em;
}

.headline-accent::after {
  content: "";
  position: absolute;
  left: -0.1em;
  right: -0.1em;
  bottom: 0.05em;
  height: 0.38em;
  background: rgba(250, 204, 21, 0.55);
  border-radius: 999px;
  z-index: -1;
  transform: rotate(-2deg);
}

.lede {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.06rem;
}

.hero-cta {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.mini-stats {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.mini-stat {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.06);
}

.mini-stat__top { display: block; font-weight: 900; font-size: 1.25rem; }
.mini-stat__bottom { display: block; color: var(--muted); font-weight: 600; font-size: 0.92rem; margin-top: 0.2rem; }

.hero-visual { display: grid; gap: 0.9rem; }

/* Hero image (no frame) */
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bubble-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.06);
  font-weight: 900;
}

.bubble:hover { transform: translateY(-1px); }
.bubble__icon { font-weight: 900; }
.bubble__text { font-weight: 900; }

.section { padding: 4.4rem 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}

.section-head p { margin: 0.2rem 0 0; color: var(--muted); font-weight: 600; }

.steps {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.06);
  position: relative;
}

.step__num {
  font-weight: 900;
  color: rgba(15, 23, 42, 0.45);
  letter-spacing: 0.06em;
}

.step h3 { margin: 0.5rem 0 0.4rem; letter-spacing: -0.02em; }
.step p { margin: 0; color: var(--muted); font-weight: 600; }

.section-pop {
  background:
    radial-gradient(900px 420px at 10% 40%, rgba(250, 204, 21, 0.28), transparent 60%),
    radial-gradient(900px 520px at 90% 45%, rgba(251, 113, 133, 0.18), transparent 60%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.vibe-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.vibe {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.25rem;
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.08);
  position: relative;
  overflow: hidden;
}

.vibe::before {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.9;
}

.vibe.v1::before { background: rgba(96, 165, 250, 0.20); }
.vibe.v2::before { background: rgba(250, 204, 21, 0.28); }
.vibe.v3::before { background: rgba(52, 211, 153, 0.18); }

.vibe__tag {
  display: inline-flex;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.26);
  border: 1px solid rgba(202, 138, 4, 0.18);
  font-weight: 900;
  font-size: 0.84rem;
}

.vibe h3 { margin: 0.55rem 0 0.35rem; font-size: 1.25rem; letter-spacing: -0.02em; }
.vibe p { margin: 0; color: var(--muted); font-weight: 600; }

.ticks {
  margin: 0.95rem 0 0;
  padding-left: 1.1rem;
  color: rgba(15, 23, 42, 0.85);
  line-height: 1.9;
  font-weight: 700;
}

.driver-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.driver-panel h2 { margin: 0; letter-spacing: -0.03em; }
.driver-panel p { margin: 0.55rem 0 0; color: var(--muted); font-weight: 600; }

.driver-actions { margin-top: 1rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }

.driver-perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-content: start;
}

.perk {
  border: 1px dashed rgba(15, 23, 42, 0.22);
  border-radius: var(--radius);
  padding: 0.9rem;
  background: rgba(250, 204, 21, 0.10);
}

.perk__title { display: block; font-weight: 900; }
.perk__desc { display: block; margin-top: 0.2rem; color: var(--muted); font-weight: 700; font-size: 0.92rem; }

.section-soft {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.safety-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.tile {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.06);
}

.tile h3 { margin: 0 0 0.35rem; letter-spacing: -0.02em; }
.tile p { margin: 0; color: var(--muted); font-weight: 600; }

.faq { margin-top: 1.2rem; display: grid; gap: 0.75rem; }

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.1rem 0.95rem;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.06);
}

.faq-item summary {
  cursor: pointer;
  padding: 0.9rem 0;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0 0 0.9rem; color: var(--muted); font-weight: 650; }

.download {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.35), rgba(96, 165, 250, 0.16));
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: calc(var(--radius) + 10px);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.download__copy h2 { margin: 0; letter-spacing: -0.03em; }
.download__copy p { margin: 0.35rem 0 0; color: var(--muted); font-weight: 650; }

.download__actions { display: flex; gap: 0.65rem; flex-wrap: wrap; justify-content: flex-end; }

.site-footer {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand--footer .brand-mark { height: 30px; }
.footer-note { margin: 0.45rem 0 0; color: var(--muted); font-weight: 650; }

.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; color: rgba(15, 23, 42, 0.72); font-weight: 700; }
.footer-links a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .driver-panel { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: 1fr; }
  .vibe-grid { grid-template-columns: 1fr; }
  .mini-stats { grid-template-columns: 1fr; }
  .bubble-grid { grid-template-columns: 1fr; }
  .download { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-block; }
  .desktop-cta { display: none; }

  .site-nav {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    padding: 0.9rem 4vw;
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .bubble { transition: none; }
  .btn:hover, .bubble:hover { transform: none; box-shadow: none; }
}
