/* style.css - Pickpeach.live Premium Design Theme & Visual Identity */

:root {
  --brand-peach: #FF6B8B;
  --brand-orange: #FF8C00;
  --brand-green: #00FEA9;
  
  --green-glow: rgba(0, 254, 169, 0.45);
  --peach-glow: rgba(255, 107, 139, 0.45);
  --orange-glow: rgba(255, 140, 0, 0.35);
  
  --peach-dim: rgba(255, 107, 139, 0.08);
  --green-dim: rgba(0, 254, 169, 0.08);
  --orange-dim: rgba(255, 140, 0, 0.08);

  --bg-deep-space: #050505;
  --bg-midnight: #090909;
  --bg-dark-card: rgba(10, 10, 10, 0.75);
  --bg-dark-card-hover: rgba(16, 16, 16, 0.85);
  
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-active: rgba(255, 107, 139, 0.35);
  
  --text-primary: #FFFFFF;
  --text-muted: #94A3B8;
  
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
  
  --shadow-neon-peach: 0 0 25px rgba(255, 107, 139, 0.3);
  --shadow-neon-green: 0 0 25px rgba(0, 254, 169, 0.25);
  --shadow-neon-intense: 0 0 45px rgba(255, 107, 139, 0.65);
}

/* Reset & Baseline Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-color: var(--bg-deep-space);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none !important;
}

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

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

.monospace {
  font-family: var(--font-mono);
}

.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

/* Dynamic Multi-Orb Atmospheric Background */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, #11080e 0%, #050505 90%);
}

#atmosphere-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.35;
}

.left-orb {
  width: 450px;
  height: 450px;
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, var(--brand-peach) 0%, rgba(0,0,0,0) 70%);
}

.right-orb {
  width: 550px;
  height: 550px;
  bottom: 10%;
  right: -200px;
  background: radial-gradient(circle, var(--brand-green) 0%, rgba(0,0,0,0) 70%);
}

.center-orb {
  width: 400px;
  height: 400px;
  top: 40%;
  left: 35%;
  background: radial-gradient(circle, var(--brand-orange) 0%, rgba(0,0,0,0) 70%);
  opacity: 0.15;
}

/* Glassmorphism General Panel Configuration */
.glass-card {
  background: var(--bg-dark-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover {
  background: var(--bg-dark-card-hover);
  border-color: var(--card-border-active);
}

/* Header & Logo styling (The "Azar-Peach" Fusion) */
#site-header {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  z-index: 100;
  background: rgba(7, 7, 7, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-wrap:hover .logo-icon {
  transform: scale(1.1) rotate(6deg);
}

.logo-title {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, #FFFFFF 40%, var(--brand-peach) 70%, var(--brand-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-title span {
  font-weight: 500;
  color: var(--brand-green);
  -webkit-text-fill-color: var(--brand-green);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-green);
  border-radius: 4px;
}

/* Online Counter Badge */
.counter-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 254, 169, 0.08);
  border: 1px solid rgba(0, 254, 169, 0.25);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-green);
  box-shadow: inset 0 0 10px rgba(0, 254, 169, 0.1);
}

.indicator-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-green);
  border-radius: 50%;
  position: relative;
}

.indicator-dot::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--brand-green);
  border-radius: 50%;
  top: 0;
  left: 0;
  transform: scale(1);
  animation: ping-outer 1.8s infinite ease-out;
}

@keyframes ping-outer {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* TWO-COLUMN HERO GRID LAYOUT */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0 92px;
  position: relative;
  z-index: 10;
}

.hero-teaser-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 139, 0.06);
  border: 1px solid rgba(255, 107, 139, 0.16);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-peach);
  margin-bottom: 24px;
}

.teaser-star {
  color: var(--brand-green);
  animation: rotation-linear 4s linear infinite;
  display: inline-block;
}

