@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

:root {
  --green: #25c978;
  --green-2: #8df6b7;
  --green-3: #d9ffea;
  --text: #143225;
  --muted: #60796b;

  --glass: rgba(255,255,255,.38);
  --glass-light: rgba(255,255,255,.58);
  --glass-soft: rgba(255,255,255,.24);
  --border: rgba(255,255,255,.78);

  --shadow: 0 35px 100px rgba(25,100,60,.13);
  --radius: 34px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;

  font-family: Inter, Arial, sans-serif;
  color: var(--text);

  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(115,242,164,.35),
      transparent 27%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(180,255,211,.55),
      transparent 30%
    ),
    radial-gradient(
      circle at 50% 90%,
      rgba(119,235,163,.20),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #fafffc 0%,
      #ecfff4 48%,
      #f9fffb 100%
    );
}

/* =========================================================
   AMBIENT BACKGROUND
========================================================= */

.ambient {
  position: fixed;
  inset: 0;
  z-index: -20;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: .42;
  mix-blend-mode: multiply;

  animation:
    blobMove 14s ease-in-out infinite alternate,
    blobPulse 7s ease-in-out infinite;
}

.blob-one {
  width: 500px;
  height: 500px;
  left: -160px;
  top: -160px;
  background: #8df3b7;
}

.blob-two {
  width: 550px;
  height: 550px;
  right: -220px;
  top: 20%;
  background: #caffdf;
  animation-delay: -4s;
}

.blob-three {
  width: 430px;
  height: 430px;
  left: 10%;
  bottom: -180px;
  background: #75eaa5;
  animation-delay: -8s;
}

.blob-four {
  width: 330px;
  height: 330px;
  left: 42%;
  top: 42%;
  background: #dffff0;
  animation-delay: -11s;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  opacity: .12;

  background-image:
    linear-gradient(
      rgba(55,150,91,.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(55,150,91,.12) 1px,
      transparent 1px
    );

  background-size: 55px 55px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 25%,
      black 75%,
      transparent
    );

  animation: gridMove 20s linear infinite;
}

.cursor-glow {
  position: fixed;

  width: 320px;
  height: 320px;

  border-radius: 50%;

  pointer-events: none;
  z-index: 200;

  background:
    radial-gradient(
      circle,
      rgba(66,225,137,.17),
      rgba(255,255,255,.04) 45%,
      transparent 70%
    );

  transform: translate(-50%,-50%);

  filter: blur(5px);
  mix-blend-mode: multiply;
}

/* =========================================================
   GLASS SYSTEM
========================================================= */

.glass {
  position: relative;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.68),
      rgba(255,255,255,.27)
    );

  border: 1px solid rgba(255,255,255,.82);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.98),
    inset 0 -1px 0 rgba(50,150,90,.07),
    inset 1px 0 0 rgba(255,255,255,.45),
    0 30px 90px rgba(30,110,65,.11);

  backdrop-filter:
    blur(30px)
    saturate(160%);

  -webkit-backdrop-filter:
    blur(30px)
    saturate(160%);

  isolation: isolate;
}

.glass::before {
  content: "";

  position: absolute;
  inset: 1px;

  border-radius: inherit;

  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.48),
      transparent 22%,
      transparent 70%,
      rgba(255,255,255,.23)
    );

  opacity: .9;

  z-index: -1;
}

.glass::after {
  content: "";

  position: absolute;

  width: 30%;
  height: 180%;

  left: -65%;
  top: -40%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.38),
      rgba(255,255,255,.08),
      transparent
    );

  transform: rotate(23deg);

  pointer-events: none;

  animation:
    glassReflection 7s ease-in-out infinite;

  z-index: 1;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
  position: fixed;

  z-index: 100;

  top: 18px;
  left: 50%;

  width: min(1180px, calc(100% - 28px));
  height: 70px;

  transform: translateX(-50%);

  border-radius: 25px;

  padding: 0 12px 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  animation:
    navbarEntrance
    1s
    cubic-bezier(.16,1,.3,1);

  overflow: hidden;
}

.navbar .brand,
.navbar .nav-links,
.navbar .mobile-menu {
  position: relative;
  z-index: 30;
}

.brand {
  display: flex;
  align-items: center;

  gap: 11px;

  text-decoration: none;

  color: var(--text);

  font-size: 15px;
  font-weight: 900;

  letter-spacing: -.05em;
}

