:root {
  --bg: #0A0A0B;
  --surface: #111113;
  --accent: #C8C8CC;
  --accent-secondary: #FF3D00;
  --text-primary: #C8C8CC;
  --text-muted: #5A5A5C;
  --border: #1E1E21;
}

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

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  color: #D0D0D2;
  font-weight: 400;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0A0A0B;
  color: #C8C8CC;
  line-height: 1.6;
  min-height: 100vh;
}

/* Typography */

.font-display {
  font-family: 'Poppins', sans-serif;
}

.font-body {
  font-family: 'Inter', sans-serif;
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 1px solid #1E1E21;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0A0A0B;
  z-index: 1000;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #C8C8CC;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #C8C8CC;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links a {
  color: #5A5A5C;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #C8C8CC;
}

.nav-divider {
  opacity: 0.3;
  margin: 0 12px;
  color: #5A5A5C;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 48px 80px;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #D0D0D2;
}

.hero-subtitle {
  color: #5A5A5C;
  font-size: 16px;
  margin-bottom: 48px;
}

.hero-tagline {
  color: #C8C8CC;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}

.github-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.github-cta span {
  color: #5A5A5C;
  font-size: 14px;
}

.github-cta-btn {
  background: #0A0A0B;
  color: #C8C8CC;
  border: 1px solid #C8C8CC;
  padding: 10px 24px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.github-cta-btn:hover {
  background: #C8C8CC;
  color: #0A0A0B;
}

.ctas {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #1E1E21;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: #D0D0D0;
  color: #0A0A0B;
  border-color: #D0D0D0;
}

.btn-primary:hover {
  background: #B8B8B8;
}

.btn-secondary {
  background: transparent;
  color: #C8C8CC;
}

.btn-secondary:hover {
  border-color: #C8C8CC;
  color: #C8C8CC;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 48px 48px;
  max-width: 1600px;
  margin: 0 auto;
}

.product-card {
  background: #111113;
  border: 1px solid #1E1E21;
  padding: 32px;
  text-decoration: none;
  color: #C8C8CC;
  transition: border-color 0.2s;
}

.product-card h2 {
  color: #D0D0D2;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.product-card:hover {
  border-color: #C8C8CC;
}

.product-name {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.product-desc {
  color: #5A5A5C;
  font-size: 14px;
  margin-bottom: 16px;
}

.benchmark-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 500;
  color: #C8C8CC;
  margin-bottom: 8px;
}

.benchmark-x {
  color: #444444;
}

.competitor {
  color: #5A5A5C;
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
}

/* Footer */
footer {
  border-top: 1px solid #1E1E21;
  padding: 32px 48px;
  text-align: center;
  color: #5A5A5C;
  font-size: 13px;
}

footer a {
  color: #5A5A5C;
  text-decoration: none;
}

footer a:hover {
  color: #C8C8CC;
}

/* Legal / Prose content */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  line-height: 1.8;
}

.legal-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #D0D0D2;
}

.legal-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #D0D0D2;
}

.legal-content p {
  color: #5A5A5C;
  font-size: 15px;
  margin-bottom: 16px;
}

.legal-content a {
  color: #C8C8CC;
  text-decoration: none;
}

.legal-updated {
  color: #5A5A5C;
  font-size: 13px;
  margin-bottom: 32px;
}

.prose-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 48px 80px;
  line-height: 1.9;
}

.prose-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 32px;
  color: #D0D0D2;
}

.prose-content p {
  color: #C8C8CC;
  font-size: 16px;
  margin-bottom: 1.5em;
}

/* Code blocks */
code {
  color: #8A8A8C;
  font-family: 'JetBrains Mono', monospace;
  background: #111113;
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 13px;
}

pre {
  color: #8A8A8C;
  background: #111113;
  border: 1px solid #1E1E21;
  padding: 16px;
  overflow-x: auto;
  margin: 16px 0;
}

pre code {
  background: none;
  padding: 0;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #1E1E21;
}

