:root {
  --brand: #5b4fe5;
  --brand-dark: #3b31b8;
  --ink: #17151f;
  --muted: #68647a;
  --paper: #ffffff;
  --lavender: #f5f5fb;
  --dark: #0b0b14;
  --dark-soft: #111118;
  --yellow: #ffd95f;
  --coral: #ff7a59;
  --mint: #35d6a4;
  --blue: #5ab8ff;
  --pink: #ff77c8;
  --line: rgba(23, 21, 31, 0.1);
  --shadow: 0 22px 70px rgba(26, 21, 82, 0.18);
  --dark-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --font-display: "Fredoka", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --font-body: "Manrope", "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  padding-bottom: 108px;
  background: var(--lavender);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(22, 18, 76, 0.14);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-logo {
  width: 132px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 10px 24px rgba(91, 79, 229, 0.3);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: #302c42;
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  background: rgba(91, 79, 229, 0.1);
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 28px rgba(91, 79, 229, 0.24);
}

.site-nav .nav-cta:hover {
  background: var(--brand-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-2px) rotate(-90deg);
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: -92px;
  padding: 150px 24px 64px;
  background:
    linear-gradient(120deg, rgba(91, 79, 229, 0.2), transparent 36%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 88px),
    linear-gradient(135deg, #0b0b14 0%, #141225 54%, #25195b 100%);
  color: #fff;
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -2px;
  left: -8%;
  height: 88px;
  background: var(--lavender);
  clip-path: polygon(0 44%, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 50px;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
}

.hero-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
}

.hero-logo-lockup img {
  width: 156px;
  max-height: 52px;
  object-fit: contain;
}

.hero-logo-lockup span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark-section .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  max-width: 710px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 5.25rem;
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: 0;
  text-shadow: 0 9px 0 rgba(0, 0, 0, 0.16);
}

.hero h1 span {
  color: var(--yellow);
}

.hero-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
}

.hero-actions,
.support-links,
.store-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: 900 0.98rem/1 var(--font-body);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px) scale(1.02);
}

.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 18px 40px rgba(91, 79, 229, 0.34);
}

.button-primary:hover {
  background: #6b60ff;
  box-shadow: 0 24px 50px rgba(91, 79, 229, 0.46);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}

.button-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.hero-note {
  display: inline-flex;
  margin: 22px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 217, 95, 0.13);
  color: #fff0b3;
  font-size: 0.9rem;
  font-weight: 800;
}

.preview-stage {
  position: relative;
  min-height: 690px;
  perspective: 1000px;
}

.phone-shell {
  overflow: hidden;
  border: 10px solid #191622;
  border-radius: 38px;
  background: #121018;
  box-shadow: var(--dark-shadow);
}

.phone-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  position: absolute;
  right: 84px;
  top: 28px;
  z-index: 2;
  width: 294px;
  aspect-ratio: 9 / 20;
  transform: rotate(4deg);
}

.phone-secondary {
  position: absolute;
  right: 290px;
  top: 145px;
  z-index: 1;
  width: 218px;
  aspect-ratio: 9 / 20;
  opacity: 0.96;
  transform: rotate(-9deg);
}

.float-sticker {
  position: absolute;
  z-index: 3;
  width: var(--sticker-size, 130px);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28));
  transform: translateY(var(--float-y, 0)) rotate(calc(var(--base-r, 0deg) + var(--float-r, 0deg)));
  transition: transform 120ms linear;
}

.sticker-a {
  --sticker-size: 142px;
  --base-r: -14deg;
  top: 42px;
  right: 344px;
}

.sticker-b {
  --sticker-size: 150px;
  --base-r: 12deg;
  top: 90px;
  right: 12px;
}

.sticker-c {
  --sticker-size: 112px;
  --base-r: -8deg;
  right: 18px;
  bottom: 158px;
}

.sticker-d {
  --sticker-size: 132px;
  --base-r: 16deg;
  right: 380px;
  bottom: 104px;
}

