/*
Theme Name: SlopRiot
Theme URI: https://slopriot.com
Author: SlopRiot
Author URI: https://slopriot.com
Description: AI video production for businesses that want attention. Punk meets 90s LA weirdness. We colonize the uncanny valley.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: slopriot
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — DESIGN SYSTEM
   ============================================================ */

:root {
  /* Colors */
  --color-bg:          #0D0020;
  --color-bg-surface:  #160030;
  --color-bg-card:     #1A0038;
  --color-bg-alt:      #0A0018;
  --color-green:       #8FFF1F;
  --color-magenta:     #FF2AFF;
  --color-white:       #FFFFFF;
  --color-red:         #E02020;
  --color-body-text:   #C4B8D8;
  --color-muted:       #7A6A8A;
  --color-border:      rgba(143, 255, 31, 0.12);
  --color-border-dim:  rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-logo:     'Luckiest Guy', cursive;
  --font-heading:  'Space Grotesk', sans-serif;
  --font-body:     'Space Grotesk', sans-serif;
  --font-mono:     'Space Mono', monospace;

  /* Spacing */
  --section-pad-y: clamp(80px, 10vw, 140px);
  --section-pad-x: clamp(20px, 5vw, 80px);

  /* Effects */
  --glow-green:    0 0 30px rgba(143, 255, 31, 0.25), 0 0 60px rgba(143, 255, 31, 0.1);
  --glow-magenta:  0 0 30px rgba(255, 42, 255, 0.25), 0 0 60px rgba(255, 42, 255, 0.1);
  --transition:    0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-body-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-green);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--color-white);
}

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.display-xl {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.display-lg {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.display-md {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.15;
}

.display-sm {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  line-height: 1.25;
}

.body-lg {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.6;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.label-green {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-green   { color: var(--color-green); }
.text-magenta { color: var(--color-magenta); }
.text-white   { color: var(--color-white); }
.text-muted   { color: var(--color-muted); }
.text-red     { color: var(--color-red); }

.bg-surface   { background-color: var(--color-bg-surface); }
.bg-card      { background-color: var(--color-bg-card); }
.bg-alt       { background-color: var(--color-bg-alt); }

.section-pad {
  padding: var(--section-pad-y) var(--section-pad-x);
}

.border-green {
  border: 1px solid var(--color-border);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-riot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-green);
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border: 2px solid var(--color-green);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.btn-riot:hover {
  background: var(--color-bg);
  color: var(--color-green);
  box-shadow: var(--glow-green);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-riot:active {
  transform: translateY(0);
}

.btn-riot-lg {
  font-size: 1.15rem;
  padding: 18px 36px;
}

.btn-riot-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  text-decoration: none;
  white-space: nowrap;
}

.btn-riot-ghost:hover {
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-nav-cta {
  display: inline-block;
  background: var(--color-green);
  color: var(--color-bg) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 8px 20px;
  letter-spacing: -0.01em;
  transition: background var(--transition), box-shadow var(--transition);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  text-decoration: none;
}

.btn-nav-cta:hover {
  background: var(--color-white);
  box-shadow: var(--glow-green);
  color: var(--color-bg) !important;
  text-decoration: none;
}

/* ============================================================
   NAVIGATION / HEADER
   ============================================================ */

.sr-navbar {
  background-color: rgba(13, 0, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-dim);
  padding: 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.sr-navbar.scrolled {
  background-color: rgba(13, 0, 32, 0.98);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}

.sr-navbar .navbar-brand {
  padding: 12px 0;
  line-height: 1;
}

.sr-logo {
  height: 44px;
  width: auto;
}

.sr-navbar .navbar-toggler {
  border: 1px solid rgba(143, 255, 31, 0.3);
  padding: 6px 10px;
  color: var(--color-green);
}

.sr-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(143, 255, 31, 0.3);
}

.sr-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%238FFF1F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.sr-nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-body-text) !important;
  letter-spacing: 0.02em;
  padding: 8px 16px !important;
  transition: color var(--transition);
  position: relative;
}

.sr-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--color-green);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.sr-nav-link:hover {
  color: var(--color-white) !important;
}

.sr-nav-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 991px) {
  .sr-navbar .navbar-collapse {
    background: rgba(13, 0, 32, 0.98);
    padding: 16px;
    border-top: 1px solid var(--color-border-dim);
    margin-top: 4px;
  }

  .sr-nav-link {
    padding: 12px 8px !important;
  }

  .sr-nav-link::after {
    display: none;
  }

  .btn-nav-cta {
    margin-top: 12px;
    display: inline-block;
  }
}

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */

.noise-overlay {
  position: relative;
}

.noise-overlay::before {
  content: '';
  position: absolute;
  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");
  background-size: 256px 256px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

.noise-overlay > * {
  position: relative;
  z-index: 1;
}

/* ============================================================
   DECORATIVE ELEMENTS
   ============================================================ */

.glitch-line {
  display: inline-block;
  position: relative;
}

.glitch-line::before {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  top: 0;
  color: var(--color-magenta);
  clip-path: inset(0 0 60% 0);
  animation: glitch-top 4s infinite linear alternate-reverse;
  opacity: 0.7;
}

.glitch-line::after {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  top: 0;
  color: var(--color-green);
  clip-path: inset(60% 0 0 0);
  animation: glitch-bottom 3.5s infinite linear alternate-reverse;
  opacity: 0.7;
}

@keyframes glitch-top {
  0%, 85%    { transform: translate(0, 0); clip-path: inset(0 0 60% 0); }
  86%        { transform: translate(-3px, 0); clip-path: inset(0 0 55% 0); }
  87%        { transform: translate(3px, 0); clip-path: inset(5% 0 60% 0); }
  88%, 100%  { transform: translate(0, 0); clip-path: inset(0 0 60% 0); }
}

@keyframes glitch-bottom {
  0%, 90%    { transform: translate(0, 0); clip-path: inset(60% 0 0 0); }
  91%        { transform: translate(3px, 0); clip-path: inset(58% 0 0 0); }
  92%        { transform: translate(-3px, 0); clip-path: inset(65% 0 0 0); }
  93%, 100%  { transform: translate(0, 0); clip-path: inset(60% 0 0 0); }
}

.scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-green);
  opacity: 0.4;
  animation: scan 6s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  0%   { top: 0%; opacity: 0.4; }
  50%  { opacity: 0.1; }
  100% { top: 100%; opacity: 0; }
}

