:root {
  --bg: #070503;
  --text: #f7f3e8;
  --muted: #c8bba2;
  --gold-0: #fff3cc;
  --gold-1: #ffd16c;
  --gold-2: #ffab2f;
  --amber: #ff7a1c;
  --violet: #6f42ff;
  --card: rgba(22, 14, 6, 0.72);
  --border: rgba(255, 192, 84, 0.25);
  --radius: 24px;
  --shadow: 0 28px 80px rgba(255, 149, 46, 0.28);
  --container: min(1180px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
  letter-spacing: 0.01em;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(255, 174, 59, 0.12) 0, transparent 32%),
    radial-gradient(circle at 84% 10%, rgba(255, 120, 20, 0.16) 0, transparent 36%),
    linear-gradient(145deg, #070503 0%, #0c0704 40%, #09090c 100%);
  z-index: -5;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
  background-image: radial-gradient(#fff 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.bg-aurora {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.bg-stars {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-star {
  --size: 120px;
  --x: 50%;
  --y: 50%;
  --opacity: 0.2;
  --duration: 18s;
  --delay: 0s;
  --drift-x: 16px;
  --drift-y: -18px;
  --drift-x-alt: -10px;
  --drift-y-alt: 8px;
  --drift-x-soft: 4px;
  --drift-y-soft: -3px;
  --rotate: 8deg;
  --spin: 14deg;
  --spin-soft: 6deg;
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  aspect-ratio: 1;
  background: center/contain no-repeat;
  transform: translate3d(-50%, -50%, 0) rotate(var(--rotate));
  opacity: var(--opacity);
  filter: none;
  mix-blend-mode: normal;
  animation: starDrift var(--duration) ease-in-out var(--delay) infinite;
}

.bg-star--gold {
  background-image: url("star-logo.png");
  filter: none;
}

.bg-star--violet {
  background-image: url("star-logo2.png");
  filter: none;
}

.bg-star--gold.is-bright {
  filter: drop-shadow(0 0 18px rgba(255, 173, 61, 0.26));
}

.bg-star--violet.is-bright {
  filter: drop-shadow(0 0 16px rgba(164, 95, 255, 0.3));
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.35;
}

.orb--gold {
  width: clamp(300px, 42vw, 680px);
  height: clamp(300px, 42vw, 680px);
  right: -14%;
  top: -8%;
  background: radial-gradient(circle, rgba(255, 193, 96, 0.95) 0, rgba(255, 148, 24, 0.12) 70%, transparent 100%);
  animation: driftA 16s ease-in-out infinite;
}

.orb--amber {
  width: clamp(220px, 26vw, 460px);
  height: clamp(220px, 26vw, 460px);
  left: -8%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(255, 114, 33, 0.72) 0, rgba(255, 114, 33, 0) 72%);
  animation: driftB 14s ease-in-out infinite;
}

.orb--violet {
  width: clamp(220px, 30vw, 420px);
  height: clamp(220px, 30vw, 420px);
  right: 18%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(111, 66, 255, 0.5) 0, rgba(111, 66, 255, 0) 70%);
  animation: driftC 18s ease-in-out infinite;
}

.preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 72% 30%, rgba(255, 168, 51, 0.24), transparent 46%), #080502;
  z-index: 30;
  display: grid;
  place-items: center;
  gap: 12px;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.preloader__glow {
  position: absolute;
  width: min(54vw, 420px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 187, 66, 0.42), transparent 70%);
  filter: blur(16px);
}

.preloader__brand {
  position: relative;
  margin: 0;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.preloader__text {
  margin: 0;
  color: var(--muted);
}

.preloader__line {
  width: min(280px, 72vw);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 215, 151, 0.18);
  overflow: hidden;
}

