/* ============================================
   CliB Agency — Premium Redesign
   ============================================ */

:root {
  --bg: #0D0A19;
  --surface: #131313;
  --surface-elevated: #1a1a1a;
  --text: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);
  --border: rgba(89, 0, 255, 0.12);
  --border-hover: rgba(89, 0, 255, 0.25);
  --accent: #5900FF;
  --accent-soft: #7863FF;
  --accent-deep: #4600cc;
  --glow: rgba(89, 0, 255, 0.15);
  --glow-strong: rgba(89, 0, 255, 0.3);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-card: 0 1px 0 0 rgba(255,255,255,0.03) inset, 0 24px 64px -16px rgba(0,0,0,0.5);
  --shadow-elevated: 0 1px 0 0 rgba(255,255,255,0.04) inset, 0 32px 80px -12px rgba(0,0,0,0.6);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #08060F;
  overflow-x: hidden;
}

/* ---------- Top dark-purple backdrop that fades into #08060F ---------- */
.bg-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--bg-top-h, 1400px);
  background: #0D0A19;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 calc(100% - 360px), transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 calc(100% - 360px), transparent 100%);
}

::selection {
  background: rgba(89, 0, 255, 0.3);
  color: #fff;
}

img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: top 200ms;
}

.skip-link:focus {
  top: 0;
}

/* ---------- Global focus-visible ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ---------- Noise overlay ---------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.028;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ---------- Background canvas ---------- */
.background-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: var(--bg-top-h, 1400px);
  pointer-events: none;
  opacity: 0.7;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 38%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 38%, transparent 100%);
}

/* ---------- Page shell ---------- */
.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 48px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 12px 12px 20px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  background: rgba(8, 6, 15, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-mark img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 200ms, background 200ms;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.site-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 300ms;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(2.75px) rotate(45deg);
}
.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-2.75px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 200ms var(--ease-spring), box-shadow 300ms, background 200ms, opacity 200ms;
  white-space: nowrap;
}

.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0) scale(0.98); }

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

.button:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.button-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 50%, #7863FF 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(89, 0, 255, 0.3);
}

.button-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0s;
}

.button-primary:hover::after {
  transform: translateX(100%);
  transition: transform 600ms ease;
}

.button-primary:hover {
  box-shadow: 0 0 0 1px rgba(89, 0, 255, 0.5);
}

.button-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}

.button-ghost:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.04);
}

.button-lg {
  height: 52px;
  padding: 0 28px;
  font-size: 0.95rem;
}

.button-submit {
  width: 100%;
  height: 56px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 16px;
}

.header-cta {
  height: 40px;
  padding: 0 18px;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-left: auto;
}

.header-cta svg { width: 14px; height: 14px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 100px;
}

/* hero-glow removed — only hero-glow-beam remains */

.hero-glow-beam {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 160% 80% at 50% 0%, rgba(89, 0, 255, 0.22) 0%, rgba(89, 0, 255, 0.12) 20%, rgba(89, 0, 255, 0.06) 40%, rgba(89, 0, 255, 0.02) 60%, rgba(89, 0, 255, 0) 85%);
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-glow-beam.is-visible {
  opacity: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(89, 0, 255, 0.06);
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  animation: borderGlow 3s ease-in-out infinite;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7863FF;
  box-shadow: 0 0 8px rgba(120, 99, 255, 0.5);
  animation: pulse-dot-green 2.4s ease-in-out infinite;
}

@keyframes pulse-dot-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(120, 99, 255, 0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 16px rgba(120, 99, 255, 0.6), 0 0 32px rgba(120, 99, 255, 0.3); }
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-highlight {
  background:
    radial-gradient(circle at 30% 40%, #7863FF 0%, #7863FF 8%, transparent 40%),
    radial-gradient(circle at 70% 60%, #5900FF 0%, #5900FF 10%, transparent 45%),
    radial-gradient(circle at 50% 20%, #7863FF 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, #5900FF 0%, transparent 55%),
    radial-gradient(circle at 85% 30%, #7863FF 0%, transparent 50%),
    linear-gradient(160deg, #5900FF 0%, #5900FF 30%, #7863FF 50%, #5900FF 70%, #5900FF 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: meshFlow 8s ease-in-out infinite;
}

@keyframes meshFlow {
  0%   { background-position: 0% 0%, 100% 100%, 50% 0%, 0% 100%, 100% 0%, 0% 50%; }
  25%  { background-position: 40% 80%, 20% 30%, 80% 60%, 60% 10%, 30% 90%, 60% 20%; }
  50%  { background-position: 100% 50%, 0% 50%, 30% 100%, 100% 30%, 10% 50%, 100% 80%; }
  75%  { background-position: 60% 20%, 80% 80%, 10% 40%, 50% 90%, 70% 20%, 40% 60%; }
  100% { background-position: 0% 0%, 100% 100%, 50% 0%, 0% 100%, 100% 0%, 0% 50%; }
}


.hero-text {
  max-width: 560px;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

/* ============================================
   SHARED: Section header, chips
   ============================================ */
.section {
  padding-top: 120px;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.chip {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(89, 0, 255, 0.06);
  color: var(--accent-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-sub {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CARD GLASS (shared)
   ============================================ */
.card-glass {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(20, 16, 32, 0.8) 0%, rgba(12, 10, 22, 0.9) 100%);
  box-shadow: var(--shadow-card);
  transition: border-color 300ms, box-shadow 300ms, transform 400ms var(--ease-out);
  overflow: hidden;
}

.card-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

/* ============================================
   PAIN CARDS
   ============================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-grid .card {
  padding: 36px 28px 32px;
}

.card-icon-wrap {
  margin-bottom: 24px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(89, 0, 255, 0.06);
  color: var(--accent-soft);
}

/* --- Gradient top line for pain cards --- */
.card__top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-soft), transparent);
  opacity: 0;
  transition: opacity 400ms;
}

.card:hover .card__top-line {
  opacity: 1;
}

.pain-grid h3 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.pain-grid p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   SOLUTION — Carousel
   ============================================ */
.solution-section {
  padding-bottom: 100px;
}

/* --- Solution carousel --- */
.sol-carousel-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.sol-carousel {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
}

/* Each card = exactly 1/3 of container minus gaps */
.sol-carousel .sol-card {
  flex: 0 0 calc((100% - 48px) / 3);
}

/* Arrow buttons */
.sol-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20, 16, 32, 0.9), rgba(12, 10, 22, 0.95));
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.sol-arrow--left { left: -6px; }
.sol-arrow--right { right: -6px; }

.sol-arrow:hover {
  border-color: rgba(89,0,255,0.3);
  color: #fff;
  box-shadow: 0 0 20px rgba(89,0,255,0.15);
}

/* --- Card — matches pain-grid card-glass style --- */
.sol-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20, 16, 32, 0.8) 0%, rgba(12, 10, 22, 0.9) 100%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: border-color 300ms, box-shadow 300ms, transform 400ms var(--ease-spring);
}

.sol-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.05) 50%, transparent);
  pointer-events: none;
  z-index: 1;
}

.sol-card:hover {
  border-color: rgba(89, 0, 255, 0.25);
  transform: translateY(-4px);
}

.sol-card:hover::after {
  animation: shimmerSweep 700ms ease forwards;
}

/* Top gradient line on hover */
.sol-card-topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-soft), transparent);
  opacity: 0;
  transition: opacity 400ms;
}

.sol-card:hover .sol-card-topline { opacity: 1; }

/* --- Icon --- */
.sol-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(89, 0, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--accent-soft);
  margin-bottom: 24px;
}

/* --- Title & desc --- */
.sol-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 10px;
}

.sol-card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Old sol-vis styles removed */

/* ============================================
   PROCESS — Pinned scroll-driven storytelling
   ============================================ */

