/* ============================================
   Callum Knox — Fractional CAIO
   Aesthetic: Capgemini Deep Future
   Palette: Indigo void + magenta luminance + cyan precision
   ============================================ */

/* ─── Variables ─── */
:root {
  /* Capgemini soul: deep void, luminous magenta, electric cyan */
  --bg-void:        #060210;
  --bg-primary:     #0a0514;
  --bg-secondary:   #120824;
  --bg-tertiary:    #1a0d35;
  --bg-card:        #0e0720;

  /* The luminous accents */
  --accent:         #bd00ff;
  --accent-magenta: #bd00ff;
  --accent-cyan:    #00d4ff;
  --accent-indigo:  #4b0082;
  --accent-violet:  #8a2be2;

  /* Glow and soft states */
  --accent-soft:    rgba(189,0,255,0.12);
  --accent-glow:    rgba(189,0,255,0.25);
  --cyan-glow:      rgba(0,212,255,0.15);

  /* Text: warm white for readability on dark void */
  --text-primary:   #f5f5f5;
  --text-secondary: #b8a0c8;
  --text-muted:     #6b5b80;
  --text-lavender:  #c0a8d8;

  /* Borders that feel like light, not lines */
  --border:         rgba(245,245,245,0.04);
  --border-hover:   rgba(189,0,255,0.35);
  --border-cyan:    rgba(0,212,255,0.20);

  --shadow:         rgba(0,0,0,0.6);

  /* Typography: serif for gravitas, sans for precision */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Outfit', 'Inter', system-ui, sans-serif;

  --radius:         14px;
  --transition:     all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width:      1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}


img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.2rem; }

.accent-warm  { color: var(--accent); }
.accent-cool  { color: var(--accent); }
.text-secondary { color: var(--text-secondary); }
.text-muted   { color: var(--text-muted); }

/* ─── Layout ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-wrapper {
  position: relative;
  z-index: 1;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-primary { color: var(--text-primary); }
.logo-accent    { color: var(--accent); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.4rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(189,0,255,0.25);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(189,0,255,0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, 
    var(--bg-void) 0%,
    var(--bg-primary) 25%,
    var(--bg-secondary) 50%,
    #1a0a3e 75%,
    var(--bg-void) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(circle, rgba(189,0,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(189,0,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-hover);
  border-radius: 100px;
}

.hero-headline {
  margin-bottom: 1.5rem;
}

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

.hero-subheadline {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 4px 28px rgba(189,0,255,0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(189,0,255,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: rgba(242,242,248,0.03);
}

/* ─── Sections ─── */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ─── Asset Grid ─── */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ─── Filter Bar ─── */
.filter-bar {
  margin-bottom: 2.5rem;
}

.filter-search {
  position: relative;
  margin-bottom: 1.2rem;
}

.filter-search .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  pointer-events: none;
}

.filter-search input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.filter-search input:focus {
  outline: none;
  border-color: var(--border-hover);
  box-shadow: 0 0 0 3px rgba(189,0,255,0.08);
}

.filter-search input::placeholder {
  color: var(--text-muted);
}

.filter-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.category-pill {
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.category-pill:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.category-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}

.filter-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Card hidden state for filtering */
.asset-card.hidden {
  display: none;
}

/* Category badge on cards */
.asset-category-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background-color: var(--bg-void);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.8rem;
}

/* Modal category */
.modal-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.asset-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.asset-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}

.asset-card:hover::before {
  opacity: 1;
}

.asset-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}

.asset-image-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.4rem;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.asset-card:hover .asset-image-wrapper {
  border-color: var(--border-hover);
}

.asset-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.asset-card:hover .asset-image {
  transform: scale(1.06);
}

.asset-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}

.asset-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 1.2rem;
  opacity: 0.4;
  transition: var(--transition);
}

.asset-card:hover .asset-number {
  color: var(--accent);
  opacity: 0.8;
}

.asset-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.asset-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.asset-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.asset-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.asset-saving {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(189,0,255,0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.asset-arrow {
  position: absolute;
  bottom: 2.2rem;
  right: 2.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.asset-card:hover .asset-arrow {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(-45deg);
}

/* ─── Paths Grid ─── */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.path-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.path-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
}

.path-card:hover::before {
  opacity: 1;
}

.path-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}

.path-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0.3;
  transition: var(--transition);
}

.path-card:hover .path-number {
  color: var(--accent);
  opacity: 0.8;
}

.path-title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.path-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.path-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.path-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.path-detail {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(189,0,255,0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.path-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}

.path-cta:hover {
  color: var(--accent);
  gap: 0.8rem;
}

/* ─── Modal ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  transform: translateY(30px) scale(0.98);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  transition: var(--transition);
  z-index: 5;
}

.modal-close:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg);
}

.modal-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.5) 100%);
  pointer-events: none;
}

.modal-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-tagline {
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.modal-block {
  margin-bottom: 1.8rem;
}

.modal-block-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.modal-block-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.modal-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.modal-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.modal-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  margin-top: 0.2rem;
}

/* ─── Modal Pricing Tiers ─── */
.modal-pricing-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

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

.pricing-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.pricing-tier:hover {
  border-color: var(--border-hover);
}

.tier-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.tier-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-style: italic;
}

/* ─── Trust Bar ─── */
.trust-bar-section {
  padding-top: 0;
  padding-bottom: 2rem;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 3rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  flex: 1;
}

.trust-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.trust-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── Consulting Cross-link ─── */
.consulting-crosslink {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.consulting-crosslink p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.consulting-crosslink a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.consulting-crosslink a:hover {
  color: var(--accent);
}

/* ─── Credibility ─── */
.credibility-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.credibility-visual {
  position: relative;
}

.credibility-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--accent);
  opacity: 0.3;
  border-radius: var(--radius);
}

.credibility-visual::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  border: 1px solid var(--accent);
  opacity: 0.2;
  border-radius: 50%;
}

.credibility-visual-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  position: relative;
  z-index: 2;
}

.credibility-visual-inner h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.credibility-visual-inner p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.credibility-points {
  list-style: none;
}

.credibility-points li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.credibility-points li:last-child {
  margin-bottom: 0;
}

