﻿
<!-- @import "tailwindcss"; -->

:root {
    --anchor: #00bce2;
    --navy: #112a4a;
    --aqua: #81d8d0;
    --mist: #b8e1eb;
    --paper: #f6f8f9;
    --grey: #e0e6ea;
    --charcoal: #333333;
    --slate: #6e7f8d;
    --coral: #ff6b5f;
    --yellow: #ffd166;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--charcoal);
    font-family: var(--font-roboto), Roboto, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input {
    font: inherit;
}

button {
    color: inherit;
}

.shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.narrow {
    width: min(920px, calc(100% - 40px));
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 8px;
    left: 8px;
    transform: translateY(-150%);
    background: var(--navy);
    color: white;
    padding: 10px 16px;
}

    .skip-link:focus {
        transform: none;
    }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(17,42,74,.13);
    background: rgba(246,248,249,.94);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 13px;
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.02em;
}

.logo-image {
    width: 31px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
}

    .nav-links > a:not(.button) {
        padding-block: 9px;
        position: relative;
    }

        .nav-links > a:not(.button)::after {
            content: "";
            position: absolute;
            left: 0;
            right: 100%;
            bottom: 3px;
            height: 2px;
            background: var(--anchor);
            transition: right .2s ease;
        }

        .nav-links > a:not(.button):hover::after, .nav-links > a.active::after {
            right: 0;
        }

.nav-login {
    margin-left: 4px;
    border-left: 1px solid var(--grey);
    padding-left: 28px !important;
}

.menu-button {
    display: none;
    border: 0;
    background: none;
    width: 42px;
    height: 42px;
    padding: 10px;
}

    .menu-button span {
        height: 2px;
        display: block;
        background: var(--navy);
        margin-block: 6px;
    }

.button {
    min-height: 50px;
    border: 1px solid transparent;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

    .button:hover {
        transform: translateY(-2px);
        box-shadow: 4px 5px 0 rgba(17,42,74,.16);
    }

.button-primary {
    background: var(--anchor);
    color: var(--navy);
}

.button-dark {
    background: var(--navy);
    color: white;
}

.button-white {
    background: white;
    color: var(--navy);
}

.button-outline {
    border-color: var(--navy);
    color: var(--navy);
    background: transparent;
}

.button-outline-light {
    border-color: rgba(255,255,255,.6);
    color: white;
    background: transparent;
}

.button-small {
    min-height: 43px;
    padding-inline: 18px;
    gap: 18px;
}

.arrow-icon {
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px solid var(--anchor);
    padding-block: 5px;
}

.hero {
    padding-top: 82px;
}

.eyebrow, .section-kicker {
    color: var(--navy);
    font-size: 11px;
    letter-spacing: .15em;
    font-weight: 800;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 27px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,107,95,.14);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 76px;
    align-items: center;
}

.hero h1, .page-hero h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(50px, 6.4vw, 82px);
    line-height: .96;
    letter-spacing: -.055em;
    font-weight: 900;
}

    .hero h1 span {
        position: relative;
        z-index: 0;
    }

        .hero h1 span::after {
            content: "";
            position: absolute;
            left: 0;
            right: 1%;
            bottom: 5px;
            height: 9px;
            background: var(--anchor);
            z-index: -1;
            transform: rotate(-.5deg);
            opacity: .85;
        }

.hero-copy {
    font-size: 19px;
    line-height: 1.6;
    max-width: 600px;
    color: #425160;
    margin: 28px 0 27px;
}

.button-row {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-row {
    margin-top: 28px;
    display: flex;
    gap: 23px;
    flex-wrap: wrap;
    color: var(--slate);
    font-size: 12px;
}

    .trust-row span {
        display: flex;
        gap: 7px;
        align-items: center;
    }

.check-icon {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--aqua);
    color: var(--navy);
    font-size: 10px;
    font-weight: 900;
}

.hero-board {
    position: relative;
    background: var(--mist);
    padding: 0 18px 20px;
    transform: rotate(1deg);
    box-shadow: 13px 16px 0 var(--navy);
}

.board-header {
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

    .board-header .online {
        color: #36706a;
        letter-spacing: 0;
    }

.hero-board .conversation-card {
    margin-bottom: 14px;
    transform: rotate(-1deg);
    box-shadow: 0 3px 0 rgba(17,42,74,.09);
}

    .hero-board .conversation-card:nth-of-type(3) {
        transform: rotate(.5deg);
        margin-left: 18px;
    }

.scribble-note {
    position: absolute;
    right: -27px;
    bottom: -40px;
    background: var(--yellow);
    color: var(--navy);
    padding: 16px 18px;
    width: 150px;
    font-family: "Comic Sans MS", cursive;
    font-size: 14px;
    transform: rotate(4deg);
    box-shadow: 4px 5px 0 rgba(17,42,74,.13);
}

.member-strip {
    margin-top: 91px;
    padding: 24px 0 27px;
    border-top: 1px solid var(--grey);
    display: flex;
    align-items: center;
    gap: 18px;
}

.member-faces {
    display: flex;
}

    .member-faces span {
        width: 35px;
        height: 35px;
        margin-left: -8px;
        border: 2px solid var(--paper);
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 9px;
        font-weight: 800;
        color: var(--navy);
        background: var(--aqua);
    }

        .member-faces span:first-child {
            margin-left: 0;
            background: var(--yellow);
        }

        .member-faces span:nth-child(3) {
            background: var(--mist);
        }

        .member-faces span:nth-child(4) {
            background: var(--coral);
        }

.member-strip p {
    margin: 0;
    color: var(--slate);
    font-size: 12px;
    line-height: 1.4;
}

    .member-strip p b {
        color: var(--navy);
    }

.strip-rule {
    height: 1px;
    background: var(--grey);
    flex: 1;
}

.strip-note {
    color: var(--slate);
    font-size: 11px;
}

.conversation-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--grey);
    padding: 25px;
    position: relative;
}

    .conversation-card.featured {
        background: #dcf6f2;
        border-color: #a9ddd8;
    }

.card-tag {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--slate);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
}

.avatar-mini {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    font-size: 10px;
}

.conversation-card h3 {
    color: var(--navy);
    font-size: 20px;
    line-height: 1.25;
    margin: 21px 0 12px;
    letter-spacing: -.02em;
}

.conversation-card p {
    color: var(--slate);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 22px;
}

.card-meta {
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid var(--grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--slate);
    font-size: 10px;
}

.reply-arrow {
    color: var(--navy);
    font-size: 18px;
}

.dark-panel {
    background: var(--navy);
    color: white;
}

.manifesto {
    padding: 92px 0;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: .48fr 1fr .8fr;
    gap: 50px;
}

.section-kicker.light {
    color: var(--aqua);
}

.manifesto h2 {
    font-size: clamp(54px, 7vw, 91px);
    line-height: .85;
    margin: 0;
    letter-spacing: -.06em;
}

    .manifesto h2 span {
        color: var(--anchor);
    }

.manifesto p {
    color: #c8d2dd;
    line-height: 1.7;
    max-width: 570px;
    font-size: 17px;
    margin-top: 29px;
}

.manifesto-list {
    border-top: 1px solid rgba(255,255,255,.2);
}

    .manifesto-list div {
        padding: 22px 0;
        border-bottom: 1px solid rgba(255,255,255,.2);
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 15px;
    }

    .manifesto-list b {
        color: var(--aqua);
    }

    .manifesto-list span {
        color: #c8d2dd;
        font-size: 13px;
        line-height: 1.5;
    }

.section {
    padding: 105px 0;
}

