:root {
  /* Colors */
  --bg-dark: #000;
  --bg-card: rgba(15, 15, 15, 0.4);
  --bg-card-hover: rgba(25, 25, 25, 0.6);
  --bg-terminal: #0a0a0a;

  --primary-orange: #FF6B00;
  --primary-orange-dim: rgba(255, 107, 0, 0.15);

  --accent-amber: #FF8C00;
  --accent-amber-dim: rgba(255, 140, 0, 0.15);

  --warning-amber: #ffb300;
  --critical-red: #ff4444;
  --safe-green: #00c853;
  --safe-pale: #b9ffb0;
  --secondary-green: #00ff88;

  --text-main: #f0f0f0;
  --text-muted: #8b8b8b;
  --text-dark: #0a0a0a;

  --border-light: rgba(255, 255, 255, 0.1);

  /* Spacing */
  --s-sm: 0.5rem;
  --s-md: 1rem;
  --s-lg: 2rem;
  --s-xl: 4rem;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.text-left {
  text-align: left;
}

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

.text-red {
  color: var(--critical-red);
}

.text-green {
  color: var(--safe-green);
}

.text-bold {
  font-weight: 700;
}

.text-white {
  color: var(--text-main);
}

.text-small {
  font-size: 0.875rem;
}

.mt-s {
  margin-top: var(--s-sm);
}

.mt-m {
  margin-top: var(--s-md);
}

.mt-l {
  margin-top: var(--s-lg);
}

.mt-xl {
  margin-top: var(--s-xl);
}

.mb-m {
  margin-bottom: var(--s-md);
}

.hidden {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.5px;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--text-dark);
  box-shadow: 0 0 15px var(--primary-orange-dim);
}

.btn-primary:hover {
  background-color: #FF8C00;
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s ease;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 130px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-icon {
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.nav-icon:hover {
  color: var(--primary-orange);
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 1;
  padding: 5rem 0 3rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

}

.hero-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-centered .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .hero-ctas {
  justify-content: center;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

/* Hero orchestrated entrance */
.hero-subtitle,
.hero-ctas {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-subtitle.anim-hidden,
.hero-ctas.anim-hidden {
  opacity: 0;
  transform: translateY(12px);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
}

/* Demo Section (scroll-driven terminal) */
.demo-section {
  position: relative;
  height: 600vh;

}

.demo-sticky {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.demo-terminals {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.demo-terminals .terminal-window {
  flex: 1;
  min-width: 0;
}

/* Terminal Window */
.terminal-window {
  background-color: var(--bg-terminal);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glow-effect {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 30px rgba(255, 107, 0, 0.05);
  position: relative;
}

.glow-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
  opacity: 0.3;
}

.terminal-header {
  background: #111;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid #222;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red {
  background-color: #ff5f56;
}

.dot.yellow {
  background-color: #ffbd2e;
}

.dot.green {
  background-color: #27c93f;
}

.terminal-body {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-main);
  overflow-x: auto;
  line-height: 1.5;
}

.demo-section .terminal-body {
  max-height: 65vh;
  overflow-y: auto;
}

.terminal-output {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.terminal-output.is-expanded {
  overflow: visible;
}

.terminal-line {
  min-height: 1.5em;
}

.prompt {
  color: var(--primary-orange);
  font-weight: bold;
  margin-right: 0.5rem;
}

.comment {
  color: var(--text-muted);
}

.command {
  color: var(--text-main);
}

.grade-c {
  color: var(--warning-amber);
  font-weight: bold;
}

.grade-d {
  color: #ff8800;
  font-weight: bold;
}

.typing-text::after {
  content: '█';
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Problem Section */
.problem-section {
  padding: 6rem 0;
  background-color: #000;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);

}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.hover-glow:hover {
  border-color: var(--primary-orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--primary-orange-dim);
}

.card-icon {
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

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

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

/* Data Wall */
.data-section {
  padding: 6rem 0;
}

.marquee-wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.marquee-left .marquee-content {
  animation: scroll-left 60s linear infinite;
}

.marquee-right .marquee-content {
  animation: scroll-right 60s linear infinite;
}

.marquee-track:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.site-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 1.25rem;
  min-width: 200px;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.site-card:hover {
  border-color: var(--primary-orange);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-name {
  font-weight: 600;
}

.site-grade {
  font-family: var(--font-mono);
  font-weight: 700;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  white-space: nowrap;
}

.site-grade.c-plus {
  color: var(--text-dark);
  background: var(--primary-orange);
  border: 1px solid var(--primary-orange);
  box-shadow: 0 0 10px var(--primary-orange-dim);
}

.site-grade.c-plain {
  color: var(--text-dark);
  background: #d46a00;
  border: 1px solid #d46a00;
  box-shadow: 0 0 10px rgba(212, 106, 0, 0.15);
}

.site-grade.c-minus {
  color: var(--text-dark);
  background: var(--warning-amber);
  border: 1px solid var(--warning-amber);
  box-shadow: 0 0 10px rgba(255, 179, 0, 0.15);
}

.site-grade.grade-f {
  color: var(--text-main);
  background: var(--critical-red);
  border: 1px solid var(--critical-red);
  box-shadow: 0 0 10px rgba(255, 68, 68, 0.2);
}

.site-grade.grade-d-plus {
  color: var(--text-dark);
  background: var(--primary-orange);
  border: 1px solid var(--primary-orange);
  box-shadow: 0 0 10px var(--primary-orange-dim);
}

.site-grade.grade-a {
  color: var(--text-dark);
  background: var(--safe-green);
  border: 1px solid var(--safe-green);
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.2);
}

.site-details {
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.detail-label {
  color: var(--text-muted);
}

.detail-value {
  color: var(--text-main);
}

.section-note {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Grading Scale */
.grading-section {
  padding: 6rem 0;
  background-color: #000;
  border-top: 1px solid var(--border-light);
}

.table-container {
  overflow-x: auto;
}

.grading-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.grading-table th,
.grading-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.grading-table th {
  background-color: var(--bg-card);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

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

.grading-table tr {
  transition: background 0.2s;
}

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

.grade-badge {
  display: inline-flex;
  font-family: var(--font-mono);
  font-weight: 700;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.grade-badge.a-plus {
  background: var(--safe-pale);
  color: #000;
  box-shadow: 0 0 10px rgba(185, 255, 176, 0.5);
}

.grade-badge.a {
  background: rgba(0, 200, 83, 0.2);
  color: var(--safe-green);
  border: 1px solid var(--safe-green);
}

.grade-badge.b {
  background: rgba(0, 255, 136, 0.1);
  color: var(--secondary-green);
  border: 1px solid var(--secondary-green);
}

.grade-badge.c-plus-badge {
  background: var(--primary-orange);
  color: var(--text-dark);
  border: 1px solid var(--primary-orange);
  width: auto;
  padding: 0 8px;
}

.grade-badge.c-reg {
  background: #d46a00;
  color: var(--text-dark);
  border: 1px solid #d46a00;
}

.grade-badge.c-minus-badge {
  background: var(--warning-amber);
  color: var(--text-dark);
  border: 1px solid var(--warning-amber);
  width: auto;
  padding: 0 8px;
}

.grade-badge.d {
  background: rgba(255, 136, 0, 0.15);
  color: #ff8800;
  border: 1px solid #ff8800;
}

.grade-badge.f {
  background: rgba(255, 68, 68, 0.15);
  color: var(--critical-red);
  border: 1px solid var(--critical-red);
}

.table-footnote {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
  text-align: center;
  font-style: italic;
}

/* Install Section */
.install-section {
  padding: 6rem 0;

}

.install-card {
  max-width: 800px;
  margin: 0 auto;
}

.code-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
}

/* Timeline */
.roadmap-section {
  padding: 6rem 0 8rem;
  border-top: 1px solid var(--border-light);
  background: linear-gradient(180deg, var(--bg-dark) 0%, #05070a 100%);
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-top: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Track line */
.timeline::before {
  content: '';
  position: absolute;
  top: calc(2rem + 7px);
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-light);
  transform: scaleX(0);
  transform-origin: left;
}

.fade-in.is-visible .timeline::before {
  animation: drawLine 0.8s ease-out both;
}

@keyframes drawLine {
  to { transform: scaleX(1); }
}

/* Node container */
.timeline-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Dot on the line */
.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border-light);
  margin-bottom: 1.25rem;
  transform: scale(0);
}

.fade-in.is-visible .timeline-dot {
  animation: popIn 0.3s ease-out both;
}

.fade-in.is-visible .timeline-node:nth-child(1) .timeline-dot { animation-delay: 0.3s; }
.fade-in.is-visible .timeline-node:nth-child(2) .timeline-dot { animation-delay: 0.5s; }
.fade-in.is-visible .timeline-node:nth-child(3) .timeline-dot { animation-delay: 0.7s; }
.fade-in.is-visible .timeline-node:nth-child(4) .timeline-dot { animation-delay: 0.9s; }
.fade-in.is-visible .timeline-node:nth-child(5) .timeline-dot { animation-delay: 1.1s; }

@keyframes popIn {
  0% { transform: scale(0); }
  70% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Completed dot — green */
.timeline-node.completed .timeline-dot {
  border-color: var(--safe-green);
  box-shadow: 0 0 8px rgba(0, 200, 83, 0.3);
}

/* In-progress dot — orange with pulse */
.timeline-node.in-progress .timeline-dot {
  border-color: var(--primary-orange);
}

.fade-in.is-visible .timeline-node.in-progress .timeline-dot {
  animation: popIn 0.3s ease-out both, orangePulse 2s ease-in-out 1.5s infinite;
}

@keyframes orangePulse {
  0%, 100% { box-shadow: 0 0 6px rgba(255, 107, 0, 0.2); }
  50% { box-shadow: 0 0 16px rgba(255, 107, 0, 0.5); }
}

/* Planned dot — muted */
.timeline-node.planned .timeline-dot {
  border-color: rgba(255, 255, 255, 0.15);
}

/* Card below the dot */
.timeline-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1rem;
  width: 100%;
  max-width: 160px;
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.is-visible .timeline-card {
  animation: fadeUp 0.4s ease-out both;
}

.fade-in.is-visible .timeline-node:nth-child(1) .timeline-card { animation-delay: 0.4s; }
.fade-in.is-visible .timeline-node:nth-child(2) .timeline-card { animation-delay: 0.6s; }
.fade-in.is-visible .timeline-node:nth-child(3) .timeline-card { animation-delay: 0.8s; }
.fade-in.is-visible .timeline-node:nth-child(4) .timeline-card { animation-delay: 1.0s; }
.fade-in.is-visible .timeline-node:nth-child(5) .timeline-card { animation-delay: 1.2s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-card h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.timeline-card p {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

/* Status badges */
.timeline-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.timeline-status.completed {
  color: var(--safe-green);
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.2);
}

.timeline-status.in-progress {
  color: var(--primary-orange);
  background: var(--primary-orange-dim);
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.timeline-status.planned {
  color: var(--text-muted);
  background: rgba(139, 139, 139, 0.1);
  border: 1px solid rgba(139, 139, 139, 0.15);
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  background: #05070a;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 6rem 0 3rem;
  }

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

  .demo-section {
    height: auto;
  }

  .demo-sticky {
    position: relative;
    top: auto;
    transform: none;
    padding: 3rem 1.5rem;
  }

  .demo-terminals {
    flex-direction: column;
  }

  .timeline {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0;
    padding-left: 2rem;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 7px;
    right: auto;
    height: auto;
    width: 2px;
  }

  .fade-in.is-visible .timeline::before {
    animation-name: drawLineVertical;
  }

  @keyframes drawLineVertical {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
  }

  .timeline-node {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .timeline-node:last-child {
    margin-bottom: 0;
  }

  .timeline-dot {
    margin-bottom: 0;
    margin-top: 0.25rem;
    flex-shrink: 0;
  }

  .timeline-card {
    max-width: none;
    text-align: left;
  }

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

  .btn {
    width: 100%;
  }

  .terminal-body {
    font-size: 0.8rem;
  }

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

  .marquee-right {
    display: none;
  }

  .marquee-left .marquee-content {
    animation-duration: 30s;
  }

  .grading-table th,
  .grading-table td {
    padding: 0.75rem 1rem;
  }
}

/* Animations & Particle Canvas */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Framework Results */
.framework-section {
  padding: 6rem 0;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.framework-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 1.25rem;
  transition: border-color 0.3s ease;
}

.framework-card:hover {
  border-color: var(--primary-orange);
}

.framework-card .site-header {
  margin-bottom: 0.75rem;
}

.framework-card .framework-name {
  font-weight: 600;
}

.framework-card .framework-lang {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.framework-card .framework-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.framework-card .framework-findings {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
}

.framework-card .framework-findings.critical {
  color: var(--critical-red);
}

.framework-card .framework-findings.safe {
  color: var(--safe-green);
}

.framework-footnote {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Trust Badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 200, 83, 0.25);
  background: rgba(0, 200, 83, 0.06);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--safe-green);
}

.trust-badge .badge-grade {
  font-weight: 700;
}

/* Waitlist */
.waitlist-section {
  padding: 6rem 0;
}

.waitlist-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 3rem 2.5rem;
}

.waitlist-form {
  display: flex;
  gap: 0.75rem;
}

.waitlist-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.waitlist-input::placeholder {
  color: var(--text-muted);
}

.waitlist-input:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 2px var(--primary-orange-dim);
}

.waitlist-btn {
  background-color: var(--primary-orange);
  color: var(--text-dark);
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 0 15px var(--primary-orange-dim);
}

.waitlist-btn:hover {
  background-color: #FF8C00;
  box-shadow: 0 0 25px rgba(255, 107, 0, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-card {
    padding: 2rem 1.5rem;
  }
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}