:root {
  --ed-bg: #060816;
  --ed-bg2: #0d1630;
  --ed-cyan: #5ef2ff;
  --ed-blue: #4c7dff;
  --ed-violet: #9f63ff;
  --ed-magenta: #ff4d9d;
  --ed-gold: #ffd76b;
  --ed-text: #eef6ff;
  --ed-muted: #9bb3d3;
  --ed-border: rgba(255,255,255,0.16);
  --ed-shadow: 0 20px 80px rgba(0,0,0,0.45);
}

.ed-bandwidth,
.ed-bandwidth * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ed-bandwidth {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(94,242,255,0.16), transparent 25%),
    radial-gradient(circle at 85% 15%, rgba(159,99,255,0.18), transparent 25%),
    radial-gradient(circle at 50% 80%, rgba(255,77,157,0.14), transparent 30%),
    linear-gradient(180deg, var(--ed-bg), var(--ed-bg2));
  color: var(--ed-text);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

.ed-bandwidth a {
  color: inherit;
  text-decoration: none;
}

.ed-bandwidth::before,
.ed-bandwidth::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ed-bandwidth::before {
  z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.32;
  transform: perspective(1000px) rotateX(75deg) translateY(28vh) scale(2.2);
  transform-origin: center center;
}

.ed-bandwidth::after {
  z-index: -1;
  background: radial-gradient(circle at center, transparent 45%, rgba(0,0,0,0.55));
}

.ed-noise,
.ed-orbs,
.ed-scanlines,
.ed-mouse-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ed-noise {
  opacity: 0.035;
  z-index: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="1.15" numOctaves="2" stitchTiles="stitch"/></filter><rect width="160" height="160" filter="url(%23n)" opacity="1"/></svg>');
}

.ed-scanlines {
  z-index: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(255,255,255,0) 2px);
  background-size: 100% 4px;
  opacity: 0.12;
  animation: edDrift 12s linear infinite;
}

.ed-orbs {
  z-index: 0;
}

.ed-orbs::before,
.ed-orbs::after {
  content: "";
  position: absolute;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.20;
  animation: edFloatOrb 14s ease-in-out infinite alternate;
}

.ed-orbs::before {
  top: -10vw;
  left: -8vw;
  background: var(--ed-cyan);
}

.ed-orbs::after {
  right: -12vw;
  bottom: -15vw;
  background: var(--ed-magenta);
  animation-duration: 18s;
}

.ed-mouse-glow {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,242,255,0.14), rgba(94,242,255,0.03) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  mix-blend-mode: screen;
  filter: blur(8px);
  left: 50%;
  top: 50%;
}

.ed-page {
  position: relative;
  z-index: 2;
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.ed-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  position: sticky;
  top: 16px;
  z-index: 20;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8, 12, 26, 0.45);
  border: 1px solid var(--ed-border);
  border-radius: 999px;
  box-shadow: var(--ed-shadow);
}

.ed-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.ed-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  position: relative;
  background: linear-gradient(135deg, rgba(94,242,255,0.2), rgba(159,99,255,0.22));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 0 25px rgba(255,255,255,0.08), 0 0 32px rgba(94,242,255,0.18);
  overflow: hidden;
}

.ed-brand-mark::before,
.ed-brand-mark::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, var(--ed-cyan), var(--ed-violet), var(--ed-magenta));
}

.ed-brand-mark::before {
  width: 28px;
  height: 8px;
  left: 8px;
  top: 10px;
  border-radius: 999px;
  transform: skewX(-35deg);
}

.ed-brand-mark::after {
  width: 18px;
  height: 18px;
  right: 7px;
  bottom: 8px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.ed-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ed-nav a,
.ed-button,
.ed-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.05);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  font-weight: 600;
  cursor: pointer;
  color: var(--ed-text);
}

.ed-nav a:hover,
.ed-ghost:hover,
.ed-button:hover {
  transform: translateY(-2px);
}

.ed-nav a:hover,
.ed-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.ed-button {
  background: linear-gradient(90deg, var(--ed-cyan), var(--ed-blue), var(--ed-violet), var(--ed-magenta));
  background-size: 220% 100%;
  color: #06101f;
  font-weight: 900;
  box-shadow: 0 12px 40px rgba(94,242,255,0.28);
  animation: edHueShift 7s linear infinite;
}

.ed-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.ed-hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 46px 0 18px;
}

.ed-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--ed-cyan);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.ed-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ed-cyan);
  box-shadow: 0 0 16px var(--ed-cyan);
}

