:root {
  --background: #07080d;
  --background-soft: #0c0e16;
  --surface: rgba(16, 18, 29, 0.78);
  --surface-strong: #11131d;
  --surface-light: #171a27;
  --border: rgba(255, 255, 255, 0.09);
  --border-bright: rgba(217, 103, 22, 0.42);
  --text: #f5f5fa;
  --muted: #9599aa;
  --primary: #c65b16;
  --primary-bright: #ff7a00;
  --secondary: #d98a3d;
  --danger: #ff6b81;
  --success: #3fe0ad;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-large: 28px;
  --radius-medium: 18px;
  --radius-small: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  opacity: 0.34;
  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: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.background-glow {
  position: fixed;
  z-index: -3;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
}

.glow-one {
  top: -210px;
  right: -150px;
  width: 560px;
  height: 560px;
  background: rgba(180, 74, 13, 0.26);
}

.glow-two {
  left: -260px;
  top: 65vh;
  width: 520px;
  height: 520px;
  background: rgba(128, 54, 18, 0.13);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 14px 12px 20px;
  transform: translateX(-50%);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(10, 11, 18, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

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

.brand-mark {
  position: relative;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 11px 11px 15px 15px;
  background: linear-gradient(145deg, var(--primary-bright), var(--primary));
  box-shadow: 0 0 30px rgba(255, 122, 0, 0.34);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 10px;
  height: 12px;
  background: inherit;
}

.brand-mark::before {
  left: 0;
  clip-path: polygon(0 0, 100% 45%, 100% 100%, 0 75%);
}

.brand-mark::after {
  right: 0;
  clip-path: polygon(100% 0, 0 45%, 0 100%, 100% 75%);
}

.brand-eye {
  width: 14px;
  height: 7px;
  border-radius: 50% 50% 55% 55%;
  border-bottom: 2px solid white;
  transform: translateY(2px);
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-name span {
  color: var(--primary-bright);
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}

.nav-link {
  position: relative;
  padding: 9px 16px;
  color: var(--muted);
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(255,255,255,0.055);
}

.header-login {
  justify-self: end;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 11px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
  transition: 180ms ease;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 54px;
  padding-top: 130px;
  padding-bottom: 70px;
}

.eyebrow,
.section-kicker,
.modal-kicker {
  color: var(--primary-bright);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: 999px;
  background: rgba(198, 91, 22, 0.11);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(63, 224, 173, 0.1), 0 0 15px rgba(63, 224, 173, 0.55);
}

.hero h1,
.section-heading h2,
.links-intro h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 640px;
  margin: 25px 0 25px;
  font-size: clamp(3.7rem, 6.5vw, 6.6rem);
  font-weight: 700;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(92deg, #ff9a3d, #e66c18 48%, #ad430d 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-text {
  max-width: 580px;
  color: #a7aaba;
  font-size: 1.06rem;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255,255,255,0.035);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.075);
}

.button-primary {
  border-color: rgba(255, 137, 43, 0.72);
  background: linear-gradient(135deg, #f47a20, #b94b0f);
  box-shadow: 0 12px 30px rgba(190, 78, 15, 0.28);
}

.button-primary:hover {
  border-color: rgba(255, 166, 83, 0.92);
  background: linear-gradient(135deg, #ff8c32, #ce5a13);
  box-shadow: 0 16px 38px rgba(190, 78, 15, 0.36);
}

.button-outline {
  min-height: 42px;
  border-color: rgba(255, 122, 0, 0.38);
  background: rgba(198, 91, 22, 0.12);
}

.button-small {
  padding: 0 15px;
  font-size: 0.82rem;
}

.button-ghost {
  color: #b5b8c7;
}

.button-arrow {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.button:hover .button-arrow {
  transform: translate(2px, -2px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 44px;
}

.hero-meta div {
  min-width: 112px;
  padding-left: 14px;
  border-left: 1px solid var(--border);
}

.hero-meta strong,
.hero-meta span {
  display: block;
}

.hero-meta strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.hero-meta span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.dashboard-card {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(13, 14, 22, 0.93);
  box-shadow: 0 42px 100px rgba(0,0,0,0.48), 0 0 0 12px rgba(255,255,255,0.015);
  transform: perspective(1600px) rotateY(-7deg) rotateX(3deg);
  transform-origin: center;
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.06), transparent 28%);
}

.dashboard-topbar {
  height: 47px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #777b8e;
  font-family: monospace;
  font-size: 0.68rem;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #343746;
}

.window-dots span:first-child { background: #ff667c; }
.window-dots span:nth-child(2) { background: #ffc75f; }
.window-dots span:last-child { background: #46d9a4; }

.live-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7de9c3;
}

.live-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.dashboard-body {
  min-height: 465px;
  display: grid;
  grid-template-columns: 59px 1fr;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  padding: 20px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
  background: #0a0b11;
}

.mini-logo {
  width: 25px;
  height: 25px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--primary-bright), var(--primary));
}

.sidebar-item {
  width: 17px;
  height: 17px;
  border: 2px solid #3b3e4d;
  border-radius: 5px;
}

.sidebar-item.selected {
  border-color: var(--primary-bright);
  background: rgba(198, 91, 22, 0.18);
  box-shadow: 0 0 18px rgba(255, 122, 0, 0.27);
}

.dashboard-content {
  padding: 24px;
  min-width: 0;
}

.server-heading,
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.muted-label {
  color: #676b7a;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.server-heading h3 {
  margin-top: 1px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.online-badge {
  padding: 6px 9px;
  border: 1px solid rgba(63, 224, 173, 0.18);
  border-radius: 999px;
  color: var(--success);
  background: rgba(63, 224, 173, 0.07);
  font-size: 0.63rem;
  font-weight: 700;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.metric-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: 11px;
  background: rgba(255,255,255,0.024);
}

.metric-card > span,
.metric-row span {
  color: #777b8b;
  font-size: 0.66rem;
}

.metric-card > strong,
.metric-row strong {
  display: block;
  margin: 4px 0 9px;
  font-size: 0.85rem;
}

.full-width {
  grid-column: 1 / -1;
  padding-bottom: 5px;
}

.meter {
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.055);
}

.meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-bright));
}

.chart {
  width: 100%;
  height: 89px;
  margin-top: 4px;
}

.chart svg {
  width: 100%;
  height: 100%;
}

.chart-fill {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: #f47a20;
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px rgba(244, 122, 32, 0.6));
}

