@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Required Contract Tokens for Verification */
  --bg-obsidian: #07090E;
  --neon-cyan: #00F0FF;

  /* Global Color Palette */
  --brand-primary: #3B5BFD;
  --brand-primary-hover: #2747EC;
  --brand-gradient: linear-gradient(135deg, #3B5BFD 0%, #7C3AED 55%, #00F0FF 100%);
  --brand-gradient-subtle: linear-gradient(135deg, rgba(59, 91, 253, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);

  --accent-purple: #7C3AED;
  --accent-cyan: #00F0FF;
  --accent-emerald: #10B981;
  --accent-amber: #F59E0B;
  --accent-rose: #EF4444;

  /* Background Colors */
  --bg-pure-white: #FFFFFF;
  --bg-light-ice: #FAFCFF;
  --bg-light-grey: #F8FAFC;
  --bg-subtle-card: #F1F5F9;
  --bg-dark-navy: #0B1120;
  --bg-dark-card: #131D33;

  /* Text Colors */
  --text-headline: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-subtle: #94A3B8;
  --text-light: #F8FAFC;
  --text-light-muted: #94A3B8;

  /* Borders & Shadows */
  --border-light: rgba(226, 232, 240, 0.9);
  --border-subtle: rgba(203, 213, 225, 0.6);
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-dark-hover: rgba(59, 91, 253, 0.5);

  --shadow-subtle: 0 1px 3px 0 rgba(15, 23, 42, 0.04);
  --shadow-card: 0 4px 14px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -2px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 20px 38px -10px rgba(59, 91, 253, 0.16), 0 8px 16px -4px rgba(15, 23, 42, 0.05);
  --shadow-glass: 0 24px 48px -12px rgba(15, 23, 42, 0.18), 0 8px 16px -4px rgba(15, 23, 42, 0.08);

  /* Typography */
  --font-serif: 'Newsreader', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script: 'Caveat', cursive, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--bg-light-ice);
  color: var(--text-body);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

img, svg, video, canvas {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.75rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* ==========================================================================
   SCROLL-REVEAL ANIMATIONS
   ========================================================================== */
.reveal-block {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js-reveal-ready .reveal-block:not(.revealed) {
  opacity: 0;
  transform: translateY(22px);
}

.js-reveal-ready .reveal-block.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-150 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.2s; }
.delay-250 { transition-delay: 0.25s; }
.delay-300 { transition-delay: 0.3s; }
.delay-350 { transition-delay: 0.35s; }
.delay-400 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-block {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   HEADER (Dark Obsidian Top Bar - Single Line, Large Visible Logo, No-Wrap Buttons)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 100%;
  background: rgba(8, 10, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.5);
  padding: 0.75rem 0;
  z-index: 1000;
  transition: all 0.25s ease;
}

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

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.brand-link:hover {
  transform: scale(1.03);
}

.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: nowrap;
}

@media (min-width: 960px) {
  .header-nav {
    display: flex;
  }
}

.nav-link {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

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

.nav-telegram-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #60A5FA;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.nav-telegram-badge:hover {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-header-ghost {
  color: #E2E8F0;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s ease, background 0.2s ease;
}

.btn-header-ghost:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.btn-header-cta {
  background: linear-gradient(135deg, #3B82F6 0%, #4F46E5 100%);
  color: #FFFFFF;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
  transition: all 0.2s ease;
}

.btn-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
  filter: brightness(1.08);
}

@media (max-width: 480px) {
  .btn-header-ghost {
    display: none;
  }
  .brand-logo-img {
    height: 36px;
  }
  .btn-header-cta {
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
  }
}

/* ==========================================================================
   TYPOGRAPHY & GRADIENTS
   ========================================================================== */
.font-serif {
  font-family: var(--font-serif);
}

.font-script {
  font-family: var(--font-script);
}

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

.gradient-text-purple {
  background: linear-gradient(135deg, #7C3AED 0%, #C026D3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-light {
  background: linear-gradient(135deg, #93C5FD 0%, #C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   REACT BITS: ANIMATED GRADIENT TEXT (https://reactbits.dev/text-animations/gradient-text)
   ========================================================================== */
@keyframes gradientTextAnim {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animated-gradient-text,
.gradient-text-animated {
  display: inline-block;
  background-image: linear-gradient(
    90deg,
    #5227FF 0%,
    #FF9FFC 33%,
    #B497CF 66%,
    #5227FF 100%
  );
  background-size: 300% 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientTextAnim 8s ease-in-out infinite;
  will-change: background-position;
  transition: filter 0.3s ease;
}

.animated-gradient-text:hover,
.gradient-text-animated:hover {
  animation-play-state: paused;
  filter: drop-shadow(0 0 12px rgba(255, 159, 252, 0.45));
}

/* Light / Neon Cyan variant for dark sections */
.animated-gradient-text-aurora {
  display: inline-block;
  background-image: linear-gradient(
    90deg,
    #00F0FF 0%,
    #7C3AED 33%,
    #FF9FFC 66%,
    #00F0FF 100%
  );
  background-size: 300% 100%;
  background-repeat: repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientTextAnim 8s ease-in-out infinite;
  will-change: background-position;
}

.animated-gradient-text-aurora:hover {
  animation-play-state: paused;
  filter: drop-shadow(0 0 14px rgba(0, 240, 255, 0.6));
}

/* ==========================================================================
   ILLUSTRATION BANNER SECTIONS (Between-Section Full Illustrations)
   ========================================================================== */
.section-illustration-banner {
  padding: 1.5rem 0 2.5rem 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.illustration-banner-card {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(226, 232, 240, 0.8);
  background: #080A12;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.illustration-banner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 70px -15px rgba(59, 130, 246, 0.3), 0 0 0 1px rgba(59, 130, 246, 0.4);
}

.illustration-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Section Common Headers */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 100%;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 0.85rem;
}

.section-eyebrow-dark {
  color: var(--neon-cyan);
}

.section-serif-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-headline);
  letter-spacing: -0.02em;
  margin-bottom: 1.15rem;
}

.section-serif-title.dark {
  color: #FFFFFF;
}

.section-lead-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 720px;
}

.section-lead-desc.dark {
  color: var(--text-light-muted);
}

/* ==========================================================================
   SECTION 1: HERO (Exact Reference Match & Layout)
   ========================================================================== */
.section-hero-split {
  position: relative;
  padding: 4.5rem 0 4.5rem 0;
  background: 
    radial-gradient(circle at 6% 92%, rgba(192, 132, 252, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 94% 92%, rgba(59, 130, 246, 0.15) 0%, transparent 45%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  overflow: hidden;
}

.hero-container-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 2rem;
  }
}

.hero-copy-col {
  max-width: 520px;
  position: relative;
  z-index: 5;
}

.hero-eyebrow-exact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3B82F6;
  margin-bottom: 1.25rem;
}

.hero-eyebrow-dot {
  color: #94A3B8;
}

.hero-title-serif {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.2vw, 4.35rem);
  font-weight: 500;
  line-height: 1.06;
  color: #0F172A;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #4338CA 0%, #3B82F6 100%);
  color: #FFFFFF;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 8px 24px -4px rgba(67, 56, 202, 0.45);
  transition: all 0.25s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(67, 56, 202, 0.55);
}