.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}

.marquee-inner {
  display: inline-block;
  animation: marquee-scroll 24s linear infinite;
}

.marquee-inner span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 0 32px;
}

.marquee-inner span.accent {
  color: var(--color-green);
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.sr-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--section-pad-x) 80px;
  position: relative;
  overflow: hidden;
}

.sr-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(143, 255, 31, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sr-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 42, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-pre-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-pre-label .dot {
  width: 7px;
  height: 7px;
  background: var(--color-green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(143, 255, 31, 0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(143, 255, 31, 0); }
}

.hero-headline {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-headline .hl-green {
  color: var(--color-green);
  display: block;
}

.hero-headline .hl-magenta {
  color: var(--color-magenta);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-body-text);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-price-nudge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-proof-item .proof-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-proof-item .proof-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.hero-proof-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border-dim);
}

@media (max-width: 767px) {
  .sr-hero {
    padding: 120px 20px 60px;
    min-height: auto;
    padding-top: calc(80px + 60px);
  }

  .hero-headline {
    font-size: clamp(2.8rem, 13vw, 3.8rem);
  }

  .hero-proof-divider {
    display: none;
  }

  .hero-proof-strip {
    gap: 20px;
  }
}

/* ============================================================
   VIDEO REEL PLACEHOLDER
   ============================================================ */

.reel-section {
  padding: 0 var(--section-pad-x) var(--section-pad-y);
  position: relative;
}

.reel-container {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  aspect-ratio: 16 / 9;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reel-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  text-align: center;
}

.reel-play-btn {
  width: 80px;
  height: 80px;
  border: 2px solid var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  background: rgba(143, 255, 31, 0.08);
}

.reel-play-btn:hover {
  background: rgba(143, 255, 31, 0.2);
  box-shadow: var(--glow-green);
  transform: scale(1.06);
}

.reel-play-btn svg {
  margin-left: 4px;
  fill: var(--color-green);
  width: 30px;
  height: 30px;
}

/* ============================================================
   MANIFESTO STRIP
   ============================================================ */

.manifesto-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border-dim);
  border-bottom: 1px solid var(--color-border-dim);
  position: relative;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.manifesto-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.manifesto-quote em {
  font-style: normal;
  color: var(--color-green);
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.manifesto-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-body-text);
}