@keyframes rotation-linear {
  100% { transform: rotate(360deg); }
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-peach) 10%, var(--brand-orange) 50%, var(--brand-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead-text {
  font-size: clamp(15.5px, 2.2vw, 17.5px);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 580px;
}

/* SCREEN 1: THE GATEKEEPER CARD */
.gatekeeper-container {
  width: 100%;
  max-width: 540px;
  padding: 36px;
  position: relative;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gatekeeper-container.glow-red-error {
  border-color: #FF3E5E !important;
  box-shadow: 0 0 35px rgba(255, 62, 94, 0.45), 0 16px 40px rgba(0, 0, 0, 0.75) !important;
}

.gatekeeper-container.glow-red-error::before {
  background: linear-gradient(90deg, transparent, #FF3E5E, transparent) !important;
}

.gatekeeper-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-peach), transparent);
}

.gatekeeper-header {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-peach);
  margin-bottom: 20px;
}

.terms-container {
  margin-bottom: 24px;
  position: relative;
}

.terms-label {
  display: flex;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  user-select: none;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
  gap: 12px;
}

.terms-label input {
  display: none;
}

.checkbox-visual {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
  background: rgba(0, 0, 0, 0.4);
  margin-top: 2px;
}

.terms-label:hover .checkbox-visual {
  border-color: var(--brand-peach);
  box-shadow: 0 0 8px rgba(255, 107, 139, 0.2);
}

.terms-label input:checked + .checkbox-visual {
  border-color: var(--brand-green);
  background: var(--green-dim);
  box-shadow: var(--shadow-neon-green);
}

.terms-label input:checked + .checkbox-visual::after {
  content: "✔";
  color: var(--brand-green);
  font-size: 13px;
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.accent-link {
  color: var(--brand-peach);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.accent-link:hover {
  text-shadow: 0 0 8px var(--peach-glow);
  border-bottom: 1px solid var(--brand-peach);
}

/* Warnings */
.warning-pill {
  color: #FF5E5E;
  background: rgba(255, 94, 94, 0.08);
  border: 1px solid rgba(255, 94, 94, 0.18);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: reveal-glow 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes reveal-glow {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Start Button custom tooltips */
.tooltip-bubble {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: linear-gradient(135deg, #FF3E5E 0%, #D61234 100%);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(255, 62, 94, 0.45);
  z-index: 1000;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tooltip-bubble.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.tooltip-arrow-point {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #D61234;
}

/* Pulsing Action MATCH button */
.matching-btn-anchor {
  position: relative;
  width: 100%;
}

.matching-cta {
  width: 100%;
  padding: 18px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, rgb(0, 254, 169) 0%, #FF6B8B 100%);
  color: #050505;
  box-shadow: var(--shadow-neon-peach);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

/* Breathing Breathing animations for MATCH CTA */
@keyframes breathing-glimmer {
  0%, 100% {
    box-shadow: 0 0 15px rgba(255, 107, 139, 0.4), 0 0 5px rgba(0, 254, 169, 0.2);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 107, 139, 0.85), 0 0 20px rgba(0, 254, 169, 0.5);
  }
}

.matching-cta {
  animation: breathing-glimmer 2.0s infinite ease-in-out;
}

.matching-cta:hover {
  transform: scale(1.04) translateY(-1px);
  box-shadow: var(--shadow-neon-intense), 0 0 25px rgba(0, 254, 169, 0.5);
}

@keyframes sweep-scan {
  0% {
    left: -150%;
  }
  40% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}

.matching-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-45deg);
  pointer-events: none;
  animation: sweep-scan 2.5s infinite ease-in-out;
}

.badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.badge-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.badge-icon {
  color: var(--brand-green);
  font-weight: bold;
}

/* LOBBY INTERACTION WINDOW DISPLAY */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mockup-frame {
  width: 100%;
  max-width: 470px;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 107, 139, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neon-peach), 0 25px 50px rgba(0,0,0,0.8);
  padding: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mockup-frame::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand-peach), transparent);
}

.mockup-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.window-buttons {
  display: flex;
  gap: 6px;
}

.window-buttons span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #333;
}

