/* ==========================================================================
   Thoryn Landing Page Stylesheet
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Colors */
  --bg-base: #07080e;
  --bg-surface: rgba(15, 17, 28, 0.5);
  --bg-surface-hover: rgba(22, 25, 41, 0.7);
  --bg-surface-solid: #0d0f1a;
  
  --color-primary: #8b5cf6;
  --color-primary-glow: rgba(139, 92, 246, 0.15);
  --color-secondary: #06b6d4;
  --color-secondary-glow: rgba(6, 182, 212, 0.15);
  
  --color-success: #10b981;
  --color-success-glow: rgba(16, 185, 129, 0.15);
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(139, 92, 246, 0.4);

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-primary);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  /* Grid Overlay Pattern */
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

/* Background Ambient Glows */
.bg-glow {
  position: absolute;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.25;
  pointer-events: none;
}

.bg-glow-1 {
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -10%;
  right: -5%;
}

.bg-glow-2 {
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  top: 40%;
  left: -10%;
}

.bg-glow-3 {
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  bottom: 10%;
  right: -10%;
}

/* Utility Layout Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 800px;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 50%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #6d28d9 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--color-primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Text Gradients */
.gradient-text {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-success { color: var(--color-success); }
.text-right { text-align: right; }
.mt-15 { margin-top: 15px; }

/* Navbar styling */
.navbar {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 8, 14, 0.6);
  border-bottom: 1px solid var(--border-light);
}

.navbar-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 48px;
  width: 48px;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 50%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-item {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: var(--text-primary);
}

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

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

.badge-wrapper {
  margin-bottom: 24px;
}

.hero-badge {
  background: var(--color-primary-glow);
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-group {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: -8px;
}

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

.social-proof-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

/* Floating Mockups Visualizer */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  padding: 20px;
}

.task-card-float {
  width: 280px;
  left: 0;
  top: 10%;
  z-index: 2;
}

.floating-card-header {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.circle.red { background: #ef4444; }
.circle.yellow { background: #f59e0b; }
.circle.green { background: #10b981; }

.task-item-mock {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.task-item-mock:last-child {
  border-bottom: none;
}

.checkbox-mock {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.checkbox-mock.checked {
  background: var(--color-success);
  border-color: var(--color-success);
  color: #fff;
}

.checkbox-mock.spinner {
  border-radius: 50%;
  border-color: var(--color-secondary);
  border-top-color: transparent;
  animation: spin 1s infinite linear;
}

.task-title-mock {
  font-size: 0.85rem;
  flex: 1;
}

.task-title-mock.line-through {
  text-decoration: line-through;
  color: var(--text-muted);
}

.task-timer-mock {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-secondary);
  background: var(--color-secondary-glow);
  padding: 2px 6px;
  border-radius: 4px;
}

.stat-card-float {
  width: 200px;
  right: 4%;
  top: 4%;
  z-index: 3;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.stat-value {
  font-size: 2.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.stat-graph {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 60px;
}

.stat-graph .bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: height 0.5s ease;
}

.stat-graph .bar.active {
  background: linear-gradient(to top, var(--color-primary), var(--color-secondary));
}

.telegram-card-float {
  width: 320px;
  bottom: 5%;
  left: 20%;
  z-index: 1;
}

.telegram-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tg-avatar {
  width: 28px;
  height: 28px;
  background: #229ED9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.75rem;
}

.tg-meta p {
  line-height: 1.2;
}

.tg-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.tg-status {
  font-size: 0.7rem;
  color: #229ED9;
}

.telegram-msg {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
@keyframes spin {
  100% { transform: rotate(360deg); }
}

.animate-float-1 {
  animation: float 6s ease-in-out infinite;
}

.animate-float-2 {
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

.animate-float-3 {
  animation: float 6s ease-in-out infinite;
  animation-delay: 4s;
}

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

/* Addon Teaser Strip */
.addon-teaser-strip {
  background: linear-gradient(90deg,
    rgba(139,92,246,0.12) 0%,
    rgba(6,182,212,0.08) 50%,
    rgba(139,92,246,0.12) 100%);
  border-top: 1px solid rgba(139,92,246,0.2);
  border-bottom: 1px solid rgba(139,92,246,0.2);
  padding: 18px 0;
  text-align: center;
}
.addon-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.addon-teaser-pill {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a78bfa;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.35);
  padding: 3px 12px;
  border-radius: 999px;
  flex-shrink: 0;
}
.addon-teaser-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.addon-teaser-text strong {
  color: var(--text-primary);
  font-weight: 600;
}
.addon-teaser-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  transition: color 0.2s ease, letter-spacing 0.2s ease;
  flex-shrink: 0;
}
.addon-teaser-link:hover {
  color: #c4b5fd;
  letter-spacing: 0.02em;
}

/* ==============================
   Addons Ecosystem Section
   ============================== */
.addons-section {
  padding: 130px 0 100px;
  position: relative;
  overflow: hidden;
  background: transparent;
  border-top: 1px solid var(--border-light);
}

/* Ambient blobs */
.addons-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.addons-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.18), transparent 70%);
  top: -80px; left: -100px;
  animation: float 8s ease-in-out infinite;
}
.addons-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.14), transparent 70%);
  bottom: 0; right: -80px;
  animation: float 10s ease-in-out infinite reverse;
}
.addons-section .container {
  position: relative;
  z-index: 1;
}

