/* SCLABS — Dark Neon Radar Theme v2 */

:root {
  --bg-deep: #05080f;
  --bg-panel: #0a101d;
  --bg-card: #0d1525;
  --bg-glass: rgba(13, 21, 37, 0.72);
  --border-subtle: rgba(80, 140, 210, 0.14);
  --border-glow: rgba(80, 140, 210, 0.35);
  --border-bright: rgba(77, 184, 255, 0.55);
  --text-primary: #e8ecf2;
  --text-secondary: #8da4c2;
  --text-muted: #556b82;
  --accent-blue: #3b8ee6;
  --accent-cyan: #1eb8d1;
  --accent-violet: #7c5ce7;
  --accent-neon: #4db8ff;
  --glow-blue: rgba(59, 142, 230, 0.28);
  --glow-cyan: rgba(30, 184, 209, 0.25);
  --glow-violet: rgba(124, 92, 231, 0.22);
  --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(30, 90, 180, 0.22) 0%, transparent 70%);
  --gradient-card-hover: radial-gradient(ellipse at 50% 0%, rgba(60, 140, 220, 0.10) 0%, transparent 70%);
  --font-mono: 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.35s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  background: var(--bg-deep);
  position: relative;
}

body.modal-open {
  overflow: hidden;
}

/* PARTICLE CANVAS */
.particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* NAVIGATION */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(5, 8, 15, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0 8px;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.nav-logo-link:hover {
  opacity: 0.75;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-neon);
  transition: width var(--transition-medium);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* SECTION BASE */
section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(80, 140, 210, 0.06);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent-neon);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--accent-neon);
  opacity: 0.5;
}

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 3.25rem;
  line-height: 1.1;
  background: linear-gradient(180deg, #ffffff 0%, var(--text-primary) 40%, var(--accent-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 36px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 8px;
}

