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

body {
  overflow: hidden;
  background: #000;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #fff;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

/* ── Loading ── */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #050510;
  color: #4af;
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1000;
  transition: opacity 0.8s;
}

#loading.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── Progress Bar ── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: #fff;
  z-index: 200;
  transition: width 0.6s ease;
  width: 0%;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

.nav-logo img {
  height: 20px;
  width: auto;
  opacity: 1;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5));
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  padding: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.nav-link:hover {
  color: #fff;
}

.nav-link.active {
  color: #fff;
}

.nav-cta {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  background: #44aaff;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-weight: 700;
}

.nav-cta:hover {
  background: #5bbcff;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 16, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.nav-mobile .nav-cta {
  font-size: 0.8rem;
  padding: 14px 28px;
  margin-top: 12px;
}

/* Hide dots — replaced by labels */
.nav-dots {
  display: none;
}

/* ── Section Base ── */
.section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 60px 60px;
}

.section.active {
  opacity: 1;
  pointer-events: auto;
}

.section-content {
  max-width: 520px;
  padding: 32px 36px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Typography ── */
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.section-subtitle {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  margin-top: -4px;
  margin-bottom: 8px;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h3 {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.spacer {
  height: 24px;
}

.spacer-sm {
  height: 14px;
}

.divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 20px 0;
}

/* ── CTA Button ── */
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid rgba(68, 170, 255, 0.3);
  color: #44aaff;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
  border-radius: 4px;
  margin-top: 24px;
}

.cta-btn:hover {
  background: rgba(68, 170, 255, 0.1);
  color: #fff;
  border-color: rgba(68, 170, 255, 0.6);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.hero-ctas .cta-btn {
  margin-top: 0;
}
.hero-subtext {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  max-width: 400px;
  line-height: 1.5;
}

/* ── Pillar / Card Grid ── */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pillar h3 {
  color: #fff;
}

.pillar p {
  font-size: 0.85rem;
}

/* ── Service Cards ── */
.service-card {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-card:last-child {
  border-bottom: none;
}
.service-examples {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  margin-top: 6px;
}
.smart-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 24px;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #44aaff;
  border: 1px solid rgba(68, 170, 255, 0.3);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.smart-cta:hover {
  background: rgba(68, 170, 255, 0.1);
  border-color: rgba(68, 170, 255, 0.6);
  color: #fff;
}

/* ── Process Steps ── */
.process-steps {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 100px;
  text-align: center;
}

.step-num {
  font-family: 'Space Mono', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 8px;
}

.step-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* ── Case Study Cards ── */
.case-card {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.case-card:last-child {
  border-bottom: none;
}
.case-industry {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(68, 170, 255, 0.5);
  margin-bottom: 4px;
}
.case-card h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.case-company {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}
.case-card p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}
.case-result {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: #44aaff;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(68, 170, 255, 0.06);
  border-left: 2px solid rgba(68, 170, 255, 0.4);
  border-radius: 2px;
}

/* ── Tech Grid ── */
.integration-intro {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.integration-card {
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: border-color 0.3s;
}
.integration-card:hover {
  border-color: rgba(68,170,255,0.2);
}
.integration-card h3 {
  font-size: 0.8rem;
  margin-bottom: 4px;
}
.integration-card p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}
.integration-closing {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  font-style: italic;
  margin-bottom: 20px;
}

/* ── Testimonial ── */
.testimonial {
  margin-bottom: 24px;
}

.testimonial blockquote {
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.testimonial cite {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Comparison Table ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.compare-table th {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

.compare-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.compare-table td:last-child {
  color: #fff;
  font-weight: 400;
}

/* ── Contact Form ── */
/* ── Final CTA Section ── */
.final-intro {
  max-width: 520px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.final-intro p + p { margin-top: 14px; }
.final-intro strong { color: rgba(255,255,255,0.85); font-weight: 500; }

.final-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.final-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.final-step-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #44aaff;
  min-width: 20px;
  padding-top: 2px;
}
.final-step-text h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}
.final-step-text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.final-cta-btn {
  display: inline-block;
  background: #44aaff;
  color: #000;
  padding: 16px 36px;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.final-cta-btn:hover {
  background: #5bbcff;
  transform: translateY(-1px);
}

.final-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.final-trust {
  margin-top: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
}

.final-email {
  margin-top: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.final-email a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.final-email a:hover { color: #fff; }

/* ── Sci-Fi Cursor ── */
* { cursor: none !important; }
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: #44aaff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s, box-shadow 0.3s;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(68,170,255,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
}
.cursor-dot.hovering {
  width: 14px; height: 14px;
  background: #44aaff;
  animation: cursorPulse 1s ease-in-out infinite;
}
.cursor-ring.hovering {
  width: 48px; height: 48px;
  border-color: rgba(68,170,255,0.6);
  animation: ringPulse 1s ease-in-out infinite;
}
@keyframes cursorPulse {
  0%, 100% { box-shadow: 0 0 6px #44aaff, 0 0 16px rgba(68,170,255,0.4); transform: translate(-50%,-50%) scale(1); }
  50% { box-shadow: 0 0 12px #44aaff, 0 0 30px rgba(68,170,255,0.6); transform: translate(-50%,-50%) scale(1.3); }
}
@keyframes ringPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}

/* ── Desktop / Large Screens ── */
@media (min-width: 1200px) {
  .section {
    padding: 120px 80px 80px;
  }

  .section-content {
    max-width: 640px;
    padding: 40px 44px;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  p {
    font-size: 1.1rem;
  }

  .section-label {
    font-size: 0.8rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
  }

  .cta-btn {
    font-size: 0.85rem;
    padding: 16px 42px;
  }

  .hero-subtext {
    font-size: 0.8rem;
  }

  .pillar p {
    font-size: 1rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-examples {
    font-size: 0.85rem;
  }

  .smart-cta {
    font-size: 0.85rem;
  }

  .step-num {
    font-size: 1.6rem;
  }

  .step-label {
    font-size: 0.8rem;
  }

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

  .case-card h3 {
    font-size: 1.1rem;
  }

  .case-card p {
    font-size: 0.9rem;
  }

  .case-result {
    font-size: 0.82rem;
  }

  .integration-intro {
    font-size: 1rem;
  }

  .integration-card h3 {
    font-size: 0.92rem;
  }

  .integration-card p {
    font-size: 0.82rem;
  }

  .testimonial blockquote {
    font-size: 1.15rem;
  }

  .testimonial cite {
    font-size: 0.8rem;
  }

  .badge {
    font-size: 0.75rem;
  }

  .compare-table {
    font-size: 1rem;
  }

  .compare-table th {
    font-size: 0.8rem;
  }

  .final-intro {
    font-size: 1.05rem;
  }

  .final-subtitle {
    font-size: 1.2rem;
  }

  .final-step-text h4 {
    font-size: 1rem;
  }

  .final-step-text p {
    font-size: 0.92rem;
  }

  .final-cta-btn {
    font-size: 0.9rem;
    padding: 18px 42px;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .section {
    padding: 80px 20px 40px;
  }

  .section-content {
    max-width: 100%;
    padding: 24px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .process-steps {
    gap: 12px;
  }

  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .integration-card {
    padding: 10px 12px;
  }
  .integration-card h3 {
    font-size: 0.72rem;
    margin-bottom: 2px;
  }
  .integration-card p {
    font-size: 0.65rem;
    line-height: 1.3;
  }

  .trust-badges {
    flex-wrap: wrap;
    gap: 8px;
  }

  .compare-table {
    font-size: 0.75rem;
  }
}

/* ── Footer (inside section-9) ── */
.site-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-teams {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom a {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
  </style>