/* Kicker label */
.addons-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.addons-kicker-dot {
  width: 6px; height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite alternate;
}

/* Headline block */
.addons-hero-text {
  max-width: 640px;
  margin-bottom: 56px;
}
.addons-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.addons-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.addons-lead em {
  font-style: normal;
  color: var(--text-primary);
  font-weight: 600;
}

/* OS Banner */
.addons-os-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 28px 36px;
  margin-bottom: 64px;
  backdrop-filter: blur(12px);
}
.os-banner-col {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.os-banner-col--highlight {
  background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--border-radius-sm);
  padding: 16px 20px;
}
.os-banner-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.os-banner-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.os-banner-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.os-banner-arrow {
  font-size: 1.8rem;
  color: var(--color-primary);
  flex-shrink: 0;
  opacity: 0.7;
}

/* Cards Grid */
.addons-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

/* Individual Card */
.addon-card-v2 {
  position: relative;
  background: rgba(15,17,28,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-md);
  padding: 36px 32px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(16px);
}
.addon-card-v2:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(139,92,246,0.1);
}
.addon-card-v2:hover .addon-card-v2-glow {
  opacity: 1;
}

/* Per-card accent glow */
.addon-card-v2-glow {
  position: absolute;
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  top: -80px; right: -80px;
  opacity: 0.3;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 50%;
}

/* Top row (icon + tag) */
.addon-card-v2-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.addon-icon-v2 {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: transform 0.3s ease;
}
.addon-card-v2:hover .addon-icon-v2 {
  transform: scale(1.1) rotate(-4deg);
}

/* Tag pills */
.addon-tag-v2 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
}
.addon-tag-v2--purple {
  background: rgba(139,92,246,0.15);
  color: #a78bfa;
  border: 1px solid rgba(139,92,246,0.3);
}
.addon-tag-v2--green {
  background: rgba(16,185,129,0.15);
  color: #34d399;
  border: 1px solid rgba(16,185,129,0.3);
}
.addon-tag-v2--orange {
  background: rgba(245,158,11,0.15);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.3);
}
.addon-tag-v2--cyan {
  background: rgba(6,182,212,0.15);
  color: #22d3ee;
  border: 1px solid rgba(6,182,212,0.3);
}

.addon-card-v2-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.25;
}
.addon-card-v2-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Bullet list */
.addon-v2-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.addon-v2-bullets li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bullet-check {
  color: var(--color-success);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Footer row */
.addon-card-v2-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}
.addon-plug-badge {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* CTA Strip */
.addons-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(139,92,246,0.12) 0%, rgba(6,182,212,0.08) 100%);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--border-radius-md);
  padding: 40px 48px;
}
.addons-cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.addons-cta-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.addons-cta-btn {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 1rem;
  padding: 14px 32px;
}

/* ---- Stats Bar ---- */
.addons-stats-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 28px 40px;
  margin-bottom: 48px;
  backdrop-filter: blur(12px);
}
.addons-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.addons-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.addons-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.addons-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-light);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ---- Section Sub-label ---- */
.addons-section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.addons-more-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  margin-bottom: 24px;
}
.addons-more-count {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  padding: 4px 14px;
  border-radius: 999px;
}

