:root {
  --bg: #f6f1e8;
  --bg-alt: #fffaf2;
  --ink: #101010;
  --muted: #5f635f;
  --line: rgba(16, 16, 16, 0.12);
  --shadow: 0 28px 80px rgba(16, 16, 16, 0.14);
  --shadow-soft: 0 20px 45px rgba(16, 16, 16, 0.08);
  --sky: #c8dbff;
  --mint: #d8f2de;
  --butter: #f3de84;
  --coral: #ff977b;
  --lime: #d7ff6b;
  --paper: #fffdf7;
  --panel: rgba(255, 255, 255, 0.68);
  --hero-max: 1480px;
  --curve: 42px;
  --scroll: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 16% 18%, rgba(200, 219, 255, 0.55), transparent 26%),
    radial-gradient(circle at 84% 14%, rgba(255, 151, 123, 0.18), transparent 18%),
    radial-gradient(circle at 78% 72%, rgba(216, 242, 222, 0.42), transparent 24%),
    linear-gradient(180deg, var(--bg-alt), var(--bg));
  color: var(--ink);
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    radial-gradient(circle at center, rgba(16, 16, 16, 0.22) 1px, transparent 1.2px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 90%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 0 0.85rem 0;
  pointer-events: none;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 220ms ease;
}

.site-header.site-header-hidden {
  transform: translateY(calc(-100% - 0.5rem));
  opacity: 0;
}

.site-nav {
  max-width: var(--hero-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.15rem;
  padding: 0.35rem 1rem 0.35rem 0.8rem;
  background: rgba(255, 252, 246, 0.82);
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 18px 48px rgba(16, 16, 16, 0.08);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  width: clamp(4.5rem, 7vw, 5.5rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: transparent;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.14);
}

.brand-wordmark {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.04em;
  font-size: clamp(1.7rem, 3.8vw, 2.9rem);
  line-height: 0.88;
  white-space: nowrap;
}

.brand-wordmark-main,
.brand-wordmark-suffix {
  font-weight: 800;
  letter-spacing: -0.08em;
}

.brand-wordmark-main {
  font-size: 1em;
}

.brand-wordmark-suffix {
  font-size: 0.58em;
  margin-bottom: 0.1em;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-invite,
.nav-login,
.nav-signup,
.button-primary,
.button-secondary {
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.nav-invite,
.nav-login,
.nav-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  font-size: 0.93rem;
  letter-spacing: -0.02em;
}

.nav-invite {
  background: rgba(216, 242, 222, 0.78);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.08);
}

.nav-login {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.12);
}

.nav-signup {
  background: linear-gradient(135deg, #ff7a59, #ff3fb4);
  color: #fff;
  box-shadow: 0 16px 30px rgba(255, 63, 180, 0.24);
}

.nav-invite:hover,
.nav-invite:focus-visible,
.nav-login:hover,
.nav-login:focus-visible,
.nav-signup:hover,
.nav-signup:focus-visible,
.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
}

main {
  position: relative;
  padding-top: clamp(4.8rem, 6vw, 5.6rem);
}

.hero {
  position: relative;
  padding: 0.85rem 1rem 7rem;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(90vw, 1120px);
  height: 180px;
  background: rgba(255, 255, 255, 0.44);
  filter: blur(80px);
  transform: translateX(-50%);
  z-index: -1;
}

.hero-grid {
  position: relative;
  max-width: var(--hero-max);
  min-height: 960px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  justify-items: center;
}

.floating-copy {
  position: relative;
  max-width: 720px;
  text-align: center;
  z-index: 3;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.2rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.06);
}

.floating-copy h1,
.section-heading h2,
.privacy-copy h2,
.creator-invite-copy h2,
.footer-brand h2 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.floating-copy h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.6rem);
}

.highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.06em 0.02em;
  isolation: isolate;
}

.highlight::before {
  content: "";
  position: absolute;
  inset: 0.03em -0.08em 0.01em;
  z-index: -1;
  border-radius: 0.04em;
  background: linear-gradient(120deg, rgba(200, 219, 255, 0.96), rgba(216, 242, 222, 0.96));
}

.hero-copy {
  max-width: 650px;
  margin: 1.35rem auto 0;
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  line-height: 1.65;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-invite-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
  padding: 0.9rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    var(--shadow-soft),
    inset 0 0 0 1px rgba(16, 16, 16, 0.06);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-invite-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--lime);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-compact-scene {
  display: none;
}

.hero-compact-pills,
.hero-compact-stack {
  width: 100%;
}

.hero-scene-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.15rem;
  border-radius: 999px 999px 999px 320px;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: var(--shadow-soft);
}

.hero-scene-pill-mint {
  background: var(--mint);
}

.hero-scene-pill-sky {
  background: var(--sky);
}

.hero-scene-pill-coral {
  background: var(--coral);
}

.hero-scene-card {
  position: relative;
  width: min(100%, 13.4rem);
  padding: 0.45rem;
  justify-self: center;
  transform-origin: center center;
}

.hero-scene-card::before {
  content: "";
  position: absolute;
  inset: 14px 8px -8px;
  border-radius: 42% 58% 48% 52% / 46% 44% 56% 54%;
  filter: blur(18px);
  opacity: 0.78;
  z-index: -1;
}

.hero-scene-card-mouse::before {
  background: rgba(215, 255, 107, 0.48);
}

.hero-scene-card-figure::before {
  background: rgba(200, 219, 255, 0.58);
}

.hero-scene-card-airpods::before {
  background: rgba(200, 219, 255, 0.5);
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.4rem;
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.button-primary.dark {
  background: #fff;
  color: var(--ink);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.08);
}

.button-secondary.dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.wish-card {
  --wish-card-scale: 1;
  position: absolute;
  width: min(17vw, 255px);
  padding: 0.55rem;
  transform-origin: center center;
  z-index: 2;
}

.wish-card::before {
  content: "";
  position: absolute;
  inset: 14px 8px -8px;
  border-radius: 42% 58% 48% 52% / 46% 44% 56% 54%;
  filter: blur(18px);
  opacity: 0.78;
  z-index: -1;
}

.wish-card-shell {
  position: relative;
  min-height: 0;
  padding: 0.82rem;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 16, 0.06);
  box-shadow: var(--shadow-soft);
}

.wish-card-top,
.wish-chip,
.wish-price {
  display: inline-flex;
  align-items: center;
}

.wish-card-top {
  width: 100%;
  justify-content: space-between;
  gap: 0.55rem;
}

.wish-chip,
.wish-price {
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.wish-chip {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.05);
}

.wish-price {
  background: rgba(16, 16, 16, 0.92);
  color: #fff;
}

.wish-asset {
  position: relative;
  min-height: 154px;
  margin-top: 0.72rem;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.wish-asset::before,
.wish-asset::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  z-index: -1;
}

.wish-asset::before {
  inset: 0;
}

.wish-asset::after {
  inset: 15% 12% 8%;
  filter: blur(24px);
  opacity: 0.72;
}

.wish-asset img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 172px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(16, 16, 16, 0.2));
}

.wish-card-copy {
  margin-top: 0.72rem;
}

.wish-card-copy strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.wish-caption {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.77rem;
  line-height: 1.35;
  color: var(--muted);
}

.mouse-card {
  top: 14%;
  left: 4.5%;
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.04px)),
      0
    )
    rotate(calc(-9deg + var(--reveal-rotate, 0deg)))
    scale(var(--wish-card-scale));
}

.mouse-card::before {
  background: rgba(215, 255, 107, 0.48);
}

.figure-card {
  top: 16%;
  right: 5%;
  width: min(15.5vw, 235px);
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.06px)),
      0
    )
    rotate(calc(8deg + var(--reveal-rotate, 0deg)))
    scale(var(--wish-card-scale));
}

.figure-card::before {
  background: rgba(200, 219, 255, 0.58);
}

