:root {
  --ink: #241227;
  --ink-soft: #746576;
  --paper: #fcf7fa;
  --paper-deep: #f6eff4;
  --pink: #f73883;
  --pink-hot: #ec276f;
  --pink-soft: #ffc4dd;
  --purple: #6d3cff;
  --plum: #240027;
  --night: #241127;
  --line: rgba(49, 15, 51, 0.12);
  --white-line: rgba(255, 255, 255, 0.13);
  --radius-large: 36px;
  --radius-medium: 24px;
  --shadow: 0 30px 80px rgba(61, 6, 55, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

iconsax-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

iconsax-icon svg {
  width: 1em;
  height: 1em;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 90;
  width: min(1180px, calc(100% - 40px));
  height: 72px;
  padding: 0 12px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  color: #fff;
  background: rgba(20, 0, 24, 0.58);
  box-shadow: 0 12px 40px rgba(19, 0, 23, 0.18);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(20, 0, 24, 0.92);
  box-shadow: 0 15px 50px rgba(19, 0, 23, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Outfit", sans-serif;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.brand img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  border-radius: 13px;
  box-shadow: 0 0 26px rgba(255, 36, 127, 0.32);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-download {
  height: 48px;
  padding: 0 18px 0 21px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-hot), #ff3e9d);
  box-shadow: 0 10px 28px rgba(255, 15, 104, 0.28);
  font-size: 14px;
  font-weight: 700;
}

.nav-download iconsax-icon {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.nav-download:hover iconsax-icon {
  transform: translateX(3px);
}

.menu-button {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  cursor: pointer;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 880px;
  padding: 180px max(24px, calc((100vw - 1180px) / 2)) 110px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 54px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 46%, rgba(255, 30, 130, 0.2), transparent 31%),
    linear-gradient(135deg, #241127 0%, #351638 48%, #1f1026 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.21;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 1px, transparent 1.5px),
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.04) 50%, transparent 50.2%);
  background-size: 28px 28px, 120px 100%;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -5%;
  bottom: -300px;
  left: -5%;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 17, 109, 0.78), rgba(109, 60, 255, 0.12) 45%, transparent 68%);
  filter: blur(60px);
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-glow-left {
  left: -180px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  background: rgba(255, 23, 118, 0.26);
}

.hero-glow-right {
  top: 40px;
  right: 60px;
  width: 380px;
  height: 380px;
  background: rgba(112, 55, 255, 0.16);
}

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

.eyebrow {
  width: fit-content;
  margin-bottom: 28px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(255, 36, 127, 0.13), 0 0 16px var(--pink);
}

.hero h1,
.intro h2,
.creator-copy h2,
.community h2,
.safety h2,
.download h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.hero h1 {
  max-width: 630px;
  font-size: clamp(64px, 6vw, 96px);
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #fff 2%, #ffb4d9 36%, #ff2c86 88%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy > p {
  max-width: 560px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.primary-button {
  min-width: 210px;
  height: 68px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--pink-hot), #ff4da4);
  box-shadow: 0 18px 38px rgba(255, 15, 104, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
  box-shadow: 0 22px 45px rgba(255, 15, 104, 0.42);
  transform: translateY(-3px);
}

.primary-button > .apple-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  fill: currentColor;
}

.primary-button > iconsax-icon:last-child {
  font-size: 18px;
}

.primary-button span {
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 18px;
  font-weight: 700;
}

.primary-button small {
  margin-bottom: 2px;
  opacity: 0.72;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.text-button iconsax-icon {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.text-button:hover iconsax-icon {
  transform: translateY(3px);
}

.hero-trust {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
}

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

.hero-trust iconsax-icon {
  color: #ff71ae;
  font-size: 17px;
}

.hero-visual {
  height: 620px;
}

.hero-card {
  position: absolute;
  width: 296px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 34px;
  background: #170019;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.48), 0 0 60px rgba(255, 26, 120, 0.12);
}

.hero-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.07);
  content: "";
  pointer-events: none;
}

.hero-card img {
  width: 100%;
}

.card-front {
  top: 18px;
  left: 48%;
  z-index: 2;
  transform: rotate(4deg);
}

.card-back {
  top: 76px;
  left: 12%;
  opacity: 0.84;
  transform: rotate(-9deg) scale(0.93);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 64, 154, 0.21);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 18px var(--pink);
  content: "";
}

.orbit-one {
  top: 18px;
  left: 8%;
  width: 520px;
  height: 520px;
}

.orbit-one::after {
  top: 48px;
  right: 82px;
}

.orbit-two {
  top: 88px;
  left: 15%;
  width: 380px;
  height: 380px;
}

.orbit-two::after {
  bottom: 7px;
  left: 134px;
}