.btn-hero-secondary {
  background: #FFFFFF;
  color: #0F172A;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid #E2E8F0;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  border-color: #CBD5E1;
  color: #2563EB;
  transform: translateY(-1px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid #FFFFFF;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}

.avatar-circle:first-child {
  margin-left: 0;
}

.social-proof-text {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.35;
}

.social-proof-text strong {
  color: #0F172A;
  font-weight: 700;
  display: block;
}

/* Right Visual Stage (Exact Reference Artwork + Centerpiece Widget) */
.hero-visual-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-stage-wrap {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px -15px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(226, 232, 240, 0.8);
  background: #FFFFFF;
}

.hero-stage-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Floating Centerpiece Live Rehearsal Card (Right Lower Corner - Zero Overlap with Subject Face & Neck) */
.glass-rehearsal-card {
  position: absolute;
  right: 18px;
  bottom: -24px;
  width: 290px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  padding: 1.15rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.04);
  z-index: 10;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.glass-rehearsal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.28);
}

@media (max-width: 1023px) {
  .glass-rehearsal-card {
    position: static;
    transform: none;
    width: 100%;
    max-width: 360px;
    margin: 1.5rem auto 0 auto;
  }
}

.rehearsal-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #0F172A;
}

.live-dot-red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
  animation: pulseBeacon 1.8s infinite;
}

.rehearsal-timer {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8125rem;
  color: #EF4444;
}

.dialogue-bubble {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.95rem;
}

.dialogue-header-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.manager-thumb-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #CBD5E1;
}

.dialogue-speaker {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.02em;
}

.dialogue-text {
  font-size: 0.8125rem;
  color: #1E293B;
  line-height: 1.45;
  margin: 0;
}

/* Soundwave Waveform Visualizer */
.soundwave-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5px;
  height: 36px;
  padding: 0 0.5rem;
  margin-bottom: 0.85rem;
}

.soundwave-bar {
  width: 3px;
  height: 14px;
  background: #3B82F6;
  border-radius: 999px;
  animation: waveBar 1.4s ease-in-out infinite alternate;
}

.soundwave-bar:nth-child(2n) { animation-delay: 0.12s; height: 26px; background: #4F46E5; }
.soundwave-bar:nth-child(3n) { animation-delay: 0.28s; height: 34px; background: #2563EB; }
.soundwave-bar:nth-child(4n) { animation-delay: 0.42s; height: 20px; background: #60A5FA; }
.soundwave-bar:nth-child(5n) { animation-delay: 0.22s; height: 30px; background: #3B82F6; }

@keyframes waveBar {
  0% { transform: scaleY(0.3); opacity: 0.6; }
  100% { transform: scaleY(1); opacity: 1; }
}

.mic-action-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.mic-button-glow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4338CA 0%, #3B82F6 100%);
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2);
  cursor: pointer;
  animation: micPulse 2s infinite;
}

@keyframes micPulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.listening-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748B;
}

/* ==========================================================================
   LIFESTYLE SHOWCASE (Overlapping Sliding Carousel Stage with Panoramic Cards)
   ========================================================================== */
.section-lifestyle-gallery {
  position: relative;
  padding: 3.25rem 0 7rem 0;
  background: #080A12;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  color: #FFFFFF;
}

/* WebGL2 Grainient Dynamic Shader Background Layer (React Bits) */
.grainient-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.grainient-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.78;
  filter: saturate(1.35) contrast(1.15);
  transition: opacity 0.8s ease;
}

.grainient-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(8, 10, 18, 0.12) 0%, rgba(8, 10, 18, 0.75) 70%, #080A12 100%),
              linear-gradient(180deg, #080A12 0%, transparent 18%, transparent 82%, #080A12 100%);
  pointer-events: none;
}

.grainient-fallback {
  background: radial-gradient(circle at 35% 30%, rgba(82, 39, 255, 0.3) 0%, transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(255, 159, 252, 0.25) 0%, transparent 60%),
              radial-gradient(circle at 50% 85%, rgba(180, 151, 207, 0.2) 0%, transparent 70%);
}

.section-lifestyle-gallery .container {
  position: relative;
  z-index: 1;
}

