@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
--bg: #05080d;
--bg-soft: #080d14;
--panel: #0b1119;
--panel-light: #0e1621;

--text: #f2f6fb;
--muted: #8995a5;

--blue: #2388ff;
--blue-light: #55a9ff;
--blue-dark: #1265c7;

--green: #3bd681;

--border: rgba(255,255,255,0.08);
--border-blue: rgba(35,136,255,0.3);

--radius: 18px;
--max-width: 1180px;

--transition: 0.45s cubic-bezier(0.22,1,0.36,1);
}

/* =========================
RESET
========================= */

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

html {
scroll-behavior: smooth;
}

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

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

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

/* =========================
HEADER
========================= */

.site-header {
width: 100%;
max-width: 1400px;
min-height: 76px;

margin: 0 auto;
padding: 0 38px;

display: flex;
align-items: center;
gap: 40px;

border-bottom: 1px solid var(--border);

position: relative;
z-index: 20;
}

.brand {
color: #ffffff;

font-size: 17px;
font-weight: 800;
letter-spacing: -0.6px;

white-space: nowrap;

transition:
color var(--transition),
transform var(--transition);
}

.brand:hover {
color: var(--blue-light);
transform: translateY(-1px);
}

.main-nav {
display: flex;
align-items: center;
justify-content: center;
gap: 32px;

margin-left: auto;
}

.main-nav a {
position: relative;

color: #8994a4;

font-size: 13px;
font-weight: 500;

padding: 28px 0;

transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
color: #ffffff;
}

.main-nav a::after {
content: "";

position: absolute;

left: 0;
right: 0;
bottom: 17px;

height: 2px;

background: var(--blue);

transform: scaleX(0);
transform-origin: center;

transition: transform var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
transform: scaleX(1);
}

.private-link {
min-height: 40px;

display: inline-flex;
align-items: center;
gap: 9px;

padding: 0 15px;

border: 1px solid rgba(35,136,255,0.35);
border-radius: 9px;

background: rgba(35,136,255,0.13);

color: #bcdcff;

font-size: 11px;
font-weight: 700;

white-space: nowrap;

box-shadow:
0 0 22px rgba(35,136,255,0.08),
inset 0 1px rgba(255,255,255,0.04);

transition:
transform var(--transition),
background var(--transition),
border-color var(--transition),
box-shadow var(--transition);
}

.private-link strong {
color: var(--blue-light);

transition: transform var(--transition);
}

.private-link:hover {
color: white;

background: rgba(35,136,255,0.22);

border-color: rgba(85,169,255,0.6);

transform: translateY(-3px);

box-shadow:
0 10px 30px rgba(35,136,255,0.18),
0 0 25px rgba(35,136,255,0.12);
}

.private-link:hover strong {
transform: translateX(4px);
}

/* =========================
PAGE HERO
========================= */

.page-hero {
width: min(var(--max-width), calc(100% - 48px));

min-height: 420px;

margin: 0 auto;

padding: 100px 0 75px;

position: relative;

display: flex;
flex-direction: column;
justify-content: center;

overflow: hidden;
}

.page-hero .hero-grid {
position: absolute;
inset: 0;

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: 55px 55px;

mask-image: linear-gradient(
to bottom,
rgba(0,0,0,0.8),
transparent 90%
);

pointer-events: none;
}

.page-hero::before {
content: "";

position: absolute;

width: 500px;
height: 500px;

left: -280px;
top: 40px;

background: rgba(24,111,220,0.12);

filter: blur(110px);

border-radius: 50%;

pointer-events: none;
}

.page-hero-content {
position: relative;
z-index: 2;

max-width: 850px;
}

.eyebrow {
display: inline-block;

color: var(--blue-light);

font-size: 9px;
font-weight: 700;

letter-spacing: 1.6px;
}

.page-hero h1 {
max-width: 720px;

margin-top: 14px;

font-size: clamp(44px, 6vw, 72px);

line-height: 1.02;

letter-spacing: -3px;

font-weight: 800;
}