.preloader__line span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-0));
  animation: load 1.2s ease-in-out infinite;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 194, 107, 0.75);
  border-radius: 50%;
  pointer-events: none;
  z-index: 25;
  transform: translate(-50%, -50%);
  transition: width 0.24s ease, height 0.24s ease, border-color 0.24s ease, opacity 0.24s ease;
  mix-blend-mode: lighten;
  opacity: 0;
}

.cursor.is-active {
  width: 44px;
  height: 44px;
  border-color: rgba(255, 238, 181, 0.92);
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  z-index: 24;
  background: rgba(255, 240, 199, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--gold-1), var(--gold-0));
}

.topbar {
  width: var(--container);
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 10px;
  z-index: 20;
  padding: 10px 14px;
  border: 1px solid rgba(255, 190, 84, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  background: rgba(8, 5, 2, 0.64);
}

.brand {
  text-decoration: none;
  color: inherit;
  display: grid;
}

.brand__tag {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.09em;
}

.brand__title {
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.topbar__badge {
  font-size: 0.76rem;
  color: #ffe6af;
  border: 1px solid rgba(255, 204, 106, 0.35);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 178, 59, 0.09);
}

main {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding-inline: env(safe-area-inset-left) env(safe-area-inset-right);
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}

.section {
  position: relative;
  overflow: visible;
}

.hero {
  min-height: calc(100vh - 90px);
  min-height: calc(100dvh - 90px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(22px, 4vw, 60px);
  padding: 56px 0 20px;
}

.hero__text {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0;
  color: var(--gold-1);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.hero__title {
  margin: 12px 0 12px;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 7vw, 5.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero__title .line {
  display: block;
}

.hero__brand {
  background-image: linear-gradient(
    120deg,
    #ffeab8 0%,
    #ffd06e 14%,
    #ae8cff 28%,
    #ffc763 42%,
    #946eff 56%,
    #ffd47f 70%,
    #8f69ff 84%,
    #ffe0a0 100%
  );
  background-size: 240% 240%;
  background-position: 0% 35%;
  background-repeat: no-repeat;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(223, 170, 86, 0.24);
  animation: brandGradientFlow 9.6s ease-in-out infinite;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero__brand {
    color: var(--gold-1);
    -webkit-text-fill-color: currentColor;
    animation: none;
  }
}

.hero__word {
  position: relative;
  display: inline-block;
}

.hero__word--gold {
  color: #ffd56f;
  text-shadow: 0 0 18px rgba(255, 198, 92, 0.26);
}

.hero__word--violet {
  color: #a892ff;
  text-shadow: 0 0 20px rgba(148, 111, 255, 0.24);
}

.hero__lead {
  margin: 0;
  max-width: 52ch;
  color: #e9dcc4;
  line-height: 1.6;
  position: relative;
  z-index: 3;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 4;
}

.btn {
  --btn-tilt-x: 0deg;
  --btn-tilt-y: 0deg;
  --btn-lift: 0px;
  --btn-shadow-x: 0px;
  --btn-shadow-y: 14px;
  --btn-glow-x: 50%;
  --btn-glow-y: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  padding: 15px 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.24s ease,
    background 0.24s ease, border-color 0.24s ease, filter 0.24s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--btn-glow-x) var(--btn-glow-y),
    rgba(255, 255, 255, 0.36),
    rgba(255, 255, 255, 0.08) 22%,
    rgba(255, 255, 255, 0) 62%
  );
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 0;
}

.btn::after {
  content: "";
  position: absolute;
  top: -12%;
  left: -130%;
  width: 48%;
  height: 124%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.34),
    rgba(255, 255, 255, 0)
  );
  transform: skewX(-20deg);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

.btn:focus-visible {
  outline: 2px solid #ffe2a8;
  outline-offset: 2px;
}

.btn--primary {
  color: #261603;
  border: 1px solid rgba(255, 228, 161, 0.26);
  background: linear-gradient(120deg, var(--gold-2), var(--gold-1), var(--gold-0));
  box-shadow: var(--btn-shadow-x) var(--btn-shadow-y) 35px rgba(255, 170, 62, 0.42),
    0 0 0 1px rgba(255, 236, 192, 0.16) inset;
}

.btn--ghost {
  color: #ffe7b8;
  border: 1px solid rgba(255, 204, 106, 0.45);
  background: rgba(255, 183, 73, 0.06);
  box-shadow: var(--btn-shadow-x) calc(var(--btn-shadow-y) - 4px) 22px rgba(255, 168, 62, 0.14),
    0 0 0 1px rgba(255, 214, 131, 0.08) inset;
}

.btn--wide {
  width: min(380px, 100%);
}

.hero__chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 3;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 119, 0.34);
  background: rgba(255, 180, 67, 0.09);
  color: #ffe9bc;
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  background: linear-gradient(145deg, rgba(30, 17, 5, 0.95), rgba(10, 8, 8, 0.9));
  border: 1px solid rgba(255, 202, 113, 0.35);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  z-index: -1;
  background: conic-gradient(from 0deg at 50% 50%, rgba(255, 230, 160, 0.12), rgba(255, 149, 27, 0.45), rgba(255, 230, 160, 0.12));
  filter: blur(14px);
}