.console-preview {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 11px;
  color: #9498a7;
  background: #090a0f;
  font-family: monospace;
  font-size: 0.59rem;
  line-height: 1.9;
}

.console-preview div span {
  color: #575a67;
}

.console-input {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--secondary);
}

.console-input i {
  width: 6px;
  height: 11px;
  background: var(--secondary);
  animation: blink 1s step-end infinite;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(198, 91, 22, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: 550px;
  height: 550px;
}

.orbit-two {
  width: 410px;
  height: 410px;
  border-color: rgba(255, 122, 0, 0.08);
}

@keyframes blink { 50% { opacity: 0; } }

.content-section {
  padding-top: 125px;
  padding-bottom: 100px;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.links-intro h2 {
  margin: 13px 0 18px;
  font-size: clamp(2.65rem, 5vw, 4.8rem);
}

.section-heading p,
.links-intro p {
  max-width: 580px;
  color: var(--muted);
}

.section-heading.centered p {
  margin-inline: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 275px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0, 0.32);
  background: linear-gradient(145deg, rgba(198,91,22,0.10), rgba(255,255,255,0.015));
}

.feature-large {
  grid-column: span 2;
}

.feature-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 45px;
  border: 1px solid rgba(255, 122, 0, 0.22);
  border-radius: 12px;
  color: var(--primary-bright);
  background: rgba(198, 91, 22, 0.11);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.terminal-icon {
  font-family: monospace;
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #3e414d;
  font-family: monospace;
  font-size: 0.72rem;
}

.feature-card h3 {
  margin-bottom: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.feature-card p {
  max-width: 490px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Team section */
.team-section {
  margin-top: 110px;
  padding-top: 72px;
  border-top: 1px solid var(--border);
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 34px;
}

.team-heading h2 {
  max-width: 720px;
  margin: 13px 0 0;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

.team-heading p {
  max-width: 480px;
  justify-self: end;
  color: var(--muted);
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 0, 0.34);
  background: linear-gradient(145deg, rgba(198,91,22,0.10), rgba(255,255,255,0.015));
}

.team-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 70% 20%, rgba(255,122,0,0.13), transparent 38%),
    #0b0c11;
}

.team-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9);
  transition: transform 260ms ease, filter 260ms ease;
}

