/* ============================================================
   Mind Matrix — STYLESHEET
   Colors, fonts, and layout for pruittai.com

   TABLE OF CONTENTS
   1. Variables (colors, fonts)
   2. Reset & Base
   3. Custom Cursor
   4. Navigation
   5. Hero
   6. Marquee
   7. Section Base
   8. Services
   9. Who We Serve
   10. How It Works
   11. Results Bar
   12. Pricing
   13. CTA Section
   14. Footer
   15. Animations & Reveal
   16. Responsive
============================================================ */


/* ============================================================
   1. VARIABLES
   Change colors here to update the whole site at once
============================================================ */

:root {
  /* Backgrounds */
  --void:       #080808;   /* main background — deepest black */
  --void-2:     #0f0f0f;   /* slightly lighter sections */
  --void-3:     #161616;   /* cards and panels */
  --anthracite: #2a2a2a;   /* borders */
  --anthracite-2: #3a3a3a; /* subtle borders and muted icons */

  /* Text */
  --ghost:     #f2f2f0;    /* primary text — ghost white */
  --ghost-dim: #a0a09e;    /* secondary text */

  /* Accent colors */
  --neon:         #39ff6e; /* neon green — primary accent */
  --purple:       #7c3aed; /* vivid purple */
  --purple-light: #a78bfa; /* lighter purple for secondary accents */
  --purple-dim:   #3b1a7a; /* dark purple for icon backgrounds */

  /* Typography */
  --font: 'Inter', sans-serif;
}


/* ============================================================
   2. RESET & BASE
============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--void);
  color: var(--ghost);
  font-family: var(--font);
  font-weight: 300;
  overflow-x: hidden;
  cursor: auto;
}

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


/* ============================================================
   3. CUSTOM CURSOR
============================================================ */

.cursor {
  width: 10px;
  height: 10px;
  background: var(--neon);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(57, 255, 110, 0.3);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}


/* ============================================================
   4. NAVIGATION
============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--anthracite);
}

.nav-logo {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--ghost);
  text-decoration: none;
}

.nav-logo span {
  color: var(--neon);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--ghost-dim);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ghost);
}

.nav-cta {
  background: var(--neon);
  color: var(--void) !important;
  font-weight: 500 !important;
  padding: 8px 20px;
  border-radius: 2px;
}


/* ============================================================
   5. HERO
============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 52px 100px;
  position: relative;
  overflow: hidden;
}

/* Grid line background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 110, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 110, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

/* Purple glow orb */
.hero::after {
  content: '';
  position: absolute;
  top: -300px;
  right: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 32px;
  animation: fadeUp 0.9s ease both;
}

.hero-title {
  font-size: clamp(56px, 9vw, 104px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -4px;
  color: var(--ghost);
  max-width: 1000px;
  animation: fadeUp 0.9s ease 0.1s both;
}

.hero-title .neon   { color: var(--neon); }
.hero-title .purple { color: var(--purple-light); }

.hero-sub {
  font-size: 18px;
  font-weight: 200;
  color: var(--ghost-dim);
  max-width: 520px;
  line-height: 1.75;
  margin-top: 36px;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 52px;
  animation: fadeUp 0.9s ease 0.3s both;
}

/* Shared button styles */
.btn-primary {
  background: var(--neon);
  color: var(--void);
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  padding: 16px 40px;
  border: none;
  border-radius: 2px;
  cursor: auto;
  letter-spacing: 0.2px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-primary.btn-large {
  font-size: 15px;
  padding: 18px 52px;
}

.btn-ghost {
  background: transparent;
  color: var(--ghost-dim);
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  padding: 16px 40px;
  border: 1px solid var(--anthracite-2);
  border-radius: 2px;
  cursor: auto;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--ghost-dim);
  color: var(--ghost);
}

.hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 88px;
  padding-top: 48px;
  border-top: 1px solid var(--anthracite);
  animation: fadeUp 0.9s ease 0.4s both;
  flex-wrap: wrap;
}

.stat-num {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--ghost);
}

.stat-num span {
  color: var(--neon);
}

.stat-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--ghost-dim);
  letter-spacing: 0.3px;
  margin-top: 4px;
}


/* ============================================================
   6. MARQUEE
============================================================ */

.marquee-wrap {
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--anthracite);
  border-bottom: 1px solid var(--anthracite);
  background: var(--void-2);
}

.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--anthracite-2);
  flex-shrink: 0;
}

.marquee-dot {
  color: var(--neon);
  opacity: 0.5;
  font-size: 14px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ============================================================
   7. SECTION BASE (shared styles)
============================================================ */

section {
  padding: 128px 52px;
  position: relative;
}

/* Small uppercase label above section titles */
.label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 20px;
}

.sec-title {
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.95;
  color: var(--ghost);
  margin-bottom: 20px;
}

.sec-sub {
  font-size: 16px;
  font-weight: 200;
  color: var(--ghost-dim);
  line-height: 1.75;
  max-width: 500px;
}


/* ============================================================
   8. SERVICES
============================================================ */

.services-bg {
  background: var(--void-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.svc {
  background: var(--void-3);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.svc:hover {
  background: #1d1d1d;
}

/* Neon top border on hover */
.svc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--neon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.svc:hover::before {
  transform: scaleX(1);
}

.svc-num {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--anthracite-2);
  margin-bottom: 20px;
}

.svc-icon {
  font-size: 26px;
  margin-bottom: 18px;
  display: block;
}

.svc-name {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--ghost);
  margin-bottom: 10px;
}

.svc-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--ghost-dim);
  line-height: 1.7;
}