.hero-card__label {
  margin: 0;
  font-size: 0.82rem;
  color: #d9c299;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-card__metric {
  margin: 14px 0 16px;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #2c1b05;
  background: radial-gradient(circle, var(--gold-0) 0, var(--gold-1) 70%, var(--gold-2) 100%);
  box-shadow: 0 8px 32px rgba(255, 171, 65, 0.5);
}

.hero-card__line {
  margin: 0;
  padding: 11px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(255, 198, 98, 0.16);
}

.hero-card__line span {
  color: #c9b38a;
}

.hero-card__line strong {
  color: #fff3d0;
  text-align: right;
}

.hero__spark {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.72;
}

.hero__spark--1 {
  width: 7px;
  height: 7px;
  left: 16%;
  top: 22%;
  background: #ffd079;
  animation: twinkle 3.2s ease-in-out infinite;
}

.hero__spark--2 {
  width: 10px;
  height: 10px;
  right: 23%;
  top: 35%;
  background: #ff9f39;
  animation: twinkle 2.5s ease-in-out infinite reverse;
}

.hero__spark--3 {
  width: 8px;
  height: 8px;
  right: 8%;
  top: 18%;
  background: #b889ff;
  animation: twinkle 3.8s ease-in-out infinite;
}

.offer {
  padding: clamp(34px, 7vh, 64px) 0 10px;
}

.offer__intro h2 {
  margin: 10px 0 0;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.7rem);
  line-height: 1.08;
  max-width: 24ch;
}

.offer__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 212, 130, 0.24);
  padding: 20px;
  background: linear-gradient(160deg, rgba(255, 175, 65, 0.16), rgba(22, 15, 8, 0.82));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: -20% -14%;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, rgba(255, 232, 168, 0.3), rgba(255, 232, 168, 0) 58%);
  pointer-events: none;
}

.offer-card__num {
  margin: 0;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: #ffe2a7;
}

.offer-card h3 {
  margin: 12px 0 8px;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: 1.15rem;
}

.offer-card p {
  margin: 0;
  color: #ecdcc0;
  line-height: 1.6;
}

.oc--gold {
  background: linear-gradient(160deg, rgba(255, 173, 70, 0.2), rgba(22, 15, 8, 0.86));
}

.oc--violet {
  background: linear-gradient(160deg, rgba(133, 92, 255, 0.24), rgba(18, 14, 24, 0.9));
}

.oc--amber {
  background: linear-gradient(160deg, rgba(255, 125, 29, 0.22), rgba(26, 14, 8, 0.9));
}

.story {
  padding: clamp(36px, 8vh, 72px) 0;
}

.story__intro h2 {
  margin: 10px 0 0;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.7rem);
  line-height: 1.08;
  max-width: 26ch;
}