.page-hero h1 span {
display: block;

color: var(--blue-light);
}

.page-hero p {
max-width: 680px;

margin-top: 24px;

color: var(--muted);

font-size: 15px;
line-height: 1.85;
}

.hero-status {
position: absolute;

right: 0;
bottom: 75px;

display: flex;
align-items: center;
gap: 9px;

padding: 8px 13px;

border: 1px solid rgba(58,175,255,0.18);
border-radius: 999px;

background: rgba(35,136,255,0.05);

color: #9bb4ce;

font-size: 10px;
font-weight: 600;
}

.status-dot {
width: 7px;
height: 7px;

background: var(--green);

border-radius: 50%;

box-shadow: 0 0 12px rgba(59,214,129,0.7);

animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
0%,100% {
opacity: .65;
transform: scale(.9);
}

50% {
opacity: 1;
transform: scale(1.1);
}
}

/* =========================
CATALOG
========================= */

.catalog-section {
width: min(var(--max-width), calc(100% - 48px));

margin: 0 auto 70px;
}

.section-heading {
display: grid;

grid-template-columns: 1fr .75fr;

gap: 70px;

align-items: end;

margin-bottom: 28px;
}

.section-heading h2 {
max-width: 650px;

margin-top: 10px;

font-size: clamp(30px,4vw,48px);

line-height: 1.08;

letter-spacing: -2px;
}

.section-heading p {
color: var(--muted);

font-size: 13px;

line-height: 1.8;
}

/* =========================
SERVER GRID
========================= */

.server-grid {
display: grid;

grid-template-columns: repeat(3, 1fr);

gap: 15px;
}

.server-option {
min-height: 570px;

position: relative;

display: flex;
flex-direction: column;

padding: 24px;

border: 1px solid var(--border);

border-radius: var(--radius);

background:
linear-gradient(
145deg,
rgba(13,21,31,.92),
rgba(7,11,17,.95)
);

overflow: hidden;

transition:
transform .65s cubic-bezier(.22,1,.36,1),
border-color .65s ease,
box-shadow .65s ease,
background .65s ease;
}

.server-option::before {
content: "";

position: absolute;

width: 220px;
height: 220px;

right: -120px;
top: -120px;

border-radius: 50%;

background: rgba(35,136,255,.09);

filter: blur(45px);

opacity: 0;

transition: opacity .7s ease;
}

.server-option:hover {
transform: translateY(-6px);

border-color: rgba(35,136,255,.3);

box-shadow:
0 25px 65px rgba(0,0,0,.28),
0 0 35px rgba(35,136,255,.05);
}

.server-option:hover::before {
opacity: 1;
}

.server-option.featured {
border-color: rgba(35,136,255,.2);

background:
linear-gradient(
145deg,
rgba(14,27,42,.96),
rgba(7,12,19,.96)
);
}

/* =========================
SERVER HEADER
========================= */

.server-option-top {
display: flex;
align-items: center;
justify-content: space-between;

position: relative;
z-index: 2;
}

.server-number {
color: #344151;

font-size: 10px;
font-weight: 700;
}

.server-state {
display: flex;
align-items: center;
gap: 6px;

color: #6f8194;

font-size: 9px;
font-weight: 600;
}

.server-state i {
width: 5px;
height: 5px;

display: block;

border-radius: 50%;

background: var(--green);

box-shadow: 0 0 8px rgba(59,214,129,.6);
}

/* =========================
SERVER VISUAL
========================= */

.server-visual {
width: 100%;

margin: 28px 0 25px;

padding: 17px 15px;

border: 1px solid rgba(76,155,230,.12);

border-radius: 12px;

background: rgba(3,8,14,.55);

display: flex;
flex-direction: column;
gap: 6px;
}

.rack-unit {
height: 25px;

display: flex;
align-items: center;

gap: 6px;

padding: 0 9px;

border: 1px solid rgba(90,170,245,.22);

border-radius: 4px;

background:
linear-gradient(
90deg,
rgba(35,136,255,.06),
rgba(255,255,255,.015)
);
}

