:root {
    --bg: #0f172a;
    --card: rgba(30, 41, 59, 0.7);
    --card-2: rgba(15, 23, 42, 0.9);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --accent: #a855f7;
    --accent-2: #eab308;
    --line: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "DM Sans", "Outfit", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 10%, rgba(168, 85, 247, 0.15), transparent 38%),
        radial-gradient(circle at 90% 20%, rgba(234, 179, 8, 0.1), transparent 34%),
        var(--bg);
    line-height: 1.6;
}

a {
    color: var(--accent);
}

a:hover,
a:focus-visible {
    color: #c084fc;
}

header,
main,
footer {
    width: min(1080px, 92vw);
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
}

.brand img {
    width: 32px;
    height: 32px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.15);
    color: var(--text);
    text-decoration: none;
    border-radius: 12px;
    padding: 0.55rem 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-link:hover {
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.25);
}

.hero {
    padding: 1.2rem 0 0.2rem;
}

.hero .eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    font-size: 0.83rem;
    color: var(--accent-2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(234, 179, 8, 0.4);
}

h1 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    line-height: 1.15;
    background: linear-gradient(135deg, #fff, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead {
    margin-top: 0.9rem;
    max-width: 72ch;
    color: var(--muted);
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.6rem;
}

.card {
    grid-column: span 12;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(150deg, var(--card), var(--card-2));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(168, 85, 247, 0.3);
}

.card h2 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
    color: #fff;
}

.list {
    margin: 0;
    padding-left: 1.1rem;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.chip {
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    color: #f3e8ff;
    font-size: 0.85rem;
    background: rgba(168, 85, 247, 0.15);
    transition: all 0.3s ease;
}

.chip:hover {
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.25);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary {
    border: none;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.6);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text) !important;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.notice {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.footer {
    margin: 1.8rem auto 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.links-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

@media (min-width: 820px) {
    .card.half {
        grid-column: span 6;
    }

    .card.third {
        grid-column: span 4;
    }
}