@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600&display=swap');

:root {
    --primary: #02a8cb;
    --tealL: #02a8cb;
    --ink: #0c0f10;
    --surf: #141a1c;
    --mid: #1e2a2e;
    --slate: #536168;
    --bg: #0c0f10;
    --surface: rgba(255, 255, 255, 0.04);
    --border: rgba(30, 42, 46, 0.9);
    --text: #e8ecee;
    --muted: #536168;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    --lens: cubic-bezier(0.4, 0, 0.2, 1);
}

.socials-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: rgba(12, 15, 16, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.socials-logo img {
    display: block;
    height: 28px;
    width: auto;
    object-fit: contain;
}
.socials-back {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 9999px;
    transition: border-color 0.2s, color 0.2s;
}
.socials-back:hover {
    border-color: var(--tealL);
    color: var(--tealL);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 18px 48px;
    cursor: none;
}

/* ─── Custom cursor (site-wide) ─── */
#cur {
    position: fixed; width: 8px; height: 8px;
    border-radius: 50%; background: var(--tealL);
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    mix-blend-mode: screen;
    transition: width .18s var(--lens), height .18s var(--lens);
}
#cur-r {
    position: fixed; width: 32px; height: 32px;
    border-radius: 50%; border: 1px solid rgba(2,168,203,.45);
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width .35s var(--lens), height .35s var(--lens), border-color .3s;
}
body.hov #cur { width: 16px; height: 16px; }
body.hov #cur-r { width: 54px; height: 54px; border-color: var(--tealL); }

.page {
    width: min(1100px, 100%);
    background: linear-gradient(145deg, rgba(20, 26, 28, 0.95), rgba(12, 15, 16, 0.98));
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px 32px 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.background-glow {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 70% 15%, rgba(1, 129, 156, 0.06), transparent 35%),
        radial-gradient(circle at 20% 60%, rgba(255, 255, 255, 0.02), transparent 25%);
    pointer-events: none;
    z-index: 0;
}

.hero {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.logo-circle {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.logo-circle img {
    width: 62px;
    height: auto;
}

.eyebrow {
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.lede {
    color: var(--muted);
    font-size: 1rem;
    max-width: 720px;
    margin: 0 auto 18px;
    line-height: 1.6;
}

.chips {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.chips span {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
}

.chip-partner {
    background: rgba(1, 129, 156, 0.12) !important;
    color: var(--tealL) !important;
    border-color: rgba(2, 168, 203, 0.25) !important;
}

.links {
    position: relative;
    z-index: 1;
}

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

.link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: rgba(2, 168, 203, 0.35);
    box-shadow: 0 12px 30px rgba(1, 129, 156, 0.12);
}

.icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #0b0f18;
    letter-spacing: 0.02em;
}

.gradient-pink {
    background: linear-gradient(135deg, #f97794, #623aa2);
}

.gradient-blue {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}

.gradient-sky {
    background: linear-gradient(135deg, #4fc3f7, #0284c7);
}

.gradient-indigo {
    background: linear-gradient(135deg, #818cf8, #312e81);
}

.gradient-red {
    background: linear-gradient(135deg, #ef4444, #991b1b);
}

.gradient-amber {
    background: linear-gradient(135deg, #fbbf24, #d97706);
}

.text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.label {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.note {
    color: var(--muted);
    font-size: 0.95rem;
}

.cta {
    font-size: 0.9rem;
    color: var(--text);
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.footer {
    text-align: center;
    margin-top: 26px;
    color: var(--muted);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.footer p:first-child {
    max-width: 420px;
}

.footer a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--tealL);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.footer-email {
    margin-top: 4px;
    font-size: 0.9rem;
}

.footer-email a {
    font-weight: 500;
}

@media (max-width: 640px) {
    .page {
        padding: 26px 18px 24px;
        border-radius: 18px;
    }

    .link-card {
        padding: 14px;
    }

    .logo-circle {
        width: 76px;
        height: 76px;
    }
}