/* ============================================
   RANKPROOF LANDING PAGE - STATIC CSS
   Modern, High-Conversion Design
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Colors */
  --color-bg: #0a0a0f;
  --color-bg-card: rgba(15, 15, 25, 0.6);
  --color-bg-card-light: rgba(255, 255, 255, 0.05);
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.6);
  --color-text-dim: rgba(255, 255, 255, 0.5);
  --color-text-faint: rgba(255, 255, 255, 0.4);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-light: rgba(255, 255, 255, 0.05);

  /* Neon Colors */
  --color-neon-blue: #00d4ff;
  --color-neon-cyan: #00ffcc;
  --color-neon-purple: #a855f7;
  --color-neon-pink: #ec4899;

  /* Status Colors */
  --color-red: #ef4444;
  --color-green: #22c55e;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-neon-blue) 0%, var(--color-neon-cyan) 100%);
  --gradient-text: linear-gradient(135deg, var(--color-neon-blue) 0%, var(--color-neon-cyan) 50%, var(--color-neon-purple) 100%);
  --gradient-text-alt: linear-gradient(135deg, var(--color-neon-purple) 0%, var(--color-neon-pink) 50%, var(--color-neon-blue) 100%);
  --gradient-card: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);

  /* Spacing */
  --section-padding: 8rem;
  --container-padding: 1.5rem;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

button, a {
  cursor: pointer;
}

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

strong {
  font-weight: 600;
  color: var(--color-text);
}

/* Selection */
::selection {
  background: rgba(0, 212, 255, 0.3);
  color: var(--color-text);
}

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

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 255, 0.5);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.text-cyan {
  color: var(--color-neon-cyan);
}

.text-glow {
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
}

.glass {
  background: var(--color-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
}

.glass-light {
  background: var(--color-bg-card-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
}

.glow-blue {
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.3), 0 0 80px rgba(0, 212, 255, 0.1);
}

.glow-cyan {
  box-shadow: 0 0 40px rgba(0, 255, 204, 0.3), 0 0 80px rgba(0, 255, 204, 0.1);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translateY(-20px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: translate3d(0, 0, 0) scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes ringPulse {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0;
  }
}

/* Animation Classes */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
  animation: floatSlow 8s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

.animate-bounce-subtle {
  animation: bounceSubtle 2s ease-in-out infinite;
}

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

.animate-scale-in {
  opacity: 0;
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-slide-in-left {
  opacity: 0;
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
  opacity: 0;
  animation: slideInRight 0.8s ease-out forwards;
}

/* Animation Delays */
.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }
.animate-delay-400 { animation-delay: 400ms; }
.animate-delay-500 { animation-delay: 500ms; }

[data-delay="0"] { animation-delay: 0ms; }
[data-delay="50"] { animation-delay: 50ms; }
[data-delay="100"] { animation-delay: 100ms; }
[data-delay="150"] { animation-delay: 150ms; }
[data-delay="200"] { animation-delay: 200ms; }
[data-delay="250"] { animation-delay: 250ms; }
[data-delay="300"] { animation-delay: 300ms; }
[data-delay="350"] { animation-delay: 350ms; }
[data-delay="400"] { animation-delay: 400ms; }
[data-delay="450"] { animation-delay: 450ms; }
[data-delay="500"] { animation-delay: 500ms; }
[data-delay="550"] { animation-delay: 550ms; }

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */
.background-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.background-effects__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.background-effects__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
}

.background-effects__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
  transition: opacity 0.5s ease-out;
}

.background-effects__orb--cyan {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
  opacity: 0.3;
  left: -10%;
  top: 0;
}

.background-effects__orb--purple {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
  opacity: 0.2;
  right: -10%;
  bottom: 20%;
}

/* ============================================
   LOGO HEADER
   ============================================ */
.logo-header {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 3rem 1rem 2rem;
  z-index: 10;
}

.logo-header__container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
}

.logo-header__glow {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(168, 85, 247, 0.2) 40%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}

.logo-header__image {
  position: relative;
  width: 120px;
  height: 120px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 60px rgba(168, 85, 247, 0.3));
  transition: transform var(--transition-slow);
}

.logo-header__image:hover {
  transform: scale(1.05);
}

.logo-header__ring {
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
}

.logo-header__ring--1 {
  width: 140px;
  height: 140px;
  border-color: rgba(0, 212, 255, 0.3);
  animation-delay: 0s;
}

.logo-header__ring--2 {
  width: 160px;
  height: 160px;
  border-color: rgba(168, 85, 247, 0.2);
  animation-delay: 0.5s;
}

.logo-header__ring--3 {
  width: 180px;
  height: 180px;
  border-color: rgba(0, 255, 204, 0.15);
  animation-delay: 1s;
}

.logo-header__particles {
  position: absolute;
  inset: -20px;
  pointer-events: none;
}

.logo-header__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-neon-blue);
  border-radius: 50%;
  animation: particleFloat 3s ease-in-out infinite;
}

.logo-header__particle:nth-child(1) { left: 20%; top: 50%; animation-delay: 0s; }
.logo-header__particle:nth-child(2) { left: 80%; top: 40%; animation-delay: 0.5s; background: var(--color-neon-cyan); }
.logo-header__particle:nth-child(3) { left: 30%; top: 70%; animation-delay: 1s; background: var(--color-neon-purple); }
.logo-header__particle:nth-child(4) { left: 70%; top: 60%; animation-delay: 1.5s; }
.logo-header__particle:nth-child(5) { left: 50%; top: 20%; animation-delay: 2s; background: var(--color-neon-cyan); }
.logo-header__particle:nth-child(6) { left: 40%; top: 80%; animation-delay: 2.5s; background: var(--color-neon-purple); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: var(--color-bg);
}