/* Tall wrapper — creates the scroll runway (5 steps × 100vh) */
.ps-wrapper {
  /* Break out of page-shell */
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  /* Shorter runway: less empty scrolling after last step */
  height: 420vh;
}

/* Sticky container — pins the viewport for the entire scroll runway */
.ps-pinned {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #131313;
}

/* Keep previous (completed) steps collapsed but visually "done" */
.ps-step.completed {
  opacity: 0.35;
}
.ps-step.completed .ps-step-desc {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.ps-step.completed .ps-progress-track {
  background: rgba(255,255,255,0.08);
}

/* The visible layout (two columns) */
.ps-viewport {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 48px;
  height: 100%;
  align-items: center;
  box-sizing: border-box;
}

/* --- Left column --- */
.ps-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ps-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.ps-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
}

.ps-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ps-step {
  padding: 16px 0;
  cursor: default;
  transition: opacity 0.4s ease;
  opacity: 0.25;
}

.ps-step.active {
  opacity: 1;
}

.ps-step-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ps-step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-soft);
  font-variant-numeric: tabular-nums;
  min-width: 20px;
}

.ps-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.3;
}

.ps-step-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 10px;
  padding-left: 34px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
}

.ps-step.active .ps-step-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
  margin-bottom: 6px;
}

/* --- Progress track --- */
.ps-progress-track {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
  overflow: hidden;
  margin-top: 14px;
}

.ps-step.active .ps-progress-track {
  background: rgba(255,255,255,0.1);
}

.ps-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  border-radius: 1px;
}

/* --- Right column: visuals --- */
.ps-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.ps-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.ps-visual.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ========== MOCKUP BASE ========== */
.pf-mockup {
  width: 100%;
  max-width: 620px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}

/* ========== STEP 1: Get in touch Form ========== */
.pf-mockup--form {
  background: linear-gradient(180deg, #131313, #0D0A19);
}

.pf-form-header {
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pf-form-body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pf-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pf-form-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pf-form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  min-height: 38px;
}

.pf-form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  min-height: 62px;
}

