:root {
  --bg: #080808;
  --s1: #0F0F0F;
  --s2: #141414;
  --s3: #1A1A1A;
  --border: rgba(255, 255, 255, .06);
  --border2: rgba(255, 255, 255, .12);
  --w: #fff;
  --muted: #555;
  --muted2: #888;
  --accent: #C6FF00;
  --accent2: #A8D900;
  --gold: #F0C93A;
  --ink: #080808;
}

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

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--w);
  font-family: 'Syne', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
#cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s;
  mix-blend-mode: difference;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(198, 255, 0, .45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, opacity .3s;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 24px;
  height: 24px
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 56px;
  height: 56px;
  opacity: .35
}

/* GRAIN */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: .4;
}

/* PARTICLES */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* PROGRESS BAR */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent2));
  z-index: 9999;
  width: 0%;
  transition: width .08s linear;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3.5rem;
  background: rgba(8, 8, 8, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
}

nav.scrolled {
  background: rgba(8, 8, 8, .92);
  backdrop-filter: blur(22px);
  border-color: var(--border);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: -.02em;
  color: var(--w);
  text-decoration: none;
}

.logo em {
  font-style: italic;
  color: var(--accent)
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center
}

nav ul a {
  text-decoration: none;
  color: var(--muted2);
  font-size: .85rem;
  font-weight: 400;
  transition: color .2s;
  position: relative;
}

nav ul a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}

nav ul a:hover {
  color: var(--w)
}

nav ul a:hover::after {
  transform: scaleX(1)
}

.nav-btn {
  background: var(--accent) !important;
  color: var(--ink) !important;
  padding: .48rem 1.3rem;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: .8rem !important;
  transition: background .2s, transform .15s, box-shadow .2s !important;
}

.nav-btn:hover {
  background: var(--accent2) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(198, 255, 0, .25) !important
}

.nav-btn::after {
  display: none !important
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1);
}

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

.delay-1 {
  transition-delay: .1s
}

.delay-2 {
  transition-delay: .2s
}

.delay-3 {
  transition-delay: .3s
}

.delay-4 {
  transition-delay: .4s
}

.delay-5 {
  transition-delay: .5s
}

.delay-6 {
  transition-delay: .6s
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.glow-top {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(198, 255, 0, .08) 0%, transparent 68%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1)
  }

  50% {
    opacity: .5;
    transform: translateX(-50%) scale(1.1)
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(198, 255, 0, .22);
  background: rgba(198, 255, 0, .05);
  color: var(--accent);
  border-radius: 999px;
  padding: .3rem 1.1rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: heroUp .7s .1s forwards;
}

.pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--accent)
  }

  50% {
    opacity: .25;
    box-shadow: none
  }
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  max-width: 900px;
  margin: 0 auto 1.5rem;
  opacity: 0;
  animation: heroUp .8s .2s forwards;
}

h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400
}

h1 span {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: .72em;
  color: var(--muted2)
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted2);
  max-width: 440px;
  margin: 0 auto 2.8rem;
  opacity: 0;
  animation: heroUp .8s .3s forwards;
}

.hero-cta {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroUp .8s .4s forwards;
}

.btn-a {
  background: var(--accent);
  color: var(--ink);
  padding: .88rem 2.2rem;
  border-radius: 7px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

.btn-a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .28) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s;
}

.btn-a:hover::before {
  transform: translateX(100%)
}

.btn-a:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(198, 255, 0, .25)
}

.btn-b {
  background: transparent;
  color: var(--muted2);
  padding: .88rem 2.2rem;
  border-radius: 7px;
  font-size: .88rem;
  text-decoration: none;
  border: 1px solid var(--border2);
  transition: border-color .2s, color .2s, transform .2s;
  cursor: none;
}

.btn-b:hover {
  border-color: rgba(255, 255, 255, .3);
  color: var(--w);
  transform: translateY(-2px)
}