.brand img {
  width: 37px;
  height: 37px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 10px 16px
      rgba(35,180,100,.18)
    );

  animation:
    logoFloat
    4s
    ease-in-out
    infinite;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  position: relative;

  padding: 12px 15px;

  border-radius: 15px;

  color: #466154;

  text-decoration: none;

  font-size: 12px;
  font-weight: 700;

  transition:
    transform .35s cubic-bezier(.16,1,.3,1),
    background .35s ease,
    color .35s ease,
    box-shadow .35s ease;
}

.nav-links a:hover {
  color: var(--green);

  background:
    rgba(255,255,255,.42);

  box-shadow:
    inset 0 1px 0 white,
    0 8px 20px rgba(30,120,70,.07);

  transform:
    translateY(-3px);
}

.nav-links a.active {
  color: var(--green);

  background:
    rgba(255,255,255,.28);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8);
}

.nav-links .subscribe {
  color: white;

  background:
    linear-gradient(
      135deg,
      rgba(25,190,98,.95),
      rgba(100,239,161,.9)
    );

  border:
    1px solid rgba(255,255,255,.7);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    0 12px 30px rgba(25,190,98,.22);
}

.nav-links .subscribe:hover {
  color: white;

  transform:
    translateY(-4px)
    scale(1.035);

  box-shadow:
    inset 0 1px 0 white,
    0 18px 35px rgba(25,190,98,.28);
}

.mobile-menu {
  display: none;

  width: 45px;
  height: 45px;

  border:
    1px solid rgba(255,255,255,.7);

  border-radius: 15px;

  background:
    rgba(255,255,255,.4);

  cursor: pointer;

  backdrop-filter: blur(15px);
}

.mobile-menu span {
  display: block;

  width: 19px;
  height: 2px;

  margin: 4px auto;

  background: #355446;

  border-radius: 10px;
}

/* =========================================================
   HOME HERO
========================================================= */

.hero {
  position: relative;

  min-height: 920px;

  padding:
    145px
    20px
    90px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-direction: column;

  perspective: 1400px;
}

.hero-glass {
  width: min(1120px,100%);
  min-height: 620px;

  border-radius: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  transform-style: preserve-3d;

  animation:
    heroEntrance 1.5s cubic-bezier(.16,1,.3,1),
    heroFloat 8s ease-in-out 1.5s infinite;

  box-shadow:
    inset 0 1px 0 white,
    inset 0 -1px 0 rgba(50,160,90,.1),
    0 45px 120px rgba(25,110,65,.14);
}

.hero-glass::before {
  inset: 12px;

  border:
    1px solid rgba(255,255,255,.42);
}

.glass-shine {
  position: absolute;

  width: 500px;
  height: 900px;

  right: -180px;
  top: -300px;

  background:
    linear-gradient(
      110deg,
      transparent,
      rgba(255,255,255,.35),
      transparent
    );

  transform: rotate(20deg);

  animation:
    heroShine
    8s
    ease-in-out
    infinite;
}

.hero-content {
  position: relative;
  z-index: 30;

  width: min(880px,100%);

  padding:
    75px
    35px;

  text-align: center;

  transform: translateZ(70px);

  transition:
    transform .15s ease-out;
}

.eyebrow {
  display: inline-flex;

  align-items: center;
  gap: 10px;

  padding:
    9px
    14px;

  border:
    1px solid rgba(255,255,255,.65);

  border-radius: 999px;

  background:
    rgba(255,255,255,.31);

  box-shadow:
    inset 0 1px 0 white,
    0 10px 30px rgba(40,120,70,.07);

  backdrop-filter:
    blur(18px);

  color: #547765;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .18em;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #20bd69,
      #91ffc0
    );

  box-shadow:
    0 0 0 6px rgba(50,210,120,.1),
    0 0 20px rgba(50,210,120,.5);

  animation:
    dotPulse
    2s
    ease-in-out
    infinite;
}

/* =========================================================
   MAIN TITLES — GLITCH FIX
========================================================= */

.title-wrap {
  position: relative;

  margin:
    30px
    0
    25px;

  display: inline-block;

  transform-style: preserve-3d;

  /*
    Extra room prevents the italic final S
    from getting clipped.
  */
  padding-right: .12em;

  overflow: visible;
}

.main-title,
.packs-title {
  position: relative;

  z-index: 5;

  display: inline-block;

  font-family:
    Inter,
    Arial,
    sans-serif;

  font-size:
    clamp(
      72px,
      12vw,
      150px
    );

  line-height: .88;

  font-weight: 900;

  font-style: italic;

  /*
    Less aggressive negative spacing
    prevents final-letter overlap.
  */
  letter-spacing: -.08em;

  white-space: nowrap;

  transform:
    skewX(-4deg);

  transform-origin: center;

  transform-style: preserve-3d;

  /*
    IMPORTANT:
    Entrance only controls opacity/filter.
    Floating controls transform.
    This prevents transform animation conflicts.
  */
  animation:
    titleEntrance
    1.2s
    cubic-bezier(.16,1,.3,1)
    both,

    titleFloat
    5s
    ease-in-out
    1.2s
    infinite;
}

