/* ==========================================================
   SARIM — MULTI-PAGE STATIC WEBSITE
   No external fonts, frameworks, scripts, or stock artwork.
   ========================================================== */

:root {
  --bg: #05090f;
  --bg-raised: #09111b;
  --bg-panel: #0c1724;
  --bg-soft: #101e2e;
  --blue: #2699ff;
  --blue-bright: #6ac8ff;
  --blue-pale: #b6e8ff;
  --ice: #e9f7ff;
  --text: #e8eef5;
  --text-soft: #a6b3c1;
  --text-muted: #6f7f90;
  --line: rgba(128, 190, 232, 0.16);
  --line-strong: rgba(128, 190, 232, 0.29);
  --success: #5ad4a0;
  --warning: #f1c46b;
  --danger: #f07178;
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: 1180px;
  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 26px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10rem, rgba(35, 125, 205, 0.18), transparent 34rem),
    var(--bg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

::selection {
  color: #fff;
  background: #187bca;
}

.wrap {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 9px 13px;
  color: var(--bg);
  background: white;
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site {
  min-height: 100vh;
  overflow: hidden;
}

.announcement {
  position: relative;
  z-index: 30;
  padding: 8px 20px;
  color: #c5eaff;
  background: #071d31;
  border-bottom: 1px solid rgba(105, 197, 255, 0.18);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.announcement a {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.site-header {
  position: relative;
  z-index: 25;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 9, 15, 0.78);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.primary-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: #a8b6c4;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.045em;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--blue-bright);
  transition: right 170ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: white;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  right: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav {
  display: none;
  position: relative;
  justify-self: end;
}

.mobile-nav summary {
  cursor: pointer;
  list-style: none;
  color: white;
  font-weight: 800;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav nav {
  position: absolute;
  top: 44px;
  right: 0;
  width: min(310px, calc(100vw - 32px));
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(5, 12, 20, 0.98);
  box-shadow: var(--shadow);
}

.mobile-nav nav a {
  padding: 12px 13px;
  color: #c6d2dd;
  border-radius: 7px;
}

.mobile-nav nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  color: #03101b;
  background: linear-gradient(135deg, #74dcff, #279cff);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  box-shadow: 0 11px 32px rgba(24, 130, 213, 0.24);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
  transition: transform 170ms ease, filter 170ms ease, box-shadow 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 17px 38px rgba(24, 130, 213, 0.31);
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
}

.button-secondary {
  color: #dbe8f2;
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--line-strong);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.button-disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  color: #758393;
  background: #14202c;
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(90, 212, 160, 0.09);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.04;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  letter-spacing: -0.035em;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 50px;
}

.section-heading p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 17px;
}

.section-kicker {
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rule {
  height: 1px;
  background: var(--line);
}

/* Home hero */

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 88px 0 96px;
  background:
    linear-gradient(90deg, rgba(5, 9, 15, 0.97), rgba(5, 9, 15, 0.45) 57%, rgba(5, 9, 15, 0.8)),
    linear-gradient(180deg, #0b1a2a, #05090f);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -190px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 141, 228, 0.25), rgba(24, 85, 139, 0.08) 43%, transparent 69%);
  filter: blur(10px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 42px;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 25px;
  font-size: clamp(4rem, 7.5vw, 7.25rem);
  letter-spacing: -0.055em;
}

.hero h1 em {
  color: var(--blue-pale);
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #b1bfcc;
  font-size: clamp(1.02rem, 1.75vw, 1.17rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 44px;
  color: #7d8ea0;
  font-size: 12px;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-note span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3d9de8;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.logo-stage {
  position: relative;
  width: min(550px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 15%;
  border: 1px solid rgba(116, 205, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(35, 133, 215, 0.14);
}

.logo-stage::after {
  inset: 26%;
  border-radius: 0;
  transform: rotate(45deg);
  border-color: rgba(116, 205, 255, 0.11);
}

.logo-stage img {
  width: 94%;
  filter: drop-shadow(0 30px 48px rgba(0, 0, 0, 0.62));
}



/* Current development focus — placed below the hero */

.focus-strip {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(40, 139, 220, 0.08), transparent 55%),
    #07101a;
}

.focus-strip-inner {
  min-height: 112px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.focus-label {
  margin: 0;
  color: var(--blue-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.focus-copy {
  display: grid;
  gap: 3px;
}

.focus-copy strong {
  color: white;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
}

.focus-copy span {
  color: #8798a8;
  font-size: 13px;
}

.focus-link {
  color: #d9edf9;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.focus-link:hover {
  color: white;
}

.legal-copy h3 {
  margin: 31px 0 10px;
  color: #dceaf4;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
}

/* Feature grid */

.features {
  background:
    radial-gradient(circle at 0 50%, rgba(32, 107, 170, 0.11), transparent 32rem),
    #080f17;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.feature-card {
  min-height: 330px;
  padding: 42px;
  background: #0a141f;
}

.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  background: #0b1724;
}

.feature-number {
  display: inline-block;
  margin-bottom: 65px;
  color: #50677d;
  font-family: var(--display);
  font-size: 18px;
}

.feature-card h3 {
  margin-bottom: 14px;
  color: white;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 500;
}

.feature-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: #91a0af;
}

.feature-card .mini-label {
  display: inline-block;
  margin-top: 25px;
  color: var(--blue-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Route cards */

.routes {
  background: #050a11;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 90% 0, rgba(48, 144, 224, 0.17), transparent 45%),
    #0a131e;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.route-card::before {
  content: attr(data-index);
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(173, 223, 255, 0.1);
  font-family: var(--display);
  font-size: 84px;
  line-height: 1;
}

.route-card:hover {
  transform: translateY(-5px);
  border-color: rgba(102, 194, 255, 0.42);
  background:
    radial-gradient(circle at 90% 0, rgba(48, 144, 224, 0.24), transparent 48%),
    #0b1724;
}

.route-card .tag {
  width: fit-content;
  margin-bottom: auto;
  padding: 4px 8px;
  color: #9bdcff;
  background: rgba(47, 150, 229, 0.09);
  border: 1px solid rgba(97, 194, 255, 0.18);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.route-card h3 {
  margin-bottom: 9px;
  color: white;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
}

.route-card p {
  margin-bottom: 18px;
  color: #8999a9;
  font-size: 14px;
}

.route-card .route-link {
  color: #ddecf8;
  font-size: 12px;
  font-weight: 850;
}

.route-card .route-link span {
  margin-left: 7px;
  color: var(--blue-bright);
}

/* Latest articles */

.latest {
  background:
    linear-gradient(115deg, rgba(8, 17, 27, 0.96), rgba(10, 28, 44, 0.86)),
    #08111b;
  border-block: 1px solid var(--line);
}

.latest-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.text-link {
  color: #b7c7d6;
  border-bottom: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 800;
}

.text-link:hover {
  color: white;
}

.article-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
  gap: 18px;
}

.article-card {
  min-height: 365px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, transparent 12%, rgba(5, 11, 18, 0.8)),
    radial-gradient(circle at 75% 0, rgba(53, 151, 230, 0.19), transparent 44%),
    #0b1622;
}

.article-card:first-child {
  min-height: 470px;
  padding: 42px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 13px;
  color: #75879a;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-meta span:first-child {
  color: var(--blue-bright);
}

.article-card h3 {
  margin-bottom: 12px;
  color: white;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.15;
}

.article-card:first-child h3 {
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.article-card p {
  margin-bottom: 21px;
  color: #8e9dad;
  font-size: 14px;
}

.article-card a {
  width: fit-content;
  color: #d8e9f7;
  font-size: 12px;
  font-weight: 850;
}

.article-card a span {
  margin-left: 7px;
  color: var(--blue-bright);
}


/* Discord community integration */

.discord-community {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 50%, rgba(88, 101, 242, 0.19), transparent 30rem),
    linear-gradient(135deg, #0a1420, #08101a);
}

.discord-community::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: 50%;
  border: 1px solid rgba(138, 151, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(88, 101, 242, 0.025),
    0 0 0 140px rgba(88, 101, 242, 0.018);
  transform: translateY(-50%);
}

.discord-community-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 64px;
}

.discord-community-copy h2 {
  margin-bottom: 20px;
}

.discord-community-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 25px;
  color: #9eadbb;
  font-size: 17px;
}

.discord-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 7px 12px;
  color: #c5d7e5;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
  font-weight: 800;
}

.discord-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(90, 212, 160, 0.08);
}

.discord-community-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.discord-button {
  color: white;
  background: linear-gradient(135deg, #7c88ff, #5865f2);
  box-shadow: 0 12px 34px rgba(88, 101, 242, 0.24);
}

.discord-button:hover {
  box-shadow: 0 18px 42px rgba(88, 101, 242, 0.33);
}

/* CTA */

.play-cta {
  position: relative;
  padding: 92px 0;
  color: #04111c;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.35), transparent 35%),
    linear-gradient(135deg, #74dcff, #319fe9 55%, #1f6ca8);
}

.play-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(5, 25, 39, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 25, 39, 0.18) 1px, transparent 1px);
  background-size: 40px 40px;
}

.play-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 55px;
}

.play-cta h2 {
  margin-bottom: 17px;
  color: #04111c;
}

.play-cta p {
  max-width: 670px;
  margin-bottom: 0;
  color: rgba(4, 17, 28, 0.72);
  font-weight: 650;
}

.play-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.button-dark {
  color: white;
  background: #06131f;
  border-color: #06131f;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.button-outline-dark {
  color: #06131f;
  background: transparent;
  border-color: rgba(4, 17, 28, 0.45);
  box-shadow: none;
}

/* Inner-page hero */

.page-hero {
  position: relative;
  padding: 105px 0 92px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 10%, rgba(43, 145, 229, 0.2), transparent 30rem),
    linear-gradient(150deg, #0a1724, #05090f 74%);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.21;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 7vw, 7rem);
  letter-spacing: -0.05em;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: #a9b8c6;
  font-size: 18px;
}

.breadcrumbs {
  margin-top: 32px;
  color: #728395;
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: white;
}

/* News listing */

.news-page {
  background: #070d14;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
}

.filter-chip {
  padding: 7px 12px;
  color: #98a9ba;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.filter-chip.is-active {
  color: #eaf7ff;
  background: rgba(51, 148, 225, 0.1);
  border-color: rgba(88, 190, 255, 0.32);
}

.news-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.news-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 120px;
  align-items: center;
  gap: 30px;
  min-height: 176px;
  padding: 28px 34px;
  background: #0a141f;
  transition: background 160ms ease;
}

.news-row:hover {
  background: #0c1926;
}

.news-row time {
  color: #778a9c;
  font-size: 12px;
}

.news-row h2 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 500;
}

.news-row p {
  margin-bottom: 0;
  color: #8798a8;
  font-size: 14px;
}

.news-row > span {
  justify-self: end;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 850;
}

/* Article */

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 70px;
}

.article-body {
  max-width: 780px;
}

.article-body .article-lead {
  color: #c4d0da;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.55;
}

.article-body h2 {
  margin: 54px 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.article-body h3 {
  margin: 38px 0 12px;
  color: white;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
}

.article-body p,
.article-body li {
  color: #9eacba;
}

.article-body ul {
  padding-left: 22px;
}

.article-body li {
  margin: 8px 0;
}

.article-callout {
  margin: 36px 0;
  padding: 24px 26px;
  border-left: 3px solid var(--blue);
  background: rgba(35, 126, 202, 0.08);
}

.article-callout strong {
  display: block;
  margin-bottom: 5px;
  color: white;
}

.article-aside {
  position: sticky;
  top: 28px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #0a141f;
}

.article-aside h3 {
  margin-bottom: 17px;
  color: white;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.article-aside a {
  display: block;
  padding: 10px 0;
  color: #8fa0b1;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.article-aside a:last-child {
  border-bottom: 0;
}

.article-aside a:hover {
  color: white;
}

/* Coming soon / service pages */

.center-panel {
  max-width: 900px;
  margin-inline: auto;
  padding: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 0, rgba(52, 148, 226, 0.18), transparent 43%),
    #0a141f;
  text-align: center;
  box-shadow: var(--shadow);
}

.center-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  color: var(--blue-pale);
  border: 1px solid rgba(111, 205, 255, 0.26);
  border-radius: 50%;
  background: rgba(48, 147, 225, 0.08);
  font-family: var(--display);
  font-size: 27px;
}

.center-panel h2 {
  margin-bottom: 20px;
}

.center-panel > p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: #98a8b7;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  color: #ffd997;
  border: 1px solid rgba(240, 190, 96, 0.24);
  border-radius: 999px;
  background: rgba(240, 190, 96, 0.07);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
  margin-top: 42px;
  text-align: left;
}

.service-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.018);
}

