:root {
  color-scheme: dark;
  --ink: #061018;
  --ink-soft: #0a1821;
  --night: #020a10;
  --paper: #f6f3ea;
  --white: #ffffff;
  --cloud: #e8edf0;
  --muted: #9ca9b1;
  --muted-dark: #66747c;
  --cyan: #74e8ff;
  --blue: #6da5ff;
  --mint: #87f4cb;
  --lilac: #bf9cff;
  --peach: #ffb596;
  --yellow: #ffe58a;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(6, 16, 24, 0.12);
  --display: "SF Pro Display", "Helvetica Neue", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, "Baskerville", "Times New Roman", serif;
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--white);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

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

button {
  color: inherit;
}

::selection {
  background: var(--cyan);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  transition:
    padding 240ms ease,
    background 240ms ease,
    border-color 240ms ease;
}

.site-header.scrolled {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 10, 16, 0.78);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
}

.nav-shell,
.hero-shell,
.section-shell,
.footer-shell,
.footer-bottom {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(116, 232, 255, 0.16);
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
}

.site-nav a {
  position: relative;
  color: #bac4ca;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 43px;
  width: fit-content;
  align-items: center;
  justify-self: end;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 142px 0 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(90, 166, 255, 0.12), transparent 25%),
    linear-gradient(180deg, #030d15 0%, #04131d 68%, #061621 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 62px 62px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 82%);
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.aurora-one {
  top: 8%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: var(--cyan);
}

.aurora-two {
  right: 22%;
  bottom: 2%;
  width: 360px;
  height: 360px;
  background: var(--lilac);
  opacity: 0.18;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 230px);
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  padding-bottom: 74px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: 30px 0 44px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 23px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(135, 244, 203, 0.11);
}

