@charset "utf-8";

:root {
  --ow-bg: #070814;
  --ow-bg-soft: #151232;
  --ow-panel: rgba(11, 12, 29, 0.84);
  --ow-panel-strong: rgba(8, 9, 24, 0.94);
  --ow-border: rgba(150, 121, 235, 0.24);
  --ow-border-strong: rgba(247, 191, 111, 0.52);
  --ow-text: #f3f2ff;
  --ow-text-soft: #c8c4df;
  --ow-accent: #db9b51;
  --ow-accent-strong: #ffd69c;
  --ow-green: #8fbc8f;
  --ow-red: #d86c5b;
  --ow-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

@keyframes owFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes owFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes owPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(143, 188, 143, 0.32);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(143, 188, 143, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(143, 188, 143, 0);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ow-text);
  font: 15px/1.7 "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 184, 92, 0.18), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(101, 122, 255, 0.22), transparent 24%),
    radial-gradient(circle at 50% 0%, rgba(188, 103, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #0f1027 0%, #090a18 40%, #05060f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.22;
  pointer-events: none;
}

a {
  color: var(--ow-accent-strong);
  text-decoration: none;
}

a:hover {
  color: #ffe1b2;
}

.site-frame {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 40px;
  z-index: 1;
}

.site-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
}

.site-glow-left {
  left: -80px;
  top: 80px;
  background: rgba(185, 98, 255, 0.3);
  animation: owFloat 20s ease-in-out infinite;
}

.site-glow-right {
  right: -60px;
  top: 180px;
  background: rgba(85, 171, 255, 0.26);
  animation: owFloat 24s ease-in-out infinite reverse;
}

.hero-panel,
.primary-nav,
.submenu-shell,
.content-card,
.side-card,
.site-footer {
  border: 1px solid var(--ow-border);
  background: var(--ow-panel);
  box-shadow: var(--ow-shadow);
  backdrop-filter: blur(8px);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.75fr);
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  animation: owFadeUp 680ms ease both;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 24, 0.92) 0%, rgba(8, 9, 24, 0.7) 46%, rgba(8, 9, 24, 0.9) 100%),
    radial-gradient(circle at 58% 36%, rgba(255, 214, 143, 0.22), transparent 18%),
    url("assets/hero-portal.webp") center center / cover no-repeat;
  opacity: 0.84;
  transform: scale(1.03);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 35%, rgba(214, 154, 75, 0.05));
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  margin: 0 0 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--ow-accent-strong);
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-brand {
  display: flex;
  align-items: center;
  max-width: min(100%, 680px);
}

.hero-logo {
  display: block;
  width: min(100%, 640px);
  height: auto;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.45));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-text {
  max-width: 52ch;
  margin: 18px 0 0;
  color: var(--ow-text-soft);
  font-size: 17px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ow-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--ow-text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.hero-button:hover {
  transform: translateY(-1px);
  border-color: var(--ow-border-strong);
  background: rgba(255, 255, 255, 0.08);
}

.hero-button-primary {
  color: #1b1510;
  background: linear-gradient(135deg, #f0c07a, #c98936);
  border-color: transparent;
}

.hero-button-primary:hover {
  color: #1b1510;
  background: linear-gradient(135deg, #ffd498, #d59137);
}

.hero-status-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: var(--ow-panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-self: stretch;
  overflow: hidden;
}

.hero-status-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top right, rgba(112, 176, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 45%);
  pointer-events: none;
}

.hero-status-card.is-online {
  box-shadow: inset 0 0 0 1px rgba(143, 188, 143, 0.12);
}

.hero-status-card.is-offline {
  box-shadow: inset 0 0 0 1px rgba(216, 108, 91, 0.18);
}

.hero-status-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ow-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
}

.hero-status-label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ow-red);
  flex: 0 0 auto;
}

.hero-status-card.is-online .hero-status-label::before {
  background: var(--ow-green);
  animation: owPulse 2.8s ease-out infinite;
}

.hero-status-main {
  margin-top: 8px;
  font: 700 clamp(34px, 5vw, 58px)/1 "Cinzel", serif;
  color: var(--ow-accent-strong);
}

.hero-status-main span {
  font-size: 0.42em;
  color: var(--ow-text-soft);
  margin-left: 8px;
}

.hero-status-subtitle {
  margin-top: 4px;
  color: var(--ow-text-soft);
}

.hero-status-note {
  margin-top: 10px;
  color: var(--ow-text);
  font-size: 13px;
  font-weight: 700;
}

.hero-status-list {
  margin: 22px 0 0;
}

.hero-status-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-status-list dt {
  color: var(--ow-text-soft);
}

.hero-status-list dd {
  margin: 0;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 22px;
  animation: owFadeUp 760ms ease both;
  animation-delay: 60ms;
}

.tab {
  appearance: none;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ow-text-soft);
  padding: 11px 16px;
  border-radius: 999px;
  font: 700 12px/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.tab:hover,
.tab-active {
  color: #111;
  background: linear-gradient(135deg, #e8bb76, #ba7d32);
  border-color: transparent;
}

.submenu-shell {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  animation: owFadeUp 860ms ease both;
  animation-delay: 120ms;
}

.submenu-row {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
}

.submenu-link {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ow-text);
  font-size: 13px;
  font-weight: 500;
}