.service-card small {
  color: var(--blue-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 12px 0 9px;
  color: white;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
}

.service-card p {
  margin-bottom: 0;
  color: #8595a5;
  font-size: 13px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.download-card {
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #0a141f;
}

.download-card .platform {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--blue-bright);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.download-card h3 {
  margin-bottom: 11px;
  color: white;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
}

.download-card p {
  min-height: 72px;
  color: #8e9eae;
  font-size: 14px;
}

.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.step {
  counter-increment: steps;
  padding: 30px;
  background: #0a141f;
}

.step::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 32px;
  color: #526b81;
  font-family: var(--display);
  font-size: 18px;
}

.step h3 {
  margin-bottom: 10px;
  color: white;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
}

.step p {
  margin-bottom: 0;
  color: #8797a7;
  font-size: 13px;
}

/* Legal */

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin: 45px 0 14px;
  font-size: 2.2rem;
}

.legal-copy p,
.legal-copy li {
  color: #9aa9b8;
}

.legal-copy a {
  color: var(--blue-bright);
}

/* Footer */

.site-footer {
  padding: 72px 0 25px;
  background: #03070b;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 1fr);
  gap: 70px;
  padding-bottom: 54px;
}

.footer-brand p {
  max-width: 400px;
  margin-top: 17px;
  color: #6e7e8f;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.footer-links h3 {
  margin-bottom: 16px;
  color: #dce7f0;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: #738292;
  font-size: 12px;
}