.hero h1 {
  margin: 0;
  color: #f7fbfc;
  font-size: clamp(68px, 7.1vw, 112px);
  font-weight: 720;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.hero h1 span,
.section-heading h2 em,
.collection-copy h2 em,
.how-intro h2 em,
.final-copy h2 em {
  color: var(--cyan);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero h1 span {
  display: inline-block;
  padding-right: 0.06em;
  font-style: italic;
}

.hero-lede {
  max-width: 560px;
  margin: 30px 0 0;
  color: #aebac1;
  font-size: clamp(18px, 1.55vw, 22px);
  letter-spacing: -0.025em;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.app-store-button {
  display: inline-block;
  width: fit-content;
  line-height: 0;
  text-decoration: none;
}

.app-store-badge {
  display: block;
  width: 180px;
  height: auto;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #d7dfe3;
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: #73838c;
  content: "";
  transition: background 180ms ease;
}

.text-link:hover::after {
  background: var(--cyan);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 31px;
  color: #81909a;
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.025em;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof b {
  color: var(--mint);
  font-size: 12px;
}

.hero-proof i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #56666f;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 670px;
  place-items: center;
  perspective: 1100px;
}

.hero-stage::before {
  position: absolute;
  width: min(590px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(116, 232, 255, 0.2), rgba(109, 165, 255, 0.08) 38%, transparent 70%);
  content: "";
  filter: blur(2px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(116, 232, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 570px;
  height: 570px;
  animation: orbit-spin 30s linear infinite;
}

.orbit-one::before,
.orbit-two::before {
  position: absolute;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  content: "";
}

.orbit-one::before {
  top: 65px;
  right: 70px;
  width: 6px;
  height: 6px;
}

.orbit-two {
  width: 450px;
  height: 450px;
  border-style: dashed;
  opacity: 0.7;
  animation: orbit-spin 24s linear infinite reverse;
}

.orbit-two::before {
  bottom: 35px;
  left: 112px;
  width: 4px;
  height: 4px;
  background: var(--lilac);
  box-shadow: 0 0 15px var(--lilac);
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.phone {
  position: relative;
  z-index: 3;
  width: 330px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 54px;
  background: linear-gradient(145deg, #35414a, #11191f 35%, #56616a 52%, #151c21);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: rotate(2.5deg);
  transition: transform 260ms ease;
}

.phone::before,
.phone::after {
  position: absolute;
  left: -4px;
  width: 3px;
  border-radius: 4px 0 0 4px;
  background: #38434b;
  content: "";
}

.phone::before {
  top: 136px;
  height: 65px;
}

.phone::after {
  top: 218px;
  height: 92px;
}

.phone-frame {
  position: relative;
  min-height: 642px;
  overflow: hidden;
  border-radius: 46px;
  background: #f4f3ee;
  color: var(--ink);
}

.phone-top {
  display: flex;
  height: 31px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 10px;
  font-weight: 800;
}

.dynamic-island {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 92px;
  height: 23px;
  border-radius: 999px;
  background: #030303;
  transform: translateX(-50%);
}

.phone-signals {
  font-size: 8px;
  letter-spacing: 2px;
}

.app-topbar {
  display: grid;
  height: 47px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
}

.app-topbar span {
  font-size: 14px;
  font-weight: 790;
  letter-spacing: -0.02em;
}

.app-topbar button {
  width: 29px;
  height: 29px;
  border: 1px solid rgba(6, 16, 24, 0.08);
  border-radius: 50%;
  background: rgba(6, 16, 24, 0.045);
  color: #45525a;
  line-height: 1;
}

.app-topbar button:last-child {
  justify-self: end;
  font-size: 11px;
}

.mode-tabs {
  display: flex;
  width: calc(100% - 28px);
  height: 37px;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto 11px;
  padding: 3px;
  border-radius: 12px;
  background: #e8e8e4;
  color: #7b858a;
  font-size: 10px;
  font-weight: 750;
}

.mode-tabs span {
  display: grid;
  height: 100%;
  min-width: 82px;
  place-items: center;
  border-radius: 9px;
}

.mode-tabs .active {
  background: var(--white);
  box-shadow: 0 3px 10px rgba(6, 16, 24, 0.08);
  color: var(--ink);
}

.creation-canvas {
  position: relative;
  display: grid;
  width: calc(100% - 28px);
  height: 380px;
  place-items: center;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid rgba(6, 16, 24, 0.07);
  border-radius: 25px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 229, 138, 0.34), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(116, 232, 255, 0.42), transparent 30%),
    radial-gradient(circle at 50% 38%, #e9fbff, #dcebf5 62%, #cfdfeb);
}

.canvas-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 71, 103, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 71, 103, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
}

.creation-canvas::before {
  position: absolute;
  top: -70px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(191, 156, 255, 0.18);
  content: "";
  filter: blur(8px);
}

.creation-canvas::after {
  position: absolute;
  bottom: -90px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(135, 244, 203, 0.22);
  content: "";
  filter: blur(10px);
}

.hero-character {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 315px;
  object-fit: contain;
  filter: drop-shadow(0 22px 18px rgba(35, 94, 121, 0.18));
  animation: character-float 4.5s ease-in-out infinite;
}

@keyframes character-float {
  0%,
  100% {
    transform: translateY(2px) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

.spark {
  position: absolute;
  z-index: 3;
  color: #619cb7;
  animation: spark-pulse 2.2s ease-in-out infinite;
}

.spark-one {
  top: 67px;
  left: 48px;
  font-size: 17px;
}

.spark-two {
  right: 42px;
  bottom: 83px;
  color: #9b7fd5;
  font-size: 12px;
  animation-delay: -0.8s;
}

@keyframes spark-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.8) rotate(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(18deg);
  }
}

.sketch-line {
  position: absolute;
  z-index: 1;
  border: 2px dashed rgba(73, 116, 137, 0.16);
  border-radius: 50%;
}

.sketch-line-one {
  width: 310px;
  height: 190px;
  transform: rotate(-16deg);
}

.sketch-line-two {
  width: 250px;
  height: 310px;
  transform: rotate(24deg);
}

.result-pill {
  position: absolute;
  z-index: 4;
  bottom: 15px;
  left: 50%;
  display: flex;
  height: 30px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 7px 20px rgba(20, 63, 85, 0.1);
  color: #405662;
  font-size: 9px;
  font-weight: 750;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
  white-space: nowrap;
}

.result-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #37c98a;
  box-shadow: 0 0 0 3px rgba(55, 201, 138, 0.13);
}

.prompt-row {
  display: flex;
  width: calc(100% - 28px);
  height: 62px;
  align-items: center;
  justify-content: space-between;
  margin: 11px auto 0;
  padding: 0 9px 0 14px;
  border: 1px solid rgba(6, 16, 24, 0.08);
  border-radius: 17px;
  background: var(--white);
}

.prompt-row span,
.prompt-row strong {
  display: block;
}

.prompt-row span {
  color: #8e999e;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prompt-row strong {
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: -0.02em;
}

.prompt-row button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 13px;
  background: var(--ink);
  color: var(--white);
}

.phone-home {
  width: 95px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: #20262a;
}

.float-card {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 22, 32, 0.72);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
  color: #e6f0f4;
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.float-card-one {
  top: 102px;
  left: 6px;
  display: flex;
  width: 156px;
  min-height: 128px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 23px;
  color: #a9b8c0;
  font-size: 9px;
  font-weight: 700;
  transform: rotate(-8deg);
  animation: side-float 5.2s ease-in-out infinite;
}

.doodle-face {
  position: relative;
  width: 72px;
  height: 61px;
  margin-top: 5px;
  border: 2px solid #a5dbe9;
  border-radius: 52% 48% 46% 54%;
  transform: rotate(5deg);
}

.doodle-face::before,
.doodle-face::after {
  position: absolute;
  top: -14px;
  width: 25px;
  height: 27px;
  border: 2px solid #a5dbe9;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  content: "";
}

.doodle-face::before {
  left: 5px;
  transform: rotate(-22deg);
}

.doodle-face::after {
  right: 4px;
  transform: rotate(24deg);
}

.doodle-face i {
  position: absolute;
  top: 23px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a5dbe9;
}

.doodle-face i:first-child {
  left: 21px;
}

.doodle-face i:nth-child(2) {
  right: 20px;
}

.doodle-face b {
  position: absolute;
  bottom: 12px;
  left: 50%;
  width: 19px;
  height: 9px;
  border-bottom: 2px solid #a5dbe9;
  border-radius: 50%;
  transform: translateX(-50%);
}

.float-card-two {
  right: -4px;
  bottom: 106px;
  display: flex;
  min-width: 193px;
  min-height: 68px;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border-radius: 19px;
  transform: rotate(5deg);
  animation: side-float 5.8s ease-in-out -1.5s infinite;
}

.float-card-two > span:last-child {
  display: flex;
  flex-direction: column;
  color: #8999a2;
  font-size: 8px;
  font-weight: 650;
}

.float-card-two b {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 10px;
}

.mini-check {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: rgba(135, 244, 203, 0.13);
  color: var(--mint);
  font-size: 15px;
}

@keyframes side-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

.float-sticker {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.float-sticker::before {
  position: absolute;
  inset: 12%;
  border-radius: 38%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 46px rgba(116, 232, 255, 0.18);
  content: "";
  filter: blur(10px);
}

.float-sticker img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
}

.sticker-float-one {
  top: 24px;
  right: 18px;
  width: 136px;
  transform: rotate(12deg);
  animation: sticker-drift 6s ease-in-out infinite;
}

.sticker-float-two {
  bottom: 45px;
  left: 22px;
  width: 118px;
  transform: rotate(-13deg);
  animation: sticker-drift 6.6s ease-in-out -2s infinite reverse;
}

@keyframes sticker-drift {
  0%,
  100% {
    translate: 0 0;
    rotate: -2deg;
  }
  50% {
    translate: 0 -14px;
    rotate: 3deg;
  }
}

.sticker-ribbon {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(116, 232, 255, 0.1), transparent 30%, rgba(135, 244, 203, 0.09)),
    rgba(4, 18, 27, 0.76);
}

.ribbon-track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.ribbon-item {
  display: flex;
  min-width: 238px;
  height: 92px;
  align-items: center;
  gap: 13px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: #c5cfd4;
  font-size: 13px;
  font-weight: 700;
}

.ribbon-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.27));
}