.floating-pill {
  position: absolute;
  z-index: 4;
  min-width: 222px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(31, 4, 34, 0.74);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.floating-pill .pill-icon {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #853fff);
  font-size: 21px;
}

.floating-pill > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-pill strong {
  font-size: 13px;
}

.floating-pill small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.pill-top {
  top: 88px;
  right: -40px;
}

.pill-bottom {
  bottom: 46px;
  left: 3%;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 42px;
  height: 1px;
  display: block;
  background: rgba(255, 255, 255, 0.25);
}

.fandom-strip {
  position: relative;
  z-index: 4;
  padding: 23px 0;
  color: #fff;
  background: linear-gradient(90deg, #c92f6c, #d94883, #8a4fb5);
  overflow: hidden;
}

.strip-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: marquee 26s linear infinite;
}

.strip-track span {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.strip-track i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
}

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

.intro {
  padding-top: 140px;
  padding-bottom: 150px;
}

.section-label {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--pink-hot);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::after {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-label span {
  color: var(--ink-soft);
}

.intro-grid {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.intro h2,
.creator-copy h2,
.community h2,
.safety h2 {
  font-size: clamp(48px, 5.5vw, 76px);
}

.intro h2 span,
.creator-copy h2 span,
.community h2 span,
.safety h2 span {
  color: var(--pink-hot);
}

.intro-copy {
  padding-bottom: 6px;
}

.intro-copy p,
.community-heading > p,
.creator-copy .lead {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.intro-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-hot);
  font-size: 14px;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 326px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.feature-card-large {
  min-height: 675px;
  grid-row: span 2;
  color: #fff;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 36, 127, 0.19), transparent 30%),
    linear-gradient(150deg, #1a001f, #34062d);
}

.feature-number {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(34, 7, 35, 0.3);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.feature-card-large .feature-number {
  color: rgba(255, 255, 255, 0.34);
}

.feature-icon {
  margin-bottom: 58px;
  color: var(--pink-hot);
  font-size: 31px;
}

.feature-card-large .feature-icon {
  margin-bottom: 25px;
  color: #ff76b3;
}

.feature-card h3 {
  max-width: 440px;
  margin: auto 0 12px;
  font-family: "Outfit", sans-serif;
  font-size: 29px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.feature-card p {
  max-width: 440px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.feature-card-large p {
  color: rgba(255, 255, 255, 0.58);
}

.feature-card-copy {
  position: relative;
  z-index: 2;
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-image {
  position: absolute;
  right: -10px;
  bottom: -145px;
  width: 43%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px 30px 0 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  transform: rotate(3deg);
}

.mini-orbit {
  position: absolute;
  top: -110px;
  right: -75px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 36, 127, 0.15);
  border-radius: 50%;
}

.mini-orbit::before,
.mini-orbit::after {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255, 36, 127, 0.12);
  border-radius: 50%;
  content: "";
}

.mini-orbit::after {
  inset: 70px;
}

.mini-orbit span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 14px rgba(255, 36, 127, 0.45);
}

.mini-orbit span:nth-child(1) {
  bottom: 26px;
  left: 43px;
}

.mini-orbit span:nth-child(2) {
  right: 38px;
  bottom: 62px;
}

.mini-orbit span:nth-child(3) {
  right: 91px;
  bottom: 96px;
}

.feature-card-accent {
  background: linear-gradient(145deg, #ffe8f2, #f7eaff);
}

.chat-preview {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.chat-preview span {
  padding: 9px 12px;
  border-radius: 13px 13px 3px 13px;
  color: #fff;
  background: var(--pink);
  font-size: 10px;
  box-shadow: 0 8px 18px rgba(255, 36, 127, 0.17);
}

.chat-preview span:last-child {
  align-self: flex-start;
  border-radius: 13px 13px 13px 3px;
  color: var(--ink);
  background: #fff;
}

.creator-section {
  padding: 150px 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 18%, var(--paper-deep) 82%, var(--paper) 100%);
  overflow: hidden;
}

.creator-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 110px;
}

.creator-visual {
  position: relative;
  min-height: 700px;
}

.creator-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 530px;
  height: 530px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 36, 127, 0.16), rgba(117, 66, 255, 0.08) 45%, transparent 70%);
  content: "";
  transform: translate(-50%, -50%);
}

.creator-phone {
  position: absolute;
  top: 0;
  left: 50%;
  width: 340px;
  overflow: hidden;
  border: 7px solid #19021c;
  border-radius: 42px;
  box-shadow: 0 45px 90px rgba(50, 5, 47, 0.25);
  transform: translateX(-50%) rotate(-3deg);
}

.creator-stat {
  position: absolute;
  z-index: 2;
  max-width: 235px;
  padding: 17px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 50px rgba(60, 12, 56, 0.13);
  backdrop-filter: blur(18px);
}

.creator-stat iconsax-icon {
  flex: 0 0 auto;
  color: var(--pink-hot);
  font-size: 25px;
}

.creator-stat span {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.4;
}

.creator-stat strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.stat-one {
  top: 105px;
  left: -20px;
}

.stat-two {
  right: -26px;
  bottom: 120px;
}

.creator-copy .lead {
  max-width: 580px;
  margin: 34px 0 38px;
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit {
  padding: 24px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.benefit > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--pink-hot);
  background: #fff;
  box-shadow: 0 9px 24px rgba(70, 20, 65, 0.07);
  font-size: 23px;
}

.benefit h3 {
  margin: 1px 0 7px;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.benefit p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.community {
  padding-top: 150px;
  padding-bottom: 150px;
}

.community-heading {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.community-heading > p {
  margin-bottom: 5px;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 30px;
}

.showcase-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-large);
  background: linear-gradient(150deg, #1a001e, #33022d);
  overflow: hidden;
}

.showcase-card::before {
  position: absolute;
  top: -25%;
  left: 20%;
  width: 70%;
  height: 50%;
  border-radius: 50%;
  background: rgba(255, 24, 114, 0.24);
  filter: blur(50px);
  content: "";
}

.showcase-card > img {
  position: relative;
  z-index: 1;
  width: 72%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.36);
}

.showcase-profile {
  margin-top: 90px;
}

.showcase-caption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  min-width: 218px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  color: #fff;
  background: rgba(26, 0, 30, 0.78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.showcase-caption > span {
  width: 40px;
  height: 40px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--pink);
  font-size: 20px;
}

.showcase-caption > div {
  display: flex;
  flex-direction: column;
}

.showcase-caption strong {
  font-size: 13px;
}

.showcase-caption small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.safety {
  position: relative;
  margin-top: 24px;
  padding: 170px 0 160px;
  border-radius: 72px 72px 0 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 56, 131, 0.14), transparent 34%),
    linear-gradient(150deg, #321735 0%, var(--night) 62%);
  box-shadow: 0 -28px 80px rgba(55, 22, 52, 0.1);
  overflow: hidden;
}

.safety::before {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  content: "";
}

.safety-glow {
  position: absolute;
  right: -220px;
  bottom: -240px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 15, 104, 0.2);
  filter: blur(85px);
}

