/* ========================================
   SinSpin Partners — Stylesheet
   Naughty. Sexy. Red Neon.
   ======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* --- Custom Properties --- */
:root {
  --clr-bg: #080810;
  --clr-bg-alt: #0e0e18;
  --clr-surface: #14141f;
  --clr-border: #2a1525;
  --clr-border-glow: rgba(230, 57, 70, 0.25);
  --clr-text: #f0dde0;
  --clr-text-muted: #b08890;
  --clr-accent: #e63946;
  --clr-accent-glow: rgba(230, 57, 70, 0.6);
  --clr-accent-soft: rgba(230, 57, 70, 0.15);
  --clr-accent-light: #ff6b6b;
  --clr-accent-hot: #ff2d4a;
  --clr-gold: #f4a261;
  --clr-white: #ffffff;
  --clr-neon-pink: #ff1a5e;
  --clr-neon-pink-glow: rgba(255, 26, 94, 0.5);

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Outfit', -apple-system, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.5rem;
  --fs-5xl: 4.5rem;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: 0.3s ease;
  --nav-height: 72px;

  --glow-sm: 0 0 10px var(--clr-accent-glow);
  --glow-md: 0 0 20px var(--clr-accent-glow), 0 0 40px rgba(230, 57, 70, 0.2);
  --glow-lg: 0 0 20px var(--clr-accent-glow), 0 0 60px rgba(230, 57, 70, 0.3), 0 0 100px rgba(230, 57, 70, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 0 40px rgba(230, 57, 70, 0.12);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-label {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
  text-shadow: 0 0 20px var(--clr-accent-glow);
  animation: label-breathe 4s ease-in-out infinite;
}

@keyframes label-breathe {
  0%, 100% { text-shadow: 0 0 20px var(--clr-accent-glow); }
  50% { text-shadow: 0 0 10px var(--clr-accent-glow), 0 0 30px var(--clr-accent-glow), 0 0 50px rgba(230, 57, 70, 0.3); }
}

.section-heading {
  font-size: var(--fs-3xl);
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 0 40px rgba(230, 57, 70, 0.15);
}

.section-subtext {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 600px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* --- Animated ambient neon glow --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(255, 26, 94, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(230, 57, 70, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 26, 94, 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
  animation: ambient-shift 12s ease-in-out infinite alternate;
}

@keyframes ambient-shift {
  0% {
    background:
      radial-gradient(ellipse at 15% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
      radial-gradient(ellipse at 85% 50%, rgba(255, 26, 94, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 0%, rgba(230, 57, 70, 0.12) 0%, transparent 40%),
      radial-gradient(ellipse at 50% 100%, rgba(255, 26, 94, 0.08) 0%, transparent 40%);
  }
  50% {
    background:
      radial-gradient(ellipse at 30% 30%, rgba(255, 26, 94, 0.12) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 70%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 10%, rgba(230, 57, 70, 0.08) 0%, transparent 40%),
      radial-gradient(ellipse at 20% 90%, rgba(255, 26, 94, 0.1) 0%, transparent 40%);
  }
  100% {
    background:
      radial-gradient(ellipse at 60% 20%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
      radial-gradient(ellipse at 40% 80%, rgba(255, 26, 94, 0.1) 0%, transparent 50%),
      radial-gradient(ellipse at 10% 40%, rgba(255, 26, 94, 0.08) 0%, transparent 40%),
      radial-gradient(ellipse at 90% 60%, rgba(230, 57, 70, 0.12) 0%, transparent 40%);
  }
}

/* --- Animated neon pulse orb behind sections --- */
body::after {
  content: '';
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: orb-pulse 8s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 1;
  }
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-up.visible,
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Neon Text Effect --- */
.neon-text {
  color: var(--clr-accent);
  text-shadow:
    0 0 7px var(--clr-accent-glow),
    0 0 20px var(--clr-accent-glow),
    0 0 42px rgba(230, 57, 70, 0.4),
    0 0 80px rgba(230, 57, 70, 0.15);
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow:
      0 0 7px var(--clr-accent-glow),
      0 0 20px var(--clr-accent-glow),
      0 0 42px rgba(230, 57, 70, 0.4),
      0 0 80px rgba(230, 57, 70, 0.15);
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

.neon-flicker {
  animation: neon-flicker 2s ease-in-out 1;
}

/* --- Neon underline for headings --- */
.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-neon-pink), var(--clr-accent));
  margin-top: var(--space-md);
  border-radius: 3px;
  box-shadow: 0 0 8px var(--clr-accent-glow), 0 0 20px rgba(230, 57, 70, 0.3);
  animation: underline-glow 3s ease-in-out infinite;
}

@keyframes underline-glow {
  0%, 100% { box-shadow: 0 0 8px var(--clr-accent-glow), 0 0 20px rgba(230, 57, 70, 0.3); }
  50% { box-shadow: 0 0 14px var(--clr-accent-glow), 0 0 35px rgba(230, 57, 70, 0.5), 0 0 60px rgba(230, 57, 70, 0.15); }
}

.text-center .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-hot) 100%);
  color: var(--clr-white);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.4), 0 0 60px rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--clr-accent-light) 0%, var(--clr-accent) 100%);
  box-shadow: 0 0 30px rgba(230, 57, 70, 0.6), 0 0 80px rgba(230, 57, 70, 0.25);
  transform: translateY(-2px);
}

