/* ============================================================
   Nexon Public Home
   /
   ============================================================ */

.home-page {
  position: relative;
  display: block;
  overflow: hidden;
}

/* HERO */

.home-hero {
  position: relative;
  padding: 34px 0 22px;
}

.home-hero__shell {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 46px;
  border-radius: 36px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.30), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(168, 85, 247, 0.20), transparent 34%),
    radial-gradient(circle at 70% 70%, rgba(34, 197, 94, 0.13), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.060), rgba(255, 255, 255, 0.020)),
    rgba(8, 13, 29, 0.92);
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.home-hero__grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(147, 197, 253, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147, 197, 253, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}

.home-hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}

.home-hero__orb--one {
  top: -100px;
  right: -70px;
  width: 360px;
  height: 360px;
  background: rgba(59, 130, 246, 0.44);
}

.home-hero__orb--two {
  left: -100px;
  bottom: -90px;
  width: 310px;
  height: 310px;
  background: rgba(168, 85, 247, 0.34);
}

.home-hero__orb--three {
  right: 24%;
  bottom: 8%;
  width: 260px;
  height: 260px;
  background: rgba(34, 197, 94, 0.18);
}

.home-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.55fr);
  gap: 28px;
  align-items: center;
  min-height: 520px;
}

.home-hero__content {
  max-width: 980px;
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.18);
  background: rgba(255, 255, 255, 0.055);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-hero__badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.78);
}

.home-hero__title {
  margin: 26px 0 0;
  color: #ffffff;
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: -0.09em;
}

.home-hero__title span {
  display: block;
  max-width: 970px;
  margin-top: 14px;
  background: linear-gradient(90deg, #ffffff 0%, #93c5fd 30%, #86efac 62%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 0.98;
}

.home-hero__text {
  max-width: 860px;
  margin: 24px 0 0;
  color: rgba(219, 234, 254, 0.76);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 750;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-hero__button {
  min-height: 52px;
}

.home-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  margin-top: 32px;
}

.home-meta-card {
  min-height: 96px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(147, 197, 253, 0.13);
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 165, 250, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.045);
}

.home-meta-card__label {
  display: block;
  color: rgba(203, 213, 225, 0.68);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-meta-card__value {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.045em;
}

/* HERO CONSOLE */

.home-server-console {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.060), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 29, 0.76);
  box-shadow:
    0 24px 75px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-server-console::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.20), transparent 70%);
  pointer-events: none;
}

.home-server-console__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.home-server-console__label,
.home-server-console__small {
  display: block;
  color: rgba(203, 213, 225, 0.64);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-server-console__address {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.home-server-console__copy,
.home-server-card__copy {
  appearance: none;
  border: 1px solid rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.14);
  color: #bbf7d0;
  border-radius: 999px;
  min-height: 34px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.home-server-console__copy:hover,
.home-server-card__copy:hover {
  transform: translateY(-1px);
  border-color: rgba(134, 239, 172, 0.40);
  background: rgba(34, 197, 94, 0.20);
}

.home-server-console__monitor {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.home-server-console__ring {
  --progress: 0;
  --angle: 0deg;
  --mid-angle: 0deg;

  position: relative;
  flex: 0 0 142px;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    conic-gradient(
      from -90deg,
      #22c55e 0deg,
      #60a5fa var(--mid-angle),
      #a855f7 var(--angle),
      rgba(148, 163, 184, 0.16) var(--angle),
      rgba(148, 163, 184, 0.16) 360deg
    );
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.34),
    0 0 35px rgba(96, 165, 250, 0.10),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.home-server-console__ring::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(96, 165, 250, 0.10), transparent 35%),
    linear-gradient(180deg, rgba(9, 15, 33, 0.98), rgba(8, 13, 29, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(147, 197, 253, 0.10),
    inset 0 8px 30px rgba(255, 255, 255, 0.02);
}

.home-server-console__ring::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.14), transparent 70%);
  filter: blur(18px);
  opacity: 0.7;
  pointer-events: none;
}

