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

:root {
  --bg: #0C0A09;
  --s1: #1C1917;
  --s2: #211E1B;
  --border: rgba(107, 43, 255, .12);
  --border-dim: rgba(255, 255, 255, .07);
  --purple: #6B2BFF;
  --purple2: #5A1FE8;
  --purple-soft: rgba(107, 43, 255, .12);
  --purple-glow: rgba(107, 43, 255, .25);
  --purple-dim: rgba(107, 43, 255, .08);
  --text: #FAFAF9;
  --muted: rgba(250, 250, 249, .5);
  --muted2: rgba(250, 250, 249, .2);
  --green: #34D399;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --display: 'Bricolage Grotesque', sans-serif;
  --body: 'Space Grotesk', sans-serif;
  --serif: 'Lora', Georgia, serif;
}

html {
  font-size: 16px;
  overflow-x: hidden
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden
}

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

em {
  font-style: italic
}

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

.grid-bg {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(107, 43, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 43, 255, .025) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  z-index: 0
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0
}

.orb1 {
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(107, 43, 255, .07), transparent 65%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  animation: orbF 18s ease-in-out infinite
}

.orb2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(107, 43, 255, .05), transparent 65%);
  bottom: 5%;
  right: -120px;
  animation: orbF2 24s ease-in-out infinite reverse 3s
}

.orb3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(107, 43, 255, .04), transparent 65%);
  top: 40%;
  left: -80px;
  animation: orbF2 20s ease-in-out infinite 6s
}

@keyframes orbF {

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

  50% {
    transform: translateX(-50%) scale(1.08) translateY(-15px)
  }
}

@keyframes orbF2 {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.1) translateY(-12px)
  }
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  transition: all .3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 8px
}

.btn--purple {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple)
}

.btn--purple:hover {
  background: var(--purple2);
  box-shadow: 0 0 50px var(--purple-glow);
  transform: translateY(-2px)
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, .18)
}

.btn--outline:hover {
  border-color: var(--purple);
  background: var(--purple-soft);
  transform: translateY(-2px)
}

.btn--lg {
  padding: 1rem 2.4rem;
  font-size: .82rem
}

/* ── HERO LOAD ANIMATIONS ──────────────────────────── */
.hero-anim {
  opacity: 0;
  transform: translateY(32px);
  animation: heroIn .85s var(--ease) forwards;
  animation-delay: var(--d, 0s)
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .38rem 1rem;
  border-radius: 20px;
  background: var(--purple-soft);
  border: 1px solid rgba(107, 43, 255, .3);
  font-size: .68rem;
  letter-spacing: .1em;
  color: rgba(180, 140, 255, .95);
  margin-bottom: 2rem;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0;
  animation: badgePop .7s var(--ease) .05s forwards
}

@keyframes badgePop {
  0% {
    opacity: 0;
    transform: scale(.88) translateY(10px)
  }

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

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  animation: purplePulse 2s infinite;
  flex-shrink: 0
}

/* ── SCROLL REVEAL ─────────────────────────────────── */
.up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0s)
}

.up.in {
  opacity: 1;
  transform: translateY(0)
}

/* ── DIVIDER ───────────────────────────────────────── */
.sec-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: var(--border-dim)
}

/* ── NAV ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5rem;
  transition: all .4s
}

.nav.stuck {
  background: rgba(12, 10, 9, .94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim)
}

.nav__logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: .55rem
}

.nav__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 14px var(--purple);
  animation: purplePulse 2s ease-in-out infinite;
  flex-shrink: 0
}

@keyframes purplePulse {

  0%,
  100% {
    box-shadow: 0 0 8px var(--purple)
  }

  50% {
    box-shadow: 0 0 24px var(--purple), 0 0 48px var(--purple-glow)
  }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: .8rem;
  font-weight: 400
}

.nav__links a {
  color: var(--muted);
  transition: color .2s
}

.nav__links a:hover {
  color: var(--text)
}

.nav__cta {
  color: var(--purple) !important;
  border-bottom: 1px solid rgba(107, 43, 255, .4);
  padding-bottom: 2px;
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em
}

.nav__ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 400;
  background: none;
  border: none
}

.nav__ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s
}

.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 9, .98);
  z-index: 350;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem
}

.mob-nav.open {
  display: flex
}

.mob-nav a {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--muted);
  transition: color .2s
}

.mob-nav a:hover {
  color: var(--text)
}

.mob-nav .nav__cta {
  font-size: 1.5rem
}

.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 5rem 3rem;
  position: relative;
  z-index: 1
}

.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 5.4rem);
  line-height: 1.0;
  letter-spacing: -.04em;
  margin-bottom: 1.4rem;
  max-width: 820px
}

.hero__title .line {
  display: block
}

.hero__title .line--purple {
  color: var(--purple)
}

.hero__title .line--serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: rgba(250, 250, 249, .55)
}

.hero__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2.4rem;
  line-height: 1.85;
  font-weight: 300
}

.hero__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

/* ── MARQUEE ───────────────────────────────────────── */
.marquee-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: .8rem 0;
  background: rgba(12, 10, 9, .7);
  backdrop-filter: blur(4px)
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: mq 28s linear infinite
}

.marquee-inner span {
  font-family: var(--display);
  font-size: .58rem;
  letter-spacing: .26em;
  color: rgba(107, 43, 255, .35)
}

