:root {
  color-scheme: light;
  --page: #fffdf8;
  --surface: #f7f7f7;
  --ink: #242428;
  --muted: #777780;
  --line: #d9d9d9;
  --dark: #202020;
  --gold: #ffd230;
  --green: #00d066;
  --orange: #f08b43;
  --silver: #d0cfd4;
  --max: 980px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--page);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 26px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #7b7a84;
  font-size: 0.92rem;
  font-weight: 700;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.site-nav {
  display: none;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.section-wrap {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  gap: 24px;
  padding: 34px 0 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(2.85rem, 14vw, 4.75rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.36rem;
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(1rem, 4.5vw, 1.25rem);
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row.centered {
  justify-content: center;
}

.app-store-badge {
  display: inline-flex;
  width: 158px;
  height: 48px;
  min-height: 48px;
  align-items: center;
}

.app-store-badge img {
  width: 158px;
  height: 48px;
  object-fit: contain;
}

.soon-pill {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  background: #d9d9d9;
  color: #2f2f2f;
  font-size: 0.95rem;
  white-space: nowrap;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.medal-hero {
  width: min(74vw, 310px);
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.16));
}

.showcase {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.showcase-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 38px 0 36px;
  overflow: hidden;
}

.showcase-image {
  width: min(118vw, 1120px);
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.feature-section {
  padding: 74px 0 48px;
}

.feature-section > h2,
.feature-section > .section-kicker {
  text-align: center;
}

.feature-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature-card {
  min-height: 238px;
  padding: 22px 20px;
  border-radius: 8px;
  background: var(--dark);
  color: #fcfcfc;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-card p {
  margin-bottom: 0;
  color: #f1f1f1;
  font-size: 0.95rem;
}

.feature-dot {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  margin-bottom: auto;
}

.dot-gold {
  background: var(--gold);
}

.dot-silver {
  background: var(--silver);
}

.dot-bronze {
  background: var(--orange);
}

.privacy-band {
  width: min(100% - 40px, var(--max));
  margin: 26px auto 70px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  display: grid;
  gap: 22px;
  align-items: center;
}

.privacy-band p:last-child {
  margin-bottom: 0;
}

.privacy-band img {
  width: 104px;
  justify-self: center;
}

.download-section {
  padding: 8px 0 56px;
  text-align: center;
}

.site-footer {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 14px 0 38px;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  color: var(--ink);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 32px 0 0;
  color: #aaa9ae;
  font-size: 0.78rem;
}

.legal-shell {
  width: min(100% - 40px, 880px);
  margin: 0 auto;
  padding: 46px 0 72px;
}

.legal-shell h1 {
  font-size: clamp(2.45rem, 11vw, 4.4rem);
}

.legal-meta {
  margin-bottom: 30px;
  color: var(--muted);
}

.legal-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.legal-section li + li {
  margin-top: 8px;
}

.support-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.support-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.support-card h2 {
  font-size: 1.4rem;
}

.support-card p:last-child {
  margin-bottom: 0;
}

.text-link {
  font-weight: 800;
}

@media (min-width: 700px) {
  .site-header {
    padding-top: 48px;
  }

  .site-nav {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 320px;
    padding: 70px 0 86px;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .privacy-band {
    grid-template-columns: minmax(0, 1fr) 150px;
    padding: 36px 42px;
  }

  .privacy-band img {
    width: 130px;
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .site-header {
    width: min(100% - 28px, var(--max));
  }

  .section-wrap,
  .privacy-band,
  .site-footer,
  .legal-shell {
    width: min(100% - 28px, var(--max));
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .cta-row {
    align-items: center;
  }

  .soon-pill {
    flex: 1 1 160px;
  }

  .medal-hero {
    width: min(58vw, 230px);
  }

  .feature-card {
    min-height: 220px;
  }
}