.home-server-console__ring-core {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.home-server-console__ring-core strong {
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.home-server-console__ring-core span {
  color: rgba(203, 213, 225, 0.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.home-server-console__ring-dot {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.home-server-console__ring-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(96, 165, 250, 0.45);
  box-shadow:
    0 0 0 6px rgba(96, 165, 250, 0.10),
    0 0 20px rgba(96, 165, 250, 0.60),
    0 0 36px rgba(168, 85, 247, 0.35);
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(-57px);
  transform-origin: center center;
}

.home-server-console__monitor-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-server-console__small {
  display: block;
  color: rgba(203, 213, 225, 0.64);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-server-console__online {
  display: block;
  color: #86efac;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.home-server-console__monitor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-server-console__monitor-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(219, 234, 254, 0.76);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-server-console__progress {
  position: relative;
  z-index: 2;
  height: 11px;
  overflow: hidden;
  margin-top: 28px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.10);
  background: rgba(15, 23, 42, 0.88);
}

.home-server-console__progress span {
  display: block;
  min-width: 3px;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #60a5fa, #a855f7);
}

.home-server-console__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.home-server-console__stats div {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(147, 197, 253, 0.10);
  background: rgba(255, 255, 255, 0.035);
}

.home-server-console__stats span {
  display: block;
  color: rgba(203, 213, 225, 0.64);
  font-size: 12px;
  font-weight: 850;
}

.home-server-console__stats strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 950;
}

/* SECTIONS */

.home-section {
  padding: 32px 0;
}

.home-section--servers {
  padding-top: 22px;
}

.home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.home-section-head__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.18);
  background: rgba(34, 197, 94, 0.10);
  color: #bbf7d0;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.home-section-head__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.70);
}

/* SERVER CARDS */

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

.home-server-card {
  overflow: hidden;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(147, 197, 253, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.020)),
    rgba(8, 13, 29, 0.82);
  box-shadow:
    0 20px 65px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.home-server-card:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 197, 253, 0.30);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-server-card__top {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.home-server-card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  border: 1px solid rgba(96, 165, 250, 0.20);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.24), rgba(34, 197, 94, 0.08)),
    rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
}

.home-server-card__title {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.home-server-card__subtitle {
  margin: 7px 0 0;
  color: rgba(219, 234, 254, 0.64);
  font-size: 13px;
  font-weight: 800;
}

.home-server-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-server-status--online {
  border: 1px solid rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
}

.home-server-status--offline {
  border: 1px solid rgba(239, 68, 68, 0.22);
  background: rgba(239, 68, 68, 0.14);
  color: #fca5a5;
}

.home-server-card__address,
.home-server-card__online {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(147, 197, 253, 0.10);
  background: rgba(255, 255, 255, 0.035);
}

.home-server-card__address span,
.home-server-card__online-top span {
  display: block;
  color: rgba(203, 213, 225, 0.64);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-server-card__address strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.home-server-card__online-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-server-card__online-top strong {
  color: #86efac;
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
}

.home-server-card__bar {
  height: 10px;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.10);
  background: rgba(15, 23, 42, 0.88);
}

.home-server-card__bar span {
  display: block;
  min-width: 3px;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #22c55e, #60a5fa);
}

.home-server-card__players {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.home-server-card__players span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(219, 234, 254, 0.76);
  font-size: 12px;
  font-weight: 850;
}

.home-server-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: rgba(203, 213, 225, 0.62);
  font-size: 12px;
  font-weight: 850;
}

/* DOWNLOADS */

.home-section--downloads {
  padding-top: 8px;
}

.home-section-head__lead {
  margin: 10px 0 0;
  max-width: 720px;
  color: rgba(203, 213, 225, 0.78);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.home-downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.home-download-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(147, 197, 253, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.14), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 13, 29, 0.86);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-download-card--mobile {
  background:
    radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 13, 29, 0.86);
}

.home-download-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.home-download-card__platform {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #dbeafe;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-download-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.home-download-card__downloads {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.home-download-card__size {
  color: rgba(203, 213, 225, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.home-download-card__title {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.15;
}

.home-download-card__tagline {
  margin: 12px 0 0;
  color: rgba(219, 234, 254, 0.78);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}

.home-download-card__features {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  flex: 1;
}

.home-download-card__features li {
  position: relative;
  padding-left: 22px;
  color: rgba(226, 232, 240, 0.88);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.home-download-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4ade80;
  font-weight: 900;
}

.home-download-card__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
}

.home-download-card__btn {
  min-width: 220px;
}

.home-download-card__file {
  color: rgba(148, 163, 184, 0.82);
  font-size: 12px;
  font-weight: 750;
}

.home-download-card__soon {
  color: rgba(251, 191, 36, 0.92);
  font-size: 14px;
  font-weight: 750;
}

/* FEATURES */

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

.home-feature-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(147, 197, 253, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.020)),
    rgba(8, 13, 29, 0.82);
  box-shadow:
    0 20px 65px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.home-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 197, 253, 0.28);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-feature-card__icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 24px;
  border: 1px solid rgba(147, 197, 253, 0.14);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(168, 85, 247, 0.08)),
    rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 28px;
  font-weight: 950;
}