.marquee-inner em {
  color: rgba(107, 43, 255, .65);
  font-style: normal
}

@keyframes mq {
  0% {
    transform: translateX(0)
  }

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

/* ── MOCKUP ZONE ───────────────────────────────────────────────────────────
   FIX 1+4: The fade MUST be INSIDE the mockup border-radius, not outside.
   We remove .mockup-fade::after completely.
   Instead we add an inner fade overlay ON the .dash-mock itself so it
   clips to the rounded corners of the card and scales with the card.
   We also add spacing below the zone (FIX 3).
   ──────────────────────────────────────────────────────────────────────── */
.mockup-zone {
  position: relative;
  z-index: 2;
  padding: 0 3rem;
  margin-top: -3px;
  /* FIX 3: Add proper bottom spacing so it doesn't touch the divider */
  margin-bottom: 4rem
}

.mockup-fade {
  position: relative
}

/* REMOVED: .mockup-fade::after — no more external fade bleeding outside the card */
.mockup-scaler {
  max-width: 1180px;
  margin: 0 auto;
  transform: scale(0.78) translateY(40px);
  transform-origin: top center;
  will-change: transform;
  opacity: 0;
  transition: opacity .7s var(--ease) .8s
}

.mockup-scaler.vis {
  opacity: 1
}

.dash-mock {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(107, 43, 255, .22);
  box-shadow: 0 50px 140px rgba(0, 0, 0, .95), 0 0 80px rgba(107, 43, 255, .08);
  background: #0D0D0D;
  /* FIX 1: Fade lives INSIDE the card via position:relative */
  position: relative
}

/* FIX 1: Inner fade overlay that clips to the card's border-radius */
.dash-mock::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, rgba(13, 13, 13, .85) 70%, #0D0D0D 100%);
  pointer-events: none;
  z-index: 20;
  border-radius: 0 0 16px 16px
}

.dm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.5rem;
  border-bottom: 1px solid rgba(107, 43, 255, .12);
  background: #0A0A0A
}

.dm-logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: .9rem
}

.dm-logo span {
  color: var(--purple)
}

.dm-topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .72rem;
  color: var(--muted)
}

.dm-notif {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer
}

.dm-notif-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #EF4444;
  font-size: .48rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0A0A0A
}

.dm-view-port {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  color: var(--muted);
  cursor: pointer
}

.dm-body {
  display: flex
}

.dm-sidebar {
  width: 185px;
  border-right: 1px solid rgba(107, 43, 255, .1);
  background: #0A0A0A;
  flex-shrink: 0;
  display: flex;
  flex-direction: column
}

.dm-sb-item {
  padding: .58rem 1.2rem;
  font-size: .7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .55rem;
  transition: background .2s;
  color: var(--muted);
  border-left: 2px solid transparent
}

.dm-sb-item.active {
  background: var(--purple-soft);
  color: #fff;
  font-weight: 600;
  border-left-color: var(--purple)
}

.dm-sb-item:hover:not(.active) {
  background: #1A1A1A
}

.dm-sb-sep {
  height: 1px;
  background: rgba(107, 43, 255, .1);
  margin: .4rem 0
}

.dm-sb-footer {
  margin-top: auto;
  border-top: 1px solid rgba(107, 43, 255, .1);
  padding: .75rem 1rem
}

.dm-sb-av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #9333EA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .52rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0
}

.dm-main {
  flex: 1;
  padding: 1.3rem;
  max-height: 420px;
  overflow: hidden
}

.dm-main-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .9rem
}

.dm-main-title span {
  color: var(--purple)
}

.dm-tpl-label {
  font-size: .68rem;
  font-weight: 600;
  margin-bottom: .35rem;
  letter-spacing: .02em
}

.dm-tpl-sub {
  font-size: .62rem;
  color: var(--muted);
  margin-bottom: .75rem
}

/* FIX 2: Template strip with more templates and mini-mockup previews */
.dm-tpl-strip {
  display: flex;
  gap: .65rem;
  overflow: hidden
}

.dm-tpl-card {
  width: 118px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid rgba(107, 43, 255, .15);
  overflow: hidden;
  background: #1A1A1A;
  transition: border-color .2s
}

.dm-tpl-card.active-card {
  border-color: var(--purple);
  box-shadow: 0 0 14px var(--purple-glow)
}

/* Mini portfolio mockup preview instead of emoji icon */
.dm-tpl-preview {
  height: 72px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0
}

.dm-lock {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  z-index: 5
}

.dm-lock-icon {
  background: rgba(107, 43, 255, .9);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .52rem
}

.dm-lock-txt {
  font-size: .44rem;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .04em;
  font-weight: 700;
  text-transform: uppercase
}

.dm-live-badge {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  font-size: .48rem;
  font-weight: 700;
  color: #fff;
  padding: .1rem .35rem;
  border-radius: 3px;
  white-space: nowrap;
  z-index: 6
}

.dm-checkmark {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .48rem;
  color: #fff;
  z-index: 6
}