.title-cheese,
.title-packs {
  display: inline-block;

  padding-right: .035em;

  transform:
    translateZ(0);
}

.title-cheese {
  color: #173d2a;

  text-shadow:
    0 2px 0 white,
    0 5px 0 rgba(30,120,65,.08),
    0 15px 30px rgba(20,100,55,.14),
    0 30px 65px rgba(30,150,80,.08);
}

.title-packs {
  background:
    linear-gradient(
      105deg,
      #149d55 0%,
      #5de394 18%,
      #d0ffe3 36%,
      #28c573 53%,
      #b0ffd1 71%,
      #169e57 100%
    );

  background-size:
    350% auto;

  background-clip: text;
  -webkit-background-clip: text;

  color: #27bb6c;

  /*
    Safe fallback for browsers where
    gradient text clipping behaves badly.
  */
  -webkit-text-fill-color: transparent;

  filter:
    drop-shadow(
      0 15px 30px
      rgba(30,180,95,.12)
    );

  animation:
    gradientText
    4s
    linear
    infinite;
}

.title-shadow {
  position: absolute;

  inset:
    11px
    0
    0;

  z-index: 0;

  font-size: inherit;
  font-weight: 900;
  font-style: italic;

  letter-spacing: -.08em;

  color:
    rgba(25,125,70,.10);

  transform:
    translateY(18px)
    translateX(5px);

  filter: blur(4px);

  pointer-events: none;

  padding-right: .12em;
}

.title-reflection {
  position: absolute;

  left: 50%;
  top: 105%;

  transform:
    translateX(-50%)
    scaleY(-.22);

  transform-origin: top;

  opacity: .1;

  filter: blur(5px);

  white-space: nowrap;

  font-size:
    clamp(
      72px,
      12vw,
      150px
    );

  line-height: .88;

  font-weight: 900;

  font-style: italic;

  letter-spacing: -.08em;

  pointer-events: none;

  padding-right: .12em;
}

.title-reflection span:first-child {
  color: #1c4932;
}

.title-reflection span:last-child {
  color: #37ca78;
}

/* =========================================================
   HERO TEXT
========================================================= */

.hero-subtitle {
  margin-top: 42px;

  font-size:
    clamp(
      22px,
      3vw,
      32px
    );

  font-weight: 800;

  letter-spacing: -.045em;

  text-shadow:
    0 8px 25px
    rgba(30,100,60,.08);
}

.hero-description {
  max-width: 650px;

  margin:
    16px
    auto
    0;

  color: var(--muted);

  line-height: 1.8;

  font-size: 14px;
}

.hero-mini {
  margin-top: 20px;

  color: #789082;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .18em;
}

.hero-mini span {
  color: var(--green);
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
  margin-top: 34px;

  display: flex;

  justify-content: center;

  gap: 12px;

  flex-wrap: wrap;
}

.button {
  position: relative;

  min-height: 53px;

  padding:
    0
    23px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  border-radius: 18px;

  text-decoration: none;

  font-size: 12px;
  font-weight: 900;

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,.72);

  backdrop-filter:
    blur(20px);

  -webkit-backdrop-filter:
    blur(20px);

  transition:
    transform .35s cubic-bezier(.16,1,.3,1),
    box-shadow .35s ease;
}

