@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Colors */
  --bg-dark: #080611;
  --bg-card: rgba(18, 14, 33, 0.6);
  --bg-card-hover: rgba(26, 21, 48, 0.7);
  --primary: #9d4edd;
  --primary-glow: rgba(157, 78, 221, 0.35);
  --secondary: #3a86c8;
  --secondary-glow: rgba(58, 134, 200, 0.3);
  --accent: #10b981;
  --accent-glow: rgba(16, 185, 129, 0.3);
  --warning: #f59e0b;
  --danger: #ef4444;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(157, 78, 221, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
}

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

/* Background Glow Effects inspired by the image */
body::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0) 70%);
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  top: 150px;
  right: -200px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.2) 0%, rgba(58, 134, 200, 0.05) 50%, rgba(0,0,0,0) 70%);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}

.glow-bg-mid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(58, 134, 200, 0.08) 0%, rgba(157, 78, 221, 0.05) 40%, rgba(0,0,0,0) 70%);
  filter: blur(150px);
  z-index: -1;
  pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(157, 78, 221, 0.3);
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

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

.gradient-text {
  background: linear-gradient(135deg, #f8fafc 30%, #b8c1ec 60%, #9d4edd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-accent {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-color {
  color: var(--primary);
}

.green-color {
  color: var(--accent);
}

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

/* Section Common Layout */
section {
  padding: 100px 0;
  position: relative;
}

/* Button & Call to Action styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #7b2cbf 100%);
  color: var(--text-primary);
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #047857 100%);
  color: var(--text-primary);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.6);
}

/* Glassmorphism Panel Utilities */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  padding: 32px;
  transition: var(--transition);
}

.glass-panel:hover {
  border-color: var(--border-hover);
  box-shadow: 0 10px 30px rgba(157, 78, 221, 0.05);
}

/* Badge Styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.badge-primary {
  background: rgba(157, 78, 221, 0.15);
  color: #c77dff;
  border: 1px solid rgba(157, 78, 221, 0.3);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-accent {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Founder Photo Styling */
.founder-photo {
  width: 200px;
  max-width: 100%;
  border-radius: 10px;
  animation: pulse-glow 3s infinite;
  transition: transform 0.3s ease;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(157, 78, 221, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 15px 5px rgba(157, 78, 221, 0.6);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(157, 78, 221, 0.4);
    transform: scale(1);
  }
}

/* ---------------------------------
   Header & Navbar Style
--------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 6, 17, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo svg {
  width: 32px;
  height: 32px;
}

.logo-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

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

/* ---------------------------------
   Hero Section Style
--------------------------------- */
.hero {
  padding-top: 80px;
  padding-bottom: 100px;
}

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

.hero-content {
  display: flex;
  flex-direction: flex-start;
  flex-direction: column;
}

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

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--warning);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.hero-note svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Partners Section */
.hero-partners {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.partners-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.partner-logo:hover {
  color: var(--text-primary);
}

.partner-logo svg {
  width: 20px;
  height: 20px;
}

/* 3D Orbit Graphic from inspiration image */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
}

.orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-ring {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.ring-inner {
  width: 180px;
  height: 180px;
  animation: rotateClockwise 25s linear infinite;
}

.ring-mid {
  width: 280px;
  height: 280px;
  animation: rotateCounterClockwise 35s linear infinite;
}

.ring-outer {
  width: 380px;
  height: 380px;
  animation: rotateClockwise 45s linear infinite;
}

.orbit-core {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 40px rgba(157, 78, 221, 0.4), inset 0 0 20px rgba(157, 78, 221, 0.2);
  z-index: 10;
}

.core-value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

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

.orbit-node {
  position: absolute;
  width: 44px;
  height: 44px;
  background: rgba(18, 14, 33, 0.9);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
}

.orbit-node img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.orbit-node svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.orbit-node:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.6);
  transform: scale(1.15);
}

/* Orbit Node placements relative to ring container */
/* Ring Inner nodes */
.ring-inner .node-1 { top: 10%; left: 50%; transform: translate(-50%, -50%); }
.ring-inner .node-2 { bottom: 10%; left: 50%; transform: translate(-50%, 50%); }

/* Ring Mid nodes */
.ring-mid .node-1 { top: 50%; left: -8%; transform: translate(-50%, -50%); }
.ring-mid .node-2 { top: 50%; right: -8%; transform: translate(50%, -50%); }
.ring-mid .node-3 { top: 12%; right: 12%; transform: translate(50%, -50%); }

/* Ring Outer nodes */
.ring-outer .node-1 { top: -6%; left: 50%; transform: translate(-50%, -50%); }
.ring-outer .node-2 { bottom: -6%; left: 50%; transform: translate(-50%, 50%); }
.ring-outer .node-3 { top: 50%; left: -6%; transform: translate(-50%, -50%); }
.ring-outer .node-4 { top: 50%; right: -6%; transform: translate(50%, -50%); }

