.brand-page {
    padding-top: 72px;
}

.brand-intro {
    max-width: 850px;
    margin-bottom: 34px;
}

.brand-intro h2,
.brand-note h2 {
    margin: 14px 0 18px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.brand-intro p,
.brand-note p {
    max-width: 780px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.brand-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
    gap: 34px;
    align-items: start;
    margin: 34px 0;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid rgba(85, 212, 134, .24);
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 16%, rgba(101, 169, 255, .16), transparent 34%),
        linear-gradient(145deg, rgba(22, 31, 54, .95), rgba(8, 13, 27, .94));
}

.brand-card p {
    margin: 0;
    color: #d8deea;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.35;
    letter-spacing: -.025em;
}

.brand-card strong {
    color: #fff;
}

.brand-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.brand-card dl div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .035);
}

.brand-card dt {
    margin-bottom: 8px;
    color: #7edda5;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.brand-card dd {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.25;
}

.brand-directions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.brand-directions article,
.brand-note {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(23, 31, 54, .86), rgba(10, 16, 30, .82));
}

.brand-directions span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 30px;
    border-radius: 14px;
    background: rgba(101, 169, 255, .12);
    color: #82dda6;
    font-weight: 900;
}

.brand-directions h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.brand-directions p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.brand-note {
    margin-top: 18px;
    background:
        radial-gradient(circle at 12% 0%, rgba(85, 212, 134, .12), transparent 34%),
        linear-gradient(145deg, rgba(23, 31, 54, .9), rgba(10, 16, 30, .84));
}

.brand-note .button {
    margin-top: 18px;
}

@media (max-width: 900px) {
    .brand-card,
    .brand-directions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .brand-page {
        padding-top: 48px;
    }

    .brand-card,
    .brand-directions article,
    .brand-note {
        padding: 22px;
        border-radius: 22px;
    }

    .brand-card p {
        font-size: 22px;
    }

    .brand-card dd {
        font-size: 18px;
    }
}