.button-primary {
  color: white;

  background:
    linear-gradient(
      135deg,
      rgba(20,185,92,.94),
      rgba(100,240,160,.82)
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    0 16px 35px rgba(25,185,95,.22);
}

.button-primary:hover {
  transform:
    translateY(-5px)
    scale(1.04);

  box-shadow:
    inset 0 1px 0 white,
    0 25px 50px rgba(25,185,95,.3);
}

.button-secondary {
  color: #315342;

  background:
    rgba(255,255,255,.48);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 15px 35px rgba(40,100,65,.07);
}

.button-secondary:hover {
  transform:
    translateY(-5px)
    scale(1.03);

  background:
    rgba(255,255,255,.67);

  box-shadow:
    inset 0 1px 0 white,
    0 22px 45px rgba(40,100,65,.12);
}

/* =========================================================
   FLOATING WORDS
========================================================= */

.floating-word {
  position: fixed;

  z-index: -1;

  padding:
    10px
    14px;

  border:
    1px solid rgba(255,255,255,.5);

  border-radius: 999px;

  background:
    rgba(255,255,255,.2);

  backdrop-filter:
    blur(15px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8),
    0 15px 30px rgba(40,110,70,.05);

  color:
    rgba(25,120,68,.25);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .16em;

  pointer-events: none;

  animation:
    zeroGravity
    8s
    ease-in-out
    infinite;
}

.word-one {
  left: 5%;
  top: 30%;
}

.word-two {
  right: 7%;
  top: 22%;

  font-size: 20px;

  animation-delay: -2s;
}

.word-three {
  left: 8%;
  bottom: 24%;

  animation-delay: -4s;
}

.word-four {
  right: 4%;
  bottom: 30%;

  animation-delay: -1s;
}

.word-five {
  right: 13%;
  top: 55%;

  animation-delay: -3s;
}

.word-six {
  left: 15%;
  top: 58%;

  animation-delay: -5s;
}

/* =========================================================
   MARQUEE
========================================================= */

.marquee-section {
  position: relative;

  width: 100%;

  padding:
    17px
    0;

  overflow: hidden;

  background:
    rgba(255,255,255,.18);

  border-top:
    1px solid rgba(255,255,255,.55);

  border-bottom:
    1px solid rgba(255,255,255,.55);

  backdrop-filter:
    blur(25px)
    saturate(150%);

  -webkit-backdrop-filter:
    blur(25px)
    saturate(150%);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.75),
    0 15px 50px rgba(30,110,65,.04);
}

.marquee-track {
  display: flex;

  width: max-content;

  align-items: center;

  gap: 28px;

  animation:
    marquee
    22s
    linear
    infinite;
}

.marquee-track span {
  color:
    rgba(54,105,75,.7);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .18em;
}

.marquee-track i {
  color: var(--green);

  font-style: normal;
}

/* =========================================================
   SECTIONS
========================================================= */

.section {
  width:
    min(
      1100px,
      calc(100% - 30px)
    );

  margin:
    150px
    auto;
}

.section-heading {
  max-width: 670px;

  margin-bottom: 55px;
}

.section-label {
  display: inline-flex;

  padding:
    8px
    12px;

  border-radius: 999px;

  border:
    1px solid rgba(255,255,255,.7);

  background:
    rgba(255,255,255,.3);

  box-shadow:
    inset 0 1px 0 white,
    0 8px 25px rgba(30,120,70,.05);

  backdrop-filter:
    blur(15px);

  color: #587766;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .18em;
}

.section-heading h2,
.creator-content h2,
.final-card h2,
.packs-final h2 {
  margin-top: 16px;

  font-size:
    clamp(
      42px,
      6vw,
      76px
    );

  line-height: .93;

  letter-spacing: -.075em;

  font-style: italic;

  font-weight: 900;
}

.section-heading h2 span,
.creator-content h2 span,
.final-card h2 span,
.packs-final h2 span {
  display: block;

  color: #27bb6c;

  text-shadow:
    0 12px 35px
    rgba(30,180,95,.13);
}

.section-heading p {
  margin-top: 20px;

  max-width: 570px;

  color: var(--muted);

  line-height: 1.8;

  font-size: 14px;
}

/* =========================================================
   FEATURE CARDS
========================================================= */

.feature-grid {
  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 18px;
}

.feature-card {
  min-height: 320px;

  padding: 29px;

  border-radius: 34px;

  overflow: hidden;

  transform-style: preserve-3d;

  transition:
    box-shadow .45s ease,
    border-color .45s ease;
}

.feature-card:hover {
  border-color:
    rgba(255,255,255,.95);

  box-shadow:
    inset 0 1px 0 white,
    inset 0 -1px 0 rgba(40,150,80,.1),
    0 40px 90px rgba(35,120,70,.17);
}

.feature-number {
  padding:
    7px
    10px;

  display: inline-block;

  border:
    1px solid rgba(255,255,255,.55);

  border-radius: 10px;

  background:
    rgba(255,255,255,.25);

  color:
    rgba(35,115,70,.5);

  font-size: 9px;
  font-weight: 900;
}

.feature-icon {
  margin-top: 45px;

  font-size: 38px;

  color: var(--green);

  transform:
    translateZ(45px);

  filter:
    drop-shadow(
      0 10px 20px
      rgba(35,190,105,.18)
    );

  animation:
    iconFloat
    4s
    ease-in-out
    infinite;
}

.feature-card h3 {
  margin-top: 18px;

  font-size: 21px;

  font-weight: 900;

  letter-spacing: -.05em;

  transform:
    translateZ(30px);
}

.feature-card p {
  margin-top: 10px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.7;
}