.story-track {
  margin-top: 24px;
  padding-inline: 4px;
  overflow: visible;
}

.story-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  padding: 8px 4px;
  overflow: visible;
  align-items: stretch;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 28px;
  border: 1px solid rgba(255, 212, 130, 0.24);
  padding: 24px;
  background: linear-gradient(160deg, rgba(255, 175, 65, 0.16), rgba(22, 15, 8, 0.82));
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateY(0);
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.feature-panel::after {
  content: "";
  position: absolute;
  inset: -24% -18%;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--glow-x, 50%) var(--glow-y, 45%),
    rgba(255, 227, 157, 0.28),
    rgba(255, 227, 157, 0) 56%
  );
  opacity: 0;
  transition: opacity 0.34s ease;
}

.feature-panel h3 {
  margin: 14px 0 10px;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: 1.3rem;
}

.feature-panel p {
  margin: 0;
  color: #e8d8b8;
  line-height: 1.6;
}

.feature-panel__icon {
  display: inline-block;
  font-size: 2.1rem;
  color: #ffe39f;
  transition: transform 0.34s ease;
}

.fp--premium {
  background: linear-gradient(155deg, rgba(132, 91, 255, 0.3), rgba(18, 14, 24, 0.9));
}

.fp--pay {
  background: linear-gradient(155deg, rgba(255, 135, 47, 0.24), rgba(26, 14, 8, 0.86));
}

.fp--ref {
  background: linear-gradient(155deg, rgba(255, 191, 97, 0.24), rgba(22, 11, 8, 0.86));
}

.fp--orders {
  background: linear-gradient(155deg, rgba(94, 78, 255, 0.26), rgba(16, 12, 28, 0.88));
}

.flow {
  margin-top: clamp(8px, 3vh, 22px);
  padding: clamp(30px, 6vw, 62px);
  border-radius: 28px;
  border: 1px solid rgba(255, 198, 101, 0.26);
  background: linear-gradient(130deg, rgba(255, 157, 36, 0.18), rgba(90, 54, 218, 0.16), rgba(10, 7, 4, 0.9));
  overflow: hidden;
}

.flow__content {
  max-width: 840px;
  position: relative;
  z-index: 2;
}

.flow h2 {
  margin: 8px 0 18px;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 4.4vw, 2.9rem);
  max-width: 16ch;
}

.step-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.step-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 201, 109, 0.25);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 182, 75, 0.08);
}

.step-list span {
  min-width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  color: #2e1a05;
  font-size: 0.86rem;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-0));
}

.flow__glow {
  position: absolute;
  width: clamp(260px, 28vw, 500px);
  height: clamp(260px, 28vw, 500px);
  border-radius: 50%;
  right: -12%;
  top: -18%;
  background: radial-gradient(circle, rgba(255, 215, 147, 0.52) 0, rgba(255, 138, 24, 0) 68%);
  filter: blur(8px);
}

.cta {
  margin-top: 26px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 22px;
  border: 1px solid rgba(255, 192, 84, 0.22);
  background: linear-gradient(145deg, rgba(29, 18, 7, 0.88), rgba(12, 10, 14, 0.86));
}

.cta h2 {
  margin: 0;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 4vw, 2.1rem);
}

.cta p {
  margin: 10px 0 20px;
  max-width: 60ch;
  color: #dfceb2;
  line-height: 1.6;
}

.footer {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 34px auto 26px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 196, 95, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #c3af8a;
}

.footer p {
  margin: 0;
}

