:root {
  --bg-dark: #0A0612;
  --bg-card: #140D24;
  --bg-card-hover: #1D1335;
  --bg-surface: #201438;
  --bg-surface-elevated: #2A1B4A;
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #718096;
  
  --accent-purple: #8B5CF6;
  --accent-purple-glow: rgba(139, 92, 246, 0.28);
  --accent-violet: #A855F7;
  --accent-coral: #FB923C;
  
  --color-normal: #72D99A;
  --color-sensitive: #FFCA68;
  --color-secret: #FF928A;
  --color-dont-spread: #FF6872;
  --color-explosive: #FF2D55;
  --color-cyan: #75D5F3;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.16);
  --border-glow: rgba(139, 92, 246, 0.35);
  
  --font-display: 'Outfit', sans-serif;
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-dark);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
  touch-action: manipulation;
}

button, a, input, select, textarea, label, .stealth-task-item, .stealth-phone-body, .tactile-chip-btn, .sim-pill, .pill-tag {
  touch-action: manipulation;
}

input, select, textarea {
  font-size: 16px;
}

/* Browser Surfaces */
::selection {
  background: var(--accent-purple);
  color: #FFFFFF;
}

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

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

::-webkit-scrollbar-thumb {
  background: #25183E;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3B2664;
}

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

/* Containers */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Floating Navigation Dock */
.floating-nav-container {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}

.floating-nav {
  pointer-events: auto;
  width: 100%;
  max-width: 1040px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  background: rgba(20, 13, 36, 0.90);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-pill);
  box-shadow: 
    0 16px 36px rgba(0, 0, 0, 0.45),
    0 2px 8px rgba(139, 92, 246, 0.16);
  transition: transform var(--transition-smooth), border-color var(--transition-fast);
}

.floating-nav:hover {
  border-color: rgba(139, 92, 246, 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  flex-shrink: 0;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-purple), #6D28D9);
  color: #FFFFFF;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0 6px;
  flex-wrap: nowrap;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.81rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.nav-mobile-cta-item {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta-btn {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-violet));
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  flex-shrink: 0;
}

.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Section Themes & Ambient Gradients */
.section-theme-purple {
  background: radial-gradient(circle at 14% 20%, rgba(139, 92, 246, 0.16) 0%, transparent 45%),
              radial-gradient(circle at 86% 60%, rgba(168, 85, 247, 0.08) 0%, transparent 45%);
}

.section-theme-amber {
  background: radial-gradient(circle at 15% 30%, rgba(255, 202, 104, 0.12) 0%, transparent 45%),
              radial-gradient(circle at 85% 70%, rgba(251, 146, 60, 0.10) 0%, transparent 45%);
}

.section-theme-ruby {
  background: radial-gradient(circle at 50% 20%, rgba(255, 45, 85, 0.14) 0%, transparent 50%),
              radial-gradient(circle at 85% 80%, rgba(139, 92, 246, 0.10) 0%, transparent 45%);
}

.section-theme-orange {
  background: radial-gradient(circle at 20% 30%, rgba(251, 146, 60, 0.14) 0%, transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(255, 202, 104, 0.08) 0%, transparent 45%);
}

.section-theme-cyan {
  background: radial-gradient(circle at 75% 25%, rgba(117, 213, 243, 0.14) 0%, transparent 45%),
              radial-gradient(circle at 20% 75%, rgba(139, 92, 246, 0.10) 0%, transparent 45%);
}

.section-theme-lavender {
  background: radial-gradient(circle at 30% 30%, rgba(182, 154, 255, 0.12) 0%, transparent 45%),
              radial-gradient(circle at 70% 70%, rgba(255, 104, 114, 0.10) 0%, transparent 45%);
}

.section-theme-emerald {
  background: radial-gradient(circle at 50% 30%, rgba(114, 217, 154, 0.14) 0%, transparent 45%),
              radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 45%);
}

/* Glowing Section Dividers */
.section-divider {
  width: 100%;
  height: 1px;
  position: relative;
  margin: 0;
}

