/* ==========================================================================
   EXPERIMENTAL DATA-ART STYLESHEET
   Merges portfolio_experimental aesthetic with CWF brand identity
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Syncopate:wght@400;700&family=Rajdhani:wght@300;400;500;600;700&family=Kanit:wght@100;200;300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&family=Oxanium:wght@200;300;400;500;600;700;800&family=Tektur:wght@400;500;600;700;800;900&family=Tomorrow:wght@100;200;300;400;500;600;700;800;900&family=Syne:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&display=swap');

* {
  cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23cfd8f0" stroke-width="2"><circle cx="10" cy="10" r="7"/><line x1="15" y1="15" x2="21" y2="21"/></svg>') 10 10, auto;
}

:root {
  /* CWF Brand Colors - Primary */
  --void: #030712;
  --smoke: #0d1424;
  --ash: #1a2235;
  --stone: #3d4a5c;
  --mist: #8a94a8;
  --cloud: #cfd8f0;
  --light: #f6f8ff;
  --white: #ffffff;

  /* CWF Brand Accents */
  --electric: #7ff5ff;
  --electric-dim: #5ad4de;
  --plasma: #f6ad55;
  --plasma-dim: #d4924a;
  --solar: #ffd666;
  --cosmic: #a8e6ff;
  --void-purple: #8b5cf6;
  --success: #44ffb2;

  /* Glow Effects */
  --glow-electric: 0 0 30px rgba(127, 245, 255, 0.5);
  --glow-plasma: 0 0 30px rgba(246, 173, 85, 0.5);
  --glow-purple: 0 0 30px rgba(139, 92, 246, 0.5);

  /* Typography - Original experimental fonts */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Mono', monospace;
  --font-mono: 'Space Mono', monospace;
  --font-editorial: 'Fraunces', serif;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

.experimental-page {
  font-family: var(--font-mono);
  background: var(--void);
  color: var(--light);
  overflow-x: hidden;
  cursor: crosshair;
}

.experimental-page ::-webkit-scrollbar {
  width: 2px;
}

.experimental-page ::-webkit-scrollbar-track {
  background: var(--void);
}

.experimental-page ::-webkit-scrollbar-thumb {
  background: var(--electric);
}

/* ==========================================================================
   SECTION 1: HERO WITH VIDEO
   ========================================================================== */

.hero-section-exp {
  min-height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 60px 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1400px;
  width: 100%;
}

.hero-video-wrap {
  position: relative;
}

.hero-video-exp {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.95), rgba(35, 35, 35, 0.9));
  isolation: isolate;
  aspect-ratio: 5 / 6;
}

.hero-video-exp video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-glow-exp {
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle at center, rgba(127, 245, 255, 0.25), rgba(0, 0, 0, 0));
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.hero-copy-exp {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow-exp {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--electric);
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.eyebrow-item {
  display: inline-block;
  transition: all 0.4s ease;
  padding: 0 0.3em;
  white-space: nowrap;
  color: var(--electric);
  text-decoration: none;
}

.eyebrow-item:hover {
  font-size: 22px;
  text-shadow: 0 0 20px var(--electric);
  padding: 0 0.5em;
  color: var(--electric);
}

.headline-exp {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7.8vw, 6.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  min-height: 3.5em;
}

.headline-exp .scramble-char {
  display: inline-block;
  width: 0.6em;
  text-align: center;
}

.headline-exp .scramble-char {
  color: var(--electric);
  text-shadow: 0 0 10px var(--electric);
}

.lead-exp {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.4vw, 1.3rem);
  line-height: 1.7;
  color: var(--cloud);
  max-width: 540px;
  margin-top: -2.5rem;
  margin-left: 2rem;
}

.lead-exp .reveal-word {
  cursor: default;
  transition: color 0.2s ease;
}

.hero-actions-exp {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.cta-primary-exp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  background: transparent;
  color: transparent;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--ash);
  -webkit-text-stroke: 1px var(--ash);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-primary-exp::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-text-stroke: 0;
  background: linear-gradient(180deg,
    #7ff5ff 0%,
    #00ccff 25%,
    #ff0066 60%,
    #ffcc00 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  animation: waveFlow 6s ease-in-out infinite;
  animation-delay: 3.5s;
  white-space: nowrap;
}

.cta-primary-exp:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--electric);
  box-shadow: 0 0 30px rgba(127, 245, 255, 0.3);
}

.cta-primary-exp:hover::before {
  animation: waveFlowFast 2s ease-in-out infinite;
}