.note {
  margin-top: 1.2rem;
  font-size: .78rem;
  color: var(--muted);
  opacity: 0;
  animation: heroUp .8s .5s forwards;
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* FLOATING BADGES */
.float-badge {
  position: absolute;
  background: var(--s1);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: .6rem 1rem;
  font-size: .75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  opacity: 0;
}

.fb1 {
  left: 6%;
  top: 35%;
  animation: float1 3s 1s ease-in-out infinite;
}

.fb2 {
  right: 6%;
  top: 40%;
  animation: float2 3.5s 1.2s ease-in-out infinite;
}

.fb3 {
  left: 8%;
  bottom: 28%;
  animation: float1 4s 1.4s ease-in-out infinite;
}

@keyframes float1 {
  0% {
    opacity: 0;
    transform: translateY(16px)
  }

  15% {
    opacity: 1;
    transform: translateY(0)
  }

  55% {
    transform: translateY(-9px)
  }

  85% {
    transform: translateY(0)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes float2 {
  0% {
    opacity: 0;
    transform: translateY(16px)
  }

  15% {
    opacity: 1;
    transform: translateY(0)
  }

  55% {
    transform: translateY(9px)
  }

  85% {
    transform: translateY(0)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.dot-g {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28C840;
  box-shadow: 0 0 6px #28C840
}

.dot-a {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent)
}

/* MOCKUP */
.mock-wrap {
  width: 100%;
  max-width: 920px;
  margin: 4.5rem auto 0;
  opacity: 0;
  animation: heroUp .9s .65s forwards;
  position: relative;
  z-index: 1;
}

.mock-glow {
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(198, 255, 0, .2), transparent 55%);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

.mock {
  background: var(--s1);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 50px 140px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .03);
}

.mock-bar {
  background: #161616;
  padding: .75rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  border-bottom: 1px solid var(--border);
}

.d {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.dr {
  background: #FF5F57
}

.dy {
  background: #FEBC2E
}

.dg2 {
  background: #28C840
}

.mock-url {
  margin-left: 1rem;
  flex: 1;
  max-width: 260px;
  background: #1E1E1E;
  border-radius: 5px;
  padding: .22rem .85rem;
  font-size: .7rem;
  color: var(--muted);
}

.mock-body {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 320px;
}

.mock-side {
  border-right: 1px solid var(--border);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.si {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .6rem;
  border-radius: 6px;
  font-size: .75rem;
  color: var(--muted2);
  cursor: default;
  transition: background .2s, color .2s;
}

.si:hover {
  background: rgba(255, 255, 255, .04);
  color: var(--w)
}

.si.on {
  background: rgba(198, 255, 0, .08);
  color: var(--accent);
  font-weight: 500
}

.si-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: currentColor;
  opacity: .25;
  flex-shrink: 0
}

.si.on .si-dot {
  opacity: 1
}

.mock-main {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}

.stat {
  background: var(--s2);
  border-radius: 9px;
  border: 1px solid var(--border);
  padding: .9rem 1rem;
  transition: border-color .25s, transform .25s;
}

.stat:hover {
  border-color: rgba(198, 255, 0, .2);
  transform: translateY(-2px)
}

.stat-l {
  font-size: .68rem;
  color: var(--muted);
  margin-bottom: .2rem
}

.stat-v {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  letter-spacing: -.03em;
  line-height: 1;
}

.stat-d {
  font-size: .68rem;
  color: var(--accent);
  margin-top: .18rem
}

.chart-box {
  background: var(--s2);
  border-radius: 9px;
  border: 1px solid var(--border);
  padding: .9rem 1rem;
}

.chart-lbl {
  font-size: .68rem;
  color: var(--muted);
  margin-bottom: .7rem
}

.bars-row {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
}

.bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(198, 255, 0, .13);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: background .2s;
}

.bar.anim {
  transition: transform .6s cubic-bezier(.34, 1.56, .64, 1), background .2s;
}

.bar:hover,
.bar.hi {
  background: var(--accent)
}

/* LOGOS MARQUEE */
.logos-s {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.logos-s p {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--muted);
  margin-bottom: 1.8rem
}

.logo-track-wrap {
  overflow: hidden;
  position: relative
}

.logo-track-wrap::before,
.logo-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logo-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent)
}

.logo-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent)
}

.logo-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

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