.window-buttons span:nth-of-type(1) { background-color: #FF5F56; }
.window-buttons span:nth-of-type(2) { background-color: #FFBD2E; }
.window-buttons span:nth-of-type(3) { background-color: #27C93F; }

.window-title-bar {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.window-status-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 8s00;
  color: var(--brand-peach);
}

.blinking-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--brand-peach);
  border-radius: 50%;
  animation: simple-ping 1.2s infinite ease-out;
}

@keyframes simple-ping {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.mockup-viewport {
  width: 100%;
  height: 310px;
  background-color: #030303;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 107, 139, 0.1);
  position: relative;
  overflow: hidden;
}

.partner-screen-overlay {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.overlay-meta-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.location-badge {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  background-color: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  color: #fff;
}

.gender-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: rgba(0, 254, 169, 0.15);
  border: 1px solid rgba(0, 254, 169, 0.35);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--brand-green);
}

.partner-visual-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.avatar-radar {
  position: relative;
}

.partner-interests-grid {
  display: flex;
  gap: 6px;
}

.partner-interests-grid span {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-peach);
  background: rgba(255, 107, 139, 0.1);
  border: 1px solid rgba(255, 107, 139, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
}

.overlay-meta-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  z-index: 5;
  background: linear-gradient(360deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  text-align: center;
}

.status-quote {
  font-size: 12.5px;
  font-weight: 500;
  color: #E2E8F0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.self-screen-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 90px;
  height: 120px;
  background-color: #0A0A0A;
  border-radius: 10px;
  border: 1.5px solid var(--brand-green);
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.self-avatar-vector {
  margin-bottom: 6px;
}

.self-preview-tag {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-green);
  letter-spacing: 0.5px;
}

/* Simulated interactive overlay alerts */
.lobby-alerts-area {
  position: absolute;
  top: 55px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  z-index: 20;
}

.lobby-alert-bubble {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.lobby-alert-bubble.alert-peach { border: 1.5px solid rgba(255, 107, 139, 0.35); }
.lobby-alert-bubble.alert-green { border: 1.5px solid rgba(0, 254, 169, 0.35); }

.lobby-alert-emoji {
  font-size: 16px;
}

.lobby-alert-content {
  display: flex;
  flex-direction: column;
}

.lobby-alert-content strong {
  font-family: var(--font-display);
  font-size: 11px;
  color: #FFFFFF;
}

.lobby-alert-content span {
  font-size: 10px;
  color: var(--text-muted);
}

/* Animations for mockup alerts scrolling */
.slide-up-animation-1 {
  animation: floating-banner-roll 4.5s ease-in-out infinite alternate;
}

.slide-up-animation-2 {
  animation: floating-banner-roll 4.5s ease-in-out infinite alternate;
  animation-delay: 1.5s;
}

@keyframes floating-banner-roll {
  0% { opacity: 0; transform: translateY(10px) scale(0.96); }
  10%, 90% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-10px) scale(0.96); }
}

.mockup-action-bar {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.mockup-action-btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  color: #4c3f5d;
  background-color: #161215;
  cursor: not-allowed;
}

