:root {
  --bg: #0a0a0a;
  --ink: #f1efe8;
  --muted: #9a9992;
  --acid: #5dff9a;
  --blue: #5875ff;
  --cyan: #43d9ff;
  --line: rgba(241, 239, 232, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

::selection {
  background: var(--acid);
  color: var(--bg);
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.045;
  pointer-events: none;
  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='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(216, 255, 67, 0.055);
  filter: blur(80px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  height: 96px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font: 500 11px/1 "DM Mono", monospace;
  letter-spacing: 0.08em;
}

.brand,
.header-meta,
.availability,
.menu-link {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font: 800 16px/1 "Manrope", sans-serif;
}

.header-meta {
  gap: clamp(24px, 5vw, 72px);
}

.availability {
  gap: 10px;
  color: var(--muted);
}

.availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(216, 255, 67, 0.08);
  animation: pulse 2s infinite;
}

.menu-link {
  gap: 16px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}

.menu-link span {
  color: var(--acid);
}

.header-code { color: var(--muted); }

.hero {
  position: relative;
  min-height: calc(100svh - 96px - 71px);
  padding: clamp(36px, 6vh, 72px) 4vw 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font: 400 11px/1 "DM Mono", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.asterisk {
  color: var(--cyan);
  font-size: 17px;
}

.hero-title {
  position: relative;
  z-index: 2;
  margin: auto 0;
  max-width: 1200px;
  font-size: clamp(64px, 10.5vw, 166px);
  line-height: 0.85;
  letter-spacing: -0.075em;
  font-weight: 600;
}

.hero-title .line {
  display: block;
}

.hero-title em {
  position: relative;
  padding-right: 0.08em;
  color: var(--acid);
  font-family: Georgia, serif;
  font-weight: 400;
}

.dot {
  color: var(--blue);
}

.hero-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.hero-bottom p {
  max-width: 440px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.6;
}

.round-link {
  width: 116px;
  height: 116px;
  flex: 0 0 auto;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font: 500 10px/1.4 "DM Mono", monospace;
  transition: 250ms ease;
}

.round-link b {
  align-self: end;
  color: var(--acid);
  font-size: 19px;
}

.round-link:hover {
  color: var(--bg);
  background: var(--acid);
  border-color: var(--acid);
  transform: rotate(6deg);
}

.brand-seal { cursor: default; }
.brand-seal:hover { color: var(--bg); }

.round-link:hover b {
  color: var(--bg);
}

.orb-wrap {
  position: absolute;
  z-index: 1;
  top: 47%;
  right: 6vw;
  width: clamp(220px, 28vw, 440px);
  aspect-ratio: 1;
  transform: translateY(-50%);
}

.orb {
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 25%, #e8fff2 0, #5dff9a 10%, transparent 31%),
    radial-gradient(circle at 72% 70%, #43d9ff 0, #304ad4 34%, #10131d 73%);
  box-shadow: inset -30px -30px 60px rgba(0, 0, 0, 0.55), 0 0 110px rgba(67, 217, 255, 0.17);
  filter: saturate(0.92);
  animation: float 7s ease-in-out infinite;
}

.orbit-copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: start center;
  color: var(--muted);
  font: 400 8px/1 "DM Mono", monospace;
  letter-spacing: 0.16em;
  animation: spin 18s linear infinite;
}

.ticker {
  height: 71px;
  display: flex;
  align-items: center;
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: var(--acid);
  color: var(--bg);
}

.ticker-track {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  font: 600 13px/1 "DM Mono", monospace;
  letter-spacing: 0.1em;
  animation: marquee 24s linear infinite;
}

.ticker-track i {
  font-style: normal;
  font-size: 17px;
}

footer {
  min-height: 98px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font: 400 10px/1 "DM Mono", monospace;
  letter-spacing: 0.1em;
}

.services {
  padding: clamp(90px, 12vw, 180px) 4vw;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 7vw;
  background:
    radial-gradient(circle at 8% 45%, rgba(88, 117, 255, 0.13), transparent 24%),
    var(--bg);
}

.section-intro {
  position: sticky;
  top: 50px;
  align-self: start;
}

.section-number {
  color: var(--acid);
  font: 400 10px/1 "DM Mono", monospace;
  letter-spacing: 0.12em;
}

.section-intro h2 {
  margin: 36px 0 30px;
  font-size: clamp(52px, 6.2vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 600;
}

.section-intro h2 em,
.discord-card h3 em {
  color: var(--acid);
  font-family: Georgia, serif;
  font-weight: 400;
}

.section-intro > p {
  max-width: 390px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-stack {
  display: grid;
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 680px;
  padding: clamp(24px, 3vw, 44px);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}

.web-card {
  background: var(--blue);
  color: #fff;
}

.discord-card {
  background: #10131d;
}

.card-top {
  display: flex;
  justify-content: space-between;
  font: 500 10px/1 "DM Mono", monospace;
  letter-spacing: 0.12em;
}

.card-tag {
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 100px;
}

.card-copy {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  max-width: 470px;
}

.card-copy h3 {
  margin: 0 0 22px;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 600;
}

.card-copy p {
  max-width: 390px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.65;
}

.browser-art {
  position: absolute;
  right: -55px;
  bottom: -105px;
  width: 62%;
  min-width: 320px;
  aspect-ratio: 1.1;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 12px 12px 0 0;
  background: #0b0d13;
  box-shadow: -30px -30px 80px rgba(7,10,25,.3);
  transform: rotate(-5deg);
}

.browser-bar {
  height: 32px;
  padding-left: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #292c35;
}

.browser-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  opacity: .7;
}

.browser-body { padding: 35px; }
.browser-body > span { color: var(--acid); font: 9px "DM Mono", monospace; letter-spacing: .2em; }
.browser-body b { display: block; margin-top: 17px; font-size: clamp(27px, 3vw, 48px); line-height: .9; letter-spacing: -.06em; }
.browser-body b span { color: var(--cyan); }
.browser-body div { width: 60%; height: 5px; margin-top: 26px; background: linear-gradient(90deg, var(--acid) 65%, #252934 65%); }

.terminal {
  position: absolute;
  right: clamp(20px, 4vw, 55px);
  bottom: 42px;
  width: min(530px, calc(100% - 40px));
  padding: 20px;
  border: 1px solid #303745;
  border-radius: 10px;
  background: rgba(20, 25, 38, .92);
  box-shadow: 0 24px 70px rgba(0,0,0,.34), 0 0 90px rgba(88,117,255,.1);
  font-family: "DM Mono", monospace;
}

.terminal-head { display: flex; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid #2a303e; color: #9aa4b6; font-size: 10px; }
.terminal-head span { display: flex; align-items: center; gap: 8px; }
.terminal-head i { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); }
.terminal-head b { color: var(--acid); font-size: 9px; }
.terminal-line { display: flex; gap: 12px; padding: 20px 0; font-size: 11px; line-height: 1.6; }
.terminal-line > span { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: #fff; font: 700 14px "Manrope"; }
.terminal-line p { margin: 0; color: #c3cad5; }
.terminal-line p > b { color: #fff; margin-right: 7px; }
.terminal-line small { padding: 2px 5px; border-radius: 3px; background: var(--blue); color: #fff; font-size: 7px; }
.terminal-line p i { color: var(--acid); font-style: normal; }
.terminal-command { padding: 12px 14px; display: flex; gap: 9px; border: 1px solid #343c4b; border-radius: 5px; color: #8e98a9; font-size: 10px; }
.terminal-command > span:first-child { color: var(--acid); }
.terminal-command b { margin-left: auto; color: var(--cyan); }
.typing { overflow: hidden; white-space: nowrap; animation: type 4s steps(16) infinite; }

.contact-strip {
  padding: clamp(65px, 8vw, 110px) 4vw;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  background: var(--acid);
  color: var(--bg);
}

.contact-strip p { margin: 0; font: 500 11px "DM Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.contact-strip a { max-width: 900px; font-size: clamp(46px, 8vw, 126px); line-height: .85; letter-spacing: -.07em; font-weight: 600; }
.contact-strip a span { display: inline-block; transition: transform .2s ease; }
.contact-strip a:hover span { transform: translate(10px, -10px); }

footer a {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 0.9s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.3s; }

@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-14px) rotate(3deg); } }
@keyframes pulse { 50% { opacity: 0.45; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes type { 0%, 15% { width: 0; } 55%, 100% { width: 16ch; } }

@media (max-width: 700px) {
  .site-header { height: 78px; }
  .availability { display: none; }
  .hero { min-height: calc(100svh - 78px - 57px); padding-top: 30px; }
  .hero-title { font-size: clamp(58px, 18vw, 92px); line-height: 0.88; margin-top: 17vh; }
  .hero-title .line:last-child { margin-left: 8vw; }
  .orb-wrap { top: 30%; right: -20vw; width: 65vw; opacity: 0.78; }
  .hero-bottom { align-items: end; gap: 24px; }
  .hero-bottom p { max-width: 230px; font-size: 13px; }
  .round-link { width: 92px; height: 92px; padding: 16px; font-size: 8px; }
  .ticker { height: 57px; }
  .services { grid-template-columns: 1fr; padding-inline: 20px; }
  .section-intro { position: static; }
  .section-intro h2 { margin-top: 25px; }
  .service-card { min-height: 650px; }
  .card-copy { margin-top: 55px; }
  .browser-art { width: 85%; }
  .contact-strip { align-items: start; flex-direction: column; }
  .contact-strip a { font-size: 15vw; }
  footer { min-height: 110px; flex-wrap: wrap; gap: 16px; padding-block: 28px; }
  .footer-note { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .cursor-glow { display: none; }
}