.section-lifestyle-gallery .section-eyebrow {
  color: #00F5D4;
  background: rgba(0, 245, 212, 0.08);
  border: 1px solid rgba(0, 245, 212, 0.25);
  padding: 0.32rem 0.9rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  box-shadow: 0 0 15px rgba(0, 245, 212, 0.15);
}

.section-lifestyle-gallery .section-serif-title {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.section-lifestyle-gallery .section-lead-desc {
  color: #94A3B8;
  font-size: 1.125rem;
  line-height: 1.6;
}

.lifestyle-slider-container {
  position: relative;
  margin-top: 3rem;
  padding: 0.5rem 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.slider-controls-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding: 0 0.5rem;
}

.slider-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #94A3B8;
}

.section-lifestyle-gallery .pulse-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00F5D4;
  box-shadow: 0 0 0 3px rgba(0, 245, 212, 0.25), 0 0 10px rgba(0, 245, 212, 0.5);
  animation: pulseBeacon 2s infinite;
}

.slider-nav-arrows {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-lifestyle-gallery .slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}

.section-lifestyle-gallery .slider-btn:hover {
  background: #6366F1;
  border-color: #6366F1;
  color: #FFFFFF;
  transform: scale(1.06);
  box-shadow: 0 0 22px rgba(99, 102, 241, 0.55);
}

.lifestyle-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 0.5rem 2.5rem 0.5rem;
  scrollbar-width: none;
  gap: 0;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.lifestyle-slider-track::-webkit-scrollbar {
  display: none;
}

.lifestyle-slide-card {
  position: relative;
  flex: 0 0 580px;
  width: 580px;
  height: 380px;
  margin-right: -45px;
  scroll-snap-align: center;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 50px -10px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  background: #0D111D;
  transform: scale(0.96);
  opacity: 0.82;
  cursor: pointer;
  will-change: transform, opacity;
}

/* Moving Blocks Entrance Animations on Scroll */
.js-reveal-ready .lifestyle-slider-container:not(.revealed) .scroll-block-card {
  opacity: 0;
  transform: translateX(65px) scale(0.90);
}

.js-reveal-ready .lifestyle-slider-container.revealed .scroll-block-card {
  opacity: 0.82;
  transform: translateX(0) scale(0.96);
  transition-delay: calc(var(--card-idx, 0) * 85ms);
}

.lifestyle-slide-card:hover,
.lifestyle-slide-card.active {
  transform: scale(1.02) translateY(-10px) !important;
  opacity: 1 !important;
  z-index: 10;
  box-shadow: 0 28px 65px -10px rgba(0, 0, 0, 0.85),
              0 0 0 2px #6366F1,
              0 0 30px rgba(99, 102, 241, 0.45);
}

/* Interactive Cursor Spotlight Glow on Card */
.lifestyle-slide-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1.5px;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.28), transparent 45%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.lifestyle-slide-card:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .lifestyle-slide-card {
    flex: 0 0 88vw;
    width: 88vw;
    height: 320px;
    margin-right: 1rem;
    transform: none !important;
    opacity: 1 !important;
  }
}

.slide-media-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lifestyle-slide-card:hover .slide-media-img,
.lifestyle-slide-card.active .slide-media-img {
  transform: scale(1.04);
}

.slide-info-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 18, 0.05) 0%, rgba(8, 10, 18, 0.35) 45%, rgba(8, 10, 18, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 2rem;
  color: #FFFFFF;
}

.slide-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  width: fit-content;
}

.slide-headline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.slide-paragraph {
  font-size: 0.9375rem;
  color: rgba(241, 245, 249, 0.92);
  line-height: 1.5;
  max-width: 480px;
}

.slider-pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.section-lifestyle-gallery .dot-btn {
  width: 38px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #94A3B8;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: all 0.2s ease;
}

.section-lifestyle-gallery .dot-btn:hover,
.section-lifestyle-gallery .dot-btn.active {
  background: #6366F1;
  color: #FFFFFF;
  border-color: #6366F1;
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.55);
}

/* ==========================================================================
   SECTION 2 & 3: THE PROBLEM & A NEW PARADIGM (Reference Image 1 Split View)
   ========================================================================== */
.section-problem-paradigm {
  padding: 3rem 0 6rem 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.split-2col-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .split-2col-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 5rem;
  }
}

.stats-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.75rem;
}

.stat-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: baseline;
  gap: 1.25rem;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 1.5rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 600;
  color: var(--brand-primary);
  line-height: 1;
}

.stat-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* Right Column: Paradigm Visual Virtual Space Card */
.paradigm-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin: 1.75rem 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 240, 255, 0.1);
  background: #0B0F19;
}

.paradigm-virtual-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: transform 0.4s ease;
}

.paradigm-visual-card:hover .paradigm-virtual-img {
  transform: scale(1.02);
}

.paradigm-visual-box {
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(59, 91, 253, 0.06) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin: 2rem 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 240px;
}

.glass-pillars-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.glass-pillar {
  width: 44px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.85) 0%, rgba(59, 91, 253, 0.95) 100%);
  box-shadow: 0 12px 24px rgba(59, 91, 253, 0.25);
  backdrop-filter: blur(10px);
}

.pillar-1 { height: 75px; background: linear-gradient(180deg, rgba(0, 240, 255, 0.4) 0%, rgba(59, 91, 253, 0.5) 100%); }
.pillar-2 { height: 110px; background: linear-gradient(180deg, rgba(0, 240, 255, 0.6) 0%, rgba(59, 91, 253, 0.7) 100%); }
.pillar-3 { height: 160px; background: linear-gradient(180deg, rgba(0, 240, 255, 0.8) 0%, rgba(99, 102, 241, 0.85) 100%); }
.pillar-4 { height: 195px; background: linear-gradient(180deg, rgba(0, 240, 255, 0.95) 0%, rgba(124, 58, 237, 0.95) 100%); }
.pillar-5 { height: 220px; background: linear-gradient(180deg, rgba(168, 85, 247, 0.95) 0%, rgba(59, 91, 253, 0.95) 100%); }