/* ---- Infinite Scroll Pill Rows ---- */
.addons-pill-scroll-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.addons-pill-track {
  overflow: hidden;
  width: 100%;
}
.addons-pill-inner {
  display: flex;
  gap: 12px;
  width: max-content;
}
.addons-pill-track--right .addons-pill-inner {
  animation: pill-scroll-right 35s linear infinite;
}
.addons-pill-track--left .addons-pill-inner {
  animation: pill-scroll-left 30s linear infinite;
}
@keyframes pill-scroll-right {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pill-scroll-left {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
/* Pause on hover */
.addons-pill-scroll-wrap:hover .addons-pill-inner {
  animation-play-state: paused;
}

/* Each pill */
.addon-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: default;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.addon-pill:hover {
  background: rgba(139,92,246,0.12);
  border-color: rgba(139,92,246,0.3);
  color: var(--text-primary);
  transform: scale(1.04);
}

/* Fade overlay edges */
.addons-pill-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.addons-pill-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--bg-base) 0%, transparent 100%);
}
.addons-pill-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--bg-base) 0%, transparent 100%);
}

/* Footnote */
.addons-pill-footnote {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 56px;
  font-style: italic;
}

.icon-tasks::after { content: '📋'; }
.icon-telegram::after { content: '🤖'; }
.icon-ai::after { content: '⚡'; }
.icon-database::after { content: '💾'; }
.icon-analytics::after { content: '📈'; }
.icon-multiuser::after { content: '👥'; }

.feature-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==============================
   Platform Features Section
   ============================== */
.features-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

/* Kicker */
.features-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-secondary);
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.2);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.features-kicker-dot {
  width: 6px; height: 6px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite alternate;
}

/* Features Compact Grid (2 Columns) */
.features-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin-top: 48px;
}

.feature-item-v3 {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item-v3:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.feature-icon-v3 {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-item-v3:hover .feature-icon-v3 {
  transform: scale(1.1) rotate(-5deg);
}

.feature-text-v3 {
  flex: 1;
}

.feature-title-v3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.feature-desc-v3 {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .features-compact-grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .features-compact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-item-v3 {
    padding: 20px;
  }
}


/* Interactive Demo Dashboard */

.demo-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.mock-dashboard {
  background: #0b0c13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  display: grid;
  grid-template-columns: 240px 1fr;
  height: 520px;
  overflow: hidden;
}

.dashboard-sidebar {
  background: #08090f;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.sidebar-logo {
  height: 24px;
  width: 24px;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-radius: var(--border-radius-sm);
  transition: all 0.2s ease;
}

.sidebar-item.active, .sidebar-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.sidebar-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-avatar {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
}

.user-info p {
  line-height: 1.2;
}

.user-name {
  font-size: 0.85rem;
  font-weight: 600;
}

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

.dashboard-main {
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.05), transparent 60%);
}

.dashboard-header {
  padding: 24px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-header h1 {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.date-today {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.dashboard-content {
  padding: 30px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  flex: 1;
  overflow-y: auto;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

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

.card-header h3 {
  font-size: 1rem;
}

.card-header .badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 8px;
  border-radius: 4px;
}

.mock-task-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-task-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-sm);
  padding: 14px 16px;
  transition: all 0.2s ease;
}

.mock-task-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.mock-task-row.checked .task-name {
  text-decoration: line-through;
  color: var(--text-muted);
}

.mock-checkbox-container {
  display: block;
  position: relative;
  cursor: pointer;
  user-select: none;
  width: 20px;
  height: 20px;
}

.mock-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mock-checkbox-container:hover input ~ .checkmark {
  border-color: rgba(255, 255, 255, 0.4);
}

.mock-checkbox-container input:checked ~ .checkmark {
  background-color: var(--color-success);
  border-color: var(--color-success);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.mock-checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.mock-checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.task-details {
  flex: 1;
}

.task-name {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2px;
}

.task-meta-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.task-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 1px 6px;
  border-radius: 4px;
}

.task-tag.static {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
}

.task-tag.dynamic {
  background: var(--color-primary-glow);
  color: #c084fc;
}

.task-time-left {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-secondary);
}