/* Mini mockup preview styles */
.dm-preview-modern {
  background: linear-gradient(160deg, #1a0a3a 0%, #2d0a6e 50%, #0a0a1a 100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column
}

.dm-preview-clean {
  background: linear-gradient(160deg, #1a1a1a 0%, #222 100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column
}

.dm-preview-dark {
  background: linear-gradient(160deg, #0a0a14 0%, #141428 100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column
}

.dm-preview-classic {
  background: linear-gradient(160deg, #140a28 0%, #1e0f40 100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column
}

.dm-preview-minimal {
  background: linear-gradient(160deg, #0e0e0e 0%, #1a1a1a 100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column
}

.dm-preview-bold {
  background: linear-gradient(135deg, #1a0550 0%, #6B2BFF 100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column
}

.dm-prev-header {
  height: 12px;
  display: flex;
  align-items: center;
  padding: 0 5px;
  gap: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.dm-prev-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%
}

.dm-prev-dot.p {
  background: var(--purple)
}

.dm-prev-dot.g {
  background: var(--green)
}

.dm-prev-dot.w {
  background: rgba(255, 255, 255, .3)
}

.dm-prev-title-bar {
  flex: 0 0 2px;
  background: rgba(107, 43, 255, .4);
  margin: 4px 5px 2px
}

.dm-prev-body {
  flex: 1;
  padding: 2px 5px;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.dm-prev-line {
  height: 2px;
  border-radius: 1px;
  background: rgba(255, 255, 255, .15)
}

.dm-prev-line.accent {
  background: rgba(107, 43, 255, .5);
  width: 40%
}

.dm-prev-line.short {
  width: 55%
}

.dm-prev-avatar {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #9333EA);
  flex-shrink: 0
}

.dm-prev-row {
  display: flex;
  align-items: center;
  gap: 3px
}

.dm-tpl-info {
  padding: .4rem .5rem
}

.dm-tpl-name {
  font-size: .6rem;
  font-weight: 600;
  margin-bottom: .12rem
}

.dm-tpl-desc {
  font-size: .52rem;
  color: var(--muted);
  line-height: 1.3
}

.dm-tpl-btns {
  display: flex;
  gap: .3rem;
  padding: .3rem .5rem
}

.dm-tpl-btn {
  flex: 1;
  padding: .2rem;
  font-size: .52rem;
  border-radius: 3px;
  background: #222;
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--text);
  cursor: pointer;
  text-align: center
}

.dm-tpl-btn.primary {
  background: var(--purple);
  border-color: var(--purple)
}

.dm-tpl-unlocked {
  font-size: .48rem;
  color: var(--green);
  text-align: center;
  padding: .18rem;
  font-weight: 700
}

.dm-tpl-current {
  font-size: .52rem;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  padding: .28rem .4rem;
  background: var(--purple-soft);
  border-radius: 4px;
  margin: .3rem .4rem
}

.dm-tpl-active-label {
  font-size: .48rem;
  color: var(--muted);
  text-align: center;
  padding: .1rem
}

.dm-live-strip {
  border-top: 1px solid rgba(107, 43, 255, .1);
  padding: .7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0A0A0A;
  position: relative;
  z-index: 25
}

.dm-live-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 700;
  color: var(--purple);
  font-family: var(--display);
  letter-spacing: .06em;
  text-transform: uppercase
}

.dm-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: liveBlink 2s ease-in-out infinite
}

@keyframes liveBlink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.dm-view-btn {
  background: var(--purple);
  color: #fff;
  padding: .32rem .85rem;
  border-radius: 5px;
  font-size: .64rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .3rem;
  cursor: pointer;
  border: none;
  font-family: var(--display)
}

/* ── SECTIONS ──────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: 8rem 5rem
}

.sec-tag {
  font-family: var(--display);
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 2rem
}

.sec-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: .75rem
}

.sec-h em {
  color: var(--purple);
  font-style: normal
}

/* ── STORY ─────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 8rem;
  align-items: start
}

.story-left h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 1.5rem
}

.story-left .by {
  font-family: var(--display);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--purple)
}

.highlight-text {
  font-size: .975rem;
  line-height: 2.15;
  color: rgba(250, 250, 249, .18);
  margin-bottom: 2rem
}

.highlight-text .word {
  transition: color .07s
}

.highlight-text .word.lit {
  color: var(--text)
}

.story-quote {
  font-size: 1.45rem;
  font-style: italic;
  color: var(--text);
  border-left: 2px solid var(--purple);
  padding-left: 1.5rem;
  line-height: 1.4;
  margin-top: 2rem;
  font-family: var(--serif)
}

.story-quote em {
  color: var(--purple);
  font-style: italic
}

/* ── FEATURES ──────────────────────────────────────────────────────────────
   FIX 4: The fade should be AT THE BOTTOM of the .feat-visual box, not INSIDE
   the content. We keep overflow:hidden on .feat-visual so the ::after pseudo
   clips to the rounded corners of the card, then sits above the content.
   ──────────────────────────────────────────────────────────────────────── */
.feat-alt {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 1rem
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.feat-row.rev {
  direction: rtl
}

.feat-row.rev>* {
  direction: ltr
}

.feat-text .num {
  font-family: var(--display);
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--purple);
  margin-bottom: .8rem
}

.feat-text h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
  line-height: 1.1
}

.feat-text p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.85
}

.feat-text ul {
  list-style: none;
  margin-top: .9rem;
  display: flex;
  flex-direction: column;
  gap: .45rem
}

.feat-text li {
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  gap: .5rem
}

.feat-text li::before {
  content: '→';
  color: var(--purple);
  flex-shrink: 0
}

.feat-visual {
  background: var(--s1);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  overflow: hidden;
  position: relative
}

/* FIX 4: Removed ::before glow inside content, only keep bottom fade via ::after */
/* The ::before was an internal glow — we KEEP it as it's a nice corner glow, not a fade */
.feat-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(107, 43, 255, .1), transparent 70%);
  pointer-events: none;
  z-index: 1
}

