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

:root {
    --bg: #0b0d12;
    --panel: #0f121a;
    --stroke: #1d2330;
    --text: #e5e7eb;
    --muted: #9aa2b4;
    --accent: #4fd1c5;
    --shadow: 0 20px 80px rgba(0, 0, 0, 0.35), 0 0 60px rgba(79, 209, 197, 0.18);
}

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

html, body {
    min-height: 100%;
}

body {
    font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
    background:
            radial-gradient(circle at 20% 20%, rgba(79, 209, 197, 0.08), transparent 30%),
            radial-gradient(circle at 80% 0%, rgba(79, 209, 197, 0.06), transparent 28%),
            linear-gradient(135deg, #0b0d12 0%, #0f1118 50%, #0b0d12 100%);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 32px;
    position: relative;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.background-grid {
    position: fixed;
    inset: 0;
    background-image:
            linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.6;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), transparent 70%);
}

.shell {
    width: min(980px, 100%);
    position: relative;
    z-index: 1;
}

.panel {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.0));
    border: 1px solid var(--stroke);
    border-left: 3px solid var(--accent);
    border-radius: 18px;
    padding: 56px 64px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
}

h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 14px 0 20px;
    color: var(--text);
}

.lead {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--muted);
    line-height: 1.6;
    max-width: 580px;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 36px 0 32px;
}

.meta-item {
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.meta-item:hover {
    border-color: rgba(79, 209, 197, 0.8);
    transform: translateY(-1px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(79, 209, 197, 0.12);
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    background: linear-gradient(120deg, var(--accent), #94f0e4);
    color: #0b0d12;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(79, 209, 197, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 45px rgba(79, 209, 197, 0.35);
}

.cta:active {
    transform: translateY(0);
}

.arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.cta:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 720px) {
    body {
        padding: 48px 20px;
    }

    .panel {
        padding: 40px 28px;
    }
}

@media (max-width: 540px) {
    body {
        padding: 36px 18px;
        align-items: flex-start;
    }

    .panel {
        padding: 28px 22px;
        border-radius: 14px;
    }

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

    .cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