.timer-control-btn {
  background: var(--color-primary);
  border: none;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.timer-control-btn:hover {
  background: #7c3aed;
}

.timer-control-btn.active {
  background: var(--color-warning);
}

/* Stats Progress Card styling */
.stats-card {
  align-items: center;
  justify-content: center;
  position: relative;
}

.progress-ring-container {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring-bar {
  transition: stroke-dashoffset 0.35s;
  transform-origin: 50% 50%;
}

.progress-percentage-label {
  position: absolute;
  text-align: center;
}

.progress-percentage-label span {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.progress-percentage-label p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.dashboard-stats-summary {
  display: flex;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 18px;
  gap: 16px;
}

.mini-stat {
  flex: 1;
  text-align: center;
}

.mini-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.mini-stat-val {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Slide in Toast notification (Simulated Telegram bot alert) */
.tg-toast {
  position: fixed;
  bottom: -150px;
  right: 24px;
  width: 320px;
  background: rgba(16, 17, 28, 0.85);
  border: 1px solid rgba(34, 158, 217, 0.4);
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 200;
  backdrop-filter: blur(20px);
  padding: 16px;
  transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tg-toast.show {
  bottom: 24px;
}

.toast-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.tg-avatar-toast {
  width: 24px;
  height: 24px;
  background: #229ED9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.7rem;
}

.toast-meta {
  flex: 1;
}

.toast-title {
  font-size: 0.8rem;
  font-weight: 600;
}

.toast-time {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.toast-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}

.toast-close:hover {
  color: var(--text-primary);
}

.toast-body {
  font-size: 0.8rem;
  color: var(--text-primary);
  line-height: 1.4;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.pricing-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 60px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.coming-soon-badge {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: white;
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.pricing-plan-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.pricing-plan-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  width: 100%;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.pricing-features li {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li span {
  color: var(--color-secondary);
  font-weight: 700;
}

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

.pricing-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Pre-Registration & Interactive Ticket */
.register-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
  background: radial-gradient(circle at bottom, rgba(139, 92, 246, 0.03), transparent 70%);
}

.registration-wrapper {
  max-width: 580px;
  margin: 0 auto;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  width: 100%;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input, .form-group select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px var(--color-primary-glow);
}

.form-group select option {
  background-color: var(--bg-surface-solid);
  color: var(--text-primary);
}

.form-terms {
  margin-top: 4px;
}

.checkbox-container-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.checkbox-container-terms input {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.checkmark-terms {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-container-terms input:checked ~ .checkmark-terms {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.checkmark-terms:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container-terms input:checked ~ .checkmark-terms:after {
  display: block;
}

.checkbox-container-terms .checkmark-terms:after {
  left: 5px;
  top: 2px;
  width: 3px;
  height: 7px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-text {
  line-height: 1.4;
}

.btn .arrow {
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* Access Ticket Visualizer */
.ticket-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 1000px;
}

.early-access-ticket {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(135deg, #0e0f18 0%, #151726 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
}

.early-access-ticket:hover {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 30px 60px rgba(6, 182, 212, 0.15);
}

.ticket-glowing-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  filter: blur(20px);
  pointer-events: none;
}

.ticket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 24px;
  position: relative;
}

/* Dashed lines edge circular cuts */
.ticket-header::before, .ticket-header::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--bg-base);
  border-radius: 50%;
  bottom: -10px;
}

.ticket-header::before { left: -41px; border-right: 1px solid rgba(255, 255, 255, 0.1); }
.ticket-header::after { right: -41px; border-left: 1px solid rgba(255, 255, 255, 0.1); }

.ticket-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.ticket-logo {
  height: 28px;
  width: 28px;
}

.ticket-badge {
  background: var(--color-success-glow);
  color: var(--color-success);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.ticket-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.ticket-row {
  display: flex;
}

.ticket-col {
  flex: 1;
}

.ticket-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.ticket-val {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.ticket-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.ticket-barcode-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.barcode {
  display: flex;
  height: 40px;
  width: 100%;
  max-width: 220px;
  background: rgba(255, 255, 255, 0.02);
  padding: 4px;
  align-items: stretch;
  gap: 2px;
}

.barcode span {
  background-color: var(--text-primary);
  flex-grow: 1;
}

.bar-thin { width: 1px !important; }
.bar-medium { width: 3px !important; }
.bar-thick { width: 5px !important; }

.barcode-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
}

.ticket-instructions {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
}

#reset-registration-btn {
  margin-top: 16px;
  align-self: center;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(139, 92, 246, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.faq-summary {
  padding: 24px 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-summary::after {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-content {
  padding: 0 30px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer Section */
.footer {
  border-top: 1px solid var(--border-light);
  background-color: #040508;
  padding: 80px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 42px;
  width: 42px;
  margin-bottom: 16px;
}

.footer-brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Responsive Grid Adaptation */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-social-proof {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mock-dashboard {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .dashboard-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    height: auto;
  }
  
  .sidebar-brand {
    margin-bottom: 0;
  }
  
  .sidebar-menu {
    display: none; /* Hide menus on mobile version of simulated dashboard */
  }
  
  .sidebar-footer {
    border-top: none;
    padding-top: 0;
  }
}

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

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.4;
  }

  .hero-visual {
    height: 420px;
    margin-top: 30px;
    margin-bottom: 40px;
    transform: scale(0.6);
    transform-origin: center top;
    z-index: 10;
  }

  .telegram-card-float {
    z-index: 5 !important;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 32px;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

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

  .nav-logo {
    height: 40px;
    width: 40px;
  }

  .logo-text {
    font-size: 1.3rem;
  }
  
  .navbar-container {
    padding: 0 16px;
  }
  
  .nav-menu {
    display: none; /* Hide menu items on mobile header */
  }
  
  .pricing-card {
    padding: 40px 24px;
  }

  /* Addons responsive */
  .addons-os-banner {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  .os-banner-arrow {
    transform: rotate(90deg);
  }
  .addons-cards-grid {
    grid-template-columns: 1fr;
  }
  .addons-cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
  .addons-headline {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .addons-lead {
    font-size: 1rem;
    margin-bottom: 32px;
  }
  
  .addons-stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px;
  }
  
  .addons-stat-divider {
    display: none;
  }
}

/* ==========================================================================
   Thoryn AI Platform Styling Additions
   ========================================================================== */

/* MCP Toggles */
.mcp-toggle-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 10px;
  user-select: none;
}
.mcp-toggle-item input {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}
.mcp-toggle-switch {
  width: 32px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  flex-shrink: 0;
}
.mcp-toggle-switch::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--text-secondary);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}
.mcp-toggle-item input:checked ~ .mcp-toggle-switch {
  background-color: var(--color-success);
}
.mcp-toggle-item input:checked ~ .mcp-toggle-switch::after {
  transform: translateX(14px);
  background-color: #ffffff;
}
.mcp-toggle-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

/* Addon Badges */
.addon-badge {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-sm);
  padding: 8px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.addon-badge.active {
  background: var(--color-primary-glow);
  border-color: rgba(139, 92, 246, 0.25);
  color: var(--text-primary);
}

/* Preset Command Buttons */
.preset-cmd-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--border-radius-sm);
  padding: 12px 14px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-primary);
  outline: none;
}
.preset-cmd-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(3px);
}
.preset-cmd-btn.active {
  border-color: var(--color-primary);
  background: rgba(139, 92, 246, 0.06);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
}
.cmd-icon {
  font-size: 1.25rem;
}
.cmd-meta {
  flex: 1;
}
.cmd-meta p {
  line-height: 1.3;
}
.cmd-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}
.cmd-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Custom terminal scrollbars */
#terminal-output::-webkit-scrollbar {
  width: 6px;
}
#terminal-output::-webkit-scrollbar-track {
  background: transparent;
}
#terminal-output::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
}
#terminal-output::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Thoryn Sales Engine Styling Additions
   ========================================================================== */

/* Stack Consolidation Section */
.consolidation-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
}

.consolidation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.consolidation-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.consolidation-box.thoryn-way {
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(16, 18, 35, 0.65);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.05);
}

