/**
 * CUE Hosting - Unconventional Design System
 * Breaking all the rules
 */

/* ========================================
   CSS VARIABLES & ROOT
======================================== */
:root {
  /* Dark palette with accent pops */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a25;

  /* Accent colors */
  --accent-primary: #00ff88;
  --accent-secondary: #0088ff;
  --accent-tertiary: #ff4444;
  --accent-warm: #ff8844;

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-tertiary: rgba(255, 255, 255, 0.4);

  /* Fonts */
  --font-main: "Space Grotesk", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  /* Spacing */
  --nav-width: 80px;
  --section-padding: 120px;
}

/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   CUSTOM CURSOR
======================================== */
.cursor-dot {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
  opacity: 1;
  left: 0;
  top: 0;
  box-shadow: 0 0 20px var(--accent-primary), 0 0 40px var(--accent-primary);
}

.cursor-ring {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(0, 255, 136, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease,
    border-color 0.3s ease;
  left: 0;
  top: 0;
}

/* ========================================
   AMBIENT BACKGROUND
======================================== */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    var(--accent-primary) 0%,
    transparent 70%
  );
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    var(--accent-secondary) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -100px;
  animation-delay: -7s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #6633ff 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -50px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.95);
  }
  75% {
    transform: translate(-50px, -30px) scale(1.05);
  }
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ========================================
   SIDE NAVIGATION
======================================== */
.side-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: var(--nav-width);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-dots {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-contact {
  position: absolute;
  bottom: 30px;
}

.nav-dot {
  position: relative;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.nav-dot:hover span,
.nav-dot.active span {
  background: var(--accent-primary);
  box-shadow: 0 0 20px var(--accent-primary);
}

.nav-dot::before {
  content: attr(data-label);
  position: absolute;
  left: 100%;
  margin-left: 20px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.nav-dot:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.nav-phone-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.nav-phone-icon svg {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.nav-phone-icon:hover {
  background: var(--accent-primary);
}

.nav-phone-icon:hover svg {
  color: var(--bg-primary);
}

/* ========================================
   TOP BAR
======================================== */
.top-bar {
  position: fixed;
  top: 0;
  left: var(--nav-width);
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 999;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.top-logo {
  display: block;
}

.top-logo .nav-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.5);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 8px rgba(0, 255, 136, 0);
  }
}

.top-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-email {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.top-email:hover {
  color: var(--accent-primary);
}

.talk-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.talk-btn:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--bg-primary);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.talk-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: var(--accent-secondary);
  border-color: var(--accent-secondary);
  color: var(--bg-primary);
}

.login-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ========================================
   SECTION COMMON
======================================== */
.section {
  position: relative;
  min-height: 100vh;
  padding: var(--section-padding) 60px var(--section-padding)
    calc(var(--nav-width) + 60px);
}

.section-number {
  position: absolute;
  top: 40px;
  right: 40px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-tertiary);
  letter-spacing: 2px;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
}

/* ========================================
   SECTION 01: OPENING
======================================== */
.opening-section {
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.opening-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  max-width: 1400px;
}

.opening-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.tag-line {
  width: 40px;
  height: 1px;
  background: var(--accent-primary);
}

.tag-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mega-headline {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 32px;
}

.mega-headline .line {
  overflow: hidden;
}

.mega-headline .line span {
  display: inline-block;
}

.mega-headline .highlight {
  color: var(--accent-primary);
  position: relative;
}

.opening-statement {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 48px;
}

.opening-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  background: var(--accent-primary);
  border-radius: 8px;
  color: var(--bg-primary);
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
}

.action-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
}

.action-icon {
  width: 24px;
  height: 24px;
}

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

.action-content {
  display: flex;
  flex-direction: column;
}

.action-label {
  font-size: 14px;
  opacity: 0.8;
}

.action-value {
  font-size: 18px;
  font-weight: 700;
}

.action-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  width: fit-content;
}

.action-secondary:hover {
  color: var(--text-primary);
}

.action-secondary .arrow {
  animation: bounce-down 1.5s infinite;
}