.pf-form-typed {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pf-form-link {
  color: var(--accent-soft);
}

.pf-form-caret {
  display: inline-block;
  width: 1.5px;
  height: 14px;
  background: var(--accent-soft);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: pfCaretBlink 1s step-end infinite;
}

.pf-form-btn {
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(89,0,255,0.3);
  margin-top: 4px;
}

@keyframes pfCaretBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ========== STEP 2: Concept Chat ========== */
.pf-mockup--concept-chat {
  background: linear-gradient(180deg, #131313, #0D0A19);
}

/* --- Concept sketch (inline in chat) --- */
.pf-concept-sketch {
  align-self: flex-start;
  max-width: 82%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(89,0,255,0.2);
  background: rgba(89,0,255,0.06);
}

.pf-sketch-inner {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 14px;
  background: linear-gradient(135deg, rgba(89,0,255,0.08), rgba(20,16,42,0.9));
}

.pf-sketch-face {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(89,0,255,0.3);
  flex-shrink: 0;
}

.pf-sketch-text-area {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pf-sketch-line {
  display: block;
  height: 7px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
}

.pf-skl-bold {
  width: 90px;
  background: rgba(89,0,255,0.25);
  height: 9px;
}

.pf-skl-sm {
  width: 60px;
}

.pf-sketch-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

.pf-sketch-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(89,0,255,0.2);
  border: 1px solid rgba(89,0,255,0.3);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ========== STEP 3: Deliver Chat ========== */
.pf-mockup--deliver-chat {
  background: linear-gradient(180deg, #131313, #0D0A19);
}

/* --- Delivered thumbnail (inline in chat) --- */
.pf-delivered-thumb {
  align-self: flex-start;
  max-width: 82%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(89,0,255,0.25);
  box-shadow: 0 8px 28px rgba(89,0,255,0.12);
}

.pf-delivered-inner {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 14px;
  background: linear-gradient(135deg, #0D0A19, #160047, #0D0A19);
}

.pf-delivered-face {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.pf-delivered-text-area {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pf-delivered-line {
  display: block;
  height: 7px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
}

.pf-dl-bold {
  width: 95px;
  background: rgba(255,255,255,0.22);
  height: 10px;
}

.pf-dl-sm {
  width: 65px;
}

.pf-delivered-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(89,0,255,0.3);
  border: 1px solid rgba(89,0,255,0.4);
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ========== STEP 4: Chat / Revision ========== */
.pf-mockup--chat {
  background: linear-gradient(180deg, #131313, #0D0A19);
  padding: 0;
}

.pf-chat-bg {
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: radial-gradient(ellipse at 50% 0%, rgba(89,0,255,0.06), transparent 70%);
}

.pf-chat-bubble {
  max-width: 82%;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text);
  animation: pfSlideUp 0.6s var(--ease-out) both;
}

.pf-chat-right {
  align-self: flex-end;
  background: rgba(89,0,255,0.15);
  border: 1px solid rgba(89,0,255,0.2);
  border-bottom-right-radius: 6px;
}

.pf-chat-left {
  align-self: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom-left-radius: 6px;
}

.pf-chat-mention {
  color: var(--accent-soft);
  font-weight: 600;
}

.pf-chat-done {
  background: rgba(120,99,255,0.1);
  border-color: rgba(120,99,255,0.2);
}

.pf-chat-typing {
  align-self: flex-start;
  display: flex;
  gap: 5px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  border-bottom-left-radius: 6px;
}

.pf-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: pfTyping 1.4s ease-in-out infinite;
}

.pf-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.pf-typing-dot:nth-child(3) { animation-delay: 0.4s; }

/* ========== STEP 5: Launch Checklist / Setup ========== */
.pf-mockup--setup {
  background: linear-gradient(180deg, #131313, #0D0A19);
}

.pf-setup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pf-setup-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.pf-setup-badge {
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(89,0,255,0.12);
  border: 1px solid rgba(89,0,255,0.2);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-soft);
}

.pf-setup-badge--live {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(120,99,255,0.1);
  border-color: rgba(120,99,255,0.25);
  color: #7863FF;
}

.pf-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7863FF;
  animation: pf-pulse 2s ease-in-out infinite;
}

@keyframes pf-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.pf-setup-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* A/B Variants */
.pf-ab-variants {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pf-ab-variant {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pf-ab-label-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pf-ab-tag {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: #fff;
}

.pf-ab-tag--a {
  background: rgba(89,0,255,0.3);
  border: 1px solid rgba(89,0,255,0.5);
}

.pf-ab-tag--b {
  background: rgba(120,99,255,0.25);
  border: 1px solid rgba(120,99,255,0.5);
}

.pf-ab-variant-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pf-ab-vs {
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 18px;
}

.pf-setup-thumb-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  background: linear-gradient(135deg, #0D0A19, #160047);
  border: 1px solid rgba(89,0,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pf-sti-b {
  background: linear-gradient(135deg, #0D0A19, #131313);
  border-color: rgba(120,99,255,0.2);
}

.pf-ab-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pf-ab-ctr {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.pf-ab-ctr--winner {
  color: #7863FF;
}

.pf-ab-views {
  font-size: 0.6rem;
  color: var(--text-muted);
}

/* Traffic split bar */
.pf-ab-split {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pf-ab-split-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pf-ab-split-bar {
  display: flex;
  height: 24px;
  border-radius: 8px;
  overflow: hidden;
  gap: 2px;
}

.pf-ab-split-fill {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
}

.pf-ab-split-fill--a {
  background: rgba(89,0,255,0.35);
  border-radius: 8px 0 0 8px;
}

.pf-ab-split-fill--b {
  background: rgba(120,99,255,0.3);
  border-radius: 0 8px 8px 0;
}

/* Winner indicator */
.pf-ab-winner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(120,99,255,0.06);
  border: 1px solid rgba(120,99,255,0.15);
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.pf-ab-winner strong {
  color: #7863FF;
  font-weight: 700;
}

.pf-setup-btn {
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(89,0,255,0.3);
}

/* ========== STEP 6: Results / A/B Test ========== */
.pf-mockup--yt {
  background: linear-gradient(180deg, #131313, #0D0A19);
  border: 1px solid rgba(89,0,255,0.1);
}

.pf-yt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pf-yt-logo { flex-shrink: 0; line-height: 0; }

.pf-yt-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* --- 3 concepts row --- */
.pf-yt-concepts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: 16px;
}

.pf-yt-concept {
  position: relative;
  opacity: 0.55;
  transition: opacity 400ms;
}

.pf-yt-winner {
  opacity: 1;
}

/* Winner badge */
.pf-yt-winner-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 3px 12px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(89,0,255,0.45);
  white-space: nowrap;
}

/* Winner glow ring */
.pf-yt-winner .pf-yt-thumb-img {
  box-shadow: 0 0 0 2px rgba(89,0,255,0.6), 0 8px 24px rgba(89,0,255,0.2);
}

/* --- Thumbnail placeholder --- */
.pf-yt-thumb {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.pf-yt-thumb-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pf-yt-img-a {
  background: linear-gradient(135deg, #0D0A19, #160047, #0D0A19);
}

.pf-yt-img-b {
  background: linear-gradient(135deg, #0D0A19, #131313, #0D0A19);
}

.pf-yt-img-c {
  background: linear-gradient(135deg, #0D0A19, #131313, #0D0A19);
}

.pf-yt-face {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.pf-yt-text-overlay {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pf-yt-overlay-line {
  display: block;
  height: 5px;
  width: 50px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
}

.pf-yt-ol-sm {
  width: 32px;
  background: rgba(255,255,255,0.15);
}

.pf-yt-duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  padding: 1px 5px;
  border-radius: 3px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 500;
}

/* --- Meta info --- */
.pf-yt-meta {
  padding: 8px 2px 0;
}

.pf-yt-concept-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
  white-space: nowrap;
}

.pf-yt-stats-row {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.pf-yt-ctr {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--accent-soft);
}

.pf-yt-ctr-dim {
  color: var(--text-muted);
}

.pf-yt-views {
  font-size: 0.58rem;
  color: var(--text-muted);
}

/* Winner concept A highlighted CTR */
.pf-yt-winner .pf-yt-ctr {
  color: #fff;
}

/* --- Performance comparison bars --- */
.pf-yt-perf {
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pf-yt-perf-row {
  display: grid;
  grid-template-columns: 70px 1fr 38px;
  align-items: center;
  gap: 10px;
}

.pf-yt-perf-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.pf-yt-perf-track {
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}

.pf-yt-perf-fill {
  height: 100%;
  border-radius: 4px;
  width: 0%;
}

.pf-ypf-a {
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  animation: pfBarFill 1.5s 0.3s ease-out forwards;
  --pf-fill: 100%;
}

.pf-ypf-b {
  background: linear-gradient(90deg, rgba(89,0,255,0.4), rgba(89,0,255,0.55));
  animation: pfBarFill 1.5s 0.6s ease-out forwards;
  --pf-fill: 64%;
}

.pf-ypf-c {
  background: linear-gradient(90deg, rgba(89,0,255,0.2), rgba(89,0,255,0.3));
  animation: pfBarFill 1.5s 0.9s ease-out forwards;
  --pf-fill: 46%;
}

.pf-yt-perf-val {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

/* ========== YouTube-style A/B Test & Results ========== */
.pf-mockup--yt-ab,
.pf-mockup--yt-result {
  background: linear-gradient(180deg, #131313, #0D0A19);
}

.yt-ab-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.yt-ab-chip {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.yt-ab-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-soft);
}

.yt-ab-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pf-pulse 2s ease-in-out infinite;
}

.yt-ab-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.yt-ab-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

/* Individual row — thumb + info */
.yt-ab-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s;
}

.yt-ab-row--winner {
  border-color: rgba(120,99,255,0.25);
  background: rgba(120,99,255,0.04);
}

.yt-ab-row--loser {
  opacity: 0.5;
}

.yt-ab-thumb {
  width: 115px;
  min-width: 115px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}

.yt-ab-row-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.yt-ab-row-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yt-ab-row-title {
  font-size: 0.72rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.yt-ab-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.yt-ab-bar {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.yt-ab-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: rgba(89,0,255,0.35);
  transition: width 1s ease;
}

.yt-ab-bar-fill--lead {
  background: linear-gradient(90deg, var(--accent), #7863FF);
}

.yt-ab-bar-fill--winner {
  background: linear-gradient(90deg, #7863FF, #7863FF);
}

.yt-ab-bar-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  min-width: 34px;
  text-align: right;
}

.yt-ab-bar-val--lead {
  color: var(--accent-soft);
}

.yt-ab-bar-val--winner {
  color: #7863FF;
}

.yt-ab-winner-tag {
  display: inline-block;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(120,99,255,0.15);
  color: #7863FF;
  font-size: 0.65rem;
  font-weight: 700;
}

.yt-ab-footer {
  padding-top: 2px;
}

.yt-ab-footer-note {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Result actions */
.yt-ab-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 4px;
}

.yt-ab-btn-secondary {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
}

.yt-ab-btn-primary {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  box-shadow: 0 4px 12px rgba(89,0,255,0.25);
}

/* ========== Process Flow Animations ========== */
@keyframes pfFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pfPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes pfSelectPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes pfSlideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pfTyping {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

@keyframes pfChartDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes pfFadeIn {
  to { opacity: 1; }
}

@keyframes pfDotAppear {
  to { opacity: 1; }
}

@keyframes pfBarFill {
  to { width: var(--pf-fill, 50%); }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-chip {
  height: 40px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms;
}

.filter-chip:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

.filter-chip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.filter-chip.is-active {
  border-color: var(--accent);
  color: #fff;
  background: linear-gradient(135deg, rgba(89, 0, 255, 0.18), rgba(89, 0, 255, 0.12));
  box-shadow: 0 4px 20px rgba(89, 0, 255, 0.15);
}

.thumb-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.thumb-card {
  display: none;
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 16, 32, 0.6), rgba(12, 10, 22, 0.8));
  box-shadow: var(--shadow-card);
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: all 350ms var(--ease-out);
}

.thumb-card__top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-soft), transparent);
  opacity: 0;
  transition: opacity 400ms;
  z-index: 2;
}

.thumb-card:hover .thumb-card__top-line {
  opacity: 1;
}

.thumb-card.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.thumb-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-elevated);
}

.thumb-visual {
  position: relative;
  margin: 10px 10px 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) saturate(1.05);
  transition: transform 500ms var(--ease-out);
}

.thumb-card:hover .thumb-image {
  transform: scale(1.04);
}

.thumb-meta {
  padding: 14px 16px 18px;
}

.thumb-meta strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-marquee {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.testimonial-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 16px;
  will-change: transform;
}

.testimonial-marquee-card {
  flex: 0 0 340px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 16, 32, 0.7), rgba(12, 10, 22, 0.85));
  box-shadow: var(--shadow-card);
  transition: transform 300ms var(--ease-out), border-color 300ms;
}

.testimonial-marquee-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(89, 0, 255, 0.25);
}

.testimonial-meta strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.testimonial-meta span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.testimonial-marquee-card blockquote {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: normal;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(20, 16, 32, 0.6), rgba(12, 10, 22, 0.8));
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 28px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: color 200ms;
}

.faq-question:hover { color: var(--accent-soft); }

.faq-question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: 4px;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(89, 0, 255, 0.04);
  transition: transform 300ms var(--ease-out), background 200ms;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--accent-soft);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 300ms var(--ease-out);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item.is-open .faq-icon {
  background: rgba(89, 0, 255, 0.1);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 350ms var(--ease-out);
}

.faq-answer > p {
  overflow: hidden;
  padding: 0 28px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 24px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-shell {
  max-width: 680px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(20, 16, 32, 0.7), rgba(12, 10, 22, 0.85));
  box-shadow: var(--shadow-elevated);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field > span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms, background 200ms;
  appearance: none;
}

.field select {
  color-scheme: dark;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%238a7fa3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field select option {
  background: #0D0A19;
  color: #FFFFFF;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: rgba(89, 0, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(89, 0, 255, 0.08);
}

.field-required {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-style: normal;
}

.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.08);
}

.field input:valid:not(:placeholder-shown),
.field textarea:valid:not(:placeholder-shown) {
  border-color: rgba(120, 99, 255, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  margin-top: 120px;
  padding: 48px 36px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(20, 16, 32, 0.5), rgba(12, 10, 22, 0.7));
  box-shadow: var(--shadow-card);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
}

.footer-intro {
  display: grid;
  align-content: start;
  gap: 16px;
  max-width: 380px;
}

.footer-brand { width: fit-content; }

.footer-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  transition: all 200ms;
}

.footer-socials a:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(89, 0, 255, 0.06);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials .social-dot {
  fill: currentColor;
  stroke: none;
}

/* X/Twitter icon uses a filled path, not stroked */
.footer-socials a[aria-label="X"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-links h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 200ms;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(8px);
  transition:
    opacity 800ms var(--ease-out),
    transform 800ms var(--ease-out),
    filter 800ms var(--ease-out);
}

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

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--glow-strong); }
  50% { opacity: 0.5; box-shadow: 0 0 16px var(--glow-strong), 0 0 32px var(--glow); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}


@keyframes shimmerSweep {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(300%) skewX(-15deg); }
}

@keyframes badgeShimmer {
  0% { left: -100%; }
  50%, 100% { left: 200%; }
}

@keyframes glowPulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(89, 0, 255, 0.4), 0 0 0 4px rgba(89, 0, 255, 0.1); }
  50% { box-shadow: 0 0 0 6px rgba(89, 0, 255, 0.15), 0 0 0 12px rgba(89, 0, 255, 0.04); }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(89, 0, 255, 0.1); }
  50% { border-color: rgba(89, 0, 255, 0.25); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}