.split-heading {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 90px;
    align-items: end;
    margin-bottom: 52px;
}

    .split-heading h2, .feature-layout h2, .origin-copy h2, .founders-grid h2, .who-section h2, .included-section h2, .mini-faq h2, .safety-note h2, .community-principles h2 {
        color: var(--navy);
        font-size: clamp(38px, 4.6vw, 60px);
        line-height: 1.03;
        letter-spacing: -.045em;
        margin: 15px 0 0;
    }

    .split-heading > p, .feature-layout > div > p {
        color: var(--slate);
        line-height: 1.7;
        margin: 0;
        font-size: 16px;
    }

.conversation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.center-action {
    text-align: center;
    margin-top: 37px;
}

.wash {
    background: #e9f4f6;
}

.feature-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

    .feature-layout > div > p {
        max-width: 460px;
        margin-top: 25px;
    }

.feature-stack {
    border-top: 1px solid #b4c9ce;
}

    .feature-stack article {
        display: grid;
        grid-template-columns: 58px 1fr;
        gap: 25px;
        padding: 25px 0;
        border-bottom: 1px solid #b4c9ce;
    }

    .feature-stack h3 {
        margin: 0 0 9px;
        color: var(--navy);
        font-size: 20px;
    }

    .feature-stack p {
        margin: 0;
        color: var(--slate);
        font-size: 14px;
        line-height: 1.6;
    }

.feature-num {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    background: var(--aqua);
    color: var(--navy);
    border-radius: 50% 50% 50% 8px;
    font-weight: 900;
}

    .feature-num.coral {
        background: var(--coral);
    }

    .feature-num.yellow {
        background: var(--yellow);
    }

.quote-section {
    padding: 125px 8vw;
    text-align: center;
}

    .quote-section blockquote {
        margin: 0 auto;
        color: var(--navy);
        font-size: clamp(29px, 4vw, 47px);
        line-height: 1.25;
        max-width: 960px;
        font-weight: 700;
        letter-spacing: -.03em;
    }

    .quote-section p {
        margin-top: 32px;
        color: var(--slate);
        font-size: 10px;
        letter-spacing: .13em;
        font-weight: 700;
    }

.cta-band {
    background: var(--anchor);
    color: var(--navy);
    padding: 76px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.1fr .65fr;
    gap: 100px;
    align-items: center;
}

.cta-band h2 {
    font-size: clamp(39px, 5.5vw, 68px);
    line-height: .98;
    letter-spacing: -.05em;
    margin: 16px 0 0;
}

.cta-band p {
    line-height: 1.6;
    margin: 0 0 23px;
}

.cta-band.compact {
    padding: 50px 0;
}

    .cta-band.compact h2 {
        font-size: 40px;
    }

    .cta-band.compact p {
        margin: 8px 0 0;
    }

.site-footer {
    background: #0b203b;
    color: white;
    padding: 65px 0 25px;
}

    .site-footer .logo {
        color: white;
    }

.footer-top {
    display: grid;
    grid-template-columns: .75fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 62px;
}

    .footer-top > p {
        margin: 3px 0;
        color: #aebac8;
        line-height: 1.6;
    }

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

    .footer-links div {
        display: flex;
        flex-direction: column;
        gap: 11px;
        font-size: 13px;
    }

    .footer-links b {
        color: var(--aqua);
        font-size: 9px;
        letter-spacing: .14em;
        margin-bottom: 7px;
    }

    .footer-links a {
        color: #d9e0e6;
    }

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.14);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #8697aa;
    font-size: 10px;
}

    .footer-bottom div {
        display: flex;
        gap: 24px;
    }

.page-hero {
    min-height: 470px;
    padding: 95px 0 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--grey);
}

    .page-hero .section-kicker {
        margin-bottom: 22px;
    }

    .page-hero p {
        max-width: 700px;
        color: var(--slate);
        line-height: 1.7;
        font-size: 18px;
        margin: 28px 0 0;
    }

    .page-hero.about-hero {
        background: linear-gradient(105deg, var(--paper) 68%, var(--mist) 68%);
    }

    .page-hero.faq-hero {
        min-height: 390px;
        background: var(--mist);
    }

    .page-hero.membership-hero {
        text-align: center;
    }

    .page-hero.communities-hero .shell {
        display: grid;
        grid-template-columns: 1.2fr .7fr;
        align-items: end;
        gap: 100px;
    }

    .page-hero.communities-hero p {
        margin: 0 0 5px;
    }

.origin-section {
    padding: 105px 0;
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: 120px;
    align-items: center;
}

.origin-note {
    background: var(--yellow);
    padding: 35px;
    transform: rotate(-2deg);
    box-shadow: 9px 10px 0 var(--navy);
    color: var(--navy);
}

    .origin-note span {
        font-size: 9px;
        letter-spacing: .15em;
        font-weight: 900;
    }

    .origin-note p {
        font-family: "Comic Sans MS", cursive;
        font-size: 26px;
        line-height: 1.45;
    }

    .origin-note i {
        font-size: 12px;
    }

.origin-copy > p {
    color: var(--slate);
    line-height: 1.8;
    font-size: 16px;
}

.values-section {
    padding: 96px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 43px;
}

    .values-grid article {
        padding: 25px 28px 10px;
        border-left: 1px solid rgba(255,255,255,.18);
    }

        .values-grid article:first-child {
            padding-left: 0;
            border-left: 0;
        }

    .values-grid span {
        color: var(--anchor);
        font-weight: 900;
    }

    .values-grid h3 {
        font-size: 22px;
        margin: 48px 0 14px;
    }

    .values-grid p {
        color: #bdc8d5;
        font-size: 14px;
        line-height: 1.65;
    }

.who-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.role-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

    .role-cloud span {
        padding: 15px 20px;
        border: 1px solid #bdc8d1;
        background: white;
        color: var(--navy);
        font-weight: 700;
    }

        .role-cloud span:nth-child(2), .role-cloud span:nth-child(5), .role-cloud span:nth-child(8) {
            background: var(--aqua);
        }

        .role-cloud span:nth-child(4) {
            background: var(--yellow);
            transform: rotate(1deg);
        }

.founders-wash {
    padding: 100px 0;
    background: #e9f4f6;
}

.founders-grid {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 100px;
    align-items: center;
}

    .founders-grid p {
        color: var(--slate);
        line-height: 1.8;
    }

.founders-card {
    min-height: 400px;
    position: relative;
    background: var(--mist);
    border: 1px solid #9ec9d3;
}

.founder-shape {
    position: absolute;
    width: 220px;
    height: 260px;
    display: grid;
    place-items: center;
    font-size: 55px;
    font-weight: 900;
    color: var(--navy);
    background: var(--aqua);
    border-radius: 50% 50% 9px 50%;
    left: 60px;
    top: 60px;
}

    .founder-shape.two {
        background: var(--anchor);
        left: auto;
        right: 60px;
        transform: rotate(9deg);
        opacity: .8;
    }

.tape {
    position: absolute;
    z-index: 2;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: var(--yellow);
    padding: 10px 25px;
    font-family: "Comic Sans MS", cursive;
    white-space: nowrap;
}

.founder-signoff {
    margin-top: 30px;
    color: var(--navy) !important;
    font-weight: 800;
}

    .founder-signoff span {
        color: var(--slate);
        font-weight: 400;
        font-size: 13px;
    }

