:root {
  color-scheme: light;
  --ink: #101116;
  --ink-soft: #20232d;
  --paper: #f3f7ff;
  --paper-warm: #f3f7ff;
  --surface: #ffffff;
  --muted: #636a78;
  --line: #dfe6ef;
  --blue: #0878c9;
  --blue-deep: #005f9e;
  --pink: #4ab3ff;
  --yellow: #8ed8ff;
  --green: #5fdd94;
  --shadow: 0 28px 70px rgba(14, 20, 32, 0.18);
  --tight-shadow: 0 14px 36px rgba(14, 20, 32, 0.15);
  --radius: 8px;
  --font-display: "Arial Rounded MT Bold", "Avenir Next", "Trebuchet MS", sans-serif;
  --font-body: "Avenir Next", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

body.landing {
  background:
    linear-gradient(180deg, #101116 0, #101116 860px, #f3f7ff 860px, #f3f7ff 100%);
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 24px 0;
  color: #ffffff;
}

.brand-mark,
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark img,
.brand img {
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-nav a:hover {
  color: #ffffff;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 42px;
  align-items: center;
  width: min(100% - 40px, 1180px);
  min-height: 820px;
  margin: 0 auto;
  padding: 126px 0 80px;
  color: #ffffff;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 -12vw;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
  opacity: 0.4;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: 26px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 900;
}

.trust-pill img {
  border-radius: 9px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.hero-copy h1 {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.96;
}

.hero-copy h1 span {
  color: #ffffff;
}

.hero-copy h1 strong {
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 38%, var(--yellow) 68%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font: inherit;
  padding-bottom: 0.08em;
}

.hero-lede {
  max-width: 600px;
  margin-bottom: 0;
  color: #c7cfdb;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 700;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 10px 18px 10px 14px;
  background: #050609;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, opacity 160ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.store-badge.compact {
  min-height: 52px;
  padding: 8px 15px 8px 12px;
}

.store-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
}

.store-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.store-badge small,
.store-badge b {
  display: block;
  line-height: 1.05;
}

.store-badge small {
  font-size: 0.72rem;
  font-weight: 700;
}

.store-badge b {
  font-size: 1.18rem;
  font-weight: 900;
}

.hero-media {
  min-height: 560px;
}

.phone-frame {
  overflow: hidden;
  width: min(100%, 270px);
  margin: 0;
  border: 10px solid #11141b;
  border-radius: 36px;
  background: #11141b;
  box-shadow: var(--shadow);
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 1206 / 2622;
  border-radius: 24px;
  object-fit: cover;
}

.hero-phone {
  position: absolute;
}

.hero-phone-a {
  right: min(14vw, 180px);
  top: 42px;
  width: min(45vw, 300px);
  transform: rotate(-3deg);
}

.hero-phone-b {
  right: -14px;
  top: 0;
  width: min(42vw, 285px);
  transform: rotate(4deg);
}

.mini-proof {
  position: absolute;
  right: min(24vw, 260px);
  bottom: 34px;
  display: grid;
  gap: 2px;
  width: 170px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 16px;
  background: linear-gradient(135deg, #ffffff, var(--paper-warm));
  color: var(--ink);
  box-shadow: var(--tight-shadow);
}

.mini-proof span {
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.mini-proof strong {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.15;
}

.manifesto {
  display: grid;
  place-items: center;
  padding: 42px 24px;
  background: #ffffff;
  text-align: center;
}

.manifesto p {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.feature-band {
  display: grid;
  gap: 86px;
  padding: 92px 0 110px;
}

.section-heading {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  text-align: center;
}

.section-heading span,
.feature-kicker,
.eyebrow,
.doc-kicker {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 13px;
  background: #eaf6ff;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 780px;
  margin: 18px auto 0;
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  line-height: 0.98;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 70px;
  align-items: center;
  width: min(100% - 40px, 1040px);
  margin: 0 auto;
}

.feature-panel-reverse {
  grid-template-columns: 340px minmax(0, 1fr);
}

.feature-panel-reverse .feature-copy {
  grid-column: 2;
  grid-row: 1;
}

.feature-panel-reverse .feature-phone {
  grid-column: 1;
  grid-row: 1;
}

.feature-copy {
  display: grid;
  gap: 18px;
}

.feature-kicker.blue {
  background: #e8f5ff;
  color: var(--blue-deep);
}

.feature-kicker.pink {
  background: #ffeaf0;
  color: #bc244e;
}

.feature-kicker.yellow {
  background: #fff3c8;
  color: #8a6200;
}

.feature-copy h3 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
  line-height: 0.95;
}

.feature-copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 700;
}

.feature-link,
.big-cta,
.outline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-link:hover,
.big-cta:hover,
.outline-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--tight-shadow);
}

.feature-phone {
  width: min(100%, 312px);
  justify-self: center;
}

.community-section {
  display: grid;
  gap: 34px;
  justify-items: center;
  border-block: 1px solid var(--line);
  padding: 108px 24px;
  background:
    linear-gradient(90deg, rgba(21, 152, 242, 0.11) 1px, transparent 1px),
    linear-gradient(0deg, rgba(242, 84, 125, 0.1) 1px, transparent 1px),
    #ffffff;
  background-size: 56px 56px;
  text-align: center;
}

.community-section h2 {
  max-width: 840px;
  margin: 0 auto 18px;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
  line-height: 0.96;
}

.community-section p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 800;
}

.big-cta {
  min-height: 64px;
  padding: 0 34px;
  background: var(--pink);
  color: #ffffff;
  font-size: 1.12rem;
}

.faq-section {
  display: grid;
  justify-items: center;
  gap: 24px;
  width: min(100% - 40px, 860px);
  margin: 0 auto;
  padding: 100px 0;
}

.help-pill {
  border-radius: 999px;
  padding: 13px 36px;
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: inset 0 3px 7px rgba(255, 255, 255, 0.18), inset 0 -4px 9px rgba(0, 0, 0, 0.14);
}

.faq-section h2 {
  max-width: 780px;
  margin-bottom: 14px;
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: 100%;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(14, 20, 32, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
}

.faq-list p {
  margin: -6px 24px 22px;
  color: var(--muted);
  font-weight: 700;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 90px 24px 120px;
  text-align: center;
}

.final-cta img {
  border-radius: 20px;
  box-shadow: var(--tight-shadow);
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
}

.outline-cta {
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.site-footer {
  display: grid;
  gap: 42px;
  justify-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 54px 24px 70px;
  background: var(--ink);
  color: #ffffff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 50px;
  width: min(100%, 520px);
}

.footer-links h3 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 900;
}

.footer-links a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

.page {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
}

.shell {
  display: grid;
  gap: 32px;
  align-content: center;
  min-height: 100vh;
  padding: 56px 0;
}

.hero {
  max-width: 720px;
}

.app-icon {
  display: block;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 24px 0 10px;
}

.document {
  padding-bottom: 80px;
}

.document h1,
.hero h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 7vw, 4.75rem);
  line-height: 0.98;
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.2rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.doc-link {
  display: grid;
  gap: 8px;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--tight-shadow);
}

