:root {
  --bg:       #F4F1EC;
  --ink:      #0B0B0D;
  --muted:    rgba(11, 11, 13, 0.62);
  --accent:   #1863D9;
  --hot:      #FF4D2E;

  --max-w:    1100px;
  --gutter:   clamp(20px, 5vw, 80px);

  --font-ui:      "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Inter Tight", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

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

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.nav__cta {
  display: inline-block;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease;
}
.nav__cta:hover { transform: translateY(-1px); }

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 12vw, 140px) var(--gutter);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.display {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-size: clamp(52px, 9vw, 132px);
  margin: 0;
}
.display .accent { color: var(--accent); }
.display .hot { color: var(--hot); }

.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
}

.appstore { display: inline-block; transition: transform 0.15s ease; margin-top: 8px; }
.appstore:hover { transform: translateY(-1px); }
.appstore img { display: block; height: 64px; width: auto; max-width: none; }
@media (max-width: 600px) {
  .appstore img { height: 52px; }
}

.fineprint {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.9;
  pointer-events: none;
}
.blob--a {
  width: 44vw; height: 44vw;
  max-width: 700px; max-height: 700px;
  background: var(--accent);
  top: -14vw; right: -14vw;
  opacity: 0.18;
}
.blob--b {
  width: 28vw; height: 28vw;
  max-width: 420px; max-height: 420px;
  background: var(--hot);
  bottom: -10vw; left: -10vw;
  opacity: 0.16;
}

.footer {
  background: var(--ink);
  color: rgba(244, 241, 236, 0.6);
  padding: 32px var(--gutter) 48px;
  font-size: 13px;
  border-top: 1px solid rgba(244, 241, 236, 0.08);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__links { display: flex; gap: 18px; }
.footer__links a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.footer__links a:hover { border-bottom-color: currentColor; }
.footer__col--right { margin-left: auto; }

@media (max-width: 600px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__col--right { margin-left: 0; }
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter) 100px;
}
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 48px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(11, 11, 13, 0.12);
}
.legal h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 8px;
}
.legal p, .legal li { font-size: 17px; line-height: 1.6; }
.legal p { margin: 0 0 16px; }
.legal ul { margin: 0 0 18px 24px; padding: 0; }
.legal li { margin: 6px 0; }
.legal address { font-style: normal; white-space: pre-line; margin: 12px 0 16px; color: var(--muted); }
.legal a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--accent); }
.legal .meta { font-size: 15px; color: var(--muted); margin-bottom: 32px; }
.legal strong { font-weight: 700; }