.safety-inner {
  position: relative;
  z-index: 1;
}

.section-label-light {
  color: #ff6dac;
}

.section-label-light span {
  color: rgba(255, 255, 255, 0.46);
}

.safety-copy {
  max-width: 800px;
}

.safety h2 span {
  color: transparent;
  background: linear-gradient(100deg, #fff, #ff559f);
  -webkit-background-clip: text;
  background-clip: text;
}

.safety-copy > p {
  max-width: 650px;
  margin: 32px 0 64px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.75;
}

.safety-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.safety-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--white-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.safety-card:hover {
  border-color: rgba(255, 85, 159, 0.46);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
}

.safety-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, var(--pink), #7c40ff);
  box-shadow: 0 12px 30px rgba(255, 36, 127, 0.22);
  font-size: 25px;
}

.safety-index {
  position: absolute;
  top: 33px;
  right: 30px;
  color: rgba(255, 255, 255, 0.27);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.safety-card h3 {
  margin: auto 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.safety-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.65;
}

.download {
  position: relative;
  z-index: 0;
  padding-top: 230px;
  padding-bottom: 120px;
}

.download::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 110vw;
  height: 165px;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  background: var(--night);
  box-shadow: 0 28px 70px rgba(67, 27, 61, 0.12);
  content: "";
  transform: translateX(-50%);
}

.download-panel {
  position: relative;
  min-height: 390px;
  padding: 70px 70px 66px 250px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px 55px;
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 73, 162, 0.3), transparent 28%),
    linear-gradient(135deg, #1c001f, #43062f 60%, #250020);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.download-panel::before {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.65) 1px, transparent 1px);
  background-size: 25px 25px;
  mask-image: linear-gradient(90deg, black, transparent);
  content: "";
}

.download-logo {
  position: absolute;
  top: 50%;
  left: -52px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 62px;
  box-shadow: 0 0 60px rgba(255, 20, 120, 0.25);
  transform: translateY(-50%) rotate(-8deg);
  overflow: hidden;
}

.download-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-copy,
.store-button,
.platform-note {
  position: relative;
  z-index: 1;
}

.download-kicker {
  display: block;
  margin-bottom: 17px;
  color: #ff73b1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.download h2 {
  font-size: clamp(52px, 6vw, 82px);
}

.download-copy p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
}

