:root {
  --nl3-bg: #050817;
  --nl3-panel: rgba(8, 15, 31, .82);
  --nl3-panel-solid: rgba(6, 12, 26, .97);
  --nl3-line: rgba(130, 195, 255, .18);
  --nl3-line-hot: rgba(93, 219, 255, .42);
  --nl3-text: #f6f9ff;
  --nl3-muted: #9baac1;
  --nl3-cyan: #42dcff;
  --nl3-blue: #3978ff;
  --nl3-violet: #8a5cff;
  --nl3-radius: 22px;
}

html { background: var(--nl3-bg); scroll-behavior: smooth; }
body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--nl3-text);
  font-family: FSElliotPro, "Segoe UI", sans-serif;
  line-height: 1.5;
}
body::before { pointer-events: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.release-shell { position: relative; isolation: isolate; overflow: hidden; }
.release-shell .wrapper {
  width: min(1240px, calc(100% - 56px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
}
.release-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--nl3-cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}
.release-kicker::before { width: 18px; height: 1px; background: currentColor; content: ""; }

/* Navigation */
.release-nav {
  position: relative;
  z-index: 100;
  height: 84px;
  border-bottom: 1px solid rgba(156, 202, 255, .13);
  background: rgba(5, 10, 23, .84);
  box-shadow: 0 14px 46px rgba(0, 0, 0, .18);
  backdrop-filter: blur(20px);
}
.release-nav .wrapper, .release-nav__inner { height: 100%; }
.release-nav__inner { display: flex; align-items: center; gap: 30px; }
.release-nav__logo {
  flex: 0 0 184px;
  width: 184px;
  height: 56px;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 0 16px rgba(61, 213, 255, .18));
}
.release-nav__links {
  display: flex !important;
  align-items: center;
  gap: 3px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.release-nav__links > li { position: relative; margin: 0; padding: 0; list-style: none; }
.release-nav__links .link,
.release-nav__dropdown-label,
.release-nav__login {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #cbd5e4;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color .16s ease, background-color .16s ease;
}
.release-nav__dropdown-label i { margin-left: 8px; color: #64748b; font-size: 11px; transition: transform .16s ease; }
.release-nav__links .link:hover,
.release-nav__links .link:focus-visible,
.release-nav__dropdown-label:hover,
.release-nav__dropdown-label:focus-visible,
.release-nav__login:hover,
.release-nav__login:focus-visible {
  background: rgba(118, 176, 255, .08);
  color: #fff;
  outline: none;
}
.release-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 20;
  display: grid;
  min-width: 235px;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--nl3-line);
  border-radius: 16px;
  background: var(--nl3-panel-solid);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .52);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.release-dropdown::before { position: absolute; right: 0; bottom: 100%; left: 0; height: 16px; content: ""; }
.release-dropdown--wide { width: min(590px, 82vw); }
.release-dropdown__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 18px; }
.release-dropdown section { margin: 0 0 12px; }
.release-dropdown section:last-child { margin-bottom: 0; }
.release-dropdown h4 {
  margin: 4px 8px 8px;
  color: #74839a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.release-dropdown a {
  display: inline-flex;
  margin: 2px;
  padding: 8px 10px;
  border-radius: 9px;
  color: #c7d1df;
  font-size: 13px;
  line-height: 1.25;
  text-decoration: none;
}
.release-dropdown:not(.release-dropdown--wide) a { display: flex; }
.release-dropdown a:hover, .release-dropdown a:focus-visible { background: rgba(66, 220, 255, .09); color: var(--nl3-cyan); outline: none; }
.release-nav__links > li:hover .release-dropdown,
.release-nav__links > li:focus-within .release-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.release-nav__links > li:hover .release-nav__dropdown-label i,
.release-nav__links > li:focus-within .release-nav__dropdown-label i { transform: rotate(180deg); }
.release-nav__actions { display: flex !important; align-items: center; gap: 8px; margin-left: auto; }
.release-nav__mobile-toggle { display: none !important; }