.lg {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #282828;
  letter-spacing: -.02em;
  white-space: nowrap;
  transition: color .3s;
}

.lg:hover {
  color: #555
}

/* FEATURES */
.features {
  padding: 8rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -.04em;
  line-height: 1.1;
  max-width: 500px;
  margin-bottom: 4rem;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.fc {
  background: var(--s1);
  padding: 2.2rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.fc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.fc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(198, 255, 0, .06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.fc:hover {
  background: #111
}

.fc:hover::after {
  transform: scaleX(1)
}

.fc:hover::before {
  opacity: 1
}

.fc-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: rgba(255, 255, 255, .04);
  font-weight: 700;
  line-height: 1;
  margin-bottom: .7rem;
  letter-spacing: -.04em;
  transition: color .3s;
}

.fc:hover .fc-n {
  color: rgba(198, 255, 0, .08)
}

.fc h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: -.02em
}

.fc p {
  font-size: .85rem;
  color: var(--muted2);
  line-height: 1.65
}

/* STATS COUNTERS */
.stats-section {
  padding: 5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.stat-block {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.stat-block:last-child {
  border-right: none
}

.stat-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(198, 255, 0, .04), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}

.stat-block:hover::before {
  opacity: 1
}

.counter {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: -.05em;
  line-height: 1;
}

.counter-suffix {
  color: var(--accent)
}

.stat-block-label {
  font-size: .8rem;
  color: var(--muted2);
  margin-top: .5rem
}

/* PRICING */
.pricing {
  padding: 8rem 3rem;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.pricing-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(198, 255, 0, .05) 0%, transparent 68%);
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}

.pricing .section-title {
  margin: 1rem auto 3rem;
  text-align: center;
  max-width: none
}

.pricing-sub {
  color: var(--muted2);
  font-size: .92rem;
  margin-bottom: 3rem
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.pc {
  background: var(--s1);
  padding: 2.4rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background .25s;
}

.pc::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(198, 255, 0, .04), transparent);
  transition: height .45s;
}

.pc:hover::before {
  height: 100%
}

.pc:last-child {
  border-right: none
}

.pc:hover {
  background: #111
}

.pc.hot {
  background: #0C0C0C;
  outline: 1.5px solid rgba(198, 255, 0, .3);
  outline-offset: -1px;
  z-index: 2;
}

.hot-tag {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--ink);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .2rem .9rem;
  border-radius: 0 0 8px 8px;
}

.pc.gold-card {
  background: linear-gradient(160deg, #0E0C04, #0A0A0A);
  outline: 1.5px solid rgba(240, 201, 58, .25);
  outline-offset: -1px;
}

.pc.gold-card:hover {
  background: linear-gradient(160deg, #111005, #0C0C0C)
}

.pc.gold-card::before {
  background: linear-gradient(to top, rgba(240, 201, 58, .04), transparent)
}

.p-tier {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem
}

.pc.hot .p-tier {
  color: var(--accent)
}

.pc.gold-card .p-tier {
  color: var(--gold)
}

.p-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.03em;
  margin-bottom: .4rem;
  line-height: 1.1
}

.p-desc {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
  line-height: 1.5;
  min-height: 3.2em
}

.p-price-wrap {
  margin-bottom: .3rem;
  display: flex;
  align-items: flex-start;
  gap: .2rem
}

.p-sym {
  font-size: 1rem;
  color: var(--muted2);
  margin-top: .6rem
}

.p-val {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.4rem;
  letter-spacing: -.05em;
  line-height: 1;
}

.pc.gold-card .p-val {
  color: var(--gold)
}

.p-mo {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 1.8rem
}

.p-sep {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem
}

.p-list {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1
}

.p-list li {
  font-size: .82rem;
  color: var(--muted2);
  padding: .38rem 0;
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  border-bottom: 1px solid rgba(255, 255, 255, .035);
  transition: color .2s, transform .2s;
}

.p-list li:hover {
  color: var(--w);
  transform: translateX(4px)
}

.p-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: .72rem;
  flex-shrink: 0;
  margin-top: .18rem
}

.pc.gold-card .p-list li::before {
  color: var(--gold)
}