/* Animated Pointer cursor from design mockup */
.mockup-cursor {
  position: absolute;
  bottom: 20%;
  left: 20%;
  background: rgba(157, 78, 221, 0.25);
  border: 1px solid var(--primary);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  pointer-events: none;
  animation: floatCursor 5s ease-in-out infinite;
}

.mockup-cursor svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* Animations */
@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

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

/* ---------------------------------
   Why Traditional Agency Models Are Broken
--------------------------------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comparison-card {
  height: 100%;
}

.comparison-card.broken-model {
  border-color: rgba(239, 68, 68, 0.15);
}

.comparison-card.broken-model:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.05);
}

.comparison-card.partnership-model {
  border-color: rgba(16, 185, 129, 0.15);
}

.comparison-card.partnership-model:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.05);
}

.comparison-card h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-card h3 svg {
  width: 24px;
  height: 24px;
}

.comparison-card.broken-model h3 svg { color: var(--danger); }
.comparison-card.partnership-model h3 svg { color: var(--accent); }

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-list li {
  display: flex;
  gap: 14px;
  font-size: 1rem;
}

.comparison-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.broken-model .comparison-list li svg { color: var(--danger); }
.partnership-model .comparison-list li svg { color: var(--accent); }

.comparison-list li span strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.comparison-list li span p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ---------------------------------
   The Competitive Advantage & Battle Chart
--------------------------------- */
.battle-chart-section {
  position: relative;
}

.battle-description {
  max-width: 800px;
  margin: -20px auto 48px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.battle-table-container {
  overflow-x: auto;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}

.battle-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  min-width: 800px;
}

.battle-table th, .battle-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.battle-table th {
  background: rgba(8, 6, 17, 0.4);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.battle-table tr:last-child td {
  border-bottom: none;
}

/* Highlight Flowbot Forge column */
.col-flowbot {
  background: rgba(157, 78, 221, 0.05);
  position: relative;
}

th.col-flowbot {
  background: rgba(157, 78, 221, 0.1) !important;
  color: var(--text-primary);
}

td.col-flowbot {
  font-weight: 600;
}

.flowbot-cell-wrapper {
  color: #d8b4fe;
  display: flex;
  align-items: center;
  gap: 8px;
}

.flowbot-cell-wrapper svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Interactive feature hover styling */
.battle-table tbody tr {
  transition: var(--transition);
}

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

.battle-table tbody tr:hover .col-flowbot {
  background: rgba(157, 78, 221, 0.08);
}

/* ---------------------------------
   Our Core Responsibilities Section
--------------------------------- */
.responsibilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.responsibility-card {
  position: relative;
  overflow: hidden;
}

/* Spotlight mouse tracker glow */
.responsibility-card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 0px);
  left: var(--mouse-x, 0px);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.15) 0%, rgba(157, 78, 221, 0) 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.responsibility-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(157, 78, 221, 0.1);
  border: 1px solid rgba(157, 78, 221, 0.2);
  border-radius: var(--border-radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.responsibility-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.responsibility-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.responsibility-tech-stack {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  font-size: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--text-secondary);
}

/* ---------------------------------
   Performance Partnership Section
--------------------------------- */
.partnership-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

/* Layer stack visualization */
.layer-visual-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partnership-layer {
  position: relative;
  padding: 24px 32px;
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  background: rgba(18, 14, 33, 0.4);
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}

.partnership-layer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  transition: var(--transition);
}

/* Layer specific styling */
.layer-3 {
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.03);
}
.layer-3::after { background-color: var(--accent); }

.layer-2 {
  border-color: rgba(58, 134, 200, 0.2);
  background: rgba(58, 134, 200, 0.03);
}
.layer-2::after { background-color: var(--secondary); }

.layer-1 {
  border-color: rgba(157, 78, 221, 0.2);
  background: rgba(157, 78, 221, 0.03);
}
.layer-1::after { background-color: var(--primary); }

/* Layer hover and active styles */
.partnership-layer:hover {
  transform: translateX(4px);
  background: var(--bg-card);
}

.partnership-layer.active {
  background: var(--bg-card-hover);
  border-color: inherit;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.02);
}

.layer-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.layer-title-row h4 {
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.layer-meta {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.layer-3 .layer-meta { color: var(--accent); }
.layer-2 .layer-meta { color: var(--secondary); }
.layer-1 .layer-meta { color: var(--primary); }

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

.layer-details-box {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: none;
  animation: fadeIn 0.3s ease;
}

.partnership-layer.active .layer-details-box {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Revenue & profit sharing calculator */
.calculator-box {
  position: sticky;
  top: 120px;
}

.calculator-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calculator-title svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

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

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.slider-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: var(--transition);
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary-glow);
  transition: var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
  background: var(--text-primary);
  transform: scale(1.2);
}

/* Calculator outputs display */
.calculator-results {
  background: rgba(8, 6, 17, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  padding: 24px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.95rem;
}

.result-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.result-row:first-child {
  padding-top: 0;
}

.result-label {
  color: var(--text-secondary);
}

.result-val {
  font-weight: 600;
  font-family: var(--font-heading);
}

.result-row.total-row {
  border-top: 1.5px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}

.result-row.total-row .result-label {
  color: var(--text-primary);
  font-weight: 600;
}

.result-row.total-row .result-val {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 800;
}

.calc-formula {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  background: rgba(255,255,255,0.02);
  padding: 8px;
  border-radius: 4px;
  font-family: monospace;
}

/* ---------------------------------
   Constraints & Pre-Qualification Checklist
--------------------------------- */
.constraints-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.checklist-intro {
  margin-bottom: 32px;
}

.checklist-intro p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.checklist-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist-item {
  display: flex;
  gap: 16px;
  background: rgba(18, 14, 33, 0.3);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.checklist-item:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(18, 14, 33, 0.5);
}

.checklist-item.checked {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.03);
}

.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: var(--transition);
  background: transparent;
  margin-top: 2px;
}