@media (max-width: 767px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ============================================================
   WHAT WE MAKE SECTION
   ============================================================ */

.what-section {
  padding: var(--section-pad-y) var(--section-pad-x);
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 12px;
}

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

.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-dim);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  border-color: var(--color-border);
  background: #1E0040;
}

.product-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: 24px;
  display: block;
}

.product-icon {
  width: 44px;
  height: 44px;
  background: rgba(143, 255, 31, 0.08);
  border: 1px solid rgba(143, 255, 31, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--color-body-text);
  line-height: 1.65;
  margin-bottom: 24px;
}

.product-detail {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--color-green);
  text-transform: uppercase;
  border-top: 1px solid var(--color-border-dim);
  padding-top: 16px;
}

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

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

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--color-bg-alt);
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--color-border), rgba(143, 255, 31, 0.4), var(--color-border));
  z-index: 0;
}

.step-item {
  padding: 0 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-dot {
  width: 56px;
  height: 56px;
  background: var(--color-bg);
  border: 2px solid var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-green);
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background var(--transition), box-shadow var(--transition);
}

.step-item:hover .step-dot {
  background: rgba(143, 255, 31, 0.1);
  box-shadow: var(--glow-green);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.step-body {
  font-size: 0.88rem;
  color: var(--color-body-text);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .step-item {
    padding: 0;
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .step-dot {
    flex-shrink: 0;
    margin: 0;
    width: 44px;
    height: 44px;
    font-size: 0.7rem;
  }

  .step-content {
    flex: 1;
  }
}

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

/* ============================================================
   PAIN POINT SECTION (Problem / Agitate / Solve)
   ============================================================ */

.pain-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative;
}

.pain-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pain-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border-dim);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pain-item:first-child {
  border-top: 1px solid var(--color-border-dim);
}

.pain-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(143, 255, 31, 0.1);
  border: 1px solid rgba(143, 255, 31, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 0.75rem;
  color: var(--color-green);
}

.pain-text {
  font-size: 0.95rem;
  color: var(--color-body-text);
  line-height: 1.6;
}

.pain-text strong {
  color: var(--color-white);
  font-weight: 700;
}

.pain-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.callout-box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 32px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.callout-box .callout-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.callout-box .callout-text em {
  color: var(--color-green);
  font-style: normal;
}

@media (max-width: 767px) {
  .pain-cols {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border-dim);
  border-bottom: 1px solid var(--color-border-dim);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-dim);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 8rem;
  line-height: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  color: rgba(143, 255, 31, 0.06);
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(143, 255, 31, 0.2);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-body-text);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border-dim);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
}

.testimonial-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Placeholder testimonial state */
.testimonial-card.placeholder {
  border-style: dashed;
  border-color: rgba(143, 255, 31, 0.1);
  opacity: 0.4;
}

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

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

/* ============================================================
   PORTFOLIO / WORK GRID
   ============================================================ */