.box-glowing-effect {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.box-title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.box-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.consolidation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.consolidation-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.consolidation-list li span {
  font-size: 1.25rem;
  margin-top: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.consolidation-list li strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.consolidation-list li p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Comparison Matrix Table */
.compare-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.02), transparent 70%);
}

.compare-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--border-radius-lg);
  background: rgba(10, 11, 19, 0.45);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 0 30px rgba(139, 92, 246, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.compare-table-wrapper:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 50px rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.35);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.compare-table th, .compare-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background-color 0.25s ease;
}

.compare-table th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
  vertical-align: bottom;
}

.compare-table tbody tr {
  transition: background-color 0.2s ease;
}

.compare-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.015);
}

/* Thoryn Spotlight Column */
.compare-table th.highlight {
  background: rgba(139, 92, 246, 0.05);
  border-bottom: 2px solid var(--color-primary);
  border-left: 1px solid rgba(139, 92, 246, 0.15);
  border-right: 1px solid rgba(139, 92, 246, 0.15);
  color: #c084fc;
  font-weight: 800;
}

.compare-table td.highlight-val {
  background: rgba(139, 92, 246, 0.02);
  border-left: 1px solid rgba(139, 92, 246, 0.15);
  border-right: 1px solid rgba(139, 92, 246, 0.15);
  color: var(--text-primary);
}