.ribbon-item:nth-child(3n + 1) img {
  transform: rotate(-7deg);
}

.ribbon-item:nth-child(3n + 2) img {
  transform: rotate(5deg);
}

.ribbon-item:nth-child(3n) img {
  transform: rotate(2deg);
}

.ribbon-item i {
  margin-left: auto;
  color: #476372;
  font-style: normal;
  font-size: 10px;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding: 150px 0;
}

.create-section {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  column-gap: 90px;
}

.section-heading .kicker,
.collection-copy .kicker,
.how-intro .kicker {
  grid-column: 1 / -1;
  color: #2d7187;
}

.section-heading h2,
.collection-copy h2,
.how-intro h2,
.final-copy h2 {
  margin: 0;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.section-heading h2 em,
.collection-copy h2 em,
.how-intro h2 em {
  color: #29677a;
  font-style: italic;
}

.section-heading > p:last-child {
  align-self: end;
  max-width: 390px;
  margin: 0 0 7px;
  color: var(--muted-dark);
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.create-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 74px;
}

.feature-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: #ecece7;
}

.feature-card:first-child {
  grid-row: 1 / span 2;
  min-height: 740px;
}

.feature-card:not(:first-child) {
  min-height: 361px;
}

.card-copy {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  padding: 31px 34px;
}