.work-section {
  padding: var(--section-pad-y) var(--section-pad-x);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 2px;
  margin-top: 48px;
}

.work-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-dim);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
}

.work-item:nth-child(1) { grid-column: span 7; }
.work-item:nth-child(2) { grid-column: span 5; }
.work-item:nth-child(3) { grid-column: span 4; }
.work-item:nth-child(4) { grid-column: span 4; }
.work-item:nth-child(5) { grid-column: span 4; }
.work-item:nth-child(6) { grid-column: span 5; }
.work-item:nth-child(7) { grid-column: span 7; }

.work-item:hover {
  border-color: rgba(143, 255, 31, 0.3);
}

.work-item-label {
  position: relative;
  z-index: 2;
}

.work-item-label .work-type {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green);
  display: block;
  margin-bottom: 4px;
}

.work-item-label .work-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
}

.work-placeholder-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
  gap: 8px;
  padding: 20px;
}

@media (max-width: 767px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .work-item:nth-child(n) {
    grid-column: span 1;
  }

  .work-item:nth-child(1) {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .work-item:nth-child(n) {
    grid-column: span 1;
  }
}

/* ============================================================
   STATS / CREDIBILITY BAR
   ============================================================ */

.stats-section {
  padding: 64px var(--section-pad-x);
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-dim);
  border-bottom: 1px solid var(--color-border-dim);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 20px 28px;
  border-right: 1px solid var(--color-border-dim);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.stat-number span {
  color: var(--color-green);
}

.stat-desc {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  line-height: 1.4;
}

@media (max-width: 767px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .stat-item {
    border-right: 1px solid var(--color-border-dim);
    border-bottom: 1px solid var(--color-border-dim);
    padding: 24px 16px;
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }
}

/* ============================================================
   OBJECTION / FAQ SECTION
   ============================================================ */

.faq-section {
  padding: var(--section-pad-y) var(--section-pad-x);
}

.faq-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}

.faq-question-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
  font-size: 1.2rem;
  transition: background var(--transition), transform var(--transition);
  clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 4px, 100% 100%, 4px 100%, 0 calc(100% - 4px));
}

.faq-item.open .faq-toggle {
  background: rgba(143, 255, 31, 0.1);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 20px;
  font-size: 0.93rem;
  color: var(--color-body-text);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

@media (max-width: 767px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  padding: var(--section-pad-y) var(--section-pad-x);
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border-dim);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(143, 255, 31, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--color-body-text);
  max-width: 480px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.cta-fine-print {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 20px;
  position: relative;
}

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

.sr-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-dim);
  padding: 48px var(--section-pad-x) 36px;
}

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

.footer-logo {
  height: 36px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.footer-tagline span {
  color: var(--color-green);
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border-dim);
  color: var(--color-muted);
  font-size: 0.8rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}

.footer-social a:hover {
  border-color: var(--color-green);
  color: var(--color-green);
  background: rgba(143, 255, 31, 0.06);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color var(--transition);
}

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

@media (max-width: 575px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ============================================================
   ANIMATIONS & SCROLL EFFECTS
   ============================================================ */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  animation: fade-up 0.6s ease forwards;
}

.animate-in.delay-1 { animation-delay: 0.1s; }
.animate-in.delay-2 { animation-delay: 0.2s; }
.animate-in.delay-3 { animation-delay: 0.3s; }
.animate-in.delay-4 { animation-delay: 0.45s; }
.animate-in.delay-5 { animation-delay: 0.6s; }

/* IntersectionObserver target — resets until visible */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ============================================================
   SELECTION & SCROLLBAR
   ============================================================ */

::selection {
  background: var(--color-green);
  color: var(--color-bg);
}

::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(143, 255, 31, 0.3);
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   WORDPRESS CORE CLASSES
   ============================================================ */

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft  { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-muted);
  margin-top: 8px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