.handwritten-pillar-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-script);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--brand-primary);
  transform: rotate(-8deg);
}

.paradigm-pills-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .paradigm-pills-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.paradigm-pill-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pill-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.pill-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-headline);
}

.pill-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   SECTION 2 EXPANDED: EVERYDAY WORKPLACE FRICTION CARDS
   ========================================================================== */
.section-friction {
  padding: 2.5rem 0 5rem 0;
  background: #F8FAFC;
}

.friction-grid-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

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

.friction-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.friction-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 91, 253, 0.4);
  box-shadow: var(--shadow-hover);
}

.friction-indicator-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary);
  background: #EFF6FF;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 1rem;
  width: fit-content;
}

.friction-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.friction-card-text {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION 4 & 5: THE PARADIGM SHIFT (Dark Obsidian Contrast Section)
   ========================================================================== */
.section-paradigm-shift {
  padding: 3.25rem 0 6.5rem 0;
  background: var(--bg-dark-navy);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-paradigm-shift::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(59, 91, 253, 0.15) 0%, rgba(0, 240, 255, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.comparison-triad-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3.5rem;
}

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

.triad-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.triad-card.featured {
  background: linear-gradient(180deg, #182542 0%, #111B30 100%);
  border: 1px solid var(--brand-primary);
  box-shadow: 0 20px 40px -10px rgba(59, 91, 253, 0.3);
}

.triad-card:hover {
  border-color: var(--border-dark-hover);
  transform: translateY(-4px);
}

.triad-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.triad-badge.fail {
  color: var(--accent-rose);
}

.triad-badge.win {
  color: var(--neon-cyan);
}

.triad-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.triad-desc {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.triad-meta {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

/* ==========================================================================
   SECTION 6 & 7: SCENARIOS & DETERMINISTIC SIMULATOR (Reference Image 3)
   ========================================================================== */
.section-scenarios-simulator {
  padding: 3rem 0 6rem 0;
  background: #FFFFFF;
}

.scenarios-grid-2x3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

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

.scenario-card-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-subtle);
  transition: all 0.2s ease;
  cursor: pointer;
}

.scenario-card-item:hover {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.scenario-card-item.active {
  border-color: var(--brand-primary);
  background: #F8FAFC;
}

.scenario-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: #EFF6FF;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scenario-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 0.25rem;
}

.scenario-card-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.scenario-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 2rem;
  transition: transform 0.2s ease;
}

.scenario-link-cta:hover {
  transform: translateX(4px);
}

/* MacOS Window Simulator Mockup */
.macos-window-mockup {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  margin-top: 2rem;
}

.macos-title-bar {
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.macos-dots {
  display: flex;
  gap: 6px;
}

.macos-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.macos-dot.red { background: #EF4444; }
.macos-dot.yellow { background: #F59E0B; }
.macos-dot.green { background: #10B981; }

.macos-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-headline);
}

.macos-timer {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.simulator-window-body {
  display: grid;
  grid-template-columns: 1fr;
  padding: 1.5rem;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .simulator-window-body {
    grid-template-columns: 1.4fr 1fr;
  }
}

.simulator-chat-pane {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sim-msg-row {
  display: flex;
  gap: 0.75rem;
}

.sim-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-headline);
  flex-shrink: 0;
}

.sim-avatar.pm {
  background: #DBEAFE;
  color: var(--brand-primary);
}

.sim-avatar.you {
  background: #DCFCE7;
  color: #15803D;
}

.sim-bubble {
  background: #F1F5F9;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-headline);
}

.sim-bubble.user {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
}

.sim-phrasing-toggle {
  display: flex;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.toggle-pill-btn {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
}

.toggle-pill-btn.active {
  background: var(--brand-primary);
  color: #FFFFFF;
  border-color: var(--brand-primary);
}

/* Real-Time Guidance Sidebar */
.sim-guidance-sidebar {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 1.15rem;
}

.guidance-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-headline);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.guidance-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.guidance-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8125rem;
}

.guidance-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.guidance-icon.pass { color: var(--accent-emerald); }
.guidance-icon.warn { color: var(--accent-amber); }

.guidance-item strong {
  display: block;
  color: var(--text-headline);
  font-weight: 600;
}

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

/* ==========================================================================
   SECTION 8 & 9: TONE COACH & 3-STEP WORKFLOW (Reference Image 4)
   ========================================================================== */
.section-tone-workflow {
  padding: 3rem 0 6rem 0;
  background: #F8FAFC;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.tone-card-visual {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

.tone-meter-box {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.circular-meter-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.circular-meter-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.meter-center-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.meter-score-num {
  font-family: var(--font-mono);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-headline);
  line-height: 1;
}

.meter-score-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.tone-bars-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.tone-bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tone-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-body);
}

.tone-bar-track {
  height: 6px;
  background: #E2E8F0;
  border-radius: 999px;
  overflow: hidden;
}

.tone-bar-fill {
  height: 100%;
  border-radius: 999px;
}

.tone-bar-fill.purple { width: 92%; background: #7C3AED; }
.tone-bar-fill.blue { width: 88%; background: #3B5BFD; }
.tone-bar-fill.cyan { width: 95%; background: #06B6D4; }
.tone-bar-fill.teal { width: 84%; background: #10B981; }

.tone-verdict-pill {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  font-size: 0.875rem;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Connected 3-Step Workflow Pipeline */
.workflow-pipeline-3steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.workflow-step-node {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-subtle);
  position: relative;
  transition: all 0.2s ease;
}

.workflow-step-node:hover {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.step-indicator-number {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary);
  background: #EFF6FF;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-node-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 0.35rem;
}

.step-node-content p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ==========================================================================
   SECTION 10 & 11: ROLE TRACKS & COMPARISON MATRIX (Reference Image 5)
   ========================================================================== */
.section-roles-matrix,
.section-roles {
  padding: 3.25rem 0 4rem 0;
  background: #FFFFFF;
}

.section-comparison {
  padding: 3.25rem 0 5.5rem 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
}

.role-cards-5grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 3rem 0 0 0;
}

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

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

.role-card-box {
  background: #FAFCFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: all 0.25s ease;
}

.role-card-box:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  background: #FFFFFF;
}

.role-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.role-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.role-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Comparison Table (Reference Image 5) */
.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-glass);
  background: #FFFFFF;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.9375rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #F1F5F9;
}

.comparison-table th {
  font-weight: 600;
  color: var(--text-muted);
}

.comparison-table th.metric-col,
.comparison-table td.metric-col {
  text-align: left;
  font-weight: 600;
  color: var(--text-headline);
  padding-left: 2rem;
  width: 28%;
}

.prodelect-column-head {
  background: var(--brand-primary);
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 1.05rem;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 4px 12px rgba(59, 91, 253, 0.3);
}

.prodelect-cell {
  background: #F8FAFF;
  font-weight: 600;
  color: var(--brand-primary);
}

.table-check-icon {
  color: var(--brand-primary);
}

.table-dash-icon {
  color: #CBD5E1;
}

/* ==========================================================================
   SECTION 12: PEER EVIDENCE & SALARY IMPACT (DOU.ua Data)
   ========================================================================== */
.section-peer-evidence {
  padding: 3rem 0 6rem 0;
  background: #F8FAFC;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.quotes-triad-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin: 3.5rem 0;
}

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

.peer-quote-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-body-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-headline);
  margin-bottom: 1.5rem;
}

