:root {
  --blue: #064fae;
  --blue-dark: #043b82;
  --orange: #ff7a00;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #f8fbff;
  --card: #ffffff;
  --line: #dbe7f3;
  --soft-blue: #eaf4ff;
  --soft-orange: #fff1e5;
  --shadow: 0 28px 90px rgba(6, 79, 174, 0.15);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,122,0,0.10), transparent 34rem),
    radial-gradient(circle at top right, rgba(6,79,174,0.12), transparent 38rem),
    var(--bg);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 54px; width: auto; display: block; }
nav { display: flex; gap: 26px; color: var(--muted); font-size: 14px; font-weight: 700; }
nav a:hover { color: var(--blue); }
.nav-cta {
  border: 1px solid var(--line);
  background: white;
  color: var(--blue-dark);
  padding: 11px 15px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(15,23,42,0.05);
}

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto 92px; }
.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
  padding: 36px 0 72px;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft-blue);
  color: var(--blue-dark);
  border: 1px solid rgba(6,79,174,0.10);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}
.eyebrow::before, .section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(48px, 7.5vw, 88px);
  line-height: 0.91;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}
h3 { font-size: 20px; letter-spacing: -0.02em; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.65; }
.hero-subtitle { font-size: 20px; max-width: 680px; margin-bottom: 28px; }
.microcopy { font-size: 14px; max-width: 610px; margin-top: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 15px;
  border: 1px solid var(--line);
  padding: 14px 20px;
  font-weight: 900;
  cursor: pointer;
}
.btn-primary { background: var(--blue); color: white; border-color: var(--blue); box-shadow: 0 14px 34px rgba(6,79,174,0.22); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary { background: white; color: var(--blue-dark); }
.full { width: 100%; font-size: 16px; }

.product-demo { position: relative; display: grid; place-items: center; min-height: 620px; }
.product-demo::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(6,79,174,0.16), rgba(255,122,0,0.14));
  filter: blur(4px);
}
.phone-card {
  width: min(390px, 100%);
  border-radius: 40px;
  background: #0b1220;
  padding: 14px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  position: relative;
  z-index: 1;
}
.phone-top { width: 98px; height: 6px; background: rgba(255,255,255,0.35); border-radius: 99px; margin: 4px auto 12px; }
.screen { background: white; border-radius: 30px; padding: 24px; }
.screen-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.screen-header span { font-weight: 900; }
.screen-header strong { background: var(--soft-orange); color: #a44b00; padding: 6px 10px; border-radius: 99px; font-size: 12px; }
.field-line { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 13px 0; gap: 16px; }
.field-line span { color: var(--muted); }
.field-line strong { text-align: right; }
.demo-button { width: 100%; margin: 22px 0 14px; border: 0; border-radius: 15px; padding: 14px; background: var(--orange); color: white; font-weight: 900; font: inherit; }
.generated-code { background: var(--soft-blue); border: 1px dashed rgba(6,79,174,0.35); border-radius: 22px; padding: 18px; margin-bottom: 14px; }
.generated-code span { display: block; color: var(--muted); font-size: 13px; font-weight: 800; margin-bottom: 6px; }
.generated-code strong { font-size: 42px; letter-spacing: 0.06em; }
.verify-status { display: flex; align-items: center; gap: 12px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 18px; padding: 14px; }
.verify-status small { color: #15803d; display: block; margin-top: 2px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: #22c55e; }
.scan-card {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 58px;
  width: 220px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(15,23,42,0.13);
}
.scan-card img { width: 86px; display: block; margin-bottom: 10px; }
.scan-card p { font-size: 13px; margin-bottom: 0; }

.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: start; margin-bottom: 28px; }
.split p { font-size: 18px; }
.card-grid { display: grid; gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.info-card, .quote-panel, .waitlist-form, details {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: 0 14px 44px rgba(15,23,42,0.04);
  backdrop-filter: blur(12px);
}
.info-card p { margin-bottom: 0; }
.compact { padding: 22px; }
.compact h3 { font-size: 18px; }
.compact p { font-size: 14px; }

.how-section { text-align: center; }
.how-section h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; text-align: left; }
.timeline article { background: white; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; position: relative; overflow: hidden; }
.timeline article::after { content: ""; position: absolute; width: 90px; height: 90px; border-radius: 50%; right: -28px; top: -28px; background: var(--soft-blue); }
.timeline span { display: inline-flex; color: var(--orange); font-weight: 900; margin-bottom: 35px; }
.timeline p { margin-bottom: 0; }

.credibility-section { text-align: center; }
.quote-panel { padding: 52px; border-radius: var(--radius-lg); background: linear-gradient(135deg, white, #f2f8ff); }
.quote-panel p { max-width: 780px; margin-left: auto; margin-right: auto; font-size: 18px; margin-bottom: 0; }

.form-section { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 44px; align-items: start; }
.check-list { padding: 0; list-style: none; margin: 22px 0 0; display: grid; gap: 12px; color: var(--muted); }
.check-list li { display: flex; gap: 10px; align-items: center; }
.check-list li::before { content: "✓"; width: 22px; height: 22px; border-radius: 50%; background: var(--soft-blue); color: var(--blue); display: grid; place-items: center; font-size: 13px; font-weight: 900; flex: 0 0 22px; }
.waitlist-form { display: grid; gap: 17px; }
label { display: grid; gap: 8px; font-size: 14px; font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfdff;
  border-radius: 15px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(6,79,174,0.10); }
textarea { resize: vertical; }
.form-message { font-weight: 900; margin: 0; }
.form-note { font-size: 12px; margin: 0; }

.faq-section { max-width: 900px; }
.faq-section h2 { text-align: center; }
.faq-section .section-kicker { margin-left: 50%; transform: translateX(-50%); }
details { margin-bottom: 13px; }
summary { cursor: pointer; font-weight: 900; }
details p { margin-bottom: 0; padding-top: 12px; }
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 56px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  color: var(--muted);
}
.site-footer img { height: 42px; display: block; margin-bottom: 8px; }
.site-footer p { margin: 0; font-size: 14px; }
.site-footer a { color: var(--blue); font-weight: 800; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero, .split, .form-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; gap: 30px; }
  .product-demo { min-height: 540px; }
  .card-grid.three, .card-grid.four, .timeline { grid-template-columns: repeat(2, 1fr); }
  .scan-card { right: 12px; }
}
@media (max-width: 640px) {
  .site-header { width: min(100% - 28px, 1180px); }
  .brand img { height: 42px; }
  .nav-cta { display: none; }
  .section { width: min(100% - 28px, 1180px); margin-bottom: 64px; }
  h1 { font-size: 52px; }
  .hero-subtitle { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .product-demo { min-height: auto; display: block; }
  .phone-card { transform: none; margin: 0 auto; }
  .scan-card { position: static; width: 100%; margin-top: 16px; }
  .card-grid.three, .card-grid.four, .timeline { grid-template-columns: 1fr; }
  .quote-panel { padding: 30px; }
  .site-footer { width: min(100% - 28px, 1180px); flex-direction: column; align-items: flex-start; }
}