/* ============================================================
   9. WHO WE SERVE
============================================================ */

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.who-card {
  background: var(--void-3);
  padding: 36px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.who-card:hover {
  background: #1a1a1a;
}

/* Purple bottom border on hover */
.who-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--purple-light), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.who-card:hover::after {
  opacity: 1;
}

.who-icon {
  width: 44px;
  height: 44px;
  background: var(--purple-dim);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.who-name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: var(--ghost);
  margin-bottom: 6px;
}

.who-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--ghost-dim);
  line-height: 1.65;
}


/* ============================================================
   10. HOW IT WORKS
============================================================ */

.how-bg {
  background: var(--void-2);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
  counter-reset: step;
}

.how-step {
  background: var(--void-3);
  padding: 36px 28px;
}

/* Auto-numbered step counter */
.how-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--neon);
  opacity: 0.5;
  display: block;
  margin-bottom: 22px;
}

.how-step-title {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: var(--ghost);
  margin-bottom: 10px;
}

.how-step-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--ghost-dim);
  line-height: 1.65;
}


/* ============================================================
   11. RESULTS BAR
============================================================ */

.results-bar {
  padding: 72px 52px;
  border-top: 1px solid var(--anthracite);
  border-bottom: 1px solid var(--anthracite);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.res-item {
  padding: 24px 36px;
  border-right: 1px solid var(--anthracite);
}

.res-item:last-child {
  border-right: none;
}

.res-num {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--ghost);
  line-height: 1;
}

.res-num .u {
  color: var(--neon);
}

.res-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--ghost-dim);
  letter-spacing: 0.3px;
  margin-top: 8px;
  line-height: 1.5;
}


/* ============================================================
   12. PRICING
============================================================ */

.pricing-bg {
  background: var(--void-2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.p-card {
  background: var(--void-3);
  padding: 40px 36px;
  position: relative;
}

/* Featured card gets neon outline */
.p-card.featured {
  background: var(--void);
  outline: 1px solid var(--neon);
}

.p-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--neon);
  color: var(--void);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.p-name {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ghost-dim);
  margin-bottom: 8px;
}

.p-price {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--ghost);
  line-height: 1;
}

.p-price sub {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  color: var(--ghost-dim);
  vertical-align: baseline;
}

.p-period {
  font-size: 12px;
  font-weight: 300;
  color: var(--ghost-dim);
  margin: 6px 0 32px;
}

.p-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
}

.p-features li {
  font-size: 13px;
  font-weight: 300;
  color: var(--ghost-dim);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

/* Neon dash bullet */
.p-features li::before {
  content: '—';
  color: var(--neon);
  flex-shrink: 0;
}

/* Purple dash bullet — add class="pu" to the li */
.p-features li.pu::before {
  color: var(--purple-light);
}

.p-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 2px;
  cursor: auto;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.p-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.p-btn.green {
  background: var(--neon);
  color: var(--void);
  border: none;
}

.p-btn.outline {
  background: transparent;
  color: var(--ghost-dim);
  border: 1px solid var(--anthracite-2);
}

.p-btn.outline:hover {
  color: var(--ghost);
  border-color: var(--ghost-dim);
}


/* ============================================================
   13. CTA SECTION
============================================================ */

.cta-section {
  text-align: center;
  padding: 160px 52px;
  position: relative;
  overflow: hidden;
}

/* Purple glow behind CTA */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -3.5px;
  line-height: 0.92;
  color: var(--ghost);
  margin-bottom: 28px;
}

.cta-title .neon { color: var(--neon); }

.cta-sub {
  font-size: 17px;
  font-weight: 200;
  color: var(--ghost-dim);
  max-width: 420px;
  margin: 0 auto 52px;
  line-height: 1.75;
}

.cta-meta {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 300;
  color: var(--anthracite-2);
  letter-spacing: 0.5px;
}


/* ============================================================
   14. FOOTER
============================================================ */

footer {
  background: var(--void-2);
  padding: 36px 52px;
  border-top: 1px solid var(--anthracite);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f-logo {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.5px;
  color: var(--ghost);
}

.f-logo span {
  color: var(--neon);
}

.f-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--anthracite-2);
}

.f-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.f-links a {
  font-size: 12px;
  font-weight: 300;
  color: var(--anthracite-2);
  text-decoration: none;
  transition: color 0.2s;
}

.f-links a:hover {
  color: var(--ghost-dim);
}


/* ============================================================
   15. ANIMATIONS & SCROLL REVEAL
============================================================ */

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

/* Add class="reveal" to any element to animate it in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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


/* ============================================================
   16. RESPONSIVE
============================================================ */

@media (max-width: 960px) {
  nav { padding: 20px 24px; }

  /* Hide nav links on mobile */
  .nav-links { display: none; }

  section,
  .results-bar,
  .cta-section { padding: 80px 24px; }

  .hero { padding: 110px 24px 72px; }

  .hero-stats { gap: 32px; }

  /* Single column grids on mobile */
  .services-grid,
  .pricing-grid  { grid-template-columns: 1fr; }
  .who-grid      { grid-template-columns: 1fr; }
  .how-steps     { grid-template-columns: 1fr 1fr; }
  .results-grid  { grid-template-columns: 1fr 1fr; }

  .res-item {
    border-right: none;
    border-bottom: 1px solid var(--anthracite);
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