/* THE COHESIVE HORIZONTALLY-ORIENTED SANCTUARY STATEMENT */
.sanctuary-banner {
  grid-column: 1 / -1;
  background: rgba(18, 10, 32, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 107, 139, 0.16);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  margin-top: -30px;
  margin-bottom: 72px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sanctuary-banner:hover {
  background: rgba(26, 15, 45, 0.6);
  border-color: rgba(255, 107, 139, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(255, 107, 139, 0.15), 0 12px 40px rgba(0, 0, 0, 0.5);
}

.sanctuary-statement {
  font-family: var(--font-display);
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(241, 245, 249, 0.95);
  text-align: center;
  margin: 0;
}

.statement-brand {
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-peach) 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.statement-highlight {
  color: var(--brand-green);
  font-weight: 600;
}

/* SECTION 2: INTRODUCTION SUB PANEL (SEO Contextual density) */
.intro-sub-panel {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 90px;
  padding: 48px;
}

.editorial-ribbon {
  display: inline-block;
  background: rgba(0, 254, 169, 0.08);
  border: 1px solid rgba(0, 254, 169, 0.3);
  color: var(--brand-green);
  padding: 4px 14px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sub-section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FFFFFF, #93C5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub-section-description {
  font-size: 16px;
  line-height: 1.75;
}

/* SECTION 3: ALTERNATING FEATURES COLUMNS (chitchat style) */
.alternating-features-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 100px;
}

.alternating-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.alternating-feature-row.row-reversed {
  direction: rtl;
}

.alternating-feature-row.row-reversed .feature-text-block {
  direction: ltr;
}

.alternating-feature-row.row-reversed .feature-illustration-block {
  direction: ltr;
}

.feature-caption {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-peach);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.feature-title {
  font-size: clamp(24px, 3.8vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-desc strong {
  color: #fff;
  font-weight: 600;
}

.feature-illustration-block {
  display: flex;
  justify-content: center;
}

/* Custom CSS/SVG Illustration Containers */
.custom-illustration-container {
  width: 100%;
  max-width: 440px;
  height: 270px;
  background: rgba(15, 12, 18, 0.45);
  border: 1px solid rgba(255, 107, 139, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-illustration-container:hover {
  border-color: var(--card-border-active);
  transform: translateY(-4px);
}

.matcher-graph-overlay {
  background: linear-gradient(90deg, var(--brand-peach), var(--brand-orange));
  color: #0A0A0A;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 11.5px;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 14px;
}

.interests-tags-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.interest-pill {
  font-size: 11.5px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5px 12px;
  border-radius: 6px;
  color: #64748b;
  transition: all 0.2s ease;
}

.interest-pill.active {
  color: var(--brand-peach);
  background: var(--peach-dim);
  border-color: rgba(255, 107, 139, 0.35);
  box-shadow: 0 0 10px rgba(255, 107, 139, 0.1);
}

.interest-pill.text-dim {
  color: rgba(255, 255, 255, 0.15);
}

.mockup-chat-room {
  background-color: #050505;
  border: 1px solid rgba(255, 107, 139, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 11.5px;
}

.chat-line {
  margin-bottom: 6px;
  line-height: 1.4;
}

.chat-line:last-child {
  margin-bottom: 0;
}

.lbl-stranger {
  color: var(--brand-peach);
  font-weight: bold;
}

.lbl-self {
  color: var(--brand-green);
  font-weight: bold;
}

/* Block illustration 2: Video SPLIT preview rendering */
.video-preview-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.preview-box {
  height: 140px;
  border-radius: var(--radius-md);
  position: relative;
  background-color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.06);
}

.preview-box.box-active {
  border: 1.5px solid var(--brand-green);
}

.preview-title {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-family: var(--font-display);
  background: rgba(0,0,0,0.65);
  padding: 2px 6px;
  border-radius: 4px;
}

.preview-visual {
  font-size: 42px;
}

.animate-sway {
  animation: generic-tilt-sway 2.5s ease-in-out infinite alternate;
}

.animate-sway-delayed {
  animation: generic-tilt-sway 2.5s ease-in-out infinite alternate;
  animation-delay: 1s;
}

@keyframes generic-tilt-sway {
  0% { transform: scale(0.9) rotate(-3deg); }
  100% { transform: scale(1.05) rotate(3deg); }
}

.telemetry-bar {
  font-size: 10px;
  color: var(--brand-green);
  text-align: center;
  background: rgba(0, 254, 169, 0.04);
  padding: 6px;
  border-radius: 6px;
  border: 1px solid rgba(0, 254, 169, 0.08);
}

/* Block illustration 3: Shield indications */
.network-vector-node {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shield-indicator-toast {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.18);
  font-size: 11.5px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  color: #34d399;
}

/* SECTION 4: THE SIX-GRID VALUE SYSTEM */
.value-props-section {
  padding-bottom: 90px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 8s00;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.section-lead-muted {
  font-size: 15.5px;
  max-width: 650px;
  margin: 0 auto;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.prop-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.prop-card:hover {
  transform: translateY(-5px);
}

.prop-icon-sphere {
  width: 48px;
  height: 48px;
  background: var(--peach-dim);
  border: 1.5px solid var(--card-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brand-peach);
  font-size: 18px;
  box-shadow: 0 0 10px var(--peach-dim);
}

.prop-card:nth-of-type(even) .prop-icon-sphere {
  background: var(--green-dim);
  border-color: rgba(0, 254, 169, 0.2);
  color: var(--brand-green);
}

.prop-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 750;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.prop-desc {
  font-size: 14px;
  line-height: 1.6;
}

/* SECTION 5: COMPARISON TABLE MATRIX */
.comparison-matrix-section {
  padding-bottom: 90px;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.glass-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--bg-dark-card);
}

.glass-table th, .glass-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 107, 139, 0.05);
  font-size: 14.5px;
}

.glass-table th {
  background-color: rgba(15, 10, 18, 0.45);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13.5px;
  letter-spacing: 0.8px;
}

.glass-table th.col-highlight {
  color: var(--brand-peach);
  text-shadow: 0 0 10px var(--peach-glow);
}

.table-param-lbl {
  color: #FFFFFF;
  font-weight: 600;
}

.status-excellent {
  color: var(--brand-green);
  font-weight: 700;
  background: rgba(0, 254, 169, 0.02);
}

.status-poor {
  color: #5b6278;
}

/* SECTION 6: E-E-A-T SEO ARTICLES CONTENT */
.content-marketing-section {
  padding-bottom: 90px;
}

.seo-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.seo-article-block {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
}

.seo-article-block:hover {
  background: rgba(22, 14, 26, 0.6);
  border-color: rgba(255, 107, 139, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255, 107, 139, 0.15), 0 12px 40px rgba(0,0,0,0.5);
}

.seo-article-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 750;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.4;
  border-left: 3px solid var(--brand-peach);
  padding-left: 12px;
}

.seo-article-paragraph {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(241, 245, 249, 0.85);
  margin-bottom: 14px;
}

.seo-article-paragraph:last-child {
  margin-bottom: 0;
}

.seo-article-paragraph code {
  background: rgba(255, 107, 139, 0.15);
  color: var(--brand-peach);
  padding: 2px 6px;
  border-radius: 4px;
}

/* SECTION 7: FAQ ACCORDION SYSTEMS */
.faq-section {
  padding-bottom: 100px;
}

.accordion-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-block {
  border-radius: var(--radius-md);
  border-color: rgba(255, 107, 139, 0.15);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.accordion-trigger:focus {
  outline: none;
}

.trigger-indicator {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  color: var(--brand-peach);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-block.is-active .trigger-indicator {
  transform: rotate(45deg);
  background: var(--peach-dim);
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-text {
  padding: 0 28px 24px 28px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* CALL TO ACTION BANNER */
.cta-banner-container {
  padding-bottom: 100px;
}

.cta-banner-card {
  padding: 56px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 139, 0.15) 0%, rgba(15, 15, 15, 0.75) 100%);
  border: 1px solid var(--card-border-active);
  box-shadow: var(--shadow-neon-peach);
}

.cta-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 15.5px;
  max-width: 580px;
  margin: 0 auto 28px;
}

.cta-scroll-top-btn {
  padding: 14px 34px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  border: none;
  color: #0A0A0A;
  background: var(--brand-green);
  box-shadow: var(--shadow-neon-green);
  cursor: pointer;
  transition: all 0.25s ease;
}

.cta-scroll-top-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 254, 169, 0.6);
}

/* FOOTER ARCHITECTURE */
#site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 0 40px;
  background-color: #080808;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 18px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col-hdr {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-peach);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-meta-row {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-meta-row p {
  font-size: 13px;
}

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

.footer-socials a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: var(--brand-peach);
}