.point-marker {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.point-content h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.point-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ─── Process ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--accent);
  opacity: 0.25;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-step:hover .step-number {
  border-color: var(--border-hover);
  box-shadow: 0 0 24px rgba(189,0,255,0.15);
}

.step-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Contact ─── */
.contact-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-email-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.email-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.email-details a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.2rem;
}

.email-details a:hover {
  color: var(--accent);
}

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

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: var(--bg-void);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--border-hover);
  box-shadow: 0 0 0 3px rgba(189,0,255,0.08);
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(189,0,255,0.25);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(189,0,255,0.4);
}

.form-message {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-message.success {
  display: block;
  background: rgba(46,196,182,0.08);
  border: 1px solid rgba(46,196,182,0.2);
  color: var(--accent);
}

.form-message.error {
  display: block;
  background: rgba(189,0,255,0.08);
  border: 1px solid rgba(189,0,255,0.2);
  color: var(--accent);
}

/* ─── Footer ─── */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.footer-email {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-email:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

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

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0.25;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }
.reveal-delay-9 { transition-delay: 0.9s; }

/* ─── Responsive ─── */


/* ─── Luminous Sweep Dividers ─── */
.sweep-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(189,0,255,0.15) 20%,
    rgba(138,43,226,0.3) 50%,
    rgba(189,0,255,0.15) 80%,
    transparent 100%
  );
  border: none;
  margin: 0;
}

.sweep-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(189,0,255,0.5),
    rgba(0,212,255,0.3),
    transparent
  );
  filter: blur(1px);
}

/* ─── Cyan Accent Underlines ─── */
.cyan-underline {
  position: relative;
}
.cyan-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
}

/* ─── Neon Glow Effects ─── */
.neon-glow {
  box-shadow: 0 0 20px rgba(189,0,255,0.15), 
              0 0 40px rgba(189,0,255,0.05);
}

.neon-glow-hover:hover {
  box-shadow: 0 0 30px rgba(189,0,255,0.25), 
              0 0 60px rgba(0,212,255,0.1);
}

/* ─── Ambient Light Orbs ─── */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.ambient-orb--magenta {
  background: radial-gradient(circle, rgba(189,0,255,0.18) 0%, transparent 70%);
}

.ambient-orb--cyan {
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
}

.ambient-orb--indigo {
  background: radial-gradient(circle, rgba(75,0,130,0.2) 0%, transparent 70%);
}



/* ─── Keyframe Animations ─── */
@keyframes ambientPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

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

@keyframes sweepGlow {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.4; }
}

@keyframes fadeReveal {
.reveal { opacity: 0.25; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0); }
}

/* ─── Utility Classes ─── */
.animate-gradient {
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.animate-pulse {
  animation: ambientPulse 6s ease-in-out infinite;
}

.animate-sweep {
  animation: sweepGlow 4s ease-in-out infinite;
}

/* ─── Hero Luminous Background ─── */
.hero-luminous {
  position: relative;
  overflow: hidden;
}

.hero-luminous::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 100%;
  height: 150%;
  background: radial-gradient(ellipse at center, 
    rgba(189,0,255,0.08) 0%, 
    rgba(138,43,226,0.05) 40%,
    transparent 70%);
  animation: ambientPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-luminous::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(ellipse at center, 
    rgba(0,212,255,0.05) 0%, 
    rgba(75,0,130,0.03) 50%,
    transparent 70%);
  animation: ambientPulse 10s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 1;
}

/* ─── Section Sweep Curves ─── */
.section-sweep {
  position: relative;
}

.section-sweep::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(189,0,255,0.2) 15%,
    rgba(0,212,255,0.3) 50%,
    rgba(189,0,255,0.2) 85%,
    transparent 100%
  );
  z-index: 2;
}

@media (max-width: 1024px) {
  .asset-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credibility-layout {
    gap: 2.5rem;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }

  .process-grid::before {
    display: none;
  }

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

  .trust-bar {
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    padding: 2rem;
  }

  .trust-item {
    flex: 1 1 40%;
  }

  .trust-sep:nth-of-type(2) {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--bg-void);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 7rem;
    min-height: auto;
    padding-bottom: 4rem;
  }

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

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

  .path-card {
    padding: 2rem;
  }

  .credibility-layout {
    grid-template-columns: 1fr;
  }

  .credibility-visual::before,
  .credibility-visual::after {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal-content {
    padding: 2rem 1.5rem;
    max-height: 85vh;
  }

  .modal-cta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

  .trust-bar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }

  .trust-sep {
    width: 60px;
    height: 1px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .asset-card {
    padding: 1.8rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

/* ─── Generic Page Template ─── */
.page-article {
  padding: 8rem 0 4rem;
  max-width: 720px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.page-content {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-content h2,
.page-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.page-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content a:hover {
  color: var(--accent);
}

/* ─── Blog ─── */
.blog-page {
  padding-top: 6rem;
}

.blog-hero {
  padding-bottom: 2rem;
}

.blog-hero-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.blog-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-hero-title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.blog-hero-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs .sep {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.breadcrumbs .current {
  color: var(--text-muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}

.blog-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: block;
  border-bottom: 1px solid var(--border);
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.06);
}

.blog-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.6) 100%);
}

.blog-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.blog-card-sep {
  opacity: 0.5;
}

.blog-card-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.blog-card-title a {
  color: var(--text-primary);
  transition: var(--transition);
}

.blog-card-title a:hover {
  color: var(--accent);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.blog-card-readmore {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.blog-card-readmore:hover {
  color: var(--accent);
}

.blog-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.blog-card:hover .blog-card-arrow {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(-45deg);
}

.blog-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.blog-pagination a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: var(--transition);
}

.blog-pagination a:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: rgba(242,242,248,0.03);
}

.blog-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 4rem 0;
  grid-column: 1 / -1;
}

/* ─── Single Post ─── */
.single-post {
  padding-top: 5rem;
}

.post-container {
  max-width: 1100px;
}

.post-hero {
  padding-bottom: 2rem;
}

.post-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.post-sep {
  opacity: 0.5;
}

.post-category a {
  color: var(--accent);
  font-weight: 500;
}