.feature-line {
  position: absolute;

  left: 28px;
  right: 28px;
  bottom: 23px;

  height: 2px;

  background:
    linear-gradient(
      90deg,
      #36d07c,
      rgba(54,208,124,0)
    );

  transform-origin: left;

  animation:
    linePulse
    3s
    ease-in-out
    infinite;
}

/* =========================================================
   CREATOR
========================================================= */

.creator-card {
  min-height: 470px;

  padding: 65px;

  border-radius: 45px;

  overflow: hidden;

  transform-style: preserve-3d;
}

.creator-content {
  position: relative;

  z-index: 5;

  max-width: 650px;

  transform:
    translateZ(55px);
}

.creator-content p {
  margin:
    25px
    0
    30px;

  max-width: 570px;

  color: var(--muted);

  line-height: 1.8;
}

.creator-light {
  position: absolute;

  width: 520px;
  height: 520px;

  right: -180px;
  top: -150px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(72,230,140,.28),
      transparent 67%
    );

  filter: blur(8px);

  animation:
    creatorLight
    6s
    ease-in-out
    infinite;
}

.creator-orb {
  position: absolute;

  width: 190px;
  height: 190px;

  right: 90px;
  bottom: 55px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 28% 22%,
      rgba(255,255,255,.95),
      transparent 9%
    ),
    linear-gradient(
      135deg,
      rgba(145,250,183,.72),
      rgba(30,180,95,.14)
    );

  border:
    1px solid rgba(255,255,255,.75);

  box-shadow:
    inset 20px 20px 45px rgba(255,255,255,.3),
    inset -25px -30px 55px rgba(20,120,60,.1),
    0 35px 75px rgba(30,140,75,.15);

  backdrop-filter:
    blur(15px);

  animation:
    orbFloat
    5s
    ease-in-out
    infinite;
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-section,
.packs-final {
  width:
    min(
      1100px,
      calc(100% - 30px)
    );

  margin:
    150px
    auto
    100px;
}

.final-card {
  min-height: 450px;

  border-radius: 46px;

  padding:
    70px
    30px;

  text-align: center;

  overflow: hidden;
}

.final-card > * {
  position: relative;

  z-index: 5;
}

.final-card p,
.packs-final p {
  margin:
    20px
    auto
    30px;

  max-width: 520px;

  color: var(--muted);

  line-height: 1.8;
}

.final-rays {
  position: absolute;

  width: 750px;
  height: 750px;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%,-50%);

  border-radius: 50%;

  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(65,220,130,.08) 0deg 8deg,
      transparent 8deg 18deg
    );

  mask-image:
    radial-gradient(
      circle,
      black 0%,
      transparent 67%
    );

  animation:
    raySpin
    25s
    linear
    infinite;
}

/* =========================================================
   PACKS HERO
========================================================= */

.packs-hero {
  position: relative;

  min-height: 600px;

  padding:
    170px
    20px
    50px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  perspective: 1400px;
}

.packs-hero-glow {
  position: absolute;

  width: 750px;
  height: 450px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(70,230,140,.18),
      transparent 67%
    );

  filter: blur(45px);

  animation:
    glowBreath
    5s
    ease-in-out
    infinite;
}

.packs-title-wrap {
  position: relative;

  z-index: 4;

  padding:
    32px
    50px;

  border:
    1px solid rgba(255,255,255,.48);

  border-radius: 42px;

  background:
    rgba(255,255,255,.17);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8),
    inset 0 -1px 0 rgba(40,150,80,.07),
    0 30px 80px rgba(30,110,65,.08);

  backdrop-filter:
    blur(25px)
    saturate(160%);

  -webkit-backdrop-filter:
    blur(25px)
    saturate(160%);

  transform-style: preserve-3d;

  animation:
    packsTitleEntrance
    1.3s
    cubic-bezier(.16,1,.3,1);
}

.packs-title {
  display: flex;

  justify-content: center;

  align-items: baseline;

  gap: .14em;

  font-size:
    clamp(
      60px,
      10vw,
      125px
    );

  padding-right: .10em;
}

.packs-title span {
  display: inline-block;

  padding-right: .035em;
}

.packs-title-the {
  color: #173d2a;

  text-shadow:
    0 3px 0 white,
    0 15px 35px
    rgba(30,110,60,.13);
}

.packs-title-best,
.packs-title-packs {
  background:
    linear-gradient(
      105deg,
      #159d57,
      #72eba0,
      #d1ffe3,
      #25be6b,
      #9dffc4,
      #159d57
    );

  background-size:
    350% auto;

  background-clip: text;
  -webkit-background-clip: text;

  color: #25b969;

  -webkit-text-fill-color: transparent;

  animation:
    gradientText
    4s
    linear
    infinite;
}

