/* Rent My Car Out — shared visual system. Light marketing canvas, Turo-like feel, independent. */
:root {
  --bg: #F7F7F8;
  --bg-2: #FFFFFF;
  --bg-3: #F0F0F2;
  --ink: #121214;
  --muted: #5C5C66;
  --faint: #8A8A93;
  --accent: #593BFB;
  --accent-hover: #4A2FD6;
  --teal: #5CE0B8;
  --paper: #FFFFFF;
  --rule: #E8E8EC;
  --good: #5CE0B8;
  --bad: #C23B3B;
  --input: #FFFFFF;
  --shadow: 0 8px 24px rgba(18, 18, 20, .06);
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 12px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.52;
  min-height: 100vh;
  font-weight: 400;
}
a { color: var(--accent); text-decoration-color: rgba(89, 59, 251, .35); }
a:hover { color: var(--accent-hover); }
.wrap { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0 16px; border-bottom: 1px solid var(--rule); margin-bottom: 36px;
  gap: 16px; position: relative; z-index: 20;
}
.wordmark {
  font-family: var(--sans);
  font-size: 18px; font-weight: 800; letter-spacing: -.03em; color: var(--ink);
  text-decoration: none; white-space: nowrap;
}
a.wordmark:hover { color: var(--ink); }
.wordmark span { color: var(--ink); }
nav {
  display: flex; flex-wrap: wrap; gap: 12px 18px;
  font-size: 15px; font-weight: 500; letter-spacing: 0; text-transform: none;
  color: var(--muted);
}
nav a { color: inherit; text-decoration: none; }
nav a:hover { color: var(--ink); }
nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }
.kicker {
  font-size: 13px; font-weight: 500; letter-spacing: 0; text-transform: none;
  color: var(--muted); margin: 0 0 10px;
}
h1 {
  font-family: var(--sans);
  font-weight: 800; font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05; letter-spacing: -.035em; margin: 0 0 16px;
  color: var(--ink);
}
.lede, .answer-first { max-width: 40rem; color: var(--muted); font-size: 17px; line-height: 1.55; margin: 0 0 12px; }
.asof {
  display: block; border: 0; color: var(--muted);
  font-size: 14px; font-weight: 400; letter-spacing: 0; text-transform: none;
  padding: 0; margin: 0 0 28px; max-width: 42rem; line-height: 1.5;
}
.calc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--bg-2); border: 1px solid var(--rule); border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden;
}
.inputs, .outputs { padding: 28px; }
.outputs { background: var(--bg-3); border-left: 1px solid var(--rule); }
fieldset { border: 0; margin: 0 0 18px; padding: 0; }
legend, .lbl {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 0; text-transform: none;
  color: var(--muted); margin-bottom: 6px;
}
label.field { display: block; margin-bottom: 14px; }
input[type="number"], select {
  width: 100%; background: var(--input); color: var(--ink);
  border: 1px solid var(--rule); border-left: 3px solid var(--accent);
  border-radius: 10px; padding: 10px 12px; font: inherit; font-variant-numeric: tabular-nums;
}
input[type="number"]:focus, select:focus {
  outline: none; border-color: var(--accent);
}
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mode {
  display: flex; gap: 8px; margin-bottom: 12px;
}
.mode button {
  flex: 1; background: var(--bg-3); color: var(--muted); border: 1px solid var(--rule);
  padding: 8px 12px; font: inherit; font-size: 14px; font-weight: 600;
  letter-spacing: 0; text-transform: none; cursor: pointer; border-radius: 999px;
}
.mode button[aria-pressed="true"] {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.mode.plans {
  flex-wrap: wrap;
}
.mode.plans button {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; min-width: 0; min-height: 52px; padding: 10px 8px;
  border-radius: 14px; line-height: 1.2; white-space: normal; text-align: center;
}
.mode.plans .plan-pct {
  font-size: 16px; font-weight: 800; font-variant-numeric: tabular-nums;
}
.mode.plans .plan-name {
  font-size: 11px; font-weight: 600;
}
#planHint { margin-top: 8px; margin-bottom: 14px; }
@media (max-width: 520px) {
  .mode.plans { flex-direction: column; }
  .mode.plans button { min-height: 48px; }
}
.hero-num {
  font-family: var(--sans);
  font-weight: 800; font-size: clamp(40px, 6vw, 56px); line-height: 1; margin: 4px 0 4px;
  letter-spacing: -.03em; font-variant-numeric: tabular-nums; color: var(--accent);
}
.hero-num.neg { color: var(--bad); }
.hero-num.pos { color: var(--good); }
.hero-cap { color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: 0; text-transform: none; margin-bottom: 22px; }
.stat {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--rule); padding: 12px 0;
}
.stat b { font-variant-numeric: tabular-nums; font-size: 20px; font-weight: 700; color: var(--ink); }
.note { color: var(--faint); font-size: 13px; margin-top: 16px; }
.warn {
  margin-top: 16px; padding: 12px 14px; border: 1px solid #F0C9C9; background: #FDF4F4;
  color: var(--bad); font-size: 14px; display: none; border-radius: 12px;
}
.warn.show { display: block; }
section { padding: 72px 0; }
h2 {
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.03em;
  margin: 0 0 20px; color: var(--ink);
}
h3 {
  font-family: var(--sans);
  font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 10px; color: var(--ink);
}
.prose { color: var(--muted); max-width: 42rem; }
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { margin: 0 0 16px; padding-left: 1.2rem; }
.prose li { margin: 0 0 8px; }
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); padding: 16px 0; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--ink); }
.faq p { color: var(--muted); margin: 10px 0 0; max-width: 42rem; }
#buy, .paper-band {
  background: var(--bg-3); color: var(--ink);
  margin: 0 calc(50% - 50vw); padding: 72px 0;
}
#buy .kicker, .paper-band .kicker { color: var(--muted); }
#buy h2, .paper-band h2 { color: var(--ink); }
#buy p, #buy li, .paper-band p, .paper-band li { color: var(--muted); }
.buy-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: start; }
.price-card {
  background: var(--bg-2); color: var(--ink); padding: 28px;
  border: 1px solid var(--rule); border-radius: 16px; box-shadow: var(--shadow);
}
.price-card .amt {
  font-family: var(--sans); font-weight: 800; font-size: 56px; line-height: 1;
  letter-spacing: -.03em; color: var(--accent);
}
.price-card .amt small { font-size: 16px; font-weight: 600; color: var(--muted); letter-spacing: 0; text-transform: none; margin-left: 6px; }
.buy-btn {
  display: block; text-align: center; margin-top: 18px; padding: 14px 20px;
  background: var(--ink); color: #fff; text-decoration: none; font-weight: 700;
  letter-spacing: 0; text-transform: none; font-size: 15px; border-radius: 999px;
}
.buy-btn:hover { background: #000; color: #fff; }
.buy-btn.ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
  margin-top: 10px;
}
.buy-btn.ghost:hover { background: var(--bg-3); color: #000; }
.fine { font-size: 12px; color: var(--faint) !important; margin-top: 10px; }
footer {
  border-top: 1px solid var(--rule); padding: 28px 0 48px;
  color: var(--faint); font-size: 13px;
}
footer p { max-width: 44rem; }

/* Guides strip + product cards */
#guides { padding-top: 56px; }
.guides {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin: 48px 0 0;
}
a.guide {
  background: var(--bg-2); border: 1px solid var(--rule); border-radius: 14px;
  padding: 22px 24px; text-decoration: none; color: inherit; display: block;
  box-shadow: var(--shadow);
}
a.guide:hover { border-color: #D8D8DE; color: inherit; }
a.guide h3 { margin: 0 0 8px; }
a.guide p { margin: 0; color: var(--muted); font-size: 15px; }
a.guide .arrow { color: var(--accent); font-size: 13px; font-weight: 600; letter-spacing: 0; text-transform: none; margin-top: 12px; display: block; }

.policy {
  background: var(--bg-2); border: 1px solid var(--rule); border-left: 3px solid var(--accent);
  border-radius: 14px; padding: 24px 26px; margin: 0 0 36px; box-shadow: var(--shadow);
}
.policy h2 { font-size: 26px; margin-bottom: 12px; }
.policy p, .policy li { color: var(--muted); }
.policy ul { margin: 0; padding-left: 1.15rem; }
.policy li { margin: 0 0 10px; }
.policy .cite { color: var(--faint); font-size: 13px; margin-top: 14px; }

.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 36px; }
.card {
  background: var(--bg-2); border: 1px solid var(--rule); border-radius: 14px;
  padding: 26px 26px 22px; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.card-img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #F7F7F8; border-radius: 10px; margin: 0 0 14px; }
.card .meta { font-size: 13px; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--muted); margin: 0 0 8px; }
.card p { color: var(--muted); margin: 0 0 12px; }
.card ul { margin: 0 0 16px; padding-left: 1.15rem; color: var(--muted); }
.card li { margin: 0 0 8px; }
.card .watch { border-top: 1px solid var(--rule); padding-top: 12px; color: var(--bad); font-size: 14px; margin: 0 0 8px; }
.card .actions { margin-top: auto; }
.card.wide { grid-column: 1 / -1; }

.dl { display: grid; grid-template-columns: 9.5rem 1fr; gap: 6px 14px; margin: 0 0 16px; font-size: 15px; }
.dl dt { color: var(--faint); font-size: 12px; font-weight: 600; letter-spacing: 0; text-transform: none; padding-top: 4px; }
.dl dd { margin: 0; color: var(--muted); }

.table-wrap { overflow-x: auto; border: 1px solid var(--rule); border-radius: 14px; margin: 0 0 16px; background: var(--bg-2); }
table.compare {
  width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px;
}
table.compare th, table.compare td {
  padding: 12px 14px; border-bottom: 1px solid var(--rule);
  text-align: left; vertical-align: top;
}
table.compare th {
  font-size: 12px; font-weight: 600; letter-spacing: 0; text-transform: none;
  color: var(--muted); background: var(--bg-3);
}
table.compare td { color: var(--muted); }
table.compare th:first-child, table.compare td:first-child { color: var(--ink); font-weight: 600; white-space: nowrap; }
table.compare tr:last-child td { border-bottom: 0; }
table.compare a.tiny {
  display: inline-block; margin-top: 6px; font-size: 13px; font-weight: 600;
  letter-spacing: 0; text-transform: none; text-decoration: none; color: var(--accent);
}

.callout {
  background: #F7F3FF; border: 1px solid #E4DCFC; padding: 18px 20px; margin: 0 0 36px;
  color: var(--ink); border-radius: 14px;
}
.callout strong { color: var(--ink); }

.coming { border-top: 1px solid var(--rule); padding-top: 28px; }
.coming ul { columns: 2; gap: 24px; color: var(--muted); padding-left: 1.15rem; }
.coming li { margin: 0 0 8px; }

@media (max-width: 960px) {
  header { margin-bottom: 24px; }
}
@media (max-width: 800px) {
  .calc, .buy-grid, .row2, .guides, .cards { grid-template-columns: 1fr; }
  .outputs { border-left: 0; border-top: 1px solid var(--rule); }
  section { padding: 48px 0; }
  #buy, .paper-band { padding: 48px 0; }
  .dl { grid-template-columns: 1fr; gap: 2px; }
  .dl dt { padding-top: 10px; }
  .coming ul { columns: 1; }
}

/* Expanded nav + article pages */
nav { gap: 12px 16px; }
.guides.trio { grid-template-columns: repeat(3, 1fr); }
.who-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 28px;
}
.article-sec { padding: 36px 0 4px; }
.article-sec + .article-sec { padding-top: 20px; }
.next {
  background: var(--bg-2); border: 1px solid var(--rule); border-left: 3px solid var(--accent);
  border-radius: 14px; padding: 22px 26px; margin: 28px 0 8px; box-shadow: var(--shadow);
}
.next h2 { font-size: 26px; margin-bottom: 10px; }
.next p, .next li { color: var(--muted); }
.next p { margin: 0 0 10px; }
.next ul { margin: 0; padding-left: 1.15rem; }
.path {
  display: flex; flex-wrap: wrap; gap: 6px 0; font-size: 13px;
  color: var(--faint); margin: 0 0 28px; max-width: 46rem;
}
.path a { color: var(--accent); text-decoration: none; }
.path span { margin: 0 8px; color: var(--rule); }
.src { color: var(--faint); font-size: 13px; margin: 12px 0 0; }
ol.plain { margin: 0 0 16px; padding-left: 1.2rem; color: var(--muted); }
ol.plain li { margin: 0 0 10px; }
@media (max-width: 960px) {
  .guides.trio { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .who-grid, .guides.trio { grid-template-columns: 1fr; }
}



/* Starter Kit checkout */
.kit-ov[hidden] { display: none !important; }
.kit-ov {
  position: fixed; inset: 0; z-index: 999999;
  display: flex; align-items: center; justify-content: center;
  padding: 28px 16px;
}
.kit-ov-back {
  position: absolute; inset: 0;
  background: rgba(18, 18, 20, .55);
}
.kit-ov-card {
  position: relative;
  width: min(400px, 100%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(18, 18, 20, .28);
  padding: 28px 24px 22px;
}
.kit-ov-x {
  position: absolute; top: 12px; right: 12px;
  width: 40px; height: 40px;
  border: 0;
  background: #121214;
  color: #fff;
  font-size: 28px; line-height: 1; font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.kit-ov-x:hover { background: #000; }
.kit-ov-kicker {
  margin: 0 0 8px; font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--muted);
}
.kit-ov-title {
  margin: 0 36px 12px 0; font-size: 22px; line-height: 1.25; font-weight: 800;
}
.kit-ov-price {
  margin: 0 0 8px; font-size: 40px; font-weight: 800; letter-spacing: -.03em;
  color: var(--ink);
}
.kit-ov-note { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.kit-ov-pay {
  display: block; text-align: center;
  background: #121214; color: #fff !important;
  text-decoration: none; font-weight: 700; font-size: 15px;
  padding: 14px 18px; border-radius: 999px;
}
.kit-ov-pay:hover { background: #000; color: #fff !important; }
.kit-ov-fine {
  margin: 12px 0 0; font-size: 12px; color: var(--faint); line-height: 1.4;
}


/* Slim header + Guides dropdown / mobile drawer — 20260820-nav */
.site-nav {
  display: flex; align-items: center; flex-wrap: nowrap;
  gap: 6px 18px;
  font-size: 15px; font-weight: 500; color: var(--muted);
}
.site-nav a { color: inherit; text-decoration: none; white-space: nowrap; }
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }
.nav-guides-btn {
  appearance: none; background: none; border: 0; padding: 0;
  font: inherit; font-weight: 500; color: var(--muted); cursor: pointer;
  letter-spacing: 0; text-transform: none;
}
.nav-guides-btn:hover,
.nav-guides-btn[aria-expanded="true"],
.nav-guides-btn[aria-current="page"] { color: var(--ink); font-weight: 700; }
a.nav-kit {
  background: var(--ink); color: #fff !important;
  padding: 8px 14px; border-radius: 999px;
  font-weight: 700; font-size: 14px; text-decoration: none; white-space: nowrap;
}
a.nav-kit:hover { background: #000; color: #fff !important; }
.nav-burger {
  display: none;
  width: 42px; height: 42px; padding: 0;
  border: 1px solid var(--rule); border-radius: 12px;
  background: var(--bg-2); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-burger-lines {
  display: flex; flex-direction: column; gap: 5px; width: 18px;
}
.nav-burger-lines span {
  display: block; height: 2px; background: var(--ink); border-radius: 2px;
}
.guides-menu[hidden] { display: none !important; }
.guides-menu-back { background: rgba(18, 18, 20, .45); }
.guides-menu-panel { background: #fff; }
.guides-menu-top { display: none; }
.guides-menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 22px;
}
.guides-menu-col h3 {
  font-size: 12px; font-weight: 700; letter-spacing: 0; text-transform: none;
  color: var(--ink); margin: 0 0 8px;
}
.guides-menu-col a {
  display: block; color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500; padding: 4px 0; line-height: 1.35;
}
.guides-menu-col a:hover { color: var(--accent); }
.guides-menu-all {
  grid-column: 1 / -1; padding-top: 10px;
  border-top: 1px solid var(--rule);
}
.guides-menu-all a {
  color: var(--accent); font-weight: 700; text-decoration: none; font-size: 15px;
}
.nav-menu-x { z-index: 2; }
.convert { padding: 32px 0 8px; }
.convert-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
a.convert-card {
  background: var(--bg-2); border: 1px solid var(--rule); border-radius: 14px;
  padding: 22px 24px; text-decoration: none; color: inherit;
  display: block; box-shadow: var(--shadow);
}
a.convert-card:hover { border-color: #D8D8DE; color: inherit; }
a.convert-card h2 { font-size: 22px; margin: 0 0 8px; }
a.convert-card p { margin: 0; color: var(--muted); font-size: 15px; }
a.convert-card .arrow {
  color: var(--accent); font-size: 13px; font-weight: 600;
  margin-top: 12px; display: block;
}
.all-guides { margin: 22px 0 0; font-weight: 700; }
footer .foot-row { max-width: 46rem; }
@media (min-width: 801px) {
  .guides-menu:not([hidden]) { display: block; }
  .guides-menu-back {
    position: fixed; inset: 0; z-index: 1;
  }
  .guides-menu-panel {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    z-index: 2;
    border: 1px solid var(--rule); border-radius: 16px;
    box-shadow: 0 16px 40px rgba(18, 18, 20, .12);
    padding: 28px 28px 22px;
  }
}
@media (max-width: 800px) {
  header {
    flex-direction: row; align-items: center; margin-bottom: 24px;
  }
  .site-nav { display: none; }
  .nav-burger { display: flex; }
  html.nav-open { overflow: hidden; }
  .guides-menu:not([hidden]) {
    display: block; position: fixed; inset: 0; z-index: 80000;
  }
  .guides-menu-back { position: absolute; inset: 0; }
  .guides-menu-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(420px, 100%);
    overflow: auto;
    padding: 64px 22px 36px;
    box-shadow: -12px 0 40px rgba(18, 18, 20, .18);
  }
  .guides-menu-top {
    display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px;
    margin: 0 48px 20px 0;
  }
  .guides-menu-top a { color: var(--ink); text-decoration: none; font-weight: 600; }
  .guides-menu-grid { grid-template-columns: 1fr 1fr; }
  .convert-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .guides-menu-grid { grid-template-columns: 1fr; }
}