.team-card:hover .team-photo {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.team-index {
  position: absolute;
  top: 16px;
  right: 16px;
  min-width: 34px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,122,0,0.28);
  border-radius: 999px;
  color: var(--primary-bright);
  background: rgba(7,8,12,0.78);
  backdrop-filter: blur(10px);
  font-family: monospace;
  font-size: 0.68rem;
}

.team-card-body {
  min-height: 214px;
  padding: 25px 25px 28px;
}

.team-role {
  display: inline-block;
  margin-bottom: 11px;
  color: var(--primary-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.team-card h3 {
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.team-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-console {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: min(330px, 42%);
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  color: #999dac;
  background: #090a0f;
  font-family: monospace;
  font-size: 0.67rem;
}

.mini-console span {
  color: var(--secondary);
}

.mini-console-output {
  margin-top: 7px;
  color: #696d7c;
}

.services-pricing-section {
  position: relative;
}

.services-pricing-section .section-heading {
  max-width: 820px;
}

.service-group {
  margin-top: 58px;
}

.service-group-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  align-items: end;
  gap: 40px;
  margin-bottom: 22px;
}

.service-group-heading h3 {
  margin-top: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  letter-spacing: -0.045em;
}

.service-group-heading > p {
  justify-self: end;
  max-width: 500px;
  color: var(--muted);
  font-size: 0.9rem;
}

.availability-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability-label i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 15px currentColor;
}

.availability-label.live {
  color: var(--success);
}

.availability-label.building {
  color: var(--primary-bright);
}

.available-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.014)),
    rgba(10, 12, 19, 0.86);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.coming-soon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 0, 0.32);
  box-shadow: 0 26px 70px rgba(73, 27, 5, 0.2);
}

.minecraft-card {
  grid-row: span 2;
  min-height: 610px;
  padding: 32px;
  border-color: rgba(255, 122, 0, 0.36);
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 122, 0, 0.15), transparent 33%),
    linear-gradient(160deg, rgba(198,91,22,0.13), rgba(255,255,255,0.018) 44%),
    #0b0d14;
}

.minecraft-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255,122,0,0.14);
  border-radius: 44px;
  transform: rotate(18deg);
  pointer-events: none;
}

.service-card-topline,
.service-identity,
.service-card-footer {
  display: flex;
  align-items: center;
}

.service-card-topline {
  justify-content: space-between;
  gap: 20px;
}

.service-identity {
  gap: 15px;
}

.service-icon,
.coming-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 122, 0, 0.34);
  color: var(--primary-bright);
  background: rgba(255, 122, 0, 0.08);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  font-size: 0.76rem;
}

.service-icon-minecraft {
  color: #10120e;
  border-color: #f58a31;
  background:
    linear-gradient(135deg, #ff9a45, #d96112 58%, #733015);
  box-shadow: 0 10px 32px rgba(198,91,22,0.28);
}

.service-type {
  display: block;
  margin-bottom: 2px;
  color: var(--primary-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.48rem;
  letter-spacing: -0.035em;
}

.service-status,
.development-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-status.ready {
  color: var(--success);
  border-color: rgba(63, 224, 173, 0.28);
  background: rgba(63, 224, 173, 0.08);
}

.service-status.request {
  color: #ffc078;
  border-color: rgba(255, 161, 79, 0.3);
  background: rgba(255, 122, 0, 0.08);
}

.service-description {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 23px 0 27px;
}

.service-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: #c7c9d2;
  background: rgba(255,255,255,0.025);
  font-size: 0.72rem;
}

.minecraft-plan-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin-bottom: 25px;
}

