:root {
  --bg: #07090a;
  --panel: #0d1112;
  --line: rgba(255,255,255,.10);
  --muted: #929b99;
  --text: #f2f5f4;
  --mint: #65f5c7;
  --lime: #bcff59;
  --cyan: #66e3ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .3;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.ambient { position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; opacity: .16; }
.ambient-one { width: 420px; height: 420px; background: var(--mint); right: 5%; top: 80px; }
.ambient-two { width: 360px; height: 360px; background: #2357ff; left: -180px; top: 770px; opacity: .1; }

.topbar {
  width: min(1380px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.03em; }
.brand b { color: var(--muted); font-size: .72em; letter-spacing: .14em; margin-left: 4px; }
.brand-mark { width: 31px; height: 31px; display: flex; align-items: flex-end; justify-content: center; gap: 3px; padding: 6px; background: var(--text); border-radius: 8px; transform: rotate(-5deg); }
.brand-mark i { display: block; width: 4px; border-radius: 4px; background: var(--bg); }
.brand-mark i:nth-child(1) { height: 10px; }
.brand-mark i:nth-child(2) { height: 18px; }
.brand-mark i:nth-child(3) { height: 14px; }
.topbar nav { display: flex; gap: 34px; color: #a5adaa; font-size: 13px; }
.topbar nav a { transition: .2s ease; }
.topbar nav a:hover { color: var(--text); }
.top-connect { border: 1px solid var(--line); padding: 11px 17px; border-radius: 100px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: .2s ease; }
.top-connect:hover { color: #06110d; background: var(--mint); border-color: var(--mint); }

.hero { width: min(1380px, calc(100% - 48px)); margin: 0 auto; min-height: 730px; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 72px; position: relative; z-index: 1; }
.hero-copy { padding: 72px 0 60px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #aeb8b5; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(101,245,199,.09), 0 0 22px rgba(101,245,199,.7); animation: pulse 2s ease infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(101,245,199,0), 0 0 30px rgba(101,245,199,.9); } }
h1, h2 { font-weight: 780; letter-spacing: -.075em; line-height: .95; margin: 0; }
h1 { font-size: clamp(62px, 7.1vw, 112px); margin-top: 28px; }
h1 em, h2 em { font-style: normal; color: transparent; -webkit-text-stroke: 1px rgba(242,245,244,.8); }
.hero-lead { max-width: 590px; color: #aeb5b3; font-size: 19px; line-height: 1.62; margin: 35px 0 0; }
.hero-actions { display: flex; gap: 12px; align-items: center; margin-top: 40px; }
.button { min-height: 56px; border-radius: 10px; border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #05110d; background: linear-gradient(120deg, var(--lime), var(--mint)); padding: 0 26px; box-shadow: 0 12px 42px rgba(101,245,199,.15); }
.button-icon { margin-right: 23px; font-size: 19px; }
.button.secondary { padding: 0 17px 0 20px; color: var(--text); background: rgba(255,255,255,.025); border-color: var(--line); }
.button.secondary:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); }
.address { font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 13px; }
.copy-label { color: var(--muted); border-left: 1px solid var(--line); padding-left: 14px; margin-left: 14px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.quick-stats { display: flex; gap: 0; margin-top: 56px; }
.quick-stats div { min-width: 135px; padding-right: 30px; margin-right: 30px; border-right: 1px solid var(--line); }
.quick-stats div:last-child { border: 0; margin: 0; }
.quick-stats strong { display: block; font-size: 22px; letter-spacing: -.04em; }
.quick-stats span { display: block; color: #727b79; font-size: 10px; margin-top: 6px; text-transform: uppercase; letter-spacing: .12em; }

.hero-visual { min-height: 580px; display: grid; place-items: center; position: relative; perspective: 900px; }
.hero-visual::before { content: ""; position: absolute; width: 510px; height: 510px; border-radius: 50%; background: radial-gradient(circle, rgba(101,245,199,.12), rgba(101,245,199,0) 66%); }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.orbit-one { width: 510px; height: 510px; }
.orbit-two { width: 390px; height: 390px; border-style: dashed; animation: rotate 38s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }
.voice-card { width: min(470px, 90%); padding: 25px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: linear-gradient(145deg, rgba(22,29,29,.94), rgba(7,10,11,.97)); box-shadow: 0 35px 90px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.05); transform: rotateY(-4deg) rotateX(2deg); position: relative; z-index: 2; backdrop-filter: blur(20px); }
.voice-head { display: flex; align-items: center; gap: 13px; }
.server-avatar { width: 48px; height: 48px; border-radius: 13px; color: #08100d; background: linear-gradient(140deg, var(--lime), var(--mint)); display: grid; place-items: center; position: relative; font-size: 13px; font-weight: 950; }
.server-avatar span { transform: translate(-3px, -2px); }
.server-avatar b { position: absolute; right: 8px; bottom: 7px; font-size: 12px; }
.voice-head div:nth-child(2) { display: flex; flex-direction: column; gap: 4px; }
.voice-head small { color: #6f7a77; font-size: 8px; letter-spacing: .16em; font-weight: 800; }
.voice-head strong { font-size: 17px; letter-spacing: -.02em; }
.live-dot { margin-left: auto; color: var(--mint); background: rgba(101,245,199,.08); border: 1px solid rgba(101,245,199,.17); border-radius: 100px; padding: 7px 9px; font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.waveform { height: 135px; display: flex; align-items: center; justify-content: center; gap: 7px; margin: 19px 0 6px; mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent); }
.waveform i { width: 4px; height: var(--h); min-height: 10px; background: linear-gradient(to top, rgba(101,245,199,.15), var(--mint)); border-radius: 5px; box-shadow: 0 0 13px rgba(101,245,199,.22); animation: wave 1.8s ease-in-out infinite alternate; animation-delay: calc(var(--h) * -0.02); }
@keyframes wave { 50% { transform: scaleY(.45); opacity: .65; } }
.voice-channel { border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); border-radius: 13px; padding: 14px; display: flex; justify-content: space-between; align-items: center; }
.voice-channel > div:first-child { display: flex; align-items: center; gap: 11px; }
.channel-icon { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: rgba(101,245,199,.1); color: var(--mint); font-size: 20px; }
.voice-channel small { color: #6e7775; font-size: 7px; font-weight: 800; letter-spacing: .15em; display: block; margin-bottom: 4px; }
.voice-channel strong { font-size: 12px; display: block; }
.avatars { display: flex; flex-direction: row-reverse; }
.avatars span { width: 27px; height: 27px; margin-left: -7px; border: 2px solid #111616; border-radius: 50%; display: grid; place-items: center; background: #27302e; color: #dce4e2; font-size: 7px; font-weight: 900; }
.avatars span:last-child { background: #314d43; color: var(--mint); }
.quality-row { display: flex; justify-content: space-between; align-items: center; color: #68716f; font-size: 8px; font-weight: 800; letter-spacing: .08em; margin-top: 18px; }
.quality-row span { display: flex; align-items: center; gap: 7px; }
.quality-row i { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); }
.quality-row b { color: #a4aeab; }
.float-tag { position: absolute; z-index: 3; display: flex; flex-direction: column; color: #87908e; border: 1px solid var(--line); background: rgba(8,11,12,.87); backdrop-filter: blur(12px); border-radius: 10px; padding: 11px 14px; font-size: 7px; letter-spacing: .13em; box-shadow: 0 18px 36px rgba(0,0,0,.35); }
.float-tag b { color: var(--text); font-size: 12px; letter-spacing: -.02em; margin-top: 3px; }
.tag-one { left: 2%; bottom: 21%; }
.tag-two { right: 4%; top: 25%; }

.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); }
.ticker div { min-width: max-content; min-height: 62px; display: flex; align-items: center; gap: 42px; padding: 0 22px; color: #8e9794; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.ticker i { color: var(--mint); font-style: normal; }
.section { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 135px 0; }
.section-heading { display: grid; grid-template-columns: .65fr 1.35fr .8fr; gap: 40px; align-items: end; margin-bottom: 64px; }
.section-no { color: var(--mint); font: 700 10px ui-monospace, monospace; letter-spacing: .14em; }
.section-kicker { color: #717b78; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; margin-left: 14px; }
.section h2, .connect-section h2 { font-size: clamp(48px, 5vw, 78px); }
.section-heading p { color: #909997; line-height: 1.65; font-size: 14px; margin: 0; }
.room-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.room-card { min-height: 350px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; background: rgba(255,255,255,.008); transition: background .25s ease, transform .25s ease; }
.room-card:hover { background: rgba(255,255,255,.03); transform: translateY(-4px); }
.room-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -100px; bottom: -100px; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; }
.accent-card { background: linear-gradient(150deg, rgba(101,245,199,.11), rgba(101,245,199,.018)); }
.room-index { position: absolute; right: 20px; top: 20px; color: #4d5654; font: 700 9px ui-monospace, monospace; }
.room-symbol { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 14px; color: var(--mint); font-size: 25px; margin: 36px 0 58px; }
.room-card h3 { font-size: 21px; margin: 0 0 12px; letter-spacing: -.04em; }
.room-card p { color: #838d8a; font-size: 13px; line-height: 1.6; margin: 0; }
.room-meta { position: absolute; left: 24px; bottom: 23px; color: #68716f; font-size: 8px; font-weight: 800; letter-spacing: .13em; display: flex; align-items: center; gap: 7px; }
.room-meta i { width: 5px; height: 5px; border-radius: 50%; background: var(--mint); }

.manifesto { border-top: 1px solid var(--line); text-align: center; }
.manifesto > p { color: #7f8986; margin: 0 0 20px; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.manifesto h2 { font-size: clamp(53px, 7vw, 100px); }
.feature-line { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-line span { padding: 24px 14px; color: #a1aaa7; font-size: 11px; border-right: 1px solid var(--line); }
.feature-line span:last-child { border: 0; }
.feature-line b { color: var(--mint); font: 700 8px ui-monospace, monospace; margin-right: 12px; }

.rules { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; border-top: 1px solid var(--line); }
.rules-title .section-no { display: block; margin-bottom: 30px; }
.rules-list { border-top: 1px solid var(--line); }
.rules-list article { display: grid; grid-template-columns: 50px 1fr; gap: 12px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.rules-list article > span { color: #4c5553; font: 700 9px ui-monospace, monospace; padding-top: 3px; }
.rules-list h3 { margin: 0 0 9px; font-size: 16px; letter-spacing: -.02em; }
.rules-list p { margin: 0; color: #818a88; font-size: 13px; line-height: 1.55; }

.connect-section { min-height: 730px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-top: 1px solid var(--line); position: relative; overflow: hidden; padding: 100px 24px; }
.connect-glow { position: absolute; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgba(101,245,199,.12), rgba(101,245,199,0) 65%); pointer-events: none; }
.connect-section > *:not(.connect-glow) { position: relative; }
.connect-section > p { color: #7f8986; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin: 20px 0 23px; }
.connect-address { min-width: min(520px, 100%); margin: 46px 0 16px; padding: 19px 22px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.022); border-radius: 12px; text-align: left; }
.connect-address > span { color: #626c69; font-size: 7px; font-weight: 900; letter-spacing: .15em; }
.connect-address strong { font-family: ui-monospace, monospace; font-size: 14px; }
.connect-address button { border: 0; border-left: 1px solid var(--line); background: none; color: #929b99; padding: 7px 0 7px 16px; cursor: pointer; font-size: 10px; }
.button.large { min-width: min(520px, 100%); min-height: 64px; gap: 18px; }
.connect-section > small { color: #555f5c; font-size: 9px; margin-top: 16px; }
footer { width: min(1380px, calc(100% - 48px)); height: 110px; margin: 0 auto; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; color: #68716f; font-size: 10px; }
footer .brand { color: var(--text); }
footer > a:last-child { color: #9da6a3; font-family: ui-monospace, monospace; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 50; transform: translate(-50%, 25px); opacity: 0; padding: 12px 17px; border: 1px solid rgba(101,245,199,.25); border-radius: 9px; color: var(--mint); background: rgba(8,13,11,.94); font-size: 12px; pointer-events: none; transition: .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1000px) {
  .topbar nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding-bottom: 10px; }
  .hero-visual { min-height: 560px; }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .section-heading p { max-width: 520px; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .rules { grid-template-columns: 1fr; gap: 70px; }
}
@media (max-width: 640px) {
  .topbar, .hero, .section, footer { width: min(100% - 30px, 1380px); }
  .topbar { height: 72px; }
  .top-connect { display: none; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 70px; }
  h1 { font-size: clamp(52px, 17vw, 78px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .quick-stats div { min-width: 0; flex: 1; padding-right: 12px; margin-right: 12px; }
  .quick-stats span { font-size: 8px; }
  .hero-visual { min-height: 480px; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 300px; height: 300px; }
  .voice-card { width: 96%; padding: 18px; }
  .tag-one { left: -3%; bottom: 10%; }
  .tag-two { right: -3%; top: 20%; }
  .section { padding: 100px 0; }
  .room-grid { grid-template-columns: 1fr; }
  .room-card { min-height: 310px; }
  .feature-line { grid-template-columns: 1fr 1fr; }
  .feature-line span:nth-child(2) { border-right: 0; }
  .feature-line span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .rules { gap: 55px; }
  .connect-address { grid-template-columns: 1fr auto; }
  .connect-address > span { display: none; }
  .connect-address strong { font-size: 12px; }
  footer { height: auto; padding: 35px 0; flex-direction: column; gap: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