.airpods-card {
  right: 9%;
  bottom: 18%;
  width: min(16.5vw, 240px);
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.05px)),
      0
    )
    rotate(calc(-5deg + var(--reveal-rotate, 0deg)))
    scale(var(--wish-card-scale));
}

.airpods-card::before {
  background: rgba(200, 219, 255, 0.5);
}

.mouse-shell {
  border-radius: 34px 56px 28px 52px / 28px 38px 54px 48px;
  background: linear-gradient(155deg, rgba(14, 16, 18, 0.96), rgba(31, 37, 34, 0.92));
  color: #fff;
}

.mouse-shell .wish-chip {
  background: rgba(215, 255, 107, 0.16);
  color: #ecffc1;
  box-shadow: inset 0 0 0 1px rgba(215, 255, 107, 0.12);
}

.mouse-shell .wish-asset::before {
  inset: -2px;
  border-radius: 28px 46px 26px 42px / 24px 34px 38px 48px;
  background:
    radial-gradient(circle at 22% 20%, rgba(215, 255, 107, 0.2), transparent 28%),
    linear-gradient(150deg, rgba(18, 18, 20, 0.98), rgba(27, 32, 29, 0.96));
}

.mouse-shell .wish-asset::after {
  background: radial-gradient(circle, rgba(125, 255, 133, 0.4), transparent 68%);
}

.mouse-shell .wish-caption {
  color: rgba(255, 255, 255, 0.66);
}

.mouse-shell .wish-asset img {
  max-height: 166px;
}

.figure-shell {
  border-radius: 56px 30px 48px 26px / 28px 54px 30px 50px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.88), rgba(246, 248, 255, 0.8) 50%, rgba(255, 238, 227, 0.88));
}

.figure-shell .wish-chip {
  background: rgba(16, 16, 16, 0.06);
}

.figure-shell .wish-asset::before {
  inset: -2px;
  border-radius: 44px 22px 36px 20px / 24px 40px 24px 42px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 151, 123, 0.25), transparent 18%),
    linear-gradient(155deg, rgba(200, 219, 255, 0.65), rgba(255, 255, 255, 0.98) 44%, rgba(255, 226, 212, 0.86));
}

.figure-shell .wish-asset::after {
  background: radial-gradient(circle, rgba(200, 219, 255, 0.5), transparent 70%);
}

.figure-shell .wish-asset {
  min-height: 172px;
}

.figure-shell .wish-asset img {
  max-height: 194px;
}

.airpods-shell {
  border-radius: 30px 50px 34px 46px / 30px 40px 48px 42px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.9), rgba(240, 244, 251, 0.92) 54%, rgba(228, 239, 255, 0.86));
}

.airpods-shell .wish-chip {
  background: rgba(16, 16, 16, 0.07);
}

.airpods-shell .wish-asset {
  min-height: 146px;
}

.airpods-shell .wish-asset::before {
  inset: -1px;
  border-radius: 22px 36px 24px 32px / 22px 32px 28px 34px;
  background:
    radial-gradient(circle at 50% 72%, rgba(200, 219, 255, 0.42), transparent 44%),
    linear-gradient(155deg, rgba(248, 249, 251, 0.98), rgba(231, 236, 244, 0.98));
}

.airpods-shell .wish-asset::after {
  inset: 24% 20% 12%;
  background: radial-gradient(circle, rgba(140, 255, 198, 0.26), transparent 66%);
}

.airpods-shell .wish-asset img {
  max-height: 164px;
}

.airpods-shell .wish-caption {
  color: rgba(16, 16, 16, 0.58);
}

.hero-card,
.mode-card,
.privacy-panel,
.profile-card,
.mini-phone,
.faq-item {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 16, 16, 0.05);
}

.hero-card {
  position: absolute;
  width: min(32vw, 380px);
  padding: 1.35rem;
  z-index: 2;
}

.creator-popout {
  top: 13%;
  left: 2%;
  border-radius: 30px 58px 34px 42px / 30px 44px 38px 50px;
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.04px)),
      0
    )
    rotate(calc(-7deg + var(--reveal-rotate, 0deg)));
}

.mobile-preview {
  top: 16%;
  right: 1%;
  border-radius: 54px 32px 48px 28px / 34px 44px 26px 56px;
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.06px)),
      0
    )
    rotate(calc(6deg + var(--reveal-rotate, 0deg)));
}

.glow-ring {
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(215, 255, 107, 0.78), rgba(200, 219, 255, 0.8), rgba(255, 151, 123, 0.66));
  filter: blur(22px);
  opacity: 0.85;
  z-index: -1;
}

.creator-head {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.avatar-cluster {
  position: relative;
}

.avatar,
.mobile-avatar,
.profile-avatar {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.42), transparent 30%),
    linear-gradient(145deg, #1f2a50, #5979ff 44%, #9cd5b3 100%);
}

.avatar {
  width: 80px;
  aspect-ratio: 1;
  border-radius: 26px 28px 22px 34px / 24px 30px 26px 30px;
  box-shadow:
    0 0 0 8px rgba(200, 219, 255, 0.55),
    0 0 0 18px rgba(255, 255, 255, 0.56);
}

.status-pill {
  position: absolute;
  right: -0.4rem;
  bottom: -0.25rem;
  padding: 0.35rem 0.52rem;
  border-radius: 999px;
  background: #181818;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.handle {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.meta,
.profile-blurb,
.mini-phone-body p,
.profile-card p,
.faq-item p {
  margin: 0;
  line-height: 1.55;
  color: var(--muted);
}

.badge-row,
.sticker-row,
.sticker-cloud,
.mini-phone-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge-row {
  margin-top: 1rem;
}

.badge-row li,
.sticker-row span,
.sticker-cloud span,
.mini-phone-body li {
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  background: #f5f0e7;
}

.card-body {
  margin-top: 1.1rem;
}

.sticker-row {
  margin-top: 0.9rem;
}

.phone-shell {
  background: linear-gradient(180deg, #111, #262626);
  color: #fff;
  padding: 0.9rem;
  border-radius: 34px 28px 34px 42px / 28px 44px 32px 40px;
}

.phone-top,
.phone-profile,
.mobile-actions,
.wish-slab {
  display: flex;
  align-items: center;
}

.phone-top {
  justify-content: space-between;
  font-size: 0.72rem;
  opacity: 0.74;
}

.phone-profile {
  gap: 0.9rem;
  margin-top: 1rem;
}

.mobile-avatar {
  width: 54px;
  aspect-ratio: 1;
  border-radius: 20px;
}

.phone-profile p,
.mini-phone-body h3,
.profile-card h3,
.growth-ribbon span {
  margin: 0;
}

.mobile-actions {
  gap: 0.65rem;
  margin-top: 1rem;
}

.mobile-actions button {
  appearance: none;
  border: 0;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
}

.mobile-actions button:first-child {
  background: var(--lime);
  color: var(--ink);
}

.mobile-actions button:last-child {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.wish-slab {
  justify-content: space-between;
  margin-top: 0.8rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  font-size: 0.88rem;
}

.wish-slab.dimmed {
  opacity: 0.72;
}

.orbit-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-pill,
.orbit-token,
.card-ribbon,
.growth-ribbon,
.section-wave {
  box-shadow: var(--shadow-soft);
}

.orbit-pill,
.orbit-token,
.card-ribbon {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border-radius: 999px 999px 999px 320px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  background: #fff;
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.02px)),
      0
    )
    rotate(var(--reveal-rotate, 0deg));
}

.orbit-pill.mint {
  background: var(--mint);
}

.orbit-pill.sky,
.card-ribbon.sky {
  background: var(--sky);
}

.orbit-pill.butter {
  background: var(--butter);
}

.orbit-pill.coral {
  background: var(--coral);
}

.orbit-layer .orbit-pill:nth-child(1) {
  top: 14%;
  left: 26%;
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.05px)),
      0
    )
    rotate(calc(-11deg + var(--reveal-rotate, 0deg)));
}