.packs-subtitle {
  position: relative;

  z-index: 5;

  margin-top: 40px;

  max-width: 650px;
}

.packs-subtitle p {
  margin-top: 14px;

  color: var(--muted);

  line-height: 1.8;
}

/* =========================================================
   PACKS GRID
========================================================= */

.packs-section {
  width:
    min(
      1150px,
      calc(100% - 30px)
    );

  margin:
    30px
    auto
    100px;

  perspective: 1500px;
}

.packs-grid {
  display: grid;

  grid-template-columns:
    repeat(2,1fr);

  gap: 24px;

  perspective: 1500px;
}

.pack-card {
  position: relative;

  height: 510px;

  border-radius: 38px;

  overflow: hidden;

  transform-style: preserve-3d;

  opacity: 0;

  animation:
    packReveal
    1s
    cubic-bezier(.16,1,.3,1)
    forwards,

    packFloat
    8s
    ease-in-out
    var(--pack-delay)
    infinite;

  transition:
    border-color .5s ease,
    box-shadow .5s ease;
}

.pack-card:hover {
  border-color:
    rgba(255,255,255,.98);

  box-shadow:
    inset 0 1px 0 white,
    inset 0 0 35px rgba(255,255,255,.08),
    0 45px 110px rgba(25,120,65,.21);
}

/* =========================================================
   PACK IMAGES — FULL EDGE TO EDGE
========================================================= */

.pack-image {
  position: absolute;

  inset: 0;

  overflow: hidden;

  /*
    NO padding.
    NO empty space.
  */
}

.pack-image img {
  display: block;

  width: 100%;
  height: 100%;

  /*
    Completely fills the card.
  */
  object-fit: cover;

  object-position: center;

  transition:
    transform 1s cubic-bezier(.16,1,.3,1),
    filter .7s ease;
}

.pack-card:hover .pack-image img {
  transform: scale(1.1);

  filter:
    saturate(1.1)
    contrast(1.04);
}

.pack-card::after {
  z-index: 3;

  background:
    linear-gradient(
      115deg,
      rgba(255,255,255,.18),
      transparent 30%,
      transparent 65%,
      rgba(255,255,255,.12)
    );

  animation:
    packGlassReflection
    7s
    ease-in-out
    infinite;
}

.pack-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.02) 0%,
      rgba(255,255,255,.02) 30%,
      rgba(0,20,10,.15) 48%,
      rgba(0,15,8,.78) 100%
    );

  backdrop-filter:
    saturate(110%);
}

/* =========================================================
   PACK CONTENT
========================================================= */

.pack-content {
  position: absolute;

  z-index: 10;

  left: 26px;
  right: 26px;
  bottom: 26px;

  color: white;

  transform:
    translateZ(65px);
}

.pack-top {
  display: flex;

  gap: 8px;

  margin-bottom: 12px;
}

.pack-type,
.pack-resolution {
  display: inline-flex;

  padding:
    7px
    10px;

  border:
    1px solid rgba(255,255,255,.42);

  border-radius: 11px;

  background:
    rgba(255,255,255,.18);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 8px 20px rgba(0,0,0,.08);

  backdrop-filter:
    blur(16px)
    saturate(150%);

  -webkit-backdrop-filter:
    blur(16px)
    saturate(150%);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: .14em;
}

.pack-content h2 {
  font-size:
    clamp(
      30px,
      4vw,
      47px
    );

  font-weight: 900;

  font-style: italic;

  letter-spacing: -.065em;

  text-shadow:
    0 8px 30px
    rgba(0,0,0,.3);
}

.pack-content p {
  max-width: 510px;

  margin:
    8px
    0
    20px;

  color:
    rgba(255,255,255,.76);

  font-size: 12px;

  line-height: 1.7;
}

.download-button {
  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 18px;

  padding:
    12px
    14px
    12px
    18px;

  color: #173725;

  text-decoration: none;

  border:
    1px solid rgba(255,255,255,.8);

  border-radius: 16px;

  background:
    rgba(255,255,255,.68);

  box-shadow:
    inset 0 1px 0 white,
    0 12px 30px rgba(0,0,0,.12);

  backdrop-filter:
    blur(22px)
    saturate(150%);

  -webkit-backdrop-filter:
    blur(22px)
    saturate(150%);

  font-size: 11px;

  font-weight: 900;

  transition:
    transform .35s ease,
    background .35s ease,
    box-shadow .35s ease;
}

