:root {
    --ink: #1d1713;
    --muted: #6f6257;
    --paper: #fbf7ee;
    --paper-deep: #f1e7d6;
    --moss: #576f4b;
    --moss-dark: #31422d;
    --clay: #b9774f;
    --rose: #c16f68;
    --line: rgba(29, 23, 19, 0.14);
    --white: #fffdf8;
    --shadow: 0 18px 50px rgba(49, 39, 28, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

.narrow-break {
    display: none;
}

.narrow-hidden {
    display: inline;
}

.main-headline-line {
    display: inline;
    white-space: nowrap;
}

a {
    color: inherit;
}

.site-header {
    padding: 30px 32px;
    /* backdrop-filter: blur(16px); */
  position: absolute;
  left: 0;
  bottom: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0;
}

.brand-mark,
.footer-mark {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    object-fit: cover;
    mix-blend-mode: multiply;
}


nav {
  width: 100%;
}

nav a {
  margin-left: 20px;
}
  
/* 
  
nav {
    display: flex;
    gap: 20px;
    color: var(--muted);
    font-size: 0.94rem;
    transition: opacity 220ms ease, transform 220ms ease;
}
*/

nav a {
    text-decoration: none;
}

nav a:hover {
    color: var(--ink);
}

body.has-scrolled .site-header nav {
    opacity: calc(1 - var(--login-scroll-progress, 0));
    transform: translateY(calc(-6px * var(--login-scroll-progress, 0)));
}

body.login-faded .site-header nav {
    pointer-events: none;
}

main {
    display: flex;
    flex-direction: column;
}

.layout-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
}

.layout-toggle:hover {
    background: #f2f2f2;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: clamp(32px, 6vw, 80px);
    min-height: calc(100vh - 68px);
    padding: clamp(34px, 6vw, 82px) clamp(18px, 6vw, 86px) 36px;
}

.hero-copy {
    max-width: 760px;
}

.hero-centered {
    position: relative;
    order: 1;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: clamp(24px, 4vw, 42px);
    min-height: calc(100vh - 50px);
    padding-top: clamp(58px, 13vw, 120px);
    padding-bottom: clamp(44px, 6vw, 96px);
    overflow: hidden;
    transition: min-height 520ms ease, padding 520ms ease, gap 520ms ease;
}

.hero-centered .hero-copy {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    max-width: 980px;
    text-align: center;
    transition: transform 520ms ease;
}

.hero-centered h1 {
    max-width: 920px;
    margin-inline: auto;
    color: #35302c;
    font-size: clamp(3rem, 5vw, 54px);
    font-weight: 300;
    line-height: 1.12;
    transition: font-size 520ms ease, margin 520ms ease;
}

.hero-title-image {
    display: block;
    width: min(100%, 560px);
    margin: 0 auto 24px;
}

.hero-centered .lead {
    max-width: 880px;
    margin-inline: auto;
    transition: font-size 520ms ease, margin 520ms ease;
}

.hero-centered .hero-actions {
    justify-content: center;
}

.hero-centered .proof {
    margin-inline: auto;
}

.hero-centered .mobile-heading-image,
.hero-centered h1,
.hero-centered .lead,
.hero-centered .hero-actions {
    animation: hero-entry 620ms ease both;
}

.hero-centered .mobile-heading-image,
.hero-centered h1 {
    animation-delay: 80ms;
}

.hero-centered .lead {
    animation-delay: 220ms;
}

.hero-centered .hero-actions {
    animation-delay: 360ms;
}

@keyframes hero-entry {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--moss-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 1;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.lead {
    max-width: 660px;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 30px;
    transition: margin 520ms ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border: 1px solid rgba(29, 23, 19, 0.24);
    border-radius: 6px;
    background: rgba(255, 253, 248, 0.54);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.42rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .1rem;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-1px);
    border-color: rgba(29, 23, 19, 0.48);
    background: rgba(255, 253, 248, 0.72);
    box-shadow: 0 8px 18px rgba(49, 39, 28, 0.08);
}

.proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 680px;
    margin: 0;
}

.proof div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.proof dt {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 700;
}