.orbit-layer .orbit-pill:nth-child(2) {
  top: 20%;
  right: 25%;
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.04px)),
      0
    )
    rotate(calc(8deg + var(--reveal-rotate, 0deg)));
}

.orbit-layer .orbit-pill:nth-child(3) {
  top: 66%;
  right: 16%;
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.03px)),
      0
    )
    rotate(calc(-8deg + var(--reveal-rotate, 0deg)));
}

.orbit-layer .orbit-pill:nth-child(4) {
  top: 72%;
  left: 18%;
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.06px)),
      0
    )
    rotate(calc(10deg + var(--reveal-rotate, 0deg)));
}

.orbit-token {
  padding: 0.9rem 1rem;
  background: rgba(16, 16, 16, 0.94);
  color: #fff;
  font-size: 0.78rem;
}

.orbit-layer .orbit-token:nth-child(5) {
  top: 32%;
  left: 14%;
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.06px)),
      0
    )
    rotate(calc(-17deg + var(--reveal-rotate, 0deg)));
}

.orbit-layer .orbit-token:nth-child(6) {
  right: 8%;
  top: 46%;
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.08px)),
      0
    )
    rotate(calc(18deg + var(--reveal-rotate, 0deg)));
}

.orbit-layer .orbit-token:nth-child(7) {
  left: 6%;
  bottom: 11%;
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.04px)),
      0
    )
    rotate(calc(-9deg + var(--reveal-rotate, 0deg)));
}

.mascot-sticker {
  position: absolute;
  right: 11%;
  top: 9%;
  width: 118px;
  aspect-ratio: 1;
  padding: 0;
  background: transparent;
  border-radius: 28px;
  overflow: hidden;
  transform:
    translate3d(
      var(--reveal-x, 0px),
      calc(var(--reveal-y, 0px) + (var(--scroll) * -0.05px)),
      0
    )
    rotate(calc(10deg + var(--reveal-rotate, 0deg)));
  box-shadow: var(--shadow-soft);
}

.mascot-sticker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-wave {
  --wave-gap: clamp(0.9rem, 1.2vw, 1.25rem);
  --wave-separator-gap: clamp(2rem, 3vw, 3.25rem);
  --wave-speed: 30s;
  position: relative;
  padding: 1.2rem 0;
  overflow: hidden;
  background: rgba(16, 16, 16, 0.96);
  color: #fff;
  transform: translate3d(var(--reveal-x, 0px), var(--reveal-y, 0px), 0)
    rotate(calc(-1.4deg + var(--reveal-rotate, 0deg)));
}

.wave-marquee {
  display: flex;
  align-items: center;
  width: max-content;
  animation: drift var(--wave-speed) linear infinite;
}

.wave-track {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: var(--wave-gap);
  white-space: nowrap;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  padding-right: var(--wave-gap);
}

.wave-item {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.wave-item::after {
  content: "|";
  margin-left: var(--wave-separator-gap);
  color: rgba(255, 255, 255, 0.45);
}

.section-heading,
.feature-focus,
.privacy-section,
.profile-section,
.growth-section,
.creator-invite-section,
.faq-section {
  max-width: var(--hero-max);
  margin: 0 auto;
  padding: 6rem 1rem 0;
}

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

.section-heading h2,
.privacy-copy h2,
.creator-invite-copy h2,
.footer-brand h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.section-heading h2 {
  max-width: 900px;
  margin-inline: auto;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.35rem;
  margin-top: 2.5rem;
}

.mode-card {
  position: relative;
  padding: 1.7rem 1.5rem 1.6rem;
  min-height: 250px;
  border-radius: 50px 30px 48px 26px / 26px 48px 32px 54px;
}

.mode-card:nth-child(2) {
  margin-top: 1.6rem;
  background: rgba(200, 219, 255, 0.55);
}

.mode-card:nth-child(3) {
  background: rgba(216, 242, 222, 0.58);
}

.mode-card:nth-child(4) {
  margin-top: 0.9rem;
  background: rgba(243, 222, 132, 0.4);
}

.mode-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 18px;
  background: rgba(16, 16, 16, 0.94);
  color: #fff;
  font-weight: 800;
}

.mode-card h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.mode-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
  gap: 2rem;
  align-items: center;
}

.privacy-copy h2 {
  max-width: 720px;
}

.privacy-copy p:last-child {
  max-width: 620px;
  margin-top: 1.25rem;
  font-size: 1.06rem;
  line-height: 1.75;
}

.privacy-sculpture {
  position: relative;
  min-height: 660px;
  margin-top: 2.5rem;
}

.privacy-panel {
  position: absolute;
  top: 16%;
  left: 6%;
  width: min(82%, 380px);
  padding: 1.3rem;
  border-radius: 32px 52px 38px 48px / 34px 40px 46px 42px;
  transform: rotate(-8deg);
  z-index: 1;
}

.panel-title {
  display: block;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.privacy-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
}

.privacy-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-weight: 800;
}

.privacy-state.off {
  background: rgba(16, 16, 16, 0.92);
  color: #fff;
}

.privacy-state.on {
  background: var(--lime);
}

.privacy-emblem {
  position: absolute;
  right: 16%;
  top: 11%;
  width: 104px;
  aspect-ratio: 1;
  border-radius: 34px 42px 36px 40px / 36px 38px 42px 40px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(34, 46, 42, 0.94));
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 3;
  transform:
    translateY(calc(var(--scroll) * -0.05px))
    rotate(4deg);
  box-shadow:
    0 16px 26px rgba(16, 16, 16, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.privacy-emblem::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(200, 219, 255, 0.14));
  filter: blur(10px);
  opacity: 0.45;
  z-index: -1;
}

.privacy-emblem-icon {
  width: 48px;
  height: 48px;
}

.privacy-note {
  position: absolute;
  right: 0;
  bottom: 8%;
  width: min(76%, 320px);
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 26px 34px 28px 36px / 24px 30px 32px 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 219, 255, 0.16), transparent 24%),
    linear-gradient(160deg, rgba(16, 16, 16, 0.98), rgba(24, 28, 26, 0.94));
  color: #fff;
  box-shadow: var(--shadow-soft);
  z-index: 3;
  transform: rotate(6deg);
}

.privacy-note strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.privacy-note p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.5;
}

