:root {
  color-scheme: light;
  --ink: #141318;
  --paper: #fffaf2;
  --lime: #b8f55f;
  --rose: #ff6f8f;
  --blue: #5eb7ff;
  --line: rgba(20, 19, 24, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(184, 245, 95, 0.16), transparent 34%),
    linear-gradient(135deg, #fffdf7, var(--paper));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
}

.hero {
  min-height: calc(100vh - 60px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.app-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(20, 19, 24, 0.18);
}

.eyebrow {
  margin: 24px 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: 6.4rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 560px;
  margin: 24px 0 0;
  font-size: 1.18rem;
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.store-link {
  min-height: 52px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid var(--ink);
}

.primary {
  background: var(--ink);
  color: #ffffff;
}

.secondary {
  background: rgba(255, 255, 255, 0.62);
}

.small {
  min-height: 20px;
  margin: 16px 0 0;
  font-size: 0.92rem;
  color: rgba(20, 19, 24, 0.68);
}

.trust-list {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(20, 19, 24, 0.76);
  font-size: 0.98rem;
  line-height: 1.42;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 2px rgba(20, 19, 24, 0.82);
}

.phone-preview {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 0.56;
  justify-self: center;
  border: 10px solid var(--ink);
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 242, 0.82)),
    linear-gradient(120deg, var(--lime), var(--blue) 48%, var(--rose));
  box-shadow: 0 28px 80px rgba(20, 19, 24, 0.28);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  padding: 30px 26px 0;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.86;
}

.face-card {
  width: 70%;
  aspect-ratio: 1;
  margin: 70px auto 0;
  border: 3px solid rgba(20, 19, 24, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(-4deg);
}

.eye-row {
  display: flex;
  justify-content: space-around;
  padding: 58px 42px 0;
}

.eye-row span {
  width: 34px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  transform: rotate(12deg);
}

.mouth {
  width: 110px;
  height: 42px;
  margin: 54px auto 0;
  border: 12px solid var(--rose);
  border-top: 0;
  border-radius: 0 0 80px 80px;
}

.score-band {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 18px 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--lime);
}

.score-band span {
  font-weight: 800;
  text-transform: uppercase;
}

.score-band strong {
  font-size: 4.8rem;
  line-height: 0.78;
}

.stores {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: -22px;
  padding-bottom: 24px;
}

.store-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.store-link strong {
  min-width: 0;
  text-align: right;
  line-height: 1.15;
}

.store-link span {
  color: rgba(20, 19, 24, 0.62);
  font-size: 0.92rem;
}

.copy {
  color: var(--ink);
  font: inherit;
}

.share-previews {
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(240px, 0.44fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  max-width: 12ch;
  font-size: 3.3rem;
  line-height: 0.96;
}

.section-heading p {
  margin: 0;
  color: rgba(20, 19, 24, 0.7);
  font-size: 1.02rem;
  line-height: 1.5;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.9fr;
  gap: 14px;
}

.preview-card {
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 46px rgba(20, 19, 24, 0.08);
}

.mini-phone,
.story-export,
.share-panel {
  position: relative;
  height: 100%;
  min-height: 380px;
  padding: 24px;
  overflow: hidden;
}

.mini-phone {
  border: 10px solid var(--ink);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(20, 19, 24, 0.78)),
    radial-gradient(circle at 50% 36%, #d5d7d1 0 28%, #8d928f 29% 100%);
}

.story-export {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(20, 19, 24, 0.84)),
    radial-gradient(circle at 50% 36%, #cdd0cb 0 30%, #8a8f8d 31% 100%);
}

.share-panel {
  display: grid;
  align-content: center;
  gap: 24px;
  background:
    linear-gradient(145deg, rgba(184, 245, 95, 0.24), rgba(94, 183, 255, 0.2)),
    #fffdf7;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  text-shadow: 0 3px 10px rgba(20, 19, 24, 0.32);
  font-size: 1.35rem;
  font-weight: 950;
}

.mini-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(20, 19, 24, 0.22);
}

.mini-score {
  position: absolute;
  top: 92px;
  right: 20px;
  width: 172px;
  height: 112px;
  padding: 18px 18px 12px;
  border-radius: 22px;
  background: #d9ff21;
  color: #050505;
  transform: rotate(4deg);
  box-shadow: 0 14px 36px rgba(184, 245, 95, 0.34);
}

.mini-score span {
  display: block;
  color: rgba(5, 5, 5, 0.58);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.mini-score strong {
  font-size: 4.2rem;
  line-height: 0.8;
}

.mini-score em {
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 900;
}

.mini-face {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 174px;
  height: 210px;
  border-radius: 42% 46% 38% 44%;
  background: linear-gradient(145deg, #8a624f, #c58d71);
  transform: translate(-50%, -50%);
  box-shadow: inset 0 -28px 52px rgba(20, 19, 24, 0.2);
}

.mini-face::before,
.mini-face::after {
  content: "";
  position: absolute;
  top: 70px;
  width: 24px;
  height: 34px;
  border-radius: 50%;
  background: #fffaf2;
  box-shadow: inset 7px 5px 0 #141318;
}

.mini-face::before {
  left: 46px;
}

.mini-face::after {
  right: 42px;
}

.mini-face span {
  position: absolute;
  left: 54px;
  bottom: 46px;
  width: 72px;
  height: 22px;
  border: 8px solid #5f2928;
  border-top: 0;
  border-radius: 0 0 80px 80px;
}

.mini-face.two {
  width: 188px;
  height: 220px;
  transform: translate(-50%, -48%) rotate(-4deg);
}

.mini-phone p,
.story-export p {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 72px;
  margin: 0;
  color: #fff7e6;
  font-size: 1.38rem;
  font-weight: 950;
  line-height: 1.08;
  text-shadow: 0 3px 12px rgba(20, 19, 24, 0.42);
}

.story-export small {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 36px;
  color: rgba(255, 247, 230, 0.82);
  font-size: 0.92rem;
  font-weight: 900;
}

.mini-cta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 950;
}

.share-panel p {
  margin: 0;
  max-width: 9ch;
  font-size: 4.2rem;
  font-weight: 950;
  line-height: 0.9;
}

.share-icons {
  display: flex;
  gap: 10px;
}

.share-icons span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 950;
}

.site-footer {
  padding: 4px 0 22px;
  text-align: center;
  color: rgba(20, 19, 24, 0.66);
  font-size: 0.92rem;
  font-weight: 700;
}

.policy-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.policy-nav {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  min-height: 56px;
  padding: 10px 0;
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(14px);
}

.policy-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 850;
}