.card-number {
  color: #7f8c91;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.card-copy h3 {
  margin: -5px 0 7px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.card-copy p {
  max-width: 390px;
  margin: 0;
  color: #657179;
  font-size: 14px;
  line-height: 1.5;
}

.draw-card {
  background:
    radial-gradient(circle at 70% 70%, rgba(116, 232, 255, 0.28), transparent 38%),
    #e6f0ef;
}

.draw-demo {
  position: absolute;
  inset: 150px 30px 30px;
  overflow: hidden;
  border: 1px solid rgba(16, 74, 84, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 50px rgba(66, 152, 161, 0.08);
}

.draw-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(38, 94, 101, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(circle, black, transparent 78%);
  mask-image: radial-gradient(circle, black, transparent 78%);
}

.pencil {
  position: absolute;
  z-index: 3;
  right: 15%;
  bottom: 25%;
  color: #27798a;
  font-family: var(--serif);
  font-size: 53px;
  transform: rotate(-36deg);
}

.pencil::after {
  position: absolute;
  right: 23px;
  bottom: 6px;
  width: 126px;
  height: 64px;
  border-bottom: 3px solid #4d98a4;
  border-radius: 0 0 50% 50%;
  content: "";
  transform: rotate(25deg);
}

.drawn-creature {
  position: absolute;
  top: 47%;
  left: 48%;
  width: 240px;
  height: 220px;
  border: 5px solid #27798a;
  border-radius: 44% 52% 48% 46%;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.drawn-creature .ear {
  position: absolute;
  top: -47px;
  width: 80px;
  height: 94px;
  border: 5px solid #27798a;
  border-bottom: 0;
  border-radius: 62% 58% 0 0;
  background: rgba(237, 250, 248, 0.94);
}

.drawn-creature .ear.left {
  left: 17px;
  transform: rotate(-22deg);
}

.drawn-creature .ear.right {
  right: 12px;
  transform: rotate(25deg);
}

.drawn-creature .face {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: rgba(240, 252, 250, 0.9);
}

.drawn-creature .face i {
  position: absolute;
  top: 82px;
  width: 17px;
  height: 22px;
  border-radius: 50%;
  background: #27798a;
}

.drawn-creature .face i:first-child {
  left: 63px;
}

.drawn-creature .face i:nth-child(2) {
  right: 60px;
}

.drawn-creature .face b {
  position: absolute;
  bottom: 56px;
  left: 50%;
  width: 56px;
  height: 27px;
  border-bottom: 5px solid #27798a;
  border-radius: 50%;
  transform: translateX(-50%);
}

.draw-caption {
  position: absolute;
  bottom: 20px;
  left: 22px;
  color: #63848a;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.describe-card {
  background:
    radial-gradient(circle at 80% 120%, rgba(191, 156, 255, 0.25), transparent 45%),
    #ece7f1;
}

.prompt-demo {
  position: absolute;
  right: 30px;
  bottom: 27px;
  left: 30px;
  min-height: 178px;
  padding: 21px 22px;
  border: 1px solid rgba(68, 42, 91, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.prompt-label {
  color: #8d7b98;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.prompt-demo p {
  max-width: 400px;
  margin: 10px 0 15px;
  color: #362b3f;
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 22px);
  font-style: italic;
  line-height: 1.23;
}

.typing-cursor {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 3px;
  background: #8152a1;
  vertical-align: -2px;
  animation: cursor 1s steps(2, end) infinite;
}

@keyframes cursor {
  50% {
    opacity: 0;
  }
}

.prompt-tags {
  display: flex;
  gap: 6px;
}

.prompt-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #e8dfed;
  color: #776381;
  font-size: 8px;
  font-weight: 750;
}

.prompt-spark {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #a178b8;
  font-size: 14px;
}

.photo-card {
  background:
    radial-gradient(circle at 80% 100%, rgba(255, 181, 150, 0.23), transparent 40%),
    #efe9e1;
}

.photo-demo {
  position: absolute;
  right: 31px;
  bottom: 24px;
  left: 31px;
  display: grid;
  height: 170px;
  grid-template-columns: 1fr 52px 1fr;
  align-items: center;
}

.source-photo,
.photo-result {
  position: relative;
  height: 154px;
  overflow: hidden;
  border: 1px solid rgba(6, 16, 24, 0.1);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(68, 48, 36, 0.08);
}

.source-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.source-photo span,
.photo-result span {
  position: absolute;
  bottom: 9px;
  left: 9px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #5a5f60;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.photo-result {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 229, 138, 0.3), transparent 44%),
    #fff8ec;
}

.photo-result img {
  width: 136px;
  height: 136px;
  object-fit: contain;
  filter: drop-shadow(0 9px 9px rgba(68, 48, 36, 0.1));
}

.photo-arrow {
  display: grid;
  justify-items: center;
  color: #a87358;
}

.photo-arrow span {
  font-size: 17px;
}

.photo-arrow i {
  width: 27px;
  height: 1px;
  margin-top: 6px;
  background: #bf9b87;
}

.collection-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 40%, rgba(88, 189, 217, 0.16), transparent 30%),
    #061620;
}

.collection-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  -webkit-mask-image: linear-gradient(90deg, transparent 40%, black);
  mask-image: linear-gradient(90deg, transparent 40%, black);
}

.collection-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.collection-copy .kicker {
  margin-bottom: 28px;
  color: var(--cyan);
}

.collection-copy h2 {
  font-size: clamp(50px, 5.5vw, 78px);
}

.collection-copy h2 em {
  color: var(--cyan);
}

.collection-copy > p:not(.kicker) {
  max-width: 520px;
  margin: 28px 0 0;
  color: #9dabb3;
  font-size: 17px;
  line-height: 1.6;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
  padding: 0;
  color: #d3dde1;
  list-style: none;
  font-size: 14px;
  font-weight: 620;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list span {
  color: var(--mint);
  font-size: 9px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 6px;
  border-bottom: 1px solid #536b76;
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 180ms ease;
}

.inline-cta:hover {
  border-color: var(--cyan);
}

.collection-visual {
  position: relative;
  min-height: 740px;
}

.collection-glow {
  position: absolute;
  top: 15%;
  left: 8%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 232, 255, 0.2), transparent 68%);
  filter: blur(22px);
}

.collection-device {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(490px, 78vw);
  min-height: 650px;
  overflow: hidden;
  padding: 28px 27px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  background: #f4f1ea;
  box-shadow:
    0 55px 100px rgba(0, 0, 0, 0.42),
    0 0 0 8px rgba(255, 255, 255, 0.025);
  color: var(--ink);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.collection-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 8px 3px 19px;
}