.ed-bandwidth h1 {
  margin: 18px 0 18px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.ed-gradient-text {
  background: linear-gradient(90deg, #ffffff, var(--ed-cyan), #ffffff, var(--ed-gold), #ffffff, var(--ed-magenta));
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: edHueShift 8s linear infinite;
}

.ed-lead {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.7;
  color: var(--ed-muted);
  margin-bottom: 26px;
}

.ed-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.ed-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
}

.ed-stat {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 24px;
  border: 1px solid var(--ed-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--ed-shadow);
}

.ed-label {
  color: var(--ed-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.ed-stat strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1;
  margin-bottom: 8px;
}

.ed-stat span {
  color: var(--ed-muted);
  font-size: 0.95rem;
}

.ed-hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.ed-core {
  position: relative;
  width: min(470px, 88vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.25), rgba(255,255,255,0.04) 22%, rgba(94,242,255,0.1) 35%, transparent 58%),
    linear-gradient(135deg, rgba(94,242,255,0.16), rgba(159,99,255,0.08), rgba(255,77,157,0.15));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 0 50px rgba(255,255,255,0.08), 0 0 50px rgba(94,242,255,0.12), 0 0 120px rgba(159,99,255,0.12);
}

.ed-ring,
.ed-halo,
.ed-crosshair,
.ed-engine-glyph,
.ed-engine-center,
.ed-engine-blade {
  position: absolute;
}

.ed-ring {
  border-radius: 50%;
}

.ed-ring-a {
  inset: 10%;
  border: 1px solid rgba(94,242,255,0.35);
  border-top-color: transparent;
  border-bottom-color: rgba(159,99,255,0.55);
  animation: edSpin 11s linear infinite;
}

.ed-ring-b {
  inset: 3%;
  border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 50%;
  animation: edSpinReverse 18s linear infinite;
}

.ed-ring-c {
  inset: -7%;
  border: 1px solid rgba(255,215,107,0.22);
  border-radius: 50%;
  animation: edPulse 4s ease-in-out infinite;
}

.ed-halo {
  inset: 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,242,255,0.75), rgba(94,242,255,0.06) 45%, transparent 70%);
  filter: blur(18px);
}

.ed-crosshair {
  inset: 15%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.ed-crosshair::before,
.ed-crosshair::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ed-crosshair::before {
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}

.ed-crosshair::after {
  width: 1px;
  height: 82%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.25), transparent);
}

.ed-engine-glyph {
  width: 42%;
  height: 42%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: edSpin 9s linear infinite;
}

.ed-engine-center {
  width: 26%;
  height: 26%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, rgba(255,255,255,0.3) 45%, rgba(94,242,255,0.15) 70%, transparent 100%);
  box-shadow: 0 0 25px rgba(94,242,255,0.45);
}

.ed-engine-blade {
  width: 20%;
  height: 42%;
  left: 50%;
  top: 50%;
  margin-left: -10%;
  margin-top: -21%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ed-cyan), var(--ed-violet), var(--ed-magenta));
  transform-origin: 50% 80%;
  opacity: 0.9;
  box-shadow: 0 0 14px rgba(94,242,255,0.25);
}

.ed-engine-blade-1 { transform: rotate(0deg); }
.ed-engine-blade-2 { transform: rotate(90deg); }
.ed-engine-blade-3 { transform: rotate(180deg); }
.ed-engine-blade-4 { transform: rotate(270deg); }

.ed-floating-panel {
  position: absolute;
  min-width: 230px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  box-shadow: var(--ed-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ed-panel-a { left: -4%; top: 18%; }
.ed-panel-b { right: -2%; top: 22%; }
.ed-panel-c { left: 8%; bottom: 6%; }

.ed-floating-panel h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ed-cyan);
}

.ed-floating-panel p {
  margin: 0;
  color: var(--ed-muted);
  line-height: 1.5;
  font-size: 0.96rem;
}

.ed-bar {
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  margin-top: 14px;
}

.ed-bar span {
  display: block;
  height: 100%;
  width: 10%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ed-cyan), var(--ed-violet), var(--ed-magenta));
  box-shadow: 0 0 20px rgba(94,242,255,0.3);
  transition: width 0.35s ease;
}

.ed-ticker-wrap {
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 14px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ed-ticker {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: edMarquee 24s linear infinite;
  padding-left: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.86);
}