.profile-stage {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.profile-card {
  padding: 1.45rem;
  min-height: 320px;
  border-radius: 54px 30px 52px 34px / 28px 48px 30px 58px;
}

.profile-card.tilted {
  transform: translate3d(var(--reveal-x, 0px), var(--reveal-y, 0px), 0)
    rotate(calc(4deg + var(--reveal-rotate, 0deg)));
}

.card-ribbon {
  position: static;
  display: inline-flex;
  margin-bottom: 1rem;
  background: var(--butter);
}

.profile-topline {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-avatar {
  width: 74px;
  aspect-ratio: 1;
  border-radius: 26px 32px 26px 30px / 26px 30px 28px 34px;
}

.sticker-cloud {
  margin-top: 1.4rem;
}

.mobile-stack {
  position: relative;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.mini-phone {
  width: min(100%, 290px);
  padding: 0.85rem;
  border-radius: 42px 30px 38px 44px / 28px 46px 34px 48px;
}

.mini-phone.alt {
  transform: translateX(2.4rem) rotate(7deg);
}

.mini-phone header {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0.72;
}

.mini-phone-body {
  margin-top: 0.8rem;
}

.mini-banner {
  height: 108px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), transparent 26%),
    linear-gradient(145deg, var(--sky), #80b4ff 48%, var(--mint));
}

.mini-banner.second {
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.4), transparent 20%),
    linear-gradient(145deg, var(--coral), #ffd7b5 52%, var(--butter));
}

.mini-phone-body h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.mini-phone-body ul {
  margin-top: 1rem;
}

.metric-line {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
}

.metric-line strong {
  font-size: 1.2rem;
  letter-spacing: -0.05em;
}

.growth-ribbons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.growth-ribbon {
  padding: 1.4rem 1.5rem;
  min-height: 200px;
  color: var(--ink);
  border-radius: 32px 54px 34px 50px / 32px 42px 40px 52px;
}

.growth-ribbon:nth-child(1) {
  background: linear-gradient(135deg, var(--coral), #ffd7bf);
  transform: translate3d(var(--reveal-x, 0px), var(--reveal-y, 0px), 0)
    rotate(calc(-4deg + var(--reveal-rotate, 0deg)));
}

.growth-ribbon:nth-child(2) {
  background: linear-gradient(135deg, var(--sky), #dff3ff);
  transform: translate3d(var(--reveal-x, 0px), calc(var(--reveal-y, 0px) + 1.2rem), 0)
    rotate(var(--reveal-rotate, 0deg));
}

.growth-ribbon:nth-child(3) {
  background: linear-gradient(135deg, var(--mint), #eff9ca);
  transform: translate3d(var(--reveal-x, 0px), var(--reveal-y, 0px), 0)
    rotate(calc(4deg + var(--reveal-rotate, 0deg)));
}

.growth-ribbon span {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.growth-ribbon strong {
  display: block;
  margin-top: 1rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.creator-invite-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(1.8rem, 3vw, 3rem);
  align-items: center;
}

.creator-invite-copy {
  position: relative;
  z-index: 1;
}

.creator-invite-copy h2 {
  max-width: 12ch;
}

.creator-invite-lead {
  max-width: 40rem;
  margin: 1.25rem 0 0;
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--muted);
}

.creator-invite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.creator-invite-note {
  max-width: 36rem;
  margin: 1rem 0 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.55;
  color: #343734;
}

.invite-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.2rem 0 0;
  padding: 0;
}

.invite-step {
  padding: 1.2rem 1.05rem 1.15rem;
  border-radius: 30px 44px 32px 42px / 26px 40px 30px 46px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 16, 16, 0.05);
}

.invite-step:nth-child(2) {
  background: rgba(216, 242, 222, 0.72);
}

.invite-step:nth-child(3) {
  background: rgba(200, 219, 255, 0.72);
}

.invite-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  aspect-ratio: 1;
  border-radius: 18px;
  background: rgba(16, 16, 16, 0.94);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.invite-step strong {
  display: block;
  margin-top: 0.95rem;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.invite-step p {
  margin: 0.68rem 0 0;
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--muted);
}

.creator-invite-scene {
  position: relative;
  min-height: 720px;
}

.invite-stage {
  position: relative;
  min-height: 720px;
  padding: 1.6rem;
  overflow: hidden;
  border-radius: 74px 48px 90px 54px / 48px 86px 58px 104px;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.62), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(255, 151, 123, 0.26), transparent 24%),
    radial-gradient(circle at 72% 76%, rgba(215, 255, 107, 0.24), transparent 22%),
    linear-gradient(155deg, rgba(255, 253, 247, 0.96), rgba(247, 242, 232, 0.98));
  border: 1px solid rgba(16, 16, 16, 0.06);
  box-shadow: var(--shadow);
}

.invite-stage::before {
  content: "";
  position: absolute;
  inset: 2rem 1.8rem auto;
  height: 44%;
  border-radius: 48px;
  background:
    radial-gradient(circle at 28% 30%, rgba(200, 219, 255, 0.5), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 247, 235, 0.42));
  opacity: 0.84;
}

.invite-stage::after {
  content: "";
  position: absolute;
  inset: auto 8% 4% 10%;
  height: 32%;
  border-radius: 56px;
  background: rgba(255, 255, 255, 0.38);
  filter: blur(30px);
  opacity: 0.9;
}

.invite-link-chip,
.invite-badge,
.invite-token,
.invite-scene-note {
  position: absolute;
  z-index: 3;
  box-shadow: var(--shadow-soft);
}

.invite-link-chip,
.invite-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.05rem;
  border-radius: 999px 999px 999px 320px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.invite-link-chip {
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(16, 16, 16, 0.96);
  color: #fff;
}

.invite-link-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.invite-link-chip strong {
  font-size: 0.92rem;
}

.invite-badge {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.invite-badge-free {
  top: 5.6rem;
  right: 2rem;
  background: var(--butter);
  transform: rotate(8deg);
}

.invite-badge-share {
  right: 1.2rem;
  bottom: 11rem;
  background: var(--sky);
  transform: rotate(6deg);
}

.invite-badge-unlock {
  left: 1.2rem;
  bottom: 14rem;
  background: var(--mint);
  transform: rotate(-7deg);
}

.invite-card {
  position: absolute;
  width: min(44%, 288px);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(16, 16, 16, 0.06);
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

.invite-card-left {
  left: 1.5rem;
  bottom: 8.2rem;
  border-radius: 34px 50px 36px 44px / 30px 44px 36px 50px;
  transform: rotate(-6deg);
}

.invite-card-right {
  right: 1.5rem;
  top: 7.4rem;
  border-radius: 52px 34px 48px 30px / 30px 50px 34px 48px;
  transform: rotate(5deg);
}

.invite-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.invite-card-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
}

.invite-card-state-sent {
  background: rgba(200, 219, 255, 0.7);
  color: #20345e;
}

.invite-card-state-live {
  background: rgba(215, 255, 107, 0.8);
  color: #263100;
}

.invite-card-profile {
  display: flex;
  gap: 0.95rem;
  align-items: center;
  margin-top: 1rem;
}

.invite-avatar {
  width: 66px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 24px 30px 24px 32px / 24px 30px 26px 30px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 34px rgba(16, 16, 16, 0.12);
}

.invite-avatar-warm {
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(145deg, #ff8a63, #ff5d98 58%, #ffd37a);
}

.invite-avatar-cool {
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(145deg, #4f72ff, #83c7ff 58%, #a3efc7);
}

.invite-card-profile strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.invite-card-profile p {
  margin: 0.3rem 0 0;
  line-height: 1.55;
  color: var(--muted);
}

.invite-tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
}

.invite-tag-list li {
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: #f5f0e7;
  font-size: 0.76rem;
  font-weight: 800;
}

.invite-sales-meter {
  margin-top: 1rem;
  padding: 0.92rem 1rem;
  border-radius: 22px 26px 22px 28px / 24px 26px 22px 30px;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.2), transparent 22%),
    linear-gradient(145deg, rgba(16, 16, 16, 0.96), rgba(34, 42, 38, 0.96));
  color: #fff;
}

.invite-sales-meter span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.66);
}

.invite-sales-meter strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.12rem;
  letter-spacing: -0.04em;
}

.invite-loop-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.invite-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.invite-token-forward {
  top: 11.4rem;
  left: 11.5rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  animation: invite-forward 5.6s cubic-bezier(0.24, 0.72, 0.26, 1) infinite;
}

.invite-token-return {
  top: 18.8rem;
  right: 9.6rem;
  background: rgba(16, 16, 16, 0.96);
  color: #fff;
  animation: invite-return 5.6s cubic-bezier(0.24, 0.72, 0.26, 1) infinite;
}

.invite-trail {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.invite-trail span {
  position: absolute;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff, #ffe38a 54%, #ffbf3d 100%);
  box-shadow: 0 0 0 4px rgba(255, 227, 138, 0.2);
  opacity: 0.55;
  animation: invite-trail-pulse 5.6s linear infinite;
}

.invite-trail span:nth-child(1) {
  right: 12.4rem;
  top: 19.6rem;
  animation-delay: 3.05s;
}

.invite-trail span:nth-child(2) {
  right: 16.3rem;
  top: 21.9rem;
  animation-delay: 3.2s;
}

.invite-trail span:nth-child(3) {
  left: 17.4rem;
  bottom: 11rem;
  animation-delay: 3.35s;
}

.invite-trail span:nth-child(4) {
  left: 13.6rem;
  bottom: 12.4rem;
  animation-delay: 3.5s;
}

.invite-trail span:nth-child(5) {
  left: 10.5rem;
  bottom: 14rem;
  animation-delay: 3.65s;
}

.invite-scene-note {
  right: 1.35rem;
  bottom: 1.3rem;
  width: min(46%, 258px);
  padding: 1rem 1.05rem;
  border-radius: 28px 34px 30px 40px / 26px 30px 34px 38px;
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 219, 255, 0.16), transparent 24%),
    linear-gradient(160deg, rgba(16, 16, 16, 0.98), rgba(24, 28, 26, 0.94));
  color: #fff;
  transform: rotate(-3deg);
}