.scroll-cue {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0 calc((100% - min(1180px, 100%)) / 2);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.scroll-cue span {
  display: grid;
  width: 26px;
  height: 42px;
  place-items: start center;
  border: 2px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
}

.scroll-cue span::after {
  width: 4px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  animation: cue 1.5s ease-in-out infinite;
}

.section {
  padding: 96px 24px;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.closing-cta h2,
.page-hero h1 {
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading-light h2,
.section-heading-light p:not(.eyebrow) {
  color: #fff;
}

.feature-section {
  position: relative;
  background: var(--lavender);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.feature-card,
.roadmap-card,
.bubble-card,
.steps li {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.feature-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.83);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover {
  border-color: rgba(91, 79, 229, 0.28);
  box-shadow: 0 30px 76px rgba(26, 21, 82, 0.23);
  transform: translateY(-6px);
}

.feature-card h3,
.roadmap-card h3,
.bubble-card h3,
.steps h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.58rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.feature-card p,
.roadmap-card p,
.bubble-card p,
.steps p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.feature-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.icon-purple {
  background: var(--brand);
}

.icon-blue {
  background: var(--blue);
}

.icon-coral {
  background: var(--coral);
}

.icon-green {
  background: var(--mint);
}

.icon-yellow {
  background: var(--yellow);
  color: var(--ink);
}

.icon-pink {
  background: var(--pink);
}

.feature-sticker {
  position: absolute;
  right: -4px;
  top: -8px;
  width: 118px;
  max-width: 42%;
  opacity: 0.9;
  transform: rotate(10deg);
  filter: drop-shadow(0 12px 18px rgba(42, 34, 106, 0.16));
}

.dark-section {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 96px),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 56%, #171037 100%);
  color: #fff;
}

.why-section {
  padding-top: 104px;
  padding-bottom: 112px;
}

.bubble-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.bubble-card {
  overflow: visible;
  min-height: 258px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.bubble-card::after {
  position: absolute;
  right: 28px;
  bottom: -13px;
  width: 28px;
  height: 28px;
  border-radius: 0 0 8px 0;
  background: inherit;
  content: "";
  transform: rotate(45deg);
}

.bubble-card h3,
.bubble-card p {
  color: #fff;
}

.bubble-card p {
  color: rgba(255, 255, 255, 0.72);
}

.bubble-card-yellow {
  background: rgba(255, 217, 95, 0.14);
  border-color: rgba(255, 217, 95, 0.24);
}

.bubble-kicker {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bubble-card-yellow .bubble-kicker {
  background: var(--yellow);
  color: var(--ink);
}

.steps-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8f7ff 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 285px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--brand);
  background: #fff;
  box-shadow: var(--shadow);
}

.steps li:nth-child(2) {
  border-top-color: var(--yellow);
}

.steps li:nth-child(3) {
  border-top-color: var(--coral);
}

.steps li:nth-child(4) {
  border-top-color: var(--mint);
}

.steps li > span {
  display: block;
  margin-bottom: 32px;
  color: var(--brand);
  font-family: var(--font-display);
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 0.85;
  text-shadow: 0 5px 0 rgba(255, 217, 95, 0.52);
}

.sticker-wall-section {
  padding-bottom: 126px;
}

.sticker-wall {
  position: relative;
  overflow: hidden;
  width: min(1120px, 100%);
  min-height: 560px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 217, 95, 0.1), transparent 28%),
    linear-gradient(225deg, rgba(91, 79, 229, 0.22), transparent 38%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--dark-shadow);
}

.wall-sticker {
  position: absolute;
  width: var(--wall-size, 136px);
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.28));
  transform: translateY(var(--float-y, 0)) rotate(calc(var(--base-r, 0deg) + var(--float-r, 0deg)));
  transition: transform 120ms linear;
}

.wall-1 {
  --wall-size: 154px;
  --base-r: -11deg;
  left: 8%;
  top: 10%;
}

.wall-2 {
  --wall-size: 132px;
  --base-r: 13deg;
  left: 28%;
  top: 18%;
}

.wall-3 {
  --wall-size: 170px;
  --base-r: -8deg;
  right: 29%;
  top: 8%;
}

.wall-4 {
  --wall-size: 136px;
  --base-r: 15deg;
  right: 8%;
  top: 18%;
}