.ed-ticker span {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ed-ticker span::before {
  content: "✦";
  color: var(--ed-gold);
}

.ed-section {
  padding: 80px 0 20px;
}

.ed-section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.ed-bandwidth h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.ed-section-copy {
  margin: 0;
  color: var(--ed-muted);
  max-width: 640px;
  line-height: 1.7;
}

.ed-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.ed-card {
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  box-shadow: var(--ed-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 22px;
  min-height: 220px;
}

.ed-span-5 { grid-column: span 5; }
.ed-span-7 { grid-column: span 7; }

.ed-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.ed-card p {
  margin: 0;
  color: var(--ed-muted);
  line-height: 1.7;
}

.ed-mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ed-mini-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.88rem;
  color: #d8e8ff;
}

.ed-console {
  margin-top: 16px;
  border-radius: 20px;
  background: rgba(4, 8, 20, 0.62);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.93rem;
  color: #dffcff;
  line-height: 1.7;
  max-height: 380px;
  overflow: auto;
}

.ed-prompt { color: var(--ed-gold); }

.ed-bandwidth code {
  color: var(--ed-gold);
}

@keyframes edHueShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes edDrift {
  from { transform: translateY(0); }
  to { transform: translateY(16px); }
}

@keyframes edFloatOrb {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(4vw, 3vh, 0) scale(1.15); }
}

@keyframes edSpin {
  to { transform: rotate(360deg); }
}

@keyframes edSpinReverse {
  to { transform: rotate(-360deg); }
}

@keyframes edPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes edMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1150px) {
  .ed-hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .ed-hero-visual {
    order: -1;
    min-height: 540px;
  }
}

@media (max-width: 900px) {
  .ed-grid {
    grid-template-columns: 1fr;
  }

  .ed-span-5,
  .ed-span-7 {
    grid-column: auto;
  }

  .ed-stat-row {
    grid-template-columns: 1fr;
  }

  .ed-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .ed-page {
    width: min(100% - 18px, 1400px);
  }

  .ed-topbar {
    top: 10px;
    border-radius: 28px;
    padding: 16px;
  }

  .ed-hero {
    min-height: unset;
  }

  .ed-hero-visual {
    min-height: 440px;
  }

  .ed-core {
    width: 100%;
    max-width: 360px;
  }

  .ed-floating-panel {
    min-width: unset;
    max-width: 60vw;
    padding: 12px;
    border-radius: 18px;
  }
}

.ed-spectrum-card {
  margin-top: 20px;
  padding: 18px 10px 6px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  overflow: hidden;
}

.ed-spectrum {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 150px;
  width: 100%;
}

.ed-spectrum-bar {
  flex: 1;
  min-width: 18px;
  height: 28%;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.95) 0%,
    rgba(200,230,240,0.88) 18%,
    rgba(50,105,130,0.92) 58%,
    rgba(20,30,55,0.92) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 12px 24px rgba(0,0,0,0.18);
  transition: height 0.25s ease;
}

.ed-spectrum-bar:nth-child(1) { height: 26%; }
.ed-spectrum-bar:nth-child(2) { height: 38%; }
.ed-spectrum-bar:nth-child(3) { height: 56%; }
.ed-spectrum-bar:nth-child(4) { height: 74%; }
.ed-spectrum-bar:nth-child(5) { height: 92%; }
.ed-spectrum-bar:nth-child(6) { height: 92%; }
.ed-spectrum-bar:nth-child(7) { height: 90%; }

.ed-spectrum-card.is-active .ed-spectrum-bar {
  animation: edSpectrumBounce 1.35s ease-in-out infinite;
}

.ed-spectrum-card.is-active .ed-spectrum-bar:nth-child(1) { animation-delay: 0.00s; }
.ed-spectrum-card.is-active .ed-spectrum-bar:nth-child(2) { animation-delay: 0.10s; }
.ed-spectrum-card.is-active .ed-spectrum-bar:nth-child(3) { animation-delay: 0.20s; }
.ed-spectrum-card.is-active .ed-spectrum-bar:nth-child(4) { animation-delay: 0.30s; }
.ed-spectrum-card.is-active .ed-spectrum-bar:nth-child(5) { animation-delay: 0.40s; }
.ed-spectrum-card.is-active .ed-spectrum-bar:nth-child(6) { animation-delay: 0.50s; }
.ed-spectrum-card.is-active .ed-spectrum-bar:nth-child(7) { animation-delay: 0.60s; }

@keyframes edSpectrumBounce {
  0%, 100% { height: 22%; }
  20% { height: 48%; }
  40% { height: 82%; }
  60% { height: 58%; }
  80% { height: 96%; }
}

@media (max-width: 640px) {
  .ed-spectrum {
    gap: 8px;
    height: 120px;
  }

  .ed-spectrum-bar {
    min-width: 12px;
  }
}

html,
body {
  margin: 0;
  background: #060816 !important;
  background-color: #060816 !important;
}

html {
  min-height: 100%;
}

body.ed-bandwidth {
  min-height: 100dvh;
  background-color: #060816 !important;
}

@media (max-width: 768px) {
  .ed-topbar {
    position: relative !important;
    top: auto !important;
  }
}

