/* Shared styles for standalone informational pages */

body {
    background-color: #f8fafc;
    color: #1f2937;
}

.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-hero {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    max-width: 680px;
    margin: 0.75rem auto 0;
    line-height: 1.7;
    opacity: 0.95;
}

.page-section {
    padding: 4rem 0;
}

.page-section.alt {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: left;
}

.section-description {
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 760px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
}

.info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.info-card p {
    color: #475569;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1f2937;
}

.contact-list i {
    color: #3b82f6;
}

.cta-banner {
    margin-top: 3rem;
    padding: 2.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cta-banner h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

.cta-banner p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-banner .btn {
    background-color: #fbbf24;
    color: #1f2937;
}

.faq-item {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.faq-item + .faq-item {
    margin-top: 1.25rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.community-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.community-card h3 {
    font-size: 1.35rem;
}

.community-card p {
    color: #475569;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .section-title {
        text-align: center;
    }

    .section-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-banner {
        align-items: center;
        text-align: center;
    }
}
.info-card label {
    color: #1f2937;
}

.info-card input,
.info-card textarea {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5f5;
    border-radius: 0.75rem;
    font-size: 1rem;
    background-color: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-card input:focus,
.info-card textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.info-card textarea {
    resize: vertical;
}

.info-card a {
    color: #2563eb;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.contact-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    width: 2rem;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #1f2937;
}

.contact-item p {
    margin: 0;
    color: #475569;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.25rem 1.5rem;
    }
}

/* Help Center refresh */
.support-hero {
    position: relative;
    padding: 8.5rem 0 4rem;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.35), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.3), transparent 55%),
                linear-gradient(135deg, #111827 0%, #1f2937 40%, #0f172a 100%);
    color: #f8fafc;
}

.support-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.35) 0%, rgba(37, 99, 235, 0.35) 50%, rgba(59, 130, 246, 0.25) 100%);
    opacity: 0.9;
    pointer-events: none;
}

.support-hero .page-container {
    position: relative;
    z-index: 1;
}

.support-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 1.5rem;
}

.support-breadcrumb a {
    color: rgba(248, 250, 252, 0.85);
}

.support-breadcrumb span:last-child {
    color: #f8fafc;
}

.support-eyebrow {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.2);
    color: #5eead4;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.support-hero h1 {
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.1;
    max-width: 680px;
}

.support-hero p {
    margin-top: 1rem;
    max-width: 640px;
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(248, 250, 252, 0.85);
}