.store-button {
  min-width: 238px;
  min-height: 78px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.store-button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.store-button > .apple-icon {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-button > iconsax-icon:last-child {
  margin-left: auto;
  font-size: 19px;
}

.store-button span {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 700;
}

.store-button small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 500;
}

.platform-note {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
}

.platform-note iconsax-icon {
  font-size: 15px;
}

footer {
  margin-top: 32px;
  padding: 105px 0 24px;
  border-radius: 72px 72px 0 0;
  color: #fff;
  background: linear-gradient(145deg, #301733 0%, var(--night) 62%);
  box-shadow: 0 -28px 80px rgba(55, 22, 52, 0.1);
}

.footer-main {
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.footer-brand > p {
  max-width: 330px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 9px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ff6dac;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1050px) {
  .hero {
    min-height: 900px;
    grid-template-columns: 1fr 0.92fr;
  }

  .hero h1 {
    font-size: clamp(58px, 7vw, 76px);
  }

  .hero-card {
    width: 260px;
  }

  .card-front {
    left: 39%;
  }

  .card-back {
    left: 3%;
  }

  .pill-top {
    right: -30px;
  }

  .creator-layout {
    gap: 65px;
  }

  .creator-phone {
    width: 310px;
  }

  .stat-one {
    left: -10px;
  }

  .stat-two {
    right: -10px;
  }

  .download-panel {
    padding-right: 42px;
    padding-left: 210px;
  }
}

@media (max-width: 840px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    height: 64px;
  }

  .desktop-nav {
    position: fixed;
    top: 88px;
    right: 12px;
    left: 12px;
    padding: 24px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(20, 0, 24, 0.97);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .desktop-nav a {
    padding: 16px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .desktop-nav a:last-child {
    border-bottom: 0;
  }

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

  .nav-download {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 90px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .hero-visual {
    width: min(620px, 100%);
    height: 660px;
    margin: 0 auto;
  }

  .card-front {
    left: 49%;
  }

  .card-back {
    left: 12%;
  }

  .pill-top {
    right: 0;
  }

  .pill-bottom {
    left: 0;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .community-heading {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .feature-card-large {
    min-height: 620px;
    grid-column: span 2;
    grid-row: auto;
  }

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

  .creator-visual {
    width: min(600px, 100%);
    margin: 0 auto;
  }

  .creator-copy {
    max-width: 690px;
  }

  .safety-cards {
    grid-template-columns: 1fr;
  }

  .safety-card {
    min-height: 260px;
  }

  .download-panel {
    padding: 260px 38px 45px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-logo {
    top: -35px;
    left: 50%;
    width: 245px;
    height: 245px;
    transform: translateX(-50%) rotate(-5deg);
  }

  .store-button {
    width: min(280px, 100%);
    margin: 0 auto;
  }

  .platform-note {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: min(100% - 32px, 1180px);
  }

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

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

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .primary-button {
    width: min(310px, 100%);
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    height: 560px;
    transform: translateX(-3%);
  }

  .hero-card {
    width: 225px;
    border-radius: 26px;
  }

  .card-front {
    top: 20px;
    left: 44%;
  }

  .card-back {
    top: 82px;
    left: 7%;
  }

  .floating-pill {
    min-width: 194px;
    padding: 10px 12px;
  }

  .floating-pill .pill-icon {
    width: 35px;
    height: 35px;
  }

  .pill-top {
    top: 53px;
    right: -38px;
  }

  .pill-bottom {
    bottom: 35px;
    left: -20px;
  }

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

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

  .intro,
  .community {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .creator-section {
    padding: 100px 0;
  }

  .safety {
    padding: 120px 0 100px;
    border-radius: 42px 42px 0 0;
  }

  .intro h2,
  .creator-copy h2,
  .community h2,
  .safety h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

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

  .feature-card-large {
    min-height: 650px;
    grid-column: auto;
  }

  .feature-card-copy {
    width: 100%;
    height: 245px;
  }

  .feature-image {
    right: 50%;
    bottom: -245px;
    width: 61%;
    transform: translateX(50%) rotate(2deg);
  }

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

  .creator-phone {
    width: 280px;
  }

  .creator-stat {
    max-width: 190px;
  }

  .stat-one {
    top: 80px;
    left: -20px;
  }

  .stat-two {
    right: -17px;
    bottom: 85px;
  }

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

  .showcase-profile {
    margin-top: 0;
  }

  .showcase-card {
    padding: 24px;
  }

  .showcase-card > img {
    width: 84%;
  }

  .showcase-caption {
    right: 17px;
    bottom: 17px;
  }

  .download {
    padding-top: 220px;
    padding-bottom: 80px;
  }

  .download-panel {
    padding: 230px 24px 38px;
    border-radius: 32px;
  }

  .download-logo {
    width: 215px;
    height: 215px;
  }

  .download h2 {
    font-size: 50px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 45px 28px;
  }

  .footer-links > div:last-child {
    grid-column: span 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  footer {
    border-radius: 42px 42px 0 0;
  }
}

@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;
  }

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