:root {
    --forest-950: #082a21;
    --forest-900: #0c3b2e;
    --forest-800: #124c3a;
    --forest-700: #1e6048;
    --forest-100: #dce9e2;
    --forest-50: #eff5f1;
    --ink: #17302a;
    --muted: #65746e;
    --paper: #fbfaf5;
    --white: #ffffff;
    --yellow: #f3cc24;
    --yellow-dark: #dcb515;
    --line: rgba(20, 59, 46, 0.16);
    --error: #b42318;
    --success: #1e6048;
    --shadow: 0 28px 70px -40px rgba(4, 35, 27, 0.5);
    --shell: min(1180px, calc(100% - 48px));
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Outfit", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

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

h1,
h2,
h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--white);
    color: var(--forest-950);
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    color: var(--white);
    transition: background-color 260ms var(--ease), box-shadow 260ms var(--ease), backdrop-filter 260ms var(--ease);
}

.site-header.scrolled {
    background: rgba(8, 42, 33, 0.9);
    box-shadow: 0 12px 35px rgba(4, 30, 23, 0.16);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 12px;
    background: var(--white);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.brand-mark img {
    width: 40px;
    height: 41px;
    object-fit: contain;
}

.brand-name {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 600;
}

.main-nav > a:not(.button) {
    position: relative;
    padding-block: 8px;
    color: rgba(255, 255, 255, 0.86);
}

.main-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--yellow);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 240ms var(--ease);
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-button {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.menu-button > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: var(--white);
    transition: transform 220ms var(--ease);
}

.menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 24px;
    border: 0;
    border-radius: 8px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms var(--ease), background-color 180ms ease, box-shadow 180ms var(--ease);
}

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

.button:active {
    transform: translateY(1px) scale(0.985);
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.faq-item button:focus-visible,
.form-panel input:focus-visible,
.form-panel textarea:focus-visible,
.consent input:focus-visible {
    outline: 3px solid rgba(243, 204, 36, 0.62);
    outline-offset: 3px;
}

.button-small {
    min-height: 42px;
    padding: 11px 19px;
    background: var(--yellow);
    color: var(--forest-950);
}

.button-primary {
    min-width: 205px;
    background: var(--yellow);
    box-shadow: 0 14px 34px -18px rgba(243, 204, 36, 0.9);
    color: var(--forest-950);
}

.button-primary:hover,
.button-small:hover {
    background: #ffda30;
}

.text-link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--yellow);
    color: var(--white);
    font-weight: 600;
}

.text-link span {
    transition: transform 180ms var(--ease);
}

.text-link:hover span {
    transform: translateX(3px);
}

.text-link.dark {
    color: var(--forest-900);
}

.hero {
    position: relative;
    display: flex;
    min-height: auto;
    flex-direction: column;
    overflow: hidden;
    padding: 132px 0 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(52, 119, 89, 0.2), transparent 39%),
        radial-gradient(circle at 12% 8%, rgba(31, 105, 75, 0.18), transparent 30%),
        var(--forest-950);
    color: var(--white);
}

.hero::after {
    position: absolute;
    right: -13vw;
    bottom: 80px;
    width: 38vw;
    height: 38vw;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    box-shadow: inset 0 0 0 64px rgba(255, 255, 255, 0.018), inset 0 0 0 128px rgba(255, 255, 255, 0.012);
    content: "";
    pointer-events: none;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: block;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 6px 0 32px;
    margin: 0 auto;
    text-align: center;
    animation: rise-in 750ms var(--ease) both;
}

.eyebrow,
.section-kicker,
.form-index {
    margin-bottom: 18px;
    color: var(--forest-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--yellow);
}

.eyebrow span {
    display: none;
}

.hero h1 {
    max-width: 14ch;
    margin: 0 auto 24px;
    font-size: clamp(3.35rem, 5.4vw, 5.2rem);
    font-weight: 700;
    letter-spacing: -0.052em;
    line-height: 1.02;
}

.hero-lead {
    max-width: 690px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.58;
}

.hero-lead strong {
    color: var(--white);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 21px;
    padding: 0;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    list-style: none;
}

.hero-assurances li {
    position: relative;
    padding-left: 16px;
}