.nav__name {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav__menu {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.header-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.header-cta-sub {
  margin-top: 0.18rem;
  padding: 0.08rem 0.42rem;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: rgba(222, 244, 255, 0.84);
  background: linear-gradient(180deg, rgba(0, 214, 255, 0.09), rgba(255, 209, 102, 0.08));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 6px 16px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
  text-transform: lowercase;
}

@media (max-width: 767px) {
  .header-cta-sub {
    font-size: 8px;
    margin-top: 0.12rem;
    padding: 0.07rem 0.34rem;
  }
}

@media (min-width: 768px) {
  .nav__menu {
    display: flex;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-bg);
}

.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn--gradient {
  background: var(--gradient-primary);
  color: var(--color-bg);
  font-weight: 600;
}

.btn--gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-neon-cyan) 0%, var(--color-neon-purple) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.btn--gradient:hover::before {
  opacity: 1;
}

.btn--gradient span,
.btn--gradient svg {
  position: relative;
  z-index: 1;
}

.btn--gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn--glass {
  background: var(--color-bg-card-light);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.btn__icon {
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.btn__icon--left {
  margin-right: 0.25rem;
}

.btn:hover .btn__icon:last-child {
  transform: translateX(4px);
}

/* ============================================
   SECTION LAYOUT
   ============================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-container--narrow {
  max-width: 900px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-dim);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem var(--container-padding) 4rem;
}

.hero__container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: var(--color-bg-card-light);
  border: 1px solid var(--color-border);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero__badge-icon {
  color: var(--color-neon-cyan);
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 480px) {
  .hero__cta {
    flex-direction: row;
    justify-content: center;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero__scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-dot {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   SERP VISUALIZATION
   ============================================ */
.serp {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.serp__glow {
  position: absolute;
  inset: -40px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 50%, rgba(236, 72, 153, 0.2) 100%);
  filter: blur(40px);
  opacity: 0.5;
  animation: pulseGlow 3s ease-in-out infinite;
}

.serp__card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  overflow: hidden;
}

.serp__search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.serp__search-icon {
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.serp__search span {
  color: var(--color-text-dim);
  font-size: 0.9rem;
}

.serp__results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.serp__result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transform: translate3d(0, 0, 0);
  will-change: transform, border-color, background-color;
  transition: transform var(--transition-normal), border-color var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal);
}

.serp__result.active {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translate3d(0, -2px, 0) scale(1.01);
  box-shadow: 0 14px 40px rgba(0, 212, 255, 0.12);
}

.serp__result-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.serp__result-url {
  font-size: 0.8rem;
  color: var(--color-neon-cyan);
}

.serp__result-title {
  font-size: 1rem;
  font-weight: 500;
}

.serp__result-metrics {
  display: flex;
  gap: 1.5rem;
  opacity: 0.38;
  transform: translate3d(0, 4px, 0) scale(0.98);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.serp__result.active .serp__result-metrics {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.serp__metric {
  text-align: center;
}

.serp__metric-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}

.serp__metric-label {
  font-size: 0.7rem;
  color: var(--color-text-faint);
}

@media (max-width: 639px) {
  .serp__result {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .serp__result-metrics {
    width: 100%;
    justify-content: space-between;
  }
}

/* Floating Metrics */
.serp__float {
  position: absolute;
  display: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 15, 25, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float 6s ease-in-out infinite;
}

.serp__float--right {
  right: -2rem;
  top: 25%;
}

.serp__float--left {
  left: -2rem;
  bottom: 25%;
  animation: floatSlow 8s ease-in-out infinite;
}

.serp__float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: var(--color-bg);
  margin-bottom: 0.5rem;
}

.serp__float-icon--purple {
  background: linear-gradient(135deg, var(--color-neon-purple) 0%, var(--color-neon-pink) 100%);
}

.serp__float-content {
  display: flex;
  flex-direction: column;
}

.serp__float-label {
  font-size: 0.7rem;
  color: var(--color-text-faint);
}

.serp__float-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

@media (min-width: 1024px) {
  .serp__float {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .serp__float-icon {
    margin-bottom: 0;
  }

  .serp__float-content {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .serp__float-label {
    margin-right: 0.25rem;
  }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: 1;
}

.problem__content {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .problem__content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.problem__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem__card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--color-bg-card-light);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.problem__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.2);
  color: var(--color-red);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.problem__card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.problem__card-text {
  font-size: 0.875rem;
  color: var(--color-text-dim);
}

/* Problem Visual */
.problem__visual {
  position: relative;
}

.problem__tracker {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.problem__tracker-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.problem__tracker-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.problem__tracker-dot--red {
  background: var(--color-red);
}

.problem__tracker-dot--cyan {
  background: var(--color-neon-cyan);
}

.problem__tracker-label {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.problem__tracker-position {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 0.5rem;
}

.problem__tracker-keyword {
  font-size: 0.875rem;
  color: var(--color-text-faint);
  margin-bottom: 1rem;
}

.problem__tracker-warning {
  padding: 0.75rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.problem__tracker-warning p {
  font-size: 0.8rem;
  color: var(--color-red);
}

.problem__real-data {
  position: absolute;
  right: 0;
  bottom: -5rem;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  min-width: 280px;
}

@media (min-width: 768px) {
  .problem__real-data {
    bottom: -8rem;
  }
}

.problem__real-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.problem__real-label {
  font-size: 0.8rem;
  color: var(--color-text-faint);
  margin-bottom: 1rem;
}

.problem__real-stats {
  display: flex;
  gap: 2rem;
}

.problem__real-stat-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
}

.problem__real-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-faint);
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: 1;
}

.solution__content {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .solution__content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.solution__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

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

.solution__text {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.solution__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
}

.solution__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  color: var(--color-neon-cyan);
  flex-shrink: 0;
}

.solution__feature span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ============================================
   DASHBOARD MOCKUP
   ============================================ */
.dashboard {
  position: relative;
}

.dashboard__glow {
  position: absolute;
  inset: -40px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(168, 85, 247, 0.1) 50%, rgba(236, 72, 153, 0.1) 100%);
  filter: blur(40px);
}

.dashboard__card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 2rem;
  overflow: hidden;
}

.dashboard__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
  .dashboard__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.dashboard__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dashboard__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  color: var(--color-bg);
}

.dashboard__title {
  font-size: 1rem;
  font-weight: 600;
}

.dashboard__period {
  font-size: 0.8rem;
  color: var(--color-text-faint);
}

.dashboard__tabs {
  display: flex;
  gap: 0.5rem;
}

.dashboard__tab {
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--color-text-dim);
  background: rgba(255, 255, 255, 0.05);
}

.dashboard__tab--active {
  background: var(--gradient-primary);
  color: var(--color-bg);
}

.dashboard__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
  .dashboard__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dashboard__stat {
  padding: 1rem;
  border-radius: var(--radius-md);
}

.dashboard__stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-faint);
  margin-bottom: 0.25rem;
}

.dashboard__stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.dashboard__stat-change {
  font-size: 0.8rem;
  color: var(--color-neon-cyan);
}

/* Dashboard Chart */
.dashboard__chart {
  position: relative;
  height: 180px;
  margin-bottom: 1.5rem;
}

.dashboard__chart-bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 1rem;
}

.dashboard__bar {
  flex: 1;
  height: 0;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(0, 212, 255, 0.8), rgba(168, 85, 247, 0.4));
  will-change: height;
  transition: height 1s ease-out;
}

.dashboard__bar.animate {
  height: var(--height);
}

.dashboard__chart-grid {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.dashboard__chart-line {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Dashboard Keywords */
.dashboard__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dashboard__keyword {
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--color-text-muted);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: 1;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15), 0 0 0 1px rgba(0, 212, 255, 0.2);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 100%);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--color-neon-cyan);
  margin-bottom: 1rem;
  transition: transform var(--transition-normal);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1);
}

.feature-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--color-text-dim);
  line-height: 1.6;
}

/* ============================================
   STEPS SECTION
   ============================================ */
.steps {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: 1;
}

.steps__content {
  position: relative;
}

.steps__line {
  display: none;
  position: absolute;
  top: 40px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: var(--gradient-primary);
}

@media (min-width: 768px) {
  .steps__line {
    display: block;
  }
}

.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.step {
  text-align: center;
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-lg);
  background: var(--gradient-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-bg);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.step__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step__text {
  font-size: 0.9rem;
  color: var(--color-text-dim);
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: 1;
}

.comparison__table {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.comparison__table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison__table th,
.comparison__table td {
  padding: 1rem;
  text-align: left;
}

.comparison__table thead {
  border-bottom: 1px solid var(--color-border);
}

.comparison__table th {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-dim);
}

.comparison__table th:not(:first-child),
.comparison__table td:not(:first-child) {
  text-align: center;
}

.comparison__highlight {
  font-weight: 600;
}

.comparison__muted {
  color: var(--color-text-faint);
}

.comparison__table tbody tr {
  border-bottom: 1px solid var(--color-border-light);
}

.comparison__table tbody tr:last-child {
  border-bottom: none;
}

.comparison__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.comparison__icon--yes {
  background: rgba(34, 197, 94, 0.2);
  color: var(--color-green);
}

.comparison__icon--no {
  background: rgba(239, 68, 68, 0.2);
  color: var(--color-red);
}

.comparison__icon svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: 1;
}

.trust__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .trust__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust__card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
}

.trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--color-green);
}

.trust__icon--cyan {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--color-neon-cyan);
}

.trust__icon--purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
  border-color: rgba(168, 85, 247, 0.3);
  color: var(--color-neon-purple);
}

.trust__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trust__text {
  font-size: 0.9rem;
  color: var(--color-text-dim);
}

/* Trust Stats */
.trust__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem;
  border-radius: var(--radius-xl);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust__stat {
  text-align: center;
}

.trust__stat-value {
  display: inline;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.trust__stat-suffix {
  display: inline;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
}

.trust__stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-dim);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
  position: relative;
  padding: var(--section-padding) 0;
  text-align: center;
  z-index: 1;
}

.final-cta__glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.final-cta__glow::before {
  content: '';
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(168, 85, 247, 0.2) 50%, rgba(236, 72, 153, 0.2) 100%);
  filter: blur(80px);
  border-radius: 50%;
}