/* Pulsing glow animation on primary buttons */
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(230, 57, 70, 0.4), 0 0 60px rgba(230, 57, 70, 0.15); }
  50% { box-shadow: 0 0 30px rgba(230, 57, 70, 0.6), 0 0 80px rgba(230, 57, 70, 0.3); }
}

.btn-primary {
  animation: btn-pulse 3s ease-in-out infinite;
}

.btn-primary:hover {
  animation: none;
}

.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(230, 57, 70, 0.4);
}

.btn-ghost:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: var(--clr-accent-soft);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: var(--fs-sm);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(8, 8, 16, 0.95);
  backdrop-filter: blur(16px);
  box-shadow:
    0 1px 0 rgba(230, 57, 70, 0.2),
    0 4px 30px rgba(230, 57, 70, 0.1);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 12px var(--clr-accent-glow));
}

.footer-brand .logo-img {
  height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color var(--transition), text-shadow var(--transition);
}

.nav-links a:hover {
  color: var(--clr-accent-light);
  text-shadow: 0 0 12px var(--clr-accent-glow);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(230, 57, 70, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(255, 26, 94, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 70%, rgba(230, 57, 70, 0.1) 0%, transparent 40%);
}

/* Animated sweeping neon light across hero */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.04), transparent);
  animation: hero-sweep 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes hero-sweep {
  0% { left: -50%; }
  50% { left: 100%; }
  100% { left: -50%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-3xl) var(--space-xl);
}

.hero-tagline {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-lg);
}

.hero-headline {
  font-size: var(--fs-5xl);
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-headline em {
  font-style: italic;
  color: var(--clr-accent);
  text-shadow:
    0 0 10px var(--clr-accent-glow),
    0 0 30px var(--clr-accent-glow),
    0 0 60px rgba(230, 57, 70, 0.3),
    0 0 100px rgba(230, 57, 70, 0.15);
}

/* Remove the neon underline on hero headline */
.hero-headline::after {
  display: none;
}

.hero-sub {
  font-size: var(--fs-lg);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-2xl);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-proof {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.hero-proof strong {
  color: var(--clr-gold);
  font-weight: 600;
}

/* Hero load animation */
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  opacity: 0;
  animation: hero-enter 0.8s ease forwards;
}

.hero-content > :nth-child(1) { animation-delay: 0.2s; }
.hero-content > :nth-child(2) { animation-delay: 0.4s; }
.hero-content > :nth-child(3) { animation-delay: 0.6s; }
.hero-content > :nth-child(4) { animation-delay: 0.8s; }
.hero-content > :nth-child(5) { animation-delay: 1.0s; }

/* Scroll chevron */
.scroll-chevron {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.scroll-chevron.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-chevron svg {
  width: 32px;
  height: 32px;
  color: var(--clr-accent);
  filter: drop-shadow(0 0 6px var(--clr-accent-glow));
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

/* Ember / particle effect */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--clr-accent);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 6px var(--clr-accent-glow), 0 0 12px rgba(230, 57, 70, 0.3);
  animation: float-up linear infinite;
}

.particle:nth-child(odd) {
  background: var(--clr-neon-pink);
  box-shadow: 0 0 6px var(--clr-neon-pink-glow), 0 0 12px rgba(255, 26, 94, 0.3);
}

.particle:nth-child(1)  { left: 10%; animation-duration: 8s;  animation-delay: 0s;   width: 3px; height: 3px; }
.particle:nth-child(2)  { left: 20%; animation-duration: 10s; animation-delay: 1s;   width: 5px; height: 5px; }
.particle:nth-child(3)  { left: 35%; animation-duration: 7s;  animation-delay: 2s;   }
.particle:nth-child(4)  { left: 50%; animation-duration: 9s;  animation-delay: 0.5s; width: 6px; height: 6px; }
.particle:nth-child(5)  { left: 65%; animation-duration: 11s; animation-delay: 3s;   }
.particle:nth-child(6)  { left: 75%; animation-duration: 8s;  animation-delay: 1.5s; width: 3px; height: 3px; }
.particle:nth-child(7)  { left: 85%; animation-duration: 10s; animation-delay: 2.5s; }
.particle:nth-child(8)  { left: 45%; animation-duration: 7s;  animation-delay: 4s;   width: 5px; height: 5px; }
.particle:nth-child(9)  { left: 55%; animation-duration: 12s; animation-delay: 0.8s; }
.particle:nth-child(10) { left: 90%; animation-duration: 9s;  animation-delay: 3.5s; width: 3px; height: 3px; }

@keyframes float-up {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-20vh) scale(1);
    opacity: 0;
  }
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border-glow);
  border-bottom: 1px solid var(--clr-border-glow);
  padding: var(--space-3xl) 0;
  position: relative;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), var(--clr-neon-pink), var(--clr-accent), transparent);
  opacity: 0.6;
  animation: neon-scan 4s ease-in-out infinite alternate;
}

