:root {
  --ink: #10233f;
  --muted: #4e5e72;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #d9d5ca;
  --blue: #1976d2;
  --green: #2e9d68;
  --orange: #ee7b2f;
  --violet: #7956c8;
  --shadow: 0 22px 70px rgba(16, 35, 63, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(121,86,200,.08), transparent 24rem),
    radial-gradient(circle at 8% 22%, rgba(25,118,210,.08), transparent 28rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
a:focus-visible { outline: 3px solid rgba(25,118,210,.45); outline-offset: 4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217,213,202,.85);
  background: rgba(251,250,246,.9);
  backdrop-filter: blur(14px);
}
.nav, .page, .footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(16,35,63,.1);
}
.brand-mark::before, .brand-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  height: 3px;
  border-radius: 99px;
}
.brand-mark::before {
  top: 9px;
  width: 21px;
  background: var(--orange);
  box-shadow: 0 7px 0 var(--green);
}
.brand-mark::after { top: 23px; width: 14px; background: var(--violet); }
.nav-links { display: flex; gap: 24px; color: var(--muted); font-size: .92rem; font-weight: 650; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(380px,.95fr);
  align-items: center;
  gap: clamp(48px,8vw,104px);
  padding: 84px 0 96px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.045em; }
h1 { margin-bottom: 24px; font-size: clamp(3.4rem,8vw,6.6rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem,4vw,3.45rem); }
h3 { margin-bottom: 12px; font-size: 1.18rem; letter-spacing: -.025em; }
.lede { max-width: 650px; margin: 0; color: var(--muted); font-size: clamp(1.08rem,2vw,1.32rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: .93rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(16,35,63,.18); }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.72); color: var(--ink); }
.availability { margin-top: 16px; color: var(--muted); font-size: .84rem; }

.browser-demo {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.browser-top {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #f4f3ef;
}
.browser-top i { width: 8px; height: 8px; border-radius: 50%; background: #c7c3b9; }
.demo-copy { padding: 42px 54px 68px 42px; }
.demo-kicker, .demo-heading, .demo-text { border-radius: 99px; }
.demo-kicker { width: 35%; height: 9px; margin-bottom: 24px; background: #d8dce3; }
.demo-heading { width: 72%; height: 22px; margin-bottom: 20px; background: var(--ink); box-shadow: 0 32px 0 #c8cdd5; }
.demo-text {
  width: 88%;
  height: 8px;
  margin-top: 52px;
  background: #d8dce3;
  box-shadow: 0 18px 0 #d8dce3, 0 36px 0 #d8dce3, 0 54px 0 #d8dce3,
    0 104px 0 #d8dce3, 0 122px 0 #d8dce3, 0 140px 0 #d8dce3,
    0 190px 0 #d8dce3, 0 208px 0 #d8dce3;
}
.mark-line, .marker { position: absolute; height: 4px; border-radius: 99px; }
.mark-line { left: 18%; box-shadow: 0 0 10px currentColor; }
.mark-line.one { top: 196px; width: 65%; color: var(--orange); background: var(--orange); }
.mark-line.two { top: 316px; width: 52%; color: var(--green); background: var(--green); }
.mark-line.three { top: 412px; width: 70%; color: var(--violet); background: var(--violet); }
.marker { right: 2px; width: 22px; height: 3px; }
.marker.one { top: 194px; background: var(--orange); }
.marker.two { top: 314px; background: var(--green); }
.marker.three { top: 410px; background: var(--violet); }

.section { padding: 94px 0; border-top: 1px solid var(--line); }
.section-heading { max-width: 700px; margin-bottom: 42px; }
.section-heading p, .card p, .copy p, .copy li { color: var(--muted); }
.feature-grid, .steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.68);
}
.card-number { margin-bottom: 54px; color: var(--blue); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { position: relative; padding: 30px 30px 30px 72px; border-radius: 22px; background: var(--ink); color: rgba(255,255,255,.76); }
.steps strong { display: block; margin-bottom: 8px; color: #fff; }
.steps span { position: absolute; top: 28px; left: 28px; color: #79b8ff; font-weight: 850; }
.privacy-callout {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(280px,.6fr);
  gap: 38px;
  align-items: center;
  padding: clamp(32px,6vw,64px);
  border-radius: 30px;
  background: #f1eee5;
}
.privacy-points { display: grid; gap: 12px; }
.privacy-points div { padding: 14px 16px; border: 1px solid rgba(16,35,63,.12); border-radius: 14px; background: rgba(255,255,255,.5); font-size: .9rem; font-weight: 700; }

.policy-page { width: min(860px,calc(100% - 40px)); margin: 0 auto; padding: 82px 0 110px; }
.policy-header { padding-bottom: 42px; border-bottom: 1px solid var(--line); }
.policy-header h1 { margin-bottom: 18px; font-size: clamp(2.7rem,7vw,5rem); }
.updated { color: var(--muted); font-size: .9rem; }
.copy { padding-top: 22px; }
.copy section { padding: 34px 0; border-bottom: 1px solid var(--line); }
.copy section:last-child { border-bottom: 0; }
.copy h2 { font-size: 1.55rem; letter-spacing: -.03em; }
.copy h3 { margin-top: 28px; font-size: 1.05rem; }
.copy ul, .copy ol { padding-left: 1.25rem; }
.copy li + li { margin-top: 8px; }
.copy a { color: var(--blue); text-underline-offset: 3px; }
.support-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 34px; }
.support-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.7); }
.notice { margin: 28px 0; padding: 18px 20px; border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; background: rgba(25,118,210,.08); color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); }
.footer-inner { min-height: 120px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); font-size: .86rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }

@media (max-width: 860px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 72px 0; }
  .feature-grid, .steps { grid-template-columns: 1fr; }
  .privacy-callout { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .nav { min-height: 64px; }
  .nav-links a:first-child { display: none; }
  h1 { font-size: clamp(3rem,16vw,4.6rem); }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding: 28px 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