.page-cta {
    padding: 58px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

    .page-cta p {
        color: var(--navy);
        font-size: 23px;
        font-weight: 700;
        margin: 0;
    }

.faq-page {
    padding: 85px 0 110px;
    display: grid;
    grid-template-columns: .55fr 1.2fr;
    gap: 95px;
}

.sticky-note {
    position: sticky;
    top: 110px;
    background: var(--yellow);
    padding: 28px;
    box-shadow: 6px 7px 0 var(--navy);
    transform: rotate(-1deg);
}

    .sticky-note b {
        font-size: 10px;
        letter-spacing: .13em;
    }

    .sticky-note p {
        color: var(--navy);
        font-size: 19px;
        line-height: 1.5;
    }

    .sticky-note a {
        font-size: 12px;
        font-weight: 700;
        border-bottom: 1px solid var(--navy);
    }

.faq-list {
    border-top: 1px solid #bec9d2;
}

.faq-item {
    border-bottom: 1px solid #bec9d2;
}

    .faq-item button {
        width: 100%;
        border: 0;
        background: none;
        text-align: left;
        display: grid;
        grid-template-columns: 50px 1fr 30px;
        align-items: center;
        gap: 18px;
        padding: 26px 0;
        cursor: pointer;
    }

        .faq-item button > span {
            color: var(--anchor);
            font-size: 11px;
            font-weight: 900;
        }

        .faq-item button b {
            color: var(--navy);
            font-size: 19px;
        }

        .faq-item button i {
            width: 29px;
            height: 29px;
            display: grid;
            place-items: center;
            border: 1px solid #a8b7c3;
            border-radius: 50%;
            font-style: normal;
            font-size: 20px;
        }

    .faq-item p {
        margin: -5px 48px 28px 68px;
        color: var(--slate);
        line-height: 1.75;
    }

.safety-note {
    padding: 48px;
    background: #fff2ef;
    border-left: 7px solid var(--coral);
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 70px;
    align-items: center;
}

    .safety-note span {
        color: var(--coral);
        font-weight: 900;
        font-size: 10px;
        letter-spacing: .13em;
    }

    .safety-note h2 {
        font-size: 34px;
    }

    .safety-note p {
        color: var(--slate);
        line-height: 1.7;
    }

.pricing-section {
    padding: 28px 0 100px;
}

.pricing-toggle {
    width: fit-content;
    margin: 0 auto 35px;
    background: var(--grey);
    padding: 5px;
    display: flex;
}

    .pricing-toggle button {
        border: 0;
        background: transparent;
        padding: 10px 17px;
        cursor: pointer;
        font-size: 13px;
        font-weight: 700;
    }

        .pricing-toggle button.active {
            background: white;
            box-shadow: 0 2px 8px rgba(17,42,74,.1);
        }

    .pricing-toggle span {
        color: #238075;
        font-size: 10px;
        margin-left: 4px;
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: stretch;
}

.price-card {
    position: relative;
    padding: 32px;
    border: 1px solid #c6d0d8;
    background: white;
    display: flex;
    flex-direction: column;
}

    .price-card.primary {
        background: var(--aqua);
        border: 2px solid var(--navy);
        transform: translateY(-9px);
        box-shadow: 8px 9px 0 var(--navy);
    }

    .price-card.dark {
        background: var(--navy);
        color: white;
    }

.popular {
    position: absolute;
    right: 15px;
    top: -15px;
    background: var(--coral);
    color: var(--navy);
    padding: 7px 12px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
}

.price-name {
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
}

.price-card.dark .price-name {
    color: var(--aqua);
}

.price-card > p {
    color: var(--slate);
    font-size: 14px;
    min-height: 37px;
}

.price-card.dark > p, .price-card.dark .billing {
    color: #b9c7d5;
}

.price {
    display: flex;
    align-items: flex-start;
    color: var(--navy);
    margin: 13px 0 0;
}

.price-card.dark .price {
    color: white;
}

.price span {
    font-size: 23px;
    font-weight: 800;
    margin-top: 9px;
}

.price strong {
    font-size: 65px;
    line-height: 1;
    letter-spacing: -.06em;
}

.price small {
    align-self: flex-end;
    margin: 0 0 8px 8px;
    color: var(--slate);
}

.billing {
    color: var(--slate);
    font-size: 10px;
    margin: 7px 0 25px;
}

.price-card .button {
    width: 100%;
}

.price-card ul {
    margin: 28px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid rgba(110,127,141,.3);
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.price-card li {
    list-style: none;
    display: flex;
    gap: 10px;
    font-size: 13px;
    align-items: center;
}

.price-footnote {
    margin-top: 28px;
    text-align: center;
    color: var(--slate);
    font-size: 10px;
}

.included-section {
    padding: 100px 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #b8c9ce;
}

    .included-grid article {
        padding: 28px;
        border-right: 1px solid #b8c9ce;
    }

        .included-grid article:first-child {
            padding-left: 0;
        }

        .included-grid article:last-child {
            border-right: 0;
        }

    .included-grid b {
        color: var(--anchor);
    }

    .included-grid h3 {
        color: var(--navy);
        font-size: 19px;
        margin: 45px 0 12px;
    }

    .included-grid p {
        color: var(--slate);
        font-size: 13px;
        line-height: 1.6;
    }

.mini-faq {
    padding: 100px 0;
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 100px;
}

    .mini-faq > div > p {
        color: var(--slate);
    }

.pricing-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

    .pricing-controls .pricing-toggle {
        margin: 0;
    }

.currency-toggle {
    background: white;
    border: 1px solid var(--grey);
    padding: 5px;
    display: flex;
}

    .currency-toggle button {
        border: 0;
        background: transparent;
        padding: 10px 13px;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
    }

        .currency-toggle button.active {
            color: white;
            background: var(--navy);
        }

.offer-note {
    width: fit-content;
    margin: 0 auto 36px;
    padding: 8px 13px;
    background: var(--yellow);
    color: var(--navy);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
    transform: rotate(-.5deg);
}

.pricing-grid.two-plans {
    grid-template-columns: repeat(2, minmax(0, 410px));
    justify-content: center;
}

.two-plans .price-card {
    min-height: 510px;
}

    .two-plans .price-card.primary {
        transform: translateY(0);
    }

.two-plans .billing {
    min-height: 12px;
}

.join-page {
    background: #e9f4f6;
    min-height: calc(100vh - 78px);
    padding: 44px 0 80px;
}

.onboarding-shell {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    box-shadow: 13px 15px 0 rgba(17,42,74,.13);
}

.onboarding-aside {
    min-height: 720px;
    padding: 54px 42px;
    background: var(--navy);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

    .onboarding-aside::after {
        content: "";
        position: absolute;
        width: 210px;
        height: 210px;
        right: -100px;
        top: 180px;
        border: 34px solid var(--anchor);
        border-radius: 50%;
        opacity: .18;
    }

    .onboarding-aside h1 {
        font-size: 43px;
        line-height: 1.02;
        letter-spacing: -.05em;
        margin: 22px 0;
    }

    .onboarding-aside > div > p {
        color: #b9c8d7;
        line-height: 1.7;
        font-size: 14px;
    }

.onboarding-plan {
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1;
}

    .onboarding-plan > span {
        color: var(--aqua);
        font-size: 9px;
        letter-spacing: .13em;
        font-weight: 900;
        margin-bottom: 8px;
    }

    .onboarding-plan b {
        font-size: 19px;
    }

    .onboarding-plan small {
        color: #c5d1dc;
    }

    .onboarding-plan em {
        width: fit-content;
        background: rgba(129,216,208,.13);
        color: var(--aqua);
        font-size: 9px;
        font-style: normal;
        padding: 6px 9px;
        margin-top: 10px;
    }

.onboarding-form {
    background: white;
    min-height: 720px;
    padding: 43px 52px 30px;
    display: flex;
    flex-direction: column;
}

.progress-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--navy);
}

    .progress-copy span {
        color: var(--slate);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .12em;
    }

    .progress-copy b {
        font-size: 11px;
    }

.progress-track {
    height: 4px;
    background: var(--grey);
    margin: 13px 0 36px;
}

    .progress-track i {
        display: block;
        height: 100%;
        background: var(--anchor);
        transition: width .2s ease;
    }

.form-error {
    background: #fff0ed;
    border-left: 4px solid var(--coral);
    color: var(--navy);
    padding: 11px 14px;
    margin: -17px 0 20px;
    font-size: 12px;
}

.form-step {
    flex: 1;
}

.form-eyebrow {
    color: var(--anchor);
    font-size: 9px;
    letter-spacing: .14em;
    font-weight: 900;
}

.form-step > h2 {
    color: var(--navy);
    font-size: 37px;
    letter-spacing: -.045em;
    line-height: 1.05;
    margin: 10px 0 9px;
}

.form-step > p {
    color: var(--slate);
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 27px;
    max-width: 570px;
}

.tier-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

    .tier-cards > button {
        min-height: 158px;
        border: 1px solid #c3ced6;
        background: white;
        text-align: left;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        cursor: pointer;
    }

        .tier-cards > button.active {
            background: #e0f6f3;
            border: 2px solid var(--navy);
            box-shadow: 4px 5px 0 var(--navy);
        }

    .tier-cards i {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        background: var(--mist);
        border-radius: 50%;
        color: var(--navy);
        font-size: 8px;
        font-style: normal;
        font-weight: 900;
    }

    .tier-cards button:last-child i {
        background: var(--yellow);
    }

    .tier-cards b {
        color: var(--navy);
        font-size: 17px;
        margin: 14px 0 6px;
    }

    .tier-cards span {
        color: var(--slate);
        font-size: 11px;
        line-height: 1.5;
    }

.choice-row {
    display: grid;
    grid-template-columns: 1.4fr .7fr;
    gap: 22px;
    margin-top: 28px;
}

    .choice-row label {
        display: block;
        color: var(--navy);
        font-size: 10px;
        font-weight: 800;
        margin-bottom: 8px;
    }

.segmented {
    display: flex;
    border: 1px solid #c3ced6;
    padding: 4px;
    background: var(--paper);
}

    .segmented button {
        flex: 1;
        border: 0;
        background: transparent;
        padding: 9px 7px;
        color: var(--slate);
        font-size: 10px;
        cursor: pointer;
    }

        .segmented button.active {
            background: var(--navy);
            color: white;
        }

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

    .field-grid label {
        min-width: 0;
    }

        .field-grid label.full {
            grid-column: span 2;
        }

        .field-grid label > span, .specialty-picker label > span {
            display: block;
            color: var(--navy);
            font-size: 10px;
            font-weight: 800;
            margin-bottom: 7px;
        }

    .field-grid em {
        color: var(--slate);
        font-style: normal;
        font-weight: 400;
    }

    .field-grid input, .field-grid select, .field-grid textarea, .specialty-picker input {
        width: 100%;
        border: 1px solid #bcc8d1;
        background: white;
        min-height: 43px;
        padding: 10px 12px;
        color: var(--navy);
        outline: 0;
    }

        .field-grid input:focus, .field-grid select:focus, .field-grid textarea:focus, .specialty-picker input:focus {
            border-color: var(--anchor);
            box-shadow: 0 0 0 3px rgba(0,188,226,.11);
        }

    .field-grid textarea {
        min-height: 98px;
        resize: vertical;
    }

    .field-grid label small {
        display: block;
        color: var(--slate);
        font-size: 9px;
        margin-top: 5px;
    }

.prefixed-input {
    display: flex;
    border: 1px solid #bcc8d1;
    align-items: center;
}

    .prefixed-input:focus-within {
        border-color: var(--anchor);
        box-shadow: 0 0 0 3px rgba(0,188,226,.11);
    }

    .prefixed-input i {
        color: var(--anchor);
        padding-left: 12px;
        font-style: normal;
        font-weight: 900;
    }

    .prefixed-input input {
        border: 0;
        box-shadow: none !important;
    }

.password-note {
    width: fit-content;
    margin-top: 17px;
    background: var(--paper);
    color: var(--slate);
    padding: 8px 11px;
    font-size: 9px;
}

.chip-field {
    border: 0;
    padding: 0;
    margin: 25px 0 20px;
}

    .chip-field legend {
        color: var(--navy);
        font-size: 10px;
        font-weight: 800;
    }

    .chip-field > p {
        color: var(--slate);
        font-size: 9px;
        margin: 5px 0 10px;
    }

    .chip-field > div {
        display: flex;
        gap: 7px;
        flex-wrap: wrap;
    }

    .chip-field button, .specialty-results button {
        border: 1px solid #bcc8d1;
        background: white;
        color: var(--navy);
        padding: 8px 11px;
        font-size: 10px;
        cursor: pointer;
    }

        .chip-field button.selected, .specialty-results button.selected {
            background: #dff5f2;
            border-color: #6fc9be;
        }

.switch-line {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: var(--navy);
    font-size: 11px;
}

    .switch-line input {
        accent-color: var(--anchor);
        margin-top: 3px;
    }

    .switch-line b, .switch-line small {
        display: block;
    }

    .switch-line small {
        color: var(--slate);
        font-size: 9px;
        margin-top: 3px;
    }

.specialty-results {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    min-height: 36px;
}

.selected-specialties {
    border-top: 1px solid var(--grey);
    margin-top: 18px;
    padding-top: 13px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

    .selected-specialties > span {
        color: var(--slate);
        font-size: 8px;
        font-weight: 900;
        margin-right: 4px;
    }

    .selected-specialties button {
        border: 0;
        background: var(--navy);
        color: white;
        padding: 6px 9px;
        font-size: 9px;
        cursor: pointer;
    }

.optional-profile {
    margin-top: 22px;
    border-top: 1px solid #c8d2da;
    border-bottom: 1px solid #c8d2da;
}

    .optional-profile summary {
        list-style: none;
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

        .optional-profile summary::-webkit-details-marker {
            display: none;
        }

        .optional-profile summary b, .optional-profile summary small {
            display: block;
        }

        .optional-profile summary b {
            color: var(--navy);
            font-size: 12px;
        }

        .optional-profile summary small {
            color: var(--slate);
            font-size: 9px;
            margin-top: 2px;
        }

        .optional-profile summary i {
            font-style: normal;
        }

    .optional-profile[open] summary i {
        transform: rotate(45deg);
    }

    .optional-profile > .field-grid {
        padding: 12px 0 18px;
    }

    .optional-profile > .switch-line {
        padding-bottom: 18px;
    }

.acknowledgements {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .acknowledgements label {
        display: flex;
        gap: 10px;
        color: var(--slate);
        font-size: 10px;
        line-height: 1.45;
    }

    .acknowledgements input {
        accent-color: var(--anchor);
        flex: 0 0 auto;
        margin-top: 2px;
    }

    .acknowledgements a {
        color: var(--navy);
        text-decoration: underline;
    }

.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.back-button {
    border: 0;
    background: none;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.form-reassurance {
    text-align: center;
    border-top: 1px solid var(--grey);
    padding-top: 17px;
    margin-top: 20px;
    color: var(--slate);
    font-size: 9px;
}

.onboarding-complete {
    width: min(700px, calc(100% - 30px));
    min-height: 610px;
    margin: 0 auto;
    background: white;
    padding: 70px;
    text-align: center;
    box-shadow: 12px 14px 0 var(--navy);
}

.complete-mark {
    width: 68px;
    height: 68px;
    margin: 0 auto 26px;
    display: grid;
    place-items: center;
    background: var(--aqua);
    color: var(--navy);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 900;
}

.onboarding-complete h1 {
    color: var(--navy);
    font-size: 52px;
    letter-spacing: -.05em;
    margin: 15px 0;
}

.onboarding-complete > p {
    color: var(--slate);
    line-height: 1.7;
}

.complete-summary {
    margin: 27px auto;
    padding: 18px;
    max-width: 390px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--grey);
    border-bottom: 1px solid var(--grey);
    color: var(--navy);
}

.onboarding-complete > small {
    display: block;
    color: var(--slate);
    max-width: 450px;
    margin: 28px auto 0;
    line-height: 1.5;
}

.directory-section {
    padding: 55px 0 100px;
}

.directory-tools {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
    margin-bottom: 35px;
}

.search-box {
    display: flex;
    align-items: center;
    width: min(380px, 100%);
    background: white;
    border: 1px solid #c5d0d8;
    padding: 0 15px;
}

    .search-box span {
        font-size: 25px;
        color: var(--slate);
    }

    .search-box input {
        width: 100%;
        border: 0;
        outline: 0;
        background: transparent;
        padding: 14px 10px;
    }

.filter-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

    .filter-row button {
        border: 1px solid #bdc8d1;
        background: transparent;
        padding: 9px 15px;
        cursor: pointer;
        font-size: 12px;
    }

        .filter-row button.active {
            background: var(--navy);
            color: white;
            border-color: var(--navy);
        }

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.community-card {
    background: white;
    border: 1px solid #c8d1d8;
    padding: 25px;
    display: flex;
    flex-direction: column;
    min-height: 345px;
}

.community-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--navy);
    font-weight: 900;
    border-radius: 50% 50% 8px 50%;
    margin-bottom: 20px;
}

    .community-icon.aqua {
        background: var(--aqua);
    }

    .community-icon.yellow {
        background: var(--yellow);
    }

    .community-icon.mist {
        background: var(--mist);
    }

    .community-icon.coral {
        background: var(--coral);
    }

.community-top {
    display: flex;
    justify-content: space-between;
    color: var(--slate);
    font-size: 9px;
    letter-spacing: .08em;
    font-weight: 800;
}

.community-card h3 {
    color: var(--navy);
    font-size: 22px;
    margin: 17px 0 9px;
}

.community-card > p {
    color: var(--slate);
    line-height: 1.55;
    font-size: 13px;
    margin: 0 0 18px;
}

.topic-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 23px;
}

    .topic-row span {
        background: var(--paper);
        border: 1px solid var(--grey);
        padding: 5px 8px;
        color: var(--slate);
        font-size: 9px;
    }

.community-card > button {
    margin-top: auto;
    height: 39px;
    border: 1px solid var(--navy);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
}

    .community-card > button.join {
        background: var(--navy);
        color: white;
    }

    .community-card > button.joined {
        background: #e4f6f3;
        color: #286c64;
        border-color: #9bd2ca;
    }

.empty-state {
    padding: 80px;
    text-align: center;
    color: var(--slate);
    border: 1px dashed #adbcc6;
}

.community-principles {
    padding: 96px 0;
}

    .community-principles .shell {
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 100px;
    }

    .community-principles h2 {
        color: white;
    }

.principle-list {
    border-top: 1px solid rgba(255,255,255,.2);
}

    .principle-list article {
        display: grid;
        grid-template-columns: 45px 1fr;
        gap: 23px;
        border-bottom: 1px solid rgba(255,255,255,.2);
        padding: 24px 0;
    }

        .principle-list article > b {
            color: var(--anchor);
        }

    .principle-list h3 {
        margin: 0 0 8px;
    }

    .principle-list p {
        color: #bdc8d5;
        font-size: 13px;
        line-height: 1.6;
        margin: 0;
    }

.dashboard-page {
    background: #edf1f3;
    min-height: calc(100vh - 78px);
}

.dashboard-app {
    width: min(1440px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px minmax(470px, 700px) 300px;
    gap: 24px;
    padding: 26px 25px 60px;
}

.dash-side {
    min-height: calc(100vh - 130px);
    border-right: 1px solid #d3dce2;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
}

.dash-profile {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 4px 0 25px;
    border-bottom: 1px solid #d3dce2;
}

    .dash-profile > span {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--yellow);
        color: var(--navy);
        font-size: 11px;
        font-weight: 900;
    }

    .dash-profile b, .dash-profile small {
        display: block;
    }

    .dash-profile b {
        color: var(--navy);
        font-size: 13px;
    }

    .dash-profile small {
        color: var(--slate);
        font-size: 9px;
        margin-top: 3px;
    }

.dash-side nav {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .dash-side nav a {
        padding: 10px 11px;
        display: flex;
        align-items: center;
        gap: 13px;
        color: var(--slate);
        font-size: 13px;
    }

        .dash-side nav a.active {
            background: white;
            color: var(--navy);
            font-weight: 800;
            border-left: 3px solid var(--anchor);
        }

    .dash-side nav i {
        margin-left: auto;
        background: var(--coral);
        color: var(--navy);
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 9px;
        font-style: normal;
    }

.side-communities {
    border-top: 1px solid #d3dce2;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .side-communities > b {
        font-size: 8px;
        color: var(--slate);
        letter-spacing: .13em;
        margin: 0 10px 9px;
    }

    .side-communities a {
        color: var(--navy);
        font-size: 11px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 7px 9px;
    }

        .side-communities a::first-letter {
            color: var(--anchor);
        }

.dash-help {
    margin-top: auto;
    color: var(--slate);
    font-size: 11px;
    display: flex;
    gap: 10px;
}

.dash-main {
    min-width: 0;
}

.dash-welcome {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 22px;
}

    .dash-welcome span {
        color: var(--anchor);
        font-size: 8px;
        font-weight: 900;
        letter-spacing: .12em;
    }

    .dash-welcome h1 {
        color: var(--navy);
        font-size: 30px;
        letter-spacing: -.04em;
        margin: 5px 0 2px;
    }

    .dash-welcome p {
        color: var(--slate);
        margin: 0;
        font-size: 12px;
    }

.new-post {
    background: var(--anchor);
    color: var(--navy);
    border: 0;
    padding: 11px 15px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.dash-tabs {
    display: flex;
    border-bottom: 1px solid #c8d2d9;
    gap: 25px;
}

    .dash-tabs button {
        padding: 10px 1px;
        border: 0;
        border-bottom: 3px solid transparent;
        background: none;
        color: var(--slate);
        font-size: 11px;
        cursor: pointer;
    }

        .dash-tabs button.active {
            border-color: var(--anchor);
            color: var(--navy);
            font-weight: 800;
        }

.feed-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding-top: 15px;
}

.feed-card {
    background: white;
    border: 1px solid #d4dde3;
    padding: 20px 22px 13px;
}

.feed-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feed-avatar {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--aqua);
    color: var(--navy);
    font-size: 10px;
    font-weight: 900;
}

.av-1 {
    background: var(--mist);
}

.av-2 {
    background: var(--yellow);
}

.feed-author b, .feed-author small {
    display: block;
}

.feed-author b {
    color: var(--navy);
    font-size: 12px;
}

.feed-author small {
    color: var(--slate);
    font-size: 9px;
    margin-top: 2px;
}

.feed-author > button {
    margin-left: auto;
    border: 0;
    background: none;
    color: var(--slate);
    cursor: pointer;
}

.feed-community {
    width: fit-content;
    margin-top: 16px;
    padding: 5px 8px;
    background: #ddf4f1;
    color: #337b73;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .08em;
}

.feed-card h2 {
    color: var(--navy);
    font-size: 19px;
    line-height: 1.3;
    margin: 11px 0 8px;
}

.feed-card > p {
    color: #536372;
    font-size: 12px;
    line-height: 1.65;
}

.feed-actions {
    display: flex;
    gap: 22px;
    padding-top: 11px;
    margin-top: 13px;
    border-top: 1px solid #e0e6ea;
}

    .feed-actions button {
        border: 0;
        background: none;
        color: var(--slate);
        font-size: 10px;
        cursor: pointer;
        padding: 4px 0;
    }

        .feed-actions button.active {
            color: #268578;
            font-weight: 800;
        }

    .feed-actions .save {
        margin-left: auto;
    }

.dash-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.right-card {
    background: white;
    border: 1px solid #d4dde3;
    padding: 19px;
}

    .right-card > span {
        color: var(--slate);
        font-size: 8px;
        letter-spacing: .12em;
        font-weight: 900;
    }

.prompt-card {
    background: var(--yellow);
    border: 0;
    transform: rotate(.5deg);
}

    .prompt-card h3 {
        color: var(--navy);
        font-family: "Comic Sans MS", cursive;
        font-size: 18px;
        line-height: 1.45;
    }

    .prompt-card button {
        border: 0;
        border-bottom: 1px solid var(--navy);
        background: none;
        padding: 4px 0;
        font-size: 10px;
        font-weight: 800;
        cursor: pointer;
    }

.event {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid var(--grey);
}

    .event > b {
        color: var(--anchor);
        font-size: 20px;
    }

    .event strong, .event small {
        display: block;
    }

    .event strong {
        color: var(--navy);
        font-size: 11px;
    }

    .event small {
        color: var(--slate);
        font-size: 9px;
        margin-top: 3px;
    }

.right-card > a {
    display: inline-block;
    margin-top: 14px;
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
}

.people > div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.people i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--mist);
    font-style: normal;
    font-size: 9px;
    color: var(--navy);
    font-weight: 900;
}