.proof dd {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

section {
    padding: clamp(56px, 8vw, 112px) clamp(18px, 6vw, 86px);
}

@media (min-height: 900px) and (min-width: 700px) {
    .hero-centered {
        min-height: calc(100svh - 50px);
    }

    body.hero-collapsed .hero-centered {
        min-height: clamp(560px, 58svh, 760px);
        padding-top: clamp(34px, 6svh, 72px);
        padding-bottom: clamp(34px, 6svh, 72px);
        gap: 18px;
    }

    body.hero-collapsed .hero-centered .hero-copy {
        transform: translateY(-1.5vh);
    }

    body.hero-collapsed .hero-actions {
        margin-top: 22px;
        margin-bottom: 0;
    }

}

@media (prefers-reduced-motion: reduce) {
    .hero-centered,
    .hero-centered .hero-copy,
    .hero-actions,
    .hero-centered h1,
    .hero-centered .lead {
        transition: none;
    }

    .hero-centered .mobile-heading-image,
    .hero-centered h1,
    .hero-centered .lead,
    .hero-centered .hero-actions {
        animation: none;
    }
}

.band {
    /* border-block: 1px solid var(--line); */
}

.recognition {
    order: 2;
}

.offer {
    order: 3;
}

.signup {
    order: 4;
}

.section-heading {
    max-width: 820px;
    margin-inline: auto;
    margin-bottom: 32px;
    text-align: center;
}

.section-heading .eyebrow {
    color: #35302c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5.4rem);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.12;
    text-transform: none;
}

.section-heading-line {
    white-space: nowrap;
}

.remixed-lead {
    display: none;
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.5;
}

.section-heading p:not(.eyebrow),
.signup-copy p,
.founders-copy p {
    color: var(--muted);
    font-size: 1.08rem;
}

.recognition {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 640px);
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 42px);
    max-width: 1200px;
    margin-inline: auto;
}

.recognition-image img {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.recognition-copy {
    max-width: 760px;
}

.recognition-title {
    margin: 0 0 12px;
    color: #35302c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.3vw, 3.6rem);
    font-weight: 300;
    line-height: 1.16;
}
  
.recognition-copy h2 {
    max-width: 640px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.42rem;
    font-weight: 400;
    line-height: 1.5;
}

.recognition-copy .button {
    margin-top: 10px;
}

.intro-grid,
.platform-grid,
.steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.intro-grid article,
.platform-grid article,
.steps article,
.price-box,
.signup-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.intro-grid article,
.platform-grid article,
.steps article {
    padding: 24px;
}

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

.platform-grid .wide {
    grid-column: span 2;
}

.platform-grid span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--clay);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-layout {
    display: grid;
    grid-template-columns: minmax(0, 980px);
    justify-content: center;
    align-items: start;
}

.offer-list {
    display: grid;
    gap: 14px;
    width: 100%;
}

.offer-list > div {
    display: grid;
    grid-template-columns: clamp(58px, 8vw, 96px) minmax(0, 1fr);
    column-gap: clamp(18px, 4vw, 54px);
    align-items: start;
    padding: 24px 0;
/*    border-bottom: 1px solid var(--line); */
}

.offer-icon {
    grid-column: 1;
    grid-row: 1 / span 3;
}

.offer-icon {
    width: clamp(58px, 8vw, 96px);
    height: clamp(58px, 8vw, 96px);
    object-fit: contain;
}

.offer-list > div:first-child .offer-icon {
    position: relative;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 6.2rem;
    height: 10rem;
}

.offer-list h3,
.offer-list p,
.offer-list ul,
.offer-more-toggle {
    grid-column: 2;
}

.offer-more-toggle {
    display: none;
}

.steps span {
    color: var(--clay);
    font-weight: 900;
}

.offer-list p,
.platform-grid p,
.steps p,
.intro-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.price-box {
    padding: 26px;
    background: var(--moss-dark);
    color: var(--white);
}

.price-box .eyebrow,
.price-box span {
    color: #d9e5ce;
}

.price-box strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.5rem;
    line-height: 1;
}

.price-box ul,
.check-list {
    padding: 0;
    margin: 22px 0;
    list-style: none;
}

.price-box li,
.check-list li {
    position: relative;
    padding-left: 24px;
    margin: 10px 0;
}

.price-box li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--rose);
}