.wall-5 {
  --wall-size: 124px;
  --base-r: -18deg;
  left: 15%;
  bottom: 12%;
}

.wall-6 {
  --wall-size: 166px;
  --base-r: 8deg;
  left: 42%;
  bottom: 7%;
}

.wall-7 {
  --wall-size: 136px;
  --base-r: -5deg;
  right: 17%;
  bottom: 14%;
}

.wall-8 {
  --wall-size: 118px;
  --base-r: 19deg;
  left: 4%;
  top: 46%;
}

.wall-9 {
  --wall-size: 126px;
  --base-r: -13deg;
  right: 4%;
  bottom: 36%;
}

.wall-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 15px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
}

.tag-a {
  left: 18%;
  top: 38%;
  background: var(--yellow);
  color: var(--ink);
  transform: rotate(-8deg);
}

.tag-b {
  right: 22%;
  top: 36%;
  background: var(--brand);
  color: #fff;
  transform: rotate(8deg);
}

.tag-c {
  left: 34%;
  bottom: 30%;
  background: #fff;
  color: var(--brand-dark);
  transform: rotate(5deg);
}

.tag-d {
  right: 8%;
  bottom: 18%;
  background: var(--coral);
  color: #fff;
  transform: rotate(-7deg);
}

.tag-e {
  left: 9%;
  bottom: 32%;
  background: #15121d;
  color: #fff;
  transform: rotate(7deg);
}

.roadmap-section {
  background: var(--lavender);
}

.roadmap-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.roadmap-card {
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(23, 21, 31, 0.08);
  background: #fff;
  box-shadow: var(--shadow);
}

.status-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  margin-bottom: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.status-planned {
  background: var(--brand);
}

.status-research {
  background: var(--coral);
}