.post-category a:hover {
  color: var(--accent);
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.post-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.post-featured-image {
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.post-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.3) 100%);
  pointer-events: none;
}

.post-body-section {
  padding-top: 0;
}

.post-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.post-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-sticky {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.author-initial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg-primary);
}

.author-name {
  font-size: 1rem;
  color: var(--text-primary);
  display: block;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

.toc-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.toc-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

#toc-placeholder:empty::before {
  content: 'Headings will appear here';
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.toc-list a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: var(--transition);
  display: block;
  padding-left: 0.5rem;
  border-left: 2px solid transparent;
}

.toc-list a:hover {
  color: var(--accent);
  border-left-color: var(--accent);
}

.toc-list a.toc-h3 {
  padding-left: 1.2rem;
  font-size: 0.8rem;
}

.sidebar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.4rem;
  background: var(--accent);
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: var(--transition);
  text-align: center;
}

.sidebar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(189,0,255,0.3);
}

.post-content {
  max-width: 720px;
}

.post-entry {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.post-entry h2,
.post-entry h3,
.post-entry h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  scroll-margin-top: 100px;
}

.post-entry h2 {
  font-size: 1.6rem;
}

.post-entry h3 {
  font-size: 1.3rem;
}

.post-entry h4 {
  font-size: 1.1rem;
}

.post-entry p {
  margin-bottom: 1.5rem;
}

.post-entry a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.post-entry a:hover {
  color: var(--accent);
}

.post-entry ul,
.post-entry ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-entry li {
  margin-bottom: 0.6rem;
}

.post-entry blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-primary);
  font-size: 1.15rem;
}

.post-entry img {
  border-radius: 10px;
  margin: 2rem 0;
  border: 1px solid var(--border);
}

.post-entry code {
  background: var(--bg-tertiary);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--accent);
}

.post-entry pre {
  background: var(--bg-tertiary);
  padding: 1.2rem;
  border-radius: 10px;
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid var(--border);
}

.post-entry pre code {
  background: none;
  padding: 0;
}

