/* Same palette and shapes as the app, so the site and the product look related. */
:root {
  --brand: #1795e8;
  --sky: #30afff;
  --cyan: #92eeff;
  --mint: #c4f7ca;
  --ink: #10242e;
  --body: #5d7480;
  --faint: #9baab2;
  --hairline: #e6edf1;
  --tint: #e9f7ff;
  --soft: #f3faff;
  --pale: #f7fbfd;
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
    "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); }

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--hairline);
}
header .wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 68px;
}
header img { width: 36px; height: 36px; border-radius: 10px; }
header .name { font-weight: 700; letter-spacing: -0.3px; font-size: 18px; }
header nav { margin-left: auto; display: flex; gap: 22px; font-size: 15px; }
header nav a { color: var(--body); text-decoration: none; }
header nav a:hover { color: var(--ink); }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--sky) 0%, var(--cyan) 100%);
  color: #fff;
  padding: 84px 0 96px;
  text-align: center;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.08;
  letter-spacing: -1.6px;
  font-weight: 800;
  text-wrap: balance;
}
.hero p {
  margin: 0 auto 34px;
  max-width: 620px;
  font-size: clamp(17px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.94);
  text-wrap: pretty;
}

.shots {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.shots figure {
  margin: 0;
  width: 210px;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 44px rgba(6, 42, 68, 0.24);
}
.shots img { display: block; width: 100%; height: 280px; object-fit: cover; }
.shots figcaption {
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--body);
  background: #fff;
}

/* Sections */
section { padding: 76px 0; }
section.tinted { background: var(--pale); }
h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -1px;
  text-wrap: balance;
}
.lede { margin: 0 0 40px; color: var(--body); font-size: 17.5px; max-width: 640px; }

.steps { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.step {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.step .n {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 15px; margin-bottom: 14px;
}
.step h3 { margin: 0 0 6px; font-size: 18px; letter-spacing: -0.3px; }
.step p { margin: 0; color: var(--body); font-size: 15.5px; }

.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.pair img { width: 100%; border-radius: var(--radius); display: block; }

.promise { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.promise div {
  background: var(--soft);
  border-radius: 18px;
  padding: 22px 24px;
}
.promise h3 { margin: 0 0 4px; font-size: 16.5px; }
.promise p { margin: 0; color: var(--body); font-size: 15px; }

/* Legal and support pages */
.page { padding: 56px 0 96px; }
.page h1 { font-size: clamp(32px, 5vw, 44px); letter-spacing: -1.2px; margin: 0 0 6px; }
.updated { color: var(--faint); font-size: 14px; margin: 0 0 36px; }
.page h2 { font-size: 20px; margin: 34px 0 8px; letter-spacing: -0.3px; }
.page p { color: var(--body); margin: 0 0 14px; }

form { display: grid; gap: 16px; max-width: 560px; }
label { font-size: 14.5px; font-weight: 600; }
input, textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--hairline);
  border-radius: 14px;
  background: #fff;
}
input:focus, textarea:focus { outline: none; border-color: var(--brand); }
textarea { min-height: 150px; resize: vertical; }
button {
  font: inherit;
  font-weight: 600;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 100px;
  padding: 15px 26px;
  cursor: pointer;
  justify-self: start;
}
button:disabled { background: #c6d5dd; cursor: default; }
.hp { position: absolute; left: -9999px; }
.note { font-size: 14px; color: var(--faint); }
.ok { color: #2f7d32; font-weight: 600; }
.err { color: #c62828; font-weight: 600; }

footer {
  border-top: 1px solid var(--hairline);
  padding: 34px 0 60px;
  color: var(--faint);
  font-size: 14.5px;
}
footer .wrap { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
footer nav { display: flex; gap: 20px; margin-left: auto; }
footer a { color: var(--body); text-decoration: none; }
footer a:hover { color: var(--ink); }

@media (max-width: 760px) {
  .steps, .pair, .promise { grid-template-columns: 1fr; }
  header nav { gap: 16px; font-size: 14px; }
  section { padding: 54px 0; }
}