.section-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 5%, var(--div-color, #8B5CF6) 50%, transparent 95%);
  opacity: 0.6;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  top: -2px;
  height: 5px;
  background: var(--div-color, #8B5CF6);
  filter: blur(6px);
  opacity: 0.4;
}

.glow-amber { --div-color: #FFCA68; }
.glow-ruby { --div-color: #FF2D55; }
.glow-orange { --div-color: #FB923C; }
.glow-cyan { --div-color: #75D5F3; }
.glow-purple { --div-color: #8B5CF6; }
.glow-lavender { --div-color: #B69AFF; }
.glow-emerald { --div-color: #72D99A; }

/* Section Kickers (Clean Typography without background box) */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.80rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 14px;
}

.section-kicker::before {
  content: '//';
  font-family: var(--font-display);
  font-weight: 900;
  opacity: 0.6;
  letter-spacing: -0.05em;
}

.kicker-amber { color: #FFCA68; text-shadow: 0 0 16px rgba(255, 202, 104, 0.3); }
.kicker-ruby { color: #FF6872; text-shadow: 0 0 16px rgba(255, 104, 114, 0.3); }
.kicker-cyan { color: #75D5F3; text-shadow: 0 0 16px rgba(117, 213, 243, 0.3); }
.kicker-purple { color: #C4B5FD; text-shadow: 0 0 16px rgba(196, 181, 253, 0.3); }
.kicker-lavender { color: #D8B4FE; text-shadow: 0 0 16px rgba(216, 180, 254, 0.3); }
.kicker-emerald { color: #72D99A; text-shadow: 0 0 16px rgba(114, 217, 154, 0.3); }

/* Hand-Drawn Stabilo Highlighter Effect (Caneta Marcadora) */
.title-white {
  color: #FFFFFF;
}

.marker-highlight {
  position: relative;
  display: inline-block;
  font-weight: 800;
  z-index: 1;
  padding: 0 4px;
}

.marker-highlight.marker-yellow {
  color: #FDE047;
  text-shadow: 0 0 24px rgba(253, 224, 71, 0.35);
}

.marker-highlight.marker-ruby {
  color: #FF6872;
  text-shadow: 0 0 24px rgba(255, 104, 114, 0.35);
}

.marker-highlight.marker-cyan {
  color: #75D5F3;
  text-shadow: 0 0 24px rgba(117, 213, 243, 0.35);
}

.marker-highlight.marker-purple {
  color: #C4B5FD;
  text-shadow: 0 0 24px rgba(196, 181, 253, 0.35);
}

.marker-highlight.marker-emerald {
  color: #72D99A;
  text-shadow: 0 0 24px rgba(114, 217, 154, 0.35);
}

/* Translucent Stabilo Highlighter Swipe Behind Text */
.marker-highlight::before {
  content: '';
  position: absolute;
  inset: 52% -6px -2px -6px;
  border-radius: 3px 5px 2px 4px;
  transform: rotate(-0.8deg) skewX(-3deg);
  z-index: -1;
  opacity: 0.24;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.marker-highlight.marker-yellow::before {
  background: linear-gradient(90deg, #FACC15, #FDE047);
}

.marker-highlight.marker-ruby::before {
  background: linear-gradient(90deg, #FF2D55, #FF6872);
}

.marker-highlight.marker-cyan::before {
  background: linear-gradient(90deg, #0284C7, #75D5F3);
}

.marker-highlight.marker-purple::before {
  background: linear-gradient(90deg, #8B5CF6, #C4B5FD);
}

.marker-highlight.marker-emerald::before {
  background: linear-gradient(90deg, #059669, #72D99A);
}

.marker-highlight:hover::before {
  opacity: 0.40;
  transform: rotate(-0.4deg) scaleY(1.2);
}

/* Organic Hand-Drawn SVG Underline / Marker Pen Drawing */
.marker-svg {
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -6px;
  width: calc(100% + 8px);
  height: 18px;
  pointer-events: none;
  z-index: -1;
  overflow: visible;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

/* Typewriter Live Ticker */
.typewriter-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 45, 85, 0.08);
  border: 1px solid rgba(255, 45, 85, 0.25);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  margin-bottom: 22px;
  max-width: 580px;
}

.ticker-badge {
  font-size: 0.74rem;
  font-weight: 800;
  color: #FF2D55;
  white-space: nowrap;
}

.ticker-text {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticker-caret {
  font-weight: 900;
  color: #FF2D55;
  animation: blinkCaret 0.8s infinite;
}

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

/* Hero Section */
.hero-section {
  padding: 130px 0 70px 0;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.tactical-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  color: #C4B5FD;
  margin-bottom: 20px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-normal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-normal);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.glow-title {
  color: #A78BFA;
  text-shadow: 0 0 28px rgba(167, 139, 250, 0.35);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 580px;
}

/* Official Store Buttons (Images) */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.store-img-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  border-radius: 12px;
  transition: transform var(--transition-fast), filter var(--transition-fast), opacity var(--transition-fast);
}

.store-img-btn:hover {
  filter: drop-shadow(0 6px 16px rgba(139, 92, 246, 0.45));
  opacity: 0.95;
}

.store-img {
  height: 52px;
  width: auto;
  border-radius: 10px;
  display: block;
}

.hero-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.guarantee-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
}

/* iPhone 16 Frame Container & Animation */
.hero-visual {
  display: flex;
  justify-content: center;
}

.iphone-frame-wrapper {
  position: relative;
  width: 335px;
  height: 693px;
  margin: 0 auto;
  animation: floatMockup 4.8s ease-in-out infinite;
}

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

.iphone-overlay-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 20;
  object-fit: fill;
}

.iphone-screen-layer {
  position: absolute;
  top: 1.8%;
  bottom: 1.8%;
  left: 4.0%;
  right: 4.0%;
  border-radius: 46px;
  overflow: hidden;
  background: #0B0616;
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 44px 14px 16px 14px;
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.8);
}

/* Mode Switcher Tabs inside Mockup */
.mockup-mode-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
  padding: 3px;
  margin-bottom: 12px;
  border: 1px solid var(--border-subtle);
}

.mode-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 4px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mode-tab-btn.active {
  background: var(--accent-purple);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.mockup-view-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.mockup-view-content.hidden {
  display: none;
}

/* Secret Gossip View in Mockup */
.mockup-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mockup-case-tag {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-purple);
}

.mockup-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.mockup-secure-lock {
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 7px;
  border-radius: 6px;
}

/* Tactile Card Mockup with Halo Glow */
.mockup-tactile-card {
  background: var(--bg-card);
  border: 1.5px solid rgba(255, 45, 85, 0.4);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.3),
    0 2px 14px rgba(255, 45, 85, 0.2);
  transition: all var(--transition-smooth);
}

.mockup-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.mockup-date {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 600;
}

.mockup-badge {
  font-size: 0.76rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(255, 45, 85, 0.16);
  color: #FF2D55;
}

.mockup-gossip-text {
  font-size: 0.82rem;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 10px;
}

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

.mockup-avatars {
  display: flex;
  gap: 5px;
}

.avatar-pill {
  font-size: 0.74rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text-muted);
}

.mockup-halo-indicator {
  font-size: 0.78rem;
  font-weight: 800;
  color: #FF2D55;
}

/* 3D Tactile Buttons inside Mockup (As praised in Flutter Capture Screen) */
.mockup-selector-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.selector-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-dim);
}

.mockup-choices-row {
  display: flex;
  gap: 4px;
}

.tactile-chip-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 2px;
  border-radius: 6px;
  cursor: pointer;
  background: #180F2A;
  color: var(--text-muted);
  border: 1.2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 0 #0E071A;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.tactile-chip-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 0 #0E071A;
}

.tactile-chip-btn:active, .tactile-chip-btn.active {
  transform: translateY(1.5px);
  box-shadow: 0 0.5px 0 #0E071A;
}

.chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* Tactile Color Tiers */
.chip-normal.active {
  background: rgba(114, 217, 154, 0.16);
  border-color: #72D99A;
  color: #72D99A;
  box-shadow: 0 1px 0 #185E37, 0 0 12px rgba(114, 217, 154, 0.3);
}

.chip-sensitive.active {
  background: rgba(255, 202, 104, 0.16);
  border-color: #FFCA68;
  color: #FFCA68;
  box-shadow: 0 1px 0 #7A5100, 0 0 12px rgba(255, 202, 104, 0.3);
}

.chip-secret.active {
  background: rgba(255, 146, 138, 0.16);
  border-color: #FF928A;
  color: #FF928A;
  box-shadow: 0 1px 0 #8C2A24, 0 0 12px rgba(255, 146, 138, 0.3);
}

.chip-dont-spread.active {
  background: rgba(255, 104, 114, 0.16);
  border-color: #FF6872;
  color: #FF6872;
  box-shadow: 0 1px 0 #85000A, 0 0 12px rgba(255, 104, 114, 0.3);
}

.chip-explosive.active {
  background: rgba(255, 45, 85, 0.18);
  border-color: #FF2D55;
  color: #FF2D55;
  box-shadow: 0 1px 0 #9E002B, 0 0 14px rgba(255, 45, 85, 0.4);
}

/* Mockup Risk Panel */
.mockup-risk-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.panel-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #FF2D55;
}

.panel-score {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted);
}

.meter-bars {
  display: flex;
  gap: 3px;
  height: 5px;
  margin-bottom: 6px;
}

.meter-bar {
  flex: 1;
  border-radius: 2px;
  background: #2C1B4A;
  transition: background-color 0.2s ease;
}

.panel-sub {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Stealth Mode (To-Do List Disguise) */
.stealth-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
}

.stealth-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
}

.stealth-sub {
  font-size: 0.74rem;
  color: var(--text-dim);
}

.stealth-quick-back-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stealth-alert-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.3);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.74rem;
  color: #FDBA74;
}

.stealth-alert-pill small {
  color: var(--text-dim);
}

.stealth-task-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 6px 0;
  flex-grow: 1;
}

.stealth-task-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-main);
  cursor: pointer;
  user-select: none;
  transition: all var(--transition-fast);
}

.stealth-task-item.done {
  text-decoration: line-through;
  color: var(--text-dim);
  opacity: 0.7;
}

.stealth-task-item input {
  accent-color: var(--accent-purple);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.stealth-footer-hint {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.35;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px;
  border-radius: 6px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Territories Section */
.section-container {
  padding: 85px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 52px auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.territory-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.territory-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 2px 14px rgba(139, 92, 246, 0.15);
}

.territory-badge {
  align-self: flex-start;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.badge-friends { background: rgba(251, 146, 60, 0.15); color: #FB923C; }
.badge-family { background: rgba(255, 45, 85, 0.15); color: #FF2D55; }
.badge-gym { background: rgba(117, 213, 243, 0.15); color: #75D5F3; }
.badge-college { background: rgba(168, 85, 247, 0.15); color: #C4B5FD; }
.badge-condo { background: rgba(114, 217, 154, 0.15); color: #72D99A; }
.badge-work { background: rgba(255, 202, 104, 0.15); color: #FFCA68; }

.territory-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.territory-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.territory-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.territory-sample {
  font-size: 0.84rem;
  color: #A78BFA;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

/* 3D Tactile Buttons in Simulator */
.simulator-layout {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 38px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 4px 20px rgba(139, 92, 246, 0.16);
}

.simulator-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sim-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.sim-pill-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.tactile-pill-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: #180F2B;
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 3px 0 #0E071A;
  transition: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.tactile-pill-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 #0E071A;
  color: #FFFFFF;
}

.tactile-pill-btn:active, .tactile-pill-btn.active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #0E071A;
}

/* Distinct Vibrant Active Tones for Simulator Pills */
.tactile-pill-btn.pill-friends.active {
  background: rgba(251, 146, 60, 0.18);
  border-color: #FB923C;
  color: #FB923C;
  box-shadow: 0 1px 0 #823E00, 0 0 14px rgba(251, 146, 60, 0.35);
}

.tactile-pill-btn.pill-family.active {
  background: rgba(255, 45, 85, 0.18);
  border-color: #FF2D55;
  color: #FF2D55;
  box-shadow: 0 1px 0 #9E002B, 0 0 14px rgba(255, 45, 85, 0.35);
}

.tactile-pill-btn.pill-gym.active {
  background: rgba(117, 213, 243, 0.18);
  border-color: #75D5F3;
  color: #75D5F3;
  box-shadow: 0 1px 0 #12627D, 0 0 14px rgba(117, 213, 243, 0.35);
}

.tactile-pill-btn.pill-college.active {
  background: rgba(168, 85, 247, 0.18);
  border-color: #A855F7;
  color: #A855F7;
  box-shadow: 0 1px 0 #561899, 0 0 14px rgba(168, 85, 247, 0.35);
}

.tactile-pill-btn.pill-work.active {
  background: rgba(255, 202, 104, 0.18);
  border-color: #FFCA68;
  color: #FFCA68;
  box-shadow: 0 1px 0 #7A5100, 0 0 14px rgba(255, 202, 104, 0.35);
}

.tactile-pill-btn.pill-condo.active {
  background: rgba(114, 217, 154, 0.18);
  border-color: #72D99A;
  color: #72D99A;
  box-shadow: 0 1px 0 #185E37, 0 0 14px rgba(114, 217, 154, 0.35);
}

.tactile-pill-btn.pill-target-friend.active {
  background: rgba(139, 92, 246, 0.20);
  border-color: #8B5CF6;
  color: #C4B5FD;
  box-shadow: 0 1px 0 #4C1D95, 0 0 14px rgba(139, 92, 246, 0.35);
}

.tactile-pill-btn.pill-target-inlaw.active {
  background: rgba(255, 202, 104, 0.20);
  border-color: #FFCA68;
  color: #FFCA68;
  box-shadow: 0 1px 0 #7A5100, 0 0 14px rgba(255, 202, 104, 0.35);
}

.tactile-pill-btn.pill-target-crush.active {
  background: rgba(255, 146, 138, 0.20);
  border-color: #FF928A;
  color: #FF928A;
  box-shadow: 0 1px 0 #8C2A24, 0 0 14px rgba(255, 146, 138, 0.35);
}

.tactile-pill-btn.pill-target-gossip.active {
  background: rgba(255, 45, 85, 0.20);
  border-color: #FF2D55;
  color: #FF2D55;
  box-shadow: 0 1px 0 #9E002B, 0 0 14px rgba(255, 45, 85, 0.35);
}

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

.sim-slider-val {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-explosive);
}

.sim-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: #251642;
  border-radius: 4px;
  outline: none;
}

.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-purple);
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent-purple);
  transition: transform 0.1s ease;
}

.sim-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.sim-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 600;
}

/* Simulator Output Result */
.simulator-feedback {
  background: #0E071A;
  border: 1.5px solid rgba(255, 45, 85, 0.4);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 2px 18px rgba(255, 45, 85, 0.16);
  transition: all var(--transition-smooth);
}

.result-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.result-badge {
  font-size: 0.8rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 45, 85, 0.16);
  color: #FF2D55;
}

.result-score {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.result-score.score-tick {
  transform: scale(1.18);
}

.tactile-meter {
  display: flex;
  gap: 5px;
  height: 10px;
  margin-bottom: 20px;
}

.tactile-meter .bar {
  flex: 1;
  border-radius: 4px;
  background: #251642;
  transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.tactile-meter .bar.popping {
  animation: barPop 0.24s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes barPop {
  0% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1.35); opacity: 1; }
  100% { transform: scaleY(1); opacity: 1; }
}

.result-headline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.35;
}

.result-advice {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.result-footer-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dim);
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

/* Stealth Feature Box */
.stealth-feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.stealth-checklist-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
}

.check-bullet {
  width: 22px;
  height: 22px;
  background: rgba(251, 146, 60, 0.15);
  color: #FB923C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  flex-shrink: 0;
}

.stealth-comparison-card {
  background: #0E071A;
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.compare-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.compare-tag {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}

.compare-tag.red {
  background: rgba(255, 45, 85, 0.15);
  color: #FF2D55;
}

.compare-tag.green {
  background: rgba(114, 217, 154, 0.15);
  color: #72D99A;
}

.compare-body {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.compare-side {
  flex: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-subtle);
}

.side-item {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.side-item.alert {
  color: #FF2D55;
  font-weight: 700;
}

.side-item.done {
  color: #72D99A;
}

.compare-divider {
  font-size: 1.2rem;
  color: var(--accent-purple);
  font-weight: 900;
}

.compare-footer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

/* Radar 2-Col Grid */
.section-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.section-paragraph {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.radar-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.radar-bullet {
  display: flex;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--text-main);
  line-height: 1.5;
}

.radar-bullet strong {
  display: block;
  font-size: 0.98rem;
}

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

.bullet-check {
  width: 24px;
  height: 24px;
  background: rgba(114, 217, 154, 0.14);
  color: #72D99A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Radar Visual Graph Card */
.radar-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.radar-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.radar-status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-purple);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-purple);
}

.corridor-graph {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.graph-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.node-circle {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.node-circle.pulse {
  border-color: #75D5F3;
  box-shadow: 0 0 20px rgba(117, 213, 243, 0.45);
  animation: radarPulse 2s infinite;
}

@keyframes radarPulse {
  0% { box-shadow: 0 0 0 0 rgba(117, 213, 243, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(117, 213, 243, 0); }
  100% { box-shadow: 0 0 0 0 rgba(117, 213, 243, 0); }
}

.node-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
}

.node-role {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.graph-arrow {
  display: flex;
  align-items: center;
}

.graph-branch {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.branch-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}

.branch-item.safe {
  border-color: rgba(114, 217, 154, 0.3);
}

.branch-item.danger {
  border-color: rgba(255, 45, 85, 0.35);
  background: rgba(255, 45, 85, 0.05);
}

.branch-icon {
  font-size: 1.1rem;
}

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

.branch-content strong {
  font-size: 0.88rem;
}

.branch-content small {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.text-danger {
  color: #FF2D55 !important;
  font-weight: 700;
}

.radar-card-footer {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-normal);
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

/* Commandments Grid */
.commandments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.commandment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.commandment-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
}

.cmd-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(139, 92, 246, 0.4);
  line-height: 1;
  margin-bottom: 12px;
}

.cmd-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cmd-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Dossier Grid */
.dossier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dossier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.dossier-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-highlight);
}

.dossier-card.highlight-card {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.12);
}