.support-search {
    margin-top: 2.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(15, 23, 42, 0.75);
    padding: 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.support-search i {
    margin-left: 1.25rem;
    color: rgba(248, 250, 252, 0.75);
}

.support-search input {
    flex: 1;
    border: none;
    background: transparent;
    color: #f8fafc;
    font-size: 1rem;
}

.support-search input::placeholder {
    color: rgba(226, 232, 240, 0.65);
}

.support-search input:focus {
    outline: none;
}

.support-search .btn {
    white-space: nowrap;
}

.support-highlights {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.support-highlight {
    display: flex;
    gap: 1rem;
    background: rgba(15, 23, 42, 0.55);
    border-radius: 1rem;
    padding: 1.25rem 1.4rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.support-highlight i {
    font-size: 1.35rem;
    color: #38bdf8;
    margin-top: 0.2rem;
}

.support-highlight__title {
    font-weight: 600;
    color: #f8fafc;
}

.support-highlight__copy {
    font-size: 0.95rem;
    color: rgba(226, 232, 240, 0.8);
    margin-top: 0.35rem;
}

.support-section {
    padding: 4.5rem 0;
}

.support-section--accent {
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
}

.support-section--light {
    background: #ffffff;
}

.support-section--cta {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 60%, #38bdf8 100%);
    color: #f8fafc;
}

.support-section__header {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.support-section__header h2 {
    font-size: 2.1rem;
    font-weight: 650;
    margin-bottom: 0.75rem;
}

.support-section__header p {
    color: #475569;
    line-height: 1.7;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
}

.support-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2.25rem;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.support-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(30, 64, 175, 0.18);
}

.support-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    font-size: 1.35rem;
}

.support-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    text-transform: capitalize;
}

.support-card p {
    color: #475569;
    line-height: 1.65;
}

.support-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.support-card ul a {
    color: #2563eb;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.support-card ul a::after {
    content: "\f061";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.support-card ul a:hover::after {
    transform: translateX(4px);
}

.support-section__split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.support-section__block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-section__block h2 {
    font-size: 2rem;
    font-weight: 650;
}

.support-section__block p {
    color: #475569;
    line-height: 1.7;
}

.support-steps {
    list-style: decimal;
    padding-left: 1rem;
    color: #1f2937;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-steps li {
    line-height: 1.6;
}

.support-section__card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(30, 64, 175, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.support-section__card h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.support-section__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.support-section__card li {
    display: flex;
    gap: 0.75rem;
    color: #1f2937;
    line-height: 1.6;
}

.support-section__card li i {
    color: #2563eb;
    padding-top: 0.25rem;
}

.support-link {
    color: #2563eb;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.support-link::after {
    content: "\f178";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.support-link:hover::after {
    transform: translateX(4px);
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.support-info-card {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 2rem;
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.support-info-card p {
    color: #475569;
    line-height: 1.65;
}

.support-article {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-article h2 {
    font-size: 2rem;
    font-weight: 650;
}

.support-article p {
    color: #475569;
    line-height: 1.7;
}

.support-article__callouts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.support-article__callouts div {
    background: linear-gradient(135deg, rgba(14, 116, 144, 0.1), rgba(37, 99, 235, 0.12));
    border-radius: 1rem;
    padding: 1.2rem 1.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.support-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.support-article__callouts p {
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.5;
}

.support-resources {
    background: #f8fafc;
    border-radius: 1.1rem;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.07);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-resources h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.support-resources ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.support-resources li a {
    color: #2563eb;
    font-weight: 500;
}

.support-status {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.25);
}

.support-status__icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
    font-size: 1.2rem;
}

.support-status__title {
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.support-accordion {
    display: grid;
    gap: 1rem;
}

.support-accordion details {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.2s ease;
}

.support-accordion details[open] {
    box-shadow: 0 22px 48px rgba(30, 64, 175, 0.12);
}

.support-accordion summary {
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
}

.support-accordion summary::-webkit-details-marker {
    display: none;
}

.support-accordion summary::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    transition: transform 0.2s ease;
}

.support-accordion details[open] summary::after {
    transform: rotate(180deg);
}

.support-accordion p {
    margin-top: 1rem;
    color: #475569;
    line-height: 1.65;
}

.support-section--cta .support-link,
.support-section--cta a {
    color: #f8fafc;
}

.support-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.support-cta h2 {
    font-size: 2rem;
    font-weight: 650;
    margin-bottom: 0.75rem;
}

.support-cta__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.support-cta .btn-outline {
    border-color: rgba(248, 250, 252, 0.65);
    color: #f8fafc;
}

@media (max-width: 1024px) {
    .support-hero {
        padding: 7.5rem 0 3.5rem;
    }

    .support-hero h1 {
        font-size: 2.6rem;
    }

    .support-search {
        flex-wrap: wrap;
        padding: 1rem;
        border-radius: 1.5rem;
    }

    .support-search i {
        margin-left: 0.25rem;
    }

    .support-search .btn {
        width: 100%;
        justify-content: center;
    }

    .support-section__split {
        grid-template-columns: 1fr;
    }

    .support-cta {
        flex-direction: column;
        text-align: center;
    }

    .support-cta__actions {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .support-hero h1 {
        font-size: 2.25rem;
    }

    .support-highlights {
        grid-template-columns: 1fr;
    }

    .support-card {
        padding: 1.75rem;
    }

    .support-section {
        padding: 3.5rem 0;
    }
}

/* Community page refresh */
.community-hero {
    position: relative;
    padding: 8rem 0 5rem;
    background: radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.35), transparent 60%),
                radial-gradient(circle at 85% 15%, rgba(99, 102, 241, 0.35), transparent 58%),
                linear-gradient(135deg, #0f172a 0%, #111827 45%, #1f2937 100%);
    overflow: hidden;
    color: #f8fafc;
}

.community-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.35) 0%, rgba(14, 165, 233, 0.35) 60%, rgba(59, 130, 246, 0.25) 100%);
    opacity: 0.95;
    pointer-events: none;
}

.community-hero .page-container {
    position: relative;
    z-index: 1;
}

.community-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.community-breadcrumb a {
    color: rgba(248, 250, 252, 0.85);
}

.community-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.15);
    color: #5eead4;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.community-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    max-width: 720px;
}

.community-hero p {
    margin-top: 1.25rem;
    max-width: 680px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(226, 232, 240, 0.88);
}

.community-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.community-actions--inline {
    margin-top: 2rem;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.community-stats div {
    background: rgba(15, 23, 42, 0.55);
    border-radius: 1.1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.32);
}

.community-stats dt {
    font-size: 2rem;
    font-weight: 700;
    color: #38bdf8;
}

.community-stats dd {
    margin: 0.35rem 0 0;
    color: rgba(248, 250, 252, 0.8);
    font-size: 0.95rem;
}

.community-section {
    padding: 4.75rem 0;
}

.community-section--accent {
    background: linear-gradient(160deg, #eff6ff 0%, #f8fafc 45%, #f1f5f9 100%);
}

.community-section--light {
    background: #ffffff;
}

.community-section--cta {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 60%, #38bdf8 100%);
    color: #f8fafc;
}

.community-section__header {
    max-width: 720px;
    margin-bottom: 2.75rem;
}

.community-section__header h2 {
    font-size: 2.2rem;
    font-weight: 650;
    margin-bottom: 0.75rem;
}

.community-section__header p {
    color: #475569;
    line-height: 1.75;
}

.community-decks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.community-card {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2.25rem;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.community-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 64px rgba(30, 64, 175, 0.17);
}

.community-card--primary {
    background: linear-gradient(150deg, rgba(37, 99, 235, 0.95) 0%, rgba(59, 130, 246, 0.85) 100%);
    color: #f8fafc;
    box-shadow: 0 32px 60px rgba(37, 99, 235, 0.35);
}

.community-card--primary p,
.community-card--primary li {
    color: rgba(248, 250, 252, 0.92);
}

.community-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    font-size: 1.5rem;
}

.community-card--primary .community-card__icon {
    background: rgba(248, 250, 252, 0.18);
    color: #f8fafc;
}

.community-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: capitalize;
}