.cta-secondary-exp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  background: transparent;
  color: transparent;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  text-decoration: none;
  border: 1px solid var(--ash);
  border-radius: 999px;
  -webkit-text-stroke: 1px var(--ash);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-secondary-exp::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-text-stroke: 0;
  background: linear-gradient(180deg,
    #7ff5ff 0%,
    #00ccff 25%,
    #ff0066 60%,
    #ffcc00 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  animation: waveFlow 6s ease-in-out infinite;
  animation-delay: 4.0s;
  white-space: nowrap;
}

.cta-secondary-exp:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--electric);
  box-shadow: 0 0 30px rgba(127, 245, 255, 0.3);
}

.cta-secondary-exp:hover::before {
  animation: waveFlowFast 2s ease-in-out infinite;
}

/* Legacy landscape styles (kept for reference) */
.landscape-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landscape-text {
  font-family: var(--font-editorial);
  font-size: clamp(40vw, 60vw, 70vw);
  font-weight: 100;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--ash);
  position: relative;
  user-select: none;
}

.landscape-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-text-stroke: 0;
  background: linear-gradient(180deg,
    var(--electric) 0%,
    var(--cosmic) 30%,
    var(--plasma) 70%,
    var(--solar) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  animation: liquidFill 8s ease-in-out infinite alternate;
}

@keyframes liquidFill {
  0% { clip-path: polygon(0 85%, 100% 80%, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 15%, 100% 20%, 100% 100%, 0 100%); }
}

.landscape-label {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--mist);
  font-family: var(--font-mono);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--stone);
  font-family: var(--font-mono);
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--electric), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Floating particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--electric);
  border-radius: 50%;
  opacity: 0.6;
  animation: drift 20s linear infinite;
}

@keyframes drift {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ==========================================================================
   SECTION 2: DATA VIZ - Waveform + Clock Side by Side
   ========================================================================== */

.data-viz-section {
  padding: 100px 60px 60px;
  margin-top: 80px;
  background: linear-gradient(180deg, var(--void) 0%, var(--smoke) 100%);
}

.data-viz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.waveform-panel {
  padding-right: 20px;
}

.clock-panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Smaller clock for side-by-side layout */
.clock-container-small {
  position: relative;
  width: 500px;
  height: 500px;
}

.clock-container-small .clock-ring-1 { width: 140px; height: 140px; }
.clock-container-small .clock-ring-2 { width: 260px; height: 260px; }
.clock-container-small .clock-ring-3 { width: 380px; height: 380px; }
.clock-container-small .clock-ring-4 { width: 480px; height: 480px; }

.clock-container-small .clock-center-value {
  font-size: 56px;
}

.clock-container-small .clock-item {
  width: 150px;
}

.clock-container-small .clock-name {
  font-size: 10px;
}

.clock-container-small .clock-dot {
  width: 11px;
  height: 11px;
}

/* Legacy waveform section (keep for backwards compat) */
.waveform-section {
  min-height: auto;
  padding: 60px 60px;
  position: relative;
  background: linear-gradient(180deg, var(--void) 0%, var(--smoke) 100%);
}

.section-marker {
  position: absolute;
  top: 140px;
  left: 60px;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--stone);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-mono);
  z-index: 1;
}

.waveform-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 40px;
  margin-left: 0;
}

.waveform-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 0;
}

.wave-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.wave-label {
  width: 140px;
  font-size: 11px;
  text-align: right;
  color: var(--mist);
  font-family: var(--font-mono);
}

.wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 80px;
}

.wave-bar {
  width: 8px;
  background: currentColor;
  border-radius: 4px 4px 0 0;
  transition: height 0.3s ease;
}

/* Service-specific colors using CWF palette */
.wave-row.ai .wave-bar { color: var(--electric); }
.wave-row.security .wave-bar { color: var(--plasma); }
.wave-row.forecast .wave-bar { color: var(--cosmic); }
.wave-row.apps .wave-bar { color: var(--void-purple); }
.wave-row.infra .wave-bar { color: var(--success); }

.wave-value {
  font-family: var(--font-editorial);
  font-size: 48px;
  font-weight: 300;
  min-width: 80px;
}

.wave-row.ai .wave-value { color: var(--electric); }
.wave-row.security .wave-value { color: var(--plasma); }
.wave-row.forecast .wave-value { color: var(--cosmic); }
.wave-row.apps .wave-value { color: var(--void-purple); }
.wave-row.infra .wave-value { color: var(--success); }

/* ==========================================================================
   SECTION 3: RADIAL CLOCK
   ========================================================================== */

.clock-section {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  background: var(--smoke);
}

.clock-container {
  position: relative;
  width: 600px;
  height: 600px;
}

.clock-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--ash);
}

