:root {
  --yellow: #f5ff00;
  --yellow-warm: #ffd629;
  --ink: #0a0a0b;
  --navy: #101a31;
  --paper: #f7f7f4;
  --white: #ffffff;
  --muted: #60636b;
  --line: rgba(10, 10, 11, 0.12);
  --green: #5f9f6e;
  --mint: #cbded0;
  --cyan: #c9f3f6;
  --shadow: 0 28px 70px rgba(24, 25, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(10, 10, 11, 0.04);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 11px;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 650;
}

.main-nav a,
.footer-links a {
  transition: opacity 180ms ease;
}

.main-nav a:hover,
.footer-links a:hover {
  opacity: 0.55;
}

.header-cta {
  padding: 13px 20px;
  background: var(--yellow-warm);
  border: 1px solid var(--ink);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  margin: 6px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  padding: 58px 0 92px;
  background:
    radial-gradient(circle at 85% 12%, rgba(245, 255, 0, 0.13), transparent 20%),
    linear-gradient(135deg, #f3f4f3, #f8f8f5);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -80px;
  bottom: 56px;
  opacity: 0.95;
  background:
    repeating-radial-gradient(ellipse at 70% 50%, transparent 0 18px, rgba(95, 159, 110, 0.8) 19px 23px, transparent 24px 36px);
  border-radius: 60% 30% 65% 35%;
  transform: rotate(-18deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}

.hero-visual {
  min-width: 0;
}

.visual-panel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.68), transparent 34%),
    linear-gradient(145deg, #d5e8d8, #bcd5c2);
  border-radius: 76px 76px 20px 76px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.soft-circle {
  position: absolute;
  border: 1px solid rgba(17, 32, 22, 0.08);
  border-radius: 50%;
}

.circle-one {
  width: 360px;
  height: 360px;
  left: -110px;
  top: -160px;
}

.circle-two {
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: -110px;
}

.phone-card {
  position: absolute;
  overflow: hidden;
  background: #090909;
  border: 7px solid #090909;
  border-radius: 35px;
  box-shadow: 0 34px 64px rgba(35, 52, 40, 0.24);
  transition: transform 220ms ease, filter 220ms ease;
}

.phone-card img {
  width: 100%;
  height: auto;
  border-radius: 27px;
}

.phone-left {
  z-index: 2;
  width: 226px;
  left: 34px;
  top: 170px;
  transform: rotate(-5deg);
}

.phone-center {
  z-index: 4;
  width: 248px;
  left: 50%;
  top: 72px;
  transform: translateX(-50%);
}

.phone-right {
  z-index: 3;
  width: 218px;
  right: 30px;
  top: 180px;
  transform: rotate(5deg);
}

.visual-label {
  position: absolute;
  z-index: 8;
  left: 34px;
  bottom: 30px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 10, 11, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(245, 255, 0, 0.28);
}

.hero-copy {
  position: relative;
  padding-right: 8px;
}

.scribble-arrow {
  width: 116px;
  margin: 0 0 -8px -44px;
  color: var(--green);
}

.scribble-arrow svg,
.scribble-small svg {
  overflow: visible;
}

.scribble-arrow path,
.scribble-small path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  margin: 0 0 14px;
  color: #4f7257;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #50535b;
}

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

h1,
h2 {
  margin-bottom: 0;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -3.4px;
}

h1 {
  max-width: 650px;
  font-size: clamp(58px, 6vw, 88px);
}

h2 {
  font-size: clamp(44px, 4.8vw, 70px);
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0;
  color: #41444b;
  font-size: 18px;
  line-height: 1.65;
}

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

.store-button {
  min-width: 184px;
  min-height: 60px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-radius: 13px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-3px);
}

.store-primary {
  color: var(--ink);
  background: var(--yellow-warm);
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.store-outline {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ink);
}

.store-dark {
  color: #fff;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.store-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: none;
}