.footer a {
  color: #ffe2a7;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

@media (hover: hover) and (pointer: fine) {
  .btn {
    transform: perspective(900px) translate3d(0, var(--btn-lift), 0) rotateX(var(--btn-tilt-x))
      rotateY(var(--btn-tilt-y));
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
  }

  .btn:hover {
    filter: brightness(1.05) saturate(1.04);
  }

  .btn.is-3d::before {
    opacity: 0.95;
  }

  .btn:hover::after {
    opacity: 1;
    animation: btnSheen 0.7s ease;
  }

  .btn--primary:hover {
    box-shadow: var(--btn-shadow-x) calc(var(--btn-shadow-y) + 2px) 40px rgba(255, 170, 62, 0.54),
      0 0 0 1px rgba(255, 239, 200, 0.25) inset;
  }

  .btn--ghost:hover {
    background: rgba(255, 183, 73, 0.14);
    border-color: rgba(255, 216, 139, 0.62);
    box-shadow: var(--btn-shadow-x) calc(var(--btn-shadow-y) - 1px) 28px rgba(255, 170, 62, 0.26),
      0 0 0 1px rgba(255, 224, 168, 0.15) inset;
  }

  .feature-panel {
    will-change: transform;
  }

  .feature-panel:hover {
    border-color: rgba(255, 223, 154, 0.62);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36), 0 0 36px rgba(255, 184, 86, 0.16);
  }

  .feature-panel:hover::after {
    opacity: 1;
  }

  .feature-panel:hover .feature-panel__icon {
    transform: scale(1.08);
  }

  .offer-card {
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .offer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 137, 0.5);
  }

  body {
    cursor: none;
  }

  a,
  button {
    cursor: none;
  }

  .cursor {
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 38px;
  }

  .hero-card {
    max-width: 560px;
  }

  .offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-panels {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(700px, 94vw);
    --radius: 20px;
  }

  .grain {
    opacity: 0.04;
  }

  .orb {
    filter: blur(28px);
    opacity: 0.22;
  }

  .orb--violet {
    display: none;
  }

  .scroll-progress {
    height: 2px;
  }

  .topbar {
    margin-top: max(10px, env(safe-area-inset-top));
    padding: 10px 12px;
    border-radius: 16px;
    top: max(6px, env(safe-area-inset-top));
    gap: 8px;
    backdrop-filter: none;
    background: rgba(8, 5, 2, 0.9);
  }

  .brand {
    min-width: 0;
  }

  .brand__tag {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .brand__title {
    font-size: 0.94rem;
  }

  .topbar__badge {
    display: none;
  }

  .hero {
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 8px;
  }

  .hero__title {
    font-size: clamp(1.62rem, 10.8vw, 2.72rem);
    line-height: 0.96;
  }

  .hero__lead {
    max-width: none;
    line-height: 1.55;
  }

  .hero__actions {
    margin-top: 16px;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px;
    font-size: 1rem;
    touch-action: manipulation;
  }

  .hero-card {
    width: 100%;
    margin-top: 6px;
    padding: 18px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
  }

  .hero-card::before {
    display: none;
  }

  .hero-card__line {
    align-items: flex-start;
  }

  .hero-card__line strong {
    max-width: 58%;
    line-height: 1.28;
    word-break: break-word;
  }

  .hero__spark {
    display: none;
  }

  .offer {
    padding-top: 20px;
  }

  .offer__intro h2,
  .story__intro h2 {
    max-width: none;
    font-size: clamp(1.3rem, 7.4vw, 2rem);
  }

  .offer__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .offer-card {
    border-radius: 18px;
    padding: 16px;
  }

  .story {
    padding: 22px 0 24px;
  }

  .story-track {
    margin-top: 16px;
    padding-inline: 2px;
  }

  .story-panels {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
    padding: 4px 0;
  }

  .feature-panel {
    padding: 18px;
    border-radius: 22px;
    min-height: auto;
    backdrop-filter: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  }

  .feature-panel h3 {
    font-size: 1.2rem;
  }

  .feature-panel p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .flow {
    margin-top: 18px;
    padding: 20px 16px;
    border-radius: 22px;
  }

  .flow h2 {
    margin: 8px 0 14px;
    font-size: clamp(1.3rem, 7.6vw, 2rem);
    max-width: none;
  }

  .step-list {
    gap: 10px;
    margin: 0 0 18px;
  }

  .step-list li {
    align-items: flex-start;
    gap: 10px;
    padding: 10px 10px;
    font-size: 0.95rem;
  }

  .step-list span {
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .flow__glow {
    display: none;
  }

  .cta {
    margin-top: 18px;
    padding: 18px 14px;
  }

  .cta p {
    margin-bottom: 14px;
  }

  .footer {
    flex-direction: column;
    margin: 24px auto 16px;
    padding: 12px 0 calc(8px + env(safe-area-inset-bottom));
  }

  .bg-star {
    filter: none;
  }

  .bg-star--violet {
    filter: none;
  }

  .bg-star--gold.is-bright {
    filter: drop-shadow(0 0 12px rgba(255, 173, 61, 0.2));
  }

  .bg-star--violet.is-bright {
    filter: drop-shadow(0 0 10px rgba(160, 98, 255, 0.22));
  }
}

@media (max-width: 430px) {
  .topbar {
    padding: 8px 10px;
    border-radius: 14px;
  }

  .brand__tag {
    font-size: 0.54rem;
  }

  .brand__title {
    font-size: 0.9rem;
  }

  .hero {
    gap: 16px;
    padding-top: 22px;
  }

  .hero__title {
    font-size: clamp(1.5rem, 12vw, 2.36rem);
  }

  .hero__lead {
    font-size: 0.97rem;
  }

  .hero__chips {
    gap: 8px;
  }

  .chip {
    font-size: 0.84rem;
    min-height: 34px;
    padding: 6px 10px;
  }

  .btn {
    min-height: 48px;
    border-radius: 12px;
    padding: 13px 14px;
  }

  .offer__intro h2,
  .story__intro h2,
  .flow h2 {
    font-size: clamp(1.18rem, 7.6vw, 1.76rem);
  }
}

@media (max-width: 360px) {
  :root {
    --container: min(680px, 95vw);
  }

  .brand__tag {
    display: none;
  }

  .hero__title {
    font-size: clamp(1.4rem, 12.3vw, 2.1rem);
  }

  .hero__lead {
    font-size: 0.93rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes load {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(220%);
  }
}

@keyframes driftA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-18px, 26px, 0) scale(1.08);
  }
}