/* HERO */
.hero {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(30, 184, 209, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(124, 92, 231, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(60, 120, 200, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 120, 200, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-radar {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 408px;
  height: 408px;
  pointer-events: none;
  z-index: 0;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(77, 184, 255, 0.2);
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(77, 184, 255, 0.07) 15deg,
    transparent 25deg,
    transparent 360deg
  );
  animation: radar-rotate 6s linear infinite;
}

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

.radar-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(77, 184, 255, 0.18);
  transform: translate(-50%, -50%);
  animation: pulse-expand 4s ease-out infinite;
}

.pulse-1 {
  width: 60px;
  height: 60px;
  animation-delay: 0s;
}

.pulse-2 {
  width: 120px;
  height: 120px;
  animation-delay: 1.3s;
}

.pulse-3 {
  width: 200px;
  height: 200px;
  animation-delay: 2.6s;
}

@keyframes pulse-expand {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.8);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

/* ANIMATED LOGO FRAME */
.animated-logo-frame {
  position: relative;
  width: 520px;
  height: 520px;
  margin: 0 auto 48px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 36px;
}

.logo-radar-overlay {
  position: absolute;
  inset: -30px;
  width: 580px;
  height: 580px;
  pointer-events: none;
}

.logo-sweep-line {
  transform-origin: 290px 290px;
  animation: logo-sweep-rotate 8s linear infinite;
}

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

@keyframes logo-node-pulse {
  0%, 100% { opacity: 0.35; r: 2; }
  50%      { opacity: 0.9;  r: 3.2; }
}

@keyframes logo-node-pulse-alt {
  0%, 100% { opacity: 0.40; r: 2; }
  33%      { opacity: 0.85; r: 3; }
  66%      { opacity: 0.25; r: 1.6; }
}

@keyframes logo-node-pulse-slow {
  0%, 100% { opacity: 0.30; }
  50%      { opacity: 0.75; }
}

@keyframes logo-center-glow {
  0%, 100% { opacity: 0.15; }
  50%      { opacity: 0.45; }
}

.logo-node {
  animation: logo-node-pulse 3s ease-in-out infinite;
}

.logo-node.node-1 { animation: logo-node-pulse-alt 3.4s ease-in-out infinite; }
.logo-node.node-2 { animation: logo-node-pulse 2.6s ease-in-out 0.6s infinite; }
.logo-node.node-3 { animation: logo-node-pulse-slow 4s ease-in-out 1.2s infinite; }
.logo-node.node-4 { animation: logo-node-pulse-alt 3.2s ease-in-out 0.3s infinite; }

.logo-node-center {
  animation: logo-center-glow 3.5s ease-in-out infinite;
}

/* hover boost */
.animated-logo-frame:hover .logo-sweep-line {
  animation: logo-sweep-rotate 3s linear infinite;
}

.animated-logo-frame:hover .logo-node {
  filter: brightness(1.4);
}

.animated-logo-frame:hover .logo-node-center {
  filter: brightness(1.6);
  opacity: 0.55;
}

/* logo image inside frame */
.animated-logo-frame .hero-logo-icon {
  width: 480px;
  height: 480px;
  position: relative;
  z-index: 1;
  border-radius: 36px;
  clip-path: inset(0 round 36px);
  overflow: hidden;
  filter: drop-shadow(0 0 50px rgba(60, 120, 210, 0.55));
  animation: logo-float 7s ease-in-out infinite;
  object-fit: contain;
  object-position: center;
  padding: 24px;
  transition: transform var(--transition-medium), filter var(--transition-medium);
  display: block;
}

.animated-logo-frame:hover .hero-logo-icon {
  transform: scale(1.02);
  filter: drop-shadow(0 0 80px rgba(60, 120, 210, 0.7));
}

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

.hero-lead {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* HERO STATUS LINE */
.hero-status-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.status-badge {
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(77, 184, 255, 0.08);
  border: 1px solid rgba(77, 184, 255, 0.18);
  color: var(--accent-neon);
  font-weight: 600;
  font-size: 0.7rem;
  white-space: nowrap;
}

.status-divider {
  opacity: 0.3;
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .logo-sweep-line { animation: none; }
  .logo-node { animation: none; }
  .logo-node-center { animation: none; }
  .radar-sweep { animation: none; }
  .radar-pulse { animation: none; }
  .hero-logo-icon { animation: none; }
  .status-dot.active { animation: none; }
  .status-dot.alpha { animation: none; }
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-blue);
  color: #fff;
  border: 1px solid var(--accent-blue);
  box-shadow: 0 0 20px rgba(59, 142, 230, 0.25), inset 0 0 0 rgba(255,255,255,0);
  transition: all var(--transition-medium);
}

.btn-primary:hover {
  background: #4a9df0;
  box-shadow: 0 0 34px rgba(59, 142, 230, 0.50), inset 0 0 18px rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-neon);
  border: 1px solid var(--border-glow);
}

.btn-secondary:hover {
  background: rgba(60, 120, 210, 0.10);
  border-color: var(--accent-blue);
  box-shadow: 0 0 18px rgba(60, 120, 210, 0.15);
  transform: translateY(-1px);
}

/* PROBLEM */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.problem-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 24px rgba(60, 120, 210, 0.10);
}

.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  background: rgba(77, 184, 255, 0.06);
  border: 1px solid rgba(77, 184, 255, 0.12);
  color: var(--accent-neon);
  transition: all var(--transition-fast);
}

.problem-card:hover .problem-icon {
  background: rgba(77, 184, 255, 0.12);
  border-color: rgba(77, 184, 255, 0.3);
  transform: scale(1.05);
}

.problem-icon svg {
  width: 28px;
  height: 28px;
}

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

/* SOLUTION */
.solution-intro {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px auto;
}

.solution-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pillar {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 9px 20px;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  color: var(--accent-cyan);
  background: var(--bg-glass);
  letter-spacing: 0.03em;
  transition: all var(--transition-fast);
}