/* FIX 4: ::after is now a bottom fade that sits AT the bottom edge of the card box, fully clipped */
.feat-visual::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent 0%, var(--s1) 100%);
  pointer-events: none;
  z-index: 10
}

.feat-visual-inner {
  padding: 2rem;
  position: relative;
  z-index: 2
}

.fv-dashboard {
  display: flex;
  flex-direction: column;
  gap: .6rem
}

.fv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem .7rem;
  background: var(--s2);
  border-radius: 6px;
  font-size: .72rem;
  border: 1px solid var(--border-dim)
}

.fv-toggle {
  width: 24px;
  height: 12px;
  border-radius: 6px;
  background: var(--purple);
  position: relative;
  flex-shrink: 0
}

.fv-toggle::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff
}

.fv-toggle.off {
  background: var(--s2);
  border: 1px solid rgba(255, 255, 255, .1)
}

.fv-toggle.off::after {
  right: auto;
  left: 2px;
  background: rgba(255, 255, 255, .2)
}

.fv-url {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .6rem .8rem;
  font-size: .72rem;
  color: var(--purple);
  letter-spacing: .04em;
  margin-bottom: .6rem;
  font-family: monospace
}

.fv-pub {
  width: 100%;
  padding: .6rem;
  background: linear-gradient(135deg, var(--purple), #9333EA);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .06em;
  margin-bottom: .5rem
}

.fv-live {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  color: var(--purple)
}

.fv-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: liveBlink 2s infinite
}

.fv-devices {
  display: flex;
  gap: .8rem;
  align-items: flex-start
}

.fv-desktop {
  flex: 1;
  border: 1px solid var(--border-dim);
  border-radius: 7px;
  overflow: hidden
}

.fv-mob {
  width: 55px;
  border: 1px solid var(--border-dim);
  border-radius: 7px;
  overflow: hidden
}

.fv-screen {
  padding: .4rem;
  background: var(--s2)
}

.fv-screen-h {
  height: 3px;
  border-radius: 2px;
  background: var(--purple);
  margin-bottom: .3rem
}

.fv-screen-l {
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .07);
  margin-bottom: .25rem;
  width: 80%
}

.fv-screen-l.m {
  width: 60%
}

/* ── TEMPLATE GALLERY ──────────────────────────────── */
.tpl-section-wrap {
  position: relative
}

.tpl-section-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 5
}

.tpl-gallery-mock {
  background: #0D0D0D;
  border: 1px solid rgba(107, 43, 255, .15);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2.5rem
}

.tgm-top {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(107, 43, 255, .1);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: #0A0A0A
}

.tgm-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem
}

.tgm-title span {
  color: var(--purple)
}

.tgm-filters {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap
}

.tgm-filter {
  padding: .3rem .8rem;
  border-radius: 20px;
  font-size: .66rem;
  background: #1A1A1A;
  border: 1px solid rgba(107, 43, 255, .15);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--display);
  font-weight: 600;
  transition: all .25s var(--ease);
  user-select: none
}

.tgm-filter.default-active {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple)
}

.tgm-filter:hover {
  border-color: rgba(107, 43, 255, .6);
  color: #fff;
  background: rgba(107, 43, 255, .18);
  transform: translateY(-1px)
}

.tgm-body {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .85rem
}

.tgm-card {
  border: 1px solid rgba(107, 43, 255, .1);
  border-radius: 12px;
  overflow: hidden;
  background: #1A1A1A;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, box-shadow .3s
}

.tgm-card:hover {
  border-color: rgba(107, 43, 255, .45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .5), 0 0 16px rgba(107, 43, 255, .07)
}

.tgm-card.selected {
  border-color: var(--purple);
  box-shadow: 0 0 22px var(--purple-glow)
}

.tgm-img {
  height: 120px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #333;
  position: relative;
  flex-shrink: 0
}

.tgm-lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem
}

.tgm-lock-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: #fff
}

.tgm-mem-txt {
  font-size: .52rem;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .85);
  font-weight: 700;
  text-transform: uppercase
}

.tgm-check-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: #fff;
  font-weight: 700
}

.tgm-soon {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center
}

.tgm-soon-txt {
  font-family: var(--display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.5;
  color: var(--muted)
}

.tgm-info {
  padding: .7rem .65rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .25rem
}

.tgm-name {
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--display);
  color: var(--text)
}

.tgm-desc {
  font-size: .6rem;
  color: var(--muted);
  line-height: 1.4;
  flex: 1
}

.tgm-btns {
  display: flex;
  gap: .3rem;
  margin-top: auto
}

.tgm-btn {
  flex: 1;
  padding: .28rem;
  font-size: .6rem;
  border-radius: 5px;
  background: #2A2A2A;
  border: 1px solid rgba(107, 43, 255, .15);
  color: var(--text);
  cursor: pointer;
  text-align: center;
  font-family: var(--display);
  font-weight: 600;
  transition: background .2s
}

