@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
  --base: #0a0f0a;
  --surface: rgba(10, 15, 10, 0.95);
  --elevated: rgba(15, 22, 15, 0.98);
  --chrome: #c8e6c9;
  --chrome-light: #e8f5e9;
  --chrome-dark: #81c784;
  --chrome-glow: rgba(200, 230, 201, 0.15);
  --green: #4caf50;
  --green-dark: #2e7d32;
  --gradient-text: linear-gradient(135deg, #c8e6c9 0%, #81c784 50%, #ffffff 100%);
  --gradient-title: linear-gradient(90deg, #c8e6c9 0%, #a5d6a7 25%, #ffffff 50%, #a5d6a7 75%, #c8e6c9 100%);
  --white: #f1f8f4;
  --text: #e8f5e9;
  --text-muted: rgba(232, 245, 233, 0.7);
  --text-subtle: rgba(232, 245, 233, 0.4);
  --border: rgba(200, 230, 201, 0.2);
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--base);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: 
    linear-gradient(rgba(10, 15, 10, 0.85), rgba(10, 15, 10, 0.9)),
    url("assets/nexusperp-bg.png?v=2") center/cover no-repeat;
  z-index: -1;
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(10, 15, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 60px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--chrome), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--base);
  box-shadow: 0 0 20px var(--chrome-glow);
  letter-spacing: -0.05em;
}

.brand-name {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 600;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #81c784 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--chrome);
}

.header-cta {
  display: flex;
  gap: 12px;
}

.cta-primary {
  background: linear-gradient(135deg, var(--chrome), var(--green));
  color: var(--base);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--chrome-glow);
}

.cta-secondary {
  border: 1px solid var(--border);
  color: var(--chrome);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: var(--chrome-glow);
  border-color: var(--chrome);
}

/* Hero - Centered, Full Width */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 80px 80px;
}

.hero-content {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--chrome);
  margin-bottom: 40px;
}

.hero-title {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  background: var(--gradient-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(200, 230, 201, 0.3));
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #c8e6c9 0%, #ffffff 50%, #c8e6c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(200, 230, 201, 0.3));
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-subtle);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cta-large {
  background: linear-gradient(135deg, var(--chrome), var(--green));
  color: var(--base);
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--chrome-glow);
}

.cta-outline {
  border: 1px solid var(--border);
  color: var(--chrome);
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.cta-outline:hover {
  background: var(--chrome-glow);
  border-color: var(--chrome);
}

/* Technical Specs Section */
.section-tech-specs {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--base) 0%, rgba(200, 230, 201, 0.03) 50%, var(--base) 100%);
}

.specs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.specs-header {
  text-align: center;
  margin-bottom: 64px;
}

.specs-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--chrome);
  margin-bottom: 16px;
}

.specs-title {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.spec-card {
  padding: 40px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--chrome-glow);
  border-color: var(--chrome);
}

.spec-card.featured {
  border-color: var(--chrome);
  box-shadow: 0 0 40px var(--chrome-glow);
}

.spec-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--chrome);
}

.spec-icon svg {
  width: 100%;
  height: 100%;
}

.spec-card h3 {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.spec-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.spec-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #c8e6c9 0%, #ffffff 50%, #81c784 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-subtle);
}

/* Panels */
.panel {
  padding: 100px 48px;
  position: relative;
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--chrome-glow), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.panel-container {
  max-width: 1200px;
  margin: 0 auto;
}

.panel-header {
  text-align: center;
  margin-bottom: 64px;
}

.panel-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--chrome);
  margin-bottom: 16px;
}

.panel-title {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.panel-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.panel-dark {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  padding: 40px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--chrome-glow);
}

.about-card.featured {
  border-color: var(--chrome);
  box-shadow: 0 0 40px var(--chrome-glow);
}

.about-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--chrome);
}

.about-icon svg {
  width: 100%;
  height: 100%;
}

.about-card h3 {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.tech-item {
  padding: 32px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tech-item:hover {
  border-color: var(--chrome);
  box-shadow: 0 10px 40px var(--chrome-glow);
}

.tech-number {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--chrome);
  margin-bottom: 12px;
  display: block;
}

.tech-item h3 {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  padding: 32px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px var(--chrome-glow);
}

.solution-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--chrome);
}

.solution-icon svg {
  width: 100%;
  height: 100%;
}

.solution-card h3 {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-card li {
  color: var(--text-muted);
  font-size: 0.875rem;
  padding-left: 16px;
  position: relative;
}

.solution-card li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--chrome);
}