.trust-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), var(--clr-neon-pink), var(--clr-accent), transparent);
  opacity: 0.6;
  animation: neon-scan 4s ease-in-out infinite alternate-reverse;
}

@keyframes neon-scan {
  0% {
    background-position: 0% 0%;
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    background-position: 100% 0%;
    opacity: 0.4;
  }
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.trust-item-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-4xl);
  color: var(--clr-accent);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-xs);
  text-shadow:
    0 0 10px var(--clr-accent-glow),
    0 0 30px var(--clr-accent-glow),
    0 0 60px rgba(230, 57, 70, 0.25);
}

.trust-item-label {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* --- Who We Are --- */
.who-we-are .content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.who-we-are .copy-block p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-md);
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.feature-card {
  background: linear-gradient(135deg, var(--clr-surface) 0%, rgba(230, 57, 70, 0.03) 100%);
  border: 1px solid var(--clr-border-glow);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Red neon line on left edge of cards */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--clr-accent);
  box-shadow: 0 0 10px var(--clr-accent-glow), 0 0 20px rgba(230, 57, 70, 0.3);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
  box-shadow:
    0 8px 30px rgba(230, 57, 70, 0.2),
    0 0 60px rgba(230, 57, 70, 0.08),
    inset 0 0 30px rgba(230, 57, 70, 0.03);
}

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

.feature-card-icon {
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 0 6px var(--clr-accent-glow));
}

.feature-card-icon svg {
  display: inline-block;
}

.feature-card h3 {
  font-family: var(--ff-body);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.feature-card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

/* --- How It Works --- */
.how-it-works {
  background:
    radial-gradient(ellipse at 50% 80%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
    var(--clr-bg-alt);
}

/* Animated diagonal neon streaks */
.how-it-works::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(230, 57, 70, 0.015) 80px,
    rgba(230, 57, 70, 0.015) 81px
  );
  pointer-events: none;
  animation: streak-shift 20s linear infinite;
}

@keyframes streak-shift {
  0% { transform: translateX(0); }
  100% { transform: translateX(113px); }
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  position: relative;
}

/* Connecting line — neon glowing, behind circles */
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67%);
  right: calc(16.67%);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-neon-pink), var(--clr-accent));
  box-shadow: 0 0 8px var(--clr-accent-glow), 0 0 20px rgba(230, 57, 70, 0.3);
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  border: 2px solid var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  color: var(--clr-accent);
  font-weight: 700;
  position: relative;
  z-index: 3;
  box-shadow:
    0 0 15px var(--clr-accent-glow),
    0 0 30px rgba(230, 57, 70, 0.15),
    inset 0 0 20px rgba(230, 57, 70, 0.08);
  text-shadow: 0 0 10px var(--clr-accent-glow);
  transition: all var(--transition);
}

