body {
    background:
        radial-gradient(circle at top left, rgba(255, 70, 85, 0.22), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(135deg, #090b11 0%, #111522 48%, #171b28 100%);
}

.group-page {
    overflow: hidden;
}

.hero,
.section {
    padding-left: clamp(16px, 5vw, 60px);
    padding-right: clamp(16px, 5vw, 60px);
}

.hero {
    position: relative;
    padding-top: clamp(42px, 7vw, 84px);
    padding-bottom: clamp(48px, 7vw, 88px);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 92%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.eyebrow {
    margin-bottom: 16px;
    color: #ffabb2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero h1,
.section h2,
.card-index {
    font-family: var(--font-display);
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(3rem, 7vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-text,
.section-intro,
.info-card p,
.spotlight-card p {
    color: #d4dae4;
    line-height: 1.8;
}

.hero-text {
    max-width: 620px;
    margin-top: 18px;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-button.primary {
    background: var(--accent);
    color: white;
}

.hero-button.primary:hover {
    background: #e03b49;
}

.hero-button.secondary {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.section {
    padding-top: clamp(56px, 7vw, 84px);
    padding-bottom: clamp(56px, 7vw, 84px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 18px;
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-intro {
    max-width: 820px;
    margin-bottom: 30px;
}

.info-grid {
    display: grid;
    gap: 18px;
}

.info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.info-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.card-index {
    color: #ff9ca5;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.info-card h3 {
    margin: 14px 0 10px;
    font-size: 1.25rem;
}

.presentation-section {
    background: #0c1018;
}

.presentation-shell {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

.canva-iframe {
    display: block;
    width: 100%;
    min-height: 780px;
    border: none;
}

@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-button {
        width: 100%;
    }

    .canva-iframe {
        min-height: 580px;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 20px;
    }

    .canva-iframe {
        min-height: 460px;
    }
}