.community-card p {
    color: #475569;
    line-height: 1.7;
}

.community-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    color: #1f2937;
}

.community-card ul li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.community-card ul li i {
    color: inherit;
    margin-top: 0.15rem;
}

.community-card__highlight {
    padding: 1.15rem 1.25rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.18));
    line-height: 1.6;
}

.community-card--primary .community-card__highlight {
    background: rgba(248, 250, 252, 0.12);
}

.community-link {
    color: #2563eb;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.community-card--primary .community-link {
    color: #fbbf24;
}

.community-link::after {
    content: "\f178";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.community-link:hover::after {
    transform: translateX(4px);
}

.community-section__split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.75rem;
    align-items: start;
}

.community-section__split--reverse {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.community-section__block {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.community-section__block h2 {
    font-size: 2.05rem;
    font-weight: 650;
}

.community-section__block p {
    color: #475569;
    line-height: 1.75;
}

.community-timeline {
    display: grid;
    gap: 1.5rem;
}

.community-timeline article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    align-items: start;
    padding: 1.5rem 1.75rem;
    border-radius: 1.1rem;
    background: #ffffff;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
}

.community-timeline__date {
    font-weight: 700;
    color: #2563eb;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
}

.community-timeline h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.community-sidecard {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2.25rem;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.09);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.community-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.community-form label {
    font-weight: 600;
    color: #1f2937;
}

.community-form input {
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.community-form input:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.community-form__note {
    font-size: 0.85rem;
    color: #64748b;
}

.community-program {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.community-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.community-program h2 {
    font-size: 2.1rem;
    font-weight: 650;
}

.community-program p {
    color: #475569;
    line-height: 1.75;
}

.community-program__benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.community-program__benefits li {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    color: #1f2937;
}

.community-program__benefits i {
    color: #2563eb;
}

.community-spotlight {
    background: linear-gradient(150deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.15));
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.community-spotlight blockquote {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1f2937;
    font-weight: 500;
}

.community-spotlight__meta {
    color: #475569;
    font-size: 0.9rem;
}

.community-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.community-tags li {
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
}

.community-guidelines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
}

.community-guidelines article {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.community-guidelines__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    font-size: 1.4rem;
}

.community-guidelines h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.community-guidelines p {
    color: #475569;
    line-height: 1.7;
}

.community-section--cta .community-link,
.community-section--cta a {
    color: #f8fafc;
}

.community-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

.community-cta h2 {
    font-size: 2.1rem;
    font-weight: 650;
    margin-bottom: 0.75rem;
}

.community-cta__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.community-cta .btn-outline {
    border-color: rgba(248, 250, 252, 0.7);
    color: #f8fafc;
}

@media (max-width: 1024px) {
    .community-hero {
        padding: 7rem 0 4rem;
    }

    .community-hero h1 {
        font-size: 2.6rem;
    }

    .community-timeline article {
        grid-template-columns: 1fr;
    }

    .community-section__split {
        grid-template-columns: 1fr;
    }

    .community-cta {
        flex-direction: column;
        text-align: center;
    }

    .community-cta__actions {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .community-hero h1 {
        font-size: 2.25rem;
    }

    .community-actions {
        justify-content: flex-start;
    }

    .community-cta {
        gap: 1.75rem;
    }

    .community-section {
        padding: 3.75rem 0;
    }
}

/* Legal pages */
.legal-hero {
    position: relative;
    padding: 7.5rem 0 4.5rem;
    background: radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.3), transparent 55%),
                radial-gradient(circle at 85% 10%, rgba(16, 185, 129, 0.2), transparent 60%),
                linear-gradient(135deg, #111827 0%, #1f2937 50%, #0f172a 100%);
    color: #f8fafc;
    overflow: hidden;
}

.legal-hero--terms {
    background: radial-gradient(circle at 20% 15%, rgba(59, 130, 246, 0.32), transparent 55%),
                radial-gradient(circle at 65% 10%, rgba(99, 102, 241, 0.25), transparent 60%),
                linear-gradient(135deg, #0f172a 0%, #101827 45%, #1f2937 100%);
}

.legal-hero--cookies {
    background: radial-gradient(circle at 10% 15%, rgba(245, 158, 11, 0.25), transparent 60%),
                radial-gradient(circle at 80% 12%, rgba(59, 130, 246, 0.3), transparent 60%),
                linear-gradient(135deg, #111827 0%, #1f2937 55%, #0f172a 100%);
}

.legal-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.35) 0%, rgba(6, 182, 212, 0.25) 60%, rgba(148, 163, 184, 0.2) 100%);
    opacity: 0.9;
    pointer-events: none;
}

.legal-hero .page-container {
    position: relative;
    z-index: 1;
}

.legal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(248, 250, 252, 0.75);
    margin-bottom: 1.35rem;
    font-size: 0.95rem;
}