.step:hover .step-number {
  box-shadow:
    0 0 25px var(--clr-accent-glow),
    0 0 50px rgba(230, 57, 70, 0.25),
    inset 0 0 30px rgba(230, 57, 70, 0.12);
  border-color: var(--clr-accent-light);
  background: var(--clr-surface);
}

.step h3 {
  font-family: var(--ff-body);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.step p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  max-width: 280px;
  margin: 0 auto;
}

/* --- Mid CTA --- */
.mid-cta {
  text-align: center;
  padding: var(--space-5xl) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(230, 57, 70, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 26, 94, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 26, 94, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, var(--clr-bg-alt) 0%, var(--clr-bg) 100%);
}

/* Neon horizontal line accents */
.mid-cta::before,
.mid-cta::after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
  opacity: 0.4;
}

.mid-cta::before { top: 0; }
.mid-cta::after { bottom: 0; }

.mid-cta .section-heading {
  font-size: var(--fs-4xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-lg);
}

.mid-cta .section-subtext {
  margin: 0 auto var(--space-2xl);
}

.mid-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* --- Accent Text (used throughout) --- */
.accent-text {
  color: var(--clr-accent);
  font-weight: 600;
  font-style: italic;
  text-shadow: 0 0 20px var(--clr-accent-glow);
}

.card-accent {
  color: var(--clr-accent);
  font-weight: 600;
  font-size: var(--fs-sm);
  margin-top: var(--space-sm);
  font-style: italic;
}

/* --- Trust Footnote --- */
.trust-footnote {
  text-align: center;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  font-style: italic;
  margin-top: var(--space-lg);
}

/* --- Steps CTA --- */
.steps-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-3xl);
  flex-wrap: wrap;
}

/* --- For Operators --- */
.operator-intro {
  margin-bottom: var(--space-3xl);
}

.btn-lg {
  padding: 18px 40px;
  font-size: var(--fs-lg);
}

.operator-content > div {
  margin-bottom: var(--space-4xl);
}

.operator-content > div:last-child {
  margin-bottom: 0;
}

.operator-welcome p {
  color: var(--clr-text-muted);
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
}

.operator-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.operator-why p,
.operator-deals p,
.operator-how p,
.operator-warning p,
.operator-taste p,
.operator-future p {
  color: var(--clr-text-muted);
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
}

.operator-warning ul,
.operator-taste ul,
.operator-future ul {
  margin-bottom: var(--space-lg);
}

.operator-warning ul li,
.operator-taste ul li,
.operator-future ul li {
  color: var(--clr-text-muted);
  font-size: var(--fs-md);
  padding: var(--space-xs) 0;
  padding-left: var(--space-lg);
  position: relative;
}

.operator-warning ul li::before,
.operator-taste ul li::before,
.operator-future ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-weight: 700;
  text-shadow: 0 0 8px var(--clr-accent-glow);
}

/* Warning box */
.operator-warning {
  background: linear-gradient(135deg, var(--clr-surface) 0%, rgba(230, 57, 70, 0.06) 100%);
  border: 1px solid var(--clr-border-glow);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  position: relative;
}

.operator-warning::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), transparent);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--clr-accent-glow);
}

.operator-warning h3 {
  font-family: var(--ff-body);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
}

/* Deals Table */
.deals-intro {
  font-family: var(--ff-body);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-xl);
}

.deals-table {
  border: 1px solid var(--clr-border-glow);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.deal-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--clr-border);
}

.deal-row:last-child {
  border-bottom: none;
}

.deal-row > div {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.deal-header {
  background: rgba(230, 57, 70, 0.08);
}

.deal-header > div {
  font-weight: 600;
  color: var(--clr-white);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.deal-type {
  color: var(--clr-accent) !important;
  font-weight: 600 !important;
  text-shadow: 0 0 10px var(--clr-accent-glow);
  border-right: 1px solid var(--clr-border);
}

.deals-note {
  font-size: var(--fs-sm) !important;
  font-style: italic;
}

/* Operator Steps */
.operator-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.o-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.o-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-bg);
  border: 2px solid var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  color: var(--clr-accent);
  font-weight: 700;
  box-shadow: 0 0 12px var(--clr-accent-glow);
  text-shadow: 0 0 8px var(--clr-accent-glow);
}

.o-step h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.o-step p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

/* Operator Form */
.operator-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.operator-form-copy {
  display: flex;
  align-items: center;
  min-height: 200px;
}

