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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0f0f13;
    color: #e8e8f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 860px;
    width: 100%;
}

/* ── Header ── */
header {
    text-align: center;
    margin-bottom: 3rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0d2e1a;
    border: 1px solid #1a5c30;
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6ee7f7, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.tagline {
    color: #666;
    font-size: 1rem;
}

.serving-from {
    font-size: 0.72rem;
    color: #333;
    margin-top: 0.6rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

/* ── Section headers ── */
h2 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #444;
    margin-bottom: 1rem;
}

/* ── Services grid ── */
.services {
    margin-bottom: 2.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.card {
    background: #16161f;
    border: 1px solid #22222e;
    border-radius: 12px;
    padding: 1.6rem 1.4rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, transform 0.15s, background 0.15s;
    text-align: center;
}

.card:hover {
    border-color: #6ee7f7;
    background: #1a1a28;
    transform: translateY(-2px);
}

.card .icon {
    font-size: 1.8rem;
    margin-bottom: 0.65rem;
    display: block;
}

.card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ddd;
}

.card p {
    font-size: 0.8rem;
    color: #555;
}

/* ── Infrastructure specs ── */
.specs {
    margin-bottom: 2.5rem;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    border: 1px solid #1e1e28;
    border-radius: 12px;
    overflow: hidden;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.1rem;
    border-bottom: 1px solid #1e1e28;
    border-right: 1px solid #1e1e28;
}

.spec-item:nth-child(even) {
    border-right: none;
}

.spec-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.spec-label {
    font-size: 0.75rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.spec-value {
    font-size: 0.8rem;
    color: #888;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

/* ── Footer ── */
footer {
    text-align: center;
    color: #333;
    font-size: 0.78rem;
}

footer a {
    color: #444;
    text-decoration: none;
    transition: color 0.15s;
}

footer a:hover {
    color: #6ee7f7;
}

.footer-sep {
    margin: 0 0.5rem;
}