.legal-breadcrumb a {
    color: rgba(248, 250, 252, 0.85);
}

.legal-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.18);
    color: #bfdbfe;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.legal-hero p {
    max-width: 720px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(226, 232, 240, 0.88);
}

.legal-meta {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: rgba(226, 232, 240, 0.8);
    font-size: 0.95rem;
}

.legal-meta i {
    margin-right: 0.5rem;
    color: #38bdf8;
}

.legal-main {
    background: #f8fafc;
    padding: 4.5rem 0 5rem;
}

.legal-section {
    margin-bottom: 3.5rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 650;
    margin-bottom: 1.25rem;
    color: #0f172a;
}

.legal-section p {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.legal-grid article {
    background: #ffffff;
    padding: 1.75rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legal-grid h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
}

.legal-grid p {
    margin: 0;
    color: #475569;
}

.legal-list {
    margin: 0;
    padding-left: 1.15rem;
    color: #1f2937;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legal-list li {
    line-height: 1.7;
}

.legal-list strong {
    color: #1d4ed8;
}

.legal-section--contact address {
    font-style: normal;
    color: #1f2937;
    line-height: 1.8;
}

.legal-section--contact a {
    color: #2563eb;
}

@media (max-width: 1024px) {
    .legal-hero {
        padding: 6.5rem 0 3.75rem;
    }

    .legal-hero h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 640px) {
    .legal-hero h1 {
        font-size: 2.25rem;
    }

    .legal-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .legal-main {
        padding: 3.5rem 0 4rem;
    }
}