.release-button,
.release-nav__actions .release-button,
.home-hero .release-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 11px;
  margin: 0;
  padding: 0 20px;
  border: 1px solid rgba(116, 232, 255, .46);
  border-radius: 12px;
  background: linear-gradient(118deg, var(--nl3-cyan), #2aaeff 54%, var(--nl3-blue));
  box-shadow: 0 12px 28px rgba(42, 163, 255, .18), inset 0 1px rgba(255, 255, 255, .32);
  color: #031020;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.release-button:hover, .release-button:focus-visible {
  box-shadow: 0 16px 34px rgba(42, 163, 255, .28), inset 0 1px rgba(255, 255, 255, .38);
  filter: saturate(1.08);
  outline: none;
  transform: translateY(-2px);
}
.release-button--compact { min-height: 42px; padding-inline: 17px; border-radius: 11px; }

/* Hero */
.home-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid rgba(141, 198, 255, .12);
  background: transparent;
}
.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 8, 19, .88), rgba(4, 8, 19, .46) 52%, rgba(4, 8, 19, .66)),
    linear-gradient(180deg, rgba(4, 8, 19, .08), rgba(4, 8, 19, .68));
  content: "";
}
.home-hero .wrapper { display: flex; min-height: 720px; align-items: center; }
.home-hero__grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .82fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
  padding: 76px 0 94px;
}
.home-hero__copy { position: relative; z-index: 2; max-width: 680px; }
.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #b5c5da;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-hero__eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--nl3-cyan); box-shadow: 0 0 18px var(--nl3-cyan); }
.home-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--nl3-text);
  font-size: clamp(56px, 5.35vw, 78px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}