.clock-ring-1 { width: 200px; height: 200px; }
.clock-ring-2 { width: 350px; height: 350px; }
.clock-ring-3 { width: 500px; height: 500px; }
.clock-ring-4 { width: 600px; height: 600px; border-color: var(--stone); }

.clock-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.clock-center-value {
  font-family: var(--font-editorial);
  font-size: 72px;
  font-weight: 300;
  color: var(--white);
}

.clock-center-label {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--mist);
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.clock-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  transform-origin: 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.clock-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.clock-dot.primary { background: var(--electric); box-shadow: var(--glow-electric); }
.clock-dot.secondary { background: var(--plasma); box-shadow: var(--glow-plasma); }
.clock-dot.tertiary { background: var(--mist); box-shadow: none; }

.clock-name {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--cloud);
  white-space: nowrap;
  font-family: var(--font-mono);
}

.clock-legend {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--mist);
  font-family: var(--font-mono);
}

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

/* ==========================================================================
   SECTION 4: DENSITY STACK
   ========================================================================== */

.density-section {
  min-height: auto;
  padding: 60px 60px;
  background: linear-gradient(180deg, var(--smoke) 0%, var(--void) 100%);
  position: relative;
}

.density-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 80px;
  text-align: center;
}

.density-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.density-layer {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
}

.density-layer:hover {
  transform: scaleY(1.5);
  z-index: 10;
}

.density-layer span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--void);
  opacity: 0;
  transition: opacity 0.3s ease;
  font-family: var(--font-mono);
}

.density-layer:hover span {
  opacity: 1;
}

.density-layer:nth-child(1) { width: 90%; background: linear-gradient(90deg, var(--electric) 0%, var(--cosmic) 100%); }
.density-layer:nth-child(2) { width: 85%; background: linear-gradient(90deg, var(--cosmic) 0%, var(--electric) 100%); }
.density-layer:nth-child(3) { width: 80%; background: linear-gradient(90deg, var(--plasma) 0%, var(--solar) 100%); }
.density-layer:nth-child(4) { width: 70%; background: var(--plasma); }
.density-layer:nth-child(5) { width: 60%; background: var(--void-purple); }
.density-layer:nth-child(6) { width: 50%; background: var(--success); }
.density-layer:nth-child(7) { width: 40%; background: var(--mist); }

/* ==========================================================================
   SECTION 5: MATRIX GRID
   ========================================================================== */

.matrix-section {
  min-height: auto;
  padding: 60px;
  background: var(--void);
  position: relative;
  overflow: hidden;
}

.matrix-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.4;
  color: var(--electric);
  overflow: hidden;
  word-break: break-all;
}

.matrix-content {
  position: relative;
  z-index: 1;
}

.matrix-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 60px;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 60px;
}

.matrix-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ash);
  padding: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.matrix-cell:hover {
  border-color: var(--electric);
  box-shadow: inset 0 0 30px rgba(127, 245, 255, 0.1);
}

.matrix-cell.active { border-color: var(--electric); background: rgba(127, 245, 255, 0.05); }
.matrix-cell.highlight { border-color: var(--plasma); background: rgba(246, 173, 85, 0.05); }
.matrix-cell.subtle { border-color: var(--stone); }

.matrix-cell-index {
  font-size: 24px;
  font-family: var(--font-editorial);
  font-weight: 300;
  margin-bottom: 8px;
}

.matrix-cell.active .matrix-cell-index { color: var(--electric); }
.matrix-cell.highlight .matrix-cell-index { color: var(--plasma); }
.matrix-cell.subtle .matrix-cell-index { color: var(--stone); }

.matrix-cell-name {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mist);
  text-align: center;
  line-height: 1.4;
  font-family: var(--font-mono);
}

.matrix-cell-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.matrix-cell-indicator.ai { background: var(--electric); }
.matrix-cell-indicator.security { background: var(--plasma); }
.matrix-cell-indicator.forecast { background: var(--cosmic); }
.matrix-cell-indicator.apps { background: var(--void-purple); }

/* ==========================================================================
   SECTION 6: TERRITORY MAP
   ========================================================================== */

.territory-section {
  min-height: auto;
  padding: 60px;
  background: var(--smoke);
  display: flex;
  align-items: center;
  justify-content: center;
}

.territory-map {
  width: min(800px, 90vw);
  height: 500px;
  position: relative;
  border: 1px solid var(--ash);
}

.territory-zone {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.territory-zone:hover {
  z-index: 10;
}

.territory-zone.zone-primary {
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, rgba(127, 245, 255, 0.15) 0%, rgba(127, 245, 255, 0.05) 100%);
  border-right: 2px solid var(--electric);
}