/* ============================================
   CARD SHIMMER ON HOVER (via ::after)
   ============================================ */
.card-glass {
  transition: border-color 300ms, box-shadow 300ms, transform 400ms var(--ease-spring);
}

.card-glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.05) 50%, transparent);
  pointer-events: none;
  z-index: 1;
}

.card-glass:hover::after {
  animation: shimmerSweep 700ms ease forwards;
}

.card-glass:hover {
  border-color: rgba(89, 0, 255, 0.25);
  transform: translateY(-4px);
}


/* ============================================
   HEADER ANIMATION
   ============================================ */
.site-header {
  animation: fadeInDown 600ms var(--ease-out) both;
}


/* ============================================
   CARD NUMBERS GLOW
   ============================================ */
.card-number {
  background:
    radial-gradient(circle at 30% 40%, #7863FF 0%, #7863FF 8%, transparent 40%),
    radial-gradient(circle at 70% 60%, #5900FF 0%, #5900FF 10%, transparent 45%),
    radial-gradient(circle at 50% 20%, #7863FF 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, #5900FF 0%, transparent 55%),
    radial-gradient(circle at 85% 30%, #7863FF 0%, transparent 50%),
    linear-gradient(160deg, #5900FF 0%, #5900FF 30%, #7863FF 50%, #5900FF 70%, #5900FF 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: meshFlow 8s ease-in-out infinite;
}

/* ============================================
   SECTION CHIP ANIMATION
   ============================================ */
.chip {
  animation: glowPulseRing 3s ease-in-out infinite;
}

/* ============================================
   STAGGERED REVEAL DELAYS
   ============================================ */
.pain-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.pain-grid .reveal:nth-child(2) { transition-delay: 100ms; }
.pain-grid .reveal:nth-child(3) { transition-delay: 200ms; }
.pain-grid .reveal:nth-child(4) { transition-delay: 300ms; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sol-card {
    min-width: calc((100% - 24px) / 2);
  }

  .thumb-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .testimonial-marquee-card {
    flex-basis: 300px;
  }

  .ps-viewport {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .ps-wrapper {
    height: auto;
  }

  .ps-pinned {
    position: relative;
    height: auto;
    padding: 80px 0;
  }

  .ps-right {
    display: none;
  }

  .ps-step {
    opacity: 1;
  }

  .ps-step-desc {
    max-height: none;
    opacity: 1;
  }
}

@media (max-width: 760px) {
  .section { padding-top: 80px; }

  .hero { padding: 48px 16px 64px; }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 12px 16px;
  }

  .menu-toggle { display: inline-block; }
  .header-cta { display: none; }

  .site-nav {
    position: static;
    left: auto;
    transform: none;
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 4px;
    padding-top: 8px;
  }

  .site-nav a {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .site-header.is-open .site-nav { display: flex; }

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

  .sol-card {
    min-width: 85%;
  }

  .sol-arrow {
    width: 36px;
    height: 36px;
  }

  .thumb-gallery {
    grid-template-columns: 1fr;
  }

  .section-header {
    text-align: left;
    padding: 0 4px;
  }

  .section-header h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .section-sub {
    margin-left: 0;
    margin-right: 0;
    font-size: 0.95rem;
  }

  .hero {
    text-align: left;
    align-items: flex-start;
  }

  .hero-actions { justify-content: flex-start; }

  .ps-viewport {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 16px;
  }

  .ps-header h2 {
    font-size: 1.5rem;
  }

  .pf-mockup {
    max-width: 100%;
  }

  .pf-yt-concepts {
    gap: 8px;
  }

  .pf-yt-concept-label {
    font-size: 0.6rem;
  }

  .pf-yt-perf-row {
    grid-template-columns: 60px 1fr 32px;
  }

  .form-row { grid-template-columns: 1fr; }

  .contact-shell { padding: 24px 20px; }

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

  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .faq-answer > p {
    padding: 0 20px;
    font-size: 0.9rem;
  }

  .chip {
    font-size: 0.7rem;
  }

  .button-lg {
    height: 48px;
    padding: 0 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: calc(100% - 16px);
  }

  .section-header h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .testimonial-marquee-card {
    flex-basis: 270px;
    padding: 18px;
  }

  .testimonial-marquee-card blockquote {
    font-size: 0.88rem;
  }

  .site-footer {
    padding: 32px 20px 20px;
  }

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

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .contact-shell {
    padding: 20px 16px;
  }

  .yt-ab-thumb {
    width: 80px;
    min-width: 80px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2rem;
  }

  .brand-text {
    font-size: 0.9rem;
  }
}


/* ============================================
   HERO FLOATING SHAPES
   ============================================ */
.hero {
  overflow: visible;
}

.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floater {
  position: absolute;
  opacity: 0.6;
  will-change: transform;
}

.floater-1 {
  top: 8%;
  left: 6%;
  animation: floatSpin 18s ease-in-out infinite;
}

.floater-2 {
  top: 15%;
  right: 8%;
  animation: floatBounce 14s ease-in-out infinite;
}

.floater-3 {
  bottom: 18%;
  left: 10%;
  animation: floatSpin 22s ease-in-out infinite reverse;
}

.floater-4 {
  top: 40%;
  right: 5%;
  animation: floatDrift 16s ease-in-out infinite;
}

.floater-5 {
  bottom: 10%;
  right: 15%;
  animation: floatBounce 20s ease-in-out infinite 2s;
}

.floater-6 {
  top: 5%;
  left: 40%;
  animation: floatDrift 24s ease-in-out infinite 1s;
}

@keyframes floatSpin {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(8deg); }
  50% { transform: translateY(-8px) rotate(-4deg); }
  75% { transform: translateY(-24px) rotate(6deg); }
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-30px) scale(1.05); }
  66% { transform: translateY(-10px) scale(0.97); }
}

@keyframes floatDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -20px) rotate(10deg); }
  50% { transform: translate(-10px, -30px) rotate(-5deg); }
  75% { transform: translate(10px, -15px) rotate(8deg); }
}