.people p {
    margin: 0;
}

.people b, .people small {
    display: block;
}

.people b {
    color: var(--navy);
    font-size: 10px;
}

.people small {
    color: var(--slate);
    font-size: 8px;
    margin-top: 2px;
}

.people button {
    margin-left: auto;
    border: 1px solid #becbd4;
    background: none;
    border-radius: 50%;
    width: 27px;
    height: 27px;
    cursor: pointer;
}

.people div:nth-of-type(2) i {
    background: var(--aqua);
}

.people div:nth-of-type(3) i {
    background: var(--yellow);
}

@media (max-width: 1050px) {
    .nav-links {
        gap: 18px;
    }

    .hero-grid {
        gap: 45px;
    }

    .dashboard-app {
        grid-template-columns: 75px minmax(460px, 1fr) 270px;
    }

    .dash-side {
        align-items: center;
    }

        .dash-profile > div, .dash-side nav span, .side-communities span, .dash-help span, .side-communities > b {
            display: none;
        }

    .dash-profile {
        padding-inline: 0;
    }

    .dash-side nav a {
        font-size: 17px;
    }

    .side-communities a {
        font-size: 10px;
    }

    .footer-top {
        grid-template-columns: .8fr .8fr 1.2fr;
    }
}

@media (max-width: 860px) {
    .shell, .narrow {
        width: min(100% - 30px, 680px);
    }

    .nav-wrap {
        height: 68px;
    }

    .menu-button {
        display: block;
    }

    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 68px;
        background: var(--paper);
        padding: 18px 20px 25px;
        border-bottom: 1px solid var(--grey);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links > a:not(.button) {
            padding: 12px;
        }

    .nav-login {
        border-left: 0;
        margin: 0;
        padding-left: 12px !important;
    }

    .nav-links .button {
        margin-top: 8px;
    }

    .hero {
        padding-top: 55px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero h1, .page-hero h1 {
        font-size: clamp(47px, 12vw, 70px);
    }

    .hero-copy {
        font-size: 17px;
    }

    .hero-board {
        width: calc(100% - 18px);
    }

    .member-strip {
        margin-top: 70px;
        flex-wrap: wrap;
    }

    .strip-rule {
        display: none;
    }

    .strip-note {
        width: 100%;
    }

    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .manifesto h2 {
        font-size: 67px;
    }

    .manifesto-list {
        margin-top: 15px;
    }

    .split-heading, .feature-layout, .cta-grid, .page-hero.communities-hero .shell, .origin-section, .who-section, .founders-grid, .faq-page, .safety-note, .mini-faq, .community-principles .shell {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .conversation-grid, .community-grid {
        grid-template-columns: 1fr 1fr;
    }

        .conversation-grid .conversation-card:last-child {
            grid-column: span 2;
        }

    .section {
        padding: 78px 0;
    }

    .feature-stack {
        margin-top: 10px;
    }

    .quote-section {
        padding: 90px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

        .footer-top > p {
            text-align: right;
        }

    .footer-links {
        grid-column: span 2;
    }

    .page-hero {
        min-height: 380px;
        padding: 70px 0;
    }

        .page-hero.about-hero {
            background: linear-gradient(170deg, var(--paper) 80%, var(--mist) 80%);
        }

    .origin-section {
        padding: 80px 0;
    }

    .origin-note {
        max-width: 430px;
    }

    .values-grid, .included-grid {
        grid-template-columns: 1fr 1fr;
    }

        .values-grid article:nth-child(3), .included-grid article:nth-child(3) {
            border-left: 0;
        }

    .founders-card {
        min-height: 360px;
    }

    .faq-page {
        padding-top: 55px;
    }

    .sticky-note {
        position: static;
    }

    .safety-note {
        gap: 18px;
    }

    .pricing-grid, .pricing-grid.two-plans {
        grid-template-columns: 1fr;
        max-width: 570px;
        margin: auto;
        gap: 25px;
    }

    .price-card.primary {
        transform: none;
    }

    .directory-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .search-box {
        max-width: none;
    }

    .dashboard-app {
        grid-template-columns: 65px 1fr;
    }

    .dash-right {
        display: none;
    }

    .join-page {
        padding-top: 25px;
    }

    .onboarding-shell {
        grid-template-columns: 1fr;
        width: min(700px, calc(100% - 30px));
    }

    .onboarding-aside {
        min-height: 290px;
        padding: 38px;
        display: grid;
        grid-template-columns: 1fr .7fr;
        gap: 35px;
    }

        .onboarding-aside h1 {
            font-size: 36px;
        }

    .onboarding-plan {
        align-self: end;
    }

    .onboarding-form {
        min-height: 680px;
    }
}

@media (max-width: 560px) {
    .shell, .narrow {
        width: min(100% - 26px, 480px);
    }

    .hero {
        padding-top: 42px;
    }

    .eyebrow {
        line-height: 1.4;
    }

    .hero h1, .page-hero h1 {
        font-size: 45px;
    }

        .hero h1 br {
            display: none;
        }

        .hero h1 span::after {
            height: 6px;
            bottom: 2px;
        }

    .hero-copy {
        font-size: 16px;
        line-height: 1.55;
    }

    .button-row {
        align-items: stretch;
        flex-direction: column;
        gap: 13px;
    }

        .button-row .button {
            width: 100%;
        }

        .button-row .text-link {
            width: fit-content;
        }

    .trust-row {
        gap: 11px 18px;
    }

    .hero-board {
        padding-inline: 12px;
        box-shadow: 8px 9px 0 var(--navy);
    }

        .hero-board .conversation-card:nth-of-type(3) {
            margin-left: 0;
        }

    .scribble-note {
        right: -7px;
        bottom: -43px;
    }

    .member-strip {
        margin-top: 83px;
    }

    .manifesto {
        padding: 70px 0;
    }

        .manifesto h2 {
            font-size: 56px;
        }

    .manifesto-grid {
        gap: 24px;
    }

    .section {
        padding: 70px 0;
    }

    .split-heading h2, .feature-layout h2, .origin-copy h2, .founders-grid h2, .who-section h2, .included-section h2, .mini-faq h2, .community-principles h2 {
        font-size: 38px;
    }

    .conversation-grid, .community-grid {
        grid-template-columns: 1fr;
    }

        .conversation-grid .conversation-card:last-child {
            grid-column: auto;
        }

    .conversation-card {
        min-height: 230px;
    }

    .feature-stack article {
        grid-template-columns: 46px 1fr;
    }

    .quote-section blockquote {
        font-size: 27px;
    }

    .cta-band {
        padding: 62px 0;
    }

        .cta-band h2 {
            font-size: 43px;
        }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

        .footer-top > p {
            text-align: left;
        }

    .footer-links {
        grid-column: auto;
    }

    .footer-bottom, .page-cta {
        align-items: flex-start;
        flex-direction: column;
    }

        .footer-bottom div {
            flex-wrap: wrap;
            gap: 12px 18px;
        }

    .page-hero p {
        font-size: 16px;
    }

    .origin-note {
        margin-right: 10px;
    }

    .values-grid, .included-grid {
        grid-template-columns: 1fr;
    }

        .values-grid article, .values-grid article:first-child {
            border-left: 0;
            border-bottom: 1px solid rgba(255,255,255,.18);
            padding: 24px 0;
        }

        .values-grid h3 {
            margin-top: 18px;
        }

    .role-cloud span {
        padding: 12px 15px;
    }

    .founders-card {
        min-height: 300px;
    }

    .founder-shape {
        width: 160px;
        height: 200px;
        left: 28px;
        top: 45px;
    }

        .founder-shape.two {
            right: 28px;
        }

    .faq-item button {
        grid-template-columns: 30px 1fr 28px;
        gap: 8px;
    }

        .faq-item button b {
            font-size: 16px;
        }

    .faq-item p {
        margin: 0 0 24px 38px;
    }

    .safety-note {
        padding: 30px 24px;
        margin-bottom: 70px;
    }

    .pricing-section {
        padding-bottom: 70px;
    }

    .pricing-controls {
        flex-direction: column;
    }

    .price-card {
        padding: 27px 23px;
    }

    .included-grid article, .included-grid article:first-child {
        border: 0;
        border-bottom: 1px solid #b8c9ce;
        padding: 25px 0;
    }

    .included-grid h3 {
        margin-top: 20px;
    }

    .mini-faq {
        padding: 75px 0;
    }

    .directory-section {
        padding-top: 35px;
    }

    .community-principles {
        padding: 75px 0;
    }

    .dashboard-app {
        grid-template-columns: 1fr;
        padding: 18px 13px 45px;
    }

    .dash-side {
        min-height: auto;
        border: 0;
        padding: 0;
        flex-direction: row;
        align-items: center;
    }

    .dash-profile {
        border: 0;
        padding: 0;
    }

    .dash-side nav {
        flex: 1;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }

        .dash-side nav a {
            padding: 8px;
        }

            .dash-side nav a.active {
                border: 0;
            }

            .dash-side nav a:nth-child(3), .dash-side nav a:nth-child(4), .side-communities, .dash-help {
                display: none;
            }

    .dash-welcome {
        align-items: flex-start;
        gap: 14px;
    }

        .dash-welcome h1 {
            font-size: 25px;
        }

        .dash-welcome .new-post {
            width: 42px;
            height: 42px;
            padding: 0;
            overflow: hidden;
            color: transparent;
            flex: 0 0 auto;
        }

            .dash-welcome .new-post::first-letter {
                color: var(--navy);
            }

    .feed-card {
        padding: 17px 16px 11px;
    }

    .feed-actions {
        gap: 14px;
    }

        .feed-actions button {
            font-size: 9px;
        }

            .feed-actions button:first-child {
                max-width: 80px;
            }

        .feed-actions .save {
            margin-left: 0;
        }

    .dashboard-page {
        min-height: auto;
    }

    .join-page {
        padding: 0 0 50px;
    }

    .onboarding-shell {
        width: 100%;
        box-shadow: none;
    }

    .onboarding-aside {
        min-height: 240px;
        padding: 30px 24px;
        grid-template-columns: 1fr;
    }

        .onboarding-aside > div > p {
            margin-bottom: 0;
        }

    .onboarding-plan {
        display: none;
    }

    .onboarding-form {
        padding: 30px 20px 24px;
        min-height: 720px;
    }

    .progress-track {
        margin-bottom: 28px;
    }

    .form-step > h2 {
        font-size: 32px;
    }

    .tier-cards, .choice-row, .field-grid {
        grid-template-columns: 1fr;
    }

        .tier-cards > button {
            min-height: 130px;
        }

        .field-grid label.full {
            grid-column: auto;
        }

    .form-nav .button {
        min-width: 160px;
    }

    .onboarding-complete {
        width: 100%;
        padding: 55px 24px;
        box-shadow: none;
    }

        .onboarding-complete h1 {
            font-size: 42px;
        }
}

.auth-page, .checkout-page, .account-flow-page {
    background: #e9f4f6;
    min-height: calc(100vh - 78px);
    padding: 45px 20px 70px;
}

.auth-shell {
    width: min(980px, 100%);
    min-height: 690px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    background: white;
    box-shadow: 13px 15px 0 rgba(17,42,74,.14);
}

    .auth-shell.compact {
        min-height: 610px;
    }

.auth-aside {
    padding: 45px 38px;
    background: var(--navy);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

    .auth-aside::after {
        content: "";
        position: absolute;
        width: 190px;
        height: 190px;
        right: -95px;
        bottom: 85px;
        border: 30px solid var(--anchor);
        border-radius: 50%;
        opacity: .17;
    }

.auth-brand {
    color: white;
    font-size: 15px;
    line-height: .82;
    font-weight: 900;
    letter-spacing: -.05em;
    display: inline-block;
    margin-bottom: 70px;
}

.auth-kicker {
    color: var(--aqua);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
}

.auth-aside h1 {
    font-size: 46px;
    line-height: 1;
    letter-spacing: -.055em;
    margin: 17px 0;
    max-width: 270px;
}

.auth-aside p {
    color: #bdc9d6;
    font-size: 13px;
    line-height: 1.75;
    max-width: 275px;
}

.auth-aside blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.2);
    color: #d9e1e8;
    font-size: 13px;
    line-height: 1.55;
}

.auth-panel {
    display: flex;
    align-items: center;
    padding: 46px 58px;
}

.auth-form, .auth-success {
    width: 100%;
    max-width: 470px;
    margin: 0 auto;
}

    .auth-form > h2, .auth-success h2 {
        color: var(--navy);
        font-size: 35px;
        line-height: 1.08;
        letter-spacing: -.045em;
        margin: 10px 0;
    }

    .auth-form > p, .auth-success > p {
        color: var(--slate);
        font-size: 13px;
        line-height: 1.65;
        margin: 0 0 23px;
    }

.demo-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff8df;
    border-left: 4px solid var(--yellow);
    padding: 11px 13px;
    margin-bottom: 25px;
    color: var(--navy);
}

    .demo-notice b {
        font-size: 8px;
        letter-spacing: .1em;
        flex: 0 0 auto;
        padding-top: 2px;
    }

    .demo-notice span {
        color: #665f46;
        font-size: 9px;
        line-height: 1.45;
    }

.auth-field {
    display: block;
    margin-bottom: 16px;
}

    .auth-field > span {
        display: block;
        color: var(--navy);
        font-size: 10px;
        font-weight: 800;
        margin-bottom: 7px;
    }

    .auth-field input, .auth-field select {
        width: 100%;
        min-height: 46px;
        border: 1px solid #b9c6cf;
        background: white;
        color: var(--navy);
        padding: 10px 12px;
        outline: none;
    }

        .auth-field input:focus, .auth-field select:focus {
            border-color: var(--anchor);
            box-shadow: 0 0 0 3px rgba(0,188,226,.11);
        }

    .auth-field small {
        display: block;
        margin-top: 5px;
        color: var(--slate);
        font-size: 9px;
    }

.show-password, .remember-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 10px;
    cursor: pointer;
}

    .show-password input, .remember-line input {
        accent-color: var(--anchor);
    }