.collection-header > span {
  display: flex;
  flex-direction: column;
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 1;
}

.collection-header small {
  margin-bottom: 8px;
  color: #6f7c82;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.collection-header button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
}

.collection-tabs {
  display: flex;
  gap: 22px;
  padding: 0 3px 14px;
  border-bottom: 1px solid rgba(6, 16, 24, 0.1);
  color: #8b969b;
  font-size: 10px;
  font-weight: 750;
}

.collection-tabs .active {
  color: var(--ink);
}

.sticker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 15px 0 13px;
}

.sticker-tile {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(6, 16, 24, 0.06);
  border-radius: 19px;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.82), transparent 32%),
    #e7eff0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.sticker-tile::before {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  content: "";
}

.sticker-tile:nth-child(2),
.sticker-tile:nth-child(6) {
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.86), transparent 33%),
    #eee8f3;
}

.sticker-tile:nth-child(3) {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.82), transparent 33%),
    #f6e9de;
}

.sticker-tile:nth-child(4) {
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 255, 255, 0.84), transparent 32%),
    #e5f1e9;
}

.sticker-tile:nth-child(5) {
  background:
    radial-gradient(circle at 31% 20%, rgba(255, 255, 255, 0.84), transparent 32%),
    #e9edf5;
}

.sticker-tile img {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 7px 8px rgba(24, 49, 58, 0.09));
  transition: transform 200ms ease;
}

.sticker-tile:nth-child(1) img,
.sticker-tile:nth-child(4) img {
  width: 96%;
  height: 96%;
}

.sticker-tile:nth-child(5) img {
  width: 78%;
  height: 94%;
}

.sticker-tile:nth-child(2) img,
.sticker-tile:nth-child(6) img {
  transform: rotate(-2deg);
}

.sticker-tile:hover img {
  transform: scale(1.08) rotate(2deg);
}

.sticker-tile > span {
  position: absolute;
  top: 7px;
  right: 8px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #738087;
  font-size: 10px;
}

.messages-dock {
  display: grid;
  min-height: 68px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  border: 1px solid rgba(6, 16, 24, 0.08);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(27, 51, 59, 0.08);
}

.messages-icon {
  display: block;
  width: 42px;
  height: 42px;
}

.messages-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.messages-dock > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 750;
}

.messages-dock small {
  margin-bottom: 4px;
  color: #96a0a5;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.messages-dock b {
  color: #849097;
  font-size: 21px;
  font-weight: 400;
}

.send-bubble {
  position: absolute;
  z-index: 4;
  right: -20px;
  bottom: 45px;
  width: 184px;
  height: 196px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  background:
    radial-gradient(circle at 72% 22%, rgba(116, 232, 255, 0.18), transparent 38%),
    rgba(9, 31, 43, 0.86);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
  transform: rotate(8deg);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.send-bubble span {
  display: block;
  color: #8ba0ac;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.send-bubble img {
  width: 145px;
  height: 145px;
  margin: 2px auto 0;
  object-fit: contain;
  filter: drop-shadow(0 9px 10px rgba(0, 0, 0, 0.25));
}

.moments-section {
  background: var(--paper);
  color: var(--ink);
}

.moments-heading {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  align-items: end;
  gap: 60px;
}

.moments-heading .kicker {
  margin: 0 0 7px;
  color: #2d7187;
}

.moments-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 680;
  letter-spacing: -0.06em;
  line-height: 1;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 65px;
}

.moment-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(6, 16, 24, 0.08);
  border-radius: 28px;
}

.moment-lilac {
  background: #e9e1f2;
}

.moment-mint {
  background: #dfeee8;
}

.moment-peach {
  background: #f1e2d8;
}

.message-thread,
.celebration-scene,
.memory-scene {
  position: absolute;
  inset: 28px 24px 102px;
}

.message-thread {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

.message {
  width: fit-content;
  max-width: 78%;
  padding: 9px 13px;
  border-radius: 17px;
  font-size: 12px;
  font-weight: 620;
}

.message.incoming {
  background: rgba(255, 255, 255, 0.72);
  color: #4c4253;
}

.message.outgoing {
  align-self: flex-end;
  background: #6d74ee;
  color: var(--white);
}

.sticker-message {
  align-self: flex-end;
  width: 250px;
  margin: 3px -2px 0 0;
  transform: rotate(3deg);
}

.sticker-message img {
  width: 100%;
  filter: drop-shadow(0 15px 15px rgba(74, 52, 92, 0.13));
}

.celebration-scene {
  display: grid;
  place-items: center;
}

.celebration-scene img {
  position: relative;
  z-index: 2;
  width: 312px;
  transform: rotate(-4deg);
  filter: drop-shadow(0 18px 17px rgba(46, 94, 75, 0.14));
}

.confetti {
  position: absolute;
  width: 11px;
  height: 26px;
  border-radius: 999px;
  background: #ffb35d;
}

.confetti.c1 {
  top: 15%;
  left: 13%;
  transform: rotate(32deg);
}

.confetti.c2 {
  top: 20%;
  right: 11%;
  height: 19px;
  background: #9b79d3;
  transform: rotate(-28deg);
}

.confetti.c3 {
  right: 15%;
  bottom: 19%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #62bfd2;
}

.confetti.c4 {
  bottom: 22%;
  left: 8%;
  height: 20px;
  background: #e77896;
  transform: rotate(-45deg);
}

.memory-scene {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  align-items: center;
}

.memory-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.8;
  border: 7px solid rgba(255, 255, 255, 0.74);
  border-bottom-width: 31px;
  border-radius: 3px;
  box-shadow: 0 14px 28px rgba(84, 56, 40, 0.13);
  transform: rotate(-6deg);
}