/* ============================================
   HERO BADGE (enhanced)
   ============================================ */

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 32px;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.stat-value-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number,
.stat-suffix {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text-primary) 0%, #7863FF 55%, #5900FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-suffix {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* Number glow-in animation when reveal fires */
.stats-strip.is-visible .stat-number,
.stats-strip.is-visible .stat-suffix {
  animation: statGlowIn 0.8s var(--ease-out) both;
}

.stats-strip.is-visible .stat-item:nth-child(1) .stat-number,
.stats-strip.is-visible .stat-item:nth-child(1) .stat-suffix { animation-delay: 0ms; }
.stats-strip.is-visible .stat-item:nth-child(3) .stat-number,
.stats-strip.is-visible .stat-item:nth-child(3) .stat-suffix { animation-delay: 100ms; }
.stats-strip.is-visible .stat-item:nth-child(5) .stat-number,
.stats-strip.is-visible .stat-item:nth-child(5) .stat-suffix { animation-delay: 200ms; }

@keyframes statGlowIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(6px);
    text-shadow: 0 0 0px rgba(89, 0, 255, 0);
  }
  60% {
    text-shadow: 0 0 40px rgba(89, 0, 255, 0.5);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    text-shadow: 0 0 0px rgba(89, 0, 255, 0);
  }
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, rgba(89, 0, 255, 0.35), transparent);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ============================================
   SECTION ORBS (decorative gradient blobs)
   ============================================ */
.section-orb {
  position: relative;
  width: 100%;
  height: 0;
  pointer-events: none;
  overflow: visible;
}

.section-orb::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbPulse 8s ease-in-out infinite;
}

.orb-1::before {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(89, 0, 255, 0.12), transparent 70%);
}

.orb-2::before {
  width: 350px;
  height: 350px;
  top: -175px;
  right: -50px;
  left: auto;
  background: radial-gradient(circle, rgba(89, 0, 255, 0.1), transparent 70%);
  animation-delay: -2s;
}

.orb-3::before {
  width: 500px;
  height: 500px;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(89, 0, 255, 0.08), transparent 70%);
  animation: orbPulseCenter 8s ease-in-out infinite;
  animation-delay: -4s;
}

.orb-4::before {
  width: 400px;
  height: 400px;
  top: -200px;
  right: 0;
  left: auto;
  background: radial-gradient(circle, rgba(89, 0, 255, 0.1), transparent 70%);
  animation-delay: -6s;
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}

@keyframes orbPulseCenter {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateX(-50%) scale(1.15); }
}

/* (old concept card styles removed) */


/* ============================================
   PAIN CARD ICON HOVER
   ============================================ */
.card-icon {
  transition: transform 300ms var(--ease-spring), background 300ms, box-shadow 300ms;
}

.card-glass:hover .card-icon {
  transform: scale(1.1) translateY(-2px);
  background: rgba(89, 0, 255, 0.12);
  box-shadow: 0 0 20px rgba(89, 0, 255, 0.2);
}

/* badgeShimmer is now in .sol-badge styles */

/* ============================================
   PROCESS STEP HOVER
   ============================================ */
.process-step:hover .process-marker {
  border-color: rgba(89, 0, 255, 0.3);
  box-shadow: 0 0 20px rgba(89, 0, 255, 0.15);
}

.process-step:hover .process-card {
  border-color: var(--border-hover);
}

/* ============================================
   GALLERY CARD OVERLAY
   ============================================ */
.thumb-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 6, 14, 0.4) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}

.thumb-card:hover .thumb-visual::after {
  opacity: 1;
}

/* ============================================
   FAQ ENHANCED
   ============================================ */

.faq-item:hover .faq-icon {
  background: rgba(89, 0, 255, 0.08);
  border-color: rgba(89, 0, 255, 0.2);
}

/* ============================================
   CTA SECTION GLOW
   ============================================ */
.cta-section .section-header h2 {
  color: var(--text-primary);
}

/* ============================================
   CONTACT FORM FIELD ANIMATION
   ============================================ */
.field {
  position: relative;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: rgba(89, 0, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(89, 0, 255, 0.08), 0 0 20px rgba(89, 0, 255, 0.05);
}

/* ============================================
   FOOTER ENHANCED
   ============================================ */

/* ============================================
   RESPONSIVE - STATS
   ============================================ */
@media (max-width: 760px) {
  .stats-strip {
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 20px;
    justify-content: center;
  }

  .stat-item {
    flex: 0 0 calc(33.33% - 14px);
    min-width: 120px;
  }

  .stat-divider {
    display: none;
  }

  .hero-floaters {
    opacity: 0.4;
  }

  .floater-4,
  .floater-5,
  .floater-6 {
    display: none;
  }
}

@media (max-width: 480px) {
  .stat-item {
    flex: 0 0 100%;
  }

  .hero-badge {
    font-size: 0.72rem;
  }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .floater,
  .section-orb::before,
  .hero-badge-dot,
  .chip,
  .card__top-line,
  .sol-vis-concept-img::after,
  .hero-highlight,
  .pf-typing-dot,
  .pf-yt-perf-fill,
  .pf-form-caret,
  .hero-glow,
  .hero-glow-beam {
    animation: none !important;
  }

  .intro-overlay { display: none !important; }
}

/* ============================================
   Intro Splash
   ============================================ */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  background: rgba(8, 6, 14, 0.82);
  transition: opacity 0.5s var(--ease-out), backdrop-filter 0.5s var(--ease-out), -webkit-backdrop-filter 0.5s var(--ease-out);
}

/* Subtle ambient glow behind content */
.intro-overlay::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(89, 0, 255, 0.06) 0%, rgba(89, 0, 255, 0.02) 40%, transparent 70%);
  pointer-events: none;
  animation: introAmbient 2s ease-in-out infinite alternate;
}