.pillar:hover {
  border-color: var(--accent-cyan);
  background: rgba(30, 184, 209, 0.06);
  box-shadow: 0 0 14px rgba(30, 184, 209, 0.12);
}

/* PRODUCT CARDS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.product-card{
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all var(--transition-medium);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* card accent per product */
.product-card.accent-cyan  { border-color: rgba(30, 184, 209, 0.18); }
.product-card.accent-blue  { border-color: rgba(59, 142, 230, 0.18); }
.product-card.accent-violet{ border-color: rgba(124, 92, 231, 0.18); }
.product-card.accent-green { border-color: rgba(30, 200, 160, 0.18); }
.product-card.accent-muted { border-color: var(--border-subtle); }

.product-card.accent-cyan:hover  { border-color: rgba(30, 184, 209, 0.55);  box-shadow: 0 8px 40px rgba(30, 184, 209, 0.14), 0 0 60px rgba(30, 184, 209, 0.04); }
.product-card.accent-blue:hover  { border-color: rgba(59, 142, 230, 0.55);  box-shadow: 0 8px 40px rgba(59, 142, 230, 0.14), 0 0 60px rgba(59, 142, 230, 0.04); }
.product-card.accent-violet:hover{ border-color: rgba(124, 92, 231, 0.55); box-shadow: 0 8px 40px rgba(124, 92, 231, 0.14), 0 0 60px rgba(124, 92, 231, 0.04); }
.product-card.accent-green:hover { border-color: rgba(30, 200, 160, 0.55);  box-shadow: 0 8px 40px rgba(30, 200, 160, 0.14), 0 0 60px rgba(30, 200, 160, 0.04); }
.product-card.accent-muted:hover { border-color: var(--border-glow); box-shadow: 0 8px 40px rgba(60,120,210,0.10), 0 0 60px rgba(77,184,255,0.03); }

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card-hover);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

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

.card-glow-pulse {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 184, 255, 0.06) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.product-card:hover .card-glow-pulse {
  opacity: 0.85;
}

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

.card-icon-crop {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(10, 16, 29, 0.6);
  border: 1px solid var(--border-subtle);
  position: relative;
}

.card-icon-crop::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 18px rgba(77, 184, 255, 0.08);
  pointer-events: none;
}

.card-logo-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 6px;
}

.card-logo-icon[src$=".png"] {
  object-fit: contain;
  object-position: center;
  padding: 6px;
}

.card-logo-icon[src$=".svg"] {
  object-fit: contain;
  object-position: center;
  padding: 4px;
}

.card-badge {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.card-badge.prototype {
  background: rgba(30, 184, 209, 0.14);
  color: var(--accent-cyan);
  border: 1px solid rgba(30, 184, 209, 0.30);
}

.card-badge.alpha {
  background: rgba(124, 92, 231, 0.14);
  color: var(--accent-violet);
  border: 1px solid rgba(124, 92, 231, 0.30);
}

.card-badge.concept {
  background: rgba(138, 164, 194, 0.12);
  color: var(--text-secondary);
  border: 1px solid rgba(138, 164, 194, 0.22);
}

.card-badge.ideation {
  background: rgba(85, 107, 130, 0.10);
  color: var(--text-muted);
  border: 1px solid rgba(85, 107, 130, 0.16);
}

.product-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(60, 120, 210, 0.08);
  color: var(--accent-neon);
  border: 1px solid rgba(60, 120, 210, 0.18);
}

/* SCLABS ABOUT */
.sclabs-about {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.about-block {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}

.about-block::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 184, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-accent-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
  border-radius: 2px;
  margin: 0 auto 24px auto;
}

.about-block h2 {
  color: var(--accent-neon);
  margin-bottom: 16px;
}

.about-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-tagline {
  font-family: var(--font-mono);
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.04em;
}