.quote-author-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid #F1F5F9;
  padding-top: 1rem;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-headline);
}

.author-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.salary-stat-banner {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-glass);
}

.salary-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.salary-subhead {
  font-size: 1.05rem;
  color: #94A3B8;
  max-width: 750px;
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 13: OBJECTIONS & TRANSPARENCY ACCORDION
   ========================================================================== */
.section-objections {
  padding: 3rem 0 6rem 0;
  background: #FFFFFF;
}

.accordion-list {
  max-width: 860px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s ease;
}

.accordion-item:hover {
  border-color: rgba(59, 91, 253, 0.4);
}

.accordion-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-headline);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.accordion-icon {
  transition: transform 0.25s ease;
  color: var(--brand-primary);
  flex-shrink: 0;
}

.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.65;
  display: none;
}

.accordion-item.open .accordion-content {
  display: block;
}

/* ==========================================================================
   SECTION 14: PRICING TIERS (Commerce Price Book PB_UA_UAH_2026_07)
   ========================================================================== */
.section-pricing {
  padding: 3.25rem 0 6.5rem 0;
  background: #F8FAFC;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.pricing-cards-triad {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

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

.pricing-tier-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all 0.25s ease;
}

.pricing-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pricing-tier-card.featured {
  border: 2px solid var(--brand-primary);
  box-shadow: 0 20px 40px -10px rgba(59, 91, 253, 0.2);
}

.popular-ribbon {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-primary);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.4rem 1.35rem;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(59, 91, 253, 0.4);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
}

.tier-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 0.5rem;
}

.tier-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 1.25rem 0;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-headline);
}

.price-amount {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--text-headline);
  line-height: 1;
}

.price-period {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.tier-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0 2.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-body);
}