/* ─── Post FAQ (GEO) ─── */
.post-faq {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.faq-title {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ─── Post CTA Block ─── */
.post-cta-block {
  background: var(--accent-soft);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}

.post-cta-block h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.post-cta-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.post-tags {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tags-label {
  font-weight: 600;
  color: var(--text-secondary);
  margin-right: 0.5rem;
}

.post-tags a {
  color: var(--accent);
}

.post-tags a:hover {
  color: var(--accent);
}

/* ─── Related Posts ─── */
.related-section {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.related-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ─── Infinite Scroll Sentinel ─── */
.blog-infinite-sentinel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.blog-infinite-sentinel.loading {
  opacity: 1;
  pointer-events: all;
}

.spinner {
  position: relative;
  width: 48px;
  height: 48px;
}

.spinner-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
  animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
  animation-delay: -0.3s;
  border-top-color: var(--accent);
  width: 36px;
  height: 36px;
  top: 6px;
  left: 6px;
}

.spinner-ring:nth-child(3) {
  animation-delay: -0.15s;
  width: 24px;
  height: 24px;
  top: 12px;
  left: 12px;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.spinner-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ─── Blog Responsive ─── */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .post-sidebar {
    position: static;
    order: 2;
  }

  .sidebar-sticky {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .author-box,
  .toc-box {
    flex: 1;
    min-width: 240px;
  }

  .sidebar-cta {
    width: auto;
    flex: 1;
    min-width: 240px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-image-wrapper {
    height: 220px;
  }

  .post-title {
    font-size: 1.8rem;
  }

  .post-featured-image {
    margin-bottom: 2rem;
  }

  .sidebar-sticky {
    flex-direction: column;
  }

  .author-box,
  .toc-box,
  .sidebar-cta {
    width: 100%;
    min-width: auto;
  }

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

  .post-cta-block {
    padding: 1.8rem;
  }
}

/* ─── Utilities ─── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   Calculator, Quiz & Generator Styles
   ============================================ */

/* ─── Calculator Widget ─── */
.calculator-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.calc-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.calc-form .form-group {
  margin-bottom: 0;
}

.calc-form .form-group:last-of-type,
.calc-form .form-submit {
  grid-column: 1 / -1;
}

.calculator-results {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.result-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.result-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.result-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.result-value.cost {
  color: var(--accent);
}

.result-value.saving {
  color: var(--accent);
}

/* ─── Quiz ─── */
.quiz-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.quiz-progress {
  width: 100%;
  height: 4px;
  background: var(--bg-tertiary);
  border-radius: 2px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-step h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  text-align: left;
  padding: 1rem 1.25rem;
  background-color: var(--bg-void);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: var(--transition);
}

.quiz-option:hover {
  border-color: var(--border-hover);
  background: var(--bg-secondary);
}

.quiz-results {
  text-align: center;
  padding: 2rem;
}

.quiz-score-display {
  margin: 1.5rem 0;
}

.quiz-score-number {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.quiz-score-label {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.quiz-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ─── Generators ─── */
.generator-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.generator-output {
  margin-top: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.output-label,
.output-word-count {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.output-copy {
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.output-copy:hover {
  opacity: 0.85;
}

.output-copy.copied {
  background: var(--accent);
}

.output-body {
  padding: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
  white-space: pre-wrap;
}

.output-body h4 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.output-body p {
  margin-bottom: 1rem;
}

/* ─── Tool Page Responsive ─── */
@media (max-width: 768px) {
  .calc-form {
    grid-template-columns: 1fr;
  }

  .calculator-results {
    grid-template-columns: 1fr;
  }

  .quiz-actions {
    flex-direction: column;
  }

  .quiz-actions .btn {
    width: 100%;
  }

  .output-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

/* ============================================
   The Fifth Floor — Page-Specific Styles
   ============================================ */

/* ─── Gold Accent for The Fifth Floor ─── */
.fifth-floor-label {
  color: var(--accent-magenta);
}

/* ─── Hero Trust Bar ─── */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.trust-dot {
  color: var(--text-muted);
  opacity: 0.5;
}

/* ─── Gap Section ─── */
.gap-body {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.gap-body p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.text-cta {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  color: var(--accent);
  transition: var(--transition);
}

.text-cta:hover {
  color: #f0a080;
}

/* ─── Tier Cards ─── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .tiers-grid {
    grid-template-columns: 1fr;
  }
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent-magenta);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.tier-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.tier-featured {
  border-top-color: var(--accent);
  box-shadow: 0 0 40px rgba(224, 122, 95, 0.08);
  transform: scale(1.02);
}

.tier-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.tier-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.tier-period {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.tier-turnaround {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.tier-features li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.tier-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.tier-best-for {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.tier-footer {
  margin-top: auto;
}

.tier-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* ─── Timeline ─── */
.timeline {
  max-width: 700px;
  margin: 3rem auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid var(--accent-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  flex-shrink: 0;
  z-index: 1;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-desc {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Case Studies ─── */
.proof-section {
  background: var(--bg-secondary);
}

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

@media (max-width: 900px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
  }
}

.case-study-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.case-study-card:hover {
  border-color: var(--border-hover);
}

.case-framework {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.case-challenge {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.case-outcome {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.case-engagement {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
}

/* ─── Founder Section ─── */
.founder-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .founder-layout {
    grid-template-columns: 1fr;
  }
}

.founder-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.founder-visual {
  display: flex;
  justify-content: center;
}

.founder-placeholder {
  width: 280px;
  height: 280px;
  border-radius: var(--radius);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── Final CTA ─── */
.cta-section {
  background: var(--bg-secondary);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* ============================================
   Contact Page — Page-Specific Styles
   ============================================ */

.contact-context {
  margin-top: 2rem;
  padding: 1.2rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-context p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-context strong {
  color: var(--accent);
}

optgroup {
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-secondary);
}

option {
  background: var(--bg-card);
  color: var(--text-primary);
}
/* v2.0 Styles: Capabilities, Pricing, Showreel */
.showreel-section { background: var(--bg-secondary); padding: 6rem 0; }
.capabilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.capability-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: transform .25s ease, box-shadow .25s ease; }
.capability-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.capability-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.capability-icon { font-size: 1.75rem; }
.capability-status { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; display: flex; align-items: center; gap: .4rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.status-dot.live { background: var(--accent-magenta); }
.status-dot.beta { background: #a5a5b5; }
.capability-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: .75rem; }
.capability-desc { font-size: .95rem; line-height: 1.55; color: var(--text-secondary); }

.advisory-section { padding: 6rem 0; }
.advisory-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem 2rem; position: relative; transition: transform .25s ease, box-shadow .25s ease; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.pricing-card.featured { border: 2px solid var(--accent); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .35rem 1rem; border-radius: 20px; }
.pricing-tier { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-secondary); margin-bottom: .5rem; }
.pricing-price { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; margin-bottom: .25rem; }
.pricing-period { font-size: .85rem; color: var(--text-secondary); margin-bottom: 1.25rem; }
.pricing-desc { font-size: .95rem; line-height: 1.55; color: var(--text-secondary); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { font-size: .9rem; line-height: 1.6; padding-left: 1.25rem; position: relative; margin-bottom: .5rem; }
.pricing-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing-cta { display: inline-block; width: 100%; text-align: center; padding: .85rem 0; background: var(--accent); color: #fff; font-weight: 600; border-radius: 8px; text-decoration: none; transition: background .2s ease; }
.pricing-cta:hover { background: #a58e5e; }

.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3rem; }
.fit-item { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: 8px; background: var(--bg-card); border: 1px solid var(--border); }
.fit-item.good { border-left: 4px solid var(--accent-magenta); }
.fit-item.bad { border-left: 4px solid #6b6b80; }
.fit-marker { font-size: 1.25rem; font-weight: 700; }
.fit-item.good .fit-marker { color: var(--accent-magenta); }
.fit-item.bad .fit-marker { color: #6b6b80; }
.fit-text { font-size: .95rem; line-height: 1.45; }

.pillars-grid { margin-top: 3rem; }
.pillar-row { display: flex; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.pillar-row:first-child { padding-top: 0; }
.pillar-row:last-child { border-bottom: none; padding-bottom: 0; }
.pillar-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--accent); min-width: 3rem; }
.pillar-content h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; margin-bottom: .75rem; }
.pillar-content p { font-size: 1rem; line-height: 1.65; color: var(--text-secondary); max-width: 600px; }

@media (max-width: 768px) {
    .capabilities-grid { grid-template-columns: 1fr; }
    .advisory-pricing { grid-template-columns: 1fr; }
    .fit-grid { grid-template-columns: 1fr; }
    .pillar-row { flex-direction: column; gap: 1rem; }
}
/* END v2.0 Styles */

/* === v2.1 Styles: Methodology, Comparison, Week, Deliverables, Scarcity === */

/* ─── Methodology / Timeline ─── */
.methodology-section { padding: 6rem 0; }
.methodology-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.method-step {
    position: relative;
    padding: 2rem 0 2.5rem 3.5rem;
    border-left: 2px solid var(--border);
}
.method-step:last-child {
    border-left: 2px solid transparent;
    padding-bottom: 0;
}
.method-step::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 2.2rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--bg-primary);
}
.method-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .75rem;
}
.method-number {
    font-family: var(--font-heading);
    font-size: .85rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.method-time {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    padding: .25rem .6rem;
    border-radius: 4px;
}
.method-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.method-desc {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ─── Comparison Grid ─── */
.compare-section { padding: 6rem 0; background: var(--bg-secondary); }
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.compare-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.compare-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.compare-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.compare-detail {
    font-size: .9rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    min-height: 4.5rem;
}
.compare-vs {
    display: block;
    text-align: center;
    font-family: var(--font-heading);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    padding: .4rem 0;
    border-top: 1px dashed var(--border);
    border-bottom: 1px dashed var(--border);
}
.compare-win {
    font-size: .95rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
}
.compare-win::before {
    content: '\2713  ';
    color: var(--accent);
    font-weight: 700;
}

/* ─── Week in the Life ─── */
.week-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.week-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}
.week-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: .3rem .75rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}
.week-block h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .4rem;
    margin-top: 1.25rem;
}
.week-block h4:first-of-type {
    margin-top: 0;
}
.week-block p {
    font-size: .92rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: .75rem;
}

/* ─── Deliverables ─── */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.deliverable-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: transform .25s ease, box-shadow .25s ease;
}
.deliverable-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.del-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: .75rem;
}
.deliverable-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: .5rem;
}
.deliverable-item p {
    font-size: .92rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ─── Scarcity Notice ─── */
.scarcity-notice {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-top: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.scarcity-notice p {
    font-size: .95rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}
.scarcity-notice strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ─── v2.1 Mobile Responsive ─── */
@media (max-width: 768px) {
    .compare-grid   { grid-template-columns: 1fr; }
    .week-grid      { grid-template-columns: 1fr; }
    .deliverables-grid { grid-template-columns: 1fr; }
    .method-step    { padding-left: 2.5rem; }
    .scarcity-notice { margin: 2rem 1rem 0; }
}

/* ============================================================
   HOMEPAGE v2.5 ENHANCEMENTS
   Trust · Results · FAQ · Content Preview · Sticky CTA
   ============================================================ */

/* ─── Trust Bar ─── */
.trust-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}
.trust-stat {
    text-align: center;
}
.trust-val {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 10px;
}
.trust-label {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.trust-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin-bottom: 40px;
}
.trust-clients {
    text-align: center;
}
.trust-clients-label {
    display: block;
    font-size: 9px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.trust-client-list {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.trust-client {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-card);
    transition: var(--transition);
}
.trust-client:hover {
    border-color: var(--border-hover);
    color: var(--text-secondary);
}

/* ─── Results / Case Studies ─── */
.results-section {
    padding: 100px 0 80px;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.result-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--shadow);
}
.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.result-company {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}
.result-badge {
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(189,0,255,0.18);
    padding: 4px 10px;
    border-radius: 4px;
}
.result-metric {
    margin-bottom: 20px;
}
.result-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.result-metric-label {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.result-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* ─── FAQ ─── */
.faq-section {
    padding: 100px 0 80px;
    background-color: var(--bg-void);
}
.faq-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: rgba(242,242,248,0.1);
}
.faq-item[open] {
    border-color: rgba(242,242,248,0.14);
}
.faq-q {
    padding: 22px 28px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
    content: '+';
    font-size: 18px;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item[open] .faq-q::after {
    content: '−';
    color: var(--accent);
}
.faq-item[open] .faq-q {
    color: var(--text-primary);
}

/* ─── NEW HOMEPAGE — AI EMPLOYEE REDESIGN v2.4.0 ─── */

/* ─── Pain Section ─── */
.pain-section { --accent-color: #bd00ff; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.pain-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2.5rem; position: relative; transition: transform .25s ease, box-shadow .25s ease; }
.pain-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); border-color: rgba(189,0,255,0.2); }
.pain-number { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--accent); display: block; margin-bottom: 1rem; }
.pain-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: .75rem; }
.pain-desc { font-size: .95rem; line-height: 1.65; color: var(--text-secondary); }

/* ─── Employee Section ─── */
.employee-section { --accent-color: #bd00ff; }
.employee-pillar { display: flex; align-items: center; gap: 4rem; padding: 3rem 0; border-bottom: 1px solid var(--border); }
.employee-pillar:last-child { border-bottom: none; padding-bottom: 0; }
.employee-pillar:first-child { padding-top: 0; }
.employee-pillar:nth-child(even) { flex-direction: row-reverse; }
.pillar-content { flex: 1; }
.pillar-title { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; margin-bottom: 1rem; }
.pillar-desc { font-size: 1rem; line-height: 1.65; color: var(--text-secondary); margin-bottom: 1.25rem; }
.pillar-features { list-style: none; margin: 0; padding: 0; }
.pillar-features li { font-size: .95rem; line-height: 1.6; padding-left: 1.5rem; position: relative; margin-bottom: .5rem; }
.pillar-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pillar-visual { flex: 0 0 320px; display: flex; align-items: center; justify-content: center; }
.pillar-icon { font-size: 4rem; opacity: .8; }

/* ─── Chat Mockup ─── */
.chat-mockup { width: 100%; max-width: 320px; background: rgba(10,5,20,.9); border: 1px solid rgba(189,0,255,.2); border-radius: 16px; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.chat-bubble { border-radius: 12px; padding: .75rem 1rem; font-size: .85rem; line-height: 1.5; max-width: 85%; }
.chat-bubble--user { align-self: flex-end; background: rgba(189,0,255,.15); border: 1px solid rgba(189,0,255,.25); color: #fff; }
.chat-bubble--agent { align-self: flex-start; background: rgba(0,212,255,.08); border: 1px solid rgba(0,212,255,.2); color: #e0f7ff; }

/* ─── Growth Graphic ─── */
.growth-graphic { width: 200px; height: 120px; position: relative; display: flex; align-items: center; justify-content: center; }
.growth-graphic .glow-line { width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); border-radius: 1px; }
.growth-label { position: absolute; top: 0; left: 0; font-size: .75rem; color: var(--accent); font-weight: 600; }
.growth-label.growth-time { top: auto; bottom: 0; right: 0; left: auto; }

/* ─── Engine Section ─── */
.engine-section { --accent-color: #bd00ff; }
.engine-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.engine-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: transform .25s ease, box-shadow .25s ease; }
.engine-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); border-color: rgba(189,0,255,0.2); }
.engine-title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; margin-bottom: .75rem; }
.engine-desc { font-size: .95rem; line-height: 1.65; color: var(--text-secondary); }

/* ─── Offer Section ─── */
.offer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; margin-top: 3rem; }
.offer-main .pricing-card { height: auto; }
.offer-compare { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 1rem; }
.offer-compare .compare-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; }
.offer-compare .compare-item h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.offer-compare .compare-detail { font-size: .9rem; line-height: 1.5; color: var(--text-secondary); }
.offer-compare .compare-vs-label { text-align: center; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--accent); letter-spacing: .05em; }
.offer-compare .compare-item--win { border-color: rgba(0,212,255,.3); background: rgba(0,212,255,.05); }

/* ─── FAQ (native details/summary) ─── */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; transition: border-color .2s ease; }
.faq-item:hover { border-color: rgba(189,0,255,0.2); }
.faq-item[open] { border-color: rgba(189,0,255,0.25); }
.faq-question { list-style: none; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; padding: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--accent); transition: transform .3s ease; }
.faq-item[open] .faq-question::after { content: '-'; }
.faq-answer { padding: 0 1.5rem 1.5rem; font-size: .95rem; line-height: 1.65; color: var(--text-secondary); border-top: 1px solid rgba(255,255,255,.05); }

/* ─── Results Section ─── */
.results-section { }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.result-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: transform .25s ease, box-shadow .25s ease; }
.result-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); border-color: rgba(189,0,255,0.15); }
.result-quote { font-family: var(--font-heading); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.5rem; font-style: italic; color: #f0e6ff; }
.result-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }
.result-company { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); }
.result-metric { font-size: .9rem; font-weight: 600; color: var(--text-secondary); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .pain-grid            { grid-template-columns: repeat(2, 1fr); }
  .engine-grid          { grid-template-columns: repeat(2, 1fr); }
  .results-grid         { grid-template-columns: repeat(2, 1fr); }
  .offer-grid           { grid-template-columns: 1fr; }
  .employee-pillar      { flex-direction: column !important; gap: 2rem; }
  .pillar-visual        { flex: 1; max-width: 400px; }
}

@media (max-width: 768px) {
  .hero-headline        { font-size: clamp(1.8rem, 5.5vw, 2.8rem); }
  .pain-grid            { grid-template-columns: 1fr; }
  .engine-grid          { grid-template-columns: 1fr; }
  .results-grid         { grid-template-columns: 1fr; }
  .pillar-visual        { max-width: 100%; }
  .chat-mockup          { max-width: 100%; }
  .faq-question         { font-size: 1rem; padding: 1.25rem; }
  .faq-answer           { padding: 0 1.25rem 1.25rem; }
}

/* END NEW HOMEPAGE v2.4.0 */

/* ─── FAQ Answer (legacy, kept for compatibility) ─── */
.faq-a {
    padding: 0 28px 24px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
}

/* ─── Content Preview ─── */
.content-section {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.article-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-decoration: none;
    transition: var(--transition);
}
.article-card:hover {
    border-color: rgba(189,0,255,0.30);
    transform: translateY(-3px);
    text-decoration: none;
}
.article-date {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.article-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 12px;
    line-height: 1.45;
}
.article-excerpt {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 18px;
}
.article-read {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ─── Sticky Bottom CTA ─── */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 14px 24px 20px;
    background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.92) 40%, rgba(10,10,10,0.98) 100%);
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}
.sticky-cta.sticky-visible {
    transform: translateY(0);
    pointer-events: auto;
}
.sticky-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-primary);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    background: var(--accent);
    transition: var(--transition);
}
.sticky-cta-btn:hover {
    background: var(--accent-violet);
    box-shadow: 0 0 40px rgba(189,0,255,0.25);
    text-decoration: none;
    color: var(--bg-primary);
}
.sticky-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--bg-void);
    animation: cta-pulse 2.2s ease infinite;
}
@keyframes cta-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.25; }
}