.territory-zone.zone-secondary {
  top: 0;
  left: 45%;
  width: 25%;
  height: 100%;
  background: linear-gradient(135deg, rgba(246, 173, 85, 0.15) 0%, rgba(246, 173, 85, 0.05) 100%);
  border-right: 2px solid var(--plasma);
}

.territory-zone.zone-tertiary {
  top: 0;
  left: 70%;
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, rgba(138, 148, 168, 0.1) 0%, rgba(138, 148, 168, 0.02) 100%);
}

.territory-zone:hover.zone-primary { background: rgba(127, 245, 255, 0.2); }
.territory-zone:hover.zone-secondary { background: rgba(246, 173, 85, 0.2); }
.territory-zone:hover.zone-tertiary { background: rgba(138, 148, 168, 0.15); }

.territory-value {
  font-family: var(--font-editorial);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  line-height: 1;
}

.territory-zone.zone-primary .territory-value { color: var(--electric); }
.territory-zone.zone-secondary .territory-value { color: var(--plasma); }
.territory-zone.zone-tertiary .territory-value { color: var(--mist); }

.territory-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 12px;
  font-family: var(--font-mono);
}

.territory-percent {
  font-size: 12px;
  color: var(--stone);
  margin-top: 4px;
  font-family: var(--font-mono);
}

.territory-list {
  font-size: 10px;
  color: var(--stone);
  line-height: 1.8;
  margin-top: 24px;
  font-family: var(--font-mono);
}

/* ==========================================================================
   SECTION 7: KINETIC TYPOGRAPHY
   ========================================================================== */

.typo-section {
  min-height: auto;
  padding: 60px 0;
  background: var(--void);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.typo-line {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}

.typo-line-1 {
  font-size: 15vw;
  color: transparent;
  -webkit-text-stroke: 1px var(--ash);
  animation: slideRight 30s linear infinite;
}

.typo-line-2 {
  font-size: 8vw;
  color: var(--electric);
  margin-left: -200px;
  animation: slideLeft 25s linear infinite;
}

.typo-line-3 {
  font-size: 12vw;
  color: transparent;
  -webkit-text-stroke: 1px var(--plasma);
  animation: slideRight 35s linear infinite;
}

.typo-line-4 {
  font-size: 6vw;
  color: var(--solar);
  margin-left: 200px;
  animation: slideLeft 20s linear infinite;
}

.typo-line-5 {
  font-size: 10vw;
  color: transparent;
  -webkit-text-stroke: 1px var(--cosmic);
  animation: slideRight 28s linear infinite;
}

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

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

/* ==========================================================================
   SECTION 8: SERVICE CARDS
   ========================================================================== */

.cards-section {
  padding: 80px;
  background: var(--smoke);
}

.cards-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 60px;
}

.cards-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 40px;
  scroll-snap-type: x mandatory;
}

.service-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--void);
  border: 1px solid var(--ash);
  padding: 32px;
  scroll-snap-align: start;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.service-card.ai::before { background: var(--electric); }
.service-card.security::before { background: var(--plasma); }
.service-card.forecast::before { background: var(--cosmic); }
.service-card.apps::before { background: var(--void-purple); }

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--stone);
}

.card-number {
  font-family: var(--font-editorial);
  font-size: 64px;
  font-weight: 300;
  color: var(--ash);
  line-height: 1;
  margin-bottom: 16px;
}

.card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 12px;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 24px;
  font-family: var(--font-body);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.card-tag {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid currentColor;
  font-family: var(--font-mono);
}

.card-tag.ai { color: var(--electric); }
.card-tag.security { color: var(--plasma); }
.card-tag.forecast { color: var(--cosmic); }
.card-tag.apps { color: var(--void-purple); }

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--ash);
  font-family: var(--font-mono);
}

.card-status {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-status.active { color: var(--electric); }
.card-status.coming { color: var(--plasma); }

.card-cta {
  font-size: 10px;
  color: var(--mist);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.experimental-footer {
  padding: 60px 80px;
  background: var(--void);
  border-top: 1px solid var(--ash);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 2px;
  font-family: var(--font-mono);
}

.footer-center {
  font-family: var(--font-editorial);
  font-size: 24px;
  font-style: italic;
  color: var(--mist);
}

.footer-right {
  font-size: 10px;
  color: var(--stone);
  font-family: var(--font-mono);
}

/* ==========================================================================
   EXPERIMENTAL NAV
   ========================================================================== */

.experimental-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--void);
}

.experimental-nav .logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
}

.experimental-nav .logo-animated {
  font-family: 'Rajdhani', sans-serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1px var(--ash);
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  line-height: 1;
}

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

