@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");

/* KADENOR FOUNDER PROGRAM CSS V1 */

:root {
    --background: #f5efe5;
    --background-light: #fffaf2;
    --surface: #ffffff;
    --ink: #22201d;
    --muted: #706a62;
    --orange: #dc6b35;
    --orange-dark: #b84b22;
    --orange-light: #f1a178;
    --orange-soft: #f7dfcf;
    --green: #23705a;
    --green-soft: #e6f2ec;
    --border: #e5ddd2;
    --dark: #181a18;
    --shadow: 0 25px 70px rgba(64, 45, 28, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--background-light);
    font-family: "DM Sans", sans-serif;
}

a {
    color: inherit;
}

.founder-header {
    position: relative;
    z-index: 20;
    width: min(1400px, calc(100% - 56px));
    min-height: 86px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.founder-brand {
    width: max-content;
    font-family: "Manrope", sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    text-decoration: none;
}

.founder-brand::after {
    content: ".";
    color: var(--orange);
}

.founder-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.founder-nav a {
    color: #4f4a44;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
}

.founder-header-cta {
    justify-self: end;
    padding: 11px 19px;
    color: #ffffff;
    background: var(--ink);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}

.program-hero {
    position: relative;
    width: min(1400px, calc(100% - 56px));
    min-height: calc(100vh - 86px);
    margin: 0 auto;
    padding: 54px 0 92px;
    display: grid;
    grid-template-columns: minmax(420px, 0.92fr) minmax(470px, 0.9fr);
    align-items: center;
    gap: clamp(60px, 9vw, 145px);
}

.program-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 620px;
    height: 620px;
    pointer-events: none;
    background: rgba(220, 107, 53, 0.09);
    border-radius: 50%;
    filter: blur(2px);
}

.program-hero-copy {
    position: relative;
    z-index: 3;
}

.back-link {
    width: fit-content;
    margin-bottom: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}

.back-link span {
    color: var(--orange);
}

.program-eyebrow,
.section-eyebrow,
.application-eyebrow {
    margin: 0 0 20px;
    color: var(--orange-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.program-hero h1 {
    max-width: 720px;
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(3.15rem, 5.2vw, 5.65rem);
    line-height: 0.99;
    letter-spacing: -0.07em;
}

.program-hero h1 span {
    display: block;
    color: var(--orange);
}

.program-intro {
    max-width: 690px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.73;
}

.program-hero-actions {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    min-height: 51px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 750;
    text-decoration: none;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #ffffff;
    background: var(--orange);
    box-shadow: 0 14px 28px rgba(184, 75, 34, 0.22);
}

.button-secondary {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
}

.program-signals {
    margin-top: 39px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.program-signals span {
    padding: 8px 12px;
    color: #5e574f;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.69rem;
    font-weight: 700;
}

.program-hero-visual {
    position: relative;
    z-index: 2;
    min-height: 590px;
    display: grid;
    place-items: center;
}

.hero-visual-glow {
    position: absolute;
    width: 470px;
    height: 470px;
    background:
        radial-gradient(
            circle,
            rgba(220, 107, 53, 0.18),
            rgba(220, 107, 53, 0.03) 52%,
            transparent 72%
        );
    border-radius: 50%;
}

.program-orbit {
    position: absolute;
    border: 1px solid rgba(64, 45, 28, 0.14);
    border-radius: 50%;
}

.program-orbit::before,
.program-orbit::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    background: var(--orange);
    border: 6px solid rgba(220, 107, 53, 0.15);
    border-radius: 50%;
}

.program-orbit-large {
    width: 475px;
    height: 475px;
}

.program-orbit-large::before {
    top: 52px;
    right: 75px;
}

.program-orbit-large::after {
    left: 16px;
    bottom: 125px;
}

.program-orbit-small {
    width: 325px;
    height: 325px;
    border-color: rgba(35, 112, 90, 0.2);
}

.program-orbit-small::before {
    right: -8px;
    bottom: 102px;
    background: var(--green);
    border-color: rgba(35, 112, 90, 0.13);
}

.program-orbit-small::after {
    display: none;
}

.program-core {
    position: relative;
    z-index: 4;
    width: 205px;
    height: 205px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 34% 24%,
            rgba(255, 255, 255, 0.2),
            transparent 9rem
        ),
        var(--orange);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow:
        0 0 0 22px rgba(220, 107, 53, 0.07),
        0 28px 60px rgba(81, 47, 24, 0.24);
}

.program-core span,
.program-core small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.program-core strong {
    margin: 2px 0;
    font-family: "Manrope", sans-serif;
    font-size: 4.2rem;
    line-height: 1;
    letter-spacing: -0.08em;
}

.program-stage {
    position: absolute;
    z-index: 5;
    min-width: 155px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(64, 45, 28, 0.1);
    border-radius: 15px;
    box-shadow: 0 17px 40px rgba(58, 40, 24, 0.1);
    backdrop-filter: blur(12px);
}

.program-stage > span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #ffffff;
    background: var(--orange);
    border-radius: 10px;
    font-size: 0.63rem;
    font-weight: 800;
}

