:root {
  color-scheme: light;
  --ink: #111614;
  --muted: #5b665f;
  --soft: #eef0eb;
  --paper: #fffefa;
  --line: #d9ded7;
  --dark: #07110e;
  --dark-2: #0f1d18;
  --dark-3: #18251f;
  --green: #5dc783;
  --green-2: #2f9b61;
  --green-3: #dff5e6;
  --cyan: #35b7d8;
  --orange: #d95c2a;
  --shadow: 0 18px 46px rgba(15, 22, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.48;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(22px, 4.4vw, 58px);
  background: rgba(255, 254, 250, 0.94);
  border-bottom: 1px solid rgba(217, 222, 215, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 14px rgba(47, 155, 97, 0.18);
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3.2vw, 38px);
  width: 100%;
  color: #1f2924;
  font-size: 0.94rem;
}

.main-nav a,
.lang-link {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.main-nav a:hover,
.lang-link:hover {
  border-color: var(--green-2);
}

.lang-link {
  color: #207647;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fffefa;
  background: var(--dark);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 14, 0.98) 0%, rgba(7, 17, 14, 0.9) 39%, rgba(7, 17, 14, 0.54) 63%, rgba(7, 17, 14, 0.7) 100%),
    linear-gradient(180deg, rgba(7, 17, 14, 0.12) 0%, rgba(7, 17, 14, 0.92) 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(460px, 1fr);
  gap: clamp(36px, 5vw, 76px);
  width: min(1260px, calc(100% - 88px));
  margin: 0 auto;
  padding: 78px 0 112px;
  align-items: center;
}

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

.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(3.6rem, 7vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.motto {
  margin-bottom: 18px;
  color: #ecf5ef;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 800;
}

.hero-copy p:not(.eyebrow):not(.motto) {
  max-width: 560px;
  margin-bottom: 0;
  color: #dbe5de;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 7px;
  font-size: 0.93rem;
  font-weight: 850;
  white-space: nowrap;
}

.button {
  padding: 0 20px;
  border: 1px solid transparent;
}

.button.primary {
  color: #0a1712;
  background: linear-gradient(135deg, #6dd58e, #43b872);
  box-shadow: 0 10px 24px rgba(67, 184, 114, 0.28);
}

.button.primary:hover {
  filter: brightness(1.05);
}

.button.ghost {
  color: #fffefa;
  border-color: rgba(255, 254, 250, 0.42);
  background: rgba(255, 254, 250, 0.06);
}

.button.ghost:hover {
  border-color: var(--green);
}

.server-panel {
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 368px;
  overflow: hidden;
  background: rgba(16, 29, 24, 0.72);
  border: 1px solid rgba(255, 254, 250, 0.14);
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.panel-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-right: 1px solid rgba(255, 254, 250, 0.08);
}

.rail-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: rgba(230, 238, 232, 0.58);
  border-radius: 7px;
  font-size: 0.98rem;
}

.rail-icon.active {
  color: #7ee8ff;
  background: rgba(53, 183, 216, 0.15);
}

.panel-main {
  padding: 17px 18px 20px;
}

.panel-top,
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-top {
  padding-bottom: 16px;
  color: #f5fbf7;
  border-bottom: 1px solid rgba(255, 254, 250, 0.09);
  font-size: 0.95rem;
}

.panel-actions {
  display: flex;
  gap: 18px;
  color: rgba(244, 250, 246, 0.68);
}

.panel-title {
  margin: 16px 0 14px;
}

.panel-title h2 {
  margin: 0;
  color: #fffefa;
  font-size: 1.1rem;
}

.panel-title p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: rgba(240, 247, 242, 0.75);
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-title strong {
  color: var(--green);
}

.switch {
  position: relative;
  width: 27px;
  height: 15px;
  background: rgba(93, 199, 131, 0.78);
  border-radius: 999px;
}

.switch::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 9px;
  height: 9px;
  content: "";
  background: #fff;
  border-radius: 50%;
}

.dashboard-list {
  display: grid;
  gap: 13px;
}

.dashboard-server {
  display: grid;
  grid-template-columns: 48px minmax(150px, 1.45fr) minmax(60px, 0.55fr) minmax(92px, 0.7fr) minmax(106px, 0.8fr);
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 12px 14px;
  background: rgba(255, 254, 250, 0.06);
  border: 1px solid rgba(255, 254, 250, 0.09);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.server-icon,
.mini-icon {
  flex: 0 0 auto;
  background: #111815;
  border: 1px solid rgba(255, 254, 250, 0.18);
  border-radius: 5px;
}

.server-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
}

.server-icon img {
  width: 100%;
  height: 100%;
  padding: 3px;
  object-fit: contain;
}

.mini-icon {
  display: block;
  width: 24px;
  height: 24px;
  padding: 2px;
  object-fit: contain;
}

.server-name strong,
.server-name span {
  display: block;
}

.server-name strong {
  margin-bottom: 5px;
  color: #f7fbf8;
  font-size: 0.78rem;
}

.server-name span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  color: #7ee094;
  font-size: 0.66rem;
}