.rack-unit span {
width: 4px;
height: 4px;

border-radius: 50%;

background: #2c8fff;

box-shadow: 0 0 7px rgba(35,136,255,.7);
}

.rack-unit span:nth-child(2) {
opacity: .45;
}

.rack-unit span:nth-child(3) {
opacity: .25;
}

/* =========================
SERVER CONTENT
========================= */

.server-category {
color: var(--blue-light);

font-size: 8px;
font-weight: 700;

letter-spacing: 1.4px;
}

.server-option h3 {
margin-top: 5px;

font-size: 22px;

letter-spacing: -.7px;
}

.server-description {
min-height: 66px;

margin-top: 9px;

color: #788596;

font-size: 11px;

line-height: 1.75;
}

/* =========================
SPECS
========================= */

.specs {
margin-top: 21px;

border-top: 1px solid var(--border);
}

.spec {
min-height: 43px;

display: flex;
align-items: center;
justify-content: space-between;

gap: 15px;

border-bottom: 1px solid rgba(255,255,255,.045);
}

.spec span {
color: #637286;

font-size: 9px;
}

.spec strong {
color: #c8d3df;

font-size: 9px;

text-align: right;
}

/* =========================
SERVER BUTTON
========================= */

.server-button {
min-height: 42px;

margin-top: auto;

display: flex;
align-items: center;
justify-content: space-between;

padding: 0 15px;

border-radius: 9px;

background: var(--blue);

color: white;

font-size: 10px;
font-weight: 700;

box-shadow:
0 8px 25px rgba(35,136,255,.17);

transition:
transform var(--transition),
background var(--transition),
box-shadow var(--transition);
}

.server-button span {
font-size: 16px;

transition: transform var(--transition);
}

.server-button:hover {
background: var(--blue-light);

transform: translateY(-2px);

box-shadow:
0 12px 30px rgba(35,136,255,.3);
}

.server-button:hover span {
transform: translateX(4px);
}

/* =========================
CUSTOM CTA
========================= */

.custom-cta {
width: min(var(--max-width), calc(100% - 48px));

margin: 0 auto 75px;

padding: 45px 48px;

display: flex;
align-items: center;
justify-content: space-between;

gap: 35px;

border: 1px solid var(--border);

border-radius: var(--radius);

background:
radial-gradient(
circle at 85% 50%,
rgba(35,136,255,.1),
transparent 35%
),
var(--panel);
}

.custom-cta h2 {
max-width: 650px;

margin-top: 8px;

font-size: clamp(28px,4vw,42px);

line-height: 1.1;

letter-spacing: -1.8px;
}

.custom-cta p {
max-width: 650px;

margin-top: 12px;

color: var(--muted);

font-size: 12px;

line-height: 1.8;
}

/* =========================
BUTTON
========================= */

.btn {
min-height: 46px;

display: inline-flex;
align-items: center;
justify-content: center;

gap: 10px;

padding: 0 19px;

border-radius: 10px;

font-size: 11px;
font-weight: 700;

white-space: nowrap;

transition:
transform var(--transition),
box-shadow var(--transition),
background var(--transition);
}

.btn-primary {
background: var(--blue);

color: white;

box-shadow:
0 8px 30px rgba(35,136,255,.2);
}

.btn-primary span {
transition: transform var(--transition);
}

.btn-primary:hover {
background: var(--blue-light);

transform: translateY(-3px);

box-shadow:
0 12px 35px rgba(35,136,255,.32);
}

.btn-primary:hover span {
transform: translateX(4px);
}

/* =========================
FOOTER
========================= */

.site-footer {
border-top: 1px solid var(--border);

background: #04070b;
}

.footer-main {
width: min(var(--max-width), calc(100% - 48px));

margin: 0 auto;

padding: 55px 0 45px;

display: grid;

grid-template-columns: 1fr 1.4fr;

gap: 80px;
}

