:root {
  --ink: #131313;
  --muted: #666666;
  --soft: #fafafa;
  --line: #ebebeb;
  --card: #ffffff;
  --purple: #6153a3;
  --purple-2: #9585df;
  --shadow: 0 16px 40px rgba(31, 28, 55, 0.08);
  --radius: 12px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.page-glow {
  display: none;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 12px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  width: min(1080px, calc(100% - 32px));
  top: 12px;
  border: 1px solid rgba(235, 235, 235, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(25, 25, 25, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 21px;
  font-weight: 600;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--purple);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.main-nav a,
.site-footer a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--purple);
}

.nav-cta,
.button-primary,
.store-button {
  border-radius: 999px;
  background: radial-gradient(44% 71% at 52% 70%, #826fdb 0%, var(--purple) 100%);
  color: #fff;
  box-shadow: 0 4px 10px rgba(97, 83, 163, 0.12), 0 18px 18px rgba(97, 83, 163, 0.1),
    0 40px 24px rgba(97, 83, 163, 0.06);
}

.nav-cta {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
}

.section-pad {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 100px;
}

.hero {
  position: relative;
  max-width: none;
  min-height: 100vh;
  padding: 108px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  overflow: hidden;
  color: #fff;
  background: #0b0d15 url("assets/hero-bg.png")
    center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(3, 5, 18, 0.04), rgba(3, 5, 18, 0.34));
  pointer-events: none;
}

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

.hero-copy {
  width: min(806px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.eyebrow {
  width: fit-content;
  margin: 0;
  padding: 6px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

.hero .eyebrow {
  display: none;
}

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

h1 {
  max-width: 800px;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.2;
  font-weight: 600;
}

.hero-subtitle {
  max-width: 620px;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.nav-cta:hover,
.store-button:hover {
  transform: translateY(-2px);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: none;
}

.hero-visual {
  width: min(760px, 100%);
  height: min(54vh, 545px);
  min-height: 420px;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.18s ease;
}

.scan-phone {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(45vw, 365px);
  aspect-ratio: 365 / 742;
  transform: translateX(-50%);
  background: url("assets/hero-phone.png")
    center / contain no-repeat;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.28));
}

.phone-top,
.phone-screen {
  display: none;
}

.value-pill {
  position: absolute;
  z-index: 3;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.value-pill span,
.floating-card span {
  display: block;
  color: rgba(60, 60, 67, 0.62);
  font-size: 13px;
  line-height: 1.2;
}

.value-pill strong,
.floating-card strong {
  display: block;
  color: #363636;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.pill-top {
  top: 160px;
  left: 4%;
  width: 200px;
  height: 128px;
  padding: 16px;
  border-radius: 16px;
  transform: rotate(-6deg);
  animation: floatY 5s ease-in-out infinite;
}

.pill-bottom {
  left: 12%;
  bottom: 74px;
  width: 164px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  animation: floatY 5.5s ease-in-out infinite reverse;
}

.pill-bottom span {
  font-size: 0;
}

.pill-bottom span::before {
  content: "";
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  background: url("assets/avatar.png")
    center / cover;
  box-shadow: 30px 0 0 -1px #fff, 30px 0 0 0 rgba(255, 255, 255, 0.7), 60px 0 0 -1px #fff;
}

.pill-bottom strong {
  margin-left: 54px;
  font-size: 16px;
}

.floating-card {
  position: absolute;
  z-index: 2;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  animation: cardFloat 6s ease-in-out infinite;
}

.floating-card span,
.floating-card strong {
  display: none;
}

.mini-art,
.card-art {
  width: 100%;
  height: 100%;
  background: center / cover no-repeat;
}

.floating-card-one {
  top: 138px;
  right: 0;
  width: 140px;
  height: 195px;
  transform: rotate(-6deg);
  filter: blur(1.1px);
}

.floating-card-one .mini-art {
  background-image: url("assets/card-blue.png");
}

.floating-card-two {
  right: 12%;
  bottom: 44px;
  width: 206px;
  height: 288px;
  transform: rotate(5deg);
}

.floating-card-two .mini-art {
  background-image: url("assets/card-red.png");
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -2%;
  top: 164px;
  width: 158px;
  height: 220px;
  border-radius: 6px;
  background: url("assets/card-yellow.png")
    center / cover;
  transform: rotate(4deg);
  filter: blur(0.8px);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2,
.download-copy h2 {
  max-width: 760px;
  background: radial-gradient(55% 1455% at 50% 49%, var(--purple) 0%, var(--purple-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 600;
}

.section-heading p:not(.eyebrow),
.download-copy p,
.about-card p,
.feature-card p,
.step-card p,
.quote-card p,
.faq-list p,
.site-footer p,
.site-footer small {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

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

.about-card,
.feature-card,
.step-card,
.quote-card,
.faq-list details,
.download-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.about-card {
  min-height: 224px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  overflow: hidden;
  position: relative;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 24px;
  width: 146px;
  height: 162px;
  opacity: 0.9;
  background: center / contain no-repeat;
}

.about-card:nth-child(1)::before {
  background-image: url("assets/app-screen-scan.png");
}

.about-card:nth-child(2)::before {
  background-image: url("assets/collection-card-small.png");
}

.about-card:nth-child(3)::before {
  background-image: url("assets/value-illustration.png");
}

.about-card:nth-child(4)::before {
  background-image: url("assets/app-screen-detail.png");
}

.icon-chip,
.tag {
  width: fit-content;
  border: 1px solid #e2dcff;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--purple);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
}

.about-card h3,
.feature-card h3,
.step-card h3 {
  color: var(--purple);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.feature-card {
  min-height: 380px;
  border-width: 0 1px 1px 0;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
}

.feature-card:nth-child(even) {
  border-right-width: 0;
}

.feature-large {
  grid-column: 1 / -1;
  min-height: 324px;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
}

.feature-preview,
.market-preview,
.binder-preview,
.details-preview,
.tracker-preview {
  height: 280px;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  background: #fafafa url("assets/feature-bg.png")
    center / cover no-repeat;
}

.feature-large .feature-preview {
  height: 324px;
  background-image: url("assets/feature-scan-bg.png");
}

.feature-card h3,
.feature-card p,
.feature-card .tag {
  margin-left: 24px;
  margin-right: 24px;
}

.feature-card h3 {
  margin-top: 24px;
}

.feature-card p {
  margin-top: 10px;
  margin-bottom: 24px;
}

.feature-card .tag {
  margin-top: 24px;
  margin-bottom: -10px;
}

.scanner-card {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 156px;
  height: 216px;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
}

.scanner-card .card-art {
  background-image: url("assets/scan-split.png");
}

.scanner-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -18px;
  top: 50%;
  width: 192px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(#fff 0%, #d3d1df 100%);
  box-shadow: 0 2px 4px rgba(97, 83, 163, 0.5), 0 18px 11px rgba(97, 83, 163, 0.26);
  animation: scanPulse 2.5s ease-in-out infinite;
}

.scanner-card span {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--purple);
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.market-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.market-preview span {
  color: rgba(60, 60, 67, 0.62);
}

.market-preview strong {
  margin-top: 6px;
  color: #363636;
  font-size: 40px;
}

.market-preview svg {
  width: 100%;
  max-width: 280px;
  margin-top: 22px;
}

.market-preview path {
  fill: none;
  stroke: var(--purple);
  stroke-width: 6;
  stroke-linecap: round;
}

.binder-preview {
  display: grid;
  grid-template-columns: repeat(3, 82px);
  justify-content: center;
  align-content: center;
  gap: 10px;
}

.binder-preview span {
  height: 112px;
  border-radius: 6px;
  background: #fff center / cover no-repeat;
  box-shadow: var(--shadow);
}

.binder-preview span:nth-child(1) {
  background-image: url("assets/binder-card-1.png");
}

.binder-preview span:nth-child(2) {
  background-image: url("assets/binder-card-2.png");
}

.binder-preview span:nth-child(3) {
  background-image: url("assets/binder-card-3.png");
}

.details-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.details-preview .mini-art {
  width: 122px;
  height: 170px;
  border-radius: 6px;
  background-image: url("assets/details-card.jpg");
  box-shadow: var(--shadow);
}

.details-preview ul {
  width: 170px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.details-preview li {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  margin: 8px 0;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  box-shadow: 0 8px 20px rgba(31, 28, 55, 0.06);
}

.details-preview strong {
  color: var(--purple);
}

.tracker-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tracker-preview strong {
  color: var(--purple);
  font-size: 42px;
}

.tracker-preview span {
  color: var(--muted);
}

.progress {
  width: 230px;
  height: 10px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9e7f6;
}

.progress i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: var(--purple);
}

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

.step-card {
  min-height: 360px;
  padding: 16px;
  text-align: center;
  overflow: hidden;
}

.step-card > span {
  display: none;
}

.step-icon {
  height: 240px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: #fafafa center / contain no-repeat;
}

.camera-icon {
  background-image: url("assets/step-scan.png");
}

.value-icon {
  background-image: url("assets/card-red.png");
}

.binder-icon {
  background-image: url("assets/step-collection.png");
}

.step-card p {
  max-width: 220px;
  margin: 8px auto 0;
}

.testimonials {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.testimonials .section-heading {
  padding: 0 20px;
}

.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12.5%, #000 87.5%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12.5%, #000 87.5%, transparent);
}

.marquee + .marquee {
  margin-top: 16px;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee:nth-of-type(even) .marquee-track {
  animation-direction: reverse;
}

.quote-card {
  width: 350px;
  min-height: 318px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.quote-card p {
  font-size: 18px;
  line-height: 1.5;
}

.quote-card div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 4px 10px;
  align-items: center;
}

.quote-card span {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d7d1ff, #fff);
  color: var(--purple);
  font-weight: 800;
}

.quote-card strong {
  font-weight: 600;
}

.quote-card small {
  color: var(--muted);
  font-size: 14px;
}

.download {
  padding-top: 170px;
}

.download-panel {
  position: relative;
  min-height: 500px;
  padding: 40px;
  overflow: hidden;
}

.download-copy {
  width: min(415px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.download-copy .eyebrow {
  background: #f7f7f7;
}

.download-copy h2 {
  text-align: left;
}

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

.store-button {
  min-height: 48px;
  padding: 10px 18px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  font-weight: 600;
  min-width: 148px;
}

.store-button span {
  font-size: 10px;
  opacity: 0.8;
}

.store-button strong {
  font-size: 18px;
}

.download-stack {
  position: absolute;
  right: 100px;
  bottom: 0;
  width: 545px;
  height: 500px;
}

.stack-card {
  position: absolute;
  background: center / cover no-repeat;
}

.stack-one {
  right: 0;
  bottom: 0;
  width: 363px;
  height: 500px;
  background-image: url("assets/cta-phone.png");
}

.stack-two {
  left: 24px;
  bottom: -50px;
  width: 242px;
  height: 242px;
  transform: rotate(-12deg);
  background-image: url("assets/cta-ball-large.png");
}

.stack-three {
  left: 0;
  bottom: -38px;
  width: 145px;
  height: 145px;
  background-image: url("assets/cta-ball-small.png");
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.faq .section-heading {
  align-items: flex-start;
  margin: 0;
  text-align: left;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #282828;
  font-size: 18px;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid #e8e7e7;
  border-radius: 50%;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  padding: 0 16px 18px;
}

.site-footer {
  width: 100%;
  background: #fff;
  padding: 56px 100px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.site-footer .brand {
  color: var(--purple);
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

.site-footer > p {
  text-decoration: underline;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 160px;
  background: url("assets/footer-pattern.png")
    center top / contain no-repeat;
}

.policy-page {
  background: var(--soft);
}

.policy-main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 128px 0 72px;
}

.policy-content {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: clamp(24px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.policy-content .eyebrow {
  margin-bottom: 18px;
}

.policy-content h1 {
  color: var(--ink);
  font-size: clamp(34px, 6vw, 56px);
}

.policy-content h2 {
  margin-top: 34px;
  color: var(--purple);
  font-size: 22px;
  line-height: 1.25;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.policy-content p {
  margin-top: 14px;
}

.policy-date {
  color: var(--purple) !important;
  font-weight: 600;
}

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

.policy-content a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes floatY {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -16px;
  }
}

@keyframes cardFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 8px -14px;
  }
}

@keyframes scanPulse {
  0%,
  100% {
    top: 38%;
  }
  50% {
    top: 62%;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1199px) {
  .site-header {
    padding: 12px 40px;
  }

  .section-pad {
    padding-left: 40px;
    padding-right: 40px;
  }

  .feature-large {
    grid-template-columns: 1fr 1fr;
  }

  .download-panel {
    min-height: 911px;
  }

  .download-copy {
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .store-row {
    justify-content: center;
  }

  .download-copy h2 {
    text-align: center;
  }

  .download-stack {
    right: 50%;
    transform: translateX(50%);
  }

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

  .faq .section-heading {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 809px) {
  .site-header {
    width: 100%;
    padding: 12px 20px;
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    width: calc(100% - 24px);
  }

  .main-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 74px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    display: grid;
    place-items: center;
    gap: 0;
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.is-open .nav-toggle {
    background: #f3f1fb;
  }

  .nav-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    margin: 2px 0;
    border-radius: 999px;
    background: currentColor;
  }

  .nav-cta {
    padding: 10px 16px;
  }

  .section-pad {
    padding: 56px 20px;
  }

  .hero {
    min-height: 100vh;
    padding-top: 108px;
  }

  .hero-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-visual {
    min-height: 527px;
    height: 527px;
  }

  .scan-phone {
    width: 74%;
  }

  .pill-top {
    left: -14px;
    top: 216px;
    width: 159px;
    height: 102px;
  }

  .pill-top strong {
    font-size: 28px;
  }

  .pill-bottom {
    left: 15px;
    bottom: 80px;
    width: 139px;
    height: 41px;
  }

  .floating-card-one {
    right: -210px;
    top: 180px;
  }

  .floating-card-two {
    right: -66px;
    bottom: 132px;
    width: 168px;
    height: 235px;
  }

  .hero-visual::before {
    left: -221px;
  }

  .about-grid,
  .bento-grid,
  .step-row {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:nth-child(even) {
    border-right-width: 0;
  }

  .feature-preview,
  .market-preview,
  .binder-preview,
  .details-preview,
  .tracker-preview {
    height: 250px;
  }

  .site-footer {
    padding: 56px 20px 30px;
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .site-footer nav {
    flex-direction: column;
  }

  .download {
    padding-top: 56px;
  }

  .download-panel {
    min-height: 715px;
    padding: 24px 16px;
  }

  .download-stack {
    left: 20px;
    right: 20px;
    bottom: 56px;
    width: auto;
    height: 210px;
    transform: none;
  }

  .stack-one {
    width: 235px;
    height: 324px;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
  }

  .stack-two {
    width: 210px;
    height: 210px;
    right: -86px;
    left: auto;
    bottom: -29px;
  }

  .stack-three {
    width: 122px;
    height: 122px;
    left: 8px;
    bottom: -14px;
  }
}

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