.onboarding-show {
    margin-top: 14px;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -3px 0 14px;
}

    .auth-options a, .auth-text-link, .all-screens-link {
        color: var(--navy);
        font-size: 10px;
        font-weight: 700;
        text-decoration: underline;
    }

.remember-line {
    color: var(--slate);
    margin-bottom: 18px;
}

.auth-submit {
    width: 100%;
    margin-top: 20px;
}

.demo-fill {
    border: 0;
    background: none;
    color: var(--navy);
    border-bottom: 1px solid var(--navy);
    padding: 4px 0;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    display: block;
    margin: 14px auto 0;
}

.auth-switch {
    border-top: 1px solid var(--grey);
    margin-top: 27px;
    padding-top: 19px;
    text-align: center;
    color: var(--slate);
    font-size: 11px;
}

    .auth-switch a {
        color: var(--navy);
        font-weight: 800;
    }

.all-screens-link {
    display: block;
    text-align: center;
    margin-top: 14px;
}

.auth-success {
    text-align: center;
}

    .auth-success .button {
        margin-top: 10px;
    }

    .auth-success .auth-text-link {
        display: block;
        margin-top: 20px;
    }

.mail-mark {
    width: 68px;
    height: 68px;
    margin: 0 auto 26px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 50%;
    font-size: 25px;
    font-weight: 900;
}