/* ─── v2.5 Mobile Responsive ─── */
@media (max-width: 768px) {
    .trust-stats     { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 36px; }
    .trust-client-list { gap: 10px; }
    .results-grid    { grid-template-columns: 1fr; }
    .article-grid    { grid-template-columns: 1fr; }
    .faq-q           { padding: 18px 20px; font-size: 14px; }
    .faq-a           { padding: 0 20px 20px; }
    .sticky-cta      { padding: 10px 16px 16px; }
    .sticky-cta-btn  { font-size: 11px; padding: 12px 20px; }
}

@media (max-width: 480px) {
    .trust-stats     { grid-template-columns: 1fr 1fr; }
    .trust-val       { font-size: 24px; }
    .result-number   { font-size: 28px; }
    .article-card    { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .sticky-cta { transition: none; }
    .sticky-pulse { animation: none; }
    .result-card:hover, .article-card:hover { transform: none; }
}
/* END v2.5 Styles */
/* ============================================
   ENHANCEMENT: Luminous Magenta-Violet Accents
   Accent glow: #BD00FF → #E0B0FF
   Added: gradient borders, glow effects, sweep accents
   ============================================ */

/* ─── Enhanced Glow Variables ─── */
:root {
  --glow-magenta: rgba(189, 0, 255, 0.4);
  --glow-violet: rgba(224, 176, 255, 0.3);
  --glow-deep: rgba(138, 43, 226, 0.25);
  --gradient-accent: linear-gradient(135deg, #bd00ff, #e0b0ff);
  --gradient-accent-horizontal: linear-gradient(90deg, #bd00ff, #e0b0ff);
  --gradient-accent-radial: radial-gradient(circle at center, #e0b0ff 0%, #bd00ff 50%, transparent 70%);
}

/* ─── Hero Enhanced Glow ─── */
.hero::before {
  background: radial-gradient(circle, rgba(189,0,255,0.12) 0%, rgba(138,43,226,0.06) 40%, transparent 65%);
}

.hero::after {
  background: radial-gradient(circle, rgba(224,176,255,0.06) 0%, rgba(189,0,255,0.04) 40%, transparent 60%);
}

/* Extra luminous orb behind hero headline */
.hero-inner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(189,0,255,0.10) 0%, rgba(224,176,255,0.05) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

/* ─── Nav CTA Enhanced ─── */
.nav-cta {
  background: var(--gradient-accent);
  box-shadow: 0 4px 24px rgba(189,0,255,0.35), 0 0 60px rgba(224,176,255,0.10);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(189,0,255,0.5), 0 0 80px rgba(224,176,255,0.15);
}

/* ─── Buttons Enhanced ─── */
.btn-primary {
  background: var(--gradient-accent);
  box-shadow: 0 4px 28px rgba(189,0,255,0.35), 0 0 50px rgba(224,176,255,0.08);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(189,0,255,0.5), 0 0 70px rgba(224,176,255,0.12);
}

/* ─── Section Labels Enhanced ─── */
.section-label {
  border: 1px solid rgba(189,0,255,0.25);
  box-shadow: 0 0 20px rgba(189,0,255,0.08), inset 0 0 10px rgba(224,176,255,0.05);
  background: rgba(189,0,255,0.04);
}

.hero-label {
  border: 1px solid rgba(189,0,255,0.30);
  box-shadow: 0 0 24px rgba(189,0,255,0.10), inset 0 0 12px rgba(224,176,255,0.06);
  background: rgba(189,0,255,0.05);
}

/* ─── Featured Pricing Card Gradient Border ─── */
.pricing-card.featured {
  border: none;
  position: relative;
  background: var(--bg-card);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: var(--gradient-accent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-card.featured::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: var(--gradient-accent-horizontal);
  filter: blur(2px);
  opacity: 0.6;
}

/* ─── Capability Cards Enhanced ─── */
.capability-card {
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-accent-horizontal);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.capability-card:hover::before {
  opacity: 0.6;
}

.capability-card:hover {
  border-color: rgba(189,0,255,0.20);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1), 0 0 40px rgba(189,0,255,0.06);
}

/* ─── Status Dots Enhanced ─── */
.status-dot.live {
  background: var(--gradient-accent);
  box-shadow: 0 0 8px rgba(189,0,255,0.6), 0 0 16px rgba(224,176,255,0.3);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.status-dot.beta {
  background: linear-gradient(135deg, #a5a5b5, #c0a8d8);
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(189,0,255,0.6), 0 0 16px rgba(224,176,255,0.3); }
  50% { box-shadow: 0 0 12px rgba(189,0,255,0.8), 0 0 24px rgba(224,176,255,0.5); }
}

/* ─── Method Numbers Enhanced ─── */
.method-number {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  filter: drop-shadow(0 0 8px rgba(189,0,255,0.3));
}

/* ─── Trust Numbers Enhanced ─── */
.trust-number {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  filter: drop-shadow(0 0 6px rgba(189,0,255,0.25));
}

/* ─── Compare Section "VS" Enhanced ─── */
.compare-vs {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ─── Result Numbers Enhanced ─── */
.result-number {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  filter: drop-shadow(0 0 8px rgba(189,0,255,0.3));
}

/* ─── Article Card Read More ─── */
.article-readmore {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ─── Section Sweep Curves Enhanced ─── */
.section-sweep::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gradient-accent-horizontal);
  filter: blur(1px);
  opacity: 0.4;
}

/* ─── Contact Form Submit Enhanced ─── */
.form-submit {
  background: var(--gradient-accent);
  box-shadow: 0 4px 24px rgba(189,0,255,0.35), 0 0 50px rgba(224,176,255,0.08);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(189,0,255,0.5), 0 0 70px rgba(224,176,255,0.12);
}

/* ─── Footer Email Link Enhanced ─── */
.footer-email:hover {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Sticky CTA Enhanced ─── */
.sticky-cta-btn {
  background: var(--gradient-accent);
  box-shadow: 0 4px 20px rgba(189,0,255,0.3);
}

.sticky-cta-btn:hover {
  box-shadow: 0 8px 32px rgba(189,0,255,0.5), 0 0 50px rgba(224,176,255,0.15);
}

/* ─── Accent Text Gradient ─── */
.accent-warm {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ─── Nav Link Hover Glow ─── */
.nav-link:hover {
  color: #e0b0ff;
  text-shadow: 0 0 12px rgba(189,0,255,0.3);
}

.nav-link::after {
  background: var(--gradient-accent-horizontal);
  height: 2px;
  box-shadow: 0 0 8px rgba(189,0,255,0.4);
}

/* ─── Hero Headline Italic Glow ─── */
.hero-headline em {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  filter: drop-shadow(0 0 12px rgba(189,0,255,0.2));
}

/* ─── Blog Hero Title Italic Glow ─── */
.blog-hero-title em {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(189,0,255,0.15));
}

/* ─── Ambient Orbs Enhanced ─── */
.ambient-orb--magenta {
  background: radial-gradient(circle, rgba(189,0,255,0.22) 0%, rgba(138,43,226,0.08) 40%, transparent 70%);
}

.ambient-orb--cyan {
  background: radial-gradient(circle, rgba(224,176,255,0.12) 0%, rgba(189,0,255,0.06) 50%, transparent 70%);
}

.ambient-orb--indigo {
  background: radial-gradient(circle, rgba(75,0,130,0.25) 0%, rgba(189,0,255,0.08) 50%, transparent 70%);
}

/* ─── Sweep Curves Enhanced ─── */
#sweep-curve stop[offset="0%"] {
  stop-color: #bd00ff;
  stop-opacity: 0;
}

#sweep-curve stop[offset="30%"] {
  stop-color: #bd00ff;
  stop-opacity: 0.3;
}

#sweep-curve stop[offset="50%"] {
  stop-color: #e0b0ff;
  stop-opacity: 0.4;
}

#sweep-curve stop[offset="70%"] {
  stop-color: #bd00ff;
  stop-opacity: 0.3;
}

#sweep-curve stop[offset="100%"] {
  stop-color: #bd00ff;
  stop-opacity: 0;
}

/* ─── Neon Glow Utility Enhanced ─── */
.neon-glow {
  box-shadow: 0 0 20px rgba(189,0,255,0.2), 0 0 40px rgba(224,176,255,0.08), 0 0 80px rgba(189,0,255,0.04);
}

.neon-glow-hover:hover {
  box-shadow: 0 0 30px rgba(189,0,255,0.3), 0 0 60px rgba(224,176,255,0.12), 0 0 100px rgba(189,0,255,0.06);
}

/* ─── FAQ Active Glow ─── */
.faq-item.active {
  border-color: rgba(189,0,255,0.25);
  box-shadow: 0 0 30px rgba(189,0,255,0.06), inset 0 0 20px rgba(224,176,255,0.03);
}

.faq-icon {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Logo Accent Glow ─── */
.logo-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  filter: drop-shadow(0 0 8px rgba(189,0,255,0.25));
}

/* ─── Scrollbar Enhanced ─── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #bd00ff, #e0b0ff);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e0b0ff, #bd00ff);
}

/* ─── Selection Color ─── */
::selection {
  background: rgba(189,0,255,0.3);
  color: var(--text-primary);
  text-shadow: 0 0 8px rgba(189,0,255,0.3);
}

/* ─── Link Hover Glow ─── */
a:hover {
  color: #e0b0ff;
}

/* ─── Pricing CTA Enhanced ─── */
.pricing-cta:hover {
  background: var(--gradient-accent);
  box-shadow: 0 4px 20px rgba(189,0,255,0.3);
  color: var(--bg-primary);
}

/* ─── Path CTA Enhanced ─── */
.path-cta:hover {
  color: #e0b0ff;
  text-shadow: 0 0 12px rgba(189,0,255,0.2);
}

/* ─── Modal CTA Bar Enhanced ─── */
.sidebar-cta {
  background: var(--gradient-accent);
  box-shadow: 0 4px 20px rgba(189,0,255,0.25);
}

.sidebar-cta:hover {
  box-shadow: 0 8px 28px rgba(189,0,255,0.4), 0 0 50px rgba(224,176,255,0.1);
}

/* ─── Form Focus Glow ─── */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(189,0,255,0.4);
  box-shadow: 0 0 0 3px rgba(189,0,255,0.08), 0 0 20px rgba(224,176,255,0.05);
}