@keyframes introAmbient {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.intro-overlay.is-leaving {
  opacity: 0;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.intro-logo {
  width: 110px;
  height: 110px;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  animation: introIn 0.45s var(--ease-out) 0.05s forwards;
  filter: drop-shadow(0 0 14px rgba(89, 0, 255, 0.08));
}

.intro-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.intro-name {
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  opacity: 0;
  transform: translateY(10px);
  animation: introIn 0.35s var(--ease-out) 0.2s forwards;
}

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

/* While intro is active, prevent site reveal animations from firing */
body.intro-active {
  overflow: hidden;
}

body.intro-active .reveal {
  transition: none !important;
}

/* After intro leaves, re-enable reveals with a stagger kick */
body.intro-done .reveal {
  transition:
    opacity 800ms var(--ease-out),
    transform 800ms var(--ease-out),
    filter 800ms var(--ease-out);
}

/* ============================================
   Channels (trusted-by) marquee
   ============================================ */
.channels-section {
  padding: 0 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.channels-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.channels-row {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.channels-track {
  display: flex;
  width: max-content;
  gap: 14px;
  will-change: transform;
}

.channel-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(89, 0, 255, 0.04);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s;
}

.channel-card:hover {
  border-color: var(--border-hover);
  background: rgba(89, 0, 255, 0.08);
}

.channel-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.channel-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.channel-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.channel-subs {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ============================================
   PREMIUM REDESIGN LAYER — overrides on top
   Goal: more premium feel, shinier CTAs,
   richer hover states, subtle highlights.
   Colors & typography intentionally preserved.
   ============================================ */

@property --cta-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --cta-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --cta-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}
@property --cta-shine {
  syntax: "<color>";
  initial-value: #ffffff;
  inherits: false;
}

@keyframes ctaAngle {
  to { --cta-angle: 360deg; }
}
@keyframes ctaShimmer {
  to { rotate: 360deg; }
}
@keyframes ctaBreathe {
  from, to { scale: 1; }
  50%      { scale: 1.18; }
}

/* ---------- Primary CTA — shiny conic border ---------- */
.button-primary {
  --cta-bg:        #0b0816;
  --cta-bg-subtle: #1a1430;
  --cta-highlight: #7863FF;
  --cta-highlight-subtle: #a799ff;

  isolation: isolate;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--cta-bg), var(--cta-bg)) padding-box,
    conic-gradient(
      from calc(var(--cta-angle) - var(--cta-angle-offset)),
      transparent,
      var(--cta-highlight) var(--cta-percent),
      var(--cta-shine) calc(var(--cta-percent) * 2),
      var(--cta-highlight) calc(var(--cta-percent) * 3),
      transparent calc(var(--cta-percent) * 4)
    ) border-box;
  box-shadow:
    inset 0 0 0 1px var(--cta-bg-subtle),
    0 10px 30px -12px rgba(89, 0, 255, 0.55),
    0 0 0 0 rgba(89, 0, 255, 0.0);
  color: #fff;
  transition:
    --cta-angle-offset 800ms cubic-bezier(.25,1,.5,1),
    --cta-percent      800ms cubic-bezier(.25,1,.5,1),
    --cta-shine        800ms cubic-bezier(.25,1,.5,1),
    box-shadow         450ms ease,
    transform          200ms var(--ease-spring);
  animation: ctaAngle 3s linear infinite;
}

/* Kill the old diagonal sweep that lived on ::after */
.button-primary::after {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(-50deg, transparent 35%, rgba(120, 99, 255, 0.35) 50%, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at bottom, transparent 42%, black);
          mask-image: radial-gradient(circle at bottom, transparent 42%, black);
  opacity: 0.55;
  transform: none;
  transition: opacity 500ms ease;
  animation: ctaShimmer 7.5s linear infinite;
  z-index: 0;
}

/* Dotted noise ring inside */
.button-primary::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 2px 2px, rgba(255,255,255,0.45) 0.6px, transparent 1.2px) padding-box;
  background-size: 6px 6px;
  -webkit-mask-image: conic-gradient(from calc(var(--cta-angle) + 45deg), black, transparent 12% 88%, black);
          mask-image: conic-gradient(from calc(var(--cta-angle) + 45deg), black, transparent 12% 88%, black);
  opacity: 0.35;
  z-index: 0;
}

.button-primary > span,
.button-primary > svg {
  position: relative;
  z-index: 1;
}

.button-primary:hover,
.button-primary:focus-visible {
  --cta-percent: 22%;
  --cta-angle-offset: 95deg;
  --cta-shine: var(--cta-highlight-subtle);
  box-shadow:
    inset 0 0 0 1px var(--cta-bg-subtle),
    0 18px 46px -10px rgba(89, 0, 255, 0.75),
    0 0 0 4px rgba(120, 99, 255, 0.08);
}

.button-primary:hover::after {
  opacity: 0.9;
  transform: none;
}

.button-primary:active {
  translate: 0 1px;
}

/* ---------- Ghost CTA — premium glass ---------- */
.button-ghost {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 30px -16px rgba(0,0,0,0.6);
  transition:
    border-color 300ms,
    background 300ms,
    box-shadow 300ms,
    transform 200ms var(--ease-spring);
}

.button-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(130deg, rgba(120,99,255,0.0) 30%, rgba(120,99,255,0.55) 50%, rgba(120,99,255,0.0) 70%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}

.button-ghost:hover {
  border-color: rgba(120,99,255,0.35);
  background: linear-gradient(180deg, rgba(120,99,255,0.08), rgba(120,99,255,0.02));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 14px 40px -16px rgba(89,0,255,0.45);
}

.button-ghost:hover::before { opacity: 1; }

/* ---------- Header CTA — tighter shiny variant ---------- */
.header-cta.button-primary {
  box-shadow:
    inset 0 0 0 1px var(--cta-bg-subtle),
    0 6px 20px -10px rgba(89, 0, 255, 0.5);
}

/* ---------- Submit button keeps shiny but rounded rect ---------- */
.button-submit.button-primary {
  border-radius: 18px;
}

