:root {
  color-scheme: dark;
  --bg: #070b0f;
  --panel: #0e141a;
  --panel-2: #121a21;
  --line: #1b2630;
  --line-soft: rgba(255,255,255,.07);
  --text: #f1f5f7;
  --muted: #8997a2;
  --muted-2: #5e6c76;
  --accent: #45e0a8;
  --accent-dark: #082519;
  --cyan: #76dff5;
  font-family: Inter, "Segoe UI Variable Text", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
    radial-gradient(circle at 77% 17%, rgba(69,224,168,.10), transparent 28%),
    radial-gradient(circle at 14% 40%, rgba(118,223,245,.055), transparent 24%),
    var(--bg);
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
}

.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.site-header { height: 86px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-soft); }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { object-fit: contain; }
.brand span { display: grid; }
.brand strong { font-size: 14px; letter-spacing: .015em; }
.brand small { margin-top: 2px; color: var(--muted-2); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.discord-link { height: 35px; display: inline-flex; align-items: center; padding: 0 13px; border: 1px solid var(--line); border-radius: 6px; color: #b7c1c8; font-size: 11px; text-decoration: none; }
.discord-link:hover { border-color: #31414c; color: white; }
.service-status { height: 35px; display: inline-flex; align-items: center; gap: 8px; padding: 0 12px; border: 1px solid var(--line); border-radius: 6px; background: rgba(14,20,26,.72); color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.service-status i { width: 6px; height: 6px; border-radius: 50%; background: #e5b449; box-shadow: 0 0 12px rgba(229,180,73,.55); }
.service-status.online i { background: var(--accent); box-shadow: 0 0 12px rgba(69,224,168,.65); }
.service-status.offline i { background: #ef6f76; box-shadow: 0 0 12px rgba(239,111,118,.45); }

.hero { min-height: 650px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr); align-items: center; gap: 82px; padding-top: 68px; padding-bottom: 76px; }
.eyebrow { margin: 0; color: var(--accent); font-family: "Cascadia Code", Consolas, monospace; font-size: 10px; font-weight: 700; letter-spacing: .16em; }
h1 { max-width: 690px; margin: 18px 0 0; font-size: clamp(49px, 6.6vw, 84px); line-height: .96; letter-spacing: -.055em; }
h1 span { color: #82909a; }
.lead { max-width: 590px; margin: 27px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.actions { display: flex; align-items: stretch; gap: 10px; margin-top: 34px; }
.download-button { min-width: 286px; min-height: 58px; display: flex; align-items: center; gap: 13px; padding: 9px 18px; border: 1px solid #58efba; border-radius: 7px; background: var(--accent); color: #06110d; text-decoration: none; box-shadow: 0 13px 34px rgba(69,224,168,.13); transition: transform .16s ease, box-shadow .16s ease; }
.download-button:hover { transform: translateY(-2px); box-shadow: 0 17px 38px rgba(69,224,168,.2); }
.download-icon { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid rgba(0,0,0,.14); border-radius: 5px; font-size: 18px; }
.download-button span:last-child { display: grid; }
.download-button strong { font-size: 13px; }
.download-button small { margin-top: 3px; color: rgba(4,20,14,.66); font-size: 10px; }
.copy-button { min-width: 125px; border: 1px solid var(--line); border-radius: 7px; background: rgba(14,20,26,.82); color: #bac4ca; cursor: pointer; font-size: 11px; }
.copy-button:hover { border-color: #34434d; color: white; }
.trust-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 21px; color: var(--muted-2); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }
.trust-row span::before { content: ""; display: inline-block; width: 4px; height: 4px; margin-right: 7px; border-radius: 50%; background: var(--accent); vertical-align: 2px; }

.release-card { position: relative; min-height: 430px; overflow: hidden; border: 1px solid #23313b; border-radius: 9px; background: linear-gradient(145deg, rgba(18,26,33,.98), rgba(8,12,16,.98)); box-shadow: 0 30px 80px rgba(0,0,0,.36); }
.release-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(to bottom, black, transparent 75%); }
.card-topline { position: relative; z-index: 2; height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid var(--line); color: #65737d; font-family: "Cascadia Code", Consolas, monospace; font-size: 8px; letter-spacing: .1em; }
.card-topline strong { color: var(--accent); font-size: 9px; }
.product-lockup { position: relative; z-index: 2; min-height: 255px; display: grid; grid-template-columns: 52% 48%; align-items: center; padding: 10px 32px; }
.logo-field { position: relative; min-height: 220px; display: grid; place-items: center; }
.logo-field img { position: relative; z-index: 2; object-fit: contain; filter: drop-shadow(0 13px 29px rgba(0,0,0,.45)); animation: float 5.6s ease-in-out infinite; }
.orbit { position: absolute; border: 1px solid rgba(69,224,168,.18); border-radius: 50%; }
.orbit-a { width: 190px; height: 190px; animation: orbit 18s linear infinite; }
.orbit-b { width: 145px; height: 145px; border-color: rgba(118,223,245,.15); animation: orbit 13s linear reverse infinite; }
.orbit::before { content: ""; position: absolute; top: -3px; left: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px rgba(69,224,168,.7); }
.product-lockup small { color: var(--muted-2); font-size: 8px; letter-spacing: .12em; }
.release-version { display: block; margin-top: 9px; font-family: "Cascadia Code", Consolas, monospace; font-size: 36px; letter-spacing: -.04em; }
.product-lockup p { margin: 13px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.release-terminal { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 20px 20px; border: 1px solid var(--line); border-radius: 6px; background: #0a0f13; }
.release-terminal div { min-width: 0; padding: 14px; border-left: 1px solid var(--line); }
.release-terminal div:first-child { border-left: 0; }
.release-terminal span { display: block; color: #52606a; font-size: 7px; letter-spacing: .09em; text-transform: uppercase; }
.release-terminal strong { display: block; margin-top: 5px; overflow: hidden; color: #c7d0d5; font-family: "Cascadia Code", Consolas, monospace; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.scan-line { position: absolute; z-index: 1; right: 24px; left: 24px; height: 1px; background: rgba(69,224,168,.42); box-shadow: 0 0 16px rgba(69,224,168,.28); animation: scan 5s ease-in-out infinite; }

.release-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(6,9,12,.82); }
.release-grid { min-height: 92px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.release-grid div { min-width: 0; padding: 0 25px; border-left: 1px solid var(--line); }
.release-grid div:first-child { padding-left: 0; border-left: 0; }
.release-grid span { display: block; color: var(--muted-2); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.release-grid strong { display: block; margin-top: 7px; overflow: hidden; color: #d7dee2; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }

.how { padding-top: 98px; padding-bottom: 108px; }
.section-heading { max-width: 690px; }
.section-heading h2, .notes-grid h2 { margin: 13px 0 0; font-size: clamp(34px, 4.8vw, 56px); line-height: 1.04; letter-spacing: -.045em; }
.section-heading > p:last-child { max-width: 610px; margin: 19px 0 0; color: var(--muted); line-height: 1.7; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 52px; }
.steps article { min-height: 218px; padding: 25px; border: 1px solid var(--line); border-radius: 7px; background: rgba(14,20,26,.72); }
.steps article > span { color: var(--accent); font-family: "Cascadia Code", Consolas, monospace; font-size: 9px; }
.steps h3 { margin: 48px 0 0; font-size: 18px; }
.steps p { margin: 11px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.release-notes { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #090d11; }
.notes-grid { min-height: 276px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 80px; }
.notes-grid h2 { font-size: 42px; }
.notes-grid > p { padding-left: 34px; border-left: 1px solid var(--line); color: var(--muted); font-size: 14px; line-height: 1.8; }

footer { min-height: 94px; display: flex; align-items: center; justify-content: space-between; color: #56636c; font-size: 10px; }
footer div { display: flex; gap: 20px; }
footer a { color: #7f8d96; text-decoration: none; }
footer a:hover { color: var(--accent); }
.toast { position: fixed; z-index: 20; right: 22px; bottom: 22px; padding: 12px 14px; border: 1px solid #2a3943; border-radius: 6px; background: #11181e; color: #e5ebee; font-size: 11px; opacity: 0; transform: translateY(10px); transition: .18s ease; pointer-events: none; }
.toast.visible { opacity: 1; transform: translateY(0); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes scan { 0%,8% { top: 68px; opacity: 0; } 20%,80% { opacity: 1; } 92%,100% { top: 315px; opacity: 0; } }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 50px; padding-top: 58px; }
  .hero-copy { max-width: 680px; }
  .release-card { width: min(620px, 100%); }
  .release-grid { grid-template-columns: repeat(2, 1fr); padding: 12px 0; }
  .release-grid div { min-height: 58px; display: flex; flex-direction: column; justify-content: center; }
  .release-grid div:nth-child(3) { border-left: 0; padding-left: 0; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: 165px; }
  .steps h3 { margin-top: 30px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { height: 74px; }
  .brand small, .discord-link { display: none; }
  .hero { min-height: auto; padding: 48px 0 54px; }
  h1 { font-size: clamp(45px, 14vw, 66px); }
  .lead { font-size: 14px; }
  .actions { display: grid; }
  .download-button { min-width: 0; }
  .copy-button { min-height: 44px; }
  .trust-row { gap: 10px 13px; }
  .release-card { min-height: 390px; }
  .product-lockup { grid-template-columns: 1fr 1fr; padding: 5px 15px; }
  .logo-field { min-height: 205px; }
  .orbit-a { width: 150px; height: 150px; }
  .orbit-b { width: 115px; height: 115px; }
  .logo-field img { width: 88px; height: 88px; }
  .release-version { font-size: 28px; }
  .release-terminal { grid-template-columns: repeat(2, 1fr); }
  .release-terminal div:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .release-terminal div:nth-child(4) { border-top: 1px solid var(--line); }
  .release-grid { grid-template-columns: 1fr; }
  .release-grid div, .release-grid div:nth-child(3) { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .release-grid div:first-child { border-top: 0; }
  .how { padding-top: 70px; padding-bottom: 76px; }
  .notes-grid { grid-template-columns: 1fr; gap: 30px; padding: 64px 0; }
  .notes-grid > p { padding: 24px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  footer { min-height: 116px; flex-direction: column; justify-content: center; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