.compare-table tbody tr:hover td.highlight-val {
  background: rgba(139, 92, 246, 0.04);
}

/* Competitor Columns Dimmed */
.compare-table td:not(.highlight-val):not(.feature-name), 
.compare-table th:not(.highlight):not(:first-child) {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.compare-table tbody tr:hover td:not(.highlight-val):not(.feature-name) {
  opacity: 0.95;
}

.feature-name {
  font-weight: 600;
  color: var(--text-primary);
  max-width: 250px;
}

/* Cells Structure & Status Pills */
.cell-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-pill::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
}

.status-pill.status-check {
  background: var(--color-success-glow);
  color: var(--color-success);
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.06);
}
.status-pill.status-check::before {
  background-color: var(--color-success);
}

.status-pill.status-warn {
  background: rgba(245, 158, 11, 0.06);
  color: var(--color-warning);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.status-pill.status-warn::before {
  background-color: var(--color-warning);
}

.status-pill.status-cross {
  background: rgba(239, 68, 68, 0.06);
  color: var(--color-error);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.status-pill.status-cross::before {
  background-color: var(--color-error);
}

.status-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}



/* Steps Pipeline Section */
.how-it-works-section {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.015), transparent 70%);
}

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

.step-card {
  position: relative;
  padding: 30px 20px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}


/* Responsive Overrides */
@media (max-width: 991px) {
  .consolidation-grid {
    grid-template-columns: 1fr;
  }
  

  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .early-access-ticket {
    padding: 20px;
    max-width: 320px;
  }
  
  .ticket-label {
    font-size: 0.6rem;
  }
  
  .ticket-val {
    font-size: 0.85rem;
  }
}

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

  /* Transform table to card stack */
  .compare-table-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
  }

  .compare-table, 
  .compare-table thead, 
  .compare-table tbody, 
  .compare-table tr, 
  .compare-table th, 
  .compare-table td {
    display: block;
    width: 100%;
  }

  .compare-table thead {
    display: none; /* Hide header row */
  }

  .compare-table tr {
    margin-bottom: 24px;
    background: rgba(15, 17, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .feature-name {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
    padding: 0 0 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    max-width: 100% !important;
    text-align: center;
  }

  .compare-table td:not(.feature-name) {
    padding: 12px 0 !important;
    border: none !important;
    opacity: 1 !important;
  }

  /* Data labels for competitors */
  .compare-table td:not(.feature-name)::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  /* Highlight Thoryn specifically in the stack */
  .compare-table td.highlight-val {
    background: rgba(139, 92, 246, 0.08);
    border-radius: 12px;
    padding: 16px !important;
    margin: 8px 0;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
  }

  .compare-table td.highlight-val::before {
    color: var(--color-primary);
  }

  .consolidation-box {
    padding: 32px 20px;
  }

  .box-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-visual {
    height: 380px;
    transform: scale(0.45);
    margin-top: 10px;
  }
  
  .navbar-container {
    padding: 0 12px;
  }
  
  .logo-text {
    font-size: 1.15rem;
    letter-spacing: -0.01em;
  }
  
  .nav-logo {
    height: 32px;
    width: 32px;
  }
  
  .btn-sm {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
}