.store-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.store-button > span:not(.store-icon) {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.store-button small {
  margin-bottom: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero-proof {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-proof > div:not(.proof-divider) {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 10px;
}

.hero-proof strong {
  font-size: 20px;
}

.hero-proof .stars {
  color: #f3aa00;
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-proof small {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: #6a6c72;
  font-size: 11px;
}

.proof-divider {
  width: 1px;
  height: 42px;
  background: var(--line);
}

.ticker-wrap {
  position: relative;
  z-index: 10;
  margin: -34px -20px 0;
  overflow: hidden;
  transform: rotate(1.25deg);
}

.ticker {
  min-width: 1280px;
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #101010;
  background: var(--yellow-warm);
  border-top: 1px solid rgba(10, 10, 11, 0.16);
  border-bottom: 1px solid rgba(10, 10, 11, 0.16);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 850;
  letter-spacing: -0.8px;
}

.ticker i {
  width: 38px;
  height: 3px;
  display: block;
  background: var(--ink);
  border-radius: 99px;
}

.section {
  padding: 132px 0;
}

.feature-grid,
.freedom-grid,
.download-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 76px;
  align-items: center;
}

.feature-copy h2,
.freedom-copy h2,
.download-copy h2 {
  max-width: 680px;
}

.feature-copy > p:not(.eyebrow),
.freedom-copy > p:not(.eyebrow),
.download-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.mini-features {
  margin-top: 42px;
  display: grid;
  gap: 24px;
}

.mini-features article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  align-items: start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow-warm);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.mini-features h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.mini-features p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.feature-art {
  position: relative;
  min-height: 600px;
}

.browser-frame {
  position: absolute;
  top: 30px;
  right: -38px;
  width: min(100%, 640px);
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.browser-top {
  height: 40px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6b6e75;
  background: #f2f3f4;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.browser-top span {
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
}

.browser-top small {
  margin-left: 8px;
}

.browser-frame > img {
  width: 100%;
}

.floating-reader {
  position: absolute;
  z-index: 4;
  left: -28px;
  bottom: 10px;
  width: 228px;
  overflow: hidden;
  background: #050505;
  border: 6px solid #050505;
  border-radius: 32px;
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
}

.floating-reader img {
  width: 100%;
  border-radius: 25px;
}

.art-badge {
  position: absolute;
  z-index: 5;
  right: 22px;
  bottom: 46px;
  padding: 15px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 4px 4px 0 var(--yellow-warm);
}

.trust-strip {
  padding: 68px 0;
  color: rgba(255, 255, 255, 0.7);
  background: #1e1e1e;
}

.trust-strip p {
  margin-bottom: 32px;
  text-align: center;
  font-size: 13px;
}

.source-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  opacity: 0.9;
}

.source-logos strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2.2vw, 29px);
  white-space: nowrap;
}

.freedom {
  background: #f7fafb;
}

.freedom-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.check-list {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.check-list span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-size: 12px;
}

.freedom-art {
  position: relative;
  min-height: 590px;
}

.cyan-blob {
  position: absolute;
  width: 450px;
  height: 450px;
  right: 20px;
  top: 70px;
  background: var(--cyan);
  border-radius: 48% 52% 44% 56% / 57% 42% 58% 43%;
}

.freedom-screen {
  position: absolute;
  overflow: hidden;
  background: #090909;
  border: 6px solid #090909;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.freedom-screen img {
  width: 100%;
  border-radius: 18px;
}

.screen-one {
  z-index: 2;
  width: 300px;
  left: 30px;
  top: 12px;
  transform: rotate(-3deg);
}

.screen-two {
  z-index: 3;
  width: 240px;
  right: 12px;
  bottom: 18px;
  transform: rotate(4deg);
}

.scribble-small {
  position: absolute;
  z-index: 5;
  width: 100px;
  left: -20px;
  bottom: 46px;
  color: var(--green);
}

.benefit-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  min-height: 220px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.benefit-card.pink {
  box-shadow: inset 0 5px 0 #ff8aac;
}

.benefit-card.lilac {
  box-shadow: inset 0 5px 0 #9e89ff;
}

.benefit-card.mint {
  box-shadow: inset 0 5px 0 #5ee7c3;
}

.benefit-card > span {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  background: #f2f2f2;
  border-radius: 12px;
  font-size: 22px;
}

.benefit-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.download-banner {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
}

.download-banner::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  left: -180px;
  top: -200px;
  border: 2px solid rgba(10, 10, 11, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(10, 10, 11, 0.025), 0 0 0 160px rgba(10, 10, 11, 0.02);
}

.download-grid {
  position: relative;
  z-index: 2;
  min-height: 700px;
  grid-template-columns: 0.95fr 1.05fr;
}

.download-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 26px;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--ink);
}

.download-copy > p:not(.eyebrow) {
  color: rgba(10, 10, 11, 0.7);
}

.download-copy .store-row {
  margin-top: 30px;
}

.download-art {
  position: relative;
  align-self: stretch;
}

.download-phone {
  position: absolute;
  overflow: hidden;
  background: #080808;
  border: 7px solid #080808;
  border-radius: 34px;
  box-shadow: 0 34px 70px rgba(10, 10, 11, 0.24);
}

.download-phone img {
  width: 100%;
  border-radius: 26px;
}

.download-phone.back {
  width: 300px;
  right: 0;
  top: 70px;
  transform: rotate(7deg);
}

.download-phone.front {
  z-index: 2;
  width: 270px;
  left: 42px;
  bottom: -70px;
  transform: rotate(-5deg);
}

.faq-section {
  background: #f6f3ee;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 58px;
}

.section-heading.centered {
  text-align: center;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  padding: 25px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
}

.faq-item button small {
  margin-right: 12px;
  font-size: 13px;
}

.faq-item button i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: none;
  background: #fff;
  border: 1px solid var(--line);
  font-style: normal;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.faq-item.is-open {
  padding: 0 14px 22px;
  color: #fff;
  background: #202020;
}

.faq-item.is-open button {
  padding-left: 0;
  padding-right: 0;
}