.footer-brand p {
max-width: 270px;

margin-top: 12px;

color: #667385;

font-size: 11px;
}

.footer-links {
display: grid;

grid-template-columns: repeat(3,1fr);

gap: 30px;
}

.footer-links div {
display: flex;
flex-direction: column;

gap: 9px;
}

.footer-links strong {
margin-bottom: 5px;

color: #d8e0e9;

font-size: 10px;

letter-spacing: .5px;
}

.footer-links a {
color: #667385;

font-size: 10px;

transition: color var(--transition);
}

.footer-links a:hover {
color: var(--blue-light);
}

.footer-bottom {
width: min(var(--max-width), calc(100% - 48px));

margin: 0 auto;

padding: 17px 0;

display: flex;
justify-content: space-between;

gap: 20px;

border-top: 1px solid var(--border);

color: #4f5b69;

font-size: 9px;
}

/* =========================
TABLET
========================= */

@media (max-width: 1000px) {

.site-header {
padding: 0 24px;
}

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

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

.custom-cta {
align-items: flex-start;
flex-direction: column;
}
}

/* =========================
MOBILE
========================= */

@media (max-width: 700px) {

.site-header {
min-height: auto;

```
padding: 17px 18px;

flex-wrap: wrap;

gap: 17px;
```

}

.brand {
font-size: 15px;
}

.main-nav {
order: 3;

```
width: 100%;

margin-left: 0;

justify-content: flex-start;

overflow-x: auto;

gap: 25px;

scrollbar-width: none;
```

}

.main-nav::-webkit-scrollbar {
display: none;
}

.main-nav a {
padding: 6px 0;

```
white-space: nowrap;

font-size: 12px;
```

}

.main-nav a::after {
bottom: -2px;
}

.private-link {
margin-left: auto;

```
min-height: 37px;

padding: 0 12px;

font-size: 10px;
```

}

.page-hero {
width: calc(100% - 32px);

```
min-height: auto;

padding: 70px 0 55px;
```

}

.page-hero h1 {
font-size: 43px;

```
letter-spacing: -2.2px;
```

}

.page-hero p {
font-size: 13px;
}

.hero-status {
position: static;

```
width: fit-content;

margin-top: 28px;
```

}

.catalog-section {
width: calc(100% - 32px);

```
margin-bottom: 50px;
```

}

.section-heading h2 {
font-size: 32px;

```
letter-spacing: -1.4px;
```

}

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

```
gap: 13px;
```

}

.server-option {
min-height: 550px;
}

.custom-cta {
width: calc(100% - 32px);

```
margin-bottom: 55px;

padding: 30px 22px;
```

}

.custom-cta h2 {
font-size: 30px;

```
letter-spacing: -1.4px;
```

}

.custom-cta .btn {
width: 100%;
}

.footer-main {
width: calc(100% - 32px);

```
grid-template-columns: 1fr;

gap: 40px;
```

}

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

```
gap: 25px;
```

}

.footer-bottom {
width: calc(100% - 32px);

```
flex-direction: column;

gap: 7px;
```

}
}

/* =========================
SMALL MOBILE
========================= */

@media (max-width: 420px) {

.site-header {
padding: 16px;
}

.brand {
font-size: 14px;
}

.private-link span {
display: none;
}

.private-link {
padding: 0 11px;
}

.page-hero {
width: calc(100% - 28px);
}

.catalog-section,
.custom-cta {
width: calc(100% - 28px);
}

.server-option {
padding: 21px;
}

.spec strong {
max-width: 55%;

```
font-size: 8px;
```

}

.footer-main,
.footer-bottom {
width: calc(100% - 28px);
}
}

/* =========================
REDUCE MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

*,
*::before,
*::after {
animation-duration: .01ms !important;
animation-iteration-count: 1 !important;

```
scroll-behavior: auto !important;

transition-duration: .01ms !important;
```

}
}