.invite-scene-note strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.invite-scene-note p {
  margin: 0.45rem 0 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}

.creator-invite-support {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(16, 16, 16, 0.68);
}

.faq-list {
  max-width: 960px;
  margin: 2.4rem auto 0;
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.1rem 1.3rem;
  border-radius: 30px 44px 36px 40px / 26px 48px 32px 46px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

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

.faq-item p {
  margin-top: 0.85rem;
}

.site-footer {
  padding: 5rem 1rem 2rem;
}

.footer-blob {
  max-width: var(--hero-max);
  margin: 0 auto;
  padding: 3rem clamp(1.4rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 18% 22%, rgba(215, 255, 107, 0.18), transparent 28%),
    radial-gradient(circle at 82% 32%, rgba(200, 219, 255, 0.24), transparent 24%),
    linear-gradient(145deg, #121212, #050505);
  color: #fff;
  border-radius: 78px 48px 96px 64px / 44px 92px 58px 108px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.footer-brand h2 {
  max-width: 11ch;
}

.footer-note {
  margin: 1rem 0 0;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.footer-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

[data-reveal] {
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-rotate: 0deg;
}

.has-motion [data-reveal] {
  opacity: 0;
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.2, 0.75, 0.18, 1);
}

.reveal-up {
  --reveal-y: 40px;
}

.reveal-left {
  --reveal-x: -48px;
  --reveal-rotate: -3deg;
}

.reveal-right {
  --reveal-x: 48px;
  --reveal-rotate: 3deg;
}

.has-motion [data-reveal].is-visible {
  opacity: 1;
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-rotate: 0deg;
}

.parallax-item,
.parallax-card {
  will-change: transform;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

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

@keyframes invite-forward {
  0%,
  16% {
    transform: translate3d(0, 0, 0) scale(0.96);
  }

  34% {
    transform: translate3d(86px, -54px, 0) scale(1);
  }

  52%,
  60% {
    transform: translate3d(188px, -14px, 0) scale(1.04);
  }

  100% {
    transform: translate3d(188px, -14px, 0) scale(0.96);
  }
}

@keyframes invite-return {
  0%,
  52% {
    transform: translate3d(0, 0, 0) scale(0.96);
  }

  72% {
    transform: translate3d(-104px, 36px, 0) scale(1);
  }

  88%,
  100% {
    transform: translate3d(-212px, 62px, 0) scale(1.03);
  }
}

@keyframes invite-trail-pulse {
  0%,
  54%,
  100% {
    opacity: 0.3;
    transform: scale(0.72);
  }

  64%,
  80% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    min-height: 1120px;
  }

  .mouse-card {
    --wish-card-scale: 0.96;
    top: 52%;
    left: 8%;
  }

  .figure-card {
    --wish-card-scale: 0.94;
    top: 54%;
    right: 8%;
  }

  .airpods-card {
    --wish-card-scale: 0.92;
    right: 50%;
    bottom: 7%;
    width: min(33vw, 260px);
    transform:
      translate3d(
        calc(50% + var(--reveal-x, 0px)),
        calc(var(--reveal-y, 0px) + (var(--scroll) * -0.04px)),
        0
      )
      rotate(calc(-4deg + var(--reveal-rotate, 0deg)))
      scale(var(--wish-card-scale));
  }

  .orbit-layer .orbit-pill:nth-child(1) {
    left: 15%;
  }

  .orbit-layer .orbit-pill:nth-child(2) {
    right: 14%;
  }

  .orbit-layer .orbit-pill:nth-child(3) {
    right: 10%;
    bottom: 20%;
  }

  .orbit-layer .orbit-pill:nth-child(4) {
    left: 10%;
    bottom: 20%;
  }

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

  .profile-stage {
    grid-template-columns: 1fr;
  }

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

  .creator-invite-copy {
    max-width: 760px;
  }

  .creator-invite-scene {
    max-width: 780px;
    min-height: 680px;
    margin: 0 auto;
    width: 100%;
  }

  .invite-stage {
    min-height: 680px;
  }

  .mode-card:nth-child(2),
  .growth-ribbon:nth-child(2) {
    margin-top: 0;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: 0.65rem;
  }

  .site-nav {
    gap: 0.9rem;
    padding: 0.32rem 0.85rem 0.42rem 0.7rem;
  }

  .brand-mark {
    width: clamp(4.1rem, 12vw, 4.9rem);
  }

  .brand-wordmark {
    font-size: clamp(1.5rem, 4.8vw, 2.2rem);
  }

  .nav-invite {
    padding-inline: 1rem;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 0.75rem;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-compact-scene {
    display: grid;
    gap: 1.35rem;
    width: min(100%, 46rem);
    margin: 2.65rem auto 0;
    justify-items: center;
  }

  .hero-compact-pills {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(100%, 35rem);
  }

  .hero-compact-pills .hero-scene-pill-mint {
    transform: rotate(-8deg);
  }

  .hero-compact-pills .hero-scene-pill-sky {
    transform: rotate(7deg);
  }

  .hero-compact-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 0.85rem;
    width: min(100%, 44rem);
  }

  .hero-scene-card .wish-card-shell {
    padding: 0.78rem;
  }

  .hero-scene-card-mouse {
    transform: translateY(0.8rem) rotate(-8deg);
  }

  .hero-scene-card-figure {
    transform: translateY(1.95rem) rotate(6deg);
  }

  .hero-scene-card-airpods {
    transform: translateY(2.35rem) rotate(-4deg);
  }

  .hero-scene-pill-links {
    justify-self: start;
    margin-left: 2rem;
    transform: rotate(9deg);
  }

  .wish-card,
  .orbit-layer {
    display: none;
  }

  .wish-card {
    width: min(72vw, 300px);
    padding: 0.5rem;
  }

  .mouse-card {
    --wish-card-scale: 0.82;
    top: auto;
    bottom: 26.5rem;
    left: 50%;
    transform: translate3d(calc(-54% + var(--reveal-x, 0px)), var(--reveal-y, 0px), 0)
      rotate(calc(-5deg + var(--reveal-rotate, 0deg)))
      scale(var(--wish-card-scale));
  }

  .figure-card {
    --wish-card-scale: 0.78;
    top: auto;
    bottom: 14rem;
    right: 50%;
    width: min(62vw, 240px);
    transform: translate3d(calc(50% + var(--reveal-x, 0px)), var(--reveal-y, 0px), 0)
      rotate(calc(5deg + var(--reveal-rotate, 0deg)))
      scale(var(--wish-card-scale));
  }

  .airpods-card {
    --wish-card-scale: 0.8;
    bottom: 0.4rem;
    right: 50%;
    width: min(64vw, 260px);
    transform: translate3d(calc(50% + var(--reveal-x, 0px)), var(--reveal-y, 0px), 0)
      rotate(calc(-3deg + var(--reveal-rotate, 0deg)))
      scale(var(--wish-card-scale));
  }

  .orbit-layer .orbit-pill:nth-child(1),
  .orbit-layer .orbit-pill:nth-child(3) {
    display: none;
  }

  .orbit-layer .orbit-pill:nth-child(2) {
    top: 28%;
    right: 5%;
  }

  .orbit-layer .orbit-pill:nth-child(4) {
    top: auto;
    bottom: 12rem;
    left: 3%;
  }

  .profile-card.tilted,
  .mini-phone.alt,
  .growth-ribbon:nth-child(1),
  .growth-ribbon:nth-child(3) {
    transform: none;
  }

  .invite-steps {
    grid-template-columns: 1fr;
  }

  .creator-invite-actions {
    justify-content: flex-start;
  }

  .creator-invite-scene {
    min-height: 640px;
  }

  .invite-stage {
    min-height: 640px;
    padding: 1.25rem;
  }

  .invite-link-chip {
    width: min(82%, 320px);
    justify-content: center;
    text-align: center;
  }

  .invite-card {
    width: min(46%, 270px);
  }

  .invite-card-left {
    left: 1rem;
    bottom: 8.5rem;
    transform: rotate(-4deg);
  }

  .invite-card-right {
    right: 1rem;
    top: 7.7rem;
    transform: rotate(4deg);
  }

  .invite-badge-share {
    bottom: 10.5rem;
  }

  .invite-badge-unlock {
    bottom: 13rem;
  }

  .invite-token-forward {
    top: 12.2rem;
    left: 9.6rem;
  }

  .invite-token-return {
    top: 19.8rem;
    right: 8.3rem;
  }

  .invite-trail span:nth-child(1) {
    right: 10.9rem;
    top: 20.5rem;
  }

  .invite-trail span:nth-child(2) {
    right: 14.1rem;
    top: 22.2rem;
  }

  .invite-trail span:nth-child(3) {
    left: 15rem;
    bottom: 11.2rem;
  }

  .invite-trail span:nth-child(4) {
    left: 11.6rem;
    bottom: 12.5rem;
  }

  .invite-trail span:nth-child(5) {
    left: 8.6rem;
    bottom: 13.8rem;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding-inline: 0.45rem;
    padding-top: 0;
  }

  .site-nav {
    flex-wrap: nowrap;
    gap: 0.55rem;
    padding: 0.28rem 0.65rem 0.32rem 0.58rem;
    border-radius: 0 0 22px 22px;
  }

  .brand {
    width: auto;
    flex: 1 1 auto;
    gap: 0.45rem;
    justify-content: flex-start;
  }

  .brand-mark {
    width: clamp(2.9rem, 12vw, 3.45rem);
  }

  .brand-wordmark {
    font-size: clamp(1.04rem, 4.9vw, 1.45rem);
  }

  .nav-actions {
    width: auto;
    flex-wrap: nowrap;
    gap: 0.45rem;
    margin-left: 0;
  }

  .nav-login,
  .nav-signup {
    flex: 0 0 auto;
    min-width: 0;
    padding: 0.62rem 0.92rem;
    font-size: 0.82rem;
  }

  .nav-invite {
    display: none;
  }

  main {
    padding-top: 5.85rem;
  }

  .floating-copy h1 {
    font-size: clamp(3.15rem, 16vw, 4.5rem);
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-invite-cue {
    width: 100%;
    padding-inline: 1rem;
  }

  .hero-grid {
    padding-bottom: 0;
  }

  .hero-compact-scene {
    width: 100%;
    margin-top: -1.1rem;
    gap: 0;
  }

  .hero-compact-pills {
    display: none;
  }

  .hero-scene-pill {
    padding: 0.72rem 1rem;
    font-size: 0.84rem;
  }

  .hero-compact-stack {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    justify-items: center;
  }

  .hero-scene-card {
    width: min(69vw, 13.6rem);
  }

  .hero-scene-card .wish-card-shell {
    padding: 0.72rem;
  }

  .hero-scene-card .wish-chip,
  .hero-scene-card .wish-price {
    font-size: 0.66rem;
  }

  .hero-scene-card .wish-card-copy strong {
    font-size: 0.88rem;
  }

  .hero-scene-card .wish-caption {
    font-size: 0.74rem;
  }

  .hero-scene-card-mouse {
    transform: rotate(-7deg);
    margin-bottom: -1.25rem;
  }

  .hero-scene-card-figure {
    transform: rotate(4deg);
    margin-bottom: -1.1rem;
  }

  .hero-scene-card-airpods {
    transform: rotate(-3deg);
  }

  .hero-scene-pill-links {
    display: none;
  }

  .wish-card {
    width: min(76vw, 290px);
    padding: 0.4rem;
  }

  .wish-card-shell {
    padding: 0.78rem;
  }

  .mouse-card {
    --wish-card-scale: 0.68;
    bottom: 23rem;
  }

  .figure-card {
    --wish-card-scale: 0.66;
    bottom: 11.5rem;
    width: min(68vw, 224px);
  }

  .airpods-card {
    --wish-card-scale: 0.68;
    bottom: 0.35rem;
    width: min(70vw, 250px);
  }

  .wish-chip,
  .wish-price {
    font-size: 0.72rem;
  }

  .wish-card-copy strong {
    font-size: 0.9rem;
  }

  .wish-caption {
    font-size: 0.75rem;
  }

  .orbit-pill {
    font-size: 0.84rem;
  }

  .orbit-layer .orbit-pill:nth-child(4) {
    display: none;
  }

  .orbit-layer .orbit-pill:nth-child(2) {
    display: none;
  }

  .section-heading h2,
  .privacy-copy h2,
  .creator-invite-copy h2,
  .footer-brand h2 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .creator-invite-lead {
    font-size: 1rem;
  }

  .creator-invite-actions {
    flex-direction: column;
  }

  .creator-invite-actions a {
    width: 100%;
  }

  .invite-step {
    padding: 1rem;
  }

  .creator-invite-scene {
    min-height: 560px;
  }

  .invite-stage {
    min-height: 560px;
    padding: 1rem;
    border-radius: 52px 34px 62px 40px / 34px 58px 40px 68px;
  }

  .invite-link-chip {
    top: 0.9rem;
    width: calc(100% - 2rem);
    font-size: 0.82rem;
  }

  .invite-link-label {
    display: none;
  }

  .invite-badge {
    padding: 0.65rem 0.85rem;
    font-size: 0.76rem;
  }

  .invite-badge-free {
    top: 4.4rem;
    right: 0.8rem;
  }

  .invite-badge-share {
    right: 0.8rem;
    bottom: 9.4rem;
  }

  .invite-badge-unlock {
    left: 0.8rem;
    bottom: 11.8rem;
  }

  .invite-card {
    width: min(78%, 240px);
    padding: 0.95rem;
  }

  .invite-card-left {
    left: 0.7rem;
    bottom: 8rem;
  }

  .invite-card-right {
    right: 0.7rem;
    top: 6.6rem;
  }

  .invite-avatar {
    width: 56px;
    font-size: 1.1rem;
  }

  .invite-card-profile strong,
  .invite-sales-meter strong {
    font-size: 1rem;
  }

  .invite-token {
    min-width: 68px;
    padding: 0.62rem 0.85rem;
    font-size: 0.76rem;
  }

  .invite-token-forward {
    top: 10.6rem;
    left: 7.1rem;
  }

  .invite-token-return {
    top: 17.6rem;
    right: 5.8rem;
  }

  .invite-trail span:nth-child(1) {
    right: 8.1rem;
    top: 18.3rem;
  }

  .invite-trail span:nth-child(2) {
    right: 10.8rem;
    top: 19.7rem;
  }

  .invite-trail span:nth-child(3) {
    left: 10.8rem;
    bottom: 10rem;
  }

  .invite-trail span:nth-child(4) {
    left: 7.7rem;
    bottom: 11.1rem;
  }

  .invite-trail span:nth-child(5) {
    left: 5rem;
    bottom: 12.4rem;
  }

  .invite-scene-note {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    transform: none;
  }

  .privacy-sculpture {
    min-height: 500px;
    margin-top: 1rem;
  }

  .privacy-panel {
    left: 0;
    width: 86%;
  }

  .privacy-emblem {
    top: 0;
    right: 12%;
    width: 88px;
  }

  .privacy-note {
    right: 2%;
    bottom: 4%;
    width: 82%;
    transform: rotate(4deg);
  }

  .faq-item summary {
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .hero-grid {
    padding-bottom: 0;
  }

  .hero-scene-card {
    width: min(70vw, 13.5rem);
  }

  .mouse-card {
    --wish-card-scale: 0.58;
    bottom: 19rem;
  }

  .figure-card {
    --wish-card-scale: 0.56;
    bottom: 9.5rem;
  }

  .airpods-card {
    --wish-card-scale: 0.58;
    bottom: 0;
  }
}

@media (max-width: 420px) {
  .site-nav {
    gap: 0.45rem;
    padding-inline: 0.5rem;
  }

  .brand-mark {
    width: clamp(2.55rem, 11vw, 3rem);
  }

  .brand-wordmark {
    font-size: clamp(0.96rem, 4.6vw, 1.18rem);
  }

  .nav-actions {
    gap: 0.35rem;
  }

  .nav-login,
  .nav-signup {
    padding: 0.56rem 0.82rem;
    font-size: 0.78rem;
  }

  main {
    padding-top: 5.35rem;
  }

  .hero-grid {
    padding-bottom: 0;
  }

  .hero-compact-pills {
    gap: 0.55rem;
  }

  .hero-scene-pill {
    padding: 0.66rem 0.92rem;
    font-size: 0.78rem;
  }

  .hero-scene-pill-sky {
    display: none;
  }

  .hero-scene-card {
    width: min(72vw, 12.9rem);
  }

  .hero-scene-pill-links {
    margin-left: 0.3rem;
  }

  .mouse-card {
    --wish-card-scale: 0.52;
    bottom: 17.25rem;
  }

  .figure-card {
    --wish-card-scale: 0.5;
    bottom: 8.5rem;
  }

  .airpods-card {
    --wish-card-scale: 0.52;
    bottom: -0.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .parallax-item,
  .parallax-card {
    transform: none !important;
  }
}

.referral-offer {
  max-width: 40rem;
}

.referral-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.referral-title span {
  display: block;
}

.referral-subcopy {
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.referral-fineprint {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.55;
  color: rgba(16, 16, 16, 0.8);
}

.referral-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.referral-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 16, 16, 0.05);
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.referral-strip span:nth-child(2) {
  background: rgba(243, 222, 132, 0.68);
}

.referral-strip span:nth-child(3) {
  background: rgba(200, 219, 255, 0.72);
}

.referral-visual {
  position: relative;
  min-height: 600px;
}

.referral-orbit {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 72px 44px 88px 50px / 46px 84px 56px 98px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.72), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255, 151, 123, 0.18), transparent 24%),
    radial-gradient(circle at 74% 78%, rgba(215, 255, 107, 0.18), transparent 24%),
    linear-gradient(155deg, rgba(255, 253, 247, 0.96), rgba(246, 241, 232, 0.98));
  border: 1px solid rgba(16, 16, 16, 0.06);
  box-shadow: var(--shadow);
}

.referral-orbit::before,
.referral-orbit::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.9;
}

.referral-orbit::before {
  width: 210px;
  height: 210px;
  left: -4%;
  bottom: 12%;
  background: rgba(255, 151, 123, 0.16);
}

.referral-orbit::after {
  width: 240px;
  height: 240px;
  right: -6%;
  top: 6%;
  background: rgba(200, 219, 255, 0.18);
}

.referral-orbit-lines {
  position: absolute;
  inset: 2rem;
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  transform-origin: center;
  animation: referral-spin-slow 24s linear infinite;
}

.referral-orbit-lines ellipse:first-of-type {
  animation: referral-dash 18s linear infinite;
}

.referral-orbit-lines ellipse:last-of-type {
  animation: referral-dash-reverse 22s linear infinite;
}

.referral-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(42vw, 250px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.56), transparent 24%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(242, 236, 227, 0.92));
  box-shadow:
    0 28px 70px rgba(16, 16, 16, 0.1),
    inset 0 0 0 1px rgba(16, 16, 16, 0.05);
  z-index: 2;
}