.download-button b {
  width: 28px;
  height: 28px;

  display: grid;

  place-items: center;

  border-radius: 10px;

  color: white;

  background:
    linear-gradient(
      135deg,
      #1eb963,
      #75eda7
    );

  box-shadow:
    inset 0 1px 0
    rgba(255,255,255,.7);
}

.download-button:hover {
  transform:
    translateY(-5px)
    scale(1.04);

  background:
    rgba(255,255,255,.88);

  box-shadow:
    inset 0 1px 0 white,
    0 20px 40px rgba(0,0,0,.17);
}

.pack-edge-glow {
  position: absolute;

  width: 65%;
  height: 130px;

  left: 17.5%;
  bottom: -80px;

  background:
    radial-gradient(
      ellipse,
      rgba(65,230,135,.32),
      transparent 70%
    );

  filter: blur(25px);

  z-index: 4;

  animation:
    edgeGlow
    4s
    ease-in-out
    infinite;
}

/* =========================================================
   FOOTER
========================================================= */

footer {
  width:
    min(
      1100px,
      calc(100% - 30px)
    );

  margin:
    0
    auto;

  padding:
    25px
    0
    40px;

  display: flex;

  justify-content: space-between;

  color: #718c7c;

  font-size: 10px;

  border-top:
    1px solid rgba(255,255,255,.65);

  box-shadow:
    0 -1px 0
    rgba(40,140,80,.05);
}

/* =========================================================
   REVEALS
========================================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(40px)
    scale(.97);

  animation:
    reveal
    .9s
    cubic-bezier(.16,1,.3,1)
    forwards;
}

.delay-one {
  animation-delay: .12s;
}

.delay-two {
  animation-delay: .24s;
}

.delay-three {
  animation-delay: .36s;
}

.delay-four {
  animation-delay: .48s;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes navbarEntrance {
  from {
    opacity: 0;

    transform:
      translate(-50%,-50px)
      scale(.92);
  }

  to {
    opacity: 1;

    transform:
      translate(-50%,0)
      scale(1);
  }
}

@keyframes heroEntrance {
  from {
    opacity: 0;

    transform:
      translateY(80px)
      rotateX(15deg)
      scale(.9);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      rotateX(0)
      scale(1);
  }
}

@keyframes heroFloat {
  0%,100% {
    transform:
      translateY(0)
      rotateX(0)
      rotateY(0);
  }

  50% {
    transform:
      translateY(-8px)
      rotateX(.5deg)
      rotateY(-.5deg);
  }
}

/*
  IMPORTANT:
  Entrance does NOT touch transform anymore.
  This fixes the title transform conflict.
*/
@keyframes titleEntrance {
  from {
    opacity: 0;

    filter:
      blur(12px);
  }

  to {
    opacity: 1;

    filter:
      blur(0);
  }
}

@keyframes titleFloat {
  0%,100% {
    transform:
      skewX(-4deg)
      translateY(0);
  }

  50% {
    transform:
      skewX(-4deg)
      translateY(-7px);
  }
}