@keyframes bounce-down {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* Opening Right - Terminal & Stats */
.opening-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-terminal {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.terminal-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chrome-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.chrome-dot:nth-child(1) {
  background: #ff5f57;
}
.chrome-dot:nth-child(2) {
  background: #ffbd2e;
}
.chrome-dot:nth-child(3) {
  background: #28ca42;
}

.chrome-title {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-tertiary);
}

.terminal-body {
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 14px;
}

.t-line {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.prompt {
  color: var(--accent-primary);
}

.cmd {
  color: var(--text-primary);
}

.t-line.out {
  padding-left: 24px;
}

.out-text {
  color: var(--text-secondary);
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.floating-stats {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-1 {
  position: absolute;
  top: -40px;
  right: -60px;
}

.stat-2 {
  position: absolute;
  bottom: 40px;
  right: -80px;
}

.stat-3 {
  position: absolute;
  bottom: -20px;
  left: -40px;
}

.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-primary);
}

.stat-unit {
  font-size: 16px;
  color: var(--accent-primary);
}

.stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-left: 8px;
}

/* Scroll Prompt */
.scroll-prompt {
  position: absolute;
  bottom: 40px;
  left: calc(var(--nav-width) + 60px);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-primary), transparent);
  animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  51% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

/* ========================================
   SECTION 02: MANIFESTO
======================================== */
.manifesto-section {
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
}

.manifesto-content {
  width: 100%;
  max-width: 1400px;
}

.manifesto-header {
  margin-bottom: 60px;
}

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

.manifesto-card {
  position: relative;
  padding: 48px;
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.manifesto-card:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-4px);
}

.manifesto-card.featured {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.1) 0%,
    transparent 50%
  );
  border-color: rgba(0, 255, 136, 0.2);
}

.card-index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-primary);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.card-content h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.card-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(0, 255, 136, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.manifesto-card:hover .card-glow {
  opacity: 1;
}

/* ========================================
   SECTION 03: SERVICES
======================================== */
.services-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-header {
  margin-bottom: 60px;
}

.view-all-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent-primary);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  color: #00cc6e;
  letter-spacing: 0.5px;
}

.services-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.panel {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 32px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.panel:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-8px);
}

.panel-number {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-primary);
  margin-bottom: 32px;
  letter-spacing: 2px;
}

.panel-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--accent-primary);
}

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

.panel-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.panel-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.panel-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-features li {
  font-size: 13px;
  color: var(--text-tertiary);
  padding-left: 16px;
  position: relative;
}

.panel-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-size: 10px;
}

.panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(0, 255, 136, 0.05) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.panel:hover .panel-bg {
  opacity: 1;
}

/* Service panel colors */
.panel[data-service="hosting"]:hover {
  border-color: rgba(0, 255, 136, 0.5);
}
.panel[data-service="email"]:hover {
  border-color: rgba(0, 136, 255, 0.5);
}
.panel[data-service="vps"]:hover {
  border-color: rgba(255, 136, 0, 0.5);
}
.panel[data-service="colo"]:hover {
  border-color: rgba(136, 0, 255, 0.5);
}

.panel[data-service="email"] .panel-icon {
  color: var(--accent-secondary);
}
.panel[data-service="vps"] .panel-icon {
  color: var(--accent-warm);
}
.panel[data-service="colo"] .panel-icon {
  color: #8844ff;
}

/* ========================================
   SECTION 04: CUE PANEL
======================================== */
.panel-section {
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
}

.panel-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  width: 100%;
  max-width: 1400px;
}

.showcase-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 24px;
  width: fit-content;
}