.price-box .button {
    width: 100%;
    color: var(--ink);
    background: var(--white);
}

.founders {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
}

.founders img {
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

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


.site-footer {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    padding: 28px clamp(18px, 4vw, 56px) 36px;
    color: #aaa;
    font-size: 0.9rem;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--ink);
}

.footer-nav-login {
    display: none;
}

.text-page {
    min-height: calc(100vh - 98px);
    padding: clamp(72px, 10vw, 130px) clamp(22px, 7vw, 90px);
}

.text-page-content {
    width: min(100%, 980px);
    margin-inline: auto;
}

.text-page-content .eyebrow {
    color: #aaa;
}

.text-page-content h1 {
    max-width: 760px;
    margin-bottom: clamp(28px, 5vw, 54px);
    color: #35302c;
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    font-weight: 300;
    line-height: 1.08;
}

.why-body {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 720px);
    gap: clamp(34px, 6vw, 78px);
    align-items: start;
}

.why-figure {
    margin: 0;
}

.why-figure img {
    width: 100%;
    max-height: min(42vh, 420px);
    border-radius: 13px;
    object-fit: cover;
}

.why-figure figcaption {
    margin-top: 10px;
    color: #aaa;
    font-size: 0.82rem;
    line-height: 1.35;
}

.why-copy h2:first-child {
    margin-top: 0;
}

.text-page-content h2 {
    margin-top: clamp(36px, 6vw, 62px);
    color: #35302c;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.12;
}

.text-page-content p {
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.6vw, 1.25rem);
    line-height: 1.68;
}