.tgm-btn:hover {
  background: #333
}

.tgm-btn.p {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff
}

.tgm-btn.p:hover {
  background: var(--purple2)
}

.tgm-unlocked {
  font-size: .52rem;
  color: var(--green);
  text-align: center;
  padding: .22rem;
  font-weight: 700;
  letter-spacing: .06em
}

.tgm-current-btn {
  background: var(--purple-soft);
  border: 1px solid rgba(107, 43, 255, .3);
  color: var(--purple);
  font-size: .62rem;
  width: 100%;
  padding: .35rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--display)
}

.tgm-active-lbl {
  font-size: .52rem;
  color: var(--muted);
  text-align: center;
  padding: .15rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase
}

/* ── HOW ───────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2rem
}

.how-step {
  padding: 2.5rem;
  border: 1px solid var(--border-dim);
  border-right: none;
  transition: background .3s;
  position: relative;
  cursor: default
}

.how-step:first-child {
  border-radius: 12px 0 0 12px
}

.how-step:last-child {
  border-right: 1px solid var(--border-dim);
  border-radius: 0 12px 12px 0
}

.how-step:hover {
  background: var(--purple-dim)
}

.how-step.highlight {
  background: var(--purple-soft);
  border-color: rgba(107, 43, 255, .3);
  cursor: pointer
}

.how-step.highlight:last-child {
  border-color: rgba(107, 43, 255, .3)
}

.how-n {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -.06em;
  color: rgba(107, 43, 255, .15);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color .3s
}

.how-step:hover .how-n,
.how-step.highlight .how-n {
  color: rgba(107, 43, 255, .4)
}

.how-step h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .6rem;
  letter-spacing: -.01em
}

.how-step p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.78
}

.how-step-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.2rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--purple);
  font-family: var(--display);
  letter-spacing: .04em;
  text-transform: uppercase;
  pointer-events: none
}

.how-step-link .arrow {
  display: inline-block;
  transition: transform .35s var(--ease);
  font-size: 1.1rem
}

.how-step.highlight:hover .how-step-link .arrow {
  transform: translateX(8px)
}

/* ══════════════════════════════════════════════════════════════════════════
   FIX 5 — SMART TESTIMONIALS SYSTEM
   ══════════════════════════════════════════════════════════════════════════
   LOGIC EXPLAINED:
   The testimonial system has a configurable constant TESTI_CONFIG (see JS)
   that you can adjust without touching CSS. Here's how it works:

   DESKTOP (>860px):
   - If testimonials count < TESTI_CONFIG.minForScroll (default: 3)
     → Static grid, no scroll animation (looks bad with 1-2 cards)
   - If count >= minForScroll
     → Single horizontal marquee (current design). Speed = TESTI_CONFIG.desktopDuration
   
   MOBILE (≤860px):
   - If count < TESTI_CONFIG.minForDualRow (default: 4)
     → Single slower row (no dual row — not enough cards to fill two)
   - If count >= minForDualRow
     → Dual opposing rows (current design). Speeds = TESTI_CONFIG.mobRow1Duration / mobRow2Duration
   
   Duplication for seamless loop:
   - Cards are duplicated enough times to fill 2× the viewport width
   - This ensures smooth infinite scroll regardless of how many real cards exist
   - TESTI_CONFIG.minCopies controls minimum duplicate sets (default: 4 for 1-2 cards)
   
   TO ADJUST: just change TESTI_CONFIG values in the <script> section.
   ══════════════════════════════════════════════════════════════════════════ */
.testi-outer {
  overflow: hidden;
  margin: 2.5rem -5rem 0;
  position: relative
}

.testi-outer::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 200px;
  background: linear-gradient(to right, var(--bg), transparent);
  pointer-events: none;
  z-index: 5
}

.testi-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 200px;
  background: linear-gradient(to left, var(--bg), transparent);
  pointer-events: none;
  z-index: 5
}

/* Desktop: single track */
.testi-track {
  display: flex;
  gap: 1.2rem;
  padding: 0 5rem
}

.testi-track.scrolling {
  animation: testiScroll var(--testi-duration, 42s) linear infinite
}

.testi-track.scrolling:hover {
  animation-play-state: paused
}

@keyframes testiScroll {
  0% {
    transform: translateX(0)
  }

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

.tm-card {
  flex-shrink: 0;
  width: 310px;
  background: var(--s1);
  border: 1px solid var(--border-dim);
  border-radius: 14px;
  padding: 1.6rem;
  transition: border-color .3s;
  border-top: 2px solid var(--purple)
}

.tm-card:hover {
  border-color: rgba(107, 43, 255, .4)
}

.tm-stars {
  color: var(--purple);
  font-size: .8rem;
  letter-spacing: .06em;
  margin-bottom: .75rem
}

.tm-text {
  font-size: .87rem;
  line-height: 1.78;
  color: rgba(250, 250, 249, .8);
  font-style: italic;
  margin-bottom: 1rem;
  font-family: var(--serif)
}

.tm-person {
  display: flex;
  align-items: center;
  gap: .65rem
}

.tm-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #9333EA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0
}

.tm-name {
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--display)
}

.tm-role {
  font-size: .68rem;
  color: var(--muted)
}

