/* ISOP Landing Page - Stylesheet (Investor Pitch Edition) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Design Tokens & Theme Variables */
:root {
  --bg-color: #0F1923;
  --surface-color: rgba(27, 40, 56, 0.75);
  --surface-solid: #1B2838;
  --surface-light: #243447;
  --primary-color: #00C9A7;
  --primary-dark: #00A88A;
  --primary-glow: rgba(0, 201, 167, 0.35);
  --gold-color: #FFD700;
  --gold-glow: rgba(255, 215, 0, 0.3);
  --text-color: #FFFFFF;
  --text-secondary: #8BA4BD;
  --text-muted: #5A7A99;
  --border-color: rgba(42, 63, 86, 0.5);
  --border-glow: rgba(0, 201, 167, 0.2);
  --border-heavy: #2A3F56;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
}

/* Scroll progress indicator */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #00ffcc);
  z-index: 1000;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 8px var(--primary-glow);
}

/* Typography */
h1, h2, h3, h4, .font-display {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--surface-light);
  border-radius: 4px;
  border: 1px solid var(--border-heavy);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-tag {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: inline-block;
}

/* Background Gradients & Ambient Glows */
.ambient-glow-1 {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.08) 0%, rgba(15, 25, 35, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.ambient-glow-2 {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, rgba(15, 25, 35, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: rgba(15, 25, 35, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-color);
}

.logo-icon {
  width: 36px;
  height: 36px;
  fill: var(--primary-color);
  filter: drop-shadow(0 0 6px var(--primary-glow));
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.logo-tag {
  background: rgba(0, 201, 167, 0.15);
  color: var(--primary-color);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--primary-color);
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--surface-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 201, 167, 0.05);
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  gap: 8px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-color);
  border: none;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 201, 167, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 1.5px solid var(--border-heavy);
}

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

.btn-gold {
  background: var(--gold-color);
  color: var(--bg-color);
  border: none;
  box-shadow: 0 4px 14px var(--gold-glow);
}

.btn-gold:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Hero Section */
#hero-section {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 600px;
}

.hero-tag {
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid var(--border-glow);
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-tag span {
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 60%, var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  color: var(--primary-color);
  -webkit-text-fill-color: initial;
}

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

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

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.stat-item h4 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* App Mockup Visual (Hero Right) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-container {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 18.5;
  background: #080f14;
  border: 10px solid #1f2d3a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 201, 167, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: var(--transition-smooth);
}

.mockup-container:hover {
  transform: rotate(-1deg) scale(1.02);
}

/* Inside Mockup Screen */
.mockup-screen {
  width: 100%;
  height: 100%;
  background: #0f1923;
  border-radius: 28px;
  overflow-y: auto;
  position: relative;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mockup-screen::-webkit-scrollbar {
  display: none;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1b2838;
  padding-bottom: 8px;
}

.screen-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-color);
}

.screen-profile {
  width: 24px;
  height: 24px;
  background: var(--surface-light);
  border-radius: 50%;
  border: 1px solid var(--primary-color);
}

.mockup-card {
  background: #1b2838;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #2a3f56;
}

.mockup-banner {
  background: linear-gradient(135deg, #1b2838 30%, #243447 100%);
  border: 1px solid #00c9a780;
  border-radius: 14px;
  padding: 16px 12px;
  position: relative;
}

.banner-tag {
  background: var(--primary-color);
  color: var(--bg-color);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}

.banner-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.banner-desc {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.grid-card {
  background: #1e3044;
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #2a3f56;
  text-align: center;
}

.grid-card-icon {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
  margin: 0 auto 6px;
}

.grid-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.grid-card-status {
  font-size: 0.6rem;
  color: var(--text-muted);
}

/* Background elements behind mockup */
.visual-bg-circle {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.12) 0%, rgba(15, 25, 35, 0) 65%);
  z-index: 1;
  pointer-events: none;
}

.visual-decor {
  position: absolute;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px;
  backdrop-filter: blur(8px);
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.decor-1 {
  top: 10%;
  right: -30px;
  animation: float 5s ease-in-out infinite;
}

.decor-2 {
  bottom: 15%;
  left: -40px;
  animation: float 6s ease-in-out infinite 1s;
}

.decor-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.decor-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--primary-color);
  font-size: 1rem;
}