.final-cta__title {
  position: relative;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.final-cta__text {
  position: relative;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.final-cta__button {
  position: relative;
}

.final-cta__note {
  position: relative;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-faint);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  padding: 2rem var(--container-padding);
  border-top: 1px solid var(--color-border);
  z-index: 1;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--gradient-primary);
  color: var(--color-bg);
}

.footer__nav {
  display: flex;
  gap: 1.5rem;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--color-text-dim);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-text);
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--color-text-faint);
}

/* ============================================
   ANIMATIONS ON SCROLL (JS-triggered)
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  will-change: opacity, transform;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.slide-left {
  transform: translate3d(-50px, 0, 0);
}

.animate-on-scroll.slide-left.visible {
  transform: translate3d(0, 0, 0);
}

.animate-on-scroll.slide-right {
  transform: translate3d(50px, 0, 0);
}

.animate-on-scroll.slide-right.visible {
  transform: translate3d(0, 0, 0);
}

.animate-on-scroll.scale {
  transform: translate3d(0, 0, 0) scale(0.9);
}

.animate-on-scroll.scale.visible {
  transform: translate3d(0, 0, 0) scale(1);
}


/* Lightweight interaction polish */
.btn--gradient,
.btn--glass,
.feature-card,
.problem__card,
.comparison__card,
.trust__badge {
  will-change: transform;
}

.btn--gradient:hover,
.btn--glass:hover {
  transform: translate3d(0, -2px, 0);
}

.feature-card:hover,
.problem__card:hover,
.comparison__card:hover {
  transform: translate3d(0, -4px, 0);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.08);
}

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

  .background-effects__orb,
  .hero__container,
  .serp__result,
  .feature-card,
  .problem__card,
  .comparison__card {
    transform: none !important;
  }
}


/* ============================================
   HERO SPICE UPGRADE
   ============================================ */
.hero-proof {
  max-width: 980px;
  margin: 0 auto 3rem;
}

.hero-proof__card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 212, 255, 0.18);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
}

.hero-proof__eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.32rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-neon-cyan);
  background: rgba(0, 255, 204, 0.08);
  border: 1px solid rgba(0, 255, 204, 0.14);
}

.hero-proof__row {
  display: grid;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 920px) {
  .hero-proof__row {
    grid-template-columns: 180px 1px 1fr auto;
  }
}

.hero-proof__tracker,
.hero-proof__reality {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: center;
  text-align: center;
}

.hero-proof__label {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.hero-proof__single {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  font-weight: 800;
  color: rgba(255,255,255,0.86);
}

.hero-proof__divider {
  width: 1px;
  height: 100%;
  min-height: 60px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
  justify-self: center;
}

.hero-proof__positions,
.problem__position-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-proof__positions span,
.problem__position-cloud span {
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(168,85,247,0.22), rgba(0,212,255,0.18));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-proof__positions span:nth-child(3n),
.problem__position-cloud span:nth-child(3n) {
  background: linear-gradient(135deg, rgba(239,68,68,0.22), rgba(168,85,247,0.18));
}

.hero-proof__tag {
  justify-self: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

.problem__tracker {
  overflow: hidden;
}

.problem__position-cloud {
  margin-bottom: 1rem;
}

.problem__tracker-position {
  margin-bottom: 0.8rem;
}

.problem__tracker::after {
  content: '';
  position: absolute;
  inset: auto -10% -35% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,68,68,0.12), transparent 70%);
  pointer-events: none;
}

.solution__text {
  max-width: 640px;
}

.feature-card__title,
.solution__feature span,
.problem__card-title {
  letter-spacing: -0.01em;
}

@media (max-width: 919px) {
  .hero-proof__divider {
    display: none;
  }

  .hero-proof__tracker,
  .hero-proof__reality {
    align-items: center;
  }
}


.hero-proof__microcopy {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
}

.hero-proof__positions span {
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, opacity 260ms ease;
  opacity: 0.72;
}

.hero-proof__positions span.is-active {
  opacity: 1;
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(0, 255, 204, 0.32);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 10px 26px rgba(0,212,255,0.18);
}

.hero-snapshot {
  max-width: 980px;
  margin: -0.5rem auto 3.2rem;
}

.hero-snapshot__card {
  padding: 1rem 1.1rem 1.1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 60px rgba(0,0,0,0.22);
}

.hero-snapshot__topline {
  margin-bottom: 0.95rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}

.hero-snapshot__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-snapshot__item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-snapshot__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.05), transparent);
  transform: translateX(-100%);
  animation: snapshotSweep 6.5s linear infinite;
}

.hero-snapshot__item:nth-child(2)::before { animation-delay: 1.1s; }
.hero-snapshot__item:nth-child(3)::before { animation-delay: 2.2s; }
.hero-snapshot__item:nth-child(4)::before { animation-delay: 3.3s; }

.hero-snapshot__label {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.66);
}

.hero-snapshot__value {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-neon-cyan);
}

@keyframes snapshotSweep {
  0% { transform: translateX(-110%); }
  22%, 100% { transform: translateX(110%); }
}

@media (max-width: 780px) {
  .hero-snapshot__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-snapshot__item::before {
    animation: none;
  }
}


/* ============================================
   ARTICLE SECTION
   ============================================ */
.article-section {
  position: relative;
  padding: 2rem 0 1rem;
}

.article-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 2vw, 2rem);
  border: 1px solid rgba(255,255,255,0.08);
}

.article-shell__glow {
  position: absolute;
  inset: -20% auto auto 50%;
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.10), transparent 68%);
  pointer-events: none;
}

.article-shell__header {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.article-shell__subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.article-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 1100px) {
  .article-layout {
    grid-template-columns: minmax(0, 760px) 280px;
    align-items: start;
  }
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.article-block,
.article-quote,
.article-demo,
.article-callout,
.article-rail__card {
  border-radius: 24px;
}

.article-block {
  max-width: 780px;
}

.article-block p {
  margin: 0 0 1rem;
  font-size: 1.03rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.76);
}

.article-block p:last-child {
  margin-bottom: 0;
}

.article-block--lead {
  padding-top: 0.25rem;
}

.article-lead {
  font-size: clamp(1.5rem, 2vw, 2rem) !important;
  line-height: 1.25 !important;
  letter-spacing: -0.03em;
  color: white !important;
  font-weight: 700;
}

.article-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.article-list li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(255,255,255,0.82);
}

.article-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-neon-cyan), var(--color-neon-purple));
  box-shadow: 0 0 18px rgba(0,212,255,0.45);
}

.article-quote {
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(0,212,255,0.16);
  background: linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
}

.article-quote p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.article-demo {
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  box-shadow: 0 20px 65px rgba(0,0,0,0.18);
}

.article-demo__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-demo__eyebrow,
.article-rail__eyebrow,
.article-callout__label {
  display: inline-flex;
  margin-bottom: 0.45rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-neon-cyan);
}

.article-demo__title {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.article-demo__keyword {
  align-self: center;
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
}

.article-demo__grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-demo__panel {
  min-height: 100%;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.article-demo__panel--tracker {
  background: linear-gradient(135deg, rgba(239,68,68,0.08), rgba(255,255,255,0.02));
}

.article-demo__panel--reality {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(168,85,247,0.06));
}

.article-demo__label {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.54);
}

.article-demo__single {
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}

.article-demo__positions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.article-demo__positions span,
.article-keywords span {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(0,212,255,0.12));
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 260ms ease, opacity 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  opacity: 0.68;
}

.article-demo__positions span.is-active {
  opacity: 1;
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(0,255,204,0.28);
  box-shadow: 0 10px 26px rgba(0,212,255,0.15);
}

.article-demo__micro {
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}

.article-callout {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 1.15rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.article-callout__col {
  padding: 0.4rem 0.2rem;
}

.article-callout__col p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.article-callout__col--accent p {
  color: rgba(255,255,255,0.92);
}

.article-closing {
  font-size: 1.12rem !important;
  color: rgba(255,255,255,0.92) !important;
}

.article-rail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 110px;
}

.article-rail__card {
  padding: 1.1rem 1rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}