.referral-core img {
  position: relative;
  width: 62%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(16, 16, 16, 0.08));
  z-index: 2;
}

.referral-core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.referral-core-ring-outer {
  inset: -26px;
  border: 2px dashed rgba(16, 16, 16, 0.12);
  animation: referral-spin-slow 18s linear infinite;
}

.referral-core-ring-inner {
  inset: -10px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  animation: referral-spin-reverse 12s linear infinite;
}

.referral-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.08rem;
  border-radius: 999px 999px 999px 320px;
  box-shadow: var(--shadow-soft);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  z-index: 3;
  animation: referral-float 6s ease-in-out infinite;
}

.referral-pill-share {
  top: 9%;
  left: 6%;
  background: rgba(16, 16, 16, 0.96);
  color: #fff;
}

.referral-pill-free {
  top: 14%;
  right: 5%;
  background: var(--butter);
  color: var(--ink);
  animation-delay: -1s;
}

.referral-pill-cash {
  right: 6%;
  bottom: 14%;
  background: var(--sky);
  color: var(--ink);
  animation-delay: -2.2s;
}

.referral-pill-unlock {
  left: 6%;
  bottom: 18%;
  background: var(--mint);
  color: var(--ink);
  animation-delay: -3.1s;
}

.referral-spark {
  position: absolute;
  width: 14px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff, #ffe38a 56%, #ffbf3d 100%);
  box-shadow: 0 0 0 5px rgba(255, 227, 138, 0.18);
  z-index: 3;
  animation: referral-pulse 2.8s ease-in-out infinite;
}

