:root {
  --honda-red: #e60012;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --bg: #f7f7f7;
  --card: #ffffff;
  --line: #e6e6e6;
  --radius: 12px;
  --max: 720px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: var(--honda-red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.25rem;
}

.brand-mark {
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--honda-red);
  font-size: 1.1rem;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--honda-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  line-height: 1.2;
  font-weight: 700;
}

.lead {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--honda-red);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.store-btn:hover {
  text-decoration: none;
  filter: brightness(0.95);
}

.store-btn--secondary {
  background: var(--ink);
}

.open-app-wrap {
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.open-app {
  font-weight: 600;
}

.hint {
  color: var(--muted);
  font-size: 0.85rem;
}

.features {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.features li {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.features li:last-child {
  border-bottom: none;
}

.footnote {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0.35rem 0;
}