/* PRINCIPLES */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.principle-card {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: all var(--transition-medium);
  position: relative;
}

.principle-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: radial-gradient(ellipse at 100% 100%, rgba(77, 184, 255, 0.03) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.principle-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 28px rgba(60, 120, 210, 0.10);
  transform: translateY(-2px);
}

.principle-card:hover::after {
  opacity: 1;
}

.principle-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-neon);
  margin-bottom: 12px;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(77, 184, 255, 0.08);
  border: 1px solid rgba(77, 184, 255, 0.15);
}

.principle-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.principle-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* LAB STATUS */
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.status-item:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 16px rgba(60, 120, 210, 0.08);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.active {
  background: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(30, 184, 209, 0.6);
  animation: pulse-dot 2s infinite;
}

.status-dot.alpha {
  background: var(--accent-violet);
  box-shadow: 0 0 8px rgba(124, 92, 231, 0.45);
  animation: pulse-dot-slow 3s infinite;
}

.status-dot.prototype {
  background: #6a8fb0;
  box-shadow: 0 0 6px rgba(106, 143, 176, 0.35);
}

.status-dot.concept {
  background: var(--text-secondary);
  box-shadow: 0 0 4px rgba(141, 164, 194, 0.20);
}

.status-dot.ideation {
  background: var(--text-muted);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1;  box-shadow: 0 0 12px rgba(30, 184, 209, 0.6); }
  50%      { opacity: 0.35; box-shadow: 0 0 4px rgba(30, 184, 209, 0.2); }
}

@keyframes pulse-dot-slow {
  0%, 100% { opacity: 1;  box-shadow: 0 0 8px rgba(124, 92, 231, 0.45); }
  50%      { opacity: 0.45; box-shadow: 0 0 3px rgba(124, 92, 231, 0.15); }
}

.status-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.status-phase {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.status-focus {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.65;
  margin-top: 2px;
}

/* CTA */
.cta {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-email {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}

.footer-icon-wrap {
  margin-bottom: 12px;
}

.footer-logo-icon {
  height: 40px;
  width: auto;
  opacity: 0.55;
  filter: drop-shadow(0 0 16px rgba(77, 184, 255, 0.15));
}

.footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.footer-note {
  font-size: 0.75rem !important;
  opacity: 0.45;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(2, 4, 10, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

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

.modal-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: calc(100% - 32px);
  padding: 40px 36px;
  position: relative;
  box-shadow:
    0 0 60px rgba(60, 120, 210, 0.18),
    0 0 120px rgba(77, 184, 255, 0.06),
    0 24px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition-medium);
}

.modal-panel.accent-cyan  { border-color: rgba(30, 184, 209, 0.5); box-shadow: 0 0 60px rgba(30, 184, 209, 0.18), 0 0 120px rgba(30, 184, 209, 0.06), 0 24px 80px rgba(0, 0, 0, 0.6); }
.modal-panel.accent-blue  { border-color: rgba(59, 142, 230, 0.5); box-shadow: 0 0 60px rgba(59, 142, 230, 0.18), 0 0 120px rgba(59, 142, 230, 0.06), 0 24px 80px rgba(0, 0, 0, 0.6); }
.modal-panel.accent-violet{ border-color: rgba(124, 92, 231, 0.5); box-shadow: 0 0 60px rgba(124, 92, 231, 0.18), 0 0 120px rgba(124, 92, 231, 0.06), 0 24px 80px rgba(0, 0, 0, 0.6); }
.modal-panel.accent-green { border-color: rgba(30, 200, 160, 0.5); box-shadow: 0 0 60px rgba(30, 200, 160, 0.18), 0 0 120px rgba(30, 200, 160, 0.06), 0 24px 80px rgba(0, 0, 0, 0.6); }
.modal-panel.accent-muted { border-color: var(--border-bright); box-shadow: 0 0 60px rgba(60, 120, 220, 0.10), 0 0 120px rgba(77, 184, 255, 0.04), 0 24px 80px rgba(0, 0, 0, 0.6); }

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

.modal-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: radial-gradient(ellipse at 50% 0%, rgba(60, 140, 220, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(10, 16, 29, 0.7);
  color: var(--text-secondary);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2;
}

.modal-close:hover {
  background: rgba(59, 142, 230, 0.15);
  color: #fff;
  border-color: var(--accent-blue);
  box-shadow: 0 0 14px rgba(59, 142, 230, 0.25);
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 0 0;
}

.modal-icon {
  width: 280px;
  height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 36px;
  border: 1px solid var(--border-subtle);
  background: rgba(10, 16, 29, 0.6);
  position: relative;
  box-shadow: 0 0 60px rgba(77, 184, 255, 0.1);
}

.modal-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 50px rgba(77, 184, 255, 0.15);
  pointer-events: none;
}

.modal-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 20px;
}

.modal-icon-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 20px;
}