/* ─── Page Content Links ─── */
.page-content a:hover,
.post-entry a:hover {
  color: #e0b0ff;
  text-shadow: 0 0 8px rgba(189,0,255,0.15);
}

/* ─── Post Entry Code Glow ─── */
.post-entry code {
  background: rgba(189,0,255,0.06);
  color: #e0b0ff;
  box-shadow: inset 0 0 8px rgba(189,0,255,0.05);
}

/* ─── TOC Active Glow ─── */
.toc-list a:hover {
  color: #e0b0ff;
  border-left-color: #e0b0ff;
  text-shadow: 0 0 8px rgba(189,0,255,0.15);
}

/* ─── Post Category Glow ─── */
.post-category a {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ─── Asset Card Top Border Glow ─── */
.asset-card::before {
  background: var(--gradient-accent-horizontal);
  height: 2px;
  filter: blur(0.5px);
}

.asset-card:hover::before {
  opacity: 1;
  filter: blur(1px);
  box-shadow: 0 0 10px rgba(189,0,255,0.4);
}

/* ─── Blog Card Top Border Glow ─── */
.blog-card::before {
  background: var(--gradient-accent-horizontal);
  height: 2px;
  filter: blur(0.5px);
}

.blog-card:hover::before {
  opacity: 1;
  filter: blur(1px);
  box-shadow: 0 0 10px rgba(189,0,255,0.4);
}

/* ─── Asset Saving Badge Enhanced ─── */
.asset-saving {
  background: rgba(189,0,255,0.10);
  color: #e0b0ff;
  box-shadow: 0 0 12px rgba(189,0,255,0.08);
}

/* ─── Path Detail Badge Enhanced ─── */
.path-detail {
  background: rgba(189,0,255,0.10);
  color: #e0b0ff;
  box-shadow: 0 0 12px rgba(189,0,255,0.08);
}

/* ─── Trust Item Separator Glow ─── */
.trust-sep {
  background: linear-gradient(180deg, transparent, rgba(189,0,255,0.3), transparent);
}

/* ─── Credibility Visual Glow ─── */
.credibility-visual::before {
  border: 1px solid rgba(189,0,255,0.2);
  box-shadow: 0 0 30px rgba(189,0,255,0.05);
}

.credibility-visual::after {
  border: 1px solid rgba(189,0,255,0.15);
  box-shadow: 0 0 40px rgba(189,0,255,0.04);
}

/* ─── Step Number Enhanced ─── */
.step-number {
  box-shadow: 0 0 20px rgba(189,0,255,0.08);
  border-color: rgba(189,0,255,0.15);
}

.process-step:hover .step-number {
  border-color: rgba(189,0,255,0.3);
  box-shadow: 0 0 30px rgba(189,0,255,0.15), 0 0 60px rgba(224,176,255,0.08);
}

/* ─── Email Icon Enhanced ─── */
.email-icon {
  background: var(--gradient-accent);
  box-shadow: 0 4px 16px rgba(189,0,255,0.3);
}

/* ─── Point Marker Enhanced ─── */
.point-marker {
  border-color: rgba(189,0,255,0.25);
  color: #e0b0ff;
  box-shadow: 0 0 12px rgba(189,0,255,0.08);
}

/* ─── Modal Close Enhanced ─── */
.modal-close:hover {
  border-color: rgba(189,0,255,0.4);
  color: #e0b0ff;
  box-shadow: 0 0 16px rgba(189,0,255,0.15);
}

/* ─── Article Grid Card Hover Glow ─── */
.article-card:hover {
  border-color: rgba(189,0,255,0.15);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08), 0 0 40px rgba(189,0,255,0.04);
}

