:root {
  --navy: #141b33;
  --navy-dark: #0a0e1c;
  --orange: #ea5a34;
  --orange-dark: #c8431f;
  --blue: #3f6fd6;
  --blue-light: #6b8fe0;
  --ink: #1c2333;
  --muted: #5b6478;
  --line: #e7e9f0;
  --bg-light: #f6f7fb;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.wordmark { color: rgba(255,255,255,0.95); font-size: 18px; font-weight: 700; letter-spacing: 0.4px; text-decoration: none; }
.wordmark span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--orange); color: #fff !important; padding: 10px 20px; border-radius: 8px;
  font-weight: 700; font-size: 14px;
}
.nav-cta:hover { background: var(--orange-dark); }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  padding: 90px 0 110px;
  overflow: hidden;
  position: relative;
}
.hero-inner { display: flex; align-items: center; gap: 60px; }
.hero-copy { flex: 1 1 520px; min-width: 0; }
.eyebrow {
  color: var(--orange); font-size: 14px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 18px;
}
.hero h1 { font-size: 46px; font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin: 0 0 22px; }
.hero p.lead { color: rgba(255,255,255,0.72); font-size: 18px; line-height: 1.6; max-width: 480px; margin: 0 0 32px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 9px; font-weight: 700;
  font-size: 15px; text-decoration: none; cursor: pointer; border: none;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); }

.hero-art { flex: 0 0 420px; position: relative; height: 320px; }
.card-ghost {
  position: absolute; left: 0; top: 60px; width: 190px; height: 122px; border-radius: 16px;
  border: 2.5px dashed rgba(255,255,255,0.3); background: rgba(255,255,255,0.03);
}
.card-ghost::before { content:''; position:absolute; left:20px; top:20px; width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,0.14); }
.card-ghost::after { content:''; position:absolute; left:20px; bottom:22px; width:96px; height:8px; border-radius:4px; background:rgba(255,255,255,0.14); }
.ghost-label { position:absolute; left:0; top:190px; width:190px; text-align:center; color:rgba(255,255,255,0.4); font-size:13px; font-weight:600; }
.hero-dots { position:absolute; left:210px; top:118px; width:90px; display:flex; justify-content:space-between; }
.hero-dots span { width:9px; height:9px; border-radius:50%; background: rgba(255,255,255,0.25); }
.hero-dots span:nth-child(2) { background: rgba(255,255,255,0.4); }
.card-solid {
  position: absolute; right: 0; top: 30px; width: 190px; height: 122px; border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 24px 44px rgba(0,0,0,0.4);
}
.card-solid::before { content:''; position:absolute; left:20px; top:20px; width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,0.4); }
.card-solid::after { content:''; position:absolute; left:20px; bottom:22px; width:96px; height:8px; border-radius:4px; background:rgba(255,255,255,0.5); }
.solid-label { position:absolute; right:0; top:160px; width:190px; text-align:center; color:#fff; font-size:13px; font-weight:700; }
.tap-badge {
  position: absolute; right: 50px; top: 4px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}
.tap-badge svg { width: 24px; height: 24px; }

/* ---------- How it works ---------- */
.how {
  padding: 90px 0;
  background: var(--white);
}
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-head .eyebrow { color: var(--orange); }
.section-head h2 { font-size: 32px; font-weight: 800; color: var(--navy); margin: 0 0 14px; letter-spacing: -0.3px; }
.section-head p { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card {
  background: var(--bg-light); border-radius: 16px; padding: 32px 26px; text-align: left;
  border: 1px solid var(--line);
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: #fff; margin-bottom: 18px;
}
.step-card:nth-child(1) .step-num { background: var(--orange); }
.step-card:nth-child(2) .step-num { background: var(--blue); }
.step-card:nth-child(3) .step-num { background: var(--navy); }
.step-card h3 { font-size: 18px; margin: 0 0 10px; color: var(--navy); }
.step-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ---------- Features ---------- */
.features { padding: 90px 0; background: var(--bg-light); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature-card {
  background: var(--white); border-radius: 16px; padding: 28px; border: 1px solid var(--line);
  display: flex; gap: 18px; align-items: flex-start;
}
.feature-icon {
  flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card:nth-child(1) .feature-icon { background: rgba(234,90,52,0.12); }
.feature-card:nth-child(2) .feature-icon { background: rgba(63,111,214,0.12); }
.feature-card:nth-child(3) .feature-icon { background: rgba(234,90,52,0.12); }
.feature-card:nth-child(4) .feature-icon { background: rgba(63,111,214,0.12); }
.feature-card h3 { font-size: 16.5px; margin: 0 0 8px; color: var(--navy); }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* ---------- Social proof / stats strip ---------- */
.stats-strip {
  background: var(--navy); padding: 44px 0;
}
.stats-strip .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; text-align: center; }
.stats-strip .stat b { display: block; font-size: 30px; color: #fff; font-weight: 800; }
.stats-strip .stat span { color: rgba(255,255,255,0.6); font-size: 13px; }

/* ---------- Lead capture / contact ---------- */
.contact {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: 90px 0;
  color: #fff;
}
.contact-inner { display: flex; gap: 60px; align-items: flex-start; }
.contact-copy { flex: 1 1 420px; }
.contact-copy .eyebrow { color: var(--orange); }
.contact-copy h2 { font-size: 32px; font-weight: 800; margin: 0 0 16px; letter-spacing: -0.3px; }
.contact-copy p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.65; max-width: 440px; margin: 0 0 26px; }
.contact-points { list-style: none; margin: 0; padding: 0; }
.contact-points li {
  display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85);
  font-size: 14.5px; margin-bottom: 14px;
}
.contact-points svg { width: 20px; height: 20px; flex-shrink: 0; }

.lead-form-card {
  flex: 0 0 420px; background: #fff; border-radius: 18px; padding: 34px 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35); color: var(--ink);
}
.lead-form-card h3 { margin: 0 0 6px; font-size: 20px; color: var(--navy); }
.lead-form-card .sub { color: var(--muted); font-size: 13.5px; margin: 0 0 22px; }
.lead-form label { display: block; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 14px; }
.lead-form input, .lead-form textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px;
  font-size: 14px; font-family: inherit; margin-top: 5px;
}
.lead-form input:focus, .lead-form textarea:focus { outline: 2px solid var(--blue); border-color: transparent; }
.lead-form textarea { min-height: 80px; resize: vertical; }
.lead-form button {
  width: 100%; background: var(--orange); color: #fff; border: none; padding: 13px;
  border-radius: 9px; font-weight: 700; font-size: 15px; cursor: pointer; margin-top: 4px;
}
.lead-form button:hover { background: var(--orange-dark); }
.lead-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.form-msg { font-size: 13.5px; margin-top: 12px; padding: 10px 12px; border-radius: 8px; display: none; }
.form-msg.success { background: #e5f7ec; color: #1a7a3c; display: block; }
.form-msg.error { background: #fde8e6; color: #b3261e; display: block; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.55); padding: 36px 0;
  font-size: 13.5px;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-wordmark { color: rgba(255,255,255,0.85); font-weight: 700; }
.footer-wordmark span { color: var(--orange); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-inner { flex-direction: column; }
  .hero-art { flex: none; width: 100%; max-width: 420px; margin: 0 auto; }
  .hero h1 { font-size: 36px; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-inner { flex-direction: column; }
  .lead-form-card { width: 100%; max-width: 460px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 60px 0 80px; }
  .how, .features, .contact { padding: 60px 0; }
}