.submenu-link:hover {
  background: rgba(255, 255, 255, 0.09);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  margin-top: 18px;
}

.content-main {
  animation: owFadeUp 960ms ease both;
  animation-delay: 180ms;
}

.content-side {
  animation: owFadeUp 1060ms ease both;
  animation-delay: 240ms;
}

.crumb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.crumbs {
  color: var(--ow-text-soft);
  font-size: 13px;
}

.crumbs span {
  color: rgba(255, 255, 255, 0.22);
  margin: 0 8px;
}

.crumb-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ow-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
}

.content-card {
  padding: 22px;
  border-radius: 26px;
}

.content-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-card {
  padding: 20px;
  border-radius: 24px;
}

.side-card h3 {
  margin: 0 0 14px;
  font: 700 24px/1.1 "Cinzel", serif;
}

.side-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ow-text-soft);
}

.side-list li + li {
  margin-top: 10px;
}

.side-list-plain {
  list-style: none;
  padding: 0;
}

.side-list-plain li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.side-list-plain li:first-child {
  border-top: 0;
  padding-top: 0;
}

.side-list-plain strong {
  color: var(--ow-text);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 20px;
  color: var(--ow-text-soft);
  font-size: 13px;
  animation: owFadeUp 1160ms ease both;
  animation-delay: 300ms;
}

.template-switcher select {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ow-text);
  padding: 8px 12px;
}

.ow-news-card {
  margin: 0 0 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ow-news-header {
  padding: 20px 22px 18px;
  background: linear-gradient(180deg, rgba(214, 154, 75, 0.12), rgba(255, 255, 255, 0.02));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ow-news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--ow-text-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.ow-news-icon {
  width: 18px;
  height: 18px;
}

.ow-news-title {
  margin: 0;
  font: 700 clamp(24px, 3vw, 34px)/1.1 "Cinzel", serif;
}

.ow-news-body {
  padding: 20px 22px 24px;
  color: var(--ow-text-soft);
}

.ow-news-body img {
  max-width: 100%;
  height: auto;
}

.ow-news-footer {
  display: flex;
  justify-content: flex-end;
  padding: 0 22px 18px;
}

.ow-downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.ow-download-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
}

.ow-download-card h2,
.ow-download-card h3 {
  margin: 0;
  font: 700 clamp(24px, 3vw, 34px)/1.1 "Cinzel", serif;
}

.ow-download-kicker {
  margin: 0 0 12px;
  color: var(--ow-accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

.ow-download-copy {
  margin: 14px 0 0;
  color: var(--ow-text-soft);
}

.ow-download-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--ow-text-soft);
}

.ow-download-list li + li {
  margin-top: 8px;
}

.ow-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.ow-download-meta {
  margin-top: 18px;
  color: var(--ow-text);
  font-size: 13px;
  font-weight: 700;
}

.ow-download-note,
.ow-download-release {
  margin-top: 14px;
  color: var(--ow-text-soft);
  font-size: 13px;
}

.ow-download-card code {
  font-family: "Space Grotesk", sans-serif;
  color: #ffe1b2;
}

#ticker {
  margin-bottom: 18px;
}

hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.TableContainer {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.TableContainer .CaptionContainer,
.TableContainer .CaptionContainer .CaptionInnerContainer {
  background: linear-gradient(90deg, rgba(214, 154, 75, 0.3), rgba(214, 154, 75, 0.14)) !important;
}

.TableContainer .CaptionContainer .Text {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ow-text);
}

.TableContainer .Odd,
.TableContainer .Even {
  background: transparent;
}

.TableContentContainer,
.InnerTableContainer {
  background: transparent !important;
}

table {
  color: var(--ow-text-soft);
}

td, th {
  color: inherit;
}

input,
select,
textarea,
button {
  font: inherit;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 10, 9, 0.45);
  color: var(--ow-text);
  padding: 10px 12px;
}

input[type="submit"],
.Button,
.BigButton {
  border-radius: 999px !important;
}

input[type="submit"],
button[type="submit"],
.Button,
.BigButton {
  border: 0;
  color: #1a130d !important;
  background: linear-gradient(135deg, #f0c07a, #c98936) !important;
  box-shadow: 0 16px 34px rgba(201, 137, 54, 0.18);
  cursor: pointer;
  transition: transform 140ms ease, filter 140ms ease, box-shadow 140ms ease;
}

input[type="submit"]:hover,
button[type="submit"]:hover,
.Button:hover,
.BigButton:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 20px 36px rgba(201, 137, 54, 0.24);
}

.warning,
.success,
.error {
  border-radius: 16px;
}

@media (max-width: 980px) {
  .hero-panel,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-side {
    order: -1;
  }
}

@media (max-width: 720px) {
  .site-frame {
    width: min(100% - 18px, 1180px);
    margin-top: 10px;
  }

  .hero-panel,
  .content-card,
  .side-card,
  .site-footer {
    padding: 18px;
  }

  .crumb-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    font-size: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