@media (max-width: 900px) {
    .why-body {
        grid-template-columns: 1fr;
    }

    .why-figure {
        justify-self: center;
        width: min(80vw, 420px);
    }

    .why-figure img {
        width: min(80vw, 420px);
        max-height: 42vh;
    }

    .hero,
    .recognition,
    .offer-layout,
    .founders,
    .signup {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 0;
    }

    .hero-centered h1 {
        font-size: clamp(2.2rem, 6.8vw, 3.1rem);
    }

    .narrow-break {
        display: block;
    }

    .narrow-hidden {
        display: none;
    }

    .main-headline-line {
        display: block;
    }

    .recognition-title {
        font-size: clamp(2.2rem, 6.8vw, 3.1rem);
    }

    .offer-more-toggle {
        display: inline-flex;
        width: fit-content;
        margin: 12px 0 0;
        padding: 0;
        border: 0;
        background: transparent;
        color: #35302c;
        font: inherit;
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 4px;
        cursor: pointer;
    }

    .offer-list:not(.is-expanded) .offer-mobile-extra {
        display: none;
    }

    .offer-list.is-expanded .offer-more-toggle {
        display: none;
    }

    .intro-grid,
    .platform-grid,
    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .platform-grid .wide {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .site-header {
        right: 0;
        width: 100%;
        text-align: center;
    }

    .site-header nav {
        display: none;
    }

    .site-footer {
        justify-content: center;
        padding: 48px 18px 34px;
        text-align: center;
    }

    .footer-nav-login {
        display: block;
    }

    nav a {
        color: #b8b0aa;
        margin-left: 0;
    }

    .wide-break {
        display: none;
    }

    h1 {
        font-size: clamp(2.8rem, 16vw, 4.5rem);
    }

    .hero-title-image {
        display: block;
        width: min(100%, 420px);
        margin: 0 auto 22px;
    }

    .hero-centered {
        min-height: 100vh;
        min-height: calc(100svh - var(--hero-collapse-offset, 0px));
        padding-top: 30px;
    }

    .recognition {
        display: none;
    }

    .recognition-image {
        width: calc(100% + (2 * clamp(18px, 6vw, 86px)));
        margin-inline: calc(-1 * clamp(18px, 6vw, 86px));
    }

    .recognition-image img {
        width: 100%;
        height: clamp(300px, 45svh, 460px);
        object-fit: cover;
        object-position: center 42%;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .recognition-copy h2 {
        font-size: clamp(1.22rem, 5.9vw, 1.42rem);
        line-height: 1.42;
    }

    .recognition-title {
        font-size: clamp(1.9rem, 7.5vw, 2.45rem);
    }

    .recognition-copy {
        width: min(100%, 540px);
        margin-inline: auto;
        text-align: center;
    }

    .recognition-copy .button {
        display: flex;
        width: fit-content;
        margin-top: 28px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero-centered h1 {
        max-width: 100%;
        font-size: clamp(2.05rem, 8vw, 2.6rem);
        line-height: 1.28;
        overflow-wrap: normal;
    }

    .hero-centered .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-centered .hero-actions .button {
        width: 100%;
        max-width: calc(100vw - 36px);
        justify-self: center;
        font-size: clamp(1rem, 5vw, 1.22rem);
    }

    .proof,
    .intro-grid,
    .platform-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .offer {
        padding-top: 88px;
    }

    .section-heading .eyebrow {
        font-size: clamp(2.55rem, 11vw, 3rem);
    }

    .signup-copy h2 {
        font-size: clamp(2.55rem, 11vw, 3rem);
    }

    .platform-grid .wide {
        grid-column: auto;
    }

    .offer-list > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .offer-list > div:first-child {
        gap: 0;
        padding-top: 0;
    }

    .offer-list > div:first-child h3 {
        display: none;
    }

    .offer-icon,
    .offer-list h3,
    .offer-list p,
    .offer-list ul,
    .offer-more-toggle {
        grid-column: 1;
    }

    .offer-more-toggle {
        display: inline-flex;
        width: fit-content;
        margin: 12px 0 0;
        padding: 0;
        border: 0;
        background: transparent;
        color: #35302c;
        font: inherit;
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 4px;
        cursor: pointer;
    }

    .offer-list:not(.is-expanded) .offer-mobile-extra {
        display: none;
    }

    .offer-list.is-expanded .offer-more-toggle {
        display: none;
    }

    .offer-list ul {
        list-style: none;
        padding-left: 0;
    }

    .hide-on-small {
        display: none;
    }

    .offer-icon {
        grid-row: auto;
    }

    .offer-mobile-extra .offer-icon {
        display: none;
    }

    .offer-list > div:first-child .offer-icon {
        display: none;
    }
}

.hero-actions-no-bottom {
    margin-bottom: 0;
}

@media (min-width: 641px) {
    .hero-actions-no-bottom {
        margin-top: clamp(42px, 5vw, 72px);
    }
}

.recognition-copy p {
    max-width: 640px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.84rem;
    font-weight: 300;
    line-height: 150%;
}

.offer-summary {
    max-width: 422px;
    margin-left: auto;
    margin-right: auto;
}

.offer-read-more {
    margin-top: 18px;
}

.text-page-header {
    top: 0;
    bottom: auto;
}

.learn-more-content {
    width: min(100%, 1120px);
}

.learn-more-intro {
    max-width: 1040px;
    margin-bottom: clamp(58px, 9vw, 108px);
}

.text-page-content .learn-more-eyebrow,
.text-page-content .priority-label,
.text-page-content .support-eyebrow {
    margin: 0 0 14px;
    color: var(--moss-dark);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.learn-more-intro h1 {
    max-width: none;
    margin-bottom: 24px;
    font-size: clamp(3rem, 5.2vw, 5rem);
    letter-spacing: -.035em;
}

@media (min-width: 900px) {
    .learn-more-intro h1 {
        white-space: nowrap;
    }
}

.text-page-content .learn-more-lead {
    max-width: 790px;
    margin: 0;
    color: #514940;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2.6vw, 2rem);
    font-weight: 300;
    line-height: 1.5;
}

.priority-stack {
    display: grid;
    gap: clamp(46px, 7vw, 84px);
}

.priority-section {
    --priority-accent: var(--moss);
    position: relative;
    padding: clamp(30px, 6vw, 68px);
    border: 1px solid rgba(29, 23, 19, .18);
    border-top: 6px solid var(--priority-accent);
    background: #fff;
    box-shadow: 14px 14px 0 rgba(29, 23, 19, .055);
}

.priority-section:nth-child(2) {
    --priority-accent: var(--clay);
}

.priority-section:nth-child(3) {
    --priority-accent: #76647f;
}

.priority-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    padding-bottom: clamp(28px, 4vw, 46px);
    border-bottom: 1px solid var(--line);
}

.text-page-content .priority-label {
    color: var(--priority-accent);
}

.text-page-content .priority-section h2 {
    max-width: 820px;
    margin: 0;
    color: #292522;
    font-size: clamp(2.65rem, 6.3vw, 5.8rem);
    letter-spacing: -.035em;
    line-height: 1;
}

.priority-body {
    max-width: 850px;
    margin: clamp(30px, 5vw, 52px) 0 0 clamp(0px, 9vw, 126px);
}

.text-page-content .priority-body > p {
    max-width: 760px;
}

.priority-section .chat-demo {
    margin-bottom: 0;
}

.capital-paths {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: clamp(28px, 4vw, 42px) 0;
    border: 1px solid var(--line);
}

.capital-paths article {
    padding: clamp(20px, 3vw, 28px);
}

.capital-paths article + article {
    border-left: 1px solid var(--line);
}

.capital-paths span {
    color: #76647f;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.capital-paths h3 {
    margin: 20px 0 10px;
    color: #35302c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 300;
    line-height: 1.1;
}

.text-page-content .capital-paths p {
    margin: 0;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.65;
}

.text-page-content .capital-piggy-link {
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: .92rem;
}

.capital-piggy-link a {
    font-weight: 700;
    text-underline-offset: 4px;
}

.support-section {
    margin-top: clamp(96px, 13vw, 170px);
    padding-top: clamp(44px, 7vw, 72px);
    border-top: 1px solid var(--line);
}

.support-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, .65fr);
    column-gap: clamp(32px, 7vw, 90px);
    align-items: end;
    margin-bottom: clamp(36px, 6vw, 62px);
}

.support-intro .support-eyebrow {
    grid-column: 1 / -1;
}

.text-page-content .support-intro h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4.4vw, 4.4rem);
    letter-spacing: -.025em;
}