.home-feature-card__title {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.home-feature-card__text {
  margin: 12px 0 0;
  color: rgba(219, 234, 254, 0.72);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 700;
}

/* LINKS */

.home-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-link-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 132px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(147, 197, 253, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.10), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.020)),
    rgba(8, 13, 29, 0.82);
  text-decoration: none;
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.040);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.home-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 197, 253, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.026)),
    rgba(8, 13, 29, 0.86);
}

.home-link-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 19px;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.20), rgba(37, 99, 235, 0.08)),
    rgba(255, 255, 255, 0.04);
  color: #bbf7d0;
  font-size: 20px;
  font-weight: 950;
}

.home-link-card__title {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.home-link-card__text {
  margin: 6px 0 0;
  color: rgba(219, 234, 254, 0.68);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.home-link-card__arrow {
  color: #86efac;
  font-size: 22px;
  font-weight: 950;
}

/* START */

.home-start-card {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(440px, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(147, 197, 253, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 197, 94, 0.16), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(59, 130, 246, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.060), rgba(255, 255, 255, 0.020)),
    rgba(8, 13, 29, 0.88);
  box-shadow:
    0 24px 75px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.050);
}

.home-start-card__title {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.home-start-card__text {
  margin: 12px 0 0;
  color: rgba(219, 234, 254, 0.72);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
}

.home-start-steps {
  display: grid;
  gap: 12px;
}

.home-start-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(147, 197, 253, 0.10);
  background: rgba(255, 255, 255, 0.035);
}

.home-start-step__number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 19px;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(34, 197, 94, 0.08)),
    rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.home-start-step h3 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
}

.home-start-step p {
  margin: 6px 0 0;
  color: rgba(219, 234, 254, 0.68);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.home-start-card__actions {
  display: grid;
  gap: 10px;
  min-width: 190px;
}

/* EMPTY */

.home-empty {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
  min-height: 300px;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(147, 197, 253, 0.14);
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.020)),
    rgba(8, 13, 29, 0.82);
}

.home-empty__icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  color: #93c5fd;
  font-size: 30px;
  font-weight: 950;
}

.home-empty__title {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.home-empty__text {
  max-width: 620px;
  margin: 0;
  color: rgba(219, 234, 254, 0.70);
  line-height: 1.7;
}

/* TOAST */

.home-copy-toast {
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.22);
  background: rgba(8, 13, 29, 0.92);
  color: #bbf7d0;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  backdrop-filter: blur(16px);
}

.home-copy-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1380px) {
  .home-hero__layout,
  .home-start-card {
    grid-template-columns: 1fr;
  }

  .home-server-console {
    max-width: 620px;
  }

  .home-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .home-servers-grid,
  .home-features-grid,
  .home-downloads-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home-hero {
    padding-top: 20px;
  }

  .home-hero__shell,
  .home-start-card {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .home-hero__layout {
    min-height: auto;
  }

  .home-hero__title {
    font-size: 48px;
    letter-spacing: -0.06em;
  }

  .home-hero__title span {
    font-size: 32px;
    letter-spacing: -0.06em;
  }

  .home-hero__text {
    font-size: 16px;
  }

  .home-hero__meta,
  .home-links-grid,
  .home-server-console__stats {
    grid-template-columns: 1fr;
  }

  .home-section-head,
  .home-server-card__top,
  .home-server-card__online-top,
  .home-start-card {
    align-items: flex-start;
  }

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

  .home-server-status {
    width: fit-content;
  }

  .home-server-card,
  .home-feature-card,
  .home-start-card {
    border-radius: 24px;
  }

  .home-start-steps {
    width: 100%;
  }

  .home-hero__actions,
  .home-hero__actions .btn,
  .home-start-card__actions,
  .home-start-card__actions .btn {
    width: 100%;
  }
}