/* SCREEN 2: THE SECURE CHAT ENGINE VIEWPORT OVERLAYS */
#chat-frame-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 99999;
  background-color: #030303;
  display: flex;
  flex-direction: column;
}

/* Transition matching pipeline overlay screen */
#matchmaking-status-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 40%, #150d12 0%, #050505 90%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100010;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.matchmaking-cube {
  position: relative;
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spin-border {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid var(--brand-peach);
  border-radius: 50%;
  border-top-color: transparent;
  animation: rotation-linear 1s infinite linear;
}

.loading-peach-icon {
  font-size: 34px;
  animation: generic-tilt-sway 1.5s ease-in-out infinite alternate;
}

.matchmaking-status-headline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.handshake-line-ticker {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand-green);
  text-align: center;
  max-width: 340px;
  min-height: 22px;
  text-shadow: 0 0 10px rgba(0, 254, 169, 0.3);
}

/* Slim Branded 50px Navbar Header inside Active video screen */
.chat-top-bar-branded {
  height: 50px;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid rgba(255, 107, 139, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-shrink: 0;
  z-index: 100015;
}

.left-branded-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mini-logo-vector {
  animation: rotation-linear 6s infinite linear;
}

.branded-navbar-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.8px;
}

.chat-exit-cta {
  background: linear-gradient(135deg, var(--brand-peach) 0%, #f43f5e 100%);
  color: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 18px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 800;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 139, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.5px;
}

.chat-exit-cta:hover {
  transform: scale(1.05) translateY(-0.5px);
  box-shadow: var(--shadow-neon-peach);
  background: linear-gradient(135deg, var(--brand-peach) 0%, var(--brand-orange) 100%);
}

/* Chat engine structure and placement viewport limits */
.viewport-chat-holder {
  position: fixed !important;
  top: 50px !important;
  left: 0 !important;
  width: 100vw !important;
  height: calc(100dvh - 50px) !important;
  background-color: #050505;
  z-index: 9999 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

.iframe-theatre-wrapper {
  flex-grow: 1 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background-color: #000;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.iframe-theatre-wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  display: block !important;
}

/* MOBILE Scale viewport exactness to prevent overflow scroll slips */
@media (max-width: 991px) {
  #chat-frame-view {
    height: 100dvh;
    height: -webkit-fill-available;
  }
}

/* SCROLL REVEAL STRUCTURAL CONFIG */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Tactical Shaking Keyframes */
@keyframes shake-key-frame {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-8px); }
  30% { transform: translateX(6px); }
  45% { transform: translateX(-6px); }
  60% { transform: translateX(4px); }
  75% { transform: translateX(-2px); }
  90% { transform: translateX(1px); }
}

.shake-trigger {
  animation: shake-key-frame 0.5s ease-in-out !important;
}

/* MEDIA QUERY RESPONSIVENESS */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 0 64px;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-lead-text {
    margin-bottom: 28px;
  }

  .hero-visual {
    justify-content: center;
    margin-top: 12px;
  }

  .sanctuary-banner {
    padding: 24px;
    margin-bottom: 56px;
    margin-top: -10px;
  }

  .intro-sub-panel {
    padding: 30px 20px;
    margin-bottom: 56px;
  }

  .alternating-feature-row {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .alternating-feature-row.row-reversed {
    direction: ltr;
  }

  .alternating-feature-row.row-reversed .feature-text-block {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-links-group {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 500px) {
  .footer-links-group {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header-nav {
    display: none; /* Hide top items on super narrow mobile screens */
  }

  .gatekeeper-container {
    padding: 24px;
  }
}
