:root {
    --founder-teal: #008080;
    --founder-teal-dark: #006666;
    --founder-teal-light: #20b2aa;
    --founder-teal-pale: #e0f2f1;
    --founder-ink: #091717;
    --founder-cloud: #fbfaf4;
    --founder-surface: #ffffff;
    --founder-muted: #526762;
    --founder-border: #cfe2df;
    --founder-focus: #006666;
    --founder-shadow: 0 18px 45px rgba(9, 23, 23, 0.12);
    --founder-radius-sm: 0.375rem;
    --founder-radius-md: 0.75rem;
    --founder-radius-lg: 1.25rem;
    --founder-shell: 74rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--founder-ink);
    background: var(--founder-cloud);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: var(--founder-teal-dark);
}

a:hover {
    color: var(--founder-ink);
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 100;
    padding: 0.65rem 0.9rem;
    color: #ffffff;
    background: var(--founder-ink);
    border-radius: var(--founder-radius-sm);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--founder-focus);
    outline-offset: 3px;
}

.shell {
    width: min(100% - 2rem, var(--founder-shell));
    margin-inline: auto;
}

.narrow-shell {
    max-width: 52rem;
}

.site-header {
    border-bottom: 1px solid rgba(0, 102, 102, 0.16);
    background: rgba(251, 250, 244, 0.96);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.75rem;
    gap: 1rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--founder-ink);
    text-decoration: none;
}

.brand__icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
}

.brand__wordmark,
.footer-brand > span {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
}

.brand__wordmark span,
.footer-brand > span span {
    color: var(--founder-teal);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cohort-note {
    display: none;
    margin: 0;
    color: var(--founder-teal-dark);
    font-size: 0.8rem;
    font-weight: 600;
}

.login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding-inline: 0.85rem;
    color: var(--founder-ink);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-block: 3.5rem 4.5rem;
    background:
        radial-gradient(circle at 90% 10%, rgba(32, 178, 170, 0.12), transparent 26rem),
        var(--founder-cloud);
}

.hero::before {
    position: absolute;
    top: 3rem;
    right: -8rem;
    width: 22rem;
    height: 22rem;
    border: 1px solid rgba(0, 128, 128, 0.14);
    border-radius: 50%;
    content: "";
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 3rem;
}

.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--founder-teal-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-family: "Montserrat", sans-serif;
}

