:root {
  --ink: #18152d;
  --muted: #68637d;
  --paper: #fffdf8;
  --violet: #7656e8;
  --pink: #ff6f9f;
  --mint: #80dec7;
  --sun: #ffd96a;
  --line: #ded8ef;
  --shadow: 0 20px 60px rgba(44, 31, 95, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.55 Inter,
    ui-rounded,
    "SF Pro Rounded",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
a {
  color: inherit;
}
button,
a {
  touch-action: manipulation;
}
.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  z-index: 99;
}
.wrap {
  width: min(1560px, calc(100% - clamp(36px, 6vw, 120px)));
  margin: auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  font-size: 1.16rem;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 24px;
}
.navlinks a {
  text-decoration: none;
  font-weight: 700;
  color: var(--muted);
}
.pill,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  text-decoration: none;
  font-weight: 850;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition:
    0.18s transform,
    0.18s box-shadow;
}
.pill:hover,
.cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.pill {
  padding: 9px 16px;
  background: #fff;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 70px 0 90px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #efeaff;
  border: 1px solid #d8cffd;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero h1 {
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  margin: 25px 0 64px;
}
.scribble {
  position: relative;
  color: var(--violet);
  white-space: nowrap;
}
.scribble:after {
  content: "";
  position: absolute;
  left: 2%;
  right: 1%;
  bottom: -16px;
  height: 12px;
  border-top: 5px solid var(--pink);
  border-radius: 50%;
  transform: rotate(-2deg);
}
.lede {
  font-size: clamp(1.12rem, 2vw, 1.36rem);
  color: var(--muted);
  max-width: 620px;
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.cta.primary {
  background: var(--sun);
}
.cta.secondary {
  background: #fff;
}
.fine {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 16px;
}
.phone {
  position: relative;
  width: min(370px, 88vw);
  margin: auto;
  padding: 14px;
  background: #171421;
  border-radius: 42px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.screen {
  background: #f1ecff;
  border-radius: 31px;
  overflow: hidden;
  min-height: 670px;
  padding: 25px 20px;
}
.status {
  display: flex;
  justify-content: space-between;
  font-size: 0.77rem;
  font-weight: 800;
}
.apphead {
  font-size: 1.55rem;
  font-weight: 900;
  margin: 31px 0 24px;
}
.recall-card {
  background: #fff;
  border: 1px solid #d9d0f1;
  border-radius: 23px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(45, 27, 90, 0.09);
}
.thumb {
  height: 210px;
  background: linear-gradient(135deg, var(--pink), #ffb26b 48%, var(--sun));
  display: grid;
  place-items: center;
  font-size: 5rem;
}
.cardbody {
  padding: 19px;
}
.tag {
  display: inline-block;
  background: #e8fff7;
  color: #15624f;
  border-radius: 99px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 850;
}
.cardbody h3 {
  font-size: 1.35rem;
  line-height: 1.1;
  margin: 12px 0 8px;
}
.card-title {
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.1;
  margin: 12px 0 8px;
}
.urlchip {
  display: inline-flex;
  max-width: 100%;
  background: #f2eff7;
  border-radius: 99px;
  padding: 7px 11px;
  color: #635e72;
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bring {
  display: flex;
  justify-content: space-between;
  margin-top: 17px;
  color: #6b6680;
  font-size: 0.83rem;
}
.tabs {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-around;
  background: #fff;
  border-radius: 18px;
  padding: 13px;
  box-shadow: 0 7px 24px rgba(45, 27, 90, 0.11);
  font-size: 0.78rem;
  font-weight: 800;
}
.section {
  padding: 100px 0;
}
.section h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 0 0 18px;
}
.section-intro {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.15rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 45px;
}
.step {
  border: 2px solid var(--ink);
  border-radius: 25px;
  padding: 26px;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
}
.step:nth-child(2) {
  background: #f0ebff;
}
.step:nth-child(3) {
  background: #eafff8;
}
.num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}
.step h3 {
  font-size: 1.35rem;
  margin: 20px 0 8px;
}
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
  transform: rotate(-1deg);
}
.track {
  display: flex;
  width: max-content;
  animation: scroll 24s linear infinite;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ticker-group {
  display: flex;
  flex-shrink: 0;
  min-width: max(100vw, 920px);
}
.ticker-group span {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-around;
  white-space: nowrap;
}
.ticker-group span:after {
  content: "✦";
  color: var(--sun);
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}
.examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.example {
  border-radius: 25px;
  padding: 26px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.example:nth-child(1) {
  background: #ffe6ef;
}
.example:nth-child(2) {
  background: #e9e3ff;
}
.example:nth-child(3) {
  background: #fff0bd;
}
.quote {
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1.15;
}
.ugc {
  background: var(--violet);
  color: #fff;
  border-radius: 38px;
  padding: clamp(32px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 35px;
  align-items: center;
}
.ugc h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
}
.ugc .cta {
  background: var(--sun);
  color: var(--ink);
  justify-self: start;
}
.privacy-strip {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 40px 0 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.privacy-strip strong {
  display: block;
}
.footer {
  padding: 52px 0 35px;
  border-top: 1px solid var(--line);
}
.footgrid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footlinks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footlinks a {
  color: var(--muted);
}
.legal {
  width: min(800px, calc(100% - 36px));
  margin: 60px auto 100px;
}
.legal h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.legal h2 {
  margin-top: 2.5rem;
}
.legal p,
.legal li {
  color: #4f4a60;
}
.legal .meta {
  padding: 14px 18px;
  background: #f1edff;
  border-radius: 14px;
}
.back {
  display: inline-flex;
  margin-top: 25px;
  font-weight: 800;
}
.faq {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 1.05rem;
}
.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 99px;
  background: #eafff8;
  color: #145c4a;
  font-weight: 800;
  font-size: 0.8rem;
}
@media (max-width: 800px) {
  .navlinks a:not(.pill) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }
  .hero-copy {
    text-align: center;
  }
  .lede {
    margin-inline: auto;
  }
  .actions {
    justify-content: center;
  }
  .steps,
  .examples,
  .ugc {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 70px 0;
  }
  .phone {
    margin: 20px auto 0;
  }
  .ugc {
    text-align: center;
  }
  .ugc .cta {
    justify-self: center;
  }
  .privacy-strip {
    align-items: flex-start;
  }
  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .track {
    animation: none;
  }
  .pill,
  .cta {
    transition: none;
  }
}
body {
  overflow-x: hidden;
}
@media (max-width: 800px) {
  .phone {
    transform: rotate(1deg);
  }
  .hero h1 {
    font-size: clamp(2.85rem, 13.5vw, 4.2rem);
    letter-spacing: -0.065em;
  }
  .scribble {
    white-space: normal;
  }
}
@media (max-width: 430px) {
  .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .actions .cta {
    width: 100%;
  }
  .nav .pill {
    padding: 8px 13px;
  }
  .brand {
    font-size: 1rem;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .screen {
    min-height: 620px;
  }
  .thumb {
    height: 180px;
  }
}