.article-rail__card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.article-rail__card p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.article-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.article-keywords span {
  opacity: 1;
  font-size: 0.82rem;
}

@media (max-width: 1099px) {
  .article-rail {
    position: static;
  }
}

@media (max-width: 780px) {
  .article-demo__grid,
  .article-callout {
    grid-template-columns: 1fr;
  }

  .article-demo__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-block p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-demo__positions span {
    transition: none;
  }
}


/* Step 4 polish */
.reading-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 120;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.reading-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(0,212,255,0.95), rgba(168,85,247,0.95));
  box-shadow: 0 0 14px rgba(0,212,255,0.35);
  transition: width 120ms linear;
}
.article-bridge {
  max-width: 760px;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.article-bridge__eyebrow {
  margin: 0 0 0.85rem;
  color: rgba(255,255,255,0.52);
  font-size: 0.98rem;
}
.article-bridge__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.article-bridge__text {
  margin: 1rem auto 0;
  max-width: 640px;
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
}
.hero-proof__positions span.is-fading,
.article-demo__positions span.is-fading {
  opacity: 0.24;
  transform: translateY(1px) scale(0.96);
}
.article-cta {
  margin-top: 2.25rem;
  padding: 1.35rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(168,85,247,0.08));
}
.article-cta__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}
.article-cta__text {
  margin: 0.85rem auto 0;
  max-width: 720px;
  color: rgba(255,255,255,0.68);
}
.article-cta__actions {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .article-bridge { margin-bottom: 1.6rem; }
  .article-cta { padding: 1.05rem; }
}


/* FAQ Section */
.faq {
  position: relative;
  padding: 7rem 0 6rem;
}

.faq::before {
  content: '';
  position: absolute;
  inset: 8% auto auto 50%;
  width: min(46vw, 520px);
  height: min(46vw, 520px);
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 224, 255, 0.12), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.faq__subtitle {
  max-width: 44rem;
  margin-inline: auto;
}

.faq__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: start;
}

.faq__stack {
  display: grid;
  gap: 1rem;
}

.faq-card {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 224, 255, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.faq-card.is-open {
  border-color: rgba(0, 224, 255, 0.24);
  background: linear-gradient(180deg, rgba(18, 25, 38, 0.88), rgba(11, 16, 28, 0.92));
}

.faq-card__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.35rem;
  background: transparent;
  border: 0;
  color: var(--text-primary);
  font: inherit;
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.faq-card__icon {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
}

.faq-card__icon::before,
.faq-card__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,224,255,0.95), rgba(145, 94, 255, 0.95));
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

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

.faq-card.is-open .faq-card__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.3);
}

.faq-card__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}

.faq-card__answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.35rem;
  color: var(--text-secondary);
  line-height: 1.78;
}

.faq-card.is-open .faq-card__answer {
  grid-template-rows: 1fr;
}

.faq-card.is-open .faq-card__answer > p {
  padding-bottom: 1.35rem;
}

.faq-cta {
  margin-top: 2rem;
  padding: 1.45rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.faq-cta__eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.faq-cta__title {
  margin: 0;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.35;
}

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

  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .faq {
    padding: 5rem 0 4.5rem;
  }

  .faq-card__question {
    font-size: 0.98rem;
    padding: 1.1rem 1rem;
  }

  .faq-card__answer > p {
    padding-inline: 1rem;
  }

  .faq-card.is-open .faq-card__answer > p {
    padding-bottom: 1.05rem;
  }

  .faq-cta {
    padding: 1.15rem 1rem;
  }
}


/* ============================================
   PROOF DASHBOARD SECTION
   ============================================ */
.proof-dashboard {
  position: relative;
  padding: 5.5rem 0 6rem;
  overflow: hidden;
}

.proof-dashboard__glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 9999px;
  filter: blur(90px);
  opacity: 0.14;
  pointer-events: none;
}

.proof-dashboard__glow--cyan {
  background: var(--color-neon-cyan);
  left: -10rem;
  top: 7rem;
}

.proof-dashboard__glow--purple {
  background: var(--color-neon-purple);
  right: -8rem;
  bottom: 3rem;
}

.proof-dashboard__subtitle {
  max-width: 52rem;
}

.proof-dashboard__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.5rem;
  align-items: start;
}

.proof-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.proof-stat {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.proof-stat__label,
.proof-panel__summary-label,
.proof-panel__eyebrow,
.proof-insight__eyebrow {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.proof-stat__value {
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.proof-stat__hint {
  display: block;
  margin-top: 0.55rem;
  color: var(--color-text-dim);
  font-size: 0.92rem;
  line-height: 1.45;
}

.proof-insight {
  padding: 1.45rem;
  border: 1px solid rgba(0, 212, 255, 0.14);
  background: linear-gradient(135deg, rgba(9, 16, 28, 0.9), rgba(19, 12, 33, 0.86));
}

.proof-insight__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.proof-insight__tag,
.proof-panel__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.8rem;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: var(--color-text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-insight__keyword {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.proof-insight__keyword strong {
  color: var(--color-text);
}

.proof-insight__spread {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 0.9rem;
}

.proof-insight__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  min-height: 3.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 700;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), color var(--transition-normal), background var(--transition-normal), opacity var(--transition-normal);
}

.proof-insight__chip.is-active {
  color: #04171b;
  background: linear-gradient(135deg, rgba(0,255,204,0.96), rgba(0,212,255,0.92));
  border-color: rgba(0,255,204,0.5);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 0 26px rgba(0,255,204,0.25);
  transform: translateY(-2px) scale(1.04);
}

.proof-insight__chip.is-dim {
  opacity: 0.45;
}

.proof-insight__text,
.proof-panel__note {
  color: var(--color-text-dim);
}

.proof-dashboard__panel {
  position: relative;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.proof-dashboard__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(168,85,247,0.06));
  pointer-events: none;
}

.proof-panel__header,
.proof-panel__summary,
.proof-panel__footer {
  position: relative;
  z-index: 1;
}

.proof-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.proof-panel__title {
  margin-top: 0.35rem;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.1;
}

.proof-panel__actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.proof-panel__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.proof-panel__summary-item {
  padding: 0.8rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
}

.proof-panel__summary-item strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.98rem;
}

.proof-table-wrap {
  position: relative;
  z-index: 1;
  overflow: auto;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(6, 10, 19, 0.72);
}

.proof-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.proof-table th,
.proof-table td {
  padding: 0.78rem 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: left;
  white-space: nowrap;
}

.proof-table th {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.03);
}

.proof-table tbody tr:hover {
  background: rgba(255,255,255,0.025);
}

.proof-badge,
.proof-pos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2rem;
  padding: 0.15rem 0.55rem;
  border-radius: 0.8rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.proof-badge--good,
.proof-pos--good {
  background: rgba(34,197,94,0.16);
  color: #b6f5c7;
  border-color: rgba(34,197,94,0.18);
}

.proof-badge--mid,
.proof-pos--mid {
  background: rgba(59,130,246,0.15);
  color: #bfdbfe;
  border-color: rgba(59,130,246,0.18);
}

.proof-badge--risk,
.proof-pos--risk {
  background: rgba(239,68,68,0.14);
  color: #fecaca;
  border-color: rgba(239,68,68,0.18);
}

.proof-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.proof-panel__note {
  max-width: 36rem;
}

@media (max-width: 1100px) {
  .proof-dashboard__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .proof-stat-grid {
    grid-template-columns: 1fr;
  }

  .proof-insight__topline,
  .proof-panel__header,
  .proof-panel__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-panel__summary {
    grid-template-columns: 1fr;
  }

  .proof-dashboard {
    padding: 4.8rem 0 5rem;
  }
}


/* UA localization polish */
:root{
  --accent-ua-warm: rgba(255, 210, 80, 0.28);
  --accent-ua-soft: #ffd166;
}