h1 {
    max-width: 46rem;
    margin-bottom: 1rem;
    font-size: clamp(2.35rem, 10vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.85rem, 7vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h3 {
    line-height: 1.2;
}

.hero__subhead {
    max-width: 41rem;
    margin: 0 0 1rem;
    color: #284e48;
    font-size: clamp(1.2rem, 4.8vw, 1.65rem);
    font-weight: 600;
    line-height: 1.3;
}

.hero__body {
    max-width: 42rem;
    margin: 0;
    color: var(--founder-muted);
    font-size: 1rem;
}

.assistant-promise {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    max-width: 42rem;
    margin-block: 1.5rem;
    padding: 1rem;
    color: #2c514b;
    background: var(--founder-teal-pale);
    border-left: 4px solid var(--founder-teal);
    border-radius: 0 var(--founder-radius-sm) var(--founder-radius-sm) 0;
}

.assistant-promise img {
    flex: 0 0 auto;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
}

.assistant-promise p {
    margin: 0;
    font-size: 0.9rem;
}

.assistant-promise strong {
    display: block;
    color: var(--founder-ink);
}

.waitlist-form {
    max-width: 42rem;
    padding: 1rem;
    background: var(--founder-surface);
    border: 1px solid var(--founder-border);
    border-radius: var(--founder-radius-md);
    box-shadow: 0 10px 30px rgba(9, 23, 23, 0.07);
}

.waitlist-form__name-row {
    display: grid;
    gap: 0.8rem;
}

.field {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 0.8rem;
}

.field label {
    color: #263f3b;
    font-size: 0.78rem;
    font-weight: 700;
}

.field input {
    width: 100%;
    min-height: 44px;
    padding: 0.75rem 0.8rem;
    color: var(--founder-ink);
    background: #f7faf9;
    border: 1px solid #a9c4bf;
    border-radius: var(--founder-radius-sm);
    font: inherit;
}

.field input:hover {
    border-color: var(--founder-teal);
}

.field input:focus {
    background: #ffffff;
    border-color: var(--founder-teal-dark);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.8rem 1.15rem;
    border: 2px solid transparent;
    border-radius: var(--founder-radius-sm);
    font: 700 0.92rem/1.2 "Inter", sans-serif;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    color: #ffffff;
    background: var(--founder-teal-dark);
}

.button--primary:hover {
    color: #ffffff;
    background: #004f4f;
}

.button--full {
    width: 100%;
}

.button--light {
    color: var(--founder-ink);
    background: #ffffff;
    border-color: #ffffff;
}

.button--light:hover {
    color: #ffffff;
    background: transparent;
}

.form-support,
.form-consent,
.form-status {
    margin-inline: auto;
    text-align: center;
}

.form-support {
    margin-block: 0.7rem 0;
    color: var(--founder-muted);
    font-size: 0.76rem;
}

.form-consent {
    margin-block: 0.4rem 0;
    color: #61716e;
    font-size: 0.68rem;
}

.form-status {
    min-height: 1.5rem;
    margin-block: 0.5rem 0;
    color: #8a2c25;
    font-size: 0.8rem;
    font-weight: 700;
}

.form-status.is-submitting {
    color: var(--founder-teal-dark);
}

.workspace-visual {
    position: relative;
    align-self: center;
    margin: 0;
    padding: 0 0 5.4rem 1rem;
}

.workspace-window {
    position: relative;
    overflow: hidden;
    min-height: 27rem;
    padding: 1rem;
    color: #ffffff;
    background: #0c2422;
    border: 1px solid rgba(113, 217, 204, 0.25);
    border-radius: var(--founder-radius-md);
    box-shadow: var(--founder-shadow);
}

.workspace-window__topbar,
.plan-progress__label,
.assistant-card__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.workspace-window__topbar {
    margin-bottom: 1rem;
    color: #edf9f7;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.live-plan {
    color: #8ae1d6;
}

.metric-grid,
.workspace-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.metric,
.workspace-card,
.plan-progress {
    padding: 0.9rem;
    background: #153a36;
    border: 1px solid rgba(189, 233, 227, 0.1);
    border-radius: var(--founder-radius-sm);
}

.metric span,
.workspace-card span {
    display: block;
    color: #a9d7d1;
    font-size: 0.68rem;
}

.metric strong {
    display: block;
    margin-top: 0.15rem;
    font-size: 1.8rem;
}

.plan-progress {
    margin-block: 0.65rem;
}

.plan-progress__label {
    margin-bottom: 0.6rem;
    color: #c1e5e0;
    font-size: 0.68rem;
}

.progress-track {
    overflow: hidden;
    height: 0.42rem;
    background: #315853;
    border-radius: 999px;
}

.progress-track span {
    display: block;
    width: 70%;
    height: 100%;
    background: #71d9cc;
}

.workspace-card {
    min-height: 5.2rem;
}

.workspace-card strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.76rem;
}

.network-path {
    width: 100%;
    margin-top: 1rem;
    opacity: 0.78;
}

.network-path__lines {
    fill: none;
    stroke: #398f86;
    stroke-width: 2;
}

.network-path__nodes {
    fill: #9be8df;
    stroke: #0c2422;
    stroke-width: 3;
}

.assistant-card {
    position: absolute;
    right: 0;
    bottom: 2rem;
    left: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    color: var(--founder-ink);
    background: #ffffff;
    border: 1px solid #bcdad5;
    border-radius: var(--founder-radius-md);
    box-shadow: 0 12px 30px rgba(30, 70, 64, 0.18);
}

.assistant-card > img {
    flex: 0 0 auto;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
}

.assistant-card__heading {
    font-size: 0.68rem;
}

.assistant-card__heading span {
    color: #76590d;
    font-weight: 700;
}

.assistant-card p {
    margin: 0.35rem 0 0.55rem;
    color: #3d5753;
    font-size: 0.72rem;
    line-height: 1.45;
}

.assistant-card__action {
    display: inline-block;
    padding: 0.34rem 0.5rem;
    color: var(--founder-teal-dark);
    background: var(--founder-teal-pale);
    border-radius: 0.25rem;
    font-size: 0.68rem;
    font-weight: 700;
}

.workspace-visual figcaption {
    margin-top: 0.7rem;
    color: var(--founder-muted);
    font-size: 0.72rem;
    text-align: center;
}

.problem-section,
.outcomes-section,
.assistant-section,
.steps-section {
    padding-block: 4.5rem;
}

.problem-section {
    color: #ffffff;
    background: var(--founder-ink);
}

.problem-section .eyebrow {
    color: #7edbd0;
}

.problem-section h2 {
    color: #ffffff;
}

.problem-section p:last-child {
    margin-bottom: 0;
    color: #c2d6d2;
    font-size: 1.05rem;
}

.outcomes-section {
    background: #ffffff;
}

.section-heading {
    max-width: 50rem;
    margin-bottom: 2rem;
}

.outcome-grid {
    display: grid;
    gap: 1rem;
}

.outcome-card {
    padding: 1.4rem;
    background: #f7faf9;
    border-top: 3px solid var(--founder-teal);
    border-right: 1px solid var(--founder-border);
    border-bottom: 1px solid var(--founder-border);
    border-left: 1px solid var(--founder-border);
    border-radius: 0 0 var(--founder-radius-md) var(--founder-radius-md);
}

.outcome-card__number {
    color: var(--founder-teal-dark);
    font: 700 0.72rem/1 "Montserrat", sans-serif;
    letter-spacing: 0.1em;
}

.outcome-card h3 {
    margin: 1.25rem 0 0.55rem;
    font-size: 1.15rem;
}

.outcome-card p {
    margin: 0;
    color: var(--founder-muted);
    font-size: 0.9rem;
}

.assistant-section {
    background: var(--founder-teal-pale);
}

.assistant-section__grid {
    display: grid;
    gap: 2rem;
}

.assistant-section__lead {
    max-width: 38rem;
    color: #345952;
    font-size: 1.05rem;
}

.assistant-capabilities {
    display: grid;
    gap: 1rem;
}

.assistant-capabilities > div {
    padding-bottom: 1rem;
    border-bottom: 1px solid #b3d8d2;
}

.assistant-capabilities > div:last-child {
    border-bottom: 0;
}

.assistant-capabilities strong {
    color: var(--founder-ink);
}

.assistant-capabilities p {
    margin: 0.25rem 0 0;
    color: #3e625c;
    font-size: 0.9rem;
}

.trust-line {
    margin: 2rem 0 0;
    padding: 1rem;
    color: #ffffff;
    background: var(--founder-teal-dark);
    border-radius: var(--founder-radius-sm);
    font-weight: 700;
    text-align: center;
}

.steps-section {
    background: var(--founder-cloud);
}

.step-list {
    display: grid;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.step-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.step-list li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    color: #ffffff;
    background: var(--founder-teal-dark);
    border-radius: 50%;
    font-weight: 700;
}

.step-list h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.step-list p {
    margin: 0;
    color: var(--founder-muted);
    font-size: 0.9rem;
}

.final-cta {
    padding-block: 3.5rem;
    color: #ffffff;
    background: var(--founder-teal-dark);
}

.final-cta__inner {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.final-cta .eyebrow {
    color: #b9eee8;
}

.final-cta h2 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.final-cta p:last-child {
    margin: 0;
    color: #d5f2ee;
}

.site-footer {
    padding-block: 2rem;
    color: #b9ceca;
    background: #06100f;
}

.site-footer__grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-brand {
    color: #ffffff;
}

.footer-brand img {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #d6e4e1;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-note {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #233936;
}

.footer-note p {
    max-width: 60rem;
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
}

.thanks-page {
    min-height: 100%;
    background:
        radial-gradient(circle at 50% 0, rgba(32, 178, 170, 0.16), transparent 28rem),
        var(--founder-cloud);
}

.thanks-shell {
    display: grid;
    min-height: 48rem;
    padding: 2rem 1rem;
    place-items: center;
}

.thanks-card {
    width: min(100%, 42rem);
    padding: 1.5rem;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--founder-border);
    border-radius: var(--founder-radius-lg);
    box-shadow: var(--founder-shadow);
}

.thanks-brand {
    margin-bottom: 2.5rem;
}

.thanks-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    background: var(--founder-teal-dark);
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: 700;
}