.footer-links a:hover {
  color: white;
}

.footer-legal {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  color: #526170;
  font-size: 10px;
  line-height: 1.65;
}

.footer-legal p {
  margin-bottom: 5px;
}

.footer-legal a {
  color: #6d7d8c;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 404 */

.error-page {
  min-height: 75vh;
  display: grid;
  place-items: center;
  padding: 90px 0;
}

.error-panel {
  max-width: 700px;
  text-align: center;
}

.error-code {
  margin-bottom: 10px;
  color: rgba(118, 210, 255, 0.14);
  font-family: var(--display);
  font-size: clamp(7rem, 20vw, 14rem);
  line-height: 0.9;
}

.error-panel h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.error-panel p {
  margin-bottom: 28px;
  color: #8fa0b1;
}

/* Responsive */

@media (max-width: 980px) {

  .discord-community-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .discord-community-actions {
    justify-content: flex-start;
  }
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .logo-stage {
    max-width: 560px;
  }

  .route-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-card:first-child {
    grid-column: 1 / -1;
  }

  .play-cta-inner {
    grid-template-columns: 1fr;
  }

  .play-cta-actions {
    justify-content: flex-start;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
    max-width: 600px;
  }

  .footer-main {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

@media (max-width: 740px) {

  .focus-strip-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 26px;
  }

  .focus-link {
    margin-top: 5px;
  }
  .wrap {
    width: min(calc(100% - 28px), var(--content));
  }

  .announcement {
    padding-inline: 12px;
    font-size: 9px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    font-size: 17px;
  }

  .hero {
    min-height: auto;
    padding: 78px 0 85px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 16vw, 5.3rem);
  }

  .hero-visual {
    min-height: 380px;
  }

  .section {
    padding: 84px 0;
  }

  h2 {
    font-size: clamp(2.6rem, 12vw, 4.1rem);
  }

  .feature-grid,
  .route-grid,
  .article-grid,
  .service-grid,
  .download-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 280px;
    padding: 30px;
  }

  .feature-number {
    margin-bottom: 42px;
  }

  .article-card:first-child {
    grid-column: auto;
  }

  .latest-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-card,
  .article-card:first-child {
    min-height: 360px;
    padding: 28px;
  }

  .play-cta {
    padding: 72px 0;
  }

  .page-hero {
    padding: 80px 0 72px;
  }

  .page-hero h1 {
    font-size: clamp(3.3rem, 15vw, 5.2rem);
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 25px;
  }

  .news-row > span {
    justify-self: start;
  }

  .center-panel {
    padding: 38px 24px;
  }

  .download-card p {
    min-height: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {

  .discord-community-actions {
    display: grid;
  }

  .discord-community-actions .button {
    width: 100%;
  }
  .hero-actions,
  .play-cta-actions {
    display: grid;
  }

  .hero-actions .button,
  .play-cta-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 315px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