.memory-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.memory-plus {
  color: #a68874;
  font-family: var(--serif);
  font-size: 27px;
  text-align: center;
}

.memory-sticker {
  width: 192px;
  transform: rotate(7deg);
  filter: drop-shadow(0 14px 14px rgba(84, 56, 40, 0.13));
}

.moment-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  padding-top: 17px;
  border-top: 1px solid rgba(6, 16, 24, 0.1);
}

.moment-caption span {
  color: #7b8386;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.moment-caption h3 {
  max-width: 245px;
  margin: 0;
  font-size: 20px;
  font-weight: 690;
  letter-spacing: -0.035em;
  text-align: right;
}

.how-section {
  padding-bottom: 170px;
  background: #edf0ee;
  color: var(--ink);
}

.how-intro {
  text-align: center;
}

.how-intro .kicker {
  justify-content: center;
}

.how-intro h2 em {
  color: #29677a;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 80px 0 0;
  padding: 0;
  border-top: 1px solid rgba(6, 16, 24, 0.13);
  list-style: none;
}

.steps::before {
  position: absolute;
  z-index: 0;
  top: -1px;
  left: 16.66%;
  width: 66.66%;
  height: 1px;
  background: linear-gradient(90deg, #6cc4d8, #8f82d5, #6cc4d8);
  content: "";
}

.steps li {
  position: relative;
  min-height: 320px;
  padding: 38px 36px;
  border-right: 1px solid rgba(6, 16, 24, 0.1);
}

.steps li:last-child {
  border-right: 0;
}

.step-number {
  color: #7d898e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.step-icon {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  margin: 38px 0 31px;
  border: 1px solid rgba(6, 16, 24, 0.09);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.55);
  color: #347f91;
  font-family: var(--serif);
  font-size: 37px;
  transform: rotate(-3deg);
}

.steps li:nth-child(2) .step-icon {
  color: #8567b4;
  transform: rotate(2deg);
}

.steps li:nth-child(3) .step-icon {
  color: transparent;
  transform: rotate(-1deg);
}

.step-message-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(28, 139, 70, 0.16));
}

.steps h3 {
  margin: 0 0 9px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.steps p {
  max-width: 270px;
  margin: 0;
  color: #68757b;
  font-size: 14px;
  line-height: 1.5;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 790px;
  place-items: center;
  overflow: hidden;
  padding: 120px 24px;
  background:
    linear-gradient(rgba(2, 10, 16, 0.22), rgba(2, 10, 16, 0.7)),
    radial-gradient(circle at 50% 48%, #114158, #061721 55%, #020a10 100%);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  -webkit-mask-image: radial-gradient(circle, black, transparent 75%);
  mask-image: radial-gradient(circle, black, transparent 75%);
}

.final-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
}

.final-glow-one {
  top: -100px;
  left: 12%;
  width: 420px;
  height: 420px;
  background: var(--lilac);
}

.final-glow-two {
  right: 10%;
  bottom: -150px;
  width: 480px;
  height: 480px;
  background: var(--cyan);
}

.final-copy {
  position: relative;
  z-index: 3;
}

.final-star {
  display: block;
  margin-bottom: 26px;
  color: var(--cyan);
  font-size: 26px;
}

.final-copy .kicker {
  justify-content: center;
  margin-bottom: 21px;
}

.final-copy h2 {
  font-size: clamp(60px, 7vw, 98px);
  line-height: 0.92;
}

.final-copy h2 em {
  color: var(--cyan);
  font-style: italic;
}

.final-copy > p:not(.kicker) {
  max-width: 510px;
  margin: 28px auto;
  color: #a8b5bc;
  font-size: 18px;
}

.final-copy .app-store-button {
  margin: 4px auto 14px;
}

.final-copy > small {
  display: block;
  color: #72838c;
  font-size: 10px;
  font-weight: 650;
}

.final-stickers img {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.3));
}

.final-sticker-one {
  top: 17%;
  left: 6%;
  width: clamp(118px, 13vw, 196px);
  transform: rotate(-13deg);
  animation: sticker-drift 7s ease-in-out infinite;
}

.final-sticker-two {
  right: 5%;
  bottom: 12%;
  width: clamp(126px, 13vw, 198px);
  transform: rotate(12deg);
  animation: sticker-drift 7.4s ease-in-out -2s infinite reverse;
}