/* ---------- Chip — subtle shine + inner glow ---------- */
.chip {
  position: relative;
  background:
    linear-gradient(180deg, rgba(120,99,255,0.12), rgba(89,0,255,0.04));
  border-color: rgba(120,99,255,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 24px -8px rgba(120,99,255,0.35);
}

/* ---------- Hero badge — glassier ---------- */
.hero-badge {
  background:
    linear-gradient(180deg, rgba(120,99,255,0.12), rgba(89,0,255,0.04));
  border-color: rgba(120,99,255,0.25);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 28px -14px rgba(120,99,255,0.55);
}

/* ---------- Glass card — richer surface + corner sparkles ---------- */
.card-glass,
.sol-card {
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(120,99,255,0.10) 0%, rgba(120,99,255,0) 45%),
    linear-gradient(180deg, rgba(22, 18, 36, 0.85) 0%, rgba(12, 10, 22, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.015),
    0 30px 70px -24px rgba(0,0,0,0.7);
}

.card-glass:hover,
.sol-card:hover {
  border-color: rgba(120, 99, 255, 0.35);
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 40px 90px -28px rgba(89, 0, 255, 0.4),
    0 0 60px -20px rgba(120, 99, 255, 0.45);
}

/* ---------- Card icon — subtle inner glow ---------- */
.card-icon,
.sol-card-icon {
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(120,99,255,0.22), rgba(89,0,255,0.04) 70%);
  border-color: rgba(120,99,255,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 12px 28px -16px rgba(89,0,255,0.55);
}

/* ---------- Filter chips — shinier active state ---------- */
.filter-chip.is-active {
  background:
    linear-gradient(180deg, rgba(120,99,255,0.22), rgba(89,0,255,0.08));
  border-color: rgba(120,99,255,0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 10px 30px -14px rgba(120,99,255,0.55);
}

/* ---------- FAQ items — premium ---------- */
.faq-item {
  background:
    linear-gradient(180deg, rgba(22, 18, 36, 0.75) 0%, rgba(12, 10, 22, 0.85) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 20px 50px -30px rgba(0,0,0,0.6);
  transition: border-color 300ms, box-shadow 300ms;
}

.faq-item:hover {
  border-color: rgba(120,99,255,0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 24px 60px -28px rgba(89,0,255,0.35);
}

/* ---------- Channel pill — glassier ---------- */
.channel-card {
  background:
    linear-gradient(180deg, rgba(120,99,255,0.08), rgba(89,0,255,0.02));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 8px 22px -16px rgba(0,0,0,0.6);
}

/* ---------- Stats strip — small premium lift ---------- */
.stat-item {
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  inset: auto 0 -14px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120,99,255,0.4), transparent);
  opacity: 0.6;
}

/* ---------- Hero highlight — add soft underglow ---------- */
.hero-highlight {
  filter: drop-shadow(0 6px 24px rgba(120, 99, 255, 0.35));
}

/* ---------- Section header h2 — refined tracking ---------- */
.section-header h2,
.hero h1 {
  letter-spacing: -0.045em;
}

/* ---------- Reduced motion respect ---------- */
@media (prefers-reduced-motion: reduce) {
  .button-primary,
  .button-primary::after,
  .button-primary::before {
    animation: none !important;
  }
}

/* ============================================
   REVISION 2 — final premium polish
   • No glow/aura behind text or buttons
   • Buttons: purple interior + shiny border only
   • Cards: brighter surface, no lift, no aura
   • Hero highlight: bright solid brand purple
   ============================================ */

/* ---------- Hero highlight: bright brand purple, no glow ---------- */
.hero-highlight,
.hero-highlight * {
  background: none !important;
  -webkit-background-clip: initial !important;
          background-clip: initial !important;
  color: #7863FF !important;
  filter: none !important;
  animation: none !important;
  text-shadow: none !important;
}

/* ---------- Primary button: purple interior, shiny animated border ---------- */
.button-primary {
  --cta-bg:        #2a1566;  /* deep brand purple interior */
  --cta-bg-subtle: rgba(255,255,255,0.08);
  --cta-highlight: #b9acff;
  --cta-highlight-subtle: #ffffff;

  background:
    linear-gradient(180deg, #3a1d8a 0%, #23106a 100%) padding-box,
    conic-gradient(
      from calc(var(--cta-angle) - var(--cta-angle-offset)),
      transparent,
      var(--cta-highlight) var(--cta-percent),
      var(--cta-shine) calc(var(--cta-percent) * 2),
      var(--cta-highlight) calc(var(--cta-percent) * 3),
      transparent calc(var(--cta-percent) * 4)
    ) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  color: #ffffff;
}

.button-primary::after {
  /* kill inner shimmer — keep button clean */
  display: none !important;
}

.button-primary::before {
  /* kill dotted ring */
  display: none !important;
}

.button-primary:hover,
.button-primary:focus-visible {
  --cta-percent: 22%;
  --cta-angle-offset: 95deg;
  --cta-shine: #ffffff;
  background:
    linear-gradient(180deg, #4521a3 0%, #2a1480 100%) padding-box,
    conic-gradient(
      from calc(var(--cta-angle) - var(--cta-angle-offset)),
      transparent,
      var(--cta-highlight) var(--cta-percent),
      var(--cta-shine) calc(var(--cta-percent) * 2),
      var(--cta-highlight) calc(var(--cta-percent) * 3),
      transparent calc(var(--cta-percent) * 4)
    ) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* ---------- Ghost button: simple clean glass, no aura ---------- */
.button-ghost {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.button-ghost::before { display: none !important; }

.button-ghost:hover {
  background: rgba(120,99,255,0.08);
  border-color: rgba(120,99,255,0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ---------- Header CTA: same shiny CTA, tighter shadow ---------- */
.header-cta.button-primary {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* ---------- Cards: brighter, distinct surface — no lift, no aura ---------- */
.card-glass,
.sol-card {
  background:
    linear-gradient(180deg, rgba(36, 28, 64, 0.85) 0%, rgba(20, 16, 38, 0.9) 100%);
  border: 1px solid rgba(120, 99, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.015);
  transition: border-color 300ms ease, background 300ms ease !important;
}

.card-glass:hover,
.sol-card:hover {
  transform: none !important;
  border-color: rgba(120, 99, 255, 0.42) !important;
  background:
    linear-gradient(180deg, rgba(44, 34, 78, 0.9) 0%, rgba(24, 18, 46, 0.95) 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(120,99,255,0.08) !important;
}

/* ---------- FAQ & channel pill: same brighter surface, no aura ---------- */
.faq-item {
  background:
    linear-gradient(180deg, rgba(36, 28, 64, 0.8) 0%, rgba(20, 16, 38, 0.85) 100%);
  border: 1px solid rgba(120, 99, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.faq-item:hover {
  border-color: rgba(120, 99, 255, 0.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

/* ---------- Remove any leftover drop-shadows / text glows ---------- */
.hero h1,
.section-header h2 {
  text-shadow: none !important;
  filter: none !important;
}

/* ============================================
   REVISION 3 — FULL STYLE UNIFICATION
   Everything matches the brand purple palette.
   No lifts, no auras behind objects.
   ============================================ */

/* ---------- Brand word-highlight gradient (hero + all key words) ---------- */
.hero-highlight,
.hero-highlight *,
.word-grad {
  background: linear-gradient(135deg, #b9acff 0%, #7863FF 45%, #5900FF 100%) !important;
  -webkit-background-clip: text !important;
          background-clip: text !important;
  color: transparent !important;
  filter: none !important;
  text-shadow: none !important;
  animation: none !important;
  font-weight: inherit;
  -webkit-text-fill-color: transparent;
}

/* ---------- Header navigation panel — brand surface ---------- */
.site-header {
  background: linear-gradient(180deg, rgba(36, 28, 64, 0.85) 0%, rgba(20, 16, 38, 0.9) 100%);
  border: 1px solid rgba(120, 99, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(120, 99, 255, 0.12);
}

.menu-toggle {
  border: 1px solid rgba(120, 99, 255, 0.25);
  background: rgba(120, 99, 255, 0.06);
}

/* ---------- Trusted by creators label — brand chip ---------- */
.channels-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(120, 99, 255, 0.25);
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(120,99,255,0.14), rgba(89,0,255,0.05));
  color: #b9acff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.channel-card {
  border: 1px solid rgba(120, 99, 255, 0.18);
  background: linear-gradient(180deg, rgba(36, 28, 64, 0.85), rgba(20, 16, 38, 0.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.channel-card:hover {
  border-color: rgba(120, 99, 255, 0.42);
  background: linear-gradient(180deg, rgba(44, 34, 78, 0.9), rgba(24, 18, 46, 0.95));
}

/* ---------- Stats strip — icon on top, solid white text, no card ---------- */
.stats-strip {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  gap: 24px;
}
.stat-item {
  position: relative;
  gap: 10px;
}
.stat-item::before,
.stat-item::after { display: none !important; }

.stat-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(120, 99, 255, 0.28);
  background: linear-gradient(180deg, rgba(120,99,255,0.14), rgba(89,0,255,0.04));
  color: #b9acff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  margin-bottom: 4px;
}
.stat-icon svg { width: 24px; height: 24px; }

.stat-number,
.stat-suffix {
  background: none !important;
  -webkit-background-clip: initial !important;
          background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  filter: none !important;
}
.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* ---------- "How we work" — pinned section background & mockups ---------- */
.ps-pinned {
  background: radial-gradient(120% 80% at 50% 0%, rgba(89,0,255,0.18), transparent 55%), #131313;
}

.ps-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: 100px;
  border: 1px solid rgba(120, 99, 255, 0.32);
  background: linear-gradient(180deg, rgba(120,99,255,0.16), rgba(89,0,255,0.04));
  color: #b9acff;
  font-size: 0.72rem;
}
.ps-step.active .ps-step-num {
  background: linear-gradient(180deg, #3a1d8a, #23106a);
  color: #ffffff;
  border-color: rgba(185, 172, 255, 0.5);
}
.ps-progress-fill {
  background: linear-gradient(90deg, #5900FF, #7863FF, #b9acff);
}

/* Mockups — brand card surface */
.pf-mockup,
.pf-mockup--form,
.pf-mockup--concept-chat,
.pf-mockup--deliver-chat,
.pf-mockup--yt-ab,
.pf-mockup--yt-result,
.pf-mockup--chat,
.pf-mockup--setup,
.pf-mockup--yt {
  background: linear-gradient(180deg, rgba(36, 28, 64, 0.92) 0%, rgba(20, 16, 38, 0.95) 100%) !important;
  border: 1px solid rgba(120, 99, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 30px 80px -40px rgba(0,0,0,0.8) !important;
}
.pf-form-header,
.yt-ab-topbar {
  border-bottom-color: rgba(120, 99, 255, 0.18) !important;
}
.pf-form-input,
.pf-form-textarea {
  background: rgba(120, 99, 255, 0.06);
  border: 1px solid rgba(120, 99, 255, 0.18);
}
.pf-form-btn {
  background: linear-gradient(180deg, #3a1d8a, #23106a);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.yt-ab-row {
  border: 1px solid rgba(120, 99, 255, 0.14);
  background: rgba(120, 99, 255, 0.04);
}
.yt-ab-row--winner {
  border-color: rgba(120, 99, 255, 0.42);
  background: rgba(120, 99, 255, 0.1);
}
.yt-ab-btn-primary {
  background: linear-gradient(180deg, #3a1d8a, #23106a);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.yt-ab-btn-secondary {
  border: 1px solid rgba(120, 99, 255, 0.22);
  background: rgba(120, 99, 255, 0.05);
  color: #b9acff;
}
.pf-chat-right {
  background: rgba(120, 99, 255, 0.18);
  border-color: rgba(120, 99, 255, 0.3);
}
.pf-chat-left {
  background: rgba(255,255,255,0.04);
  border-color: rgba(120, 99, 255, 0.12);
}

/* ---------- Selected Work: filter chips ---------- */
.filter-chip {
  border: 1px solid rgba(120, 99, 255, 0.18);
  background: rgba(120, 99, 255, 0.04);
  color: rgba(255,255,255,0.6);
  transition: border-color 200ms, background 200ms, color 200ms;
}
.filter-chip:hover {
  border-color: rgba(120, 99, 255, 0.42);
  color: #ffffff;
  background: rgba(120, 99, 255, 0.08);
}
.filter-chip.is-active {
  background: linear-gradient(180deg, #3a1d8a, #23106a) !important;
  border-color: rgba(185, 172, 255, 0.45) !important;
  color: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

/* Thumb cards — match brand card style, no lift/aura */
.thumb-card {
  border: 1px solid rgba(120, 99, 255, 0.16);
  background: linear-gradient(180deg, rgba(36, 28, 64, 0.85) 0%, rgba(20, 16, 38, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 350ms ease, background 350ms ease, opacity 350ms ease, transform 350ms ease;
}
.thumb-card.is-active {
  transform: none;
}
.thumb-card:hover {
  border-color: rgba(120, 99, 255, 0.42) !important;
  transform: none !important;
  background: linear-gradient(180deg, rgba(44, 34, 78, 0.9) 0%, rgba(24, 18, 46, 0.95) 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

/* ---------- Testimonials cards ---------- */
.testimonial-marquee-card {
  border: 1px solid rgba(120, 99, 255, 0.16);
  background: linear-gradient(180deg, rgba(36, 28, 64, 0.85) 0%, rgba(20, 16, 38, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 300ms ease, background 300ms ease;
}
.testimonial-marquee-card:hover {
  transform: none !important;
  border-color: rgba(120, 99, 255, 0.42);
  background: linear-gradient(180deg, rgba(44, 34, 78, 0.9) 0%, rgba(24, 18, 46, 0.95) 100%);
}
.testimonial-avatar {
  border: 1.5px solid rgba(120, 99, 255, 0.4);
}

/* ---------- FAQ — separate cards, brand surface ---------- */
.faq-list {
  max-width: 760px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid rgba(120, 99, 255, 0.18) !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, rgba(36, 28, 64, 0.85) 0%, rgba(20, 16, 38, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  transition: border-color 300ms ease, background 300ms ease;
}
.faq-item + .faq-item { border-top: 1px solid rgba(120, 99, 255, 0.18) !important; }
.faq-item:hover {
  border-color: rgba(120, 99, 255, 0.38) !important;
}
.faq-item.is-open {
  border-color: rgba(120, 99, 255, 0.45) !important;
  background: linear-gradient(180deg, rgba(44, 34, 78, 0.9) 0%, rgba(24, 18, 46, 0.95) 100%);
}
.faq-question {
  padding: 22px 26px;
  color: #ffffff;
}
.faq-question:hover { color: #b9acff; }
.faq-icon {
  border: 1px solid rgba(120, 99, 255, 0.28);
  background: linear-gradient(180deg, rgba(120,99,255,0.14), rgba(89,0,255,0.04));
}
.faq-icon::before,
.faq-icon::after { background: #b9acff; }
.faq-answer { padding: 0 26px; }
.faq-item.is-open .faq-answer { padding-bottom: 22px; }
.faq-answer > p { color: rgba(255,255,255,0.65); }

/* ---------- Contact form — brand card surface ---------- */
.contact-shell {
  border: 1px solid rgba(120, 99, 255, 0.2) !important;
  background: linear-gradient(180deg, rgba(36, 28, 64, 0.88) 0%, rgba(20, 16, 38, 0.93) 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05) !important;
}
.field > span { color: #ffffff; }
.field input,
.field select,
.field textarea {
  border: 1px solid rgba(120, 99, 255, 0.2);
  background: rgba(120, 99, 255, 0.06);
  color: #ffffff;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(120, 99, 255, 0.6) !important;
  background: rgba(120, 99, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(120, 99, 255, 0.25) !important;
}
.field input:valid:not(:placeholder-shown),
.field textarea:valid:not(:placeholder-shown) {
  border-color: rgba(120, 99, 255, 0.45);
}

/* ---------- Footer — brand card surface ---------- */
.site-footer {
  border: 1px solid rgba(120, 99, 255, 0.18) !important;
  background: linear-gradient(180deg, rgba(36, 28, 64, 0.85) 0%, rgba(20, 16, 38, 0.9) 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05) !important;
}
.footer-bottom {
  border-top: 1px solid rgba(120, 99, 255, 0.15) !important;
}
.footer-socials a {
  border: 1px solid rgba(120, 99, 255, 0.22);
  background: rgba(120, 99, 255, 0.05);
  color: rgba(255,255,255,0.7);
}
.footer-socials a:hover {
  border-color: rgba(120, 99, 255, 0.42);
  background: rgba(120, 99, 255, 0.12);
  color: #ffffff;
  transform: none;
}
.footer-links h3 {
  color: #b9acff;
}

/* ---------- Kill any remaining drop-shadows behind text ---------- */
.hero h1, .hero-text, .section-header h2, .section-sub, h1, h2, h3 {
  filter: none !important;
  text-shadow: none !important;
}

/* ---------- Kill the fixed hero beam (replaced by baked-in bg glows) ---------- */
.hero-glow-beam {
  display: none !important;
}

/* Make body a positioning context so .bg-bottom bottom:0 = page bottom */
body {
  position: relative;
}

/* ---------- Top backdrop now includes the diffuse glow ---------- */
.bg-top {
  background:
    radial-gradient(ellipse 55% 65% at 50% 0%,
      rgba(120, 99, 255, 0.38) 0%,
      rgba(89, 0, 255, 0.22) 22%,
      rgba(89, 0, 255, 0.10) 45%,
      rgba(89, 0, 255, 0.04) 65%,
      rgba(89, 0, 255, 0) 85%),
    #0D0A19 !important;
}

/* ---------- Bottom backdrop — mirror of .bg-top ---------- */
.bg-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: var(--bg-bottom-h, 1400px);
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 65% at 50% 100%,
      rgba(120, 99, 255, 0.38) 0%,
      rgba(89, 0, 255, 0.22) 22%,
      rgba(89, 0, 255, 0.10) 45%,
      rgba(89, 0, 255, 0.04) 65%,
      rgba(89, 0, 255, 0) 85%),
    #0D0A19;
  -webkit-mask-image: linear-gradient(0deg, #000 0%, #000 calc(100% - 360px), transparent 100%);
          mask-image: linear-gradient(0deg, #000 0%, #000 calc(100% - 360px), transparent 100%);
}

/* ---------- Bottom grid canvas — mirror fade upward ---------- */
.background-grid-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: var(--bg-bottom-h, 1400px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  -webkit-mask-image: linear-gradient(0deg, transparent 0%, #000 10%, #000 38%, transparent 100%);
          mask-image: linear-gradient(0deg, transparent 0%, #000 10%, #000 38%, transparent 100%);
}