.password-rules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin: 17px 0 6px;
    padding: 14px;
    background: var(--paper);
}

    .password-rules span {
        color: var(--slate);
        font-size: 9px;
    }

        .password-rules span.met {
            color: #28766d;
            font-weight: 800;
        }

.required-banner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff1ee;
    border-left: 4px solid var(--coral);
    padding: 12px 14px;
    margin-bottom: 23px;
}

    .required-banner b {
        color: var(--navy);
        font-size: 11px;
    }

    .required-banner span {
        color: var(--slate);
        font-size: 9px;
        line-height: 1.4;
    }

.complete-login-link {
    display: block;
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    margin: 18px auto 0;
    text-decoration: underline;
}

.resend-button {
    margin-top: 18px;
}

.account-flow-page {
    padding-block: 65px 90px;
}

    .account-flow-page > .shell {
        max-width: 1100px;
    }

    .account-flow-page .demo-notice {
        max-width: 750px;
        margin-bottom: 48px;
    }

.flow-heading {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 42px;
}

    .flow-heading > div > span {
        color: var(--anchor);
        font-size: 9px;
        font-weight: 900;
        letter-spacing: .14em;
    }

    .flow-heading h1 {
        color: var(--navy);
        font-size: 58px;
        line-height: .98;
        letter-spacing: -.055em;
        margin: 13px 0 0;
    }

    .flow-heading > p {
        color: var(--slate);
        font-size: 14px;
        line-height: 1.75;
    }