.text-page-content .support-intro > p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.7;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: rgba(29, 23, 19, .15);
}

.support-card {
    min-width: 0;
    padding: clamp(25px, 4vw, 42px);
    background: #f8f5ee;
}

.support-card-number {
    display: block;
    margin-bottom: clamp(26px, 4vw, 48px);
    color: #9a8e83;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.support-card h3 {
    margin: 0 0 18px;
    color: #35302c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    font-weight: 300;
    line-height: 1.12;
}

.text-page-content .support-card > p {
    color: var(--muted);
    font-size: clamp(.94rem, 1.4vw, 1.06rem);
    line-height: 1.7;
}

.support-card-wide {
    grid-column: 1 / -1;
    padding-right: clamp(25px, 8vw, 105px);
    padding-left: clamp(25px, 8vw, 105px);
}

.support-card-wide > h3,
.support-card-wide > p {
    max-width: 760px;
}

.support-card-wide .weekly-question-preview,
.support-card-wide .chat-demo {
    margin-right: 0;
    margin-left: 0;
}

.support-card-wide .chat-demo {
    margin-bottom: 0;
}

.piggy-bank-section {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: clamp(42px, 8vw, 100px);
    align-items: center;
    width: min(100%, 1120px);
    margin: clamp(90px, 13vw, 170px) auto 0;
    padding: clamp(36px, 7vw, 78px);
    border: 1px solid var(--line);
    background: #f5f5f3;
    color: var(--ink);
}

.piggy-bank-section h2 {
    margin: 0 0 26px;
    color: #35302c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.45rem, 5.4vw, 5rem);
    font-weight: 300;
    letter-spacing: -.035em;
    line-height: 1.03;
}

.piggy-bank-section p {
    max-width: 650px;
}