.tier-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.tier-feature-item svg {
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.btn-tier-cta {
  margin-top: auto;
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-tier-cta.outline {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}

.btn-tier-cta.outline:hover {
  background: #EFF6FF;
}

.btn-tier-cta.solid {
  background: var(--brand-primary);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 14px rgba(59, 91, 253, 0.3);
}

.btn-tier-cta.solid:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(59, 91, 253, 0.45);
}

.guarantee-badge-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ==========================================================================
   SECTION 15: FAQ ACCORDION
   ========================================================================== */
.section-faq {
  padding: 3rem 0 6rem 0;
  background: #FFFFFF;
}

/* ==========================================================================
   SECTION 16: FINAL CTA CONVERSION BANNER (Cosmic Obsidian Atmosphere)
   ========================================================================== */
.section-cta {
  padding: 3.25rem 0 6.5rem 0;
  background: var(--bg-obsidian);
  position: relative;
  overflow: hidden;
}

.cta-banner-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 4.5rem 2rem;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cta-banner-bg-orb {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 91, 253, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-bg-orb-left {
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.banner-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.banner-desc {
  font-size: 1.125rem;
  color: var(--text-light-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.65;
}

.banner-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 540px;
  margin: 0 auto 0.5rem auto;
}

@media (min-width: 640px) {
  .banner-form {
    flex-direction: row;
    align-items: flex-start;
  }
}

.banner-input-wrapper {
  position: relative;
  flex: 1;
  width: 100%;
}

.banner-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 0.95rem 2.85rem 0.95rem 1.5rem;
  font-size: 1rem;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.banner-input:focus {
  border-color: var(--neon-cyan);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.2);
}

.banner-input.is-valid {
  border-color: #10B981;
  background: rgba(16, 185, 129, 0.08);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.banner-input.is-invalid {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.08);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.banner-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.input-status-icon {
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  width: 20px;
  height: 20px;
  transition: opacity 0.2s ease;
}

.banner-email-feedback {
  min-height: 1.35rem;
  margin-top: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.84rem;
  line-height: 1.4;
  transition: all 0.2s ease;
  text-align: center;
}

.banner-email-feedback.valid {
  color: #34D399;
}

.banner-email-feedback.invalid {
  color: #F87171;
}

.banner-email-feedback.hint {
  color: rgba(255, 255, 255, 0.65);
}

.banner-btn {
  background: var(--brand-primary);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.95rem 1.85rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(59, 91, 253, 0.4);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.banner-btn:hover:not(:disabled) {
  background: var(--brand-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 91, 253, 0.55);
}

.banner-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.banner-toast {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--neon-cyan);
  display: none;
}

.banner-slogan-ribbon {
  display: inline-block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.5rem;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   FOOTER (Midnight Obsidian Anchor)
   ========================================================================== */
.site-footer {
  background: #06080D;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2.5rem 0;
  color: var(--text-light-muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-subtle);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.footer-link {
  color: var(--text-light-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

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

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-icon-link:hover {
  background: var(--brand-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

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

/* ==========================================================================
   REFERENCE BLOCK 1: EVERYDAY STAKES 4-CARD STRIP (Ref Image 2)
   ========================================================================== */
.stakes-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2.5rem 0 3.5rem 0;
}

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

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

.stakes-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
}

.stakes-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(59, 91, 253, 0.3);
}

.stakes-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stakes-icon-circle.bolt {
  background: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
}

.stakes-icon-circle.people {
  background: rgba(59, 91, 253, 0.1);
  color: #3B5BFD;
}

.stakes-icon-circle.clock {
  background: rgba(99, 102, 241, 0.1);
  color: #6366F1;
}

.stakes-icon-circle.chart {
  background: rgba(6, 182, 212, 0.1);
  color: #0891B2;
}

.stakes-card-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-headline);
  line-height: 1.45;
}

/* ==========================================================================
   REFERENCE BLOCK 2: VALUE PROGRESSION 3-STEP FLOW (Ref Image 2)
   ========================================================================== */
.value-progression-flow {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(241, 245, 249, 0.7) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

@media (min-width: 900px) {
  .value-progression-flow {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
  }
}

.flow-step-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.flow-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.flow-icon-circle.blue {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  color: #3B5BFD;
}

.flow-icon-circle.cyan {
  background: linear-gradient(135deg, #ECFEFF 0%, #CFFAFE 100%);
  color: #06B6D4;
}

.flow-icon-circle.purple {
  background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%);
  color: #7C3AED;
}

.flow-step-meta .flow-title {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-headline);
  margin-bottom: 0.15rem;
}

.flow-step-meta .flow-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.flow-arrow-separator {
  color: #CBD5E1;
  display: none;
}

@media (min-width: 900px) {
  .flow-arrow-separator {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.flow-card-callout {
  background: #FFFFFF;
  border: 1px solid rgba(59, 91, 253, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(59, 91, 253, 0.12);
}

.flow-callout-text h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  background: linear-gradient(135deg, #3B5BFD 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flow-callout-3dbars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 38px;
}

.bar-3d {
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(180deg, #00F0FF 0%, #3B5BFD 100%);
}

.bar-3d.b1 { height: 16px; opacity: 0.5; }
.bar-3d.b2 { height: 24px; opacity: 0.7; }
.bar-3d.b3 { height: 32px; opacity: 0.85; }
.bar-3d.b4 { height: 38px; opacity: 1; }

/* ==========================================================================
   REFERENCE BLOCK 3: MACOS APP REHEARSAL STUDIO (Ref Image 3)
   ========================================================================== */
.studio-app-window {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  margin-top: 2rem;
}

.studio-top-bar {
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 640px) {
  .studio-top-bar {
    flex-wrap: wrap;
    padding: 0.75rem 0.85rem;
    gap: 0.75rem;
  }
  .studio-brand-left {
    gap: 0.75rem;
  }
  .studio-top-actions {
    margin-left: auto;
  }
}

.studio-brand-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.studio-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.studio-brand-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
}

.studio-breadcrumb {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
}

@media (min-width: 640px) {
  .studio-breadcrumb {
    display: flex;
  }
}

.crumb-current {
  font-weight: 600;
  color: var(--text-headline);
}

.studio-top-actions {
  display: flex;
  gap: 0.5rem;
}

.studio-btn-share {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s ease;
}

.studio-btn-share:hover {
  background: #F1F5F9;
}

.studio-btn-save {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #3B5BFD 0%, #7C3AED 100%);
  border: none;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(59, 91, 253, 0.25);
  transition: all 0.2s ease;
}

.studio-btn-save:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.studio-body-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 860px) {
  .studio-body-layout {
    grid-template-columns: 200px minmax(0, 1fr);
  }
}

.studio-sidebar {
  background: #F8FAFC;
  border-right: 1px solid #E2E8F0;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.studio-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.studio-nav-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.studio-nav-item:hover {
  background: #F1F5F9;
  color: var(--text-headline);
}

.studio-nav-item.active {
  background: #EFF6FF;
  color: var(--brand-primary);
  border: 1px solid #BFDBFE;
}

.studio-sidebar-motto {
  background: #EFF6FF;
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(59, 91, 253, 0.15);
}

.motto-text {
  font-size: 0.75rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--brand-primary);
}

.studio-main-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #FFFFFF;
  min-width: 0;
}

@media (max-width: 640px) {
  .studio-main-content {
    padding: 1rem;
  }
}

.studio-cards-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

@media (min-width: 680px) {
  .studio-cards-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.studio-rehearsal-card {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.studio-rehearsal-card.your-response {
  background: #FAFCFF;
  border: 1px solid #E2E8F0;
}

.studio-rehearsal-card.calibrated-alt {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
}

.card-meta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-meta-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.card-meta-title.calibrated {
  color: #0891B2;
}

.card-timer-indicator {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.card-dialogue-quote {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-headline);
  font-weight: 500;
  font-style: normal;
}

.audio-player-widget {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem;
}

.btn-play-audio {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #3B5BFD 0%, #7C3AED 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-play-audio.cyan {
  background: linear-gradient(135deg, #06B6D4 0%, #3B5BFD 100%);
}

.audio-waveform-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 24px;
  flex: 1;
}

.wf-bar {
  width: 3px;
  background: #3B5BFD;
  border-radius: 2px;
  animation: pulseWf 1.5s infinite alternate ease-in-out;
}

.audio-waveform-bars.cyan .wf-bar {
  background: #06B6D4;
}

@keyframes pulseWf {
  0% { transform: scaleY(0.6); }
  100% { transform: scaleY(1); }
}

.audio-timestamp {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.studio-analysis-section {
  border-top: 1px solid #E2E8F0;
  padding-top: 1.25rem;
}

.analysis-section-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-headline);
  margin-bottom: 1rem;
}

.analysis-meters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 1100px) {
  .analysis-meters-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.analysis-meter-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  min-width: 0;
}

.meter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.meter-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-headline);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.meter-score-badge {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--text-headline);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.meter-slider-track {
  width: 100%;
  height: 6px;
  background: #E2E8F0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.meter-fill-bar {
  height: 100%;
  border-radius: 3px;
}

.meter-fill-bar.tone { background: linear-gradient(90deg, #3B5BFD 0%, #00F0FF 100%); }
.meter-fill-bar.clarity { background: linear-gradient(90deg, #06B6D4 0%, #10B981 100%); }
.meter-fill-bar.empathy { background: linear-gradient(90deg, #3B5BFD 0%, #7C3AED 100%); }
.meter-fill-bar.persuasive { background: linear-gradient(90deg, #7C3AED 0%, #EC4899 100%); }

.meter-extremes {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.6875rem;
  color: var(--text-subtle);
}

/* ==========================================================================
   REFERENCE BLOCK 4: LANGUAGE CALIBRATION HERO CARD (Ref Image 1)
   ========================================================================== */
.calibration-hero-card {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.85) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .calibration-hero-card {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 2.25rem;
  }
}

.calibration-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.calibration-phrasing-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 680px) {
  .calibration-phrasing-split {
    grid-template-columns: 1fr auto 1fr;
  }
}

.calibration-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.calibration-box.before {
  border: 1px solid #FECACA;
  background: #FFFBFB;
}

.calibration-box.after {
  border: 1px solid #BFDBFE;
  background: #FBFDFF;
}

.calib-tag-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calib-tag-header.red .calib-label { color: #EF4444; }
.calib-tag-header.red .calib-mode { color: #991B1B; font-weight: 800; }

.calib-tag-header.blue .calib-label { color: #3B5BFD; }
.calib-tag-header.blue .calib-mode { color: #1E40AF; font-weight: 800; }

.calib-quote {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--text-headline);
  font-weight: 600;
  font-style: normal;
}

.calib-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.calib-pill {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
}

.calib-pills-row.red .calib-pill {
  background: #FEE2E2;
  color: #B91C1C;
}

.calib-pills-row.blue .calib-pill {
  background: #E0F2FE;
  color: #0369A1;
}

.calibration-arrow-wrap {
  display: none;
  color: var(--brand-primary);
  justify-content: center;
}

@media (min-width: 680px) {
  .calibration-arrow-wrap {
    display: flex;
  }
}

.calib-slider-container {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.calib-slider-header {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-headline);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.calibration-slider-track-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

.calib-slider-track {
  flex: 1;
  height: 10px;
  background: #E2E8F0;
  border-radius: 5px;
  position: relative;
  overflow: visible;
}

.calib-slider-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 90%;
  background: linear-gradient(90deg, #3B5BFD 0%, #00F0FF 60%, #7C3AED 100%);
  border-radius: 5px;
}

.calib-target-ring {
  position: absolute;
  right: 10%;
  top: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #7C3AED;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.5);
}

.calib-effectiveness-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-md);
  padding: 0.35rem 0.75rem;
  flex-shrink: 0;
}

.badge-num {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1D4ED8;
  font-family: var(--font-mono);
}

.badge-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--text-muted);
}

.calib-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0 0.5rem;
}

.active-label {
  color: #7C3AED;
  font-weight: 800;
}

.calib-callout-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.calib-callout-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 54px;
}

.callout-bar {
  width: 8px;
  border-radius: 4px;
  background: linear-gradient(180deg, #00F0FF 0%, #3B5BFD 100%);
}

.callout-bar.bar-1 { height: 18px; opacity: 0.4; }
.callout-bar.bar-2 { height: 30px; opacity: 0.6; }
.callout-bar.bar-3 { height: 42px; opacity: 0.8; }
.callout-bar.bar-4 { height: 54px; opacity: 1; }

.calib-callout-text {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.callout-bold {
  color: var(--text-headline);
  display: block;
}

.callout-gradient {
  background: linear-gradient(135deg, #3B5BFD 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

/* ==========================================================================
   REFERENCE BLOCK 5: 4-CARD ANALYTICS SUITE (Ref Image 4)
   ========================================================================== */
.analytics-suite-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

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

.analytics-suite-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  transition: all 0.2s ease;
  min-height: 220px;
}

.analytics-suite-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(59, 91, 253, 0.3);
}

.suite-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.suite-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.suite-icon-circle.blue { background: #EFF6FF; color: #3B5BFD; }
.suite-icon-circle.purple { background: #FAF5FF; color: #7C3AED; }
.suite-icon-circle.cyan { background: #ECFEFF; color: #06B6D4; }
.suite-icon-circle.violet { background: #F5F3FF; color: #6366F1; }

.suite-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-headline);
}

.suite-tone-pills {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.suite-pill {
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 600;
  background: #F1F5F9;
  color: var(--text-muted);
}

.suite-pill.active-warm {
  background: #EDE9FE;
  color: #6D28D9;
  border: 1px solid #C4B5FD;
}

.suite-waveform-container {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 48px;
  padding: 0.25rem;
}

.wf-line {
  flex: 1;
  background: linear-gradient(180deg, #3B5BFD 0%, #00F0FF 100%);
  border-radius: 2px;
}

.suite-precision-table {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.precision-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-xs);
  background: #F8FAFC;
  font-size: 0.75rem;
}

.precision-row.highlighted {
  background: #ECFEFF;
  border: 1px solid #A5F3FC;
}

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

.precision-value {
  color: var(--text-headline);
  font-weight: 500;
}

.precision-label.bold, .precision-value.bold {
  color: #0E7490;
  font-weight: 700;
}

.suite-semantic-quadrant {
  position: relative;
  width: 100%;
  height: 120px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.axis-label {
  position: absolute;
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--text-subtle);
  text-transform: uppercase;
}

.axis-label.top { top: 4px; left: 50%; transform: translateX(-50%); }
.axis-label.bottom { bottom: 4px; left: 50%; transform: translateX(-50%); }
.axis-label.left { left: 4px; top: 50%; transform: translateY(-50%); }
.axis-label.right { right: 4px; top: 50%; transform: translateY(-50%); }

.quadrant-crosshair {
  position: absolute;
  inset: 15px;
}

.crosshair-h {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #CBD5E1;
}

.crosshair-v {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #CBD5E1;
}

.quadrant-point {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7C3AED;
}

.quadrant-point.p1 { top: 40%; left: 35%; opacity: 0.4; }
.quadrant-point.p2 { top: 30%; left: 70%; opacity: 0.6; }
.quadrant-point.p3.target-diamond {
  top: 25%;
  left: 75%;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: #00F0FF;
  box-shadow: 0 0 8px #00F0FF;
}
.quadrant-point.p4 { top: 65%; left: 45%; opacity: 0.7; }
.quadrant-point.p5 { top: 75%; left: 60%; opacity: 0.4; }

.impact-prediction-visual {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.radial-ring-box {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.radial-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.radial-center-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #0F172A;
}

.impact-text-sub {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-muted);
}

/* Telegram Community Box */
.cta-telegram-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.cta-telegram-label {
  font-size: 0.875rem;
  color: var(--text-light-muted);
}

.cta-telegram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-pill);
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: var(--neon-cyan);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-telegram-btn:hover {
  background: #3B82F6;
  color: #FFFFFF;
  border-color: #3B82F6;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

/* ==========================================================================
   ONBOARDING MODAL (Step 2: Role Track & Proposal Collection)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: #0B0F19;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 240, 255, 0.08);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: #FFFFFF;
}

.modal-overlay.is-active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
}

.modal-step-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.85rem;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.modal-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-light-muted);
  margin-bottom: 1.5rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.modal-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.required-star {
  color: #F87171;
}

.optional-tag {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

.modal-select-wrapper {
  position: relative;
  width: 100%;
}

.modal-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.85rem 2.5rem 0.85rem 1rem;
  font-size: 0.95rem;
  color: #FFFFFF;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-select option {
  background: #0B0F19;
  color: #FFFFFF;
  padding: 0.5rem;
}

.modal-select:focus {
  border-color: var(--neon-cyan);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.18);
}

.select-chevron {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
}

.modal-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: #FFFFFF;
  outline: none;
  transition: all 0.2s ease;
}

.modal-input:focus {
  border-color: var(--neon-cyan);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.18);
}

.modal-input::placeholder,
.modal-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.modal-reading-pledge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.75rem;
  background: rgba(59, 130, 246, 0.1);
  border-left: 3px solid #3B82F6;
  border-radius: 6px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #93C5FD;
  margin-bottom: 0.35rem;
}

.modal-reading-pledge svg {
  flex-shrink: 0;
  color: #60A5FA;
}

.modal-textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  font-family: inherit;
  color: #FFFFFF;
  outline: none;
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.modal-textarea:focus {
  border-color: var(--neon-cyan);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.18);
}

.modal-actions-row {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (min-width: 480px) {
  .modal-actions-row {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
}

.modal-btn-submit {
  background: var(--brand-primary);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(59, 91, 253, 0.4);
  transition: all 0.2s ease;
  text-align: center;
}

.modal-btn-submit:hover:not(:disabled) {
  background: var(--brand-primary-hover);
  box-shadow: 0 6px 20px rgba(59, 91, 253, 0.55);
}

.modal-btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-btn-skip {
  background: transparent;
  color: var(--text-light-muted);
  border: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.85rem 1.15rem;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s ease;
}

.modal-btn-skip:hover {
  color: #FFFFFF;
}

/* Modal Success State */
.modal-success-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.modal-success-meta-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-success-meta-box .meta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

.modal-success-meta-box .meta-label {
  color: var(--text-light-muted);
}

.modal-success-meta-box .meta-value {
  color: #FFFFFF;
  font-weight: 600;
}

.modal-success-meta-box .meta-link {
  color: var(--neon-cyan);
  text-decoration: none;
  font-weight: 600;
}

.modal-success-meta-box .meta-link:hover {
  text-decoration: underline;
}

.modal-btn-done {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-btn-done:hover {
  background: rgba(255, 255, 255, 0.18);
}

