* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  background: #020405;
  color: #d9fff7;
  font-family: Consolas, Monaco, "Courier New", monospace;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.55), rgba(0,0,0,.90)),
    url("ownetwork.png") center center / cover no-repeat fixed;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.035) 0px,
    rgba(255,255,255,.035) 1px,
    transparent 2px,
    transparent 5px
  );
  mix-blend-mode: overlay;
  opacity: .22;
  z-index: 5;
}

.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 65% 55%, rgba(0,210,255,.20), transparent 28%),
    radial-gradient(circle at 24% 50%, rgba(90,255,0,.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(0,255,170,.16), transparent 32%);
  z-index: 2;
}

main {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8vh 6vw;
}

.panel {
  max-width: 640px;
  padding: 28px 32px;
  border: 1px solid rgba(0,255,200,.28);
  background: linear-gradient(135deg, rgba(0,0,0,.78), rgba(0,25,30,.56));
  box-shadow:
    0 0 38px rgba(0,255,200,.18),
    inset 0 0 30px rgba(0,255,200,.04);
  backdrop-filter: blur(5px);
}

.tag {
  color: #65ff3b;
  letter-spacing: .34em;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 0 14px rgba(101,255,59,.7);
}

h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 78px);
  line-height: .9;
  color: #e8ffff;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(0,220,255,.9),
    0 0 38px rgba(0,220,255,.35);
}

h1 span {
  color: #6cff39;
  text-shadow:
    0 0 14px rgba(108,255,57,.9),
    0 0 38px rgba(108,255,57,.38);
}

.domain {
  margin-top: 14px;
  font-size: clamp(17px, 2.4vw, 27px);
  letter-spacing: .42em;
  color: #8cff75;
  text-shadow: 0 0 18px rgba(140,255,117,.55);
}

.desc {
  margin-top: 28px;
  color: #b9fff4;
  font-size: 16px;
  line-height: 1.7;
  max-width: 620px;
}

.terminal {
  margin-top: 30px;
  padding: 18px;
  color: #8cff75;
  background: rgba(0,0,0,.64);
  border-left: 3px solid #6cff39;
  box-shadow: inset 0 0 18px rgba(0,255,130,.08);
  font-size: 14px;
  line-height: 1.7;
}

.terminal .blue {
  color: #35d6ff;
}

.cursor {
  display: inline-block;
  width: 9px;
  height: 16px;
  background: #6cff39;
  margin-left: 5px;
  animation: blink 1s steps(1) infinite;
  vertical-align: -2px;
  box-shadow: 0 0 12px rgba(108,255,57,.8);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

footer {
  position: fixed;
  z-index: 10;
  left: 28px;
  bottom: 18px;
  color: rgba(217,255,247,.58);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  main {
    align-items: flex-end;
    padding: 22px;
  }

  .panel {
    padding: 24px;
  }

  .domain {
    letter-spacing: .22em;
  }

  footer {
    position: static;
    padding: 0 22px 22px;
  }
}

/* mobile override */
@media (max-width: 720px) {
  body {
    min-height: 100svh;
    background:
      linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.88)),
      url("ownetwork.png") center top / cover no-repeat scroll;
  }

  main {
    min-height: 100svh;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
  }

  .panel {
    width: 100%;
    max-width: none;
    padding: 22px;
    background: linear-gradient(135deg, rgba(0,0,0,.72), rgba(0,25,30,.52));
    border: 1px solid rgba(0,255,200,.22);
  }

  .tag {
    font-size: 10px;
    letter-spacing: .22em;
    margin-bottom: 14px;
  }

  h1 {
    font-size: 42px;
    line-height: .95;
    letter-spacing: .02em;
  }

  .domain {
    font-size: 16px;
    letter-spacing: .28em;
  }

  .desc {
    font-size: 13px;
    line-height: 1.55;
    margin-top: 22px;
  }

  .terminal {
    font-size: 12px;
    margin-top: 22px;
    padding: 14px;
  }

  footer {
    display: none;
  }
}
