:root {
  color-scheme: light;
  --page: #ffffff;
  --ink: #151515;
  --muted: #656565;
  --quiet: #8c8c8c;
  --line: #e8e8e8;
  --soft: #f7f7f5;
  --soft-strong: #efefec;
  --accent: #d1143a;
  --accent-dark: #a90e2c;
  --purple-soft: #e7e0fb;
  --blue-soft: #dceaff;
  --max: 1180px;
  font-family:
    "IBM Plex Sans", "Hanken Grotesk", "Barlow", "Host Grotesk", "DM Sans",
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(21 21 21 / 0.035) 1px, transparent 1px) 0 0 /
      72px 72px,
    linear-gradient(rgb(21 21 21 / 0.028) 1px, transparent 1px) 0 0 / 72px 72px;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

button,
input {
  font: inherit;
}

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

p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

[id] {
  scroll-margin-top: 88px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  min-height: 44px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--page);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transform: translateY(-16px);
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 0.88);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.brand-link img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 7vw, 72px);
  width: min(100%, 1440px);
  min-height: clamp(680px, calc(100vh - 74px), 860px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 4vw, 56px) 44px;
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(54px, 9vw, 126px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero-lede {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.42;
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  width: min(100%, 580px);
  margin-top: 34px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--page);
  box-shadow: 0 18px 50px rgb(21 21 21 / 0.08);
}

.waitlist-form input {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  font-size: 15px;
}

.waitlist-form input::placeholder {
  color: var(--quiet);
}

.waitlist-form button {
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--ink);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.waitlist-form button:hover {
  background: var(--accent-dark);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-notes span::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.hero-media {
  align-self: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  box-shadow: 0 28px 90px rgb(21 21 21 / 0.12);
}

.media-frame::before {
  display: block;
  height: 38px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18px 50%, #ff5f56 0 5px, transparent 6px),
    radial-gradient(circle at 38px 50%, #ffbd2e 0 5px, transparent 6px),
    radial-gradient(circle at 58px 50%, #27c93f 0 5px, transparent 6px),
    #ffffff;
  content: "";
}

.media-frame img {
  width: 100%;
  height: auto;
}

.media-frame-large {
  min-width: 760px;
  transform: translateX(0);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.logo-strip span {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--page);
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 600;
}

.logo-strip span:last-child {
  grid-column: 1 / -1;
}

.content-section,
.split-section,
.band-section,
.download-section,
.waitlist-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 130px) clamp(18px, 4vw, 32px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

h2 {
  max-width: 12ch;
  font-size: clamp(40px, 6.5vw, 82px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.section-heading p,
.split-copy p,
.privacy-grid p,
.download-section p,
.waitlist-card p,
.legal-lede,
.legal-article section p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.58;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
}

.feature-card {
  min-height: 280px;
  padding: 24px;
  background: rgb(255 255 255 / 0.94);
}

.feature-index,
.legal-kicker {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-top: 68px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.15;
}

.feature-card p {
  max-width: 38ch;
  margin-top: 18px;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.split-copy {
  display: grid;
  gap: 28px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.media-frame-offset {
  background: #ffffff;
}

.band-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy-grid,
.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
}

.privacy-grid h2,
.download-section h2 {
  margin-bottom: 28px;
}

.boundary-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
}

.boundary-list div {
  display: grid;
  gap: 12px;
  min-height: 120px;
  padding: 22px;
  background: #ffffff;
}

.boundary-list span,
.download-card span {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.boundary-list strong {
  max-width: 34ch;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 32px;
  color: var(--ink);
  font-weight: 600;
  text-decoration-color: var(--accent);
}

.download-card {
  display: grid;
  gap: 16px;
  align-self: stretch;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgb(209 20 58 / 0.1), transparent 55%),
    var(--soft);
}

.download-card strong {
  max-width: 12ch;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 500;
  line-height: 1;
}

.waitlist-section {
  width: min(100%, 1240px);
}

.waitlist-card {
  display: grid;
  gap: 24px;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 24px;
  background: var(--ink);
  color: #ffffff;
}

.waitlist-card h2 {
  max-width: 11ch;
}

.waitlist-card p {
  color: rgb(255 255 255 / 0.74);
}

.waitlist-form-dark {
  box-shadow: none;
}

.waitlist-form-dark button {
  background: var(--accent);
}

.waitlist-form-dark button:hover {
  background: var(--accent-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  padding: 32px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
}

.site-footer .brand-link {
  width: fit-content;
}

.site-footer .brand-link img {
  width: 32px;
  height: 32px;
}

.site-footer p {
  max-width: 480px;
  margin-top: 12px;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
}

.site-footer nav a {
  color: var(--ink);
  font-weight: 600;
}

.legal-main {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 32px);
}

.legal-article {
  display: grid;
  gap: 34px;
}

.legal-article h1 {
  max-width: none;
  font-size: clamp(54px, 9vw, 104px);
}

.legal-article section {
  display: grid;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-article section h2 {
  max-width: none;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
}

.legal-article a {
  color: var(--accent-dark);
  font-weight: 600;
}

@media (min-width: 640px) {
  .site-nav {
    display: flex;
  }

  .waitlist-form {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .logo-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .logo-strip span:last-child {
    grid-column: auto;
  }

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

  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}

@media (min-width: 900px) {
  .hero-section {
    grid-template-columns: minmax(420px, 0.85fr) minmax(640px, 1.15fr);
  }

  .media-frame-large {
    transform: translateX(34px);
  }

  .section-heading,
  .privacy-grid,
  .download-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .split-section {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  }

  .media-frame-offset {
    transform: translateX(18px);
  }
}

@media (min-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .hero-section {
    min-height: auto;
  }

  .media-frame-large {
    min-width: 720px;
  }

  .hero-media {
    overflow-x: auto;
    padding-bottom: 10px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 66px;
  }

  .hero-section {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 64px);
  }

  h2 {
    font-size: clamp(36px, 13vw, 52px);
  }

  .media-frame-large {
    min-width: 620px;
  }

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

  .feature-card h3 {
    margin-top: 44px;
  }
}