.doc-link strong {
  display: block;
  color: var(--blue-deep);
  font-size: 1.6rem;
}

.doc-link span:last-child {
  color: var(--muted);
}

.doc-kicker {
  background: #fff3c8;
  color: #8a6200;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
}

.topbar a:last-child {
  color: var(--blue-deep);
  font-weight: 900;
}

.content {
  max-width: 760px;
  margin: 28px 0 80px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  background: var(--surface);
  box-shadow: var(--tight-shadow);
}

.content h2 {
  margin: 36px 0 10px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 900;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 1.02rem;
}

.content ul {
  padding-left: 1.35rem;
}

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

@media (max-width: 900px) {
  body.landing {
    background:
      linear-gradient(180deg, #101116 0, #101116 980px, #f3f7ff 980px, #f3f7ff 100%);
  }

  .site-header {
    position: relative;
    width: min(100% - 32px, 1180px);
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 38px 0 80px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-phone-a {
    left: 0;
    right: auto;
    width: min(56vw, 280px);
  }

  .hero-phone-b {
    right: 0;
    width: min(53vw, 260px);
  }

  .mini-proof {
    right: 7vw;
  }

  .feature-panel,
  .feature-panel-reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-panel-reverse .feature-copy,
  .feature-panel-reverse .feature-phone {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-top: 16px;
  }

  .brand-mark span {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 3.2rem);
  }

  .hero-media {
    min-height: 430px;
  }

  .phone-frame {
    border-width: 8px;
    border-radius: 30px;
  }

  .phone-frame img {
    border-radius: 20px;
  }

  .mini-proof {
    bottom: 8px;
    width: 145px;
    padding: 13px;
  }

  .feature-band {
    gap: 64px;
    padding: 72px 0;
  }

  .feature-phone {
    width: min(82vw, 300px);
  }

  .community-section,
  .faq-section {
    padding-block: 76px;
  }

  .footer-links,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .content {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