.program-stage div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.program-stage strong {
    font-size: 0.77rem;
}

.program-stage small {
    color: var(--muted);
    font-size: 0.63rem;
}

.program-stage-one {
    top: 42px;
    left: 8px;
}

.program-stage-two {
    top: 132px;
    right: 0;
}

.program-stage-three {
    left: 34px;
    bottom: 47px;
}

.section-container {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
    align-items: end;
    gap: clamp(60px, 10vw, 150px);
}

.section-heading h2,
.value-copy h2,
.fit-copy h2,
.application-copy h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.55rem, 4.5vw, 4.65rem);
    line-height: 1.02;
    letter-spacing: -0.065em;
}

.section-heading h2 span,
.value-copy h2 span,
.fit-copy h2 span,
.application-copy h2 span {
    display: block;
    color: var(--orange);
}

.section-heading > p,
.value-copy > p,
.fit-copy > p,
.application-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.76;
}

.purpose-section {
    padding: 118px 0;
    background: #ffffff;
}

.purpose-grid {
    margin-top: 65px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.purpose-card {
    min-height: 270px;
    padding: 29px;
    display: flex;
    flex-direction: column;
    background: #fffaf4;
    border: 1px solid #eee4d8;
    border-radius: 20px;
}

.card-number {
    color: var(--orange);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.purpose-card h3 {
    margin: auto 0 12px;
    font-family: "Manrope", sans-serif;
    font-size: 1.35rem;
    letter-spacing: -0.035em;
}

.purpose-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.65;
}

.purpose-card-accent {
    color: #ffffff;
    background: var(--green);
    border-color: var(--green);
}

.purpose-card-accent .card-number,
.purpose-card-accent p {
    color: rgba(255, 255, 255, 0.7);
}

.program-flow {
    margin-top: 25px;
    padding: 25px 29px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background: #f5efe6;
    border-radius: 18px;
}

.program-flow > p {
    margin: 0;
    color: var(--orange-dark);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.flow-steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 13px;
}

.flow-steps span {
    font-size: 0.73rem;
    font-weight: 750;
}

.flow-steps i {
    color: var(--orange);
    font-size: 0.73rem;
    font-style: normal;
}

.cohorts-section {
    padding: 118px 0 128px;
    background:
        radial-gradient(
            circle at 92% 9%,
            rgba(220, 107, 53, 0.08),
            transparent 28rem
        ),
        #f6f0e7;
}

.cohort-list {
    margin-top: 66px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cohort-card {
    min-height: 500px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--border);
    border-radius: 23px;
    box-shadow: 0 15px 40px rgba(64, 45, 28, 0.05);
}

.cohort-card-active {
    color: #ffffff;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(220, 107, 53, 0.24),
            transparent 17rem
        ),
        #222421;
    border-color: #222421;
    box-shadow: 0 25px 55px rgba(35, 32, 29, 0.18);
}

.cohort-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cohort-index {
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
}

.cohort-capacity {
    padding: 7px 10px;
    color: var(--orange-dark);
    background: var(--orange-soft);
    border-radius: 999px;
    font-size: 0.61rem;
    font-weight: 800;
}

.cohort-card-active .cohort-capacity {
    color: #ffffff;
    background: rgba(220, 107, 53, 0.72);
}

.cohort-label {
    margin: 66px 0 12px;
    color: var(--orange-dark);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.cohort-card-active .cohort-label {
    color: var(--orange-light);
}

.cohort-card h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 1.55rem;
    line-height: 1.17;
    letter-spacing: -0.04em;
}

.cohort-card ul {
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 13px;
    list-style: none;
}

.cohort-card li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.cohort-card li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--orange);
    border-radius: 50%;
}

.cohort-card-active li {
    color: rgba(255, 255, 255, 0.64);
}

.cohort-result {
    margin: auto 0 0;
    padding-top: 25px;
    color: var(--muted);
    border-top: 1px solid var(--border);
    font-size: 0.7rem;
    line-height: 1.55;
}

.cohort-result strong {
    display: block;
    color: var(--ink);
    font-size: 0.76rem;
}

