@import url('https://fonts.googleapis.com/css2?family=DM+Mono&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #14213d;
  --muted: #657089;
  --line: #dce2eb;
  --soft: #f5f7fb;
  --blue: #315efb;
  --blue-dark: #2348c9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
a { color: inherit; text-decoration: none; }

.nav {
  max-width: 1180px;
  height: 82px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; letter-spacing: -1px; }
.brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 10px;
  color: white; background: var(--blue); font-size: 18px;
}
.nav nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.nav nav > a:not(.nav-button) { color: #536078; }
.nav-button, .primary-button {
  background: var(--blue); color: white; border-radius: 11px; padding: 12px 17px;
}
.nav-button:hover, .primary-button:hover { background: var(--blue-dark); }

.hero {
  min-height: 620px;
  padding: 80px 28px 90px;
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 65px;
}
.eyebrow {
  color: var(--blue);
  font: 700 12px/1 "DM Mono", monospace;
  letter-spacing: 1.4px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 18px 0 20px;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.03; letter-spacing: -4px;
}
h1 span { color: var(--blue); }
.hero-copy > p { max-width: 600px; font-size: 18px; line-height: 1.7; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 18px; margin: 30px 0 18px; font-weight: 700; }
.primary-button { padding: 15px 20px; }
.secondary-button { color: #536078; }
.small-note { font-size: 12px !important; }

.search-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(30, 57, 110, .12);
  background: white;
}
.window-dots { display: flex; gap: 6px; margin-bottom: 18px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d7dce5; }
.search-row { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 12px; padding: 8px 8px 8px 15px; color: #8a94a6; }
.search-icon { font-size: 25px; color: var(--ink); transform: rotate(-15deg); }
.search-row button, .waitlist button { margin-left: auto; border: 0; background: var(--blue); color: white; padding: 11px 15px; border-radius: 9px; font-weight: 700; cursor: pointer; }
.result { display: grid; grid-template-columns: 58px 1fr auto; gap: 13px; align-items: center; padding: 20px 6px; border-bottom: 1px solid var(--line); }
.product-image { width: 58px; height: 58px; border-radius: 13px; background: var(--soft); display: grid; place-items: center; font-size: 25px; }
.result-info { display: flex; flex-direction: column; gap: 5px; }
.result-info span, .price { color: var(--muted); font-size: 12px; }
.price { text-align: right; }
.price b { color: var(--ink); font-size: 18px; }
.muted { opacity: .65; border-bottom: 0; }

.partners { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 28px; text-align: center; }
.partners p { font: 700 11px/1 "DM Mono", monospace; color: #9aa3b2; letter-spacing: 1.5px; }
.partner-row { max-width: 760px; margin: 22px auto 0; display: flex; justify-content: space-around; color: #667085; font-weight: 800; font-size: 21px; }

.section { max-width: 1180px; margin: auto; padding: 110px 28px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 50px; }
h2 { margin: 13px 0 0; font-size: clamp(34px, 4vw, 50px); letter-spacing: -2.5px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps article { border: 1px solid var(--line); border-radius: 18px; padding: 30px; min-height: 230px; }
.step-number { color: var(--blue); font: 700 13px "DM Mono", monospace; }
.steps h3 { margin: 55px 0 10px; font-size: 22px; }
.steps p, .about p, .waitlist p { color: var(--muted); line-height: 1.7; }

.about { background: var(--ink); color: white; padding: 100px max(28px, calc((100vw - 1124px)/2)); display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.about .eyebrow { color: #8ba6ff; }
.about p { color: #c4cbd8; max-width: 650px; font-size: 17px; }

.waitlist { max-width: 1180px; margin: auto; padding: 100px 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.waitlist form { display: flex; flex-wrap: wrap; gap: 10px; }
.waitlist input { flex: 1; min-width: 210px; border: 1px solid var(--line); border-radius: 10px; padding: 15px; font: inherit; }
.waitlist button { margin-left: 0; padding: 15px 20px; }
.waitlist small { width: 100%; color: var(--muted); }

footer { border-top: 1px solid var(--line); padding: 35px 28px; display: flex; gap: 30px; align-items: center; justify-content: space-between; max-width: 1180px; margin: auto; }
.footer-brand { font-size: 17px; }
.footer-brand .brand-mark { width: 28px; height: 28px; border-radius: 8px; font-size: 15px; }
.footer-links { display: flex; gap: 20px; color: var(--muted); font-size: 13px; }
footer p { margin: 0; color: #9aa3b2; font-size: 12px; }

.legal { max-width: 850px; margin: 80px auto; padding: 0 28px; }
.legal h1 { font-size: 48px; letter-spacing: -2px; }
.legal h2 { font-size: 24px; margin-top: 35px; }
.legal p, .legal li { color: var(--muted); line-height: 1.8; }

@media (max-width: 760px) {
  .nav nav > a:not(.nav-button) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 50px; gap: 45px; }
  .hero-copy > p { font-size: 16px; }
  .steps, .about, .waitlist { grid-template-columns: 1fr; }
  .about { gap: 25px; }
  .steps article { min-height: auto; }
  .steps h3 { margin-top: 30px; }
  footer { flex-direction: column; align-items: flex-start; }
}