.checklist-item.checked .checkbox-custom {
  border-color: var(--accent);
  background: var(--accent);
}

.checkbox-custom svg {
  width: 14px;
  height: 14px;
  color: var(--bg-dark);
  opacity: 0;
  transition: var(--transition);
}

.checklist-item.checked .checkbox-custom svg {
  opacity: 1;
}

.checklist-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-primary);
  transition: var(--transition);
}

.checklist-item.checked .checklist-text strong {
  color: var(--accent);
}

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

/* Sticky Qualification Status Widget */
.qualification-status-box {
  position: sticky;
  top: 120px;
  text-align: center;
}

.status-ring-container {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 28px;
}

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

.status-svg-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 8;
}

.status-svg-bar {
  fill: none;
  stroke: url(#statusGrad);
  stroke-width: 8;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.status-percent-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.status-fraction {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 4px;
}

.status-message {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.status-submessage {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.status-message.ready {
  color: var(--accent);
}

.qualification-status-box .btn {
  width: 100%;
}

.qualification-status-box .btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------------------------------
   Guardrails & Terms Section
--------------------------------- */
.guardrails-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.guardrail-card {
  display: flex;
  flex-direction: column;
}

.guardrail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.guardrail-badge {
  width: 48px;
  height: 48px;
  background: rgba(58, 134, 200, 0.1);
  border: 1px solid rgba(58, 134, 200, 0.2);
  border-radius: var(--border-radius-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.guardrail-badge svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.guardrail-title {
  font-size: 1.2rem;
  font-weight: 700;
}

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

/* ---------------------------------
   FAQ Accordion Section
--------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--border-radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.15);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.faq-icon-wrapper svg {
  width: 14px;
  height: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 32px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 16px;
}

/* FAQ Active State */
.faq-item.active {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.faq-item.active .faq-icon-wrapper {
  background: var(--primary);
}

.faq-item.active .faq-icon-wrapper svg {
  color: var(--text-primary);
  transform: rotate(45deg);
}

/* ---------------------------------
   Application Section & Form
--------------------------------- */
.apply-section {
  position: relative;
}

/* Founder photo with throbbing glow */
@keyframes founderGlow {
  0%, 100% {
    box-shadow:
      0 0 18px 4px rgba(157, 78, 221, 0.35),
      0 0 40px 8px rgba(157, 78, 221, 0.15);
  }
  50% {
    box-shadow:
      0 0 32px 10px rgba(157, 78, 221, 0.60),
      0 0 70px 20px rgba(157, 78, 221, 0.25);
  }
}

.founder-photo {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  object-fit: cover;
  animation: founderGlow 3s ease-in-out infinite;
  display: block;
}

.apply-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.apply-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.apply-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.apply-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.apply-bullets li {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.apply-bullets li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.apply-bullets li span strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.apply-bullets li span p {
  color: var(--text-secondary);
}

/* Form Styles */
.apply-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  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);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  background: rgba(8, 6, 17, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
}

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

/* ---------------------------------
   Success Modal
--------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 6, 17, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(157, 78, 221, 0.15);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .success-modal {
  transform: translateY(0);
}

.success-icon-container {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 28px;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.success-icon-container svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.success-modal h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.success-modal p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 32px;
}

.cohort-counter-box {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  color: var(--warning);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 32px;
}

/* ---------------------------------
   Footer
--------------------------------- */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  background: rgba(8, 6, 17, 0.5);
  position: relative;
  overflow: hidden;
}

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

.footer-brand h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 400px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 48px;
}

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

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--text-secondary);
}

/* ---------------------------------
   Responsive Media Queries
--------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }
  
  .hero-actions {
    align-items: center;
  }
  
  .hero-visual {
    height: 420px;
  }
  
  .partners-logos {
    justify-content: center;
  }
  
  .responsibilities-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .partnership-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .calculator-box {
    position: relative;
    top: 0;
  }
  
  .constraints-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .qualification-status-box {
    position: relative;
    top: 0;
  }
  
  .guardrails-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .apply-section .container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .founder-photo {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .nav-links {
    display: none;
  }
  
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}