.btn-p {
  display: block;
  width: 100%;
  text-align: center;
  padding: .78rem;
  border-radius: 8px;
  border: none;
  cursor: none;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}

.btn-p::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .45s;
}

.btn-p:hover::before {
  transform: translateX(100%)
}

.btn-ghost-p {
  background: transparent;
  color: var(--muted2);
  border: 1px solid var(--border2);
}

.btn-ghost-p:hover {
  background: var(--s3);
  color: var(--w);
  border-color: rgba(255, 255, 255, .2)
}

.btn-accent-p {
  background: var(--accent);
  color: var(--ink);
}

.btn-accent-p:hover {
  background: var(--accent2);
  box-shadow: 0 8px 28px rgba(198, 255, 0, .28)
}

.btn-gold-p {
  background: var(--gold);
  color: #1A1200;
}

.btn-gold-p:hover {
  background: #F5D060;
  box-shadow: 0 8px 28px rgba(240, 201, 58, .28)
}

.pricing-note {
  margin-top: 2.5rem;
  font-size: .78rem;
  color: var(--muted)
}

/* TESTIMONIALS */
.testimonials {
  padding: 8rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.tc {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: border-color .3s, box-shadow .35s;
  position: relative;
  overflow: hidden;
}

.tc::before {
  content: '"';
  position: absolute;
  top: .5rem;
  right: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(198, 255, 0, .04);
  line-height: 1;
  pointer-events: none;
  transition: color .3s;
}

.tc:hover::before {
  color: rgba(198, 255, 0, .09)
}

.tc:hover {
  border-color: var(--border2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
}

.tc-stars {
  color: var(--accent);
  font-size: .8rem;
  letter-spacing: .08em;
  margin-bottom: 1rem
}

.tc-q {
  font-size: .9rem;
  color: #999;
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1.5rem
}

.tc-author {
  display: flex;
  align-items: center;
  gap: .75rem
}

.tc-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(198, 255, 0, .1);
  border: 1px solid rgba(198, 255, 0, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: .88rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: background .3s, transform .3s;
}

.tc:hover .tc-av {
  background: rgba(198, 255, 0, .2);
  transform: scale(1.1)
}

.tc-nm {
  font-size: .86rem;
  font-weight: 500
}

.tc-rl {
  font-size: .76rem;
  color: var(--muted)
}

/* CTA */
.cta-final {
  padding: 8rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-glow {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(198, 255, 0, .06) 0%, transparent 65%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}

.cta-final h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  letter-spacing: -.04em;
  line-height: 1.08;
  max-width: 700px;
  margin: 0 auto 1.2rem;
}

.cta-final h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400
}

.cta-final p {
  color: var(--muted2);
  margin-bottom: 2.8rem;
  font-size: .95rem
}

/* FOOTER */
footer {
  padding: 2rem 3.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.ft-links {
  display: flex;
  gap: 2rem
}

footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s
}

footer a:hover {
  color: var(--muted2)
}

/* RESPONSIVE */
@media(max-width:900px) {
  nav {
    padding: 1rem 1.5rem
  }

  nav ul {
    display: none
  }

  body {
    cursor: auto
  }

  #cursor,
  #cursor-ring {
    display: none
  }

  .hero {
    padding: 8rem 1.5rem 4rem
  }

  .float-badge {
    display: none
  }

  .features,
  .testimonials {
    padding: 5rem 1.5rem
  }

  .feat-grid {
    grid-template-columns: 1fr 1fr
  }

  .stats-section {
    grid-template-columns: 1fr 1fr;
    padding: 4rem 2rem
  }

  .stat-block {
    border-right: none;
    border-bottom: 1px solid var(--border)
  }

  .pricing {
    padding: 5rem 1.5rem
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr
  }

  .t-grid {
    grid-template-columns: 1fr
  }

  .mock-body {
    grid-template-columns: 1fr
  }

  .mock-side {
    display: none
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center
  }
}

@media(max-width:520px) {
  .feat-grid {
    grid-template-columns: 1fr
  }

  .pricing-grid {
    grid-template-columns: 1fr
  }

  .stats-section {
    grid-template-columns: 1fr
  }
}
