/* =========================================================
   Hitch UI System (CSS-only theme toggle)
   Default: Black mode
   Toggle ON: White mode
   ========================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial; }
a { text-decoration: none; color: inherit; }
button, input { font-family: inherit; }

/* ---------- Theme toggle input (hidden) ---------- */
.theme-toggle{
  position: absolute;
  left: -9999px;
}

/* ---------- Theme variables live on .app ---------- */
.app{
  /* Dark (default) */
  --bg: #0b0f17;
  --surface: rgba(255,255,255,.04);
  --card: rgba(255,255,255,.05);
  --text: #e9ecf3;
  --muted: rgba(233,236,243,.70);
  --line: rgba(255,255,255,.10);

  /* Couple-friendly accent (soft romantic, not flashy) */
  --accent: #7c3aed;   /* violet */
  --accent2:#fb7185;   /* rose */
  --accent-soft: rgba(124,58,237,.18);

  --ok: #10b981;
  --warn:#f59e0b;

  --radius: 16px;
  --shadow: 0 14px 35px rgba(0,0,0,.25);

  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ---------- White mode overrides when toggle checked ---------- */
.theme-toggle:checked ~ .app{
  --bg: #ffffff;
  --surface: rgba(17,24,39,.04);
  --card: rgba(17,24,39,.03);
  --text: #0f172a;
  --muted: rgba(15,23,42,.70);
  --line: rgba(15,23,42,.12);

  --accent: #6d28d9;
  --accent2:#e11d48; /* deeper rose */
  --accent-soft: rgba(109,40,217,.10);

  --shadow: 0 14px 35px rgba(15,23,42,.10);
}

/* ---------- Global helpers ---------- */
.container{ max-width: 1120px; margin: 0 auto; padding: 18px; }
.muted{ color: var(--muted); }
.sub{ margin: 0; color: var(--muted); font-size: 14px; }
.small{ font-size: 13px; }
.big{ font-size: 28px; font-weight: 900; margin: 0; }
.accent{ color: var(--accent); }

.row{ display:flex; align-items:center; gap: 10px; }
.row.space{ justify-content: space-between; }
.row.wrap{ flex-wrap: wrap; }

.hidden{ display:none; }

/* ---------- Topbar ---------- */
.topbar{
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand-link{ display:flex; align-items:center; gap:10px; }
.logo{
  width: 34px; height: 34px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  font-weight: 900;
}
.brand-name{ font-weight: 800; letter-spacing: .2px; }

.topnav{ display:flex; align-items:center; gap: 14px; }
.topnav a{ color: var(--muted); font-size: 14px; }
.topnav a:hover{ color: var(--text); }

/* ---------- Mode Switch (CSS-only) ---------- */
.mode{ display:flex; align-items:center; gap:10px; cursor:pointer; user-select:none; }
.mode-text{ color: var(--muted); font-size: 13px; }

.mode-pill{
  position: relative;
  width: 128px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  display:flex; align-items:center; justify-content: space-between;
  padding: 0 12px;
}

.mode-opt{ font-size: 12px; color: var(--muted); z-index: 2; }
.mode-knob{
  position:absolute; top: 4px; left: 4px;
  width: 60px; height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}

/* Toggle ON => move knob to "White" */
.theme-toggle:checked ~ .app .mode-knob{
  transform: translateX(60px);
}
/* Label emphasis */
.theme-toggle:not(:checked) ~ .app .mode-pill .mode-opt:first-child{ color: var(--text); }
.theme-toggle:checked ~ .app .mode-pill .mode-opt:last-child{ color: var(--text); }

/* ---------- Buttons ---------- */
.btn{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  display:inline-flex; align-items:center; justify-content:center;
}
.btn:hover{ filter: brightness(1.03); }
.btn.primary{
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.btn.ghost{
  background: transparent;
}
.btn.small{ padding: 8px 10px; border-radius: 10px; font-size: 13px; }
.btn:disabled{ opacity:.55; cursor:not-allowed; }

/* ---------- Chips / Pills ---------- */
.chip{
  display:inline-flex; align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 12px;
  color: var(--muted);
}
.chip-ok{ border-color: color-mix(in srgb, var(--ok) 40%, var(--line)); background: color-mix(in srgb, var(--ok) 12%, transparent); color: var(--text); }
.chip-warn{ border-color: color-mix(in srgb, var(--warn) 40%, var(--line)); background: color-mix(in srgb, var(--warn) 12%, transparent); color: var(--text); }

.pill{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 12px;
}

/* ---------- Cards / Layout ---------- */
.section{ margin: 36px 0; }
.section-head h2{ margin: 0 0 6px; font-size: 20px; }

.grid{ display:grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 14px; }
.grid.two{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card{
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.card-hero{
  grid-column: span 2;
  padding: 18px;
  background: linear-gradient(180deg, var(--accent-soft), var(--card));
}
.card-soft{ box-shadow: none; }

.progress{
  flex: 1;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}
.progress-bar{
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

/* ---------- Forms ---------- */
.form{
  max-width: 520px;
  margin: 20px auto;
}
.label{ display:block; margin: 10px 0 6px; font-size: 13px; color: var(--muted); }
.input{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}
.checkbox{ display:flex; gap:10px; align-items:flex-start; margin: 12px 0; }
.checkbox input{ margin-top: 3px; }

.helper{ margin-top: 10px; font-size: 13px; color: var(--muted); }
.divider{ height:1px; background: var(--line); margin: 16px 0; }

/* ---------- Landing hero ---------- */
.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  padding: 18px 0 10px;
}
.hero h1{ margin: 10px 0; font-size: 34px; line-height: 1.15; }
.hero-cta{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

.mini-stats{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stat{
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow);
}
.stat-num{ font-size: 20px; font-weight: 900; }
.stat-label{ color: var(--muted); font-size: 13px; }

/* ---------- Mock preview ---------- */
.mock{
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mock-top{
  display:flex; align-items:center; gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.dot{ width: 9px; height: 9px; border-radius: 50%; background: color-mix(in srgb, var(--text) 18%, transparent); }
.mock-title{ margin-left: 6px; color: var(--muted); font-size: 13px; }
.mock-body{ padding: 12px; }
.tile{
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  background: var(--surface);
}

/* ---------- Steps ---------- */
.steps{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.step{
  display:flex; gap: 12px; align-items:flex-start;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}
.step-ico{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:grid; place-items:center;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

/* ---------- Demo block ---------- */
.demo{
  display:grid;
  grid-template-columns: 1fr .9fr;
  gap: 14px;
  align-items: stretch;
}
.demo-box{
  border: 1px dashed var(--line);
  border-radius: 16px;
  min-height: 220px;
  background: var(--surface);
  display:grid;
  place-items:center;
}
.footer{
  margin: 30px 0 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display:flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- App layout pages ---------- */
.page-head h2{ margin:0 0 6px; }

.app-shell{
  display:grid;
  grid-template-columns: 240px 1fr;
  gap: 14px;
}
.sidebar{
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}
.nav{ display:flex; flex-direction: column; gap: 6px; }
.nav-item{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--text);
}
.nav-item:hover{ background: var(--surface); border-color: var(--line); }
.nav-item.active{ background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 30%, var(--line)); }
.nav-item.muted{ color: var(--muted); }
.nav-divider{ height: 1px; background: var(--line); margin: 10px 0; }

.app-content{ display:flex; flex-direction: column; gap: 14px; }
.panel{
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.panel-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* ---------- Game shell ---------- */
.game-shell{ padding: 0; overflow: hidden; }
.game-hud{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.game-canvas{
  height: 300px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--accent) 25%, transparent), transparent 50%),
    radial-gradient(circle at 70% 70%, color-mix(in srgb, var(--accent2) 20%, transparent), transparent 55%),
    var(--surface);
}
.game-bar{
  display:flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.tab{
  flex: 1;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  cursor: pointer;
}
.tab.active{
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .demo{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .grid.three{ grid-template-columns: 1fr; }
  .app-shell{ grid-template-columns: 1fr; }
  .topnav{ display:none; }
}


/* ---------- Admin layout ---------- */
.admin-shell{
  display:grid;
  grid-template-columns: 260px 1fr;
  gap: 14px;
}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 12px;
  color: var(--muted);
}

.kpi{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.kpi .card{ padding: 16px; }
.kpi-num{ font-size: 26px; font-weight: 900; margin: 0; }
.kpi-label{ color: var(--muted); font-size: 13px; margin-top: 6px; }

.table{
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.table th, .table td{
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 13px;
}
.table th{ color: var(--muted); font-weight: 700; background: var(--surface); }
.table tr:last-child td{ border-bottom: none; }

@media (max-width: 980px){
  .admin-shell{ grid-template-columns: 1fr; }
  .kpi{ grid-template-columns: 1fr; }
}


.logo-img{ height: 44px; width:auto; max-width: 220px; display:block; }

.right-controls{ display:flex; align-items:center; gap: 12px; }
.admin-link{ white-space: nowrap; }

.brand-link:hover .logo-img{ transform: translateY(-1px); filter: drop-shadow(0 8px 18px rgba(0,0,0,.18)); transition: transform .18s ease, filter .18s ease; }


/* ================================
   Version 2 — Landing refresh (Paired-like feel)
   Scoped to: body.landing
================================== */

body.landing .topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}
body.landing .topbar{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}
body.landing .topnav{
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
body.landing .topnav a{
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  opacity: .88;
}
body.landing .topnav a:hover{ opacity: 1; }

body.landing .landing-hero{
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 18px;
  align-items: start;
}
body.landing h1{
  font-size: 44px;
  line-height: 1.05;
  margin: 10px 0 10px;
}
body.landing .sub{
  font-size: 16px;
  line-height: 1.6;
}
body.landing .trust-row{
  display:flex;
  align-items:center;
  gap: 10px;
}
body.landing .trust-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
}
body.landing .cta-row{
  display:flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
body.landing .mini-proof{
  display:flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
body.landing .mini-proof-item{
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px;
  padding: 10px 12px;
  min-width: 120px;
}
body.landing .mini-proof-num{ font-weight: 1000; font-size: 18px; }
body.landing .mini-proof-label{ color: var(--muted); font-size: 12px; margin-top: 2px; }

body.landing .hero-card{
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
}
body.landing .hero-card.ghost{
  margin-top: 12px;
  box-shadow: none;
}
body.landing .hero-card-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
body.landing .hero-card-actions{
  display:flex;
  gap: 10px;
  margin-top: 12px;
}

body.landing .section{
  margin-top: 32px;
}
body.landing .section-head{
  display:flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
body.landing .section-head h2{
  margin: 0;
  font-size: 26px;
}
body.landing .value-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
body.landing .value-card{
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
  padding: 14px;
}
body.landing .value-card h3{ margin: 0 0 8px; font-size: 16px; }

body.landing .steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
body.landing .step{
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
  padding: 14px;
  display:flex;
  gap: 10px;
}
body.landing .step-num{
  width: 34px; height: 34px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-weight: 1000;
}
body.landing .step-body h3{ margin: 0 0 6px; font-size: 16px; }

body.landing .callout{
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(240,16,96,.18), rgba(0,32,96,.18));
  border-radius: 20px;
  padding: 16px;
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

body.landing .demo-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
body.landing .demo-frame{
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
  padding: 16px;
  position: relative;
}
body.landing .demo-badge{
  position:absolute;
  top: 12px; right: 12px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
}

body.landing .reviews{
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 20px;
  padding: 18px 44px;
  overflow: hidden;
}
body.landing .review-track{
  min-height: 120px;
}
body.landing .review-card{
  display:none;
}
body.landing .review-card.is-active{
  display:block;
}
body.landing .quote{
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 12px;
}
body.landing .review-nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.15);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}
body.landing .review-nav.prev{ left: 10px; }
body.landing .review-nav.next{ right: 10px; }
body.landing .dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 10px;
}
body.landing .dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  opacity: .7;
}
body.landing .dot.is-active{
  background: var(--text);
  opacity: 1;
}

body.landing .final-cta{
  margin-top: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(0,32,96,.22), rgba(240,16,96,.20));
  border-radius: 24px;
  padding: 22px;
  text-align: center;
}
body.landing .final-cta h2{ margin: 0 0 8px; }

body.landing .reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
body.landing .reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 490px){
  body.landing .landing-hero{ grid-template-columns: 1fr; }
  body.landing h1{ font-size: 34px; }
  body.landing .value-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  body.landing .steps{ grid-template-columns: 1fr; }
  body.landing .demo-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 280px){
  body.landing .value-grid{ grid-template-columns: 1fr; }
  body.landing .topnav{ justify-self: start; }
  body.landing .reviews{ padding: 16px 38px; }
}


/* ---- Landing video block ---- */
body.landing .video-wrap{
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 20px;
  padding: 14px;
  box-shadow: var(--shadow);
}
body.landing .landing-video{
  width: 360px;
  height: auto;
  border-radius: 16px;
  display: block;
  align-items: center;
  background: #000;
}
body.landing .video-note{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  align-items: flex-start;
}
body.landing .video-note code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
}


/* --- Step 4A: Conversion Enhancements --- */
body.landing .mock-preview{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border-radius:22px;
  padding:14px;
  box-shadow:var(--shadow);
}
body.landing .mock-header{
  font-weight:900;
  font-size:14px;
  margin-bottom:10px;
}
body.landing .mock-body{
  display:grid;
  gap:10px;
}
body.landing .mock-card{
  border:1px solid var(--line);
  background:var(--surface);
  border-radius:16px;
  padding:12px;
}
body.landing .mock-card.ghost{
  opacity:.8;
}

body.landing .faq{
  border:1px solid var(--line);
  background:var(--surface);
  border-radius:18px;
  padding:14px;
}
body.landing .faq details{
  border-bottom:1px solid var(--line);
  padding:10px 0;
}
body.landing .faq details:last-child{
  border-bottom:none;
}
body.landing .faq summary{
  cursor:pointer;
  font-weight:700;
}


/* --- Reviews avatars --- */
body.landing .review-top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}
body.landing .review-avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: rgba(0,0,0,.2);
}
body.landing .review-author{
  font-weight: 900;
}


/* --- Benefit images on landing value cards --- */
body.landing .value-card{ overflow: hidden; }
body.landing .value-img{
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  display: block;
}
@media (max-width: 560px){
  body.landing .value-img{ height: 160px; }
}


/* --- Hero background image (fixed) --- */
body.landing .hero-bg{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
body.landing .hero-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(10,12,20,.55), rgba(10,12,20,.85));
  z-index:0;
}
body.landing .hero-bg > *{
  position: relative;
  z-index:1;
}


/* --- Hero split layout --- */
body.landing .hero-split{
  padding-top: 34px;
  padding-bottom: 24px;
}
body.landing .hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}
body.landing .hero-media{
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  transform: translateZ(0);
}
body.landing .hero-img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  will-change: transform;
}
body.landing .hero-caption{
  padding: 16px 16px 18px;
  background: linear-gradient(180deg, rgba(10,12,20,0), rgba(10,12,20,.65));
  position: absolute;
  inset: auto 0 0 0;
}
body.landing .hero-caption h1{
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}
body.landing .hero-copy{
  padding-top: 4px;
}
body.landing .hero-badges{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Mobile: stack, tighter crop */
@media (max-width: 900px){
  body.landing .hero-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  body.landing .hero-img{
    height: 360px;
  }
  body.landing .hero-caption h1{
    font-size: 24px;
  }
}


/* HitchUp Buddy – Friendly inline prompt (matches site theme) */
.buddy-shell{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.buddy-input{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.buddy-input input{
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 16px;
}

.buddy-input input::placeholder{
  color: var(--muted);
}

.buddy-send{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.buddy-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.buddy-chips .chip{
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  transition: transform .08s ease, background .2s ease;
}

.buddy-chips .chip:hover{
  transform: translateY(-1px);
  background: rgba(124,58,237,.14);
}

.buddy-cta{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.buddy-safety{
  color: var(--muted);
  font-size: 12px;
}

/* Slightly tighter on small screens */
@media (max-width: 480px){
  .buddy-input input{ font-size: 15px; }
}


/* HitchUp Buddy – Embedded Voiceflow container */
.buddy-embed{
  width: 100%;
  height: 560px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}
@media (max-width: 480px){
  .buddy-embed{ height: 520px; }
}