.operator-form-copy .accent-text {
  font-size: var(--fs-3xl);
  font-family: var(--ff-heading);
}

/* Contact form — neon border glow */
.contact-form {
  background: linear-gradient(180deg, var(--clr-surface) 0%, rgba(230, 57, 70, 0.04) 100%);
  border: 1px solid var(--clr-border-glow);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  position: relative;
  box-shadow:
    0 0 40px rgba(230, 57, 70, 0.08),
    0 0 80px rgba(230, 57, 70, 0.03);
}

/* Glowing top border on form */
.contact-form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), var(--clr-neon-pink), var(--clr-accent), transparent);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--clr-accent-glow), 0 0 30px rgba(230, 57, 70, 0.2);
}

.contact-form h3 {
  font-family: var(--ff-body);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-size: var(--fs-base);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.2);
}

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

.form-group select option {
  background: var(--clr-bg);
}

.form-success,
.form-error {
  display: none;
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  margin-top: var(--space-md);
}

.form-success {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}

.form-error {
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.3);
  color: var(--clr-accent-light);
}

.form-success.active,
.form-error.active {
  display: block;
}

/* --- FAQ --- */
.faq {
  background: var(--clr-bg-alt);
}

.faq-b2b {
  background: var(--clr-bg);
}

.faq-list {
  max-width: 720px;
  margin: var(--space-3xl) auto 0;
}

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

.faq-item.active {
  border-bottom-color: var(--clr-accent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--clr-white);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition), text-shadow var(--transition);
}

.faq-question:hover {
  color: var(--clr-accent);
  text-shadow: 0 0 15px var(--clr-accent-glow);
}

.faq-item.active .faq-question {
  color: var(--clr-accent);
  text-shadow: 0 0 10px rgba(230, 57, 70, 0.3);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  margin-left: var(--space-md);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition);
}

.faq-icon::before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

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

.faq-answer-inner {
  padding-bottom: var(--space-lg);
  color: var(--clr-text-muted);
  font-size: var(--fs-base);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--clr-border);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), var(--clr-neon-pink), var(--clr-accent), transparent);
  opacity: 0.5;
  box-shadow: 0 0 10px var(--clr-accent-glow);
  animation: neon-scan 4s ease-in-out infinite alternate;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  max-width: 300px;
  margin-bottom: var(--space-lg);
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: all var(--transition);
}

.footer-socials a:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.3);
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
}

.footer-col a {
  display: block;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
  padding: var(--space-xs) 0;
  transition: color var(--transition), text-shadow var(--transition);
}

.footer-col a:hover {
  color: var(--clr-accent-light);
  text-shadow: 0 0 10px var(--clr-accent-glow);
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.footer-bottom a {
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--clr-accent-light);
}

/* --- Responsive: 1200px --- */
@media (max-width: 1200px) {
  .hero-headline {
    font-size: var(--fs-4xl);
  }

  .trust-item-number {
    font-size: var(--fs-3xl);
  }
}

/* --- Responsive: 768px --- */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  /* Mobile menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(8, 8, 16, 0.98);
    backdrop-filter: blur(12px);
    padding: var(--space-xl);
    gap: var(--space-lg);
    border-bottom: 1px solid var(--clr-border-glow);
  }

  .hero-headline {
    font-size: var(--fs-3xl);
  }

  .hero-sub {
    font-size: var(--fs-base);
  }

  .hero-ctas {
    flex-direction: column;
  }

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

  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .trust-item-number {
    font-size: var(--fs-3xl);
  }

  .who-we-are .content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .operator-perks {
    grid-template-columns: 1fr;
  }

  .operator-form-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .operator-form-copy {
    min-height: auto;
  }

  .deal-row {
    grid-template-columns: 120px 1fr;
  }

  .steps-cta {
    flex-direction: column;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .steps::before {
    display: none;
  }

  .mid-cta .section-heading {
    font-size: var(--fs-3xl);
  }

  .mid-cta-buttons {
    flex-direction: column;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .section {
    padding: var(--space-3xl) 0;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .fade-up,
  .fade-in {
    opacity: 1;
    transform: none;
  }

  .hero-content > * {
    opacity: 1;
  }

  .particle {
    display: none;
  }

  body::before,
  body::after,
  .hero::after,
  .how-it-works::after {
    animation: none !important;
  }
}
