:root {
  --bg: #07080d;
  --bg2: #0c0e16;
  --panel: #11141e;
  --panel2: #161a26;
  --text: #f6f7fb;
  --muted: #9ba3b4;
  --line: rgba(255,255,255,.09);
  --accent: #8758ff;
  --accent2: #14d9ff;
  --pink: #ff4fba;
  --green: #65f29f;
  --max: 1240px;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(0,0,0,.35)
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  background: radial-gradient(circle at 80% -10%,rgba(135,88,255,.15),transparent 36%),var(--bg);
  color: var(--text);
  font-family: Inter,system-ui,sans-serif;
  line-height: 1.55;
  overflow-x: hidden
}
a {
  color: inherit;
  text-decoration: none
}
button,input,textarea {
  font: inherit
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E")
}
.section-shell {
  width: min(calc(100% - 40px),var(--max));
  margin-inline: auto
}
.section-pad {
  padding: 110px 0
}
.compact-top {
  padding-top: 55px
}
.site-header {
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px),1320px);
  margin: 0 auto;
  background: rgba(7,8,13,.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  font-family: "Space Grotesk";
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow: 0 0 40px rgba(135,88,255,.35)
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: .9
}
.brand-copy strong {
  font-family: "Space Grotesk";
  letter-spacing: .08em;
  font-size: 17px
}
.brand-copy small {
  font-size: 8px;
  letter-spacing: .28em;
  color: var(--muted);
  margin-top: 7px
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600
}
.site-nav>a:not(.nav-cta) {
  color: #aab0bf;
  transition: .2s
}
.site-nav>a:hover,.site-nav>a.active {
  color: #fff
}
.nav-cta {
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.05)
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: white
}
.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
  padding: 70px 0 90px
}
.eyebrow,.kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 700;
  color: #b8bfce
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px
}
.pulse-dot,.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  box-shadow: 0 0 0 6px rgba(101,242,159,.1)
}
h1,h2,h3 {
  font-family: "Space Grotesk",Inter,sans-serif;
  margin: 0;
  line-height: .98
}
h1 {
  font-size: clamp(58px,7.2vw,108px);
  max-width: 810px;
  letter-spacing: -.055em;
  margin: 25px 0 28px
}
.gradient-text {
  background: linear-gradient(100deg,#fff 5%,#9f79ff 48%,#1be2ff);
  background-clip: text;
  color: transparent
}
.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 650px;
  line-height: 1.7
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  padding: 15px 22px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .25s;
  cursor: pointer
}
.button:hover {
  transform: translateY(-2px)
}
.button.primary {
  background: linear-gradient(110deg,var(--accent),#673cff);
  box-shadow: 0 12px 34px rgba(113,73,255,.25)
}
.button.ghost {
  border-color: var(--line);
  background: rgba(255,255,255,.03)
}
.button.light {
  background: #fff;
  color: #0d0f16
}
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 55px
}
.hero-stats>div {
  display: flex;
  flex-direction: column
}
.hero-stats strong {
  font: 700 26px "Space Grotesk"
}
.hero-stats span {
  font-size: 11px;
  color: #777f91;
  margin-top: 5px
}
.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center
}
.glass-card {
  background: linear-gradient(145deg,rgba(26,29,43,.88),rgba(12,14,22,.82));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px)
}
.deck-card {
  width: min(100%,510px);
  padding: 26px;
  border-radius: 32px;
  position: relative;
  transform: rotate(2deg)
}
.deck-top,.track-line {
  display: flex;
  align-items: center;
  justify-content: space-between
}
.deck-top {
  font: 600 10px "Space Grotesk";
  letter-spacing: .15em;
  color: #9fa6b7
}
.status-pill {
  color: #8df5b4;
  background: rgba(101,242,159,.08);
  border: 1px solid rgba(101,242,159,.2);
  padding: 7px 9px;
  border-radius: 99px
}
.vinyl-wrap {
  height: 330px;
  display: grid;
  place-items: center
}
.vinyl {
  width: 270px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  background: repeating-radial-gradient(circle,#10131b 0 3px,#080910 4px 7px);
  box-shadow: 0 0 0 1px #282d3a,0 40px 80px rgba(0,0,0,.5);
  animation: spin 18s linear infinite
}
.vinyl:after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%
}
.vinyl-label {
  position: absolute;
  inset: 35%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 700 42px "Space Grotesk";
  background: linear-gradient(135deg,var(--accent),var(--pink));
  z-index: 2
}
.waveform {
  height: 44px;
  display: flex;
  gap: 4px;
  align-items: center
}
.waveform i {
  display: block;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(to top,var(--accent),var(--accent2));
  opacity: .8;
  animation: wave 1.3s ease-in-out infinite
}
.track-line {
  border-top: 1px solid var(--line);
  padding-top: 18px
}
.track-line small {
  display: block;
  font-size: 8px;
  letter-spacing: .16em;
  color: #70798d
}
.track-line strong {
  font-size: 12px
}
.round-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: #10121a
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px)
}
.orb-one {
  width: 290px;
  height: 290px;
  background: rgba(135,88,255,.15);
  right: 4%;
  top: 6%
}
.orb-two {
  width: 230px;
  height: 230px;
  background: rgba(20,217,255,.09);
  left: 1%;
  bottom: 8%
}
.ticker {
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255,255,255,.015);
  padding: 17px 0
}
.ticker-track {
  width: max-content;
  display: flex;
  gap: 28px;
  align-items: center;
  animation: ticker 24s linear infinite;
  color: #aab0bf;
  font: 600 11px "Space Grotesk";
  letter-spacing: .18em
}
.ticker-track i {
  color: var(--accent);
  font-style: normal
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px
}
.section-heading h2,.split-copy h2,.spotlight h2,.contact-panel h2,.page-hero h1 {
  font-size: clamp(42px,5vw,72px);
  letter-spacing: -.045em;
  margin-top: 12px
}
.section-heading p {
  color: var(--muted);
  max-width: 460px
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px
}
.feature-card {
  min-height: 340px;
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(160deg,rgba(255,255,255,.045),rgba(255,255,255,.015));
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: .25s
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(135,88,255,.4);
  background: linear-gradient(160deg,rgba(135,88,255,.09),rgba(255,255,255,.02))
}
.feature-number {
  font-size: 10px;
  color: #61697b
}
.feature-icon {
  font-size: 38px;
  margin: auto 0 34px
}
.feature-card h3 {
  font-size: 24px
}
.feature-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7
}
.text-link {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center
}
.split-media {
  position: relative
}
.media-placeholder {
  aspect-ratio: 4/4.6;
  border-radius: 32px;
  background: radial-gradient(circle at 30% 20%,rgba(255,79,186,.24),transparent 35%),radial-gradient(circle at 70% 75%,rgba(20,217,255,.18),transparent 35%),linear-gradient(145deg,#181b27,#0c0f17);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #858da0;
  letter-spacing: .12em;
  font-size: 11px
}
.media-placeholder small {
  letter-spacing: 0;
  margin-top: 8px;
  color: #555d70
}
.floating-badge {
  position: absolute;
  right: -24px;
  bottom: 40px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: linear-gradient(135deg,#fff,#cbd0da);
  color: #11131a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transform: rotate(-8deg);
  box-shadow: 0 24px 70px rgba(0,0,0,.32)
}
.floating-badge strong {
  font: 700 48px "Space Grotesk"
}
.floating-badge span {
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2
}
.split-copy p {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px
}
.check-list {
  columns: 2;
  list-style: none;
  margin: 30px 0;
  padding: 0;
  color: #cbd0dc;
  font-size: 13px
}
.check-list li {
  margin: 0 0 13px
}
.check-list li:before {
  content: "✦";
  color: var(--accent2);
  margin-right: 9px
}
.spotlight {
  border-radius: 34px;
  min-height: 450px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  background: radial-gradient(circle at 80% 30%,rgba(20,217,255,.17),transparent 33%),radial-gradient(circle at 70% 70%,rgba(135,88,255,.22),transparent 38%),linear-gradient(135deg,#171c2a,#0b0e16);
  border: 1px solid var(--line);
  overflow: hidden
}
.spotlight p {
  color: #a7b0c1;
  max-width: 500px
}
.frequency {
  display: flex;
  flex-direction: column;
  align-items: center
}
.frequency small {
  letter-spacing: .4em;
  color: #aab3c6
}
.frequency strong {
  font: 700 clamp(54px,7vw,98px) "Space Grotesk";
  letter-spacing: -.07em
}
.frequency strong span {
  color: var(--accent2)
}
.signal-lines {
  height: 100px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px
}
.signal-lines i {
  width: 8px;
  border-radius: 8px;
  background: linear-gradient(var(--accent2),var(--accent));
  height: var(--h,50px);
  animation: wave 1.4s infinite ease-in-out
}
.signal-lines i:nth-child(1) {
  --h: 28px
}
.signal-lines i:nth-child(2) {
  --h: 52px;
  animation-delay: .1s
}
.signal-lines i:nth-child(3) {
  --h: 86px;
  animation-delay: .2s
}
.signal-lines i:nth-child(4) {
  --h: 64px;
  animation-delay: .3s
}
.signal-lines i:nth-child(5) {
  --h: 92px;
  animation-delay: .4s
}
.signal-lines i:nth-child(6) {
  --h: 48px;
  animation-delay: .5s
}
.signal-lines i:nth-child(7) {
  --h: 32px;
  animation-delay: .6s
}
.contact-panel {
  padding: 55px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #0d1018;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px
}
.contact-panel p {
  color: var(--muted)
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}
.contact-form label {
  font-size: 11px;
  color: #8f97a9
}
.contact-form label span {
  display: block;
  margin-bottom: 8px
}
.contact-form .full {
  grid-column: 1/-1
}
.contact-form input,.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #080a10;
  color: white;
  outline: none
}
.contact-form input:focus,.contact-form textarea:focus {
  border-color: var(--accent)
}
.contact-form button {
  justify-self: start
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 45px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px
}
.footer-brand strong {
  font: 600 12px "Space Grotesk";
  letter-spacing: .06em
}
.footer-brand p {
  margin: 3px 0 0;
  color: #676f80;
  font-size: 10px
}
.footer-links {
  display: flex;
  gap: 20px;
  font-size: 11px;
  color: #929aad
}
.copyright {
  font-size: 10px;
  color: #606878
}
.page-hero {
  padding: 110px 0 65px;
  text-align: center
}
.page-hero p {
  max-width: 670px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px
}
.subnav-card,.content-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012));
  border-radius: 28px
}
.embed-card {
  padding: 18px;
  overflow: hidden
}
.embed-placeholder {
  min-height: 620px;
  border-radius: 19px;
  border: 1px dashed rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  text-align: center;
  color: #737b8e;
  padding: 30px;
  background: rgba(0,0,0,.14)
}
.embed-placeholder code {
  display: block;
  margin-top: 12px;
  color: #b4bbcb
}
.show-grid,.post-grid,.server-grid,.gallery-grid {
  display: grid;
  gap: 16px
}
.show-grid {
  grid-template-columns: repeat(3,1fr)
}
.show-card,.post-card,.server-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0d1018
}
.show-card time,.post-card time {
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--accent2)
}
.show-card h3,.post-card h3 {
  margin: 12px 0 8px;
  font-size: 22px
}
.show-card p,.post-card p {
  color: var(--muted);
  font-size: 13px
}
.post-grid {
  grid-template-columns: 2fr 1fr
}
.post-card.featured {
  grid-row: span 2;
  min-height: 390px
}
.discussion-placeholder {
  padding: 38px;
  text-align: center
}
.gallery-grid {
  grid-template-columns: repeat(12,1fr);
  grid-auto-rows: 110px
}
.gallery-item {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 20% 20%,rgba(135,88,255,.18),transparent 35%),linear-gradient(145deg,#151926,#0b0d14);
  display: flex;
  align-items: end;
  padding: 17px;
  color: #7f8797;
  font-size: 11px
}
.gallery-item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 4
}
.gallery-item:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2
}
.gallery-item:nth-child(3) {
  grid-column: span 5;
  grid-row: span 2
}
.gallery-item:nth-child(4) {
  grid-column: span 4;
  grid-row: span 3
}
.gallery-item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 3
}
.gallery-item:nth-child(6) {
  grid-column: span 4;
  grid-row: span 3
}
.server-grid {
  grid-template-columns: repeat(3,1fr)
}
.server-card .server-status {
  display: flex;
  justify-content: space-between;
  align-items: center
}
.online,.offline {
  padding: 6px 9px;
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em
}
.online {
  background: rgba(101,242,159,.08);
  color: var(--green)
}
.offline {
  background: rgba(255,79,99,.08);
  color: #ff7285
}
.server-card h3 {
  font-size: 23px;
  margin: 24px 0 4px
}
.server-address {
  color: var(--muted);
  font-family: monospace;
  font-size: 12px
}
.server-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px
}
.metric {
  padding: 13px;
  border-radius: 14px;
  background: #080a10;
  border: 1px solid var(--line)
}
.metric small {
  display: block;
  font-size: 9px;
  color: #677083
}
.metric strong {
  font-size: 13px
}
.notice {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(135,88,255,.26);
  background: rgba(135,88,255,.07);
  font-size: 12px;
  color: #c8cde0
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: .75s ease
}
.reveal.visible {
  opacity: 1;
  transform: none
}
.delay-1 {
  transition-delay: .08s
}
.delay-2 {
  transition-delay: .16s
}
.delay-3 {
  transition-delay: .24s
}
@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}
@keyframes wave {
  50% {
    transform: scaleY(.45);
    opacity: .55
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%)
  }
}
@media(max-width:1000px) {
  .site-nav {
    position: fixed;
    inset: 84px 20px auto 20px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #0d1018;
    display: none;
    flex-direction: column;
    align-items: stretch
  }
  .site-nav.open {
    display: flex
  }
  .nav-toggle {
    display: block
  }
  .nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 6px
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 65px
  }
  .hero-visual {
    min-height: 510px
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr
  }
  .split-section,.spotlight,.contact-panel {
    grid-template-columns: 1fr
  }
  .spotlight {
    gap: 40px
  }
  .site-footer {
    grid-template-columns: 1fr
  }
  .show-grid,.server-grid {
    grid-template-columns: 1fr 1fr
  }
  .post-grid {
    grid-template-columns: 1fr
  }
  .post-card.featured {
    grid-row: auto
  }
}
@media(max-width:650px) {
  .section-shell {
    width: min(calc(100% - 26px),var(--max))
  }
  .section-pad {
    padding: 78px 0
  }
  .hero {
    gap: 25px
  }
  .hero h1 {
    font-size: 54px
  }
  .hero-stats {
    gap: 18px;
    flex-wrap: wrap
  }
  .hero-visual {
    min-height: 420px
  }
  .deck-card {
    padding: 18px
  }
  .vinyl-wrap {
    height: 240px
  }
  .vinyl {
    width: 205px
  }
  .section-heading {
    display: block
  }
  .section-heading p {
    margin-top: 18px
  }
  .feature-grid,.show-grid,.server-grid {
    grid-template-columns: 1fr
  }
  .split-section {
    gap: 52px
  }
  .floating-badge {
    right: 10px;
    width: 116px;
    height: 116px
  }
  .spotlight,.contact-panel {
    padding: 30px 22px
  }
  .contact-form {
    grid-template-columns: 1fr
  }
  .contact-form .full {
    grid-column: auto
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 230px
  }
  .gallery-item {
    grid-column: auto!important;
    grid-row: auto!important
  }
  .site-footer {
    padding-bottom: 90px
  }
  .page-hero {
    padding-top: 70px
  }
  .embed-placeholder {
    min-height: 470px
  }
}