.experimental-nav .logo-image img {
  height: 60px;
  width: auto;
}

.experimental-nav .logo-animated::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-text-stroke: 0;
  background: linear-gradient(180deg,
    #7ff5ff 0%,
    #00ccff 25%,
    #ff0066 60%,
    #ffcc00 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  animation: waveFlow 6s ease-in-out infinite;
  animation-delay: 0s;
}

@keyframes logoFill {
  0% { clip-path: polygon(0 85%, 100% 80%, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 15%, 100% 20%, 100% 100%, 0 100%); }
}

.experimental-nav .logo-animated:hover::before {
  animation: logoFillFast 2s ease-in-out infinite alternate;
}

@keyframes logoFillFast {
  0% { clip-path: polygon(0 90%, 100% 85%, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 5%, 100% 10%, 100% 100%, 0 100%); }
}

.experimental-nav .nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.experimental-nav .nav-links a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--ash);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: lowercase;
}

.experimental-nav .nav-links a::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-text-stroke: 0;
  background: linear-gradient(180deg,
    #7ff5ff 0%,
    #00ccff 25%,
    #ff0066 60%,
    #ffcc00 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  animation: waveFlow 6s ease-in-out infinite;
}

/* Staggered wave delays - flows left to right across nav */
.experimental-nav .nav-links li:nth-child(1) a::before { animation-delay: 0.5s; }
.experimental-nav .nav-links li:nth-child(2) a::before { animation-delay: 1.0s; }
.experimental-nav .nav-links li:nth-child(3) a::before { animation-delay: 1.5s; }
.experimental-nav .nav-links li:nth-child(4) a::before { animation-delay: 2.0s; }
.experimental-nav .nav-links li:nth-child(5) a::before { animation-delay: 2.5s; }
.experimental-nav .nav-links li:nth-child(6) a::before { animation-delay: 3.0s; }

.experimental-nav .nav-links a:hover::before {
  animation: waveFlowFast 2s ease-in-out infinite;
}

/* Main wave animation - rises then falls */
@keyframes waveFlow {
  0% { clip-path: polygon(0 85%, 100% 90%, 100% 100%, 0 100%); }
  50% { clip-path: polygon(0 10%, 100% 15%, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 85%, 100% 90%, 100% 100%, 0 100%); }
}

@keyframes waveFlowFast {
  0% { clip-path: polygon(0 90%, 100% 85%, 100% 100%, 0 100%); }
  50% { clip-path: polygon(0 5%, 100% 10%, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 90%, 100% 85%, 100% 100%, 0 100%); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-section-exp {
    padding: 100px 40px 60px;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .hero-video-exp {
    max-width: 380px;
  }

  .data-viz-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .clock-container-small {
    width: 350px;
    height: 350px;
  }

  .waveform-section,
  .matrix-section,
  .cards-section {
    padding: 80px 40px;
  }

  .waveform-container {
    margin-left: 0;
  }

  .clock-container {
    width: 400px;
    height: 400px;
  }

  .clock-ring-1 { width: 140px; height: 140px; }
  .clock-ring-2 { width: 240px; height: 240px; }
  .clock-ring-3 { width: 340px; height: 340px; }
  .clock-ring-4 { width: 400px; height: 400px; }

  .territory-map {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-section-exp {
    padding: 100px 20px 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-video-wrap {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .hero-video-exp {
    max-width: 300px;
    aspect-ratio: 4 / 5;
  }

  .hero-copy-exp {
    align-items: center;
  }

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

  .hero-actions-exp {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .cta-primary-exp,
  .cta-secondary-exp {
    justify-content: center;
    width: 100%;
  }

  .landscape-text {
    font-size: 50vw;
  }

  .waveform-section {
    padding: 60px 20px;
  }

  .waveform-container {
    margin-left: 0;
  }

  .wave-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .wave-label {
    width: 100%;
    text-align: left;
  }

  .section-marker {
    display: none;
  }

  .clock-section {
    padding: 40px 20px;
  }

  .clock-container {
    width: 300px;
    height: 300px;
  }

  .territory-map {
    flex-direction: column;
    height: auto;
  }

  .territory-zone {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    border-right: none !important;
    border-bottom: 2px solid var(--ash);
    padding: 40px 20px;
  }

  .typo-line {
    font-size: 20vw !important;
  }

  .experimental-nav {
    padding: 16px 20px;
  }

  .experimental-nav .nav-links {
    display: none;
  }

  .cards-scroll {
    padding-left: 20px;
  }

  .service-card {
    width: 280px;
  }

  .experimental-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 40px 20px;
  }
}