.modal-icon-placeholder {
  font-size: 5rem;
  color: var(--accent-neon);
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media (max-width: 480px) {
  .modal-icon {
    width: 200px;
    height: 200px;
    margin-bottom: 28px;
  }
}

.modal-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.modal-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.modal-badge.prototype {
  background: rgba(30, 184, 209, 0.16);
  color: var(--accent-cyan);
  border: 1px solid rgba(30, 184, 209, 0.35);
}

.modal-badge.alpha {
  background: rgba(124, 92, 231, 0.16);
  color: var(--accent-violet);
  border: 1px solid rgba(124, 92, 231, 0.35);
}

.modal-badge.concept {
  background: rgba(138, 164, 194, 0.14);
  color: var(--text-secondary);
  border: 1px solid rgba(138, 164, 194, 0.25);
}

.modal-badge.ideation {
  background: rgba(85, 107, 130, 0.12);
  color: var(--text-muted);
  border: 1px solid rgba(85, 107, 130, 0.18);
}

.modal-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 420px;
}

.modal-points {
  list-style: none;
  text-align: left;
  width: 100%;
  max-width: 420px;
  margin-bottom: 28px;
}

.modal-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

.modal-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-neon);
  box-shadow: 0 0 6px rgba(77, 184, 255, 0.5);
  opacity: 0.7;
}

.modal-cta {
  padding: 12px 32px;
  border-radius: 100px;
  background: var(--accent-blue);
  color: #fff;
  border: 1px solid var(--accent-blue);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(59, 142, 230, 0.25);
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

.modal-cta:hover {
  background: #4a9df0;
  box-shadow: 0 0 28px rgba(59, 142, 230, 0.45);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  body {
    padding: 0 16px;
  }

  section {
    padding: 60px 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .hero-radar {
    width: 240px;
    height: 240px;
  }

  .hero-logo-crop {
    width: 72px;
    height: 72px;
  }

  .animated-logo-frame {
    width: 100px;
    height: 100px;
  }

  .animated-logo-frame .hero-logo-crop {
    width: 86px;
    height: 86px;
  }

  .logo-radar-overlay {
    width: 120px;
    height: 120px;
    inset: -10px;
  }

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

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

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

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

  .nav-links {
    display: none;
  }

  .nav-inner {
    justify-content: center;
  }

  .modal-panel {
    padding: 32px 24px;
  }

  .modal-icon {
    width: 64px;
    height: 64px;
  }
}

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

  .hero-ctas, .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-radar {
    width: 180px;
    height: 180px;
  }

  .modal-panel {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }

  .modal-name {
    font-size: 1.3rem;
  }

  .hero-content {
    padding: 0 8px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .hero-lead {
    font-size: 1.1rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }
}

@media (max-width: 800px) {
  .hero-status-line {
    gap: 8px;
    font-size: 0.7rem;
  }

  .status-badge {
    padding: 4px 12px;
    font-size: 0.65rem;
  }
}