.policy-nav span {
  flex: 1 1 auto;
}

.policy-content {
  padding: 24px 0 0;
}

.policy-content h1 {
  max-width: 14ch;
  font-size: 4.8rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.policy-content h2 {
  margin: 38px 0 10px;
  font-size: 1.8rem;
  line-height: 1.05;
}

.policy-content h3 {
  margin: 24px 0 8px;
  font-size: 1.16rem;
}

.policy-content p,
.policy-content li {
  font-size: 1rem;
  line-height: 1.62;
}

.policy-content ul {
  padding-left: 20px;
}

.policy-content code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(20, 19, 24, 0.08);
  font-size: 0.92em;
}

.legal-footer {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(20, 19, 24, 0.76);
}

.legal-footer h2 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.legal-footer dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.legal-footer div {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 12px;
}

.legal-footer dt {
  font-weight: 850;
}

.legal-footer dd {
  margin: 0;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 24px, 520px);
    padding: 18px 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 16px;
  }

  h1 {
    max-width: 11ch;
    font-size: 3.8rem;
  }

  .phone-preview {
    width: min(78vw, 330px);
  }

  .stores {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading h2 {
    font-size: 2.5rem;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-card,
  .mini-phone,
  .story-export,
  .share-panel {
    min-height: 340px;
  }

  .policy-nav span {
    display: none;
  }

  .policy-content h1 {
    font-size: 3.2rem;
  }

  .legal-footer div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