.decor-lbl {
  font-size: 0.65rem;
  color: var(--text-secondary);
}

/* Ecosystem / Stepper Section */
.ecosystem-loop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.ecosystem-loop::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--border-heavy) 15%, var(--border-heavy) 85%, transparent 100%);
  z-index: 1;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--surface-solid);
  border: 2px solid var(--border-heavy);
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition-smooth);
}

.step-card:hover .step-number {
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 0 15px var(--primary-glow);
}

.step-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--surface-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.step-card:hover .step-icon-wrapper {
  background: var(--surface-solid);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.step-icon {
  width: 40px;
  height: 40px;
  fill: var(--primary-color);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-color);
}

.step-desc {
  font-size: 0.9rem;
}

/* Interactive Mat Selector Section */
.mat-selector-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.mat-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mat-tab-btn {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.mat-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mat-tab-btn.active {
  border-color: var(--primary-color);
  background: rgba(27, 40, 56, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mat-tab-btn.active::before {
  transform: scaleY(1);
}

.mat-tab-icon {
  width: 36px;
  height: 36px;
  fill: var(--text-muted);
  transition: var(--transition-smooth);
}

.mat-tab-btn.active .mat-tab-icon {
  fill: var(--primary-color);
  filter: drop-shadow(0 0 4px var(--primary-glow));
}

.mat-tab-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-color);
}

.mat-tab-text p {
  font-size: 0.8rem;
}

/* Display Mat Details (Right Side) */
.mat-display {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mat-display-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #1b2838 0%, #0f1923 100%);
  z-index: 1;
}

.mat-display-graphic {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 50%;
  z-index: 2;
  transition: var(--transition-smooth);
}

.mat-info-card {
  position: relative;
  z-index: 3;
  background: rgba(15, 25, 35, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: auto;
}

.mat-info-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-color);
}

.mat-info-tag {
  background: rgba(0, 201, 167, 0.15);
  color: var(--primary-color);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

.mat-info-desc {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.mat-info-features {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.mat-feat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.mat-feat-dot {
  width: 5px;
  height: 5px;
  background: var(--primary-color);
  border-radius: 50%;
}

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

.feat-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-glow);
  margin-bottom: 20px;
}

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

.feat-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feat-desc {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.feat-link {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.feat-link:hover {
  gap: 10px;
}

/* AI Camera Showcase Styling */
.ai-showcase-wrapper {
  background: linear-gradient(135deg, rgba(27, 40, 56, 0.5) 0%, rgba(15, 25, 35, 0.8) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.ai-showcase-wrapper::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.05) 0%, transparent 70%);
}

.ai-tag {
  background: rgba(0, 201, 167, 0.15);
  color: var(--primary-color);
  border: 1px solid var(--border-glow);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.ai-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #080f14;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-heavy);
  position: relative;
  overflow: hidden;
}

/* Mock camera capture inside AI Showcase */
.camera-stream {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #243447 0%, #0f1923 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.camera-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 201, 167, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 201, 167, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.ai-scanning-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
  animation: scan 3s linear infinite;
  z-index: 4;
}

.pose-skeleton {
  width: 180px;
  height: 220px;
  position: relative;
  z-index: 3;
}

.pose-joint {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 8px var(--primary-color);
  transform: translate(-50%, -50%);
}

.pose-bone {
  background: var(--primary-color);
  position: absolute;
  transform-origin: top left;
  opacity: 0.7;
}

.ai-overlay-metrics {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(15, 25, 35, 0.85);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  z-index: 5;
}

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

.metric-pill h5 {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.metric-pill p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-color);
}

.metric-pill p.active-green {
  color: var(--primary-color);
}

/* Analytics Dashboard Showcase */
.analytics-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.dashboard-mockup {
  background: #111e2e;
  border: 1px solid var(--border-heavy);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-heavy);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.dash-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.dash-time-range {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--surface-light);
  padding: 4px 10px;
  border-radius: 4px;
}

.radar-skill-chart {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.skills-radar-shape {
  width: 140px;
  height: 140px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  position: relative;
}

.radar-spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 1px;
  background: var(--border-color);
  transform-origin: left center;
}