.thanks-card h1 {
    margin-inline: auto;
    font-size: clamp(2rem, 8vw, 3.5rem);
}

.thanks-lead {
    color: #294e48;
    font-size: 1.1rem;
}

.thanks-card > p:not(.eyebrow, .thanks-lead, .thanks-note) {
    color: var(--founder-muted);
}

.thanks-card .button {
    margin-top: 1rem;
}

.thanks-note {
    margin: 1.5rem auto 0;
    color: #61716e;
    font-size: 0.76rem;
}

@media (min-width: 768px) {
    .shell {
        width: min(100% - 3rem, var(--founder-shell));
    }

    .cohort-note {
        display: block;
    }

    .hero {
        padding-block: 5rem 6rem;
    }

    .waitlist-form {
        padding: 1.2rem;
    }

    .waitlist-form__name-row {
        grid-template-columns: 1fr 1fr;
    }

    .outcome-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .assistant-capabilities {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 2rem;
    }

    .assistant-capabilities > div:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .step-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .step-list li {
        grid-template-columns: 1fr;
    }

    .final-cta__inner {
        grid-template-columns: 1fr auto;
    }

    .site-footer__grid {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .thanks-card {
        padding: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .brand__wordmark {
        font-size: 1.35rem;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.92fr);
        gap: 4rem;
        align-items: center;
    }

    .workspace-visual {
        padding-left: 1.6rem;
    }

    .problem-section,
    .outcomes-section,
    .assistant-section,
    .steps-section {
        padding-block: 6rem;
    }

    .outcome-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .assistant-section__grid {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