.dossier-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.dossier-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.dossier-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.dossier-role {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 600;
}

.leak-meter-box {
  margin-bottom: 18px;
}

.leak-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.leak-bar {
  height: 6px;
  background: #251642;
  border-radius: 3px;
  overflow: hidden;
}

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

.dossier-note {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
}

/* Privacy Section */
.privacy-manifesto-box {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.manifesto-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 42px auto;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.sec-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
}

.sec-icon {
  color: var(--accent-purple);
  margin-bottom: 14px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.sec-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.privacy-badge-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(114, 217, 154, 0.08);
  border: 1px solid rgba(114, 217, 154, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 24px;
}

.badge-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-normal);
  white-space: nowrap;
}

.badge-txt {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Testimonials Infinite Marquee Ticker */
.testimonials-marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 24px 0 32px;
  display: flex;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.testimonials-marquee-track {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  animation: marqueeScroll 48s linear infinite;
  will-change: transform;
  padding-right: 24px;
}

/* Pause scroll on hover or active touch */
.testimonials-marquee-container:hover .testimonials-marquee-track,
.testimonials-marquee-container:active .testimonials-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.testi-card {
  width: 360px;
  max-width: 85vw;
  flex-shrink: 0;
  background: rgba(22, 13, 38, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  user-select: none;
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 14px 32px rgba(139, 92, 246, 0.2);
}

.testi-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.testi-badge {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.testi-stars {
  color: #FFCA68;
  font-size: 0.82rem;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}

.testi-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #251644;
  border: 2px solid rgba(139, 92, 246, 0.4);
  flex-shrink: 0;
}

.testi-author-info strong {
  display: block;
  font-size: 0.92rem;
  color: #FFFFFF;
}

.testi-author-info span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.marquee-hint-container {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.marquee-hint {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  background: rgba(20, 13, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.marquee-hint span {
  color: var(--accent-lavender);
  font-weight: 700;
  margin-right: 4px;
}

/* Final CTA */
.final-cta-card {
  background: linear-gradient(135deg, #1C1236, #140D24);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 64px 32px;
  text-align: center;
  box-shadow: 
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 4px 20px rgba(139, 92, 246, 0.2);
}

.final-cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.final-cta-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.final-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 56px 0 36px 0;
  margin-top: 40px;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 420px;
}

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

.footer-link-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: #150E28;
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
  transform: translateY(16px) scale(0.97);
  transition: transform var(--transition-smooth);
}

.modal-backdrop.open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title-bar h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.modal-x {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.modal-x:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
}

.modal-scrollable {
  padding: 24px;
  overflow-y: auto;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.modal-scrollable h4 {
  color: var(--text-main);
  font-size: 1.05rem;
  margin: 18px 0 6px 0;
}

.modal-scrollable h4:first-child {
  margin-top: 0;
}

.modal-scrollable p {
  margin-bottom: 12px;
}

.modal-scrollable a {
  color: var(--accent-violet);
  text-decoration: underline;
}

.modal-action-row {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.modal-primary-btn {
  background: var(--accent-purple);
  color: #FFFFFF;
  border: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-primary-btn:hover {
  background: var(--accent-violet);
}

/* Interactive Spiderweb (Teia) Styles */
.spiderweb-container {
  background: #0E081F;
  border: 1px solid rgba(117, 213, 243, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(117, 213, 243, 0.10);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spiderweb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.spiderweb-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #75D5F3;
  background: rgba(117, 213, 243, 0.12);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(117, 213, 243, 0.25);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #75D5F3;
  border-radius: 50%;
  animation: blinkGlow 1.4s infinite ease-in-out;
}

@keyframes blinkGlow {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 8px #75D5F3; }
}

.spiderweb-actions {
  display: flex;
  gap: 8px;
}

.canvas-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #160D30 0%, #0A0517 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

#spiderwebCanvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
  touch-action: none;
}

.canvas-overlay-tip {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.canvas-overlay-tip span {
  font-size: 0.76rem;
  color: var(--text-dim);
  background: rgba(10, 6, 18, 0.85);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.web-node-detail-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #140C29;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: all 0.25s ease;
}

.node-detail-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #251644;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.node-detail-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.mini-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #160D2D;
  margin-left: -6px;
  object-fit: cover;
  vertical-align: middle;
  background: #251644;
  display: inline-block;
}

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

.node-detail-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.node-detail-info strong {
  font-size: 0.95rem;
  color: #FFFFFF;
}

.node-detail-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.node-detail-status {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

.node-detail-status.safe {
  background: rgba(114, 217, 154, 0.16);
  color: #72D99A;
  border: 1px solid rgba(114, 217, 154, 0.3);
}

.node-detail-status.danger {
  background: rgba(255, 45, 85, 0.18);
  color: #FF2D55;
  border: 1px solid rgba(255, 45, 85, 0.35);
}

.node-detail-status.warning {
  background: rgba(255, 202, 104, 0.18);
  color: #FFCA68;
  border: 1px solid rgba(255, 202, 104, 0.3);
}

/* App Screens Showcase */
.screens-showcase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.screen-tabs-bar {
  display: flex;
  background: #140C29;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  padding: 5px;
  gap: 6px;
  max-width: 580px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.screen-tabs-bar::-webkit-scrollbar {
  display: none;
}

.screen-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.screen-tab-btn.active {
  background: var(--accent-purple);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

.app-screen-frame {
  width: 100%;
  max-width: 440px;
  background: #110A22;
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 36px;
  padding: 24px 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 32px rgba(139, 92, 246, 0.18);
  position: relative;
}

.app-screen-view {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.app-screen-view.active {
  display: flex;
  animation: fadeIn 0.3s ease-out forwards;
}

.app-screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-screen-header .app-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
}

.app-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.app-form-group label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.app-fake-input {
  background: #1A1033;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.88rem;
  color: #FFFFFF;
}

.app-territory-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.app-territory-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: #180F2A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.app-territory-chip.active {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--accent-purple);
  color: #FFFFFF;
}

/* Interactive Avatar Picker & Person Form Components */
.avatar-roll-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #170E2C;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.avatar-roll-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #251644;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  object-fit: cover;
  flex-shrink: 0;
}

.avatar-roll-img.rolling {
  transform: rotate(360deg) scale(0.9);
}

.avatar-roll-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.avatar-roll-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #C4B5FD;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.15s ease;
  box-shadow: 0 2px 0 #3B1B75;
}

.avatar-roll-btn:hover {
  background: rgba(139, 92, 246, 0.3);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.avatar-roll-btn:active {
  transform: translateY(1.5px);
  box-shadow: 0 0.5px 0 #3B1B75;
}

.app-trust-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.app-trust-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: #180F2A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.app-trust-chip:hover {
  background: #201338;
  color: #FFFFFF;
}

.app-trust-chip.active {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--accent-purple);
  color: #FFFFFF;
}

.app-person-picker-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.app-person-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: #180F2A;
  border: 1.2px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.app-person-pill img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.app-person-pill.active {
  border-color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.22);
  color: #FFFFFF;
}

.app-action-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-violet));
  color: #FFFFFF;
  border: none;
  font-weight: 800;
  font-size: 0.94rem;
  padding: 12px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 0 #4C1D95;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.app-action-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 #4C1D95;
}

.app-action-submit-btn:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 #4C1D95;
}

/* Fofoca Wrapped & Stories Section */
.wrapped-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.wrapped-controls-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wrapped-theme-picker {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wrapped-theme-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wrapped-theme-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #180F2B;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 0 #0E071A;
  transition: all 0.15s ease;
}

.wrapped-theme-pill:hover {
  color: #FFFFFF;
  transform: translateY(-1px);
}

.wrapped-theme-pill.active {
  color: #FFFFFF;
  border-color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(1.5px);
  box-shadow: 0 0.5px 0 #0E071A;
}

.story-phone-mockup {
  width: 100%;
  max-width: 330px;
  aspect-ratio: 9 / 16;
  background: #000000;
  border: 3px solid rgba(255, 255, 255, 0.14);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(139, 92, 246, 0.25);
  margin: 0 auto;
  position: relative;
}

.story-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(160deg, #3B0764 0%, #1E0836 50%, #0F041D 100%);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.story-card-inner.theme-grape {
  background: linear-gradient(160deg, #4C1D95 0%, #2E1065 50%, #0F041D 100%);
}

.story-card-inner.theme-midnight {
  background: linear-gradient(160deg, #0F172A 0%, #090D16 50%, #020617 100%);
}

.story-card-inner.theme-peach {
  background: linear-gradient(160deg, #7C2D12 0%, #431407 50%, #1A0602 100%);
}

.story-card-inner.theme-emerald {
  background: linear-gradient(160deg, #064E3B 0%, #022C22 50%, #02140F 100%);
}

.story-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
}

.story-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-avatar-img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EC4899, #8B5CF6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.story-username {
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
}

.story-time {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.story-kicker-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.story-wrapped-title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 12px;
}

.story-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.story-stat-tile {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
}

.story-stat-tile .num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFFFFF;
}

.story-stat-tile .lbl {
  font-size: 0.66rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.story-phrase-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 8px 10px;
  text-align: center;
  margin-bottom: 10px;
}

.story-phrase-box span {
  font-size: 0.8rem;
  font-weight: 700;
  font-style: italic;
  color: #FFCA68;
}

.story-stamp-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}

/* Confetti canvas */
#confettiCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
}