.cohort-card-active .cohort-result {
    color: rgba(255, 255, 255, 0.44);
    border-color: rgba(255, 255, 255, 0.1);
}

.cohort-card-active .cohort-result strong {
    color: #ffffff;
}

.value-section {
    padding: 125px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 9% 93%,
            rgba(35, 112, 90, 0.25),
            transparent 29rem
        ),
        linear-gradient(145deg, #292621, #1c1e1c);
}

.value-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.85fr) minmax(500px, 1fr);
    gap: clamp(70px, 11vw, 150px);
}

.value-copy {
    position: sticky;
    top: 70px;
    align-self: start;
}

.value-copy .section-eyebrow {
    color: var(--orange-light);
}

.value-copy > p {
    max-width: 510px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.58);
}

.value-benefits {
    display: grid;
}

.value-benefits article {
    padding: 27px 0;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-benefits article:first-child {
    padding-top: 0;
}

.value-benefits article > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(220, 107, 53, 0.65);
    border-radius: 11px;
    font-size: 0.63rem;
    font-weight: 800;
}

.value-benefits h3 {
    margin: 2px 0 7px;
    font-family: "Manrope", sans-serif;
    font-size: 1.08rem;
    letter-spacing: -0.025em;
}

.value-benefits p {
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.82rem;
    line-height: 1.65;
}

.fit-section {
    padding: 124px 0;
    background: #fffdf9;
}

.fit-panel {
    padding: clamp(40px, 7vw, 82px);
    display: grid;
    grid-template-columns: minmax(390px, 1fr) minmax(370px, 0.76fr);
    align-items: center;
    gap: clamp(60px, 10vw, 135px);
    background: #f4ede3;
    border: 1px solid #e8ddd0;
    border-radius: 29px;
}

.fit-copy > p {
    max-width: 620px;
    margin-top: 25px;
}

.sector-list {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.sector-list span {
    padding: 8px 12px;
    color: #514b44;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid #e2d7ca;
    border-radius: 999px;
    font-size: 0.69rem;
    font-weight: 700;
}

.commitment-card {
    padding: 32px;
    color: #ffffff;
    background: var(--green);
    border-radius: 22px;
    box-shadow: 0 24px 50px rgba(35, 112, 90, 0.2);
}

.commitment-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.commitment-card ul {
    margin: 27px 0 0;
    padding: 0;
    display: grid;
    gap: 17px;
    list-style: none;
}

.commitment-card li {
    display: grid;
    grid-template-columns: 23px 1fr;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    line-height: 1.48;
}

.commitment-card li span {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    font-size: 0.65rem;
}

.commitment-note {
    margin: 27px 0 0;
    padding-top: 23px;
    color: rgba(255, 255, 255, 0.54);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.69rem;
    line-height: 1.6;
}

.application-section {
    padding: 28px 0 118px;
    background: #fffdf9;
}

.application-panel {
    position: relative;
    padding: clamp(48px, 7vw, 86px);
    display: grid;
    grid-template-columns: minmax(390px, 1fr) minmax(330px, 0.68fr);
    align-items: center;
    gap: clamp(60px, 10vw, 140px);
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 91% 10%,
            rgba(220, 107, 53, 0.3),
            transparent 25rem
        ),
        #20221f;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(49, 39, 30, 0.15);
}

.application-panel::before {
    content: "";
    position: absolute;
    left: -210px;
    bottom: -280px;
    width: 520px;
    height: 520px;
    background: rgba(35, 112, 90, 0.2);
    border-radius: 50%;
}

.application-copy,
.application-action {
    position: relative;
    z-index: 2;
}

.application-eyebrow {
    color: var(--orange-light);
}

.application-copy > p {
    max-width: 620px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.59);
}

.application-steps {
    margin-top: 38px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.application-steps span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.7rem;
    font-weight: 700;
}

.application-steps i {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(220, 107, 53, 0.7);
    border-radius: 8px;
    font-size: 0.56rem;
    font-style: normal;
}

.application-steps b {
    width: 22px;
    height: 1px;
    background: rgba(255, 255, 255, 0.17);
}

.application-action {
    padding: 31px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.application-action > p {
    margin: 0;
    font-size: 0.73rem;
    font-weight: 800;
}

.application-action ul {
    margin: 22px 0 0;
    padding-left: 18px;
    display: grid;
    gap: 9px;
}

.application-action li {
    color: rgba(255, 255, 255, 0.59);
    font-size: 0.72rem;
    line-height: 1.45;
}

.application-button {
    min-height: 52px;
    margin-top: 26px;
    padding: 0 13px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    background: var(--orange);
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(194, 76, 32, 0.24);
}

.application-button span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--orange-dark);
    background: #ffffff;
    border-radius: 9px;
}