.minecraft-plan-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 82px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 14px;
  background: rgba(6, 7, 11, 0.52);
}

.minecraft-plan-row.recommended {
  border-color: rgba(255, 122, 0, 0.38);
  background: linear-gradient(90deg, rgba(198,91,22,0.13), rgba(255,255,255,0.02));
}

.minecraft-plan-row > div:first-child {
  display: grid;
  gap: 2px;
}

.minecraft-plan-row strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
}

.minecraft-plan-row > div:first-child span {
  color: var(--muted);
  font-size: 0.74rem;
}

.compact-price {
  display: flex;
  align-items: baseline;
  color: var(--text);
}

.compact-price > span {
  margin-right: 2px;
  color: var(--primary-bright);
  font-weight: 800;
}

.compact-price > strong {
  font-size: 1.7rem;
  letter-spacing: -0.06em;
}

.compact-price small {
  margin-left: 5px;
  color: var(--muted);
  font-size: 0.65rem;
}

.compact-price-text > strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.service-action {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
}

.service-action span,
.text-action span,
.coming-soon-footer .button span {
  margin-left: 8px;
}

.compact-service-card {
  min-height: 297px;
  padding: 25px;
}

.compact-service-card .service-type {
  margin-top: 22px;
}

.compact-service-card > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.83rem;
}

.service-feature-list {
  display: grid;
  gap: 7px;
  margin: 18px 0 21px;
  color: #bfc2cc;
  font-size: 0.76rem;
  list-style: none;
}

.service-feature-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--primary-bright);
}

.service-card-footer {
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.service-price-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.text-action {
  color: var(--primary-bright);
  font-size: 0.74rem;
  font-weight: 800;
}

.coming-soon-group {
  margin-top: 78px;
  padding-top: 58px;
  border-top: 1px solid var(--border);
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.coming-soon-card {
  position: relative;
  min-height: 270px;
  padding: 23px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 19px;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.03), transparent 55%),
    rgba(11,13,20,0.78);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.coming-soon-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -45px;
  width: 125px;
  height: 125px;
  border: 1px solid rgba(255,122,0,0.09);
  border-radius: 30px;
  transform: rotate(20deg);
}

.coming-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 37px;
  border-radius: 13px;
  font-size: 0.72rem;
  opacity: 0.8;
}

.development-tag {
  position: absolute;
  top: 24px;
  right: 22px;
  color: #9b9eaa;
  border-color: rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.025);
  font-size: 0.56rem;
}

.coming-soon-card h4 {
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
}

.coming-soon-card p {
  position: relative;
  z-index: 1;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.78rem;
}

.coming-soon-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px dashed rgba(255,122,0,0.22);
  border-radius: 17px;
  background: rgba(255,122,0,0.025);
}

.coming-soon-footer p {
  color: #c7c9d2;
  font-size: 0.86rem;
}

.pricing-note {
  margin-top: 26px;
  color: #5f6270;
  text-align: center;
  font-size: 0.72rem;
}

.links-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.links-intro {
  position: sticky;
  top: 130px;
}

.link-list {
  border-top: 1px solid var(--border);
}

.external-link {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 110px;
  border-bottom: 1px solid var(--border);
  transition: padding 180ms ease, background 180ms ease;
}

.external-link:hover {
  padding-inline: 15px;
  background: linear-gradient(90deg, rgba(198,91,22,0.11), transparent);
}

.link-index {
  color: #555866;
  font-family: monospace;
  font-size: 0.72rem;
}

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

.link-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

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

.external-arrow {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--primary-bright);
  transition: transform 180ms ease, border-color 180ms ease;
}

.external-link:hover .external-arrow {
  transform: rotate(45deg);
  border-color: rgba(255, 122, 0, 0.42);
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  min-height: 145px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 40px auto 0;
  border-top: 1px solid var(--border);
  color: #676a78;
  font-size: 0.76rem;
}