/* Scroll Fade & Slide Animations */
.reveal-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* App Logo & Avatar Classes */
.brand-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(139, 92, 246, 0.45));
  flex-shrink: 0;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(139, 92, 246, 0.35));
  flex-shrink: 0;
}

.dossier-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.testi-avatar-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border: 1.8px solid rgba(255, 255, 255, 0.12);
}

/* Pricing & Voluntary Support Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 40px auto 0;
}

.pricing-card {
  background: #150D2E;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
}

.pricing-card.featured-pricing {
  border-color: rgba(139, 92, 246, 0.45);
  background: linear-gradient(180deg, #1C103C 0%, #130B29 100%);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.15);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8B5CF6, #EC4899);
  color: #FFFFFF;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.45);
  animation: badgePulseGlow 2.4s ease-in-out infinite;
  z-index: 2;
}

@keyframes badgePulseGlow {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 
      0 4px 14px rgba(236, 72, 153, 0.45),
      0 0 10px rgba(139, 92, 246, 0.3);
  }
  50% {
    transform: translateX(-50%) scale(1.06);
    box-shadow: 
      0 6px 22px rgba(236, 72, 153, 0.85),
      0 0 20px rgba(139, 92, 246, 0.65);
  }
}

.pricing-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  color: #FFFFFF;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  margin-top: auto;
}

.pricing-cta-btn.gratuito,
.pricing-cta-btn.free {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-violet));
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
}

.pricing-cta-btn.plus {
  background: linear-gradient(135deg, #8B5CF6, #EC4899);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
}

.pricing-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
}

.pricing-cta-btn.plus:hover {
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.6);
}

.pricing-header {
  margin-bottom: 20px;
}

.pricing-tier-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.pricing-tier-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pricing-price-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
}

.pricing-price-period {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.pricing-feature-check {
  color: #72D99A;
  font-size: 1rem;
  line-height: 1;
  margin-top: 1px;
  flex-shrink: 0;
}

.pricing-disclaimer-banner {
  margin-top: 36px;
  background: rgba(114, 217, 154, 0.08);
  border: 1px solid rgba(114, 217, 154, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-disclaimer-banner span {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.pricing-disclaimer-banner p {
  font-size: 0.9rem;
  color: #A7F3D0;
  margin: 0;
  line-height: 1.55;
  font-weight: 500;
}

/* Mobile & Responsive Rules */
@media (max-width: 1040px) {
  .nav-menu {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    background: rgba(20, 13, 36, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 22px;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7);
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-actions .nav-cta-btn {
    padding: 7px 14px;
    font-size: 0.80rem;
  }
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-description,
  .typewriter-ticker {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group,
  .hero-guarantees {
    justify-content: center;
  }

  .territories-grid,
  .dossier-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .commandments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .simulator-layout {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .stealth-feature-box {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 32px;
  }

  .wrapped-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .story-phone-mockup {
    margin: 0 auto;
  }

  .section-grid-2 {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corridor-graph {
    flex-direction: column;
  }

  .graph-arrow svg {
    transform: rotate(90deg);
  }

  .footer-layout {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .commandments-grid {
    grid-template-columns: 1fr;
  }

  .sim-pill-group {
    grid-template-columns: 1fr;
  }

  .privacy-badge-banner {
    flex-direction: column;
    text-align: center;
  }

  .pricing-card {
    padding: 26px 20px;
  }

  .pricing-price-num {
    font-size: 2.2rem;
  }

  .pricing-disclaimer-banner {
    flex-direction: column;
    text-align: center;
  }

  .canvas-wrapper {
    height: 320px;
  }

  .final-cta-card {
    padding: 40px 20px;
  }
  
  .iphone-frame-wrapper {
    width: 290px;
    height: 600px;
  }
}

@media (max-width: 640px) {
  .floating-nav {
    padding: 7px 14px;
  }

  .nav-brand .brand-name {
    font-size: 1.05rem;
  }

  /* Resolves button escaping pill on mobile: Logo on left, Hamburger on right */
  .nav-actions .nav-cta-btn {
    display: none;
  }

  .nav-mobile-cta-item {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-mobile-cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-violet));
    color: #FFFFFF;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
  }

  .testi-card {
    width: 310px;
    padding: 22px;
  }

  .testi-quote {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .tactile-chip-btn {
    font-size: 0.76rem;
    padding: 6px 10px;
  }

  .app-screen-frame {
    max-width: 100%;
  }

  .canvas-wrapper {
    height: 290px;
  }

  .iphone-frame-wrapper {
    width: 280px;
    max-width: calc(100vw - 32px);
    height: auto;
    aspect-ratio: 335 / 693;
  }
}