th {
  color: #5A5A5C;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

td {
  color: #8A8A8C;
  font-size: 14px;
}

/* NS Suite Layout */
.ns-suite-container {
  display: flex;
  padding-top: 80px;
  min-height: 100vh;
}

.ns-sidebar {
  width: 280px;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  background: #0A0A0B;
  border-left: 1px solid #1E1E21;
  padding: 32px 24px;
  overflow-y: auto;
  flex-shrink: 0;
  align-self: flex-start;
}

.ns-sidebar-label {
  color: #5A5A5C;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}

.ns-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ns-sidebar-links a {
  color: #5A5A5C;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.15s ease-out;
  padding: 8px 12px;
  border-radius: 2px;
  display: block;
}

.ns-sidebar-links a:hover {
  color: #C8C8CC;
  transform: scale(1.08);
  transform-origin: left center;
}

.ns-sidebar-links a:active {
  transform: scale(0.98);
}

.ns-sidebar-links a.active {
  color: #C8C8CC;
  background: #111113;
}

.ns-sidebar-links a.coming-soon {
  color: #5A5A5C;
  pointer-events: none;
}

.ns-content {
  flex: 1;
  padding: 48px 48px 48px 48px;
  max-width: 1200px;
}

.ns-header {
  padding: 32px 0;
}

.ns-header h1 {
  color: #D0D0D2;
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 8px;
}

.ns-subtitle {
  color: #5A5A5C;
  font-size: 16px;
}

.ns-header-divider {
  border: none;
  border-top: 1px solid #1E1E21;
  margin: 24px 0 48px 0;
}

.product-section {
  padding: 48px 0;
  border-bottom: 1px solid #1E1E21;
}

.product-section:last-child {
  border-bottom: none;
}

.product-section h2 {
  color: #D0D0D2;
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 8px;
}

.product-section .tagline {
  color: #5A5A5C;
  font-size: 16px;
  margin-bottom: 24px;
}

.benchmark-table {
  margin: 24px 0;
}

.benchmark-command {
  margin: 24px 0;
}

.license-link {
  display: inline-block;
  margin-top: 24px;
  color: #C8C8CC;
  text-decoration: none;
}

.license-link:hover {
  text-decoration: underline;
}

.feature-link {
  display: inline-block;
  margin-top: 24px;
  color: #5A5A5C;
  text-decoration: none;
}

.feature-link:hover {
  color: #C8C8CC;
  text-decoration: underline;
}

/* Stat callout boxes */
.stat-callout { background: #111113; border: 1px solid #1E1E21; padding: 20px 24px; text-align: center; flex: 1; min-width: 180px; }
.stat-callout .stat-number { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 400; color: #D0D0D2; margin-bottom: 8px; }
.stat-callout .stat-label { color: #5A5A5C; font-size: 13px; }

/* Icon grid (feature cards) */
.icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0; }
.icon-card { background: #111113; border: 1px solid #1E1E21; padding: 32px; }
.icon-card svg { margin-bottom: 16px; }
.icon-card h3 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 400; color: #D0D0D2; margin-bottom: 8px; }
.icon-card p { color: #5A5A5C; font-size: 14px; line-height: 1.6; }

/* Lacuna specific */
.lacuna-noise {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.03;
  z-index: 0;
}

/* Lacuna section on index */
.lacuna-section-index {
  background: #111113;
  padding: 20px 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.lacuna-content {
  flex: 1;
  max-width: 600px;
}

.lacuna-animation-container {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  margin-right: 80px;
  padding-top: 28px;
  overflow: hidden;
}

.lacuna-sweep-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}

.lacuna-sweep-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100px;
  height: 2px;
  background: #C8FF00;
  opacity: 0.4;
  animation: sweep 5s linear infinite;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

@keyframes sweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Animation demo section */
.animation-demo-section {
  background: #0A0A0B;
  padding: 80px 48px;
  border-top: 1px solid #1E1E21;
}

.animation-demo-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 48px;
  color: #D0D0D2;
}

.animation-demo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.animation-demo-box {
  background: #111113;
  padding: 48px;
  border: 1px solid #1E1E21;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.animation-demo-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  color: #D0D0D2;
}

.animation-demo-box p {
  color: #5A5A5C;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* Option 1: Lock icon morph */
.anim-lock-morph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.anim-lock-morph svg {
  width: 64px;
  height: 64px;
}

/* Option 2: Bouncing shape */
.anim-bounce::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 20%;
  width: 20px;
  height: 20px;
  background: #C8FF00;
  opacity: 0.4;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    bottom: 20%;
  }
  25% {
    bottom: 60%;
  }
  50% {
    bottom: 40%;
  }
  75% {
    bottom: 70%;
  }
}

/* Option 3: Scanning beam */
.anim-scan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #C8FF00, transparent);
  opacity: 0.4;
  animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% {
    left: 10%;
  }
  50% {
    left: 90%;
  }
}

/* Option 4: Digital rain */
.anim-rain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(224, 224, 224, 0.03) 2px,
    rgba(224, 224, 224, 0.03) 4px
  );
  animation: rain 2s linear infinite;
}

@keyframes rain {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 20px;
  }
}