.site-footer > span {
  justify-self: end;
}

.footer-brand {
  opacity: 0.85;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  background: rgba(4, 5, 9, 0.78);
  backdrop-filter: blur(13px);
  transition: opacity 200ms ease, visibility 200ms ease;
}

.modal-backdrop.open {
  visibility: visible;
  opacity: 1;
}

.login-modal {
  position: relative;
  width: min(440px, 100%);
  padding: 36px;
  transform: translateY(16px) scale(0.98);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(22,24,36,0.98), rgba(10,11,17,0.98));
  box-shadow: var(--shadow), 0 0 90px rgba(154, 59, 10, 0.24);
  transition: transform 200ms ease;
}

.modal-backdrop.open .login-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: #a4a7b3;
  background: rgba(255,255,255,0.035);
  font-size: 1.25rem;
  cursor: pointer;
}

.modal-brand {
  margin-bottom: 22px;
}

.brand-mark.large {
  width: 48px;
  height: 48px;
  border-radius: 14px 14px 19px 19px;
}

.login-modal h2 {
  margin: 5px 0 7px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.045em;
}

.login-modal > p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.86rem;
}

.login-modal label {
  display: block;
  margin-bottom: 7px;
  color: #c3c5cf;
  font-size: 0.75rem;
  font-weight: 700;
}

.input-wrap {
  position: relative;
  margin-bottom: 18px;
}

.input-wrap input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  outline: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 11px;
  color: white;
  background: rgba(255,255,255,0.038);
  font-size: 0.87rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input-wrap input:focus {
  border-color: rgba(255, 122, 0, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.11);
}

.input-wrap input::placeholder {
  color: #5d606d;
}

.password-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.password-row a {
  margin-bottom: 7px;
  color: var(--primary-bright);
  font-size: 0.71rem;
  font-weight: 600;
}

.password-wrap input {
  padding-right: 66px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 0;
  color: #838695;
  background: transparent;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

.form-message {
  display: none;
  min-height: 38px;
  align-items: center;
  margin: -4px 0 14px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.72rem;
}

.form-message.show {
  display: flex;
}

.form-message.error {
  color: #ff94a4;
  background: rgba(255, 107, 129, 0.08);
  border: 1px solid rgba(255, 107, 129, 0.16);
}

.form-message.success {
  color: #72e8bf;
  background: rgba(63, 224, 173, 0.08);
  border: 1px solid rgba(63, 224, 173, 0.16);
}

.login-submit {
  width: 100%;
}

.login-security {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
  color: #5f6270;
  font-size: 0.65rem;
}

.login-security span {
  color: var(--secondary);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  max-width: min(360px, calc(100% - 44px));
  padding: 13px 16px;
  transform: translateY(15px);
  visibility: hidden;
  opacity: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #d8dae2;
  background: rgba(17,19,29,0.96);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  font-size: 0.78rem;
  transition: 180ms ease;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 110ms;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .main-navigation {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--border);
    background: rgba(10,11,18,0.98);
    box-shadow: var(--shadow);
  }

  .main-navigation.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 13px;
  }

  .mobile-menu-button {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .header-login {
    margin-left: 8px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 75px;
    padding-top: 180px;
  }

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

  .hero-visual {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .dashboard-card {
    transform: none;
  }

  .feature-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-group-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-group-heading > p {
    justify-self: start;
  }

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

  .minecraft-card {
    grid-row: auto;
  }

  .coming-soon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card:last-child {
    grid-column: span 2;
  }

  .team-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .team-heading p {
    justify-self: start;
  }

  .feature-large {
    grid-column: span 2;
  }


  .links-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .links-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 20px);
    top: 10px;
    min-height: 64px;
    padding-left: 14px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .header-login span:first-child {
    display: none;
  }

  .header-login {
    min-width: 42px;
    padding: 0;
    gap: 0;
  }

  .section {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 145px;
    padding-bottom: 55px;
  }

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

  .hero-text {
    font-size: 0.96rem;
  }

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

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

  .hero-meta {
    gap: 16px;
  }

  .dashboard-body {
    grid-template-columns: 42px 1fr;
    min-height: 410px;
  }

  .dashboard-sidebar {
    gap: 17px;
  }

  .dashboard-content {
    padding: 15px;
  }

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

  .full-width {
    grid-column: auto;
  }

  .console-preview {
    font-size: 0.48rem;
    overflow: hidden;
  }

  .feature-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .coming-soon-grid {
    grid-template-columns: 1fr;
  }

  .minecraft-card,
  .compact-service-card {
    min-height: auto;
    padding: 22px;
  }

  .minecraft-plan-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .compact-price {
    justify-content: flex-start;
  }

  .service-card-topline {
    align-items: flex-start;
  }

  .coming-soon-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .coming-soon-footer .button {
    width: 100%;
  }

  .team-section {
    margin-top: 78px;
    padding-top: 54px;
  }

  .team-card:last-child {
    grid-column: auto;
  }

  .team-photo-wrap {
    aspect-ratio: 16 / 11;
  }

  .feature-large {
    grid-column: auto;
  }

  .feature-card {
    min-height: 250px;
  }

  .mini-console {
    position: static;
    width: 100%;
    margin-top: 20px;
  }


  .external-link {
    grid-template-columns: 35px 1fr auto;
    min-height: 95px;
  }

  .site-footer {
    min-height: 190px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 32px 0;
    text-align: center;
  }

  .site-footer > span {
    justify-self: center;
  }

  .login-modal {
    padding: 30px 22px 25px;
  }
}

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