/* Static grid fallback (when too few testimonials for scroll) */
.testi-static {
  display: none;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 2rem 0;
  justify-content: center
}

.testi-static .tm-card {
  width: min(310px, 100%)
}

/* Mobile dual-row */
.testi-mob {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem -1.5rem 0;
  overflow: hidden;
  position: relative
}

.testi-mob::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  background: linear-gradient(to right, var(--bg), transparent);
  pointer-events: none;
  z-index: 5
}

.testi-mob::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 40px;
  background: linear-gradient(to left, var(--bg), transparent);
  pointer-events: none;
  z-index: 5
}

.testi-mob-row {
  display: flex;
  gap: 1rem;
  padding: 0 1.5rem
}

.testi-mob-row--fwd {
  animation: testiMobFwd var(--testi-mob-dur1, 22s) linear infinite
}

.testi-mob-row--rev {
  animation: testiMobRev var(--testi-mob-dur2, 26s) linear infinite
}

.testi-mob-row:hover {
  animation-play-state: paused
}

@keyframes testiMobFwd {
  0% {
    transform: translateX(0)
  }

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

@keyframes testiMobRev {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

.tm-card-mob {
  flex-shrink: 0;
  width: 260px;
  background: var(--s1);
  border: 1px solid var(--border-dim);
  border-radius: 14px;
  padding: 1.2rem;
  border-top: 2px solid var(--purple)
}

/* Mobile single row (when too few cards for dual row) */
.testi-mob-single {
  display: none;
  overflow: hidden;
  position: relative;
  margin: 2rem -1.5rem 0
}

.testi-mob-single::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  background: linear-gradient(to right, var(--bg), transparent);
  pointer-events: none;
  z-index: 5
}

.testi-mob-single::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 40px;
  background: linear-gradient(to left, var(--bg), transparent);
  pointer-events: none;
  z-index: 5
}

.testi-mob-single-track {
  display: flex;
  gap: 1rem;
  padding: 0 1.5rem;
  animation: testiMobFwd var(--testi-mob-single-dur, 18s) linear infinite
}

.testi-mob-single-track:hover {
  animation-play-state: paused
}

/* ── PRICING ───────────────────────────────────────── */
.pricing-section {
  position: relative;
  z-index: 1;
  padding: 8rem 5rem
}

.pricing-shell {
  background: #000;
  border-radius: 24px;
  padding: 3rem;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden
}

.pricing-shell::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 43, 255, .06), transparent 65%);
  pointer-events: none
}

.p-toggle-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.8rem;
  position: relative;
  z-index: 2
}

.p-toggle-lbl {
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s
}

.p-toggle-lbl.on {
  color: var(--text)
}

.toggle-sw {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--purple);
  position: relative;
  cursor: pointer;
  transition: background .3s;
  flex-shrink: 0
}

.toggle-sw::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform .3s var(--ease)
}

.toggle-sw.yr::after {
  transform: translateX(20px)
}

.p-save-badge {
  font-family: var(--display);
  font-size: .58rem;
  font-weight: 700;
  background: rgba(52, 211, 153, .15);
  color: var(--green);
  padding: .2rem .6rem;
  border-radius: 20px;
  border: 1px solid rgba(52, 211, 153, .3);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: opacity .3s
}

.p-annots {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: .5rem;
  pointer-events: none
}

.p-annot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem
}

.p-annot-txt {
  font-family: var(--serif);
  font-style: italic;
  font-size: .78rem;
  color: rgba(250, 250, 249, .55);
  text-align: center
}

.p-annot-arr {
  font-size: 1.2rem;
  color: rgba(250, 250, 249, .4);
  line-height: 1
}

.p-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  position: relative;
  z-index: 2
}

.p-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color .3s;
  display: flex;
  flex-direction: column
}

.p-card:hover {
  border-color: rgba(107, 43, 255, .35)
}

.p-card.feat {
  border-color: rgba(107, 43, 255, .5);
  box-shadow: 0 0 40px rgba(107, 43, 255, .12), inset 0 0 60px rgba(107, 43, 255, .03)
}

.p-card.feat:hover {
  border-color: rgba(107, 43, 255, .75)
}

.p-popular {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  font-family: var(--display);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--purple);
  color: #fff;
  padding: .32rem .85rem;
  border-radius: 0 0 8px 8px
}

.p-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: .5rem;
  letter-spacing: -.02em
}

.p-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--display);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 20px;
  margin-bottom: 1.5rem
}

.p-badge.free {
  background: rgba(52, 211, 153, .1);
  color: var(--green);
  border: 1px solid rgba(52, 211, 153, .25)
}

.p-badge.starter {
  background: rgba(107, 43, 255, .15);
  color: rgba(160, 120, 255, .9);
  border: 1px solid rgba(107, 43, 255, .3)
}

.p-badge.soon {
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, .1)
}

.p-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: -.06em;
  margin-bottom: .25rem;
  line-height: 1
}

.p-price sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: .4rem;
  font-weight: 700
}

.p-price-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0
}

.p-price-free {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: -.06em;
  margin-bottom: .25rem;
  line-height: 1;
  font-style: italic
}

.p-bill {
  font-size: .68rem;
  color: var(--muted);
  margin-bottom: 1.5rem
}

.p-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.p-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 2rem;
  flex: 1
}

