
:root {
  --ink: #241c17;
  --muted: #6f6259;
  --paper: #fbf7ef;
  --panel: #fffdf8;
  --line: #e5d8c8;
  --accent: #8a4f2a;
  --accent-dark: #5e351d;
  --accent-soft: #f0dfcd;
  --green: #68775d;
  --shadow: 0 18px 50px rgba(50, 30, 18, .09);
  --radius: 24px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: radial-gradient(circle at top left, #fff7ea 0, var(--paper) 42%, #f7efe4 100%); line-height: 1.55; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(251,247,239,.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(229,216,200,.75); }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; text-decoration: none; letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: white; display: grid; place-items: center; font-size: 14px; font-weight: 900; box-shadow: var(--shadow); }
.nav-links { display: flex; align-items: center; gap: 18px; font-size: 14px; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 700; }
.nav-links a:hover { color: var(--ink); }
.mobile-note { display: none; color: var(--muted); font-size: 13px; }
.hero { padding: 74px 0 42px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 38px; align-items: center; }
.kicker { margin: 0 0 12px; text-transform: uppercase; letter-spacing: .13em; font-size: 12px; font-weight: 900; color: var(--accent); }
h1, h2, h3 { line-height: 1.06; letter-spacing: -.045em; margin: 0; }
h1 { font-size: clamp(42px, 7vw, 76px); }
h2 { font-size: clamp(30px, 4.5vw, 48px); }
h3 { font-size: 22px; }
p { color: var(--muted); margin: 12px 0 0; }
.lead { font-size: clamp(18px, 2.4vw, 22px); max-width: 720px; color: #56483f; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 18px; border-radius: 999px; border: 1px solid var(--accent); background: var(--accent); color: white; text-decoration: none; font-weight: 850; box-shadow: 0 10px 24px rgba(138,79,42,.18); }
.btn.secondary { background: transparent; color: var(--accent-dark); border-color: var(--line); box-shadow: none; }
.btn.light { background: white; color: var(--accent-dark); border-color: white; }
.card { background: rgba(255,253,248,.88); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(22px, 3vw, 34px); }
.visual-card { overflow: hidden; padding: 0; min-height: 430px; background: var(--panel); }
.visual-card img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.section { padding: 50px 0; }
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.mini { padding: 22px; border-radius: 20px; background: #fffaf3; border: 1px solid var(--line); }
.mini strong { display: block; color: var(--ink); }
ul.clean { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
ul.clean li { padding-left: 28px; position: relative; color: var(--muted); }
ul.clean li:before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900; }
.band { background: var(--accent-dark); color: white; border-radius: 32px; padding: clamp(28px, 5vw, 56px); }
.band p, .band li { color: rgba(255,255,255,.78); }
.band .kicker { color: #f5cda7; }
.badge { display: inline-flex; width: fit-content; padding: 6px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-dark); font-size: 12px; font-weight: 850; }
.quote { font-size: clamp(24px, 4vw, 38px); line-height: 1.18; letter-spacing: -.04em; color: var(--ink); margin: 0; }
.timeline { display: grid; gap: 14px; counter-reset: step; }
.step { counter-increment: step; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.step:before { content: counter(step); width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); display: grid; place-items: center; font-weight: 900; }
.footer { padding: 48px 0; border-top: 1px solid var(--line); margin-top: 42px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 24px; }
.footer a { color: var(--muted); text-decoration: none; display: block; margin-top: 8px; }
.notice { border-left: 4px solid var(--accent); padding: 16px 18px; background: #fff6ea; border-radius: 14px; }
.page-title { padding: 64px 0 24px; }
.offer-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.offer-nav a { text-decoration: none; }
.form-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: start; }
.field { display: grid; gap: 8px; margin-top: 14px; }
.field label { font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 13px 14px; background: white; font: inherit; color: var(--ink); }
.field textarea { min-height: 120px; }
.fake-submit { margin-top: 18px; }
@media (max-width: 880px) {
  .hero-grid, .grid.two, .grid.three, .grid.four, .form-shell, .footer-grid { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { flex-wrap: wrap; gap: 10px; }
  .mobile-note { display: block; }
  .hero { padding-top: 38px; }
}


/* v2 acquisition upgrades */
.photo-frame { overflow: hidden; border-radius: 28px; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--panel); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.proof-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
.proof-pill { padding: 14px 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.7); font-weight: 850; color: var(--accent-dark); }
.path-card { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: 22px; background: #fffaf3; }
.path-number { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: white; display:grid; place-items:center; font-weight:900; }
.panel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.panel-card { padding: 20px; border-radius: 20px; background: #fffaf3; border: 1px solid var(--line); }
.panel-card small { display:block; color: var(--accent); font-weight:900; text-transform:uppercase; letter-spacing:.08em; margin-bottom:8px; }
.warning-card { border-left: 5px solid var(--accent); }
.start-choice { display: block; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease; }
.start-choice:hover { transform: translateY(-2px); }
.copy-box { white-space: pre-wrap; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; background: #2a211c; color: #fff7ea; padding: 18px; border-radius: 18px; overflow:auto; font-size: 14px; }
.inline-form-note { font-size: 13px; color: var(--muted); }
.roadster { background: linear-gradient(135deg, #fffdf8, #f1ddc9); border: 1px solid var(--line); border-radius: 32px; padding: clamp(24px, 4vw, 46px); }
@media (max-width: 880px) { .proof-strip, .panel-grid { grid-template-columns: 1fr; } }


/* v3 lead capture */
.stack { display: grid; gap: 16px; }
.compact-grid { gap: 14px; }
.lead-form { display: grid; gap: 6px; }
.hidden-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.checkbox-line { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; color: var(--muted); font-weight: 700; }
.checkbox-line input { margin-top: 4px; width: 18px; height: 18px; }
.full-submit { width: 100%; margin-top: 18px; border: 0; cursor: pointer; font: inherit; }
.required-note { font-size: 13px; color: var(--muted); }
.error-note { border-left: 4px solid #a33; background: #fff1ee; color: #5c211a; padding: 12px 14px; border-radius: 12px; margin-top: 12px; }