/* GhostIT illustrated brand icon */
.brand-logo {
  width: 42px;
  height: 38px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 7px 15px rgba(255, 122, 0, 0.18));
}

.brand-logo-footer {
  width: 39px;
  height: 35px;
}

.brand-logo-large {
  width: 76px;
  height: 68px;
  margin-bottom: 2px;
}

@media (max-width: 680px) {
  .brand-logo {
    width: 36px;
    height: 33px;
  }
}

/* Versioned illustrated GhostIT logo — replaces the old orange placeholder mark. */
.brand-icon-shell {
  width: 52px;
  height: 44px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
}

.brand-icon-shell .brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 15px rgba(244, 122, 32, 0.24));
}

.brand-icon-shell-footer {
  width: 48px;
  height: 41px;
  flex-basis: 48px;
}

.brand-icon-shell-large {
  width: 94px;
  height: 82px;
  margin-bottom: 3px;
}

.brand-icon-shell-large .brand-logo-large {
  width: 100%;
  height: 100%;
  margin: 0;
}

@media (max-width: 680px) {
  .brand-icon-shell {
    width: 45px;
    height: 39px;
    flex-basis: 45px;
  }
}

/* Unified panel / LDAP sign-in */
.auth-source {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: -7px 0 23px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 12px;
  background: rgba(255, 122, 0, 0.055);
}

.auth-source-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #3fe0ad;
  box-shadow: 0 0 0 5px rgba(63, 224, 173, 0.08), 0 0 16px rgba(63, 224, 173, 0.5);
}

.auth-source div {
  display: grid;
  gap: 2px;
}

.auth-source strong {
  color: #e7e8ee;
  font-size: 0.75rem;
}

.auth-source small {
  color: #7f8290;
  font-size: 0.66rem;
  line-height: 1.35;
}

.panel-login-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: #9a9dab;
  background: rgba(255,255,255,0.025);
  font-size: 0.71rem;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.panel-login-fallback:hover {
  color: #f3f3f6;
  border-color: rgba(255, 122, 0, 0.32);
  background: rgba(255, 122, 0, 0.055);
}

.panel-login-fallback span {
  color: var(--primary-bright);
}

.card-login-action {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.coming-soon-grid:has(.coming-soon-card:nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .coming-soon-grid:has(.coming-soon-card:nth-child(3):last-child) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .coming-soon-grid:has(.coming-soon-card:nth-child(3):last-child) {
    grid-template-columns: 1fr;
  }
}