.p-feats li {
  font-size: .82rem;
  color: rgba(250, 250, 249, .75);
  display: flex;
  gap: .5rem;
  align-items: flex-start
}

.p-feats li::before {
  content: '✓';
  color: var(--purple);
  flex-shrink: 0;
  font-weight: 700
}

.p-feats li.dim {
  color: var(--muted)
}

.p-feats li.dim::before {
  color: var(--muted2)
}

.p-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.5rem;
  border-radius: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  transition: all .3s var(--ease);
  text-align: center
}

.p-btn.out {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--text)
}

.p-btn.out:hover {
  border-color: var(--purple);
  background: var(--purple-soft)
}

.p-btn.pur {
  background: var(--purple);
  color: #fff
}

.p-btn.pur:hover {
  background: var(--purple2);
  box-shadow: 0 0 40px var(--purple-glow);
  transform: translateY(-2px)
}

.p-btn.dis {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
  cursor: default
}

.p-wl {
  display: flex;
  align-items: center;
  gap: .4rem;
  justify-content: center;
  font-family: var(--display);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .75rem
}

.p-wl-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 6px #F59E0B;
  animation: liveBlink 2s infinite
}

/* Mobile pricing carousel */
.p-carousel {
  display: none;
  position: relative;
  z-index: 2;
  margin: 0 -1.5rem
}

.p-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 1rem;
  padding: .5rem 1.5rem 2.5rem;
  scrollbar-width: none
}

.p-carousel-track::-webkit-scrollbar {
  display: none
}

.p-carousel-track .p-card {
  min-width: 280px;
  width: 85vw;
  scroll-snap-align: center;
  flex-shrink: 0
}

.p-carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.2rem
}

.p-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s
}

.p-dot.active {
  background: var(--purple);
  width: 20px;
  border-radius: 3px
}

/* ── FAQ ───────────────────────────────────────────── */
.faq-list {
  max-width: 700px;
  margin-top: 1.5rem
}

.faq-item {
  border-bottom: 1px solid var(--border-dim)
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  gap: 2rem;
  transition: color .2s
}

.faq-q:hover {
  color: var(--purple)
}

.faq-q span {
  font-size: 1.3rem;
  color: var(--purple);
  transition: transform .4s var(--ease);
  flex-shrink: 0;
  line-height: 1
}

.faq-q[aria-expanded="true"] span {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.82;
  transition: max-height .5s var(--ease), padding .4s
}

.faq-a.open {
  max-height: 180px;
  padding-bottom: 1.3rem
}

/* ── FINAL CTA ─────────────────────────────────────── */
.fcta {
  padding: 12rem 5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--border-dim)
}

.fcta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(107, 43, 255, .08), transparent 60%);
  pointer-events: none
}

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

.fcta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.0;
  letter-spacing: -.05em;
  margin-bottom: 1.5rem
}

.fcta h2 em {
  color: var(--purple);
  font-style: normal
}

.fcta p {
  color: var(--muted);
  font-size: .95rem;
  max-width: 440px;
  margin: 0 auto 3rem;
  line-height: 1.85
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-dim);
  background: #000;
  overflow: hidden
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  padding: 3.5rem 5rem 2rem;
  border-bottom: 1px solid var(--border-dim)
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.footer-logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: .55rem
}

.footer-brand p {
  font-size: .8rem;
  color: var(--muted);
  max-width: 300px;
  line-height: 1.65
}

.footer-cols {
  display: flex;
  gap: 5rem
}

.footer-col h4 {
  font-family: var(--display);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-weight: 700
}

.footer-col a {
  display: block;
  font-size: .8rem;
  color: rgba(250, 250, 249, .55);
  transition: color .2s;
  margin-bottom: .65rem;
  font-family: var(--display);
  font-weight: 500
}

.footer-col a:hover {
  color: var(--text)
}

/* Giant brand name */
.footer-brand-giant {
  padding: 1.5rem 5rem 0;
  overflow: hidden;
  line-height: .85;
  user-select: none;
  pointer-events: none
}

.footer-brand-giant span {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(4rem, 13vw, 13rem);
  letter-spacing: -.05em;
  color: rgba(107, 43, 255, .7);
  white-space: nowrap;
  display: block;
  line-height: .85
}

/* ── FIX 6: Proper social icons using inline SVG paths ── */
.footer-social-bar {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.5rem 5rem;
  border-top: 1px solid var(--border-dim);
  flex-wrap: wrap
}

.footer-social-label {
  font-family: var(--display);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-right: .5rem
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s var(--ease);
  text-decoration: none;
  color: var(--muted);
  flex-shrink: 0
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: fill .2s
}

.footer-social-link:hover {
  background: var(--purple-soft);
  border-color: rgba(107, 43, 255, .5);
  color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(107, 43, 255, .2)
}

/* Individual brand colors on hover */
.footer-social-link.twitter:hover {
  background: rgba(29, 161, 242, .1);
  border-color: rgba(29, 161, 242, .4);
  color: #1DA1F2
}

.footer-social-link.instagram:hover {
  background: rgba(225, 48, 108, .1);
  border-color: rgba(225, 48, 108, .4);
  color: #E1306C
}

.footer-social-link.linkedin:hover {
  background: rgba(0, 119, 181, .1);
  border-color: rgba(0, 119, 181, .4);
  color: #0077B5
}