.final-sticker-three {
  top: 11%;
  right: 12%;
  width: clamp(96px, 10vw, 150px);
  transform: rotate(13deg);
  opacity: 0.8;
  animation: sticker-drift 6.8s ease-in-out -1s infinite;
}

.site-footer {
  padding: 75px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #02080d;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 70px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: #697983;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links span,
.footer-download > span {
  margin-bottom: 5px;
  color: #52626b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.footer-links a {
  width: fit-content;
  color: #9ba8af;
  font-size: 12px;
  font-weight: 620;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-download {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-download .app-store-button {
  display: block;
}

.footer-download .app-store-badge {
  width: 162px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #4b5a63;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-bottom .apple-legal {
  width: 100%;
  max-width: 760px;
  margin-top: 12px;
  color: #3f4d55;
  font-size: 8px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.download-page {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 48px 24px;
  background:
    radial-gradient(circle at 18% 20%, rgba(109, 165, 255, 0.18), transparent 30%),
    radial-gradient(circle at 84% 78%, rgba(135, 244, 203, 0.14), transparent 32%),
    linear-gradient(145deg, #020a10, #061824 64%, #04111a);
}

.download-page::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 62px 62px;
  content: "";
  pointer-events: none;
}

.download-glow {
  position: absolute;
  width: min(42vw, 580px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.2;
  pointer-events: none;
}

.download-glow-one {
  top: -18%;
  left: -10%;
  background: var(--blue);
}

.download-glow-two {
  right: -13%;
  bottom: -23%;
  background: var(--mint);
}

.download-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: clamp(34px, 6vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(30px, 5vw, 46px);
  background: rgba(8, 26, 38, 0.76);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42);
  text-align: center;
  -webkit-backdrop-filter: blur(28px) saturate(145%);
  backdrop-filter: blur(28px) saturate(145%);
}

.download-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 21px;
  font-weight: 760;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.download-brand .brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
}

.download-kicker {
  margin: 38px 0 13px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.download-card h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 82px);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.download-copy {
  max-width: 520px;
  margin: 25px auto 0;
  color: #b6c2c9;
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.55;
}

.download-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 31px;
}

.download-primary,
.download-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.download-primary {
  background: var(--white);
  color: var(--ink);
}

.download-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.download-primary:hover,
.download-secondary:hover {
  transform: translateY(-2px);
}

.download-secondary:hover {
  background: rgba(255, 255, 255, 0.11);
}

.download-stickers {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(2px, 2vw, 14px);
  margin: 35px auto -34px;
}

.download-stickers img {
  width: clamp(104px, 20vw, 158px);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
}

.download-stickers img:first-child {
  transform: rotate(-8deg) translateY(14px);
}

.download-stickers img:nth-child(2) {
  position: relative;
  z-index: 1;
  transform: translateY(-6px);
}

.download-stickers img:last-child {
  transform: rotate(8deg) translateY(14px);
}

@media (max-width: 1080px) {
  .hero-shell {
    grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(65px, 8.3vw, 90px);
  }

  .hero-stage {
    transform: scale(0.9);
  }

  .float-card-one {
    left: -8px;
  }

  .sticker-float-one {
    right: -5px;
  }

  .site-nav {
    gap: 20px;
  }

  .section-heading {
    column-gap: 45px;
  }

  .collection-shell {
    grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1.2fr);
    gap: 40px;
  }

  .send-bubble {
    right: 0;
  }

}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
  }

  .menu-button span {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 90px 34px;
    background: rgba(2, 10, 16, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }

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

  .site-nav a {
    color: var(--white);
    font-size: 30px;
    font-weight: 680;
    letter-spacing: -0.04em;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-shell {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 55px;
  }

  .hero-copy {
    width: 100%;
    max-width: 650px;
    align-self: flex-start;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(68px, 13.5vw, 102px);
  }

  .hero-stage {
    width: 100%;
    min-height: 690px;
    transform: none;
  }

  .float-card-one {
    left: 5%;
  }

  .sticker-float-one {
    right: 9%;
  }

  .float-card-two {
    right: 5%;
  }

  .sticker-float-two {
    left: 7%;
  }

  .section {
    padding: 110px 0;
  }

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

  .section-heading > p:last-child {
    margin-top: 28px;
  }

  .create-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .feature-card:first-child {
    grid-row: auto;
    min-height: 680px;
  }

  .feature-card:not(:first-child) {
    min-height: 390px;
  }

  .collection-shell {
    grid-template-columns: 1fr;
  }

  .collection-copy {
    max-width: 660px;
  }

  .collection-visual {
    min-height: 720px;
  }

  .send-bubble {
    right: 5%;
  }

  .moments-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .moment-card {
    min-height: 510px;
  }

  .sticker-message {
    width: 245px;
  }

  .celebration-scene img {
    width: 300px;
  }

  .memory-scene {
    grid-template-columns: 0.8fr 50px 0.8fr;
    justify-content: center;
  }

  .memory-photo,
  .memory-sticker {
    max-width: 200px;
    justify-self: center;
  }

  .steps li {
    padding: 32px 22px;
  }

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

  .footer-download {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .download-page {
    padding: 18px;
  }

  .download-card {
    padding: 34px 22px 30px;
  }

  .download-kicker {
    margin-top: 30px;
    font-size: 10px;
  }

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

  .download-primary,
  .download-secondary {
    width: 100%;
  }

  .download-stickers {
    margin-top: 28px;
  }

  .nav-shell,
  .hero-shell,
  .section-shell,
  .footer-shell,
  .footer-bottom {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    padding: 13px 0;
  }

  .brand {
    font-size: 18px;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .eyebrow {
    margin-bottom: 19px;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 88px);
    line-height: 0.9;
  }

  .hero-lede {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .text-link {
    margin-left: 2px;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 25px;
  }

  .hero-proof i {
    display: none;
  }

  .hero-stage {
    min-height: 620px;
    margin-top: -8px;
    transform: scale(0.86);
  }

  .phone {
    width: 310px;
  }

  .phone-frame {
    min-height: 616px;
  }

  .creation-canvas {
    height: 355px;
  }

  .float-card-one {
    top: 76px;
    left: -20px;
    width: 135px;
  }

  .float-card-two {
    right: -24px;
    bottom: 73px;
    min-width: 176px;
  }

  .sticker-float-one {
    top: 5px;
    right: -5px;
    width: 108px;
  }

  .sticker-float-two {
    bottom: 0;
    left: -14px;
    width: 96px;
  }

  .orbit-one {
    width: 520px;
    height: 520px;
  }

  .orbit-two {
    width: 410px;
    height: 410px;
  }

  .ribbon-item {
    min-width: 204px;
    height: 78px;
    padding: 0 16px;
  }

  .ribbon-item img {
    width: 58px;
    height: 58px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading h2,
  .collection-copy h2,
  .how-intro h2 {
    font-size: clamp(45px, 14vw, 67px);
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .create-grid {
    margin-top: 44px;
  }

  .feature-card {
    border-radius: 24px;
  }

  .feature-card:first-child {
    min-height: 590px;
  }

  .feature-card:not(:first-child) {
    min-height: 405px;
  }

  .card-copy {
    grid-template-columns: 35px 1fr;
    padding: 27px 23px;
  }

  .draw-demo {
    inset: 145px 18px 18px;
  }

  .drawn-creature {
    width: 205px;
    height: 190px;
  }

  .drawn-creature .face i {
    top: 72px;
  }

  .drawn-creature .face b {
    bottom: 47px;
  }

  .prompt-demo {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .photo-demo {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: 1fr 38px 1fr;
  }

  .photo-result img {
    width: 118px;
    height: 118px;
  }

  .collection-section {
    padding-bottom: 75px;
  }

  .collection-visual {
    min-height: 620px;
  }

  .collection-device {
    width: 385px;
    min-height: 535px;
    padding: 21px 20px 18px;
    border-radius: 34px;
    transform: translate(-50%, -50%) rotate(-2deg) scale(0.9);
  }

  .collection-header > span {
    font-size: 24px;
  }

  .collection-header button {
    width: 38px;
    height: 38px;
  }

  .sticker-grid {
    gap: 7px;
  }

  .sticker-tile {
    border-radius: 15px;
  }

  .send-bubble {
    right: -17px;
    bottom: 15px;
    width: 154px;
    height: 166px;
  }

  .send-bubble img {
    width: 120px;
    height: 120px;
  }

  .moments-heading h2 {
    font-size: 46px;
  }

  .moment-grid {
    margin-top: 42px;
  }

  .moment-card {
    min-height: 475px;
  }

  .message-thread,
  .celebration-scene,
  .memory-scene {
    inset: 22px 19px 96px;
  }

  .memory-scene {
    grid-template-columns: 1fr 34px 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .steps::before {
    left: 0;
    width: 100%;
  }

  .steps li {
    display: grid;
    min-height: auto;
    grid-template-columns: 70px 1fr;
    column-gap: 20px;
    padding: 27px 5px;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 16, 24, 0.1);
  }

  .steps li:last-child {
    border-bottom: 0;
  }

  .step-number {
    position: absolute;
    top: 31px;
    right: 5px;
  }

  .step-icon {
    grid-row: 1 / span 2;
    width: 63px;
    height: 63px;
    margin: 0;
    border-radius: 19px;
    font-size: 29px;
  }

  .steps h3 {
    align-self: end;
    margin-bottom: 4px;
  }

  .steps p {
    font-size: 13px;
  }

  .step-message-icon {
    width: 43px;
    height: 43px;
  }

  .final-cta {
    min-height: 720px;
    padding: 100px 18px;
  }

  .final-copy h2 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .final-copy > p:not(.kicker) {
    font-size: 16px;
  }

  .final-sticker-one {
    top: 9%;
    left: -6%;
    width: 116px;
    opacity: 0.66;
  }

  .final-sticker-two {
    right: -7%;
    bottom: 8%;
    width: 116px;
    opacity: 0.7;
  }

  .final-sticker-three {
    top: 8%;
    right: 2%;
    width: 88px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-download {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 42px;
  }
}

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

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

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