.gradient-text{
  background-image: linear-gradient(90deg, #66d9ff 0%, #5b7cff 45%, #ffd166 100%);
}

.btn--gradient,
.nav__cta,
.final-cta .btn--gradient{
  background-image: linear-gradient(90deg, #00d9ff 0%, #4f46e5 55%, #ffd166 100%) !important;
  box-shadow: 0 14px 34px rgba(79, 70, 229, 0.28), 0 0 22px rgba(255, 209, 102, 0.18);
}

.hero::after{
  content:"";
  position:absolute;
  inset:auto 8% 18% auto;
  width:340px;
  height:340px;
  background: radial-gradient(circle, rgba(255,209,102,0.12), transparent 62%);
  pointer-events:none;
  filter: blur(12px);
}

.glass-light:hover,
.feature-card:hover,
.faq-card:hover,
.proof-dashboard__panel:hover{
  box-shadow: 0 0 28px rgba(255, 209, 102, 0.14), 0 18px 40px rgba(0,0,0,0.22);
}

.article-body p,
.article-body li{
  line-height: 1.75;
}

.dashboard__stat,
.proof-metric,
.hero-proof__card{
  box-shadow: 0 0 24px rgba(255, 209, 102, 0.08);
}

.proof-dashboard__glow--cyan{
  background: radial-gradient(circle, rgba(102,217,255,0.16), transparent 62%) !important;
}
.proof-dashboard__glow--purple{
  background: radial-gradient(circle, rgba(255,209,102,0.12), transparent 62%) !important;
}


/* UA fix round 2 */
.proof-dashboard__intro .hero__badge,
.proof-dashboard__intro .section-title,
.proof-dashboard__intro .section-subtitle{
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.proof-dashboard__subtitle{
  line-height: 1.7;
}

.proof-stat__hint,
.proof-insight__eyebrow,
.proof-insight__tag,
.proof-dashboard__table-note{
  letter-spacing: 0;
}

.footer, footer{
  word-break: normal;
}


/* UA final polish round 3 */
.final-proof-cta{
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.final-proof-cta__title{
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.final-proof-cta__text{
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,0.76);
  line-height: 1.7;
}

.btn--gradient,
.nav__cta,
.final-cta__button{
  color: #071019 !important;
  font-weight: 800;
  text-shadow: none;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 16px 40px rgba(79,70,229,.25), 0 0 28px rgba(255,209,102,.22) !important;
}

.btn--gradient:hover,
.nav__cta:hover,
.final-cta__button:hover{
  filter: saturate(1.08) brightness(1.03);
  transform: translateY(-1px);
}

.btn__icon,
.btn__icon--left{
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.16));
}

.hero__cta .btn--glass,
.article-cta .btn--glass{
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.final-cta__text,
.hero__subtitle,
.section-subtitle{
  color: rgba(255,255,255,0.76);
}


/* UA v4 cleanup */
.btn--gradient,
.nav__cta,
.final-cta__button{
  color:#071019 !important;
  font-weight:800;
}

.final-proof-cta__text,
.final-cta__text{
  max-width: 720px;
  margin-left:auto;
  margin-right:auto;
}

.article-cta__text,
.section-subtitle{
  text-wrap: pretty;
}


/* Final CTA/button readability polish */
.btn--gradient,
.nav__cta,
.final-cta__button,
.article-cta .btn--gradient,
.hero__cta .btn--gradient{
  color: #061018 !important;
  font-weight: 900 !important;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.24) !important;
  box-shadow:
    0 18px 44px rgba(79,70,229,0.24),
    0 0 28px rgba(255,209,102,0.24),
    inset 0 1px 0 rgba(255,255,255,0.26) !important;
  position: relative;
  overflow: hidden;
}

.btn--gradient::before,
.nav__cta::before,
.final-cta__button::before,
.article-cta .btn--gradient::before,
.hero__cta .btn--gradient::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  pointer-events: none;
}

.btn--gradient span,
.nav__cta span,
.final-cta__button span,
.article-cta .btn--gradient span,
.hero__cta .btn--gradient span{
  position: relative;
  z-index: 1;
}

.btn--gradient:hover,
.nav__cta:hover,
.final-cta__button:hover,
.article-cta .btn--gradient:hover,
.hero__cta .btn--gradient:hover{
  filter: saturate(1.1) brightness(1.04);
  transform: translateY(-1px);
}

.btn--glass,
.article-cta .btn--glass,
.hero__cta .btn--glass{
  color: rgba(255,255,255,0.92) !important;
  font-weight: 700;
  border-color: rgba(255,255,255,0.22) !important;
  background: rgba(255,255,255,0.07) !important;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.btn--glass:hover,
.article-cta .btn--glass:hover,
.hero__cta .btn--glass:hover{
  background: rgba(255,255,255,0.10) !important;
}


/* Final micro CTA polish: safest readable boost */
.btn--gradient,
.nav__cta,
.final-cta__button,
.article-cta .btn--gradient,
.hero__cta .btn--gradient{
  color: #031019 !important;
}

.btn--gradient span,
.nav__cta span,
.final-cta__button span,
.article-cta .btn--gradient span,
.hero__cta .btn--gradient span,
.btn--gradient,
.nav__cta,
.final-cta__button,
.article-cta .btn--gradient,
.hero__cta .btn--gradient{
  text-shadow:
    0 1px 0 rgba(255,255,255,0.22),
    0 0 1px rgba(0,0,0,0.08);
  -webkit-text-stroke: 0.2px rgba(0,0,0,0.14);
}

.nav__cta{
  box-shadow:
    0 14px 34px rgba(79,70,229,0.22),
    0 0 20px rgba(255,209,102,0.18),
    inset 0 1px 0 rgba(255,255,255,0.28) !important;
}

.hero__cta .btn--gradient,
.article-cta .btn--gradient,
.final-cta__button{
  box-shadow:
    0 18px 44px rgba(79,70,229,0.24),
    0 0 26px rgba(255,209,102,0.18),
    inset 0 1px 0 rgba(255,255,255,0.30) !important;
}


/* ============================================
   HERO STABILITY LAYER
   - removes legacy .hero__logo overrides (element no longer exists in HTML)
   - keeps the current first-screen composition in one place
   ============================================ */
.hero__subtitle{
  max-width: 820px;
}

.hero__trust{
  margin-top: 14px;
  text-align: center;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.hero__cta{
  margin-bottom: 4px;
}

/* ============================================
   STEP 1 POLISH — HERO COMPOSITION REBALANCE
   ============================================ */
.logo-header{
  padding: 2.75rem 1rem 0.2rem;
  margin-bottom: -0.15rem;
}

.logo-header__container{
  width: 168px;
  height: 168px;
  transform: translateY(18px);
}

.logo-header__image{
  width: 114px;
  height: 114px;
}

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

.hero__badge{
  margin-bottom: 1.35rem !important;
}

.hero__title{
  margin-bottom: 1.15rem !important;
}

.hero__subtitle{
  max-width: 780px;
  margin-bottom: 1.9rem;
}

.hero__cta{
  margin-bottom: 1.9rem;
}

.hero-proof{
  margin-top: 0.35rem;
}

@media (max-width: 768px){
  .logo-header{
    padding: 2.4rem 1rem 0.05rem;
    margin-bottom: -0.1rem;
  }

  .logo-header__container{
    width: 148px;
    height: 148px;
    transform: translateY(24px);
  }

  .logo-header__image{
    width: 102px;
    height: 102px;
  }

  .hero{
    padding-top: 0.95rem;
    padding-bottom: 3.25rem;
  }

  .hero__badge{
    margin-bottom: 1.05rem !important;
  }

  .hero__subtitle{
    margin-bottom: 1.5rem;
  }

  .hero__cta{
    margin-bottom: 1.55rem;
  }
}


/* ============================================
   STEP 4/5 — QUICK CHECK ENTRY + HERO MICROCOPY
   ============================================ */
.hero__trust{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:0.9rem;
  flex-wrap:wrap;
  margin-top: 0.15rem;
}

.hero__trust span{
  position:relative;
}

.hero__trust span + span::before{
  content:'•';
  position:absolute;
  left:-0.58rem;
  top:50%;
  transform:translateY(-50%);
  color:rgba(255,255,255,0.34);
}

.quick-check{
  position:relative;
  padding: 1.1rem 0 2.6rem;
}

.quick-check__card{
  position:relative;
  overflow:hidden;
  padding: 1.6rem;
  border-radius: 28px;
  border:1px solid rgba(62, 225, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(11,16,34,0.92), rgba(7,10,24,0.94)),
    radial-gradient(circle at top left, rgba(0, 214, 255, 0.14), transparent 48%),
    radial-gradient(circle at bottom right, rgba(130, 87, 229, 0.16), transparent 44%);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.quick-check__card::before{
  content:'';
  position:absolute;
  inset:-1px;
  background:linear-gradient(120deg, rgba(0, 221, 255, 0.12), transparent 35%, rgba(255, 210, 105, 0.12));
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite:exclude;
  -webkit-mask-composite:xor;
  padding:1px;
  pointer-events:none;
}

.quick-check__intro{
  max-width: 760px;
  margin: 0 auto 1.3rem;
  text-align:center;
}

.quick-check__badge{
  margin-bottom: 1rem !important;
}

.quick-check__title{
  margin:0 0 0.7rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height:1.05;
  letter-spacing:-0.03em;
}

.quick-check__subtitle{
  margin:0;
  color: rgba(255,255,255,0.72);
  line-height:1.7;
  font-size:1rem;
}

.quick-check__form{
  max-width: 860px;
  margin: 0 auto;
}

.quick-check__label{
  display:block;
  margin:0 0 0.7rem;
  font-size:0.86rem;
  color: rgba(255,255,255,0.66);
}

.quick-check__row{
  display:grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap:0.85rem;
  align-items:center;
}

.quick-check__input{
  width:100%;
  min-height: 62px;
  padding: 0 1rem 0 1.1rem;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(7, 10, 24, 0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  color:#fff;
  font-size:1rem;
  outline:none;
}

.quick-check__input::placeholder{
  color: rgba(255,255,255,0.32);
}

.quick-check__input:focus{
  border-color: rgba(65, 226, 255, 0.44);
  box-shadow: 0 0 0 4px rgba(65, 226, 255, 0.10);
}

.quick-check__submit{
  min-width: 230px;
}

.quick-check__micro{
  margin-top:0.8rem;
  text-align:left;
  color: rgba(255,255,255,0.56);
  font-size:0.82rem;
  letter-spacing:0.01em;
}

.quick-check__actions{
  max-width:860px;
  margin:1rem auto 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}

.quick-check__login{
  flex: 0 0 auto;
}

.quick-check__hint{
  flex:1 1 320px;
  margin:0;
  color: rgba(255,255,255,0.62);
  line-height:1.6;
}

.quick-check__error{
  color: #ff8f8f;
}

@media (max-width: 768px){
  .hero__trust{
    gap:0.45rem 1rem;
    font-size:12px;
  }

  .hero__trust span + span::before{
    display:none;
  }

  .quick-check{
    padding: 0.7rem 0 2.2rem;
  }

  .quick-check__card{
    padding: 1.15rem;
    border-radius: 22px;
  }

  .quick-check__row{
    grid-template-columns:1fr;
  }

  .quick-check__submit,
  .quick-check__login{
    width:100%;
  }

  .quick-check__actions{
    align-items:stretch;
  }

  .quick-check__micro,
  .quick-check__hint{
    text-align:center;
  }
}

.article-cta__micro{
  margin-top: 0.95rem;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.62);
}

@media (max-width: 767px) {
  .article-cta__micro{
    font-size: 0.76rem;
  }
}


/* ============================================
   STEP 6 — FINAL CTA POLISH
   ============================================ */
.hero__trust,
.article-cta__micro,
.quick-check__micro,
.quick-check__hint{
  text-wrap: balance;
}

.hero__trust span,
.article-cta__micro,
.quick-check__micro{
  text-shadow: 0 1px 0 rgba(0,0,0,0.18);
}

.btn:focus-visible,
.quick-check__input:focus-visible,
.nav__link:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 214, 255, 0.16), 0 0 0 6px rgba(255, 209, 102, 0.08);
}

.btn--gradient,
.btn--glass,
.nav__cta{
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.btn--gradient:hover,
.btn--glass:hover,
.nav__cta:hover{
  transform: translateY(-1px);
}

.quick-check__input{
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.quick-check__input:hover{
  border-color: rgba(255,255,255,0.14);
  background: rgba(9, 13, 28, 0.82);
}

.quick-check__micro strong,
.quick-check__hint strong,
.hero__trust strong,
.article-cta__micro strong{
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}


/* Dynamic content support */
body.page-engine{background:#0a0a0f;color:#fff;}
.site-header,.site-footer{background:rgba(10,10,15,.82);backdrop-filter:blur(16px);border-color:rgba(255,255,255,.08);}
.site-header{position:sticky;top:0;z-index:40;}
.header-row{gap:24px;padding:18px 0;display:flex;justify-content:space-between;align-items:center;}
.logo{font-weight:800;font-size:1.1rem;background:var(--gradient-text);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;color:transparent;}
.header-nav{display:flex;gap:10px;flex-wrap:wrap;}
.header-nav a{display:inline-flex;align-items:center;padding:.7rem 1rem;border:1px solid rgba(255,255,255,.1);border-radius:9999px;color:rgba(255,255,255,.82);background:rgba(255,255,255,.04);transition:all .2s ease;}
.header-nav a:hover{border-color:rgba(0,212,255,.45);color:#fff;transform:translateY(-1px);}
.page-wrap{padding:2rem 0 4rem;}
.engine-shell{max-width:1180px;margin:0 auto;padding:0 1.5rem;}
.content-page,.cta-box,.related-block,.category-intro{background:rgba(15,15,25,.62);border:1px solid rgba(255,255,255,.08);backdrop-filter:blur(16px);box-shadow:0 24px 80px rgba(0,0,0,.35);border-radius:24px;padding:1.5rem;margin-bottom:1.5rem;}
.content-page h1,.content-page h2,.content-page h3,.related-block h2{color:#fff;}
.breadcrumbs{font-size:.92rem;color:rgba(255,255,255,.58);margin-bottom:1rem;word-break:break-word;}
.breadcrumbs a{color:rgba(0,255,204,.9);}
.lead{font-size:1.08rem;color:rgba(255,255,255,.74);margin:.5rem 0 1.25rem;}
.body-html{color:rgba(255,255,255,.84);}
.body-html p,.body-html li{margin:0 0 1rem;line-height:1.78;}
.body-html ul,.body-html ol{padding-left:1.25rem;margin:0 0 1rem;}
.body-html h2{margin:2rem 0 1rem;font-size:1.7rem;}
.body-html h3{margin:1.4rem 0 .8rem;font-size:1.25rem;}
.body-html a{color:#7dd3fc;text-decoration:underline;}
.cta-box h3{font-size:1.35rem;margin-bottom:.75rem;}
.cta-box p{color:rgba(255,255,255,.72);margin-bottom:1rem;}
.cta-btn{display:inline-flex;align-items:center;justify-content:center;padding:.95rem 1.25rem;border-radius:9999px;background:var(--gradient-primary);color:#07111f;font-weight:800;box-shadow:0 18px 50px rgba(0,212,255,.25);}
.related-list,.category-links{list-style:none;padding:0;margin:1rem 0 0;display:grid;gap:.75rem;}
.related-list li,.category-links li,.list-card{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:18px;padding:1rem;}
.related-list a,.category-links a,.list-card a{color:#fff;font-weight:600;}
.list-card__meta{font-size:.9rem;color:rgba(255,255,255,.56);margin-top:.35rem;}
.category-columns{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;}
.footer-inner{display:flex;justify-content:space-between;gap:1rem;align-items:center;padding:1.5rem 0;flex-wrap:wrap;color:rgba(255,255,255,.6);}
.footer-links{display:flex;gap:1rem;flex-wrap:wrap;}
.footer-links a{color:rgba(255,255,255,.74);}
.not-found-card{min-height:45vh;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;}
@media (max-width: 900px){.category-columns{grid-template-columns:1fr;}.engine-shell{padding:0 1rem;}.header-row{flex-direction:column;align-items:flex-start;}}

/* ============================================
   STAGE 5 — BLOG WOW POLISH
   ============================================ */
.btn--sm{padding:.8rem 1.1rem;font-size:.9rem;border-radius:16px;}
.nav--inner{position:sticky;top:0;z-index:40;background:rgba(5,8,18,.84);backdrop-filter:blur(16px);border-bottom:1px solid rgba(255,255,255,.06);}
.site-footer--enhanced{border-top:1px solid rgba(255,255,255,.06);background:rgba(5,8,18,.75);backdrop-filter:blur(14px);}
.footer-brand{font-weight:800;color:#fff;margin-bottom:.25rem;}
.article-shell{display:grid;grid-template-columns:minmax(0,1fr);gap:1.5rem;align-items:start;}
.article-main{order:1;overflow:hidden;}
.article-sidebar{order:2;}
.article-sidebar__sticky{display:grid;gap:1rem;}
.article-breadcrumbs{margin-bottom:1rem;}
.article-hero{padding:1.6rem 1.6rem 1.2rem;border-radius:24px;margin-bottom:1.25rem;border:1px solid rgba(255,255,255,.08);background:linear-gradient(180deg, rgba(22,30,64,.72) 0%, rgba(10,13,26,.7) 100%);box-shadow:0 22px 60px rgba(0,0,0,.26);}
.article-hero__eyebrow,.category-hero__eyebrow,.sidebar-card__eyebrow,.author-box__eyebrow,.inline-cta__eyebrow{display:inline-flex;align-items:center;gap:.45rem;padding:.45rem .75rem;border-radius:999px;border:1px solid rgba(96,165,250,.24);background:rgba(96,165,250,.10);font-size:.78rem;font-weight:700;letter-spacing:.01em;color:#a9dcff;margin-bottom:.85rem;}
.article-hero__title{font-size:clamp(2rem,4vw,3.2rem);line-height:1.05;margin-bottom:1rem;color:#fff;}
.article-hero__lead{font-size:1.08rem;line-height:1.72;color:rgba(255,255,255,.82);max-width:58rem;margin-bottom:1rem;}
.article-hero__meta{display:flex;flex-wrap:wrap;gap:.75rem;}
.article-hero__meta span{display:inline-flex;align-items:center;padding:.45rem .7rem;border-radius:999px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);font-size:.82rem;color:rgba(255,255,255,.75);}
.article-layout__mobile-tool{display:flex;flex-direction:column;align-items:flex-start;gap:.85rem;margin-bottom:1.25rem;}
.sidebar-card,.author-box,.blog-offer,.inline-cta{border:1px solid rgba(255,255,255,.08);box-shadow:0 20px 60px rgba(0,0,0,.24);}
.sidebar-card{padding:1.15rem;border-radius:22px;}
.sidebar-card__title{font-size:1.2rem;line-height:1.2;color:#fff;margin-bottom:.65rem;}
.sidebar-card__text{font-size:.95rem;line-height:1.65;color:rgba(255,255,255,.74);margin-bottom:.9rem;}
.sidebar-links{list-style:none;margin:0;padding:0;display:grid;gap:.75rem;}
.sidebar-links li{display:grid;gap:.2rem;padding-bottom:.75rem;border-bottom:1px solid rgba(255,255,255,.07);}
.sidebar-links li:last-child{padding-bottom:0;border-bottom:none;}
.sidebar-links a{color:#fff;font-weight:600;line-height:1.45;text-decoration:none;}
.sidebar-links a:hover{color:#7ad7ff;}
.sidebar-links span{font-size:.8rem;color:rgba(255,255,255,.52);}
.sidebar-meta__row{display:flex;justify-content:space-between;gap:1rem;padding:.5rem 0;border-bottom:1px solid rgba(255,255,255,.06);}
.sidebar-meta__row:last-child{border-bottom:none;}
.sidebar-meta__label{font-size:.82rem;color:rgba(255,255,255,.55);}
.sidebar-meta__value{font-size:.88rem;color:#fff;text-align:right;max-width:62%;}
.article-body{font-size:1.04rem;line-height:1.86;color:rgba(255,255,255,.84);}
.article-body > * + *{margin-top:1.1rem;}
.article-body h2{font-size:1.7rem;line-height:1.2;margin-top:2.2rem;margin-bottom:1rem;color:#fff;}
.article-body h3{font-size:1.22rem;line-height:1.35;margin-top:1.6rem;margin-bottom:.75rem;color:#fff;}
.article-body p{color:rgba(255,255,255,.82);}
.article-body ul,.article-body ol{padding-left:1.3rem;}
.article-body li{margin-bottom:.6rem;}
.article-body blockquote{padding:1rem 1.2rem;border-left:3px solid #59d7ff;background:rgba(89,215,255,.08);border-radius:16px;color:#fff;}
.inline-cta{position:relative;overflow:hidden;padding:1.15rem 1.2rem;border-radius:22px;margin:1.4rem 0;background:linear-gradient(135deg, rgba(11,22,43,.95) 0%, rgba(23,22,53,.96) 100%);}
.inline-cta:before{content:'';position:absolute;inset:-20% auto auto -10%;width:180px;height:180px;border-radius:50%;background:radial-gradient(circle, rgba(59,130,246,.25) 0%, rgba(59,130,246,0) 70%);pointer-events:none;}
.inline-cta--violet:before{background:radial-gradient(circle, rgba(168,85,247,.26) 0%, rgba(168,85,247,0) 70%);}
.inline-cta--blue:before{background:radial-gradient(circle, rgba(34,211,238,.22) 0%, rgba(34,211,238,0) 70%);}
.inline-cta__title{font-size:1.12rem;color:#fff;margin-bottom:.55rem;position:relative;z-index:1;}
.inline-cta__text{font-size:.95rem;line-height:1.65;color:rgba(255,255,255,.74);margin-bottom:.85rem;position:relative;z-index:1;}
.inline-cta__actions{position:relative;z-index:1;}
.blog-offer{position:relative;overflow:hidden;padding:1.5rem;border-radius:28px;margin:1.7rem 0;background:linear-gradient(180deg, rgba(9,18,40,.96) 0%, rgba(14,16,33,.98) 100%);}
.blog-offer:before{content:'';position:absolute;inset:auto -80px -80px auto;width:220px;height:220px;border-radius:50%;background:radial-gradient(circle, rgba(34,211,238,.22) 0%, rgba(34,211,238,0) 72%);pointer-events:none;}
.blog-offer__title{font-size:clamp(1.6rem,3vw,2.3rem);line-height:1.08;color:#fff;margin-bottom:.85rem;max-width:18ch;}
.blog-offer__text{font-size:1rem;line-height:1.72;color:rgba(255,255,255,.78);max-width:62rem;}
.blog-offer__panel{display:grid;grid-template-columns:1.3fr 1fr;gap:1rem;align-items:end;margin-top:1.35rem;position:relative;z-index:1;}
.blog-offer__field{padding:1rem;border-radius:22px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);}
.blog-offer__label{display:block;font-size:.84rem;color:rgba(255,255,255,.65);margin-bottom:.45rem;}
.blog-offer__fake-input{display:flex;align-items:center;min-height:56px;padding:0 1rem;border-radius:18px;background:rgba(7,10,19,.84);border:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.42);font-size:1rem;}
.blog-offer__micro{font-size:.8rem;color:rgba(255,255,255,.56);margin-top:.55rem;}
.blog-offer__actions{display:grid;gap:.8rem;}
.author-box{display:flex;gap:1rem;padding:1.2rem;border-radius:24px;margin-bottom:1.5rem;align-items:flex-start;}
.author-box__avatar{display:flex;align-items:center;justify-content:center;flex:0 0 60px;width:60px;height:60px;border-radius:18px;background:linear-gradient(135deg, #22d3ee 0%, #a855f7 100%);color:#050816;font-weight:900;}
.author-box__name{color:#fff;font-size:1.2rem;margin-bottom:.25rem;}
.author-box__role{color:#9addff;font-weight:600;margin-bottom:.35rem;}
.author-box__note{color:rgba(255,255,255,.7);line-height:1.65;}
.related-block--after-article .section-header--compact{margin-bottom:1rem;}
.section-header--compact h2{margin-bottom:.35rem;}
.section-header--compact p{color:rgba(255,255,255,.64);}
.related-list--cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;list-style:none;padding:0;margin:0;}
.related-list__item a{display:flex;min-height:100%;padding:1rem 1.05rem;border-radius:18px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);color:#fff;font-weight:600;text-decoration:none;line-height:1.55;}
.related-list__item a:hover{border-color:rgba(122,215,255,.35);transform:translateY(-2px);}
.category-page--enhanced .category-hero{padding:1.6rem;border-radius:24px;margin-bottom:1.4rem;background:linear-gradient(180deg, rgba(17,26,52,.78) 0%, rgba(12,15,28,.76) 100%);border:1px solid rgba(255,255,255,.08);}
.category-hero__lead{font-size:1rem;color:rgba(255,255,255,.78);line-height:1.7;}
.category-links{list-style:none;padding:0;margin:0;display:grid;gap:1rem;}
.list-card{padding:1rem 1.05rem;border-radius:18px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);}
.list-card a{color:#fff;font-weight:700;text-decoration:none;display:block;margin-bottom:.35rem;}
.list-card__meta{font-size:.88rem;color:rgba(255,255,255,.58);line-height:1.55;}
@media (min-width: 1100px){
  .article-shell{grid-template-columns:minmax(0,1fr) 320px;}
  .article-main{order:1;}
  .article-sidebar{order:2;}
  .article-sidebar__sticky{position:sticky;top:98px;}
  .article-layout__mobile-tool{display:none;}
}
@media (max-width: 1099px){
  .article-sidebar{order:2;}
}
@media (max-width: 860px){
  .blog-offer__panel,.related-list--cards{grid-template-columns:1fr;}
}
@media (max-width: 767px){
  .article-hero,.blog-offer,.author-box,.sidebar-card,.inline-cta{padding:1rem;}
  .author-box{flex-direction:column;}
  .article-hero__meta{gap:.5rem;}
  .article-hero__meta span{font-size:.78rem;}
}

/* ============================================
   STAGE 6 — RESPONSIVE + DOMAIN CAPTURE POLISH
   ============================================ */
body.page-engine .engine-shell{
  max-width: 1380px;
}

@media (min-width: 1280px){
  .article-shell{
    grid-template-columns: minmax(0, 940px) 340px;
    gap: 2rem;
  }

  .content-page,
  .category-intro,
  .related-block{
    padding: 1.8rem;
  }
}

@media (min-width: 1540px){
  body.page-engine .engine-shell{
    max-width: 1460px;
  }

  .article-shell{
    grid-template-columns: minmax(0, 980px) 360px;
    gap: 2.25rem;
  }
}

.blog-offer__input{
  width: 100%;
  min-height: 56px;
  padding: 0 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(7,10,19,.84);
  color: #fff;
  font-size: 1rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.blog-offer__input::placeholder{
  color: rgba(255,255,255,.34);
}

.blog-offer__input:focus{
  border-color: rgba(65, 226, 255, 0.44);
  box-shadow: 0 0 0 4px rgba(65, 226, 255, 0.10);
}

.article-sidebar{
  min-width: 0;
}

.article-sidebar__sticky{
  align-content: start;
}

@media (min-width: 768px) and (max-width: 1099px){
  .article-shell{
    gap: 1.35rem;
  }

  .article-sidebar__sticky{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .sidebar-card--tool,
  .sidebar-card--author{
    grid-column: span 2;
  }
}

@media (max-width: 767px){
  .page-wrap{
    padding: 1.1rem 0 2.6rem;
  }

  body.page-engine .engine-shell{
    padding: 0 .85rem;
  }

  .article-shell{
    gap: 1rem;
    padding: .85rem;
  }

  .article-main,
  .article-sidebar{
    min-width: 0;
  }

  .article-sidebar{
    margin-top: .15rem;
  }

  .article-sidebar__sticky{
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .sidebar-card,
  .author-box,
  .blog-offer,
  .inline-cta,
  .content-page,
  .related-block,
  .category-intro{
    padding: 1rem;
    border-radius: 20px;
  }

  .article-hero{
    padding: 1rem;
    border-radius: 20px;
  }

  .article-hero__title{
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .article-body{
    font-size: 1rem;
    line-height: 1.8;
  }

  .article-body h2{
    font-size: 1.45rem;
  }

  .article-body h3{
    font-size: 1.12rem;
  }

  .related-list--cards,
  .blog-offer__panel{
    grid-template-columns: 1fr;
  }

  .blog-offer__actions{
    grid-template-columns: 1fr;
  }

  .blog-offer__actions .btn,
  .article-cta__actions .btn,
  .inline-cta__actions .btn{
    width: 100%;
    justify-content: center;
  }

  .blog-offer__text,
  .sidebar-card__text,
  .author-box__note{
    font-size: .94rem;
    line-height: 1.65;
  }

  .sidebar-meta__row{
    align-items: flex-start;
  }

  .sidebar-meta__value{
    max-width: 58%;
    font-size: .84rem;
  }

  .footer-inner{
    align-items: flex-start;
  }
}


/* STAGE 6.1 — domain forms + adaptive polish */
body.page-engine .engine-shell,
body.page-engine .page-wrap .engine-shell{
  width: min(1480px, calc(100vw - 48px));
  max-width: 1480px;
}

.category-page--enhanced,
.article-main{
  width: 100%;
}

.category-page--enhanced .category-hero,
.category-page--enhanced .category-columns,
.category-page--enhanced .blog-offer{
  width: 100%;
}

@media (min-width: 1280px){
  .category-page--enhanced .category-columns{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.25rem;
  }
}

.blog-offer__panel{
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: stretch;
}

.blog-offer__field,
.blog-offer__actions,
.article-sidebar__sticky > *,
.category-columns > *{
  min-width: 0;
}

.blog-offer__input{
  display: block;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(7,10,19,.96);
}

.blog-offer__actions .btn{
  min-height: 56px;
  width: 100%;
  justify-content: center;
}

@media (min-width: 1280px){
  .article-shell{
    grid-template-columns: minmax(0, 1fr) 360px;
  }
  .article-main{
    max-width: none;
  }
}

@media (max-width: 1099px){
  body.page-engine .engine-shell,
  body.page-engine .page-wrap .engine-shell{
    width: min(100%, calc(100vw - 32px));
  }
  .article-shell{
    grid-template-columns: 1fr;
  }
  .article-sidebar{
    width: 100%;
  }
  .article-sidebar__sticky{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 860px){
  .article-sidebar__sticky,
  .blog-offer__panel,
  .category-page--enhanced .category-columns,
  .related-list--cards{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px){
  body.page-engine .engine-shell,
  body.page-engine .page-wrap .engine-shell{
    width: calc(100vw - 20px);
    max-width: none;
    padding: 0;
  }

  .page-wrap{
    padding: .8rem 0 2rem;
  }

  .article-shell{
    padding: 0;
    gap: .9rem;
  }

  .article-main,
  .article-sidebar,
  .content-page,
  .category-page--enhanced,
  .related-block,
  .category-intro,
  .blog-offer,
  .sidebar-card,
  .author-box,
  .inline-cta,
  .article-hero{
    width: 100%;
    max-width: none;
  }

  .blog-offer__field{
    padding: .9rem;
  }

  .blog-offer__input,
  .quick-check__input{
    min-height: 52px;
    font-size: 16px;
  }

  .blog-offer__actions,
  .article-sidebar__sticky{
    display: grid;
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .sidebar-meta__row{
    flex-direction: column;
    gap: .3rem;
  }

  .sidebar-meta__value{
    max-width: 100%;
    text-align: left;
  }
}