.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.flow-card {
    min-height: 260px;
    padding: 25px;
    background: white;
    border: 1px solid #c5d0d8;
    display: flex;
    flex-direction: column;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .flow-card:hover {
        transform: translateY(-3px);
        box-shadow: 6px 7px 0 var(--navy);
    }

    .flow-card > span {
        color: var(--anchor);
        font-size: 10px;
        font-weight: 900;
    }

    .flow-card h2 {
        color: var(--navy);
        font-size: 23px;
        margin: 42px 0 10px;
    }

    .flow-card p {
        color: var(--slate);
        font-size: 12px;
        line-height: 1.6;
        margin: 0;
    }

    .flow-card b {
        color: var(--navy);
        font-size: 10px;
        margin-top: auto;
    }

.checkout-shell {
    width: min(1000px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 330px;
    align-items: start;
    box-shadow: 13px 15px 0 rgba(17,42,74,.14);
}

.checkout-main {
    min-height: 735px;
    background: white;
    padding: 47px 58px;
    display: flex;
    align-items: center;
}

.checkout-form, .checkout-success {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

    .checkout-form h1, .checkout-success h1 {
        color: var(--navy);
        font-size: 42px;
        letter-spacing: -.05em;
        margin: 12px 0 22px;
    }

.checkout-back {
    display: block;
    color: var(--slate);
    font-size: 10px;
    margin-bottom: 34px;
}

.pay-method {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 23px;
}

    .pay-method button {
        min-height: 43px;
        border: 1px solid #c3ced6;
        background: white;
        color: var(--slate);
        font-size: 11px;
        font-weight: 800;
    }

        .pay-method button.active {
            border: 2px solid var(--navy);
            color: var(--navy);
            background: #e7f8f6;
        }

        .pay-method button small {
            display: block;
            font-size: 7px;
            margin-top: 2px;
        }

.checkout-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.checkout-form .demo-fill {
    margin-left: 0;
}

.secure-copy {
    color: var(--slate);
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
    margin: 16px 0 0;
}

.order-summary {
    min-height: 735px;
    background: var(--navy);
    color: white;
    padding: 58px 35px;
}

    .order-summary > span {
        color: var(--aqua);
        font-size: 9px;
        font-weight: 900;
        letter-spacing: .13em;
    }

    .order-summary h2 {
        font-size: 32px;
        margin: 18px 0 4px;
    }

    .order-summary > p {
        color: #bdc9d6;
        font-size: 12px;
        margin: 0 0 45px;
    }

    .order-summary > div {
        display: flex;
        justify-content: space-between;
        padding: 17px 0;
        border-top: 1px solid rgba(255,255,255,.18);
        font-size: 12px;
    }

        .order-summary > div:nth-of-type(2) {
            font-size: 16px;
            border-bottom: 1px solid rgba(255,255,255,.18);
        }

    .order-summary > small {
        display: block;
        color: #aebdcc;
        font-size: 9px;
        line-height: 1.5;
        margin-top: 16px;
    }

    .order-summary > a {
        display: inline-block;
        color: var(--aqua);
        font-size: 10px;
        font-weight: 800;
        text-decoration: underline;
        margin-top: 35px;
    }

.checkout-success {
    text-align: center;
}

    .checkout-success > p {
        color: var(--slate);
        line-height: 1.65;
    }

.receipt {
    max-width: 360px;
    margin: 25px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--grey);
}

    .receipt span, .receipt b {
        padding: 11px 5px;
        border-bottom: 1px solid var(--grey);
        font-size: 10px;
    }

    .receipt span {
        color: var(--slate);
        text-align: left;
    }

    .receipt b {
        color: var(--navy);
        text-align: right;
    }

@media (max-width: 860px) {
    .auth-page, .checkout-page {
        padding: 24px 15px 60px;
    }

    .auth-shell {
        grid-template-columns: 1fr;
        width: min(680px, 100%);
    }

    .auth-aside {
        min-height: 245px;
        padding: 34px;
    }

    .auth-brand {
        margin-bottom: 32px;
    }

    .auth-aside h1 {
        font-size: 38px;
        max-width: 420px;
    }

    .auth-aside blockquote {
        display: none;
    }

    .auth-panel {
        padding: 44px 38px;
    }

    .flow-heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .flow-grid {
        grid-template-columns: 1fr 1fr;
    }

    .checkout-shell {
        grid-template-columns: 1fr;
        width: min(680px, 100%);
    }

    .order-summary {
        min-height: auto;
        grid-row: 1;
        padding: 32px 35px;
    }

        .order-summary > p {
            margin-bottom: 20px;
        }

    .checkout-main {
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .auth-page, .checkout-page, .account-flow-page {
        padding-inline: 0;
        padding-top: 0;
    }

    .auth-shell, .checkout-shell {
        box-shadow: none;
    }

    .auth-aside {
        min-height: 220px;
        padding: 28px 24px;
    }

    .auth-panel, .checkout-main {
        padding: 37px 22px 48px;
    }

    .auth-form > h2, .auth-success h2 {
        font-size: 31px;
    }

    .auth-options {
        align-items: flex-start;
        gap: 12px;
    }

    .password-rules {
        grid-template-columns: 1fr;
    }

    .flow-heading h1 {
        font-size: 46px;
    }

    .flow-grid {
        grid-template-columns: 1fr;
    }

    .flow-card {
        min-height: 225px;
    }

    .account-flow-page > .shell {
        padding-top: 45px;
    }

    .checkout-form h1, .checkout-success h1 {
        font-size: 36px;
    }

    .order-summary {
        padding: 30px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