.referral-spark-one {
  top: 24%;
  left: 18%;
}

.referral-spark-two {
  right: 19%;
  bottom: 27%;
  animation-delay: -1.4s;
}

@keyframes referral-spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes referral-spin-reverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes referral-dash {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -240;
  }
}

@keyframes referral-dash-reverse {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: 240;
  }
}

@keyframes referral-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes referral-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  .referral-offer {
    max-width: 48rem;
  }

  .referral-visual {
    width: 100%;
    max-width: 760px;
    min-height: 560px;
    margin: 0 auto;
  }

  .referral-orbit {
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  .referral-title {
    font-size: clamp(3rem, 9vw, 4.8rem);
  }

  .referral-strip {
    gap: 0.7rem;
  }

  .referral-visual {
    min-height: 520px;
  }

  .referral-orbit {
    min-height: 520px;
  }

  .referral-core {
    width: min(50vw, 220px);
  }
}

@media (max-width: 640px) {
  .referral-title {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }

  .referral-subcopy,
  .referral-fineprint {
    font-size: 0.96rem;
  }

  .referral-strip {
    flex-direction: column;
  }

  .referral-strip span {
    width: 100%;
  }

  .referral-visual {
    min-height: 430px;
  }

  .referral-orbit {
    min-height: 430px;
    border-radius: 46px 30px 58px 34px / 32px 54px 38px 66px;
  }

  .referral-orbit-lines {
    inset: 1.35rem;
    width: calc(100% - 2.7rem);
    height: calc(100% - 2.7rem);
  }

  .referral-core {
    width: min(54vw, 176px);
  }

  .referral-core-ring-outer {
    inset: -18px;
  }

  .referral-core-ring-inner {
    inset: -7px;
  }

  .referral-pill {
    padding: 0.72rem 0.9rem;
    font-size: 0.82rem;
  }

  .referral-pill-share {
    top: 8%;
    left: 4%;
  }

  .referral-pill-free {
    top: 14%;
    right: 4%;
  }

  .referral-pill-cash {
    right: 4%;
    bottom: 12%;
  }

  .referral-pill-unlock {
    left: 4%;
    bottom: 17%;
  }

  .referral-spark-one {
    top: 22%;
    left: 15%;
  }

  .referral-spark-two {
    right: 16%;
    bottom: 24%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .referral-orbit-lines,
  .referral-orbit-lines ellipse,
  .referral-core-ring,
  .referral-pill,
  .referral-spark {
    animation: none !important;
  }
}

.referral-offer {
  max-width: 35rem;
}

.referral-tagline {
  margin: 0 0 0.55rem;
  font-family: "Caveat", cursive;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(16, 16, 16, 0.72);
}

.referral-title {
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 5.1rem);
  line-height: 0.94;
}