.piggy-bank-eyebrow {
    margin: 0 0 18px;
    color: var(--moss);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.piggy-bank-lead {
    color: var(--muted);
    font-size: clamp(.98rem, 1.5vw, 1.12rem);
    line-height: 1.7;
}

.piggy-bank-investment {
    margin: 0 0 28px;
    color: #35302c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2.3vw, 1.8rem);
    line-height: 1.45;
}

.piggy-bank-disclaimer {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: .7rem;
    line-height: 1.7;
}

.piggy-bank-visual {
    min-width: 0;
}

.piggy-bank-visual img {
    width: 100%;
    height: auto;
}

.piggy-bank-visual p {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin: 18px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.piggy-bank-visual strong {
    color: #35302c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 300;
}

.piggy-bank-visual span {
    color: var(--muted);
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.piggy-bank-section + .signup-cta {
    margin-top: clamp(70px, 10vw, 120px);
}

.weekly-question-preview {
    max-width: 720px;
    margin: clamp(34px, 5vw, 52px) 0 clamp(52px, 7vw, 76px);
    border: 1px solid rgba(29, 23, 19, .2);
    background: #f4efe4;
}

.weekly-question-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 22px;
    border-bottom: 1px solid rgba(29, 23, 19, .16);
    color: var(--muted);
    font-size: .67rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.weekly-question-topline span:first-child {
    color: var(--ink);
    font-weight: 700;
}

.weekly-question-body {
    padding: clamp(26px, 5vw, 42px);
}

.text-page-content .weekly-question-kicker {
    margin: 0 0 13px;
    color: var(--moss-dark);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.weekly-question-preview h4 {
    max-width: 610px;
    margin: 0;
    color: #35302c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 3.5vw, 2.45rem);
    font-weight: 300;
    line-height: 1.14;
}

@media (max-width: 800px) {
    .priority-heading {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .priority-body {
        margin-left: 0;
    }

    .capital-paths,
    .support-intro,
    .piggy-bank-section {
        grid-template-columns: 1fr;
    }

    .capital-paths article + article {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .text-page-content .support-intro > p:last-child {
        margin-top: 20px;
    }

    .piggy-bank-visual {
        width: min(100%, 580px);
        margin-inline: auto;
    }
}

.text-page-content .weekly-question-intro {
    max-width: 610px;
    margin: 20px 0 28px;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.7;
}

.weekly-answer-example {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    margin: 0;
    border-top: 1px solid rgba(29, 23, 19, .16);
}

.weekly-answer-example > div {
    padding: 18px 20px 18px 0;
    border-bottom: 1px solid rgba(29, 23, 19, .16);
}

.weekly-answer-example > div:nth-child(2) {
    padding-left: 20px;
    border-left: 1px solid rgba(29, 23, 19, .16);
}

.weekly-answer-example > div:last-child {
    grid-column: 1 / -1;
}

.text-page-content .weekly-answer-example .weekly-answer-label {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.text-page-content .weekly-answer-example .weekly-answer-value {
    margin: 0;
    color: var(--ink);
    font-size: .86rem;
    line-height: 1.6;
}

.text-page-content .weekly-question-disclaimer {
    max-width: none;
    margin: 0;
    padding: 10px 20px;
    color: var(--muted);
    font-size: .6rem;
    line-height: 1.5;
    text-align: center;
}

.chat-demo {
    max-width: 720px;
    margin: clamp(34px, 5vw, 52px) 0 clamp(62px, 8vw, 92px);
    border: 1px solid #cacaca;
    background: #fff;
    box-shadow: 12px 12px 0 #ededed;
}

.chat-demo .preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
}

.chat-demo .preview-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.16rem;
    font-weight: 700;
}

.chat-demo .preview-label {
    max-width: 150px;
    color: var(--muted);
    font-size: .62rem;
    text-align: right;
}

.chat-demo .preview-room {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 30px 26px 24px;
}

.chat-demo .room-hash {
    color: #737373;
    font: 2.3rem Georgia, "Times New Roman", serif;
}

.chat-demo .preview-room h3 {
    margin: 0 0 3px;
    color: var(--ink);
    font: 650 1.02rem Inter, ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0;
}

.text-page-content .chat-demo .preview-room p {
    margin: 0;
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.5;
}

.chat-demo .preview-post {
    padding: 0 26px 25px;
}

.chat-demo .post-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .75rem;
}

.chat-demo .initial-avatar {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font: 1.15rem Georgia, "Times New Roman", serif;
    place-items: center;
}

.chat-demo .initial-avatar.light {
    background: #e9e9e9;
    color: var(--ink);
}

.chat-demo .post-author strong,
.chat-demo .post-author div > span {
    display: block;
}

.chat-demo .post-author div > span {
    margin-top: 2px;
    color: var(--muted);
    font-size: .65rem;
}

.chat-demo .karma-label {
    margin-left: auto;
    padding: 3px 7px;
    border: 1px solid var(--line);
    font-size: .6rem;
    white-space: nowrap;
}

.text-page-content .chat-demo .preview-post > p {
    margin: 20px 0;
    color: var(--ink);
    font-size: .87rem;
    line-height: 1.7;
}

.chat-demo .preview-reply {
    display: flex;
    gap: 10px;
    margin: 0 0 16px 16px;
    padding: 6px 0 6px 15px;
    border-left: 2px solid var(--line);
}

.text-page-content .chat-demo .preview-reply p {
    margin: 0;
    color: var(--ink);
    font-size: .79rem;
    line-height: 1.65;
}

.chat-demo .post-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 20px;
    margin-top: 24px;
    color: var(--muted);
    font-size: .6rem;
}

.text-page-content .chat-demo .preview-disclaimer {
    max-width: none;
    margin: 0;
    padding: 10px 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .6rem;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 640px) {
    .priority-section {
        padding: 26px 20px 30px;
        box-shadow: 7px 7px 0 rgba(29, 23, 19, .055);
    }

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

    .support-card-wide {
        grid-column: auto;
    }

    .piggy-bank-section {
        padding: 34px 20px;
    }

    .piggy-bank-visual p {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .weekly-question-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding-right: 18px;
        padding-left: 18px;
    }

    .weekly-answer-example {
        grid-template-columns: 1fr;
    }

    .weekly-answer-example > div:nth-child(2) {
        padding-left: 0;
        border-left: 0;
    }

    .weekly-answer-example > div:last-child {
        grid-column: auto;
    }

    .chat-demo {
        box-shadow: 7px 7px 0 #ededed;
    }

    .chat-demo .preview-top,
    .chat-demo .preview-room,
    .chat-demo .preview-post {
        padding-right: 18px;
        padding-left: 18px;
    }

    .chat-demo .post-author {
        flex-wrap: wrap;
    }

    .chat-demo .karma-label {
        margin-left: 44px;
    }

    .chat-demo .preview-reply {
        margin-left: 4px;
        padding-left: 12px;
    }
}

.offer-icon-practical {
    width: 220px;
    max-width: 184px;
}

.offer-list-intro {
    margin-bottom: .84rem;
}

.signup {
    display: grid;
    grid-template-columns: minmax(0, 720px);
    justify-content: center;
    gap: clamp(28px, 5vw, 46px);
    align-items: start;
}

.signup-copy {
    text-align: center;
}

.signup-heading-image {
    min-height: 280px;
    max-height: 40vh;
    margin: -84px auto 0;
    object-fit: contain;
}

.join-page .signup-heading-image {
    width: min(100%, 620px);
    min-height: 0;
    max-height: 46vh;
    margin-top: -48px;
}

.signup-copy .eyebrow {
    color: #aaa;
}

.signup-copy h2 {
    color: #35302c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 5vw, 5.4rem);
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.12;
}

.signup-form {
    display: grid;
    gap: 28px;
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.signup-fields {
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(29, 23, 19, 0.045);
}

.signup label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
}

.signup input,
.signup select,
.signup textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    font: inherit;
    font-weight: 500;
    padding: 12px;
}

.signup-fields > label:not(.checkbox) {
    gap: 6px;
    padding: 26px clamp(22px, 4vw, 38px);
    border-bottom: 1px solid #ddd;
    background: #fff;
    color: #7b7b7b;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 400;
    line-height: 1.15;
}

.signup-fields > label:not(.checkbox) input,
.signup-fields > label:not(.checkbox) textarea {
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #090909;
    font-size: clamp(1.35rem, 2.8vw, 1.9rem);
    font-weight: 400;
    line-height: 1.18;
    padding: 0;
}

.signup-fields > label:not(.checkbox) textarea {
    min-height: 132px;
}

.radio-field {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 26px clamp(22px, 4vw, 38px);
    border: 0;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.radio-field legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 4px;
    color: #7b7b7b;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 400;
    line-height: 1.15;
}

.radio-field label {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: #090909;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.25;
}

.radio-field input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--ink);
}