.status-roadmap {
  background: #17151f;
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 76px max(24px, calc((100% - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 46%),
    var(--yellow);
  color: var(--ink);
}

.closing-cta .eyebrow {
  color: var(--brand-dark);
}

.closing-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 56px max(24px, calc((100% - 1180px) / 2)) 72px;
  background: var(--dark);
  color: #fff;
}

.site-footer .brand {
  color: #fff;
}

.footer-brand p,
.site-footer p {
  max-width: 420px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.footer-links a:hover,
.text-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

.sticky-download {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(11, 11, 20, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.sticky-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-left: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}

.sticky-brand img {
  width: 94px;
  max-height: 32px;
  object-fit: contain;
}

.store-download-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 158px;
  height: 50px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #050507;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.store-download-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 34px rgba(91, 79, 229, 0.28);
}

.store-badge-icon {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  place-items: center;
  overflow: hidden;
  border-radius: 7px;
}

.store-badge-icon img {
  display: block;
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.store-badge-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
  line-height: 1;
}

.store-badge-kicker {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.store-badge-name {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.content-page {
  width: min(980px, calc(100% - 32px));
  margin: 56px auto 96px;
}

.page-hero {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
  padding: 38px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin-bottom: 8px;
}

.page-intro {
  margin: 0;
  color: var(--muted);
}

.page-icon {
  display: grid;
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 18px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.content-panel {
  padding: 42px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.content-panel h2,
.content-panel h3 {
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0;
}

.content-panel h2 {
  margin-top: 34px;
  font-size: 2rem;
}

.content-panel h3 {
  margin-top: 26px;
  font-size: 1.35rem;
}

.content-panel p,
.content-panel li {
  color: #4c485d;
}

.content-panel a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.compact-footer {
  display: block;
  text-align: center;
}

.compact-footer p {
  max-width: none;
  margin: 0;
}

@keyframes cue {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .preview-stage {
    min-height: 560px;
  }

  .phone-main {
    right: calc(50% - 210px);
    top: 0;
  }

  .phone-secondary {
    right: calc(50% + 56px);
    top: 114px;
  }

  .sticker-a {
    right: calc(50% + 160px);
  }

  .sticker-b {
    right: calc(50% - 292px);
  }

  .sticker-c {
    right: calc(50% - 292px);
  }

  .sticker-d {
    right: calc(50% + 160px);
  }

  .feature-grid,
  .bubble-grid,
  .steps,
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 152px;
  }

  .site-header {
    width: min(100% - 24px, 720px);
    min-height: 66px;
    margin-top: 10px;
    padding: 10px 10px 10px 14px;
  }

  .brand-logo {
    width: 114px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 86px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    justify-content: center;
  }

  .hero {
    margin-top: -76px;
    padding: 122px 18px 52px;
  }

  .hero-logo-lockup {
    gap: 10px;
    margin-bottom: 18px;
  }

  .hero-logo-lockup img {
    width: 126px;
  }

  .hero-logo-lockup span {
    display: none;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .preview-stage {
    min-height: 500px;
  }

  .phone-main {
    right: calc(50% - 142px);
    width: 238px;
  }

  .phone-secondary {
    right: calc(50% + 18px);
    top: 120px;
    width: 170px;
  }

  .float-sticker {
    --sticker-size: 94px;
  }

  .sticker-a {
    right: calc(50% + 116px);
    top: 40px;
  }

  .sticker-b {
    right: calc(50% - 204px);
    top: 72px;
  }

  .sticker-c {
    right: calc(50% - 196px);
    bottom: 112px;
  }

  .sticker-d {
    right: calc(50% + 112px);
    bottom: 98px;
  }

  .section {
    padding: 72px 18px;
  }

  .section-heading h2,
  .closing-cta h2,
  .page-hero h1 {
    font-size: 2.72rem;
  }

  .feature-grid,
  .bubble-grid,
  .steps,
  .roadmap-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .sticker-wall {
    min-height: 640px;
  }

  .wall-sticker {
    width: calc(var(--wall-size, 136px) * 0.75);
  }

  .tag-a {
    left: 10%;
    top: 35%;
  }

  .tag-b {
    right: 8%;
    top: 42%;
  }

  .tag-c {
    left: 18%;
    bottom: 36%;
  }

  .tag-d {
    right: 12%;
    bottom: 16%;
  }

  .tag-e {
    left: 8%;
    bottom: 22%;
  }

  .closing-cta {
    grid-template-columns: 1fr;
    padding: 62px 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 48px 18px 70px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .sticky-download {
    align-items: stretch;
    flex-direction: column;
    width: min(520px, calc(100% - 24px));
    border-radius: 24px;
  }

  .sticky-brand {
    justify-content: center;
    padding-left: 0;
  }

  .store-actions {
    display: flex;
    justify-content: center;
  }
  .store-download-badge {
    flex: 1 1 0;
    width: auto;
  }

  .page-hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

  .content-panel {
    padding: 28px;
  }
}

@media (max-width: 420px) {
  body {
    padding-bottom: 168px;
  }

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .preview-stage {
    min-height: 420px;
  }

  .phone-shell {
    border-width: 7px;
    border-radius: 28px;
  }

  .phone-main {
    right: calc(50% - 118px);
    width: 198px;
  }

  .phone-secondary {
    right: calc(50% + 10px);
    top: 112px;
    width: 138px;
  }

  .float-sticker {
    --sticker-size: 72px;
  }

  .sticker-a {
    right: calc(50% + 82px);
  }

  .sticker-b {
    right: calc(50% - 160px);
  }

  .sticker-c {
    right: calc(50% - 152px);
    bottom: 90px;
  }

  .sticker-d {
    right: calc(50% + 84px);
    bottom: 76px;
  }

  .scroll-cue {
    margin-left: 0;
  }

  .section-heading h2,
  .closing-cta h2,
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .feature-card,
  .roadmap-card,
  .bubble-card,
  .steps li,
  .content-panel,
  .page-hero {
    padding: 24px;
  }

  .sticker-wall {
    min-height: 610px;
  }

  .wall-sticker {
    width: calc(var(--wall-size, 136px) * 0.58);
  }

  .wall-tag {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.76rem;
  }

  .store-actions {
    gap: 6px;
  }
  .store-download-badge {
    height: 46px;
    padding: 6px 11px;
  }

  .store-badge-name {
    font-size: 0.94rem;
  }

  .store-badge-kicker {
    font-size: 0.54rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .float-sticker,
  .wall-sticker {
    transform: rotate(var(--base-r, 0deg));
  }
}