.home-hero h1 span {
  display: inline-block;
  margin-top: 9px;
  background: linear-gradient(100deg, #f7fbff, #9aefff 42%, #93a8ff);
  background-clip: text;
  color: transparent;
}
.home-hero__copy > p { max-width: 620px; margin: 27px 0 0; color: #b6c1d1; font-size: 18px; line-height: 1.7; }
.home-hero__actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.release-button--hero { min-height: 54px; padding-inline: 25px; border-radius: 14px; font-size: 15px; }
.home-hero__secondary { display: inline-flex; align-items: center; gap: 10px; color: #d8e3f0; font-size: 14px; font-weight: 700; text-decoration: none; }
.home-hero__secondary i { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(157, 207, 255, .28); border-radius: 50%; color: var(--nl3-cyan); font-size: 10px; }
.home-hero__secondary:hover, .home-hero__secondary:focus-visible { color: var(--nl3-cyan); outline: none; }
.home-hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; color: #8798b0; font-size: 12px; font-weight: 600; }
.home-hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.home-hero__trust i { color: var(--nl3-cyan); }

.home-hero__visual {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(128, 196, 255, .22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 76% 20%, rgba(66, 220, 255, .2), transparent 30%),
    radial-gradient(circle at 24% 78%, rgba(138, 92, 255, .2), transparent 36%),
    linear-gradient(150deg, rgba(11, 25, 48, .88), rgba(5, 10, 23, .78));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .06);
  isolation: isolate;
}
.home-hero__visual::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(109, 203, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 203, 255, .055) 1px, transparent 1px) !important;
  background-size: 44px 44px !important;
  content: "";
  opacity: 1;
  transform: none;
}
.home-hero__visual::after {
  position: absolute;
  top: 70px;
  left: 50%;
  z-index: -1;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(91, 221, 255, .3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 149, 255, .2), rgba(39, 149, 255, .03) 52%, transparent 70%);
  box-shadow: 0 0 90px rgba(63, 187, 255, .18), inset 0 0 70px rgba(116, 82, 255, .08);
  content: "";
  transform: translateX(-50%);
}
.hero-orbit { position: absolute; top: 92px; left: 50%; width: 224px; height: 224px; border: 1px solid rgba(122, 223, 255, .22); border-radius: 50%; transform: translateX(-50%); }
.hero-orbit--one { animation: nl3-orbit 18s linear infinite; }
.hero-orbit--two { width: 184px; height: 184px; margin-top: 20px; border-style: dashed; border-color: rgba(143, 113, 255, .36); animation: nl3-orbit-reverse 14s linear infinite; }
.hero-mark { position: absolute; top: 150px; left: 50%; display: flex; align-items: center; gap: 14px; transform: translateX(-50%); }
.hero-mark > span { display: grid; width: 88px; height: 88px; place-items: center; border: 1px solid rgba(119, 229, 255, .48); border-radius: 24px; background: linear-gradient(145deg, rgba(55, 207, 255, .18), rgba(83, 82, 255, .18)); box-shadow: inset 0 1px rgba(255, 255, 255, .16), 0 20px 50px rgba(0, 0, 0, .3); color: #dffaff; font-size: 46px; font-weight: 800; }
.hero-mark small { color: #d3dfed; font-size: 11px; font-weight: 800; letter-spacing: .15em; line-height: 1.45; text-transform: uppercase; }

.server-pulse {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  min-height: 0;
  grid-template-columns: 1fr auto;
  gap: 12px 22px;
  padding: 20px 22px;
  border: 1px solid rgba(130, 198, 255, .2);
  border-radius: 18px;
  background: rgba(5, 11, 25, .84);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}
.server-pulse__top, .server-pulse__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #8494aa; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.server-pulse__top { grid-column: 1 / -1; }
.server-pulse__live { color: #dff9ff; }
.server-pulse__live i, .server-board__live i, .release-footer__status i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #42f0ba; box-shadow: 0 0 13px rgba(66, 240, 186, .8); }
.server-pulse__value { display: flex; align-items: center; gap: 10px; }
.server-pulse__value strong { color: #fff; font-size: 44px; line-height: .9; }
.server-pulse__value span { color: #8fa1b8; font-size: 10px; font-weight: 700; line-height: 1.2; text-transform: uppercase; }
.server-pulse__track { align-self: center; height: 4px; overflow: hidden; border-radius: 10px; background: rgba(137, 174, 220, .12); }
.server-pulse__track i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--nl3-cyan), var(--nl3-blue)); }
.server-pulse__bottom { grid-column: 1 / -1; padding-top: 12px; border-top: 1px solid rgba(139, 193, 255, .1); }
.server-pulse__bottom strong { color: #eaf7ff; }
.home-hero__scroll { position: absolute; bottom: 26px; left: 50%; display: flex; align-items: center; gap: 12px; color: #6f7e94; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; transform: translateX(-50%); }
.home-hero__scroll i { display: block; width: 38px; height: 1px; background: linear-gradient(90deg, rgba(66, 220, 255, .7), transparent); }

/* News and monitor */
.release-main { position: relative; padding: 84px 0 0; background: linear-gradient(180deg, rgba(5, 8, 23, .56), rgba(5, 8, 23, .8) 45%, rgba(5, 8, 23, .96)); }
.release-layout { display: grid; width: min(1240px, calc(100% - 56px)); margin: 0 auto; grid-template-columns: minmax(0, 1fr) 350px; align-items: start; gap: 28px; }
.release-content, .release-news, .release-sidebar, .server-board, .start-steps, .community-release { width: auto; max-width: none; margin: 0; }
.release-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 26px; }
.release-section-heading h2, .server-board h2, .community-release h2 { margin: 9px 0 0; color: var(--nl3-text); font-size: clamp(30px, 3vw, 42px); font-weight: 650; letter-spacing: -.03em; line-height: 1.05; }
.release-section-heading > p { max-width: 330px; margin: 0 0 4px; color: var(--nl3-muted); font-size: 14px; line-height: 1.6; text-align: right; }

.news-feature, .news-card, .release-side-cta, .server-board, .start-steps__grid > article, .community-release {
  border: 1px solid var(--nl3-line);
  background: var(--nl3-panel);
  box-shadow: 0 20px 58px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
}
.news-feature { display: grid; min-height: 360px; overflow: hidden; grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr); border-radius: var(--nl3-radius); }
.news-feature__image, .news-card__image { position: relative; display: block; width: 100%; min-width: 0; min-height: 230px; margin: 0; padding: 0; overflow: hidden; border: 0; background-color: #071223; background-position: center; background-size: cover; color: #fff; cursor: pointer; }
.news-feature__image::before, .news-card__image::before { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3, 8, 18, .06), rgba(3, 8, 18, .78)); content: ""; }
.news-feature__index, .news-card__image > span { position: absolute; top: 18px; left: 18px; z-index: 1; display: grid; min-width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255, 255, 255, .28); border-radius: 12px; background: rgba(4, 10, 22, .62); color: #dffaff; font-size: 12px; font-weight: 800; letter-spacing: .08em; backdrop-filter: blur(10px); }
.news-feature__open { position: absolute; right: 20px; bottom: 18px; left: 20px; z-index: 1; color: #e9f8ff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-align: left; text-transform: uppercase; }
.news-feature__content, .news-card__body { display: flex; min-width: 0; flex-direction: column; padding: 28px; }
.news-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; color: #75869e; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.news-card__meta span { color: var(--nl3-cyan); }
.news-feature h3, .news-card h3 { margin: 14px 0 12px; color: #f7fbff; font-size: 25px; font-weight: 650; letter-spacing: -.025em; line-height: 1.15; }
.news-card__copy { display: -webkit-box; overflow: hidden; color: #a8b5c6; font-size: 14px; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }
.news-card__copy p { margin: 0 0 5px; }
.news-card__action { display: inline-flex; align-items: center; align-self: flex-start; gap: 10px; min-height: 38px; margin: auto 0 0; padding: 0; border: 0; background: transparent; color: #dff8ff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.news-card__action i { color: var(--nl3-cyan); transition: transform .15s ease; }
.news-card__action:hover i, .news-card__action:focus-visible i { transform: translateX(4px); }
.news-card__action:focus-visible { outline: 2px solid var(--nl3-cyan); outline-offset: 6px; }
.news-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 18px; }
.news-card { display: grid; min-height: 470px; overflow: hidden; grid-template-rows: 210px 1fr; border-radius: 18px; }
.news-card:nth-child(2) .news-card__image { background-image: linear-gradient(140deg, rgba(5, 14, 30, .08), rgba(5, 14, 30, .5)), url('/images/nolife-aurora-bg-premium.jpg') !important; }

.release-sidebar { position: sticky; top: 108px; display: grid; gap: 18px; }
.release-side-cta { display: grid; min-height: 96px; grid-template-columns: 48px 1fr auto; align-items: center; gap: 14px; padding: 18px; border-radius: 18px; color: #f6fbff; text-decoration: none; transition: border-color .16s ease, transform .16s ease, background-color .16s ease; }
.release-side-cta:hover, .release-side-cta:focus-visible { border-color: var(--nl3-line-hot); background: rgba(10, 26, 49, .9); outline: none; transform: translateY(-2px); }
.release-side-cta__icon { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(99, 221, 255, .32); border-radius: 14px; background: linear-gradient(145deg, rgba(66, 220, 255, .16), rgba(57, 120, 255, .2)); color: var(--nl3-cyan); }
.release-side-cta strong, .release-side-cta small { display: block; }
.release-side-cta strong { font-size: 15px; }
.release-side-cta small { margin-top: 3px; color: #7f90a7; font-size: 11px; }
.release-side-cta__arrow { color: #668099; }

.server-board { overflow: hidden; border-radius: var(--nl3-radius); }
.server-board__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 24px; border-bottom: 1px solid rgba(130, 195, 255, .12); }
.server-board h2 { font-size: 28px; }
.server-board__live { display: inline-flex; align-items: center; margin-top: 3px; color: #64e8bd; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.server-board__list { padding: 12px; }
.server-branch { margin: 0; }
.server-branch__toggle { display: flex; width: 100%; min-height: 62px; align-items: center; justify-content: space-between; gap: 12px; margin: 0; padding: 12px; border: 0; border-radius: 12px; background: rgba(108, 174, 255, .05); color: #eef6ff; text-align: left; cursor: pointer; }
.server-branch__toggle span:first-child { min-width: 0; }
.server-branch__toggle strong, .server-branch__toggle small { display: block; }
.server-branch__toggle strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.server-branch__toggle small { margin-top: 4px; color: #72849c; font-size: 10px; }
.server-branch__online { display: inline-flex; align-items: center; gap: 8px; color: var(--nl3-cyan); font-size: 13px; font-weight: 800; }
.server-board__totals { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(130, 195, 255, .12); }
.server-board__totals > div { padding: 20px 24px; }
.server-board__totals > div + div { border-left: 1px solid rgba(130, 195, 255, .12); }
.server-board__totals strong, .server-board__totals span { display: block; }
.server-board__totals strong { color: #fff; font-size: 25px; }
.server-board__totals span { margin-top: 2px; color: #71829a; font-size: 10px; }

/* Steps, community, footer */
.start-steps { width: min(1240px, calc(100% - 56px)); margin: 98px auto 0; }
.release-section-heading--center { display: block; margin-bottom: 34px; text-align: center; }
.release-section-heading--center .release-kicker { justify-content: center; }
.release-section-heading--center > p { max-width: 620px; margin: 16px auto 0; text-align: center; }
.start-steps__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.start-steps__grid > article { position: relative; display: flex; min-width: 0; min-height: 360px; flex-direction: column; align-items: flex-start; padding: 28px; overflow: hidden; border-radius: var(--nl3-radius); background-image: none !important; }
.start-steps__grid > article::before { position: absolute; top: -90px; right: -70px; width: 220px; height: 220px; border: 1px solid rgba(78, 207, 255, .16); border-radius: 50%; background: radial-gradient(circle, rgba(57, 120, 255, .14), transparent 67%) !important; content: ""; opacity: 1; transform: none; }
.start-steps__grid > article:nth-child(2)::before { background: radial-gradient(circle, rgba(138, 92, 255, .15), transparent 67%) !important; }
.start-steps__number { color: #546780; font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.start-steps__icon { position: relative; z-index: 1; display: grid; width: 62px; height: 62px; place-items: center; margin-top: 42px; border: 1px solid rgba(99, 220, 255, .28); border-radius: 18px; background: linear-gradient(145deg, rgba(66, 220, 255, .14), rgba(57, 120, 255, .12)); color: var(--nl3-cyan); font-size: 22px; }
.start-steps__grid h3 { margin: 26px 0 10px; color: #f6faff; font-size: 22px; font-weight: 650; letter-spacing: -.02em; }
.start-steps__grid p { margin: 0 0 24px; color: #91a0b4; font-size: 14px; line-height: 1.6; }
.start-steps__grid button, .start-steps__grid a { display: inline-flex; width: auto; min-height: 40px; align-items: center; gap: 10px; margin: auto 0 0; padding: 0; border: 0; background: transparent !important; box-shadow: none; color: #dff8ff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; cursor: pointer; }
.start-steps__grid button i, .start-steps__grid a i { color: var(--nl3-cyan); }

.community-release {
  position: relative;
  display: grid;
  width: min(1240px, calc(100% - 56px));
  min-height: 330px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  align-items: center;
  gap: 60px;
  margin: 98px auto 0;
  padding: 54px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(100deg, rgba(5, 12, 28, .92), rgba(5, 12, 28, .66)), url('/images/nolife-aurora-bg-premium.jpg') center 48% / cover !important;
}
.community-release::before { position: absolute; top: -140px; left: 32%; width: 380px; height: 380px; border: 1px solid rgba(80, 214, 255, .13); border-radius: 50%; content: ""; }
.community-release__copy, .community-release__cards { position: relative; z-index: 1; }
.community-release h2 { max-width: 520px; font-size: clamp(38px, 4vw, 54px); }
.community-release__copy > p { max-width: 560px; margin: 20px 0 0; color: #a9b6c7; font-size: 15px; line-height: 1.65; }
.community-release__cards { display: grid; gap: 12px; }
.community-card { display: grid; min-height: 76px; grid-template-columns: 46px 1fr auto; align-items: center; gap: 14px; padding: 14px 18px; border: 1px solid rgba(130, 195, 255, .16); border-radius: 16px; background: rgba(7, 15, 31, .72); color: #eff8ff; text-decoration: none; transition: border-color .16s ease, transform .16s ease, background-color .16s ease; }
.community-card:hover, .community-card:focus-visible { border-color: rgba(80, 217, 255, .42); background: rgba(10, 26, 49, .84); outline: none; transform: translateX(3px); }
.community-card__icon { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 13px; background: rgba(75, 194, 255, .11); color: var(--nl3-cyan); font-size: 18px; }
.community-card small, .community-card strong { display: block; }
.community-card small { color: #74869e; font-size: 10px; font-weight: 600; }
.community-card strong { margin-top: 2px; font-size: 14px; }
.community-card__arrow { color: #5e748f; }

.release-footer { position: relative; margin-top: 98px; padding: 58px 0 26px; border-top: 1px solid rgba(132, 194, 255, .12); background: rgba(3, 6, 18, .88); }
.release-footer__top { display: grid; grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(120px, .65fr)); gap: 54px; }
.release-footer__brand .logo { display: block; width: 190px; height: 58px; background-position: center; background-size: contain; }
.release-footer__brand p { max-width: 340px; margin: 18px 0 0; color: #76869d; font-size: 13px; line-height: 1.65; }
.release-footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.release-footer__title { margin-bottom: 7px; color: #e8f4ff; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.release-footer__column a { color: #71839b; font-size: 12px; text-decoration: none; }
.release-footer__column a:hover, .release-footer__column a:focus-visible { color: var(--nl3-cyan); outline: none; }
.release-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(132, 194, 255, .09); color: #53647a; font-size: 10px; }
.release-footer__status { display: inline-flex; align-items: center; }

/* Final cascade corrections for legacy CMS styles and placeholder content. */
.hero-mark { display: flex !important; }
.start-steps__grid > article:first-child button { color: #dff8ff !important; }
.news-feature__image {
  background-image:
    linear-gradient(150deg, rgba(5, 14, 30, .08), rgba(5, 14, 30, .52)),
    url('/images/nolife-aurora-bg-premium.jpg') !important;
  background-position: 50% 30%;
}
.news-grid .news-card:first-child .news-card__image {
  background-image:
    linear-gradient(150deg, rgba(5, 14, 30, .08), rgba(5, 14, 30, .52)),
    url('/images/nolife-aurora-bg-premium.jpg') !important;
  background-position: 18% 68%;
}
.news-grid .news-card:nth-child(2) .news-card__image { background-position: 82% 72%; }
.release-main { padding-bottom: 96px !important; }
.release-footer { margin-top: 0 !important; }

@keyframes nl3-orbit { to { transform: translateX(-50%) rotate(360deg); } }
@keyframes nl3-orbit-reverse { to { transform: translateX(-50%) rotate(-360deg); } }

@media (max-width: 1120px) {
  .release-nav__inner { gap: 17px; }
  .release-nav__logo { flex-basis: 160px; width: 160px; }
  .release-nav__links .link, .release-nav__dropdown-label, .release-nav__login { padding-inline: 8px; font-size: 13px; }
  .release-layout { grid-template-columns: minmax(0, 1fr) 320px; }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature__image { min-height: 280px; }
}

@media (max-width: 991.98px) {
  .release-shell .wrapper, .release-layout, .start-steps, .community-release { width: min(100% - 36px, 760px); }
  .release-nav { height: 72px; }
  .release-nav__logo { flex-basis: 158px; width: 158px; height: 50px; }
  .release-nav__links, .release-nav__actions { display: none !important; }
  .release-nav__mobile-toggle { display: inline-flex !important; width: 46px; height: 46px; flex-direction: column; align-items: center; justify-content: center; gap: 7px; margin: 0 0 0 auto; padding: 0; border: 1px solid rgba(127, 199, 255, .18); border-radius: 13px; background: rgba(100, 171, 255, .06); cursor: pointer; }
  .release-nav__mobile-toggle span { display: block; width: 19px; height: 1px; background: #dff7ff; }
  .home-hero, .home-hero .wrapper { min-height: auto; }
  .home-hero__grid { grid-template-columns: 1fr; gap: 44px; padding: 76px 0 92px; }
  .home-hero__copy { max-width: 680px; }
  .home-hero h1 { font-size: clamp(48px, 10vw, 72px); }
  .home-hero__visual { min-height: 390px; }
  .home-hero__visual::after { top: 35px; width: 220px; height: 220px; }
  .hero-orbit { top: 56px; width: 184px; height: 184px; }
  .hero-orbit--two { width: 150px; height: 150px; margin-top: 17px; }
  .hero-mark { top: 102px; }
  .hero-mark > span { width: 76px; height: 76px; font-size: 39px; }
  .release-main { padding-top: 68px; }
  .release-layout { grid-template-columns: 1fr; }
  .release-sidebar { position: static; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
  .start-steps__grid { grid-template-columns: 1fr; }
  .start-steps__grid > article { min-height: 290px; }
  .start-steps__icon { margin-top: 26px; }
  .community-release { grid-template-columns: 1fr; gap: 34px; }
  .release-footer__top { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 680px) {
  .release-shell .wrapper, .release-layout, .start-steps, .community-release { width: calc(100% - 28px); }
  .home-hero__grid { gap: 34px; padding: 58px 0 80px; }
  .home-hero__eyebrow { margin-bottom: 16px; font-size: 10px; }
  .home-hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .home-hero__copy > p { margin-top: 22px; font-size: 16px; line-height: 1.58; }
  .home-hero__actions { align-items: stretch; flex-direction: column; gap: 15px; margin-top: 28px; }
  .release-button--hero { width: 100%; }
  .home-hero__secondary { justify-content: center; }
  .home-hero__trust { align-items: flex-start; flex-direction: column; margin-top: 24px; }
  .home-hero__visual { min-height: 360px; border-radius: 22px; }
  .hero-mark small { display: none; }
  .server-pulse { right: 14px; bottom: 14px; left: 14px; padding: 16px; }
  .home-hero__scroll { display: none; }
  .release-section-heading { display: block; }
  .release-section-heading > p { margin-top: 14px; text-align: left; }
  .release-section-heading--center > p { text-align: center; }
  .news-feature { min-height: 0; grid-template-columns: 1fr; }
  .news-feature__image { min-height: 230px; }
  .news-feature__content, .news-card__body { padding: 22px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: 440px; }
  .release-sidebar { grid-template-columns: 1fr; }
  .start-steps, .community-release { margin-top: 72px; }
  .release-main { padding-bottom: 72px !important; }
  .release-footer { margin-top: 0 !important; }
  .start-steps__grid > article { min-height: 310px; padding: 24px; }
  .community-release { min-height: 0; padding: 30px 22px; border-radius: 22px; }
  .community-release h2 { font-size: 36px; }
  .community-card { grid-template-columns: 42px 1fr auto; padding: 12px; }
  .community-card__icon { width: 42px; height: 42px; }
  .release-footer { padding-top: 44px; }
  .release-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 24px; }
  .release-footer__brand { grid-column: 1 / -1; }
  .release-footer__bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .release-nav__logo { flex-basis: 142px; width: 142px; }
  .home-hero h1 { font-size: 41px; }
  .home-hero__visual { min-height: 330px; }
  .home-hero__visual::after { width: 184px; height: 184px; }
  .hero-orbit { width: 152px; height: 152px; }
  .hero-orbit--two { width: 124px; height: 124px; margin-top: 14px; }
  .hero-mark { top: 88px; }
  .hero-mark > span { width: 66px; height: 66px; border-radius: 20px; font-size: 34px; }
  .server-pulse__value strong { font-size: 36px; }
  .release-footer__top { grid-template-columns: 1fr; }
  .release-footer__brand { grid-column: auto; }
}

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