.signup-fields > label:not(.checkbox) input:focus,
.signup-fields > label:not(.checkbox) textarea:focus {
    outline: none;
    box-shadow: none;
}

.signup-form ::placeholder {
    color: rgba(9, 9, 9, 0.38);
}

.signup textarea {
    resize: vertical;
}

.checkbox {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    color: var(--muted);
    font-weight: 400;
    padding: 0 clamp(8px, 2vw, 18px);
}

.checkbox input {
    margin: 0;
}

.signup-form > .button {
    width: min(100%, 360px);
    min-height: 58px;
    margin: 0 auto;
    border-radius: 6px;
}

.error,
.success {
    padding: 14px;
    border-radius: 6px;
}

.error {
    color: #7b241c;
    background: #f6ded8;
}

.success {
    background: #e7efdf;
}

.success p {
    margin-bottom: 1rem;
}

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

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

@media (max-width: 640px) {
    .signup-copy h2 {
        font-size: clamp(2.55rem, 11vw, 3rem);
    }
}

.mobile-heading-image {
    display: none;
}

@media (max-width: 640px) {
    .mobile-heading-image {
        display: block;
        width: min(100%, 240px);
        height: auto;
        margin-right: auto;
        margin-left: auto;
        object-fit: contain;
    }

    .mobile-heading-image-founder {
        width: min(76vw, 280px);
        margin-bottom: 0;
    }

    .mobile-heading-image-table {
        width: min(82vw, 300px);
        margin-bottom: 24px;
    }

    .mobile-heading-image-handshake {
        width: min(72vw, 260px);
        margin-bottom: 22px;
    }
}