.faq-item.is-open button i {
  color: var(--ink);
  background: var(--yellow-warm);
  border-color: var(--yellow-warm);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 34px 0 36px;
}

.reviews {
  position: relative;
  overflow: hidden;
  padding: 126px 0 140px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 100%, rgba(55, 151, 168, 0.34), transparent 25%),
    var(--navy);
}

.reviews::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 260px;
  right: -130px;
  bottom: -100px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: rotate(25deg);
}

.reviews-head {
  max-width: 800px;
  margin: 0 auto 55px;
  text-align: center;
}

.reviews-head p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  min-height: 290px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: #fff;
  border-radius: 5px;
}

.review-card .stars {
  color: #ffad00;
  letter-spacing: 3px;
}

.review-card blockquote {
  margin: 24px 0 auto;
  font-size: 17px;
  line-height: 1.6;
}

.review-card strong {
  margin-top: 25px;
  font-size: 13px;
}

.review-card > span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.site-footer {
  padding: 80px 0 24px;
  background: #fff;
}

.footer-grid {
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.9fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-grid > div:first-child > p {
  max-width: 300px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #777a80;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1040px) {
  .hero-grid {
    gap: 38px;
  }

  .visual-panel {
    min-height: 540px;
  }

  .phone-left {
    width: 198px;
    left: 18px;
  }

  .phone-center {
    width: 218px;
  }

  .phone-right {
    width: 190px;
    right: 14px;
  }

  .feature-grid,
  .freedom-grid {
    gap: 40px;
  }

  .feature-art {
    min-height: 530px;
  }

  .freedom-art {
    min-height: 520px;
  }

  .screen-one {
    width: 260px;
  }

  .screen-two {
    width: 210px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .header-inner {
    min-height: 76px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    inset: 76px 0 auto;
    padding: 28px 24px 34px;
    display: grid;
    gap: 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav a {
    font-size: 26px;
    font-weight: 850;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid,
  .feature-grid,
  .freedom-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    grid-row: 1;
    padding-right: 0;
  }

  .hero-visual {
    grid-row: 2;
  }

  .scribble-arrow {
    margin-left: 0;
  }

  .visual-panel {
    min-height: 600px;
  }

  .feature-grid,
  .freedom-grid {
    gap: 70px;
  }

  .feature-art {
    min-height: 620px;
  }

  .freedom-art {
    min-height: 600px;
  }

  .browser-frame {
    right: 0;
  }

  .floating-reader {
    left: 10px;
  }

  .source-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .benefit-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 190px;
  }

  .download-grid {
    padding-top: 90px;
  }

  .download-art {
    min-height: 620px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 520px);
  }

  .hero {
    padding-bottom: 76px;
  }

  .scribble-arrow {
    width: 88px;
    margin-bottom: 0;
  }

  h1 {
    font-size: 48px;
    letter-spacing: -2.6px;
  }

  h2 {
    font-size: 40px;
    letter-spacing: -2.4px;
  }

  .hero-lead,
  .feature-copy > p:not(.eyebrow),
  .freedom-copy > p:not(.eyebrow),
  .download-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .store-button {
    width: 100%;
  }

  .hero-proof {
    align-items: stretch;
    justify-content: space-between;
  }

  .visual-panel {
    min-height: 470px;
    border-radius: 48px 48px 16px 48px;
  }

  .phone-left {
    width: 145px;
    left: 8px;
    top: 148px;
    border-width: 5px;
  }

  .phone-center {
    width: 170px;
    top: 48px;
    border-width: 5px;
  }

  .phone-right {
    width: 142px;
    right: 7px;
    top: 152px;
    border-width: 5px;
  }

  .visual-label {
    left: 16px;
    bottom: 18px;
  }

  .ticker-wrap {
    margin-top: -20px;
  }

  .ticker {
    justify-content: flex-start;
    padding-left: 20px;
  }

  .section {
    padding: 88px 0;
  }

  .feature-art {
    min-height: 510px;
  }

  .browser-frame {
    top: 0;
  }

  .floating-reader {
    width: 170px;
    left: 4px;
    bottom: 0;
    border-width: 4px;
  }

  .art-badge {
    right: 4px;
    bottom: 26px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .freedom-art {
    min-height: 480px;
  }

  .cyan-blob {
    width: 330px;
    height: 330px;
    right: -20px;
  }

  .screen-one {
    width: 205px;
    left: 0;
  }

  .screen-two {
    width: 165px;
    right: 0;
  }

  .benefit-grid {
    margin-top: 50px;
  }

  .download-grid {
    min-height: auto;
  }

  .download-art {
    min-height: 510px;
  }

  .download-phone.back {
    width: 220px;
    right: -10px;
  }

  .download-phone.front {
    width: 205px;
    left: 0;
  }

  .faq-item button {
    font-size: 16px;
  }

  .faq-item.is-open .faq-answer p {
    padding-left: 0;
    padding-right: 0;
  }

  .reviews {
    padding: 90px 0;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