.lacuna-section-index h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #D0D0D2;
}

.lacuna-section-index p {
  color: #C8C8CC;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 600px;
}

.lacuna-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  z-index: 1;
}

.lacuna-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 96px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #D0D0D2;
}

.lacuna-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 48px;
  position: relative;
  z-index: 1;
}

.lacuna-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #D0D0D2;
}

.crack-challenge {
  text-align: center;
  padding: 48px;
  border: 1px solid #1E1E21;
  margin: 48px 0;
}

.crack-challenge h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #D0D0D2;
}

.hall-of-fame {
  margin: 32px 0;
}

/* Licensing */
.pricing-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 48px;
}

.pricing-table {
  margin: 32px 0;
}

.form-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid #1E1E21;
}

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

.form-group label {
  display: block;
  color: #5A5A5C;
  font-size: 13px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background: #111113;
  border: 1px solid #1E1E21;
  color: #C8C8CC;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C8C8CC;
}

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

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #C8C8CC;
  font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.revenue-button {
  padding: 20px;
  background: #111113;
  border: 1px solid #1E1E21;
  border-radius: 8px;
  color: #C8C8CC;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.revenue-button:hover {
  border-color: #C8C8CC;
  transform: translateY(-2px);
}

.revenue-button.selected {
  background: #111113;
  color: #C8C8CC;
  border-color: #C0C0C0;
  transform: scale(0.98);
}

.revenue-name {
  font-size: 16px;
  font-weight: 400;
}

.revenue-desc {
  font-size: 13px;
  opacity: 0.8;
}

.ns-suite-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.product-select-btn {
  padding: 24px 12px;
  background: #111113;
  border: 1px solid #1E1E21;
  border-radius: 8px;
  color: #C8C8CC;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-height: 80px;
}

.product-select-btn:hover {
  border-color: #C8C8CC;
  transform: translateY(-2px);
}

.product-select-btn.selected {
  background: #111113;
  color: #C8C8CC;
  border-color: #1E1E21;
  transform: scale(0.92);
}

.product-ns {
  font-size: 12px;
  font-weight: 400;
  color: #5A5A5C;
  transition: color 0.15s ease-out;
}

.product-select-btn.selected .product-ns {
  color: #90EE90;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
}

.lacuna-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #1E1E21;
}

.lacuna-select-btn {
  width: 100%;
  max-width: 100%;
  padding: 24px;
  background: #111113;
  border: 1px solid #1E1E21;
  border-radius: 8px;
  color: #C8C8CC;
  cursor: pointer;
  transition: all 0.15s ease-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lacuna-btn-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.lacuna-btn-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  text-align: left;
}