.server-name span i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.server-name b {
  color: rgba(238, 246, 241, 0.72);
  font-weight: 500;
}

.metric span,
.metric strong {
  display: block;
}

.metric span {
  color: #b9c6bf;
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric strong {
  margin: 4px 0 4px;
  color: #edf6f1;
  font-size: 0.66rem;
  font-weight: 600;
}

.metric i {
  display: block;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 254, 250, 0.12);
  border-radius: 999px;
}

.metric i::before {
  display: block;
  width: var(--value);
  height: 100%;
  content: "";
  background: var(--green);
}

.service-stack {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 8px;
  width: min(1160px, calc(100% - 88px));
  margin: -64px auto 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(270px, 0.52fr) minmax(300px, 1fr) auto;
  gap: clamp(26px, 4.3vw, 56px);
  align-items: center;
  min-height: 132px;
  padding: 12px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 9px 24px rgba(18, 24, 21, 0.07);
}

.feature-row h2,
.contact-band h2 {
  margin-bottom: 6px;
  color: #0b1110;
  font-size: 1.34rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.feature-row p,
.contact-band p,
.footer-brand p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.feature-copy {
  max-width: 480px;
}

.feature-copy.compact {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 300px;
}

.outline-button {
  min-width: 136px;
  padding: 0 17px;
  color: #2d8a57;
  border: 1px solid #38a868;
  background: rgba(255, 255, 255, 0.36);
}

.outline-button:hover {
  color: #fff;
  background: #2f9b61;
}

.outline-button.small {
  align-self: flex-start;
  min-width: 154px;
  margin-top: 22px;
}

.web-preview {
  position: relative;
  width: min(100%, 360px);
  height: 130px;
  overflow: hidden;
  background: #f8faf8;
  border: 1px solid #d9dfda;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}

.window-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  background: #2d3733;
}

.window-bar::before {
  position: absolute;
  top: 6px;
  left: 11px;
  width: 5px;
  height: 5px;
  content: "";
  background: #e55035;
  border-radius: 50%;
  box-shadow: 10px 0 #e1be3c, 20px 0 #54c879;
}

.window-nav {
  position: absolute;
  top: 18px;
  bottom: 0;
  left: 0;
  width: 54px;
  background: #4a5551;
}

.window-nav::before {
  position: absolute;
  top: 14px;
  left: 13px;
  width: 24px;
  height: 5px;
  content: "";
  background: rgba(255,255,255,0.38);
  border-radius: 99px;
  box-shadow: 0 17px rgba(255,255,255,0.2), 0 34px rgba(255,255,255,0.16), 0 51px rgba(255,255,255,0.13);
}

.image-placeholder {
  position: absolute;
  top: 49px;
  left: 91px;
  width: 108px;
  height: 58px;
  background:
    linear-gradient(135deg, transparent 42%, #bbc9ce 43% 62%, transparent 63%),
    linear-gradient(45deg, transparent 43%, #cdd7db 44% 64%, transparent 65%),
    #e5ebed;
  border-radius: 5px;
}

.text-line {
  position: absolute;
  left: 226px;
  height: 6px;
  background: #d4dce0;
  border-radius: 99px;
}

.line-a {
  top: 51px;
  width: 112px;
}

.line-b {
  top: 72px;
  width: 128px;
}

.line-c {
  top: 93px;
  width: 92px;
}

.web-badge {
  position: absolute;
  right: -8px;
  bottom: -6px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #72d695, #248653);
  border-radius: 7px;
  box-shadow: 0 9px 18px rgba(35, 77, 52, 0.25);
  font-size: 1.35rem;
}

.games-row {
  grid-template-columns: minmax(270px, 0.43fr) minmax(600px, 1fr);
  padding-top: 24px;
  padding-bottom: 24px;
}

.server-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 2fr 0.65fr 0.95fr 1fr 0.6fr;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  padding: 0 15px;
}

.table-head {
  color: #59645f;
  font-size: 0.67rem;
  font-weight: 900;
  text-transform: uppercase;
}

.table-row {
  border-top: 1px solid var(--line);
  color: #202923;
  font-size: 0.82rem;
  font-weight: 680;
}

.table-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-row b {
  display: inline-block;
  width: 72px;
  height: 4px;
  margin-right: 8px;
  overflow: hidden;
  vertical-align: middle;
  background: #e1e5e1;
  border-radius: 99px;
}

.table-row b::before {
  display: block;
  width: var(--value);
  height: 100%;
  content: "";
  background: var(--green-2);
}

.mini-icon {
  width: 24px;
  height: 24px;
}

.online-pill {
  justify-self: start;
  min-width: 48px;
  padding: 5px 8px;
  color: #26804f;
  background: var(--green-3);
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 850;
  text-align: center;
}

.feature-image {
  width: min(100%, 360px);
  height: 112px;
  border-radius: 5px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.vps-image {
  object-fit: contain;
  background: #fff;
}

.vps-graphic {
  position: relative;
  width: min(100%, 360px);
  height: 112px;
  background:
    linear-gradient(145deg, transparent 0 48%, rgba(17, 24, 21, 0.09) 49% 51%, transparent 52%),
    linear-gradient(35deg, transparent 0 48%, rgba(17, 24, 21, 0.08) 49% 51%, transparent 52%);
}

.vps-graphic span {
  position: absolute;
  left: 88px;
  width: 160px;
  height: 50px;
  background: linear-gradient(145deg, #303a35, #111815);
  border: 1px solid #44514b;
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transform: skewY(-13deg);
}

.vps-graphic span:first-child {
  top: 24px;
}

.vps-graphic span:last-child {
  top: 60px;
}

.vps-graphic span::after {
  position: absolute;
  right: 17px;
  bottom: 12px;
  width: 8px;
  height: 6px;
  content: "";
  background: var(--green);
  border-radius: 2px;
  box-shadow: -13px 0 #2a9b5d;
}

.contact-band {
  display: grid;
  grid-template-columns: 92px minmax(260px, 1fr) minmax(210px, 0.22fr);
  gap: 24px;
  align-items: center;
  min-height: 118px;
  padding: 28px 36px;
  overflow: hidden;
  color: #fffefa;
  background:
    linear-gradient(90deg, rgba(7, 17, 14, 0.98), rgba(7, 17, 14, 0.92) 42%, rgba(7, 17, 14, 0.72)),
    url("hero-infrastructure-v2.png") center right / cover;
  border-radius: 8px;
}

.contact-band h2,
.contact-band p {
  color: #fffefa;
}

.contact-band p {
  max-width: 470px;
}

.chat-icon {
  position: relative;
  width: 72px;
  height: 72px;
  border: 3px solid var(--green);
  border-radius: 50%;
}

.chat-icon::after {
  position: absolute;
  left: 9px;
  bottom: -9px;
  width: 24px;
  height: 24px;
  content: "";
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-16deg);
}

.chat-icon span {
  position: absolute;
  top: 32px;
  left: 21px;
  width: 7px;
  height: 7px;
  background: #9de7b5;
  border-radius: 50%;
  box-shadow: 14px 0 #9de7b5, 28px 0 #9de7b5;
}

.button.arrow {
  min-height: 56px;
  color: #fff;
  font-size: 1.05rem;
}

.button.arrow::after {
  margin-left: 22px;
  content: "›";
  font-size: 1.9rem;
  line-height: 0;
}

.site-footer {
  margin-top: 0;
  color: #dce7e1;
  background:
    radial-gradient(circle at 80% 10%, rgba(93, 199, 131, 0.13), transparent 32%),
    #07110e;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 0.9fr;
  gap: clamp(24px, 6vw, 78px);
  width: min(1160px, calc(100% - 88px));
  margin: 0 auto;
  padding: 26px 0 16px;
}

.footer-brand p {
  max-width: 310px;
  margin-top: 18px;
  color: #aebbb4;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: #edf6f1;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer nav a {
  display: block;
  margin: 6px 0;
  color: #dbe5df;
  font-size: 0.88rem;
}

.site-footer nav a:hover,
.footer-bottom a:hover {
  color: var(--green);
}

.socials div {
  display: flex;
  gap: 14px;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fffefa;
  background: rgba(255, 254, 250, 0.08);
  border: 1px solid rgba(255, 254, 250, 0.08);
  border-radius: 50%;
  font-size: 1rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  padding-top: 16px;
  color: #9aa8a1;
  border-top: 1px solid rgba(255, 254, 250, 0.1);
  font-size: 0.75rem;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 22px;
}

@media (max-width: 1080px) {
  .hero-inner,
  .service-stack,
  .footer-inner {
    width: min(100% - 40px, 1160px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .server-panel {
    max-width: 760px;
  }

  .feature-row {
    grid-template-columns: minmax(220px, 0.5fr) 1fr;
  }

  .feature-row > .outline-button {
    grid-column: 2;
    justify-self: start;
  }

  .games-row {
    grid-template-columns: 1fr;
  }

  .feature-copy.compact {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .main-nav {
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .lang-link {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 32px, 680px);
    padding-bottom: 96px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .server-panel {
    grid-template-columns: 1fr;
  }

  .panel-rail {
    display: none;
  }

  .dashboard-server {
    grid-template-columns: 42px 1fr;
  }

  .metric {
    display: none;
  }

  .service-stack {
    width: min(100% - 24px, 680px);
    margin-top: -52px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .feature-row > .outline-button {
    grid-column: auto;
  }

  .web-preview,
  .feature-image,
  .vps-graphic {
    width: 100%;
  }

  .table-head {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding: 12px;
  }

  .table-row span:nth-child(2),
  .table-row span:nth-child(3),
  .table-row span:nth-child(4) {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 600;
  }

  .contact-band {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    width: min(100% - 32px, 680px);
  }

  .footer-brand,
  .socials,
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-copy small {
    font-size: 0.72rem;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.86rem;
  }

  .hero-inner {
    width: min(100% - 24px, 460px);
    padding: 42px 0 78px;
  }

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

  .server-panel {
    min-height: 0;
  }

  .panel-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .dashboard-server {
    gap: 10px;
    padding: 10px;
  }

  .service-stack {
    margin-top: -36px;
  }

  .line-a,
  .line-b,
  .line-c {
    left: 185px;
    max-width: calc(100% - 200px);
  }

  .image-placeholder {
    left: 74px;
    width: 92px;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .online-pill {
    justify-self: start;
  }

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

  .footer-bottom,
  .footer-bottom span:last-child {
    flex-direction: column;
    gap: 8px;
  }
}