/* Roadmap */
.roadmap-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.roadmap-orbit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
}

.roadmap-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}

.roadmap-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 1px solid var(--border);
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
}

.roadmap-phase {
  position: relative;
  padding: 32px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.roadmap-phase:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--chrome-glow);
  border-color: var(--chrome);
}

.roadmap-phase:nth-child(1) {
  border-top-right-radius: 60px;
}

.roadmap-phase:nth-child(2) {
  border-top-left-radius: 60px;
}

.roadmap-phase:nth-child(3) {
  border-bottom-right-radius: 60px;
}

.roadmap-phase:nth-child(4) {
  border-bottom-left-radius: 60px;
}

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

.phase-number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--chrome), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--base);
  box-shadow: 0 8px 30px var(--chrome-glow);
}

.phase-content h3 {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.roadmap-phase li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.roadmap-phase li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--chrome);
  font-size: 0.75rem;
  top: 4px;
}

/* CTA Section */
.section-cta {
  padding: 120px 48px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(200, 230, 201, 0.1) 0%, transparent 60%);
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 16px;
  background: var(--gradient-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(200, 230, 201, 0.3));
}

.cta-subtitle {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  background: linear-gradient(90deg, #81c784 0%, #c8e6c9 50%, #e8f5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.cta-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.waitlist-input {
  flex: 1;
  padding: 18px 24px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.waitlist-input:focus {
  border-color: var(--chrome);
}

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

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

.cta-link {
  color: var(--chrome);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.cta-link:hover {
  opacity: 0.8;
}

.cta-divider {
  color: var(--text-subtle);
}

.cta-note {
  font-size: 0.875rem;
  color: var(--text-subtle);
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 48px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-mark {
  width: 72px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--chrome), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--base);
  letter-spacing: -0.05em;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 600;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-subtle);
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--chrome);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-subtle);
}

.footer-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}


/* Text Highlight Effect - No Box */
.highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(200, 230, 201, 0.3) 60%, rgba(200, 230, 201, 0.3) 85%, transparent 85%);
  font-weight: 500;
}

.highlight-glow {
  text-shadow: 0 0 20px rgba(200, 230, 201, 0.5), 0 0 40px rgba(200, 230, 201, 0.3);
  font-weight: 500;
}

.highlight-strong {
  background: linear-gradient(180deg, transparent 50%, rgba(129, 199, 132, 0.4) 50%, rgba(129, 199, 132, 0.4) 80%, transparent 80%);
  font-weight: 600;
}


/* What is NexusPerp Section */
.what-is-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.what-is-card {
  padding: 40px;
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.what-is-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px var(--chrome-glow);
}

.what-is-card.featured {
  border-color: var(--chrome);
  box-shadow: 0 0 40px var(--chrome-glow);
}

.what-is-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--chrome), var(--green));
  opacity: 0.5;
}

.what-is-card.featured::before {
  opacity: 1;
}

.what-is-number {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--chrome);
  margin-bottom: 20px;
  display: block;
}

.what-is-card h3 {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.what-is-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .what-is-grid { grid-template-columns: 1fr; }
}


/* Quote Section */
.section-quote {
  padding: 120px 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(200, 230, 201, 0.05) 50%, transparent 100%);
  text-align: center;
  position: relative;
}

.section-quote::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 230, 201, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quote-text {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
  font-style: italic;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quote-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--chrome), transparent);
  margin: 0 auto 24px;
}

.quote-attribution {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--chrome);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
  .specs-grid { grid-template-columns: 1fr; }
  .about-grid,
  .solutions-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .roadmap-orbit { grid-template-columns: 1fr; }
  .roadmap-orbit::before,
  .roadmap-orbit::after { display: none; }
}

@media (max-width: 768px) {
  .main-header {
    padding: 16px 24px;
    flex-direction: column;
    gap: 16px;
  }
  .main-nav { gap: 20px; }
  .hero { 
    padding: 140px 40px 60px; 
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-stats { 
    flex-direction: column; 
    gap: 24px; 
  }
  .stat-divider { display: none; }
  .hero-cta { flex-direction: column; }
  .section-tech-specs,
  .panel { padding: 80px 24px; }
  .waitlist-form { flex-direction: column; }
  .cta-links { flex-direction: column; gap: 12px; }
  .cta-divider { display: none; }
  .footer-container { flex-direction: column; gap: 40px; }
  .footer-nav { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