.application-action small {
    margin-top: 16px;
    display: block;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.61rem;
    line-height: 1.55;
}

.program-footer {
    color: #ffffff;
    background: var(--dark);
}

.program-footer-container {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
    padding: 72px 0 27px;
}

.program-footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) minmax(350px, 0.7fr);
    gap: 90px;
}

.program-footer-brand {
    display: inline-block;
    font-family: "Manrope", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    text-decoration: none;
}

.program-footer-brand::after {
    content: ".";
    color: var(--orange);
}

.program-footer-main > div:first-child > p {
    max-width: 430px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.53);
    font-size: 0.84rem;
    line-height: 1.7;
}

.program-footer-email {
    margin-top: 24px;
    display: inline-flex;
    gap: 7px;
    color: var(--orange-light);
    font-size: 0.78rem;
    font-weight: 750;
    text-decoration: none;
}

.program-footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.program-footer-links > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.program-footer-links p {
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.program-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.74rem;
    font-weight: 650;
    text-decoration: none;
}

.program-footer-bottom {
    margin-top: 56px;
    padding-top: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.program-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.65rem;
}

.program-footer-bottom span {
    margin-left: 4px;
    color: rgba(241, 161, 120, 0.68);
}

a:focus-visible {
    outline: 3px solid rgba(220, 107, 53, 0.35);
    outline-offset: 4px;
}

@media (max-width: 1050px) {
    .program-hero {
        grid-template-columns: 1fr;
    }

    .program-hero-copy {
        max-width: 820px;
    }

    .program-hero-visual {
        width: min(100%, 620px);
        margin: 0 auto;
    }

    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-grid,
    .fit-panel,
    .application-panel {
        grid-template-columns: 1fr;
    }

    .value-copy {
        position: static;
    }
}

@media (max-width: 820px) {
    .founder-header {
        grid-template-columns: 1fr auto;
    }

    .founder-nav {
        display: none;
    }

    .section-heading {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }

    .cohort-list {
        grid-template-columns: 1fr;
    }

    .cohort-card {
        min-height: auto;
    }

    .cohort-label {
        margin-top: 45px;
    }

    .cohort-result {
        margin-top: 35px;
    }

    .program-flow {
        align-items: flex-start;
        flex-direction: column;
    }

    .flow-steps {
        justify-content: flex-start;
    }

    .program-footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 640px) {
    .founder-header,
    .program-hero,
    .section-container,
    .program-footer-container {
        width: min(100% - 30px, 1180px);
    }

    .founder-header {
        min-height: 76px;
    }

    .founder-header-cta {
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    .program-hero {
        min-height: auto;
        padding: 39px 0 68px;
    }

    .back-link {
        margin-bottom: 33px;
    }

    .program-hero h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .program-intro {
        font-size: 0.95rem;
    }

    .program-hero-visual {
        min-height: 420px;
        width: 450px;
        margin-left: 50%;
        transform: translateX(-50%) scale(0.78);
    }

    .purpose-section,
    .cohorts-section,
    .value-section,
    .fit-section {
        padding: 82px 0;
    }

    .section-heading h2,
    .value-copy h2,
    .fit-copy h2,
    .application-copy h2 {
        font-size: clamp(2.3rem, 11vw, 3.2rem);
    }

    .purpose-grid {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .purpose-card {
        min-height: 230px;
    }

    .flow-steps {
        gap: 10px;
    }

    .flow-steps i {
        display: none;
    }

    .flow-steps span {
        padding: 7px 10px;
        background: rgba(255, 255, 255, 0.55);
        border-radius: 999px;
    }

    .cohort-list {
        margin-top: 46px;
    }

    .cohort-card {
        padding: 26px;
    }

    .value-grid {
        gap: 55px;
    }

    .fit-panel,
    .application-panel {
        padding: 43px 22px;
        gap: 48px;
        border-radius: 22px;
    }

    .commitment-card,
    .application-action {
        padding: 25px 21px;
    }

    .application-section {
        padding: 15px 0 82px;
    }

    .application-steps b {
        display: none;
    }

    .program-footer-container {
        padding-top: 56px;
    }

    .program-footer-links {
        gap: 25px;
    }

    .program-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .program-footer-bottom span {
        margin-left: 0;
        display: block;
    }
}

@media (max-width: 390px) {
    .program-hero-actions .button {
        width: 100%;
    }

    .program-footer-links {
        grid-template-columns: 1fr;
    }
}