@keyframes driftB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(22px, -18px, 0) scale(1.1);
  }
}

@keyframes driftC {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(18px, 12px, 0);
  }
}

@keyframes starDrift {
  0% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0) rotate(var(--rotate));
  }

  26% {
    transform: translate(-50%, -50%) translate3d(var(--drift-x-soft), var(--drift-y-soft), 0)
      rotate(calc(var(--rotate) + var(--spin-soft)));
  }

  55% {
    transform: translate(-50%, -50%) translate3d(var(--drift-x), var(--drift-y), 0)
      rotate(calc(var(--rotate) + var(--spin)));
  }

  78% {
    transform: translate(-50%, -50%) translate3d(var(--drift-x-alt), var(--drift-y-alt), 0)
      rotate(calc(var(--rotate) - var(--spin-soft)));
  }

  100% {
    transform: translate(-50%, -50%) translate3d(0, 0, 0) rotate(var(--rotate));
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes btnSheen {
  0% {
    left: -130%;
  }

  100% {
    left: 150%;
  }
}

@keyframes brandGradientFlow {
  0% {
    background-position: 0% 35%;
    text-shadow: 0 0 10px rgba(167, 129, 255, 0.22);
  }

  25% {
    background-position: 68% 0%;
    text-shadow: 0 0 13px rgba(255, 197, 94, 0.2);
  }

  50% {
    background-position: 100% 58%;
    text-shadow: 0 0 16px rgba(156, 116, 255, 0.28);
  }

  75% {
    background-position: 42% 100%;
    text-shadow: 0 0 13px rgba(255, 191, 84, 0.22);
  }

  100% {
    background-position: 0% 35%;
    text-shadow: 0 0 10px rgba(167, 129, 255, 0.22);
  }
}