/* ─── Result Card Hover Glow ─── */
.result-card:hover {
  border-color: rgba(189,0,255,0.15);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08), 0 0 40px rgba(189,0,255,0.04);
}

/* ─── Scarcity Notice Glow ─── */
.scarcity-notice {
  border-left: 3px solid #bd00ff;
  box-shadow: 0 0 20px rgba(189,0,255,0.05), inset 2px 0 10px rgba(189,0,255,0.03);
}

/* ─── Hero Luminous Enhanced ─── */
.hero-luminous::before {
  background: radial-gradient(ellipse at center, rgba(189,0,255,0.10) 0%, rgba(138,43,226,0.05) 40%, transparent 70%);
}

.hero-luminous::after {
  background: radial-gradient(ellipse at center, rgba(224,176,255,0.06) 0%, rgba(75,0,130,0.03) 50%, transparent 70%);
}

/* ─── Mobile Responsive for Glow Effects ─── */
@media (max-width: 768px) {
  .hero-inner::before {
    width: 300px;
    height: 200px;
  }
  
  .nav-cta,
  .btn-primary,
  .form-submit {
    box-shadow: 0 4px 16px rgba(189,0,255,0.25);
  }
  
  .neon-glow {
    box-shadow: 0 0 12px rgba(189,0,255,0.15), 0 0 24px rgba(224,176,255,0.05);
  }
}

/* END Luminous Enhancement */