.hero-assurances li::before {
    position: absolute;
    top: 0.57em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--yellow);
    content: "";
}

.hero-visual {
    position: relative;
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: center;
    margin: 0 auto -10px;
    animation: rise-in 900ms 120ms var(--ease) both;
}

.hero-visual::before {
    content: none;
}

.hero-visual > img {
    position: relative;
    width: min(1080px, 94vw);
    height: auto;
    max-width: 100%;
    object-fit: contain;
    transform: none;
}

.visual-caption,
.visual-note {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(9, 47, 36, 0.68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 40px -26px rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(12px);
}

.visual-caption {
    top: 10%;
    right: 6%;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #76c89d;
    box-shadow: 0 0 0 5px rgba(118, 200, 157, 0.12);
    animation: breathe 2.4s ease-in-out infinite;
}

.visual-note {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.visual-note-left {
    bottom: 26%;
    left: 2%;
}

.visual-note-right {
    right: 3%;
    bottom: 32%;
}

.offer-rail {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 172px;
    align-items: center;
    grid-template-columns: auto 1px 1fr;
    gap: 48px;
    padding: 12px 5% 38px;
}

.offer-number {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    color: var(--white);
    line-height: 0.94;
    text-transform: uppercase;
}

.offer-number strong {
    font-size: clamp(3rem, 5vw, 4.55rem);
    letter-spacing: -0.055em;
}

.offer-number span {
    color: var(--white);
    font-size: clamp(3rem, 5vw, 4.55rem);
    font-weight: 800;
    letter-spacing: -0.055em;
}

.offer-divider {
    width: 1px;
    height: 64px;
    background: var(--yellow);
}

.offer-promises {
    display: grid;
    gap: 7px;
    padding: 0;
    margin: 0;
    color: var(--white);
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 700;
    line-height: 1.18;
    list-style: none;
}

.audience-band {
    padding: 90px 0 84px;
    border-bottom: 1px solid var(--line);
    background: var(--forest-50);
    text-align: center;
}

.audience-band h2,
.program-section h2,
.steps-heading h2,
.faq-heading h2 {
    margin-bottom: 26px;
    color: var(--forest-900);
    font-size: clamp(2.15rem, 4vw, 3.7rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.03;
}

.audience-band h2 {
    margin-bottom: 48px;
}

.audience-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.audience-item {
    display: flex;
    min-height: 152px;
    align-items: center;
    justify-content: center;
    gap: 21px;
    padding: 28px 34px;
    color: var(--forest-900);
    font-weight: 600;
    text-align: left;
}

.audience-item + .audience-item {
    border-left: 1px solid var(--line);
}

.audience-item svg {
    width: 51px;
    flex: 0 0 51px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.program-section {
    padding: 132px 0;
    background: var(--paper);
}

.program-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 0.76fr 1.24fr;
    gap: clamp(60px, 8vw, 120px);
}

.program-copy p:not(.section-kicker) {
    max-width: 48ch;
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.comparison {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.comparison-row {
    padding: 29px 0 31px;
}

.comparison-row + .comparison-row {
    border-top: 1px solid var(--line);
}

.comparison-label {
    display: block;
    margin-bottom: 21px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.comparison-after .comparison-label {
    color: var(--forest-700);
}

.comparison-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.comparison-flow span {
    display: flex;
    min-width: 76px;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: #53615c;
    font-size: 12px;
    font-weight: 600;
}

.comparison-flow svg {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.comparison-flow i {
    color: #9ba7a1;
    font-size: 18px;
    font-style: normal;
}

.comparison-after .comparison-flow span {
    color: var(--forest-700);
}

.benefits-section {
    padding: 132px 0;
    background: var(--forest-900);
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(70px, 10vw, 150px);
}

.section-kicker.light {
    color: var(--yellow);
}

.benefits-heading {
    position: sticky;
    top: 125px;
    align-self: start;
}

.benefits-heading h2 {
    margin-bottom: 28px;
    font-size: clamp(2.4rem, 4.4vw, 4.3rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.benefits-heading > p:last-child {
    max-width: 45ch;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.7;
}

.benefit-list {
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    list-style: none;
}

.benefit-list li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    padding: 26px 0 29px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-list li > span {
    padding-top: 4px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.benefit-list strong {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
}

.benefit-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

.steps-section {
    padding: 132px 0;
    background: var(--forest-50);
}

.steps-heading {
    display: grid;
    align-items: end;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    margin-bottom: 60px;
}

.steps-heading .section-kicker,
.steps-heading h2 {
    grid-column: 1;
}

.steps-heading h2 {
    margin: -4px 0 0;
}

.steps-heading > p:last-child {
    grid-row: 1 / span 2;
    grid-column: 2;
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 18px;
}

.steps-list {
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.steps-list li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 35px 0;
    border-bottom: 1px solid var(--line);
}

.step-number {
    color: var(--forest-700);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.steps-list h3 {
    margin-bottom: 8px;
    color: var(--forest-900);
    font-size: 27px;
    letter-spacing: -0.03em;
}

.steps-list p {
    max-width: 62ch;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.faq-section {
    padding: 132px 0;
    background: var(--paper);
}

.faq-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(70px, 9vw, 135px);
}

.faq-heading {
    position: sticky;
    top: 125px;
}

.faq-heading > p:not(.section-kicker) {
    max-width: 42ch;
    margin-bottom: 20px;
    color: var(--muted);
}

.accordion {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    display: flex;
    width: 100%;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-item button i {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.faq-item button i::before,
.faq-item button i::after {
    position: absolute;
    top: 8px;
    left: 1px;
    width: 16px;
    height: 2px;
    background: var(--forest-700);
    content: "";
    transition: transform 220ms var(--ease);
}

.faq-item button i::after {
    transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
    transform: rotate(0);
}

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    max-width: 62ch;
    padding: 0 45px 27px 0;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.application-section {
    padding: 132px 0;
    background: var(--forest-950);
    color: var(--white);
}

.application-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 0.74fr 1.26fr;
    gap: clamp(55px, 8vw, 110px);
}

.application-copy {
    position: sticky;
    top: 125px;
}

.application-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(2.6rem, 4.8vw, 4.65rem);
    font-weight: 700;
    letter-spacing: -0.052em;
    line-height: 0.98;
}

.application-copy > p:not(.section-kicker) {
    max-width: 44ch;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.7;
}

.application-summary {
    display: grid;
    gap: 0;
    margin-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.application-summary span {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.application-summary strong {
    color: var(--white);
    font-weight: 600;
}

.form-panel {
    min-width: 0;
    padding: clamp(28px, 4vw, 54px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: var(--paper);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    color: var(--ink);
}

.form-heading {
    max-width: 620px;
    margin-bottom: 36px;
}

.form-heading h2,
.success-panel h2 {
    margin-bottom: 10px;
    color: var(--forest-900);
    font-size: clamp(2rem, 3vw, 2.8rem);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.form-heading > p:last-child,
.success-panel > p:last-of-type {
    margin: 0;
    color: var(--muted);
}

#entrepreneurForm {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 21px 20px;
}

.field-group {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.field-group-wide {
    grid-column: 1 / -1;
}

.field-group label {
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}

.field-group label span {
    margin-left: 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
}

.field-group input,
.field-group textarea {
    width: 100%;
    min-height: 51px;
    padding: 13px 15px;
    border: 1px solid #cbd5d0;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font-size: 16px;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field-group textarea {
    min-height: 102px;
    resize: vertical;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: #98a39e;
}

.field-group input:focus,
.field-group textarea:focus {
    border-color: var(--forest-700);
    box-shadow: 0 0 0 3px rgba(30, 96, 72, 0.1);
}

.field-group.has-error input,
.field-group.has-error textarea {
    border-color: var(--error);
}

.field-hint {
    color: var(--muted);
    font-size: 11px;
}

.field-error {
    min-height: 0;
    color: var(--error);
    font-size: 12px;
    line-height: 1.35;
}

.field-error:not(:empty) {
    min-height: 16px;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--muted);
    font-size: 13px;
    cursor: pointer;
}

.consent input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin: 1px 0 0;
    accent-color: var(--forest-700);
}

.consent-error {
    margin-top: -15px;
}

.form-actions {
    display: grid;
    grid-template-columns: minmax(230px, 0.7fr) 1fr;
    align-items: center;
    gap: 22px;
    margin-top: 4px;
}

.button-submit {
    width: 100%;
    min-height: 56px;
    justify-content: space-between;
    background: var(--yellow);
    color: var(--forest-950);
}

.button-submit:hover {
    background: #ffda30;
}

.button-submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.button-submit.is-loading [data-button-icon] {
    width: 17px;
    height: 17px;
    border: 2px solid rgba(8, 42, 33, 0.3);
    border-top-color: var(--forest-950);
    border-radius: 50%;
    font-size: 0;
    animation: spin 800ms linear infinite;
}

.form-actions p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.form-status {
    margin-top: 18px;
    font-size: 14px;
}

.form-status.error {
    padding: 13px 15px;
    border: 1px solid rgba(180, 35, 24, 0.22);
    border-radius: 8px;
    background: rgba(180, 35, 24, 0.06);
    color: var(--error);
}

.success-panel {
    padding: 18px 0 8px;
}

.success-panel > svg {
    width: 62px;
    margin-bottom: 25px;
    fill: none;
    stroke: var(--success);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.3;
}

.success-panel .text-link {
    margin-top: 20px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--yellow-dark);
    background: transparent;
    cursor: pointer;
}

.site-footer {
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--forest-950);
    color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto auto;
    gap: 45px;
}

.footer-brand > span:last-child {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    color: var(--white);
    font-size: 16px;
}

.footer-brand small {
    margin-top: 1px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.site-footer nav {
    display: flex;
    gap: 25px;
    font-size: 13px;
}

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

.site-footer > .footer-grid > p {
    margin: 0;
    font-size: 12px;
}

.mobile-cta {
    display: none;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes rise-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes breathe {
    0%, 100% { transform: scale(0.88); opacity: 0.7; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
    .main-nav {
        gap: 20px;
    }

    .hero-grid {
        display: block;
    }

    .hero-visual > img {
        width: min(960px, 96vw);
    }

    .visual-note-left {
        left: -2%;
    }

    .visual-note-right {
        right: -1%;
    }

    .audience-item {
        padding-inline: 20px;
    }
}

@media (max-width: 880px) {
    :root {
        --shell: min(100% - 36px, 720px);
    }

    html {
        scroll-padding-top: 78px;
    }

    .header-inner {
        min-height: 70px;
    }

    .menu-button {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 69px;
        right: 0;
        left: 0;
        display: grid;
        max-height: calc(100dvh - 69px);
        gap: 0;
        padding: 18px;
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(8, 42, 33, 0.98);
        box-shadow: 0 24px 40px rgba(4, 30, 23, 0.24);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 200ms ease, transform 220ms var(--ease);
    }

    .main-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav > a:not(.button) {
        min-height: 52px;
        padding: 15px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav .button {
        margin-top: 16px;
    }

    .hero {
        min-height: auto;
        padding-top: 118px;
    }

    .hero-grid,
    .program-grid,
    .benefits-grid,
    .faq-grid,
    .application-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 0;
    }

    .hero-copy {
        max-width: 780px;
        padding-bottom: 30px;
        margin-inline: auto;
    }

    .hero h1 {
        max-width: 14ch;
        font-size: clamp(3.2rem, 8.5vw, 4.8rem);
    }

    .hero-visual {
        min-height: 0;
    }

    .hero-visual > img {
        top: auto;
        left: auto;
        width: min(900px, 102vw);
        transform: none;
    }

    .visual-caption {
        top: 5%;
        right: 2%;
    }

    .visual-note-left {
        left: 4%;
    }

    .visual-note-right {
        right: 4%;
    }

    .offer-rail {
        gap: 30px;
    }

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

    .audience-item {
        justify-content: flex-start;
        padding-inline: max(28px, 12vw);
    }

    .audience-item + .audience-item {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .program-section,
    .benefits-section,
    .steps-section,
    .faq-section,
    .application-section {
        padding: 100px 0;
    }

    .program-grid,
    .benefits-grid,
    .faq-grid,
    .application-grid {
        gap: 60px;
    }

    .benefits-heading,
    .faq-heading,
    .application-copy {
        position: static;
    }

    .steps-heading {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .steps-heading .section-kicker,
    .steps-heading h2,
    .steps-heading > p:last-child {
        grid-row: auto;
        grid-column: 1;
    }

    .steps-list li {
        grid-template-columns: 80px 1fr;
    }

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

    .site-footer > .footer-grid > p {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    :root {
        --shell: calc(100% - 32px);
    }

    body {
        padding-bottom: 72px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .brand-mark img {
        width: 36px;
        height: 37px;
    }

    .hero {
        padding-top: 112px;
    }

    .eyebrow {
        font-size: 11px;
    }

    .hero h1 {
        max-width: 11ch;
        margin-bottom: 21px;
        font-size: clamp(2.75rem, 14vw, 4rem);
        line-height: 0.98;
    }

    .hero-lead {
        margin-bottom: 27px;
        font-size: 17px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions .button,
    .hero-actions .text-link {
        width: 100%;
    }

    .hero-actions .text-link {
        justify-content: center;
        border: 0;
    }

    .hero-assurances {
        display: grid;
        gap: 8px;
        margin-top: 23px;
    }

    .hero-visual {
        min-height: 0;
        margin: 6px -16px -2px;
    }

    .hero-visual > img {
        left: 50%;
        width: 108vw;
        max-width: none;
        transform: translateX(-50%);
    }

    .visual-caption {
        top: 2%;
        right: 8%;
        font-size: 11px;
    }

    .visual-note {
        display: none;
    }

    .offer-rail {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 28px 0 34px;
        text-align: center;
    }

    .offer-number {
        display: grid;
        justify-items: center;
        gap: 0;
    }

    .offer-number strong {
        font-size: 3.1rem;
    }

    .offer-number span {
        font-size: 3.1rem;
    }

    .offer-divider {
        width: 44px;
        height: 1px;
        margin-inline: auto;
    }

    .offer-promises {
        gap: 6px;
        font-size: 1.06rem;
    }

    .audience-band {
        padding: 74px 0 66px;
    }

    .audience-band h2,
    .program-section h2,
    .steps-heading h2,
    .faq-heading h2 {
        font-size: 2.45rem;
    }

    .audience-band h2 {
        margin-bottom: 35px;
    }

    .audience-item {
        min-height: 128px;
        padding: 24px;
    }

    .program-section,
    .benefits-section,
    .steps-section,
    .faq-section,
    .application-section {
        padding: 78px 0;
    }

    .program-grid,
    .benefits-grid,
    .faq-grid,
    .application-grid {
        gap: 48px;
    }

    .comparison-flow {
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
    }

    .comparison-flow span {
        width: 100%;
        min-height: 54px;
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        padding: 8px 0;
    }

    .comparison-flow svg {
        width: 32px;
        flex: 0 0 32px;
    }

    .comparison-flow i {
        display: none;
    }

    .benefits-heading h2,
    .application-copy h2 {
        font-size: 2.75rem;
    }

    .benefit-list li {
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .benefit-list strong {
        font-size: 18px;
    }

    .steps-list li {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 28px 0;
    }

    .steps-list h3 {
        font-size: 24px;
    }

    .faq-item button {
        min-height: 78px;
    }

    .application-summary span {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .form-panel {
        margin-inline: -5px;
        padding: 28px 20px;
        border-radius: 16px;
    }

    #entrepreneurForm {
        grid-template-columns: 1fr;
    }

    .field-group-wide {
        grid-column: 1;
    }

    .form-actions {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .site-footer nav {
        flex-wrap: wrap;
        gap: 14px 22px;
    }

    .site-footer > .footer-grid > p {
        grid-column: 1;
    }

    .mobile-cta {
        position: fixed;
        right: 10px;
        bottom: 10px;
        left: 10px;
        z-index: 18;
        display: flex;
        min-height: 54px;
        align-items: center;
        justify-content: space-between;
        padding: 14px 19px;
        border: 1px solid rgba(255, 255, 255, 0.36);
        border-radius: 10px;
        background: var(--yellow);
        box-shadow: 0 16px 35px rgba(8, 42, 33, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.45);
        color: var(--forest-950);
        font-weight: 800;
        opacity: 0;
        pointer-events: none;
        transform: translateY(20px);
        transition: opacity 220ms ease, transform 260ms var(--ease);
    }

    .mobile-cta.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