.signup-cta .button {
    margin-top: 12px;
}

.join-page .signup {
    min-height: 100vh;
}

.join-footer {
    position: relative;
    display: grid;
    justify-content: stretch;
    gap: 46px;
    padding-top: 54px;
    text-align: center;
}

.join-footer p {
    margin: 0;
}

.join-footer p:first-child:not(:last-child) {
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 800;
}

.join-footer p:last-child {
    text-align: left;
}

.join-footer a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.community-details {
    width: min(100%, 760px);
    margin: clamp(42px, 7vw, 84px) auto 0;
}

.community-details section {
    padding: 0;
}

.values-block {
    text-align: center;
}

.values-block h2,
.focus-block h3 {
    color: #35302c;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 300;
    letter-spacing: 0;
}

.values-block h2 {
    margin-bottom: 22px;
    font-size: clamp(2.15rem, 4vw, 3.4rem);
    line-height: 1.08;
}

.value-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.value-list li {
    padding: 10px 16px;
    border: 1px solid rgba(29, 23, 19, 0.16);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.54);
    color: #5f554d;
    font-size: 0.95rem;
}

.focus-block {
    margin-top: clamp(44px, 7vw, 76px);
}

.focus-eyebrow {
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.focus-block article + article {
    margin-top: clamp(34px, 5vw, 54px);
}

.focus-block h3 {
    margin-bottom: 14px;
    font-size: clamp(1.75rem, 3.6vw, 2.8rem);
    line-height: 1.08;
}

.focus-title-centered {
    text-align: center;
    text-transform: uppercase;
}

.focus-block p {
    color: var(--muted);
    font-size: clamp(1.04rem, 2vw, 1.22rem);
    line-height: 1.62;
}

.focus-block p:last-child {
    margin-bottom: 0;
}

.signup-cta-heading {
    margin-bottom: 42px;
}

.signup-cta-fee {
    padding-top: 20px;
}

@media (max-width: 640px) {
    .community-details {
        margin-top: 36px;
    }

    .value-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: min(100%, 260px);
        margin-inline: auto;
    }

    .focus-block h3 {
        font-size: clamp(1.62rem, 7vw, 2.2rem);
    }
}

@media (max-width: 640px) {
  .hide-if-narrow { display: none; }
  #waitinglist h2 {margin-top: 9vh;}
}

@media (min-width: 800px) {
  #final-join-button { margin-top: 28px  }
}

.developer-credit {
    margin: 0;
    color: #77716c;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.developer-credit a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.join-footer .developer-credit {
    color: #77716c;
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
}

.site-footer.developer-footer {
    justify-content: center;
    border-top: 1px solid var(--line);
}