.radar-spoke-1 { transform: rotate(0deg); }
.radar-spoke-2 { transform: rotate(72deg); }
.radar-spoke-3 { transform: rotate(144deg); }
.radar-spoke-4 { transform: rotate(216deg); }
.radar-spoke-5 { transform: rotate(288deg); }

.radar-filled-poly {
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(0, 201, 167, 0.15);
  clip-path: polygon(50% 15%, 85% 35%, 80% 85%, 35% 80%, 20% 45%);
  border: 1.5px solid var(--primary-color);
}

.radar-label {
  position: absolute;
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.radar-lbl-1 { top: 0; left: 50%; transform: translateX(-50%); }
.radar-lbl-2 { top: 35%; right: -15px; }
.radar-lbl-3 { bottom: 0; right: 20px; }
.radar-lbl-4 { bottom: 0; left: 20px; }
.radar-lbl-5 { top: 35%; left: -15px; }

.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dash-stat-box {
  background: var(--surface-solid);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.dash-stat-box h5 {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.dash-stat-box p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-color);
}

/* Investor Spotlight Section */
.investor-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.metrics-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
}

.metric-label {
  font-weight: 600;
}

.metric-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--primary-color);
  font-size: 1.15rem;
}

/* Pitch Deck Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 25, 35, 0.85);
  backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-content {
  background: #152232;
  border: 1.5px solid var(--border-heavy);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  padding: 40px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 201, 167, 0.1);
}

.modal-overlay.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-color);
}

.modal-close svg {
  width: 16px;
  height: 16px;
  fill: var(--text-secondary);
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}

.modal-desc {
  text-align: center;
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  background: var(--bg-color);
  border: 1.5px solid var(--border-heavy);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-color);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 201, 167, 0.15);
}

/* Footer Section */
footer {
  background: #080f14;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
}

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

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

.footer-desc {
  max-width: 320px;
  font-size: 0.875rem;
}

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

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

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(0, 201, 167, 0.4); }
  70% { transform: scale(1.1); opacity: 0.5; box-shadow: 0 0 0 8px rgba(0, 201, 167, 0); }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(0, 201, 167, 0); }
}

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

@keyframes scan {
  0% { top: 0%; opacity: 0.2; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0.2; }
}

.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 10px;
  vertical-align: middle;
  letter-spacing: 0.05em;
}
.badge-play {
  background: rgba(255, 215, 0, 0.15);
  color: var(--gold-color);
  border: 1px solid rgba(255, 215, 0, 0.3);
}
.badge-sports {
  background: rgba(0, 201, 167, 0.15);
  color: var(--primary-color);
  border: 1px solid rgba(0, 201, 167, 0.3);
}

.sports-intro-grid {
  margin-bottom: 60px;
  grid-template-columns: 1.1fr 0.9fr;
}

.sports-mat-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  border-top: 1px solid var(--border-color);
  padding-top: 60px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 20px;
  }
  .decor-1, .decor-2 {
    display: none;
  }
  .mat-selector-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mat-display {
    height: 380px;
  }
  .ai-showcase-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .analytics-showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sports-intro-grid {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    text-align: center;
  }
  .sports-mat-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
  }
  .investor-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .hero-wrapper {
    padding-top: 90px;
    padding-bottom: 40px;
    gap: 24px;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .hero-stats {
    gap: 16px;
    justify-content: space-between;
  }
  .stat-item h4 {
    font-size: 1.35rem;
  }
  .nav-container {
    height: 64px;
  }
  .logo-text {
    font-size: 1.3rem;
  }
  .logo-container img {
    height: 36px !important;
  }
  .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  .nav-links {
    display: none;
  }
  .ecosystem-loop {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ecosystem-loop::before {
    display: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .mat-tab-btn {
    padding: 16px;
    gap: 12px;
  }
  .mat-tab-text h4 {
    font-size: 1rem;
  }
  .mat-display {
    height: 300px;
    padding: 20px;
  }
  .mat-info-card {
    padding: 16px;
  }
  .mat-info-features {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
  .mat-feat-item {
    width: calc(50% - 6px);
    font-size: 0.75rem;
  }
  .mockup-container {
    max-width: 280px;
  }
  .glass-card {
    padding: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