@keyframes packsTitleEntrance {
  from {
    opacity: 0;

    transform:
      translateY(60px)
      rotateX(25deg)
      scale(.8);

    filter:
      blur(14px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      rotateX(0)
      scale(1);

    filter:
      blur(0);
  }
}

@keyframes gradientText {
  to {
    background-position:
      350% center;
  }
}

@keyframes glassReflection {
  0%,60%,100% {
    left: -65%;

    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  88% {
    left: 135%;

    opacity: 0;
  }
}

@keyframes packGlassReflection {
  0%,60%,100% {
    transform:
      translateX(-100%)
      rotate(25deg);
  }

  82% {
    transform:
      translateX(260%)
      rotate(25deg);
  }
}

@keyframes heroShine {
  0%,60%,100% {
    transform:
      translateX(-100px)
      rotate(20deg);

    opacity: 0;
  }

  70% {
    opacity: 1;
  }

  88% {
    transform:
      translateX(700px)
      rotate(20deg);

    opacity: 0;
  }
}

@keyframes blobMove {
  from {
    transform:
      translate3d(-30px,-20px,0)
      scale(1);
  }

  to {
    transform:
      translate3d(80px,65px,0)
      scale(1.18);
  }
}

@keyframes blobPulse {
  0%,100% {
    opacity: .32;
  }

  50% {
    opacity: .55;
  }
}

@keyframes gridMove {
  from {
    transform:
      translateY(0);
  }

  to {
    transform:
      translateY(55px);
  }
}

@keyframes logoFloat {
  0%,100% {
    transform:
      translateY(0)
      rotate(0);
  }

  50% {
    transform:
      translateY(-4px)
      rotate(4deg);
  }
}

@keyframes dotPulse {
  0%,100% {
    transform:
      scale(1);

    box-shadow:
      0 0 0 5px rgba(60,220,130,.12),
      0 0 0 rgba(60,220,130,0);
  }

  50% {
    transform:
      scale(1.35);

    box-shadow:
      0 0 0 9px rgba(60,220,130,.03),
      0 0 20px rgba(60,220,130,.45);
  }
}

@keyframes zeroGravity {
  0%,100% {
    transform:
      translate3d(0,0,0)
      rotate(0);
  }

  25% {
    transform:
      translate3d(20px,-25px,0)
      rotate(2deg);
  }

  50% {
    transform:
      translate3d(-12px,-48px,0)
      rotate(-2deg);
  }

  75% {
    transform:
      translate3d(-25px,-15px,0)
      rotate(2deg);
  }
}

@keyframes marquee {
  to {
    transform:
      translateX(-50%);
  }
}

@keyframes iconFloat {
  0%,100% {
    transform:
      translateZ(45px)
      translateY(0)
      rotate(0);
  }

  50% {
    transform:
      translateZ(45px)
      translateY(-10px)
      rotate(5deg);
  }
}

@keyframes linePulse {
  0%,100% {
    transform:
      scaleX(.5);

    opacity: .45;
  }

  50% {
    transform:
      scaleX(1);

    opacity: 1;
  }
}

@keyframes creatorLight {
  0%,100% {
    transform:
      scale(1)
      translate(0,0);
  }

  50% {
    transform:
      scale(1.25)
      translate(-40px,35px);
  }
}

@keyframes orbFloat {
  0%,100% {
    transform:
      translateY(0)
      rotate(0);
  }

  50% {
    transform:
      translateY(-25px)
      rotate(8deg);
  }
}

@keyframes glowBreath {
  0%,100% {
    transform:
      scale(.85);

    opacity: .45;
  }

  50% {
    transform:
      scale(1.15);

    opacity: .8;
  }
}

@keyframes packReveal {
  from {
    opacity: 0;

    transform:
      translateY(90px)
      rotateX(18deg)
      rotateY(-7deg)
      scale(.88);

    filter:
      blur(12px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      rotateX(0)
      rotateY(0)
      scale(1);

    filter:
      blur(0);
  }
}

@keyframes packFloat {
  0%,100% {
    margin-top: 0;
  }

  50% {
    margin-top: -8px;
  }
}

@keyframes edgeGlow {
  0%,100% {
    opacity: .25;

    transform:
      scaleX(.8);
  }

  50% {
    opacity: .85;

    transform:
      scaleX(1.1);
  }
}

@keyframes raySpin {
  to {
    transform:
      translate(-50%,-50%)
      rotate(360deg);
  }
}

@keyframes reveal {
  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .navbar {
    height: 63px;
  }

  .nav-links {
    position: absolute;

    top: 74px;
    left: 0;
    right: 0;

    display: none;

    flex-direction: column;

    padding: 12px;

    border-radius: 23px;

    background:
      rgba(255,255,255,.65);

    border:
      1px solid rgba(255,255,255,.8);

    box-shadow:
      inset 0 1px 0 white,
      0 30px 70px rgba(30,110,65,.12);

    backdrop-filter:
      blur(30px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;

    text-align: center;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 770px;

    padding-top: 120px;
  }

  .hero-glass {
    min-height: 570px;

    border-radius: 38px;
  }

  .hero-content {
    padding:
      55px
      18px;
  }

  .title-wrap {
    padding-right: .15em;
  }

  .main-title,
  .packs-title {
    font-size:
      clamp(
        55px,
        17vw,
        92px
      );

    letter-spacing: -.07em;
  }

  .title-shadow {
    letter-spacing: -.07em;
  }

  .title-reflection {
    font-size:
      clamp(
        55px,
        17vw,
        92px
      );

    letter-spacing: -.07em;
  }

  .floating-word {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .creator-card {
    padding:
      42px
      25px;
  }

  .creator-orb {
    width: 100px;
    height: 100px;

    right: 20px;
    bottom: 25px;

    opacity: .45;
  }

  .final-card {
    padding:
      50px
      25px;
  }

  .packs-title-wrap {
    padding:
      25px
      22px;

    border-radius: 30px;
  }

  .packs-title {
    gap: .10em;
  }

  .packs-grid {
    grid-template-columns: 1fr;
  }

  .pack-card {
    height: 470px;
  }

  footer {
    flex-direction: column;

    gap: 8px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: .01ms !important;

    scroll-behavior: auto !important;
  }
}