:root {
  --ink: #121012;
  --paper: #f7f3f5;
  --white: #ffffff;
  --wine: #8f1f3d;
  --blush: #f3dbe2;
  --lilac: #dcd8ff;
  --violet: #5848ee;
  --green: #cce67b;
  --muted: #686168;
  --border: rgba(18, 16, 18, 0.14);
  --display: "Fraunces", Georgia, serif;
  --body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body,
.screenshot-reel {
  scrollbar-color: var(--wine) transparent;
}

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

a {
  color: inherit;
}

a:focus-visible,
.screenshot-reel:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 64px, 1280px);
  height: 84px;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  border-radius: 11px;
}

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header nav a,
.header-cta,
.footer-links a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-header nav a {
  color: var(--muted);
}

.site-header a {
  transition: color 180ms ease, opacity 180ms ease;
}

.site-header a:hover {
  color: var(--wine);
}

.header-cta {
  justify-self: end;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.site-header .header-cta:hover {
  color: var(--white);
  opacity: 0.78;
}

.hero {
  position: relative;
  min-height: calc(100svh - 24px);
  padding: 132px 24px 0;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(243, 219, 226, 0.72), transparent 42%),
    radial-gradient(circle at 83% 22%, rgba(204, 230, 123, 0.74), transparent 28%),
    var(--paper);
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  animation: rise 650ms ease-out both;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(72px, 11vw, 150px);
}

.hero-tagline {
  margin-bottom: 20px;
  font-size: clamp(27px, 3.1vw, 44px);
  font-weight: 600;
  line-height: 1.1;
}

.hero-tagline span {
  color: var(--wine);
}

.hero-description {
  max-width: 610px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 18px;
}

.app-store-link {
  display: inline-block;
  border-radius: 9px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.app-store-link:hover {
  transform: translateY(-2px);
  opacity: 0.82;
}

.app-store-link img {
  width: 180px;
  height: 60px;
  object-fit: contain;
}

.app-facts {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.app-facts span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 24px 3px 0;
  border-radius: 50%;
  background: var(--wine);
}

.app-facts strong {
  color: var(--ink);
}

.hero-stage {
  position: relative;
  left: 50%;
  width: min(900px, 92vw);
  height: clamp(320px, 44vw, 580px);
  margin: 32px 0 0;
  transform: translateX(-50%);
  animation: stage-rise 800ms 120ms ease-out both;
}

.hero-shot {
  position: absolute;
  top: 0;
  width: clamp(220px, 25vw, 350px);
  border: 1px solid rgba(18, 16, 18, 0.08);
  border-radius: 26px 26px 0 0;
  box-shadow: 0 28px 80px rgba(52, 22, 35, 0.19);
}

.hero-shot-left {
  left: 5%;
  transform: rotate(-7deg) translateY(48px);
}

.hero-shot-main {
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.hero-shot-right {
  right: 5%;
  transform: rotate(7deg) translateY(48px);
}

.process {
  padding: 120px max(32px, calc((100vw - 1280px) / 2));
  background: var(--white);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.privacy-callout h2,
.final-cta h2 {
  margin-bottom: 28px;
  font-size: clamp(46px, 6vw, 82px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 290px;
  padding: 30px;
  border-top: 1px solid var(--ink);
  background: var(--paper);
}

.steps li:nth-child(2) {
  background: var(--blush);
}

.steps li:nth-child(3) {
  background: var(--green);
}

.step-number {
  display: block;
  margin-bottom: 72px;
  font-size: 13px;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.steps p {
  margin-bottom: 0;
  color: #514c51;
}

.showcase {
  padding: 120px 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-heading-light {
  margin: 0 max(32px, calc((100vw - 1280px) / 2)) 56px;
}

.section-heading-light > p:last-child {
  margin: 0;
  color: #b8afb5;
  font-size: 18px;
}

.screenshot-reel {
  display: flex;
  gap: 22px;
  padding: 0 max(32px, calc((100vw - 1280px) / 2)) 30px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: max(32px, calc((100vw - 1280px) / 2));
  scroll-snap-type: inline mandatory;
}

.screenshot-reel figure {
  flex: 0 0 clamp(260px, 28vw, 386px);
  margin: 0;
  scroll-snap-align: start;
}

.screenshot-reel figure:nth-child(even) {
  transform: translateY(28px);
}

.screenshot-reel img {
  width: 100%;
  border-radius: 24px;
}

.privacy-callout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  padding: 120px max(32px, calc((100vw - 1280px) / 2));
  background: var(--lilac);
}

.privacy-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: #4f4a63;
  font-size: 19px;
}

.privacy-copy > a {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.privacy-statements {
  align-self: end;
  border-top: 1px solid var(--ink);
}

.privacy-statements p {
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.privacy-statements span {
  color: var(--wine);
  font-size: 12px;
}

.final-cta {
  padding: 120px 24px;
  background: var(--paper);
  text-align: center;
}

.final-cta > img {
  margin: 0 auto 36px;
  border-radius: 25px;
  box-shadow: 0 18px 55px rgba(52, 22, 35, 0.18);
}

.final-cta h2 {
  margin-right: auto;
  margin-left: auto;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 42px max(32px, calc((100vw - 1280px) / 2));
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  gap: 26px;
}

footer > p {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stage-rise {
  from {
    opacity: 0;
    transform: translate(-50%, 22px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 40px);
    height: 72px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-stage {
    width: 760px;
    max-width: none;
  }

  .hero-shot {
    width: 280px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps li {
    min-height: 0;
  }

  .step-number {
    margin-bottom: 48px;
  }

  .privacy-callout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  footer > p {
    justify-self: center;
  }

  .footer-brand {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 32px);
  }

  .brand span {
    display: none;
  }

  .header-cta {
    padding: 9px 15px;
  }

  .hero {
    min-height: calc(100svh - 16px);
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: 54px;
  }

  .hero-tagline {
    font-size: 28px;
  }

  .app-facts {
    flex-wrap: wrap;
    gap: 6px 16px;
  }

  .app-facts span + span::before {
    margin-right: 16px;
  }

  .hero-stage {
    width: 610px;
    height: 330px;
  }

  .hero-shot {
    width: 220px;
    border-radius: 18px 18px 0 0;
  }

  .process,
  .showcase,
  .privacy-callout,
  .final-cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-heading h2,
  .privacy-callout h2,
  .final-cta h2 {
    font-size: 44px;
  }

  .steps {
    margin-top: 48px;
  }

  .steps li {
    padding: 24px;
  }

  .step-number {
    margin-bottom: 38px;
  }

  .screenshot-reel {
    gap: 14px;
  }

  .screenshot-reel figure {
    flex-basis: 76vw;
  }

  .screenshot-reel img {
    border-radius: 18px;
  }

  .privacy-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

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