.referral-value-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.referral-value-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 28px 36px 30px 38px / 24px 34px 28px 40px;
  border: 1px solid rgba(16, 16, 16, 0.05);
  box-shadow: var(--shadow-soft);
}

.referral-value-row-you {
  background: rgba(255, 255, 255, 0.9);
}

.referral-value-row-friend {
  background: rgba(216, 242, 222, 0.7);
}

.referral-value-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.46rem 0.72rem;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.92);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.referral-value-row strong {
  display: block;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.referral-gift-badge {
  position: relative;
  width: 68px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.74), transparent 24%),
    linear-gradient(145deg, #fff5cf, #ffd96f 56%, #ffb26a);
  box-shadow:
    0 0 0 9px rgba(255, 216, 111, 0.2),
    0 18px 34px rgba(255, 184, 110, 0.28);
  transform: rotate(-8deg);
  animation: reward-pop 2.8s ease-in-out infinite;
}

.referral-gift-badge::before {
  content: "";
  position: absolute;
  inset: -16%;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 216, 111, 0.48), rgba(255, 151, 123, 0.32));
  filter: blur(12px);
  opacity: 0.86;
  z-index: -1;
}

.referral-gift-badge img {
  width: 72%;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(16, 16, 16, 0.16));
}

.creator-invite-actions {
  margin-top: 1.6rem;
}

.referral-fineprint {
  max-width: 31rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.55;
  color: rgba(16, 16, 16, 0.76);
}

.referral-strip,
.referral-orbit,
.referral-orbit-lines,
.referral-core,
.referral-pill,
.referral-spark,
.sticky-logo-badge,
.sticky-chip {
  display: none;
}

.referral-visual {
  min-height: 520px;
  overflow: visible;
}

.sticky-note-scene {
  position: relative;
  min-height: 520px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.sticky-note {
  position: absolute;
  left: 0.4rem;
  top: 1.1rem;
  width: min(100%, 470px);
  min-height: 370px;
  padding: 2.15rem 1.8rem 1.55rem;
  border-radius: 16px 18px 34px 22px;
  background:
    linear-gradient(180deg, rgba(255, 251, 231, 0.98), rgba(250, 243, 214, 0.98));
  border: 1px solid rgba(122, 104, 28, 0.14);
  box-shadow: var(--shadow-soft);
  transform: rotate(3deg);
}

.sticky-note::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 0, transparent 92%, rgba(122, 104, 28, 0.06) 92%, rgba(122, 104, 28, 0.06) 100%);
  background-size: 100% 2.5rem;
  opacity: 0.36;
  pointer-events: none;
}

.sticky-note-tape {
  position: absolute;
  top: -0.8rem;
  width: 86px;
  height: 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 18px rgba(16, 16, 16, 0.05);
}

.sticky-note-tape-left {
  left: 1.15rem;
  transform: rotate(-12deg);
}

.sticky-note-tape-right {
  right: 1rem;
  transform: rotate(10deg);
}

.sticky-note-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(16, 16, 16, 0.54);
}

.sticky-note-title {
  margin: 0.95rem 0 0;
  font-size: clamp(2rem, 3.7vw, 2.85rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #15130e;
}

.sticky-note-body {
  max-width: 20ch;
  margin: 0.85rem 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(21, 19, 14, 0.82);
}

.sticky-note-link {
  position: relative;
  margin-top: 1.65rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(16, 16, 16, 0.16);
}

.sticky-note-link span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(16, 16, 16, 0.54);
}

.sticky-note-link strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: #0f0f0f;
}

@keyframes reward-pop {
  0%,
  100% {
    transform: rotate(-8deg) scale(1);
    box-shadow:
      0 0 0 9px rgba(255, 216, 111, 0.2),
      0 18px 34px rgba(255, 184, 110, 0.28);
  }

  50% {
    transform: rotate(-4deg) scale(1.06);
    box-shadow:
      0 0 0 14px rgba(255, 216, 111, 0.12),
      0 22px 40px rgba(255, 184, 110, 0.34);
  }
}

@media (max-width: 1180px) {
  .sticky-note-scene {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .referral-offer {
    max-width: 44rem;
  }

  .referral-title {
    font-size: clamp(2.9rem, 8vw, 4.4rem);
  }

  .referral-visual,
  .sticky-note-scene {
    min-height: 480px;
  }

  .sticky-note {
    left: 0;
    width: min(78%, 420px);
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .referral-tagline {
    font-size: 1.35rem;
  }

  .referral-title {
    font-size: clamp(2.6rem, 11vw, 3.7rem);
  }

  .referral-value-row {
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
  }

  .referral-value-label {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .referral-value-row strong {
    font-size: 1.32rem;
  }

  .referral-gift-badge {
    width: 56px;
  }

  .referral-fineprint {
    font-size: 0.9rem;
  }

  .sticky-note-scene {
    min-height: 390px;
    padding: 0;
  }

  .sticky-note {
    top: 1.1rem;
    left: 0;
    width: min(88%, 330px);
    min-height: 270px;
    padding: 1.35rem 1.05rem 1rem;
  }

  .sticky-note-title {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .sticky-note-body {
    font-size: 0.94rem;
  }

  .sticky-note-link strong {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .referral-gift-badge,
  .sticky-note {
    transform: none !important;
    animation: none !important;
  }
}

.terms-page main {
  padding-top: clamp(5.4rem, 7vw, 6.2rem);
}

.terms-main {
  max-width: var(--hero-max);
  margin: 0 auto;
  padding-inline: 1rem;
}

.terms-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
  padding-top: 1.2rem;
}

.terms-updated {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: rgba(16, 16, 16, 0.62);
}

.terms-hero-copy h1,
.terms-section h2,
.terms-rule-card h3 {
  font-family: "Fraunces", serif;
}

.terms-hero-copy h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.terms-intro,
.terms-note,
.terms-body,
.terms-summary-card p,
.terms-rule-card p {
  line-height: 1.7;
  color: var(--muted);
}

.terms-intro {
  max-width: 44rem;
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
}

.terms-summary {
  display: grid;
  gap: 1rem;
}

.terms-summary-card,
.terms-rule-card {
  padding: 1.35rem 1.25rem;
  border-radius: 34px 46px 36px 44px / 26px 42px 30px 48px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 16, 16, 0.05);
}

.terms-summary-card.mint {
  background: rgba(216, 242, 222, 0.72);
}

.terms-summary-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.92);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.terms-summary-card strong {
  display: block;
  margin-top: 0.95rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.terms-summary-card p {
  margin: 0.5rem 0 0;
}

.terms-section {
  padding-top: 3.4rem;
}

.terms-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.terms-list {
  margin: 1.35rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.8rem;
  color: var(--ink);
  line-height: 1.65;
}

.terms-list-numbered {
  padding-left: 1.35rem;
}

.terms-note,
.terms-body {
  max-width: 54rem;
  margin: 1rem 0 0;
}

.terms-rule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.terms-rule-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  aspect-ratio: 1;
  border-radius: 18px;
  background: rgba(16, 16, 16, 0.94);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.terms-rule-card h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.terms-rule-card p {
  margin: 0;
}

.terms-faq {
  max-width: 920px;
  margin-top: 1.35rem;
  display: grid;
  gap: 1rem;
}

@media (max-width: 980px) {
  .terms-hero {
    grid-template-columns: 1fr;
  }

  .terms-summary {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 640px) {
  .terms-page main {
    padding-top: 10.4rem;
  }

  .terms-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .terms-section h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .terms-summary-card,
  .terms-rule-card {
    padding: 1.05rem 1rem;
  }
}