.showcase-tagline {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.showcase-desc {
  font-size: 16px;
  color: var(--text-tertiary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  font-size: 24px;
  line-height: 1;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-text strong {
  font-size: 16px;
  font-weight: 600;
}

.feature-text span {
  font-size: 14px;
  color: var(--text-tertiary);
}

/* Browser Mockup */
.showcase-visual {
  position: relative;
}

.browser-mockup {
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.browser-chrome {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chrome-buttons {
  display: flex;
  gap: 8px;
}

.chrome-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.chrome-buttons span:nth-child(1) {
  background: #ff5f57;
}
.chrome-buttons span:nth-child(2) {
  background: #ffbd2e;
}
.chrome-buttons span:nth-child(3) {
  background: #28ca42;
}

.chrome-url {
  margin-left: 24px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lock-icon {
  font-size: 10px;
}

.browser-content {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 400px;
}

.mock-sidebar {
  background: rgba(0, 0, 0, 0.2);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
  transition: all 0.2s ease;
}

.sidebar-item.active {
  background: rgba(0, 255, 136, 0.1);
  color: var(--accent-primary);
}

.item-icon {
  font-size: 10px;
}

.mock-main {
  padding: 24px;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.greeting {
  font-size: 20px;
  font-weight: 600;
}

.status-badge {
  font-size: 12px;
  color: var(--accent-primary);
}

.stats-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.stat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-circle svg {
  width: 60px;
  height: 60px;
}

.circle-value {
  font-size: 14px;
  font-weight: 600;
  margin-top: -48px;
}

.circle-label {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-top: 20px;
}

.sites-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.site-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.site-status.online {
  background: var(--accent-primary);
  box-shadow: 0 0 10px var(--accent-primary);
}

.site-name {
  font-size: 13px;
  flex: 1;
}

.site-tag {
  font-size: 11px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: var(--text-tertiary);
}

/* ========================================
   SECTION 05: DATACENTER
======================================== */
.datacenter-section {
  display: flex;
  align-items: center;
}

.datacenter-content {
  width: 100%;
  max-width: 1200px;
}

.dc-header {
  text-align: center;
  margin-bottom: 60px;
}

.dc-header .section-subtitle strong {
  color: var(--accent-primary);
}

.dc-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.metric {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.metric-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 8px;
}

.metric-unit {
  font-size: 24px;
}

.metric-label {
  font-size: 14px;
  color: var(--text-tertiary);
}

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

.dc-feature {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.dc-feature:hover {
  border-color: rgba(0, 255, 136, 0.2);
}

.dc-feature .feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 12px;
  color: var(--accent-primary);
}

.dc-feature .feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   SECTION 06: CONNECT
======================================== */
.connect-section {
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
}

.connect-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.connect-header {
  margin-bottom: 60px;
}

.mega-connect {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.connect-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
}

.connect-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.connect-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  text-align: left;
  transition: all 0.3s ease;
}

.connect-card:hover {
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
}

.email-card .card-icon {
  background: rgba(0, 136, 255, 0.1);
}

.email-card .card-icon svg {
  color: var(--accent-secondary);
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.card-label {
  font-size: 14px;
  color: var(--text-tertiary);
}

.card-value {
  font-size: 18px;
  font-weight: 600;
}

.card-arrow {
  font-size: 20px;
  color: var(--text-tertiary);
  transition: all 0.3s ease;
}

.connect-card:hover .card-arrow {
  color: var(--accent-primary);
  transform: translateX(4px);
}

.connect-promise {
  padding: 32px;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.1);
  border-radius: 12px;
}

.connect-promise p {
  font-size: 16px;
  color: var(--text-secondary);
  font-style: italic;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  padding: 60px 60px 60px calc(var(--nav-width) + 60px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

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

.footer-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-tertiary);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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

.footer-legal {
  font-size: 12px;
  color: var(--text-tertiary);
}

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

  .dc-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --nav-width: 60px;
    --section-padding: 80px;
  }

  .opening-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .opening-right {
    order: -1;
  }

  .floating-stats {
    display: none;
  }

  .manifesto-cards {
    grid-template-columns: 1fr;
  }

  .panel-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dc-features {
    grid-template-columns: 1fr;
  }

  .connect-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .side-nav {
    display: none;
  }

  .top-bar {
    left: 0;
    padding: 0 20px;
  }

  .section {
    padding: 100px 20px;
  }

  .scroll-prompt {
    left: 20px;
  }

  .mega-headline {
    font-size: 40px;
  }

  .services-panels {
    grid-template-columns: 1fr;
  }

  .dc-metrics {
    grid-template-columns: 1fr;
  }

  .browser-content {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }

  .site-footer {
    padding: 40px 20px;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body {
    cursor: auto;
  }
}

@media (max-width: 480px) {
  .top-bar {
    display: none;
  }

  .mega-headline {
    font-size: 32px;
  }

  .action-primary {
    width: 100%;
    justify-content: center;
  }

  .manifesto-card {
    padding: 32px 24px;
  }

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