:root {
  --navy: #082a59;
  --navy-dark: #041c3c;
  --coral: #ff5c35;
  --mint: #5ee6aa;
  --ink: #13233a;
  --muted: #627087;
  --cream: #fff9f5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.site-header { display: flex; height: 86px; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 850; font-size: 20px; letter-spacing: -0.03em; }
.logo img { width: 46px; height: 46px; object-fit: contain; }
nav { display: flex; align-items: center; gap: 30px; color: #47566c; font-size: 14px; font-weight: 650; }
.nav-cta { padding: 10px 15px; border: 1px solid #ccd7e3; border-radius: 9px; color: var(--navy); }

.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; min-height: 650px; padding-block: 70px 100px; }
.eyebrow { margin: 0 0 16px; color: var(--coral); font-size: 12px; font-weight: 850; letter-spacing: 0.13em; text-transform: uppercase; }
h1 { margin: 0; color: var(--navy-dark); font-size: clamp(48px, 6vw, 76px); line-height: 0.98; letter-spacing: -0.055em; }
h1 span { color: var(--coral); }
.lede { max-width: 610px; margin: 26px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 20px; border-radius: 10px; font-weight: 750; }
.button.primary { background: var(--coral); box-shadow: 0 10px 24px rgb(255 92 53 / 22%); color: #fff; }
.button.secondary { border: 1px solid #ccd7e3; color: var(--navy); }
.trust { display: flex; align-items: center; gap: 8px; margin-top: 22px; color: #758198; font-size: 12px; }
.trust span { width: 8px; height: 8px; border-radius: 50%; background: #28ae75; }

.demo { overflow: hidden; border: 1px solid #d7e0e9; border-radius: 18px; background: #f4f7fa; box-shadow: 0 30px 80px rgb(8 42 89 / 15%); transform: rotate(1deg); }
.browser-bar { display: flex; align-items: center; gap: 7px; height: 48px; padding: 0 15px; border-bottom: 1px solid #d7e0e9; background: #fff; }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #ffb4a3; }
.browser-bar i:nth-child(2) { background: #ffd796; }
.browser-bar i:nth-child(3) { background: #9be6c5; }
.browser-bar span { flex: 1; margin-left: 8px; padding: 7px 12px; border-radius: 7px; background: #f2f5f8; color: #8490a0; font-size: 10px; }
.browser-content { position: relative; display: grid; gap: 13px; padding: 28px 28px 106px; }
.sample-card { position: relative; padding: 18px; border: 1px solid #d9e1e9; border-radius: 10px; background: #fff; }
.sample-card b { color: var(--navy); font-size: 12px; }
.sample-card p { margin: 8px 0 0; color: #6b7688; font-size: 12px; }
.sample-card.selected { outline: 3px solid var(--coral); outline-offset: 2px; }
.sample-card:not(.selected) { box-shadow: 0 0 0 2px var(--mint); }
.cursor { position: absolute; right: 30px; bottom: -20px; color: var(--navy); font-size: 40px; transform: rotate(-8deg); }
.found { position: absolute; right: 18px; bottom: 17px; left: 18px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3px 12px; padding: 14px 16px; border-radius: 12px; background: var(--navy); box-shadow: 0 12px 32px rgb(4 28 60 / 30%); color: #fff; }
.found strong { font-size: 12px; }
.found span { grid-column: 1; color: #c5d2e3; font-size: 10px; }
.found button { grid-row: 1 / 3; grid-column: 2; padding: 10px 12px; border: 0; border-radius: 8px; background: var(--coral); color: #fff; font-weight: 750; font-size: 10px; }

.steps { padding: 100px 0; background: var(--cream); }
.steps h2, .privacy-callout h2 { margin: 0; color: var(--navy-dark); font-size: clamp(34px, 4vw, 50px); letter-spacing: -0.04em; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.step-grid article { padding: 28px; border: 1px solid #f1dcd1; border-radius: 14px; background: #fff; }
.step-grid article > span { color: var(--coral); font-size: 12px; font-weight: 850; }
.step-grid h3 { margin: 38px 0 10px; color: var(--navy); font-size: 22px; }
.step-grid p { margin: 0; color: var(--muted); line-height: 1.65; }

.privacy-callout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; padding-block: 110px; }
.privacy-callout > p { color: var(--muted); font-size: 17px; line-height: 1.8; }
footer { display: flex; min-height: 100px; align-items: center; justify-content: space-between; border-top: 1px solid #e3e9ef; color: #7b8798; font-size: 12px; }
footer div { display: flex; gap: 22px; }

.privacy-page { max-width: 760px; padding-block: 70px 110px; }
.privacy-page h1 { font-size: clamp(42px, 7vw, 64px); }
.privacy-page .updated { margin: 18px 0 50px; color: var(--muted); }
.privacy-page h2 { margin-top: 38px; color: var(--navy); }
.privacy-page p, .privacy-page li { color: #536176; line-height: 1.75; }

@media (max-width: 850px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-block: 55px 80px; }
  .hero-copy { text-align: center; }
  .lede { margin-inline: auto; }
  .hero-actions, .trust { justify-content: center; }
  .demo { max-width: 580px; margin-inline: auto; }
  .step-grid, .privacy-callout { grid-template-columns: 1fr; }
  .privacy-callout { gap: 25px; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .site-header { height: 72px; }
  .logo img { width: 38px; height: 38px; }
  .nav-cta { padding: 9px 11px; }
  h1 { font-size: 46px; }
  .lede { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .step-grid { grid-template-columns: 1fr; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 15px; }
}