.footer-social-link.github:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .3);
  color: #fff
}

.footer-social-link.youtube:hover {
  background: rgba(255, 0, 0, .1);
  border-color: rgba(255, 0, 0, .4);
  color: #FF0000
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 5rem;
  border-top: 1px solid var(--border-dim)
}

.footer-btm-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap
}

.footer-btm-links a {
  font-size: .7rem;
  color: var(--muted2);
  transition: color .2s;
  font-family: var(--display);
  letter-spacing: .03em
}

.footer-btm-links a:hover {
  color: var(--text)
}

.f-copy {
  font-size: .7rem;
  color: var(--muted2)
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media(max-width:1100px) {

  .nav,
  .section,
  .pricing-section,
  .footer-top,
  .footer-bottom,
  .footer-brand-giant,
  .footer-social-bar {
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }

  .hero {
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }

  .mockup-zone {
    padding: 0 2rem
  }

  .story-grid {
    grid-template-columns: 220px 1fr;
    gap: 4rem
  }
}

@media(max-width:860px) {
  .nav {
    padding: 1rem 1.5rem
  }

  .nav__links a:not(.nav__cta) {
    display: none
  }

  .nav__ham {
    display: flex
  }

  .hero {
    padding: 6rem 1.5rem 2rem
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3.2rem)
  }

  .hero__sub {
    font-size: .9rem;
    max-width: 100%
  }

  .mockup-zone {
    padding: 0 1rem;
    margin-bottom: 2rem
  }

  .section {
    padding: 5rem 1.5rem
  }

  .pricing-section {
    padding: 5rem 1.5rem
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .feat-row,
  .feat-row.rev {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr
  }

  .tgm-body {
    grid-template-columns: repeat(3, 1fr)
  }

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

  .how-step {
    border-right: 1px solid var(--border-dim);
    border-bottom: none;
    border-radius: 0
  }

  .how-step:first-child {
    border-radius: 12px 12px 0 0
  }

  .how-step:last-child {
    border-bottom: 1px solid var(--border-dim);
    border-radius: 0 0 12px 12px
  }

  .pricing-shell {
    padding: 1.5rem
  }

  .p-cards {
    display: none
  }

  .p-annots {
    display: none
  }

  .p-carousel {
    display: block
  }

  .fcta {
    padding: 6rem 1.5rem
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 1.5rem 1.5rem
  }

  .footer-cols {
    gap: 2.5rem;
    flex-wrap: wrap
  }

  .footer-brand-giant {
    padding: 1rem 1.5rem 0
  }

  .footer-brand-giant span {
    font-size: clamp(2.5rem, 12vw, 6rem)
  }

  .footer-social-bar {
    padding: 1.2rem 1.5rem;
    gap: .6rem
  }

  .footer-social-label {
    width: 100%;
    margin-bottom: .2rem;
    margin-right: 0
  }

  .footer-bottom {
    padding: 1.2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start
  }

  .testi-outer {
    display: none
  }

  .dm-sidebar {
    display: none
  }
}

@media(max-width:600px) {
  .hero__title {
    font-size: 1.9rem
  }

  .hero__btns .btn--outline {
    display: none
  }

  .tgm-body {
    grid-template-columns: repeat(2, 1fr)
  }

  .sec-h {
    font-size: 1.8rem
  }

  .footer-cols {
    flex-direction: column;
    gap: 2rem
  }
}

@media(max-width:400px) {
  .hero__title {
    font-size: 1.7rem
  }

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

/* ── TESTIMONIAL AVATAR IMAGE ──────────────────────── */
.tm-av-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0
}

/* ── WAITLIST MODAL ────────────────────────────────── */
.wl-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
  visibility: hidden
}

.wl-modal.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible
}

.wl-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, .9);
  backdrop-filter: blur(12px)
}

.wl-modal-content {
  position: relative;
  z-index: 1001;
  width: 100%;
  max-width: 440px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.8rem 2.2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
  transform: translateY(20px) scale(.95);
  transition: transform .5s var(--ease)
}

.wl-modal.open .wl-modal-content {
  transform: translateY(0) scale(1)
}

.wl-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color .2s
}

.wl-close:hover {
  color: var(--text)
}

.wl-header {
  margin-bottom: 2.2rem;
  text-align: center
}

.wl-header h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 800;
  margin: .6rem 0 .8rem;
  letter-spacing: -.02em
}

.wl-header p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6
}

.wl-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem
}

.wl-group {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.wl-group label {
  font-family: var(--display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted)
}

.wl-group input {
  background: #1A1A1A;
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: .85rem 1rem;
  color: #fff;
  font-family: var(--body);
  font-size: .9rem;
  transition: all .3s
}

.wl-group input:focus {
  outline: none;
  border-color: var(--purple);
  background: #222;
  box-shadow: 0 0 12px var(--purple-dim)
}

.wl-status {
  text-align: center;
  font-size: .8rem;
  margin-top: -.5rem;
  min-height: 1.2em
}

.wl-status.error {
  color: #EF4444
}

.wl-status.success {
  color: var(--green)
}

#wlSubmitBtn {
  width: 100%
}

@media (max-width: 480px) {
  .wl-modal-content {
    padding: 2.2rem 1.5rem;
    border-radius: 20px
  }
}