.lacuna-lock-icon {
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.lacuna-select-btn.selected .lacuna-lock-icon {
  opacity: 1;
}

.lacuna-select-btn.selected .lacuna-lock-icon .chk {
  opacity: 1;
  animation: draw 1s ease forwards;
}

.lacuna-select-btn:hover {
  border-color: #C8C8CC;
  transform: translateY(-2px);
}

.lacuna-select-btn.selected {
  background: #111113;
  color: #C8C8CC;
  border-color: #C0C0C0;
  transform: scale(0.98);
}

.lacuna-btn-title {
  font-size: 18px;
  font-weight: 400;
}

.lacuna-btn-desc {
  font-size: 14px;
  opacity: 0.8;
}

.form-note {
  color: #5A5A5C;
  font-size: 13px;
  margin-top: 16px;
}

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

::-webkit-scrollbar-track {
  background: #0A0A0B;
}

::-webkit-scrollbar-thumb {
  background: #333336;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #444447;
}

::-webkit-scrollbar-button {
  display: none;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #333336 #0A0A0B;
}

/* Mobile responsive */
@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0A0A0B;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid #1E1E21;
  }
  
  .nav-links.active {
    display: flex;
  }

  .nav-divider {
    width: 100%;
    height: 1px;
    background: #1E1E21;
    margin: 8px 0;
    opacity: 1;
    font-size: 0;
  }
  
  .ns-sidebar {
    position: relative;
    width: 100%;
    max-width: none;
    border-right: none;
    border-bottom: 1px solid #1E1E21;
  }
  
  .ns-suite-container {
    flex-direction: column;
  }
  
  .ns-content {
    max-width: 100%;
  }
  
  .form-section {
    max-width: 100%;
    padding: 24px;
  }
  
  .lacuna-select-btn {
    width: 100%;
  }
  
  .ns-suite-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .revenue-grid {
    grid-template-columns: 1fr;
  }
  
  .icon-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 48px;
  color: #D0D0D2;
}
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 48px 24px;
    gap: 16px;
  }
  
  .product-card {
    padding: 24px 16px;
  }
  
  .lacuna-section-index {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 12px 24px;
  }
  
  .lacuna-content {
    text-align: center;
    max-width: 100%;
  }
  
  .lacuna-animation-container {
    transform: scale(0.65);
    margin-right: 0;
  }
  
  .ctas {
    flex-direction: column;
  }
  
  .ns-sidebar {
    display: none;
  }
  
  .ns-content {
    margin-right: 0;
    padding: 32px 24px;
  }
  
  .lacuna-hero h1 {
    font-size: 48px;
  color: #D0D0D2;
}
  
  .crack-challenge h3 {
    font-size: 32px;
  color: #D0D0D2;
}
  
  .pricing-section,
  .form-section {
    padding: 32px 24px;
  }

  .pricing-section {
    padding-top: 100px;
  }

  .pricing-table {
    font-size: 12px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 8px 10px;
    font-size: 11px;
    white-space: nowrap;
  }

  .pricing-table td:first-child,
  .pricing-table th:first-child {
    white-space: normal;
    min-width: 90px;
  }
}

/* NS AI component cards */
.component-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.component-card {
  background: #111113;
  border: 1px solid #1E1E21;
  padding: 32px 24px;
  transition: border-color 0.2s;
}
.component-card:hover {
  border-color: #C8C8CC;
}
.component-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #D0D0D2;
  margin-bottom: 8px;
}
.component-card .component-desc {
  color: #C8C8CC;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.component-card .component-number {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #D0D0D2;
  margin-bottom: 4px;
}
.component-card .component-number-secondary {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #5A5A5C;
  margin-bottom: 12px;
}
.component-card .component-win {
  color: #5A5A5C;
  font-size: 13px;
  line-height: 1.6;
}
.stack-callout {
  background: #111113;
  border: 1px solid #1E1E21;
  padding: 48px 32px;
  text-align: center;
  margin: 32px 0;
}
.stack-callout p {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #D0D0D2;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}
.install-block {
  max-width: 600px;
  margin: 32px auto;
}
.install-block pre {
  background: #111113;
  border: 1px solid #1E1E21;
  padding: 24px;
  overflow-x: auto;
  border-radius: 4px;
}
.install-block code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #C8C8CC;
  line-height: 1.8;
}
.install-note {
  text-align: center;
  color: #5A5A5C;
  font-size: 14px;
  margin-top: 16px;
}
.licensing-link {
  text-align: center;
  margin: 48px 0;
  font-size: 15px;
  color: #5A5A5C;
}
.licensing-link a {
  color: #C8C8CC;
  text-decoration: none;
}
.licensing-link a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .component-grid {
    grid-template-columns: 1fr;
  }
}
