
:root {
    --bg: #f6f7f3;
    --surface: #ffffff;
    --surface-2: #edf4f5;
    --ink: #172229;
    --muted: #5d6b72;
    --line: #d9e1e2;
    --dream: #5f94d8;
    --dream-deep: #2e649e;
    --growth: #2a9472;
    --growth-deep: #17654f;
    --action: #d9564a;
    --action-deep: #ad3b34;
    --warning: #b98228;
    --warning-bg: #fff7e7;
    --danger-bg: #fff0ed;
    --definition-bg: #eef5ff;
    --callout-bg: #ecf7f2;
    --shadow: 0 14px 36px rgba(23, 34, 41, .08);
    --radius: 18px;
    --radius-sm: 12px;
    --max: 1180px;
    --text: 760px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px
}

a:hover {
    text-decoration-color: var(--action)
}

.brand-word {
    font-weight: 800
}

.term-help {
    appearance: none;
    border: 0;
    background: none;
    padding: 0;
    color: inherit;
    font: inherit;
    font-style: italic;
    cursor: help;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 1px;
    text-underline-offset: .18em;
    text-decoration-color: rgba(23, 34, 41, .35)
}

.term-help:focus-visible {
    outline: 2px solid var(--dream);
    outline-offset: 3px;
    border-radius: 3px
}

.term-tooltip {
    position: fixed;
    z-index: 80;
    width: min(320px, calc(100vw - 28px));
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow);
    font-size: .9rem;
    line-height: 1.45
}

.term-tooltip[hidden] {
    display: none
}

.term-tooltip a {
    display: inline-block;
    margin-top: 8px;
    font-weight: 800
}

img, svg {
    max-width: 100%
}

button, input, textarea, select {
    font: inherit
}

button {
    cursor: pointer
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: var(--ink);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 999
}

.skip-link:focus {
    left: 10px
}

.container {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto
}

.narrow {
    width: min(calc(100% - 40px), var(--text));
    margin-inline: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 247, 243, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(217, 225, 226, .9)
}

.header-locale-row {
    border-bottom: 1px solid rgba(217, 225, 226, .62)
}

.header-locale-inner {
    min-height: 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    letter-spacing: 0;
    text-transform: uppercase
}

.language-switcher a, .language-switcher span {
    min-width: 30px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #6f7c81;
    text-decoration: none;
    border: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease, background .2s ease
}

.language-switcher a:hover, .language-switcher a:focus-visible {
    color: var(--ink);
    border-color: rgba(23, 34, 41, .16);
    background: rgba(255, 255, 255, .62)
}

.language-switcher a[aria-current="true"] {
    color: var(--ink);
    border-color: rgba(23, 34, 41, .18);
    background: rgba(255, 255, 255, .78)
}

.language-switcher .is-disabled {
    opacity: .38;
    cursor: not-allowed
}

.nav {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none
}

.brand-logo {
    display: block;
    width: auto;
    height: 40px
}

.footer-brand .brand-logo {
    height: 44px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: .94rem
}

.nav-links a {
    text-decoration: none;
    color: #324149
}

.nav-links a:hover, .nav-links a[aria-current="page"] {
    color: var(--ink)
}

.nav-links a, .footer-col a {
    position: relative;
    --menu-underline: #9aa6ab
}

.nav-links a:after, .footer-col a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--menu-underline);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .3s ease;
    pointer-events: none
}

.nav-links a:after {
    bottom: -5px
}

.footer-col a:after {
    bottom: 0
}

.nav-links a:hover:after, .nav-links a:focus-visible:after, .footer-col a:hover:after, .footer-col a:focus-visible:after, .nav-links a[aria-current="page"]:after {
    transform: scaleX(1);
    transform-origin: left center
}

.nav-links a:focus-visible, .footer-col a:focus-visible {
    outline: 2px solid rgba(95, 148, 216, .32);
    outline-offset: 7px;
    border-radius: 3px
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 19px;
    font-weight: 750;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease
}

.btn:hover {
    transform: translateY(-1px)
}

.btn-primary {
    background: var(--action);
    color: #fff;
    box-shadow: 0 8px 18px rgba(217, 86, 74, .18)
}

.btn-primary:hover {
    background: var(--action-deep)
}

.btn-secondary {
    background: var(--surface);
    border-color: var(--line)
}

.btn-ghost {
    padding-inline: 10px
}

.hero {
    padding: 86px 0 72px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, .46), rgba(255, 255, 255, .67)),
        url("/images/backgounds/hero-pattern_v10.svg") center top / cover no-repeat
}

.hero.is-parallax-ready,
.practice-hero.is-parallax-ready,
.about-hero.is-parallax-ready,
.author-hero.is-parallax-ready,
.program-hero.is-parallax-ready,
.method-hero.is-parallax-ready {
    background: linear-gradient(rgba(255, 255, 255, .46), rgba(255, 255, 255, .67))
}

.hero-parallax {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden
}

.hero.is-parallax-ready .hero-parallax,
.practice-hero.is-parallax-ready .hero-parallax,
.about-hero.is-parallax-ready .hero-parallax,
.author-hero.is-parallax-ready .hero-parallax,
.program-hero.is-parallax-ready .hero-parallax,
.method-hero.is-parallax-ready .hero-parallax {
    display: block
}

.hero-parallax svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 1280px;
    object-fit: cover
}

.hero-parallax:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, .46), rgba(255, 255, 255, .67))
}

.hero-bg-spin {
    transform-box: fill-box;
    transform-origin: center;
    animation: hero-cross-spin 64s linear infinite
}

.hero-bg-spin-b {
    animation-duration: 82s;
    animation-direction: reverse
}

.hero-bg-spin-c {
    animation-duration: 104s
}

@keyframes hero-cross-spin {
    to {
        transform: rotate(360deg)
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 64px;
    align-items: center
}

.hero-grid > * {
    min-width: 0
}

html[lang="fr"] .hero-grid {
    grid-template-columns:minmax(0, 1.28fr) minmax(300px, .72fr);
    gap: 40px
}

html[lang="fr"] .hero h1 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    max-width: 760px
}

html[lang="fr"] .hero-title-line {
    white-space: nowrap
}

.practice-hero-grid,
.about-hero-grid,
.author-hero-grid,
.program-hero-grid,
.method-hero-grid {
    position: relative;
    z-index: 2
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--dream-deep)
}

.eyebrow:before {
    content: "";
    width: 22px;
    height: 2px;
    background: currentColor
}

.hero h1, .page-hero h1 {
    font-size: clamp(2.35rem, 4.45vw, 3.65rem);
    line-height: .98;
    letter-spacing: 0;
    margin: .24em 0 .28em;
    max-width: 930px
}

.hero-title-line {
    display: block;
    white-space: nowrap
}

.hero-title-line-nowrap {
    white-space: nowrap
}

.hero-title-practice {
    color: var(--dream-deep)
}

.hero-title-skill {
    color: var(--action)
}

.hero-title-habits {
    color: var(--growth-deep)
}

.hero-title-accent {
    font-weight: inherit
}

.hero-title-accent-practice {
    color: var(--dream-deep)
}

.hero-title-accent-skill {
    color: var(--action-deep)
}

.hero-title-accent-habits {
    color: var(--growth-deep)
}

.hero h1 .goal, .page-hero h1 .goal {
    color: var(--dream-deep)
}

.hero h1 .action, .page-hero h1 .action {
    color: var(--growth-deep)
}

.lead {
    font-size: clamp(1.07rem, 1.7vw, 1.33rem);
    color: #43535b;
    max-width: 760px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px
}

.micro {
    font-size: .84rem;
    color: var(--muted);
    margin-top: 14px
}

.trajectory-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 28px;
    box-shadow: var(--shadow)
}

.trajectory-card h2 {
    font-size: 1.05rem;
    margin: 0 0 22px
}

.trajectory {
    display: grid;
    gap: 0
}

.trajectory-step {
    display: grid;
    grid-template-columns:34px 1fr;
    gap: 13px;
    min-height: 64px;
    position: relative
}

.trajectory-step:not(:last-child):before {
    content: "";
    position: absolute;
    left: 16px;
    top: 31px;
    width: 2px;
    height: 43px;
    background: var(--line)
}

.dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .76rem;
    font-weight: 850;
    color: #fff;
    z-index: 1
}

.dot.dream {
    background: var(--dream)
}

.dot.practice {
    background: var(--dream)
}

.dot.white {
    background: #fff;
    border: 1px solid #d9e1e2;
    color: #172229
}

.dot.black {
    background: #172229;
    color: #fff
}

.dot.growth {
    background: var(--growth)
}

.dot.habits {
    background: var(--growth)
}

.dot.action {
    background: var(--action)
}

.dot.skill {
    background: var(--action)
}

.trajectory-step b {
    display: block
}

.trajectory-step span {
    font-size: .86rem;
    color: var(--muted)
}

.trajectory-step .dot {
    color: #fff
}

.trajectory-step .dot.white {
    color: #172229
}

.practice-hero {
    padding: 78px 0 66px;
    position: relative;
    background:
        linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .72)),
        url("/images/backgounds/hero-pattern_v10.svg") center top / cover no-repeat;
    overflow: hidden
}

.practice-hero-grid {
    display: grid;
    grid-template-columns:minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 54px;
    align-items: center
}

.practice-hero h1 {
    font-size: clamp(2.35rem, 4.35vw, 3.65rem);
    line-height: 1;
    letter-spacing: 0;
    margin: .24em 0 .3em;
    max-width: 900px
}

.practice-hero-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--shadow)
}

.practice-hero-card h2 {
    margin: 0 0 18px;
    font-size: 1.08rem
}

.practice-hero-points {
    display: grid;
    gap: 12px
}

.practice-hero-point {
    display: grid;
    grid-template-columns:minmax(128px, .48fr) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(102, 117, 124, .16)
}

.practice-hero-point:first-child {
    border-top: 0;
    padding-top: 0
}

.practice-hero-point-key {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center
}

.practice-hero-point-key > span:last-child {
    color: var(--dream-deep);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase
}

.practice-hero-point-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(60, 153, 198, .09)
}

.practice-hero-point-icon:before {
    content: "";
    width: 22px;
    height: 22px;
    background: var(--dream-deep);
    opacity: .82;
    -webkit-mask: center / contain no-repeat var(--hero-point-icon);
    mask: center / contain no-repeat var(--hero-point-icon)
}

.practice-hero-point p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.55
}

.about-hero {
    padding: 78px 0 66px;
    position: relative;
    background:
        linear-gradient(rgba(255, 255, 255, .48), rgba(255, 255, 255, .72)),
        url("/images/backgounds/hero-pattern_v10.svg") center top / cover no-repeat;
    overflow: hidden
}

.about-hero-grid {
    display: grid;
    grid-template-columns:minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 54px;
    align-items: center
}

.about-hero h1 {
    font-size: clamp(2.35rem, 4.35vw, 3.65rem);
    line-height: 1;
    letter-spacing: 0;
    margin: .24em 0 .3em;
    max-width: 900px
}

.about-hero-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .84);
    box-shadow: var(--shadow)
}

.about-hero-card h2 {
    margin: 0 0 18px;
    font-size: 1.08rem
}

.about-hero-points {
    display: grid;
    gap: 12px
}

.about-hero-point {
    display: grid;
    grid-template-columns:minmax(128px, .48fr) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(102, 117, 124, .16)
}

.about-hero-point:first-child {
    border-top: 0;
    padding-top: 0
}

.about-hero-point-key {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center
}

.about-hero-point-key > span:last-child {
    color: var(--dream-deep);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase
}

.about-hero-point-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(60, 153, 198, .09)
}

.about-hero-point-icon:before {
    content: "";
    width: 22px;
    height: 22px;
    background: var(--dream-deep);
    opacity: .82;
    -webkit-mask: center / contain no-repeat var(--hero-point-icon);
    mask: center / contain no-repeat var(--hero-point-icon)
}

.about-hero-tone-skill .about-hero-point-key > span:last-child {
    color: var(--action)
}

.about-hero-tone-skill .about-hero-point-icon {
    background: rgba(212, 79, 69, .09)
}

.about-hero-tone-skill .about-hero-point-icon:before {
    background: var(--action)
}

.about-hero-tone-habits .about-hero-point-key > span:last-child {
    color: var(--growth-deep)
}

.about-hero-tone-habits .about-hero-point-icon {
    background: rgba(42, 148, 114, .09)
}

.about-hero-tone-habits .about-hero-point-icon:before {
    background: var(--growth-deep)
}

.about-hero-point p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.55
}

.about-hero-accent-practice {
    color: var(--dream-deep)
}

.about-hero-accent-skill {
    color: var(--action)
}

.about-hero-accent-habits {
    color: var(--growth-deep)
}

.author-hero {
    padding: 78px 0 66px;
    position: relative;
    background:
        linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .74)),
        url("/images/backgounds/hero-pattern_v10.svg") center top / cover no-repeat;
    overflow: hidden
}

.author-hero-grid {
    display: grid;
    grid-template-columns:minmax(0, 1.08fr) minmax(280px, .72fr);
    gap: 58px;
    align-items: center
}

.author-hero h1 {
    font-size: clamp(2.35rem, 4.35vw, 3.65rem);
    line-height: 1;
    letter-spacing: 0;
    margin: .24em 0 .3em;
    max-width: 880px
}

.author-hero-accent-practice {
    color: var(--dream-deep)
}

.author-hero-accent-skill {
    color: var(--action)
}

.author-hero-accent-habits {
    color: var(--growth-deep)
}

.author-portrait-wrap {
    justify-self: end;
    width: min(100%, 390px)
}

.author-portrait-card {
    margin: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--shadow)
}

.author-portrait {
    aspect-ratio: 1 / 1.18;
    border-radius: 22px;
    background: #172229;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative
}

.author-portrait:after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: inherit;
    pointer-events: none
}

.author-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block
}

.author-portrait-placeholder {
    display: grid;
    place-items: center;
    gap: 8px;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    border: 1px solid rgba(102, 117, 124, .2);
    background: rgba(255, 255, 255, .68);
    text-align: center
}

.author-portrait-placeholder strong {
    color: var(--ink);
    font-size: 3rem;
    line-height: .9
}

.author-portrait-placeholder span {
    color: var(--action);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase
}

.author-portrait-caption {
    display: grid;
    gap: 3px;
    padding: 16px 6px 4px;
    text-align: center
}

.author-portrait-caption strong {
    color: var(--ink);
    font-size: 1.02rem
}

.author-portrait-caption span {
    color: var(--muted);
    font-size: .9rem
}

.author-origin-grid {
    display: grid;
    grid-template-columns:minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 24px;
    align-items: start
}

.author-origin-copy {
    position: relative;
    overflow: hidden;
    padding: 34px 36px;
    border: 1px solid rgba(102, 117, 124, .14);
    border-radius: 24px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 16px 40px rgba(23, 34, 41, .06)
}

.author-origin-copy:before {
    content: "";
    position: absolute;
    right: 28px;
    top: 24px;
    width: 220px;
    height: 170px;
    opacity: .055;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg width='220' height='170' viewBox='0 0 220 170' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M52 92C34 92 22 79 22 60C22 36 40 18 67 18C94 18 112 36 112 64C112 106 84 135 42 152' stroke='%23172229' stroke-width='14' stroke-linecap='round'/%3E%3Cpath d='M156 92C138 92 126 79 126 60C126 36 144 18 171 18C198 18 216 36 216 64C216 106 188 135 146 152' stroke='%23172229' stroke-width='14' stroke-linecap='round'/%3E%3C/svg%3E");
    pointer-events: none
}

.author-origin-copy p {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0;
    color: #314149;
    font-size: 1.04rem;
    line-height: 1.72
}

.author-origin-copy p + p {
    margin-top: 18px
}

.author-origin-note {
    align-self: start;
    padding: 30px;
    border: 1px solid #c9e5d9;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(236, 247, 242, .96), rgba(255, 255, 255, .82));
    box-shadow: var(--shadow)
}

.author-origin-note .block-label {
    color: var(--growth-deep)
}

.author-origin-note strong {
    display: block;
    color: var(--ink);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.28
}

.author-origin-note p {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.62
}

.author-401-section {
    overflow: hidden
}

.author-401-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns:minmax(150px, .34fr) minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    padding: 34px;
    border: 1px solid rgba(102, 117, 124, .16);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(247, 250, 250, .68));
    box-shadow: 0 10px 30px rgba(23, 34, 41, .055)
}

.author-401-number {
    color: var(--action);
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
    font-size: clamp(6.5rem, 16vw, 13rem);
    font-weight: 900;
    line-height: .78;
    opacity: .105;
    font-variant-numeric: slashed-zero tabular-nums;
    font-feature-settings: "zero", "tnum";
    pointer-events: none;
    user-select: none
}

.author-401-card:before {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 18px;
    width: 132px;
    height: 132px;
    background: var(--growth-deep);
    opacity: .045;
    -webkit-mask: center / contain no-repeat url("../icons/lucide/lucide-svg/route.svg");
    mask: center / contain no-repeat url("../icons/lucide/lucide-svg/route.svg");
    pointer-events: none
}

.author-401-copy {
    position: relative;
    z-index: 1;
    max-width: 780px
}

.author-401-copy h2 {
    margin: 0 0 16px
}

.author-401-copy p {
    margin: 12px 0 0;
    color: #43535b;
    line-height: 1.62
}

.program-hero {
    padding: 78px 0 66px;
    position: relative;
    background:
        linear-gradient(rgba(255, 255, 255, .48), rgba(255, 255, 255, .7)),
        url("/images/backgounds/hero-pattern_v10.svg") center top / cover no-repeat;
    overflow: hidden
}

.program-hero-grid {
    display: grid;
    grid-template-columns:minmax(0, 1.12fr) minmax(320px, .88fr);
    gap: 56px;
    align-items: center
}

.program-hero h1 {
    font-size: clamp(2.35rem, 4.35vw, 3.65rem);
    line-height: 1;
    letter-spacing: 0;
    margin: .24em 0 .3em;
    max-width: 940px
}

.program-hero-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .84);
    box-shadow: var(--shadow)
}

.program-hero-card h2 {
    margin: 0 0 18px;
    font-size: 1.08rem
}

.program-hero-points {
    display: grid;
    gap: 12px
}

.program-hero-point {
    display: grid;
    grid-template-columns:minmax(128px, .48fr) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(102, 117, 124, .16)
}

.program-hero-point:first-child {
    border-top: 0;
    padding-top: 0
}

.program-hero-point-key {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center
}

.program-hero-point-key > span:last-child {
    color: var(--action-deep);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase
}

.program-hero-point-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 79, 69, .09)
}

.program-hero-point-icon:before {
    content: "";
    width: 22px;
    height: 22px;
    background: var(--action);
    opacity: .82;
    -webkit-mask: center / contain no-repeat var(--hero-point-icon);
    mask: center / contain no-repeat var(--hero-point-icon)
}

.program-hero-point p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.55
}

.method-hero {
    padding: 78px 0 66px;
    position: relative;
    background:
        linear-gradient(rgba(255, 255, 255, .5), rgba(255, 255, 255, .72)),
        url("/images/backgounds/hero-pattern_v10.svg") center top / cover no-repeat;
    overflow: hidden
}

.method-hero-grid {
    display: grid;
    grid-template-columns:minmax(0, 1.12fr) minmax(320px, .88fr);
    gap: 56px;
    align-items: center
}

.method-hero h1 {
    font-size: clamp(2.35rem, 4.35vw, 3.65rem);
    line-height: 1;
    letter-spacing: 0;
    margin: .24em 0 .3em;
    max-width: 940px
}

.method-hero-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .84);
    box-shadow: var(--shadow)
}

.method-hero-card h2 {
    margin: 0 0 18px;
    font-size: 1.08rem
}

.method-hero-points {
    display: grid;
    gap: 12px
}

.method-hero-point {
    display: grid;
    grid-template-columns:minmax(128px, .48fr) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(102, 117, 124, .16)
}

.method-hero-point:first-child {
    border-top: 0;
    padding-top: 0
}

.method-hero-point-key {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center
}

.method-hero-point-key > span:last-child {
    color: var(--growth-deep);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase
}

.method-hero-point-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(42, 148, 114, .09)
}

.method-hero-point-icon:before {
    content: "";
    width: 22px;
    height: 22px;
    background: var(--growth-deep);
    opacity: .82;
    -webkit-mask: center / contain no-repeat var(--hero-point-icon);
    mask: center / contain no-repeat var(--hero-point-icon)
}

.method-hero-point p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.55
}

.section {
    padding: 54px 0
}

.section-tight {
    padding: 54px 0
}

.section-alt {
    background: var(--surface)
}

.section-head {
    display: grid;
    grid-template-columns:.7fr 1.3fr;
    gap: 50px;
    margin-bottom: 38px
}

.section-head h2 {
    font-size: clamp(2rem, 3.6vw, 3.35rem);
    line-height: 1.06;
    letter-spacing: -.045em;
    text-align: center;
    margin: 0
}

.section-head p {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 690px
}

.section-head-rtl {
    grid-template-columns:1.3fr .7fr
}

.section-head-rtl h2 {
    grid-column: 2
}

.section-head-rtl p {
    grid-column: 1;
    grid-row: 1
}

.section-head-rtl .section-note {
    grid-column: 1 / -1;
    grid-row: auto
}

.section-head-full {
    display: block;
    max-width: 900px
}

.section-head-full p {
    max-width: 760px
}

.section-head-wide {
    max-width: none
}

.section-head-wide p {
    max-width: 980px
}

.section-head .section-note {
    max-width: 980px;
    margin-top: 18px;
    padding: 16px 18px;
    border-left: 3px solid var(--dream);
    background: rgba(255, 255, 255, .58);
    color: #314149;
    font-size: 1rem
}

.section-prefix {
    margin: -12px 0 22px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 800
}

.method-chain-title {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .12em .22em
}

.method-chain-arrow {
    color: #9aa6ab;
    font-size: .72em;
    font-weight: 650
}

.method-chain-practice {
    color: var(--dream-deep)
}

.method-chain-skill {
    color: var(--action)
}

.method-chain-habits {
    color: var(--growth-deep)
}

.grid {
    display: grid;
    gap: 18px
}

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

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

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

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

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px
}

.card h3 {
    margin: 0 0 8px;
    font-size: 1.08rem
}

.card p {
    margin: 0;
    color: var(--muted)
}

.card.has-card-cta {
    display: flex;
    flex-direction: column
}

.card .card-cta-link {
    display: flex;
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    font-size: .9rem;
    font-weight: 700;
    color: var(--muted)
}

.card .card-cta-link:hover, .card .card-cta-link:focus-visible {
    color: var(--ink)
}

.card .card-cta-link .cta-link-text:after {
    height: 1px
}

.card .num {
    font-size: .76rem;
    font-weight: 850;
    color: var(--dream-deep);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px
}

.problem-section-home-problems .card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(247, 250, 250, .72))
}

.problem-card-head {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 14px
}

.problem-card-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(60, 153, 198, .08)
}

.problem-card-icon:before {
    content: "";
    width: 32px;
    height: 32px;
    background: var(--dream-deep);
    opacity: .8;
    -webkit-mask: center / contain no-repeat var(--problem-card-icon);
    mask: center / contain no-repeat var(--problem-card-icon)
}

.problem-card-title {
    display: block
}

.problem-card-title .num {
    display: block;
    margin: 0 0 6px
}

.problem-card-title h3 {
    margin: 0
}

.problem-section-home-problems .card:nth-child(2) .problem-card-icon {
    background: rgba(212, 79, 69, .08)
}

.problem-section-home-problems .card:nth-child(2) .problem-card-icon:before {
    background: var(--action)
}

.problem-section-home-problems .card:nth-child(3) .problem-card-icon {
    background: rgba(212, 79, 69, .08)
}

.problem-section-home-problems .card:nth-child(3) .problem-card-icon:before {
    background: var(--action)
}

.problem-section-home-problems .card:nth-child(4) .problem-card-icon {
    background: rgba(42, 148, 114, .08)
}

.problem-section-home-problems .card:nth-child(4) .problem-card-icon:before {
    background: var(--growth-deep)
}

.card.feature {
    min-height: 210px
}

.card.skill-card {
    border-top: 4px solid var(--action)
}

.card.habits-card {
    border-top: 4px solid var(--growth)
}

.card.practice-card {
    border-top: 4px solid var(--dream)
}

.environment-section-start-brief .card {
    position: relative;
    overflow: hidden
}

.environment-section-start-brief .card:before {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 14px;
    width: 88px;
    height: 88px;
    background: var(--dream-deep);
    opacity: .055;
    -webkit-mask: center / contain no-repeat url("../icons/lucide/lucide-svg/flame.svg");
    mask: center / contain no-repeat url("../icons/lucide/lucide-svg/flame.svg");
    pointer-events: none
}

.environment-section-start-brief .card > * {
    position: relative;
    z-index: 1
}

.environment-section-start-brief .card.habits-card:before {
    background: var(--growth-deep);
    opacity: .065;
    -webkit-mask-image: url("../icons/lucide/lucide-svg/target.svg");
    mask-image: url("../icons/lucide/lucide-svg/target.svg")
}

.environment-section-start-brief .card.skill-card:before {
    background: var(--action);
    opacity: .06;
    -webkit-mask-image: url("../icons/lucide/lucide-svg/home.svg");
    mask-image: url("../icons/lucide/lucide-svg/home.svg")
}

.callout, .definition, .warning, .note {
    border-radius: var(--radius);
    padding: 24px 26px;
    border: 1px solid
}

.callout {
    background: var(--callout-bg);
    border-color: #c9e5d9
}

.definition {
    background: var(--definition-bg);
    border-color: #cddff5
}

.warning {
    background: var(--warning-bg);
    border-color: #ecd9ae
}

.deprecated-block {
    border-color: #d9564a;
    background: #fff0ee;
    color: #172229
}

.deprecated-block .block-label {
    color: #b33b31
}

.deprecated-block code {
    font-weight: 800
}

.note {
    background: var(--surface);
    border-color: var(--line)
}

.quote {
    width: min(calc(100% - 40px), 900px);
    margin: 44px auto;
    padding: 28px 30px 30px;
    border: 1px solid var(--line);
    border-left: 5px solid var(--dream);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    color: var(--ink)
}

.quote p {
    margin: 0;
    font-size: clamp(1.12rem, 2vw, 1.42rem);
    line-height: 1.45;
    letter-spacing: -.02em
}

.quote p + p {
    margin-top: 14px
}

.block-label {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 850;
    margin-bottom: 8px
}

.callout .block-label {
    color: var(--growth-deep)
}

.definition .block-label {
    color: var(--dream-deep)
}

.warning .block-label {
    color: #825916
}

.callout p, .definition p, .warning p, .note p {
    margin: 0
}

.stack > * + * {
    margin-top: 18px
}

.flow {
    display: flex;
    align-items: stretch;
    gap: 8px;
    overflow: auto;
    padding-bottom: 6px
}

.flow-step {
    min-width: 145px;
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 16px
}

.flow-step b {
    display: block;
    font-size: .94rem
}

.flow-step small {
    color: var(--muted)
}

.flow-arrow {
    display: grid;
    place-items: center;
    color: #839095;
    font-weight: 800
}

.module-flow {
    overflow: visible;
    gap: 10px;
    padding-bottom: 0
}

.module-flow-step {
    position: relative;
    min-width: 0;
    flex: 1 1 0;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 8px 24px rgba(23, 34, 41, .045)
}

.module-flow-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: rgba(212, 79, 69, .08)
}

.module-flow-icon:before {
    content: "";
    width: 24px;
    height: 24px;
    background: var(--action);
    opacity: .82;
    -webkit-mask: center / contain no-repeat var(--module-flow-icon);
    mask: center / contain no-repeat var(--module-flow-icon)
}

.module-flow-step .block-label {
    color: var(--growth-deep);
    margin-bottom: 10px
}

.module-flow-step b {
    font-size: 1rem
}

.module-flow-step small {
    display: block;
    margin-top: 8px;
    line-height: 1.5
}

.module-flow-link {
    color: inherit;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease
}

.module-flow-link:hover, .module-flow-link:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(42, 148, 114, .28);
    box-shadow: 0 12px 28px rgba(23, 34, 41, .075)
}

.module-flow-link:focus-visible {
    outline: 3px solid rgba(42, 148, 114, .22);
    outline-offset: 4px
}

.module-flow-section-program-logic .module-flow,
.module-flow-section-home-pipeline .module-flow {
    position: relative
}

.module-flow-section-program-logic .module-flow:before,
.module-flow-section-home-pipeline .module-flow:before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 79, 69, .22), transparent);
    pointer-events: none
}

.module-flow-section-home-pipeline .module-flow:before {
    background: linear-gradient(90deg, transparent, rgba(60, 153, 198, .22), transparent)
}

.module-flow-section-program-logic .module-flow-step,
.module-flow-section-home-pipeline .module-flow-step {
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(250, 247, 247, .72))
}

.module-flow-section-home-pipeline .module-flow-step {
    background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(247, 250, 250, .72))
}

.module-flow-section-home-pipeline .module-flow-step:after {
    content: attr(data-label);
    position: absolute;
    right: 14px;
    bottom: -.18em;
    z-index: 0;
    color: var(--dream-deep);
    font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
    font-size: clamp(4.8rem, 8vw, 7rem);
    font-weight: 900;
    line-height: .82;
    opacity: .075;
    pointer-events: none
}

.module-flow-section-home-pipeline .module-flow-step > * {
    position: relative;
    z-index: 1
}

.module-flow-section-home-pipeline .module-flow-step .block-label {
    display: none
}

.module-flow-section-home-pipeline .module-flow-step:nth-of-type(5):after {
    color: var(--action)
}

.module-flow-section-home-pipeline .module-flow-step:nth-of-type(7):after,
.module-flow-section-home-pipeline .module-flow-step:nth-of-type(9):after {
    color: var(--growth-deep)
}

.module-flow-section-program-logic .module-flow-step:nth-of-type(1) .module-flow-icon {
    background: rgba(60, 153, 198, .08)
}

.module-flow-section-program-logic .module-flow-step:nth-of-type(1) .module-flow-icon:before {
    background: var(--dream-deep)
}

.module-flow-section-program-logic .module-flow-step:nth-of-type(5) .module-flow-icon,
.module-flow-section-program-logic .module-flow-step:nth-of-type(9) .module-flow-icon {
    background: rgba(42, 148, 114, .08)
}

.module-flow-section-program-logic .module-flow-step:nth-of-type(5) .module-flow-icon:before,
.module-flow-section-program-logic .module-flow-step:nth-of-type(9) .module-flow-icon:before {
    background: var(--growth-deep)
}

.module-flow-section-home-pipeline .module-flow-step:nth-of-type(1) .module-flow-icon,
.module-flow-section-home-pipeline .module-flow-step:nth-of-type(3) .module-flow-icon {
    background: rgba(60, 153, 198, .08)
}

.module-flow-section-home-pipeline .module-flow-step:nth-of-type(1) .module-flow-icon:before,
.module-flow-section-home-pipeline .module-flow-step:nth-of-type(3) .module-flow-icon:before {
    background: var(--dream-deep)
}

.module-flow-section-home-pipeline .module-flow-step:nth-of-type(5) .module-flow-icon {
    background: rgba(212, 79, 69, .08)
}

.module-flow-section-home-pipeline .module-flow-step:nth-of-type(5) .module-flow-icon:before {
    background: var(--action)
}

.module-flow-section-home-pipeline .module-flow-step:nth-of-type(7) .module-flow-icon,
.module-flow-section-home-pipeline .module-flow-step:nth-of-type(9) .module-flow-icon {
    background: rgba(42, 148, 114, .08)
}

.module-flow-section-home-pipeline .module-flow-step:nth-of-type(7) .module-flow-icon:before,
.module-flow-section-home-pipeline .module-flow-step:nth-of-type(9) .module-flow-icon:before {
    background: var(--growth-deep)
}

.module-flow-cta {
    text-align: center
}

.practice-stage {
    scroll-margin-top: 96px
}

.practice-stage-has-step {
    position: relative;
    overflow: hidden
}

.practice-stage-has-step:before {
    content: attr(data-step);
    position: absolute;
    z-index: 0;
    top: 22px;
    left: max(18px, calc((100vw - var(--max)) / 2 - 4px));
    color: var(--dream-deep);
    font-family: "JetBrains Mono", "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
    font-variant-numeric: slashed-zero tabular-nums;
    font-feature-settings: "zero" 1, "tnum" 1;
    font-size: clamp(7rem, 16vw, 14rem);
    font-weight: 900;
    line-height: .78;
    letter-spacing: -.08em;
    opacity: .045;
    pointer-events: none;
    user-select: none
}

.practice-stage-has-step:after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: 16px;
    width: 88px;
    height: 30px;
    transform: translateX(-50%);
    opacity: .18;
    background: var(--dream-deep);
    -webkit-mask: center / contain no-repeat url("../icons/lucide/lucide-svg/chevrons-down.svg");
    mask: center / contain no-repeat url("../icons/lucide/lucide-svg/chevrons-down.svg");
    pointer-events: none
}

.practice-stage-last-step:after {
    display: none
}

.practice-stage-has-step > .container {
    position: relative;
    z-index: 1
}

.practice-stage-layout-rtl:before {
    right: max(18px, calc((100vw - var(--max)) / 2 - 4px));
    left: auto
}

.practice-stage-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 14px
}

.practice-stage-count-4 {
    grid-template-columns:repeat(4, minmax(0, 1fr))
}

.practice-stage-card {
    min-height: 100%;
    padding: 22px;
    border: 1px solid rgba(102, 117, 124, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .78)
}

.practice-stage-card .block-label {
    color: var(--dream-deep);
    margin-bottom: 8px
}

.practice-stage-card h3 {
    margin: 0 0 8px;
    font-size: 1.04rem
}

.practice-stage-card p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.56
}

.practice-stage-facts {
    display: grid;
    gap: 10px;
    max-width: 980px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none
}

.practice-stage-facts li {
    position: relative;
    padding: 13px 16px 13px 42px;
    border: 1px solid rgba(102, 117, 124, .13);
    border-radius: 14px;
    background: rgba(255, 255, 255, .62);
    color: #43535b;
    line-height: 1.5
}

.practice-stage-facts li:before {
    content: "";
    position: absolute;
    left: 17px;
    top: 20px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--growth)
}

.practice-stage-cta {
    margin: 26px 0 0
}

.practice-stage-practice-brief .practice-stage-cta {
    text-align: center
}

.practice-stage-brief .practice-stage-card .block-label,
.practice-stage-preparation .practice-stage-card .block-label {
    color: var(--action)
}

.practice-stage-execution .practice-stage-card .block-label,
.practice-stage-supervision .practice-stage-card .block-label {
    color: var(--growth-deep)
}

.practice-stage-numbered-bg .section-head {
    align-items: center
}

.practice-stage-numbered-bg .section-head p {
    position: relative;
    margin-top: 0;
    padding-left: 34px
}

.practice-stage-numbered-bg .section-head p:before {
    content: "“";
    position: absolute;
    left: 0;
    top: -.1em;
    color: var(--action);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    line-height: 1;
    opacity: .62;
    transform: translateY(-.48em) rotate(180deg);
    transform-origin: 50% 50%
}

.practice-stage-numbered-bg .practice-stage-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding-top: 30px
}

.practice-stage-numbered-bg .practice-stage-card:before {
    position: absolute;
    right: 18px;
    bottom: -18px;
    z-index: 0;
    font-family: "JetBrains Mono", "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: clamp(7.5rem, 12vw, 11rem);
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.08em;
    opacity: .085;
    pointer-events: none
}

.practice-stage-numbered-bg .practice-stage-card:nth-child(1):before {
    content: "1";
    color: var(--dream-deep)
}

.practice-stage-numbered-bg .practice-stage-card:nth-child(2):before {
    content: "2";
    color: var(--action)
}

.practice-stage-numbered-bg .practice-stage-card:nth-child(3):before {
    content: "3";
    color: var(--growth-deep)
}

.practice-stage-numbered-bg .practice-stage-card .block-label,
.practice-stage-numbered-bg .practice-stage-card h3,
.practice-stage-numbered-bg .practice-stage-card p {
    position: relative;
    z-index: 1
}

.practice-stage-numbered-bg .practice-stage-card:nth-child(1) .block-label {
    color: var(--dream-deep)
}

.practice-stage-numbered-bg .practice-stage-card:nth-child(2) .block-label {
    color: var(--action)
}

.practice-stage-numbered-bg .practice-stage-card:nth-child(3) .block-label {
    color: var(--growth-deep)
}

.practice-stage-not-roles .section-head {
    align-items: center
}

.practice-stage-not-roles .section-head > p:not(.section-note) {
    position: relative;
    margin-top: 0;
    padding-left: 34px
}

.practice-stage-not-roles .section-head > p:not(.section-note):before {
    content: "“";
    position: absolute;
    left: 0;
    top: -.1em;
    color: var(--action);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    line-height: 1;
    opacity: .62;
    transform: translateY(-.48em) rotate(180deg);
    transform-origin: 50% 50%
}

.practice-stage-not-roles .section-note {
    position: relative;
    margin-top: 18px;
    padding: 15px 18px;
    border-left: 3px solid rgba(23, 34, 41, .18);
    border-radius: 0 14px 14px 0;
    background: rgba(255, 255, 255, .56);
    color: #43535b
}

.practice-stage-not-roles .practice-stage-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 24px 24px 26px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(250, 252, 252, .74)),
        rgba(255, 255, 255, .78)
}

.practice-stage-not-roles .practice-stage-card:before {
    content: "НЕ";
    position: absolute;
    right: 10px;
    bottom: -.23em;
    z-index: 0;
    color: #172229;
    font-family: "JetBrains Mono", "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: clamp(5.6rem, 9.2vw, 8.8rem);
    font-weight: 900;
    line-height: .82;
    letter-spacing: -.12em;
    opacity: .055;
    pointer-events: none
}

.practice-stage-not-roles .practice-stage-card:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 3px;
    background: rgba(23, 34, 41, .18)
}

.practice-stage-not-roles .practice-stage-card:nth-child(1):after {
    background: rgba(60, 153, 198, .5)
}

.practice-stage-not-roles .practice-stage-card:nth-child(2):after {
    background: rgba(212, 79, 69, .5)
}

.practice-stage-not-roles .practice-stage-card:nth-child(3):after {
    background: rgba(42, 148, 114, .5)
}

.practice-stage-not-roles .practice-stage-card .block-label,
.practice-stage-not-roles .practice-stage-card h3,
.practice-stage-not-roles .practice-stage-card p {
    position: relative;
    z-index: 2
}

.practice-stage-not-roles .practice-stage-card .block-label {
    color: #66757c
}

.practice-stage-not-roles .practice-stage-card:nth-child(1) .block-label {
    color: var(--dream-deep)
}

.practice-stage-not-roles .practice-stage-card:nth-child(2) .block-label {
    color: var(--action)
}

.practice-stage-not-roles .practice-stage-card:nth-child(3) .block-label {
    color: var(--growth-deep)
}

.practice-stage-not-roles .practice-stage-facts {
    max-width: 980px;
    margin: 24px auto 0
}

.practice-stage-not-roles .practice-stage-facts li {
    padding: 18px 22px;
    border-left: 3px solid rgba(23, 34, 41, .18);
    border-radius: 0 16px 16px 0;
    background: rgba(255, 255, 255, .68)
}

.practice-stage-not-roles .practice-stage-facts li:before {
    display: none
}

.practice-stage-principles-numbered .practice-stage-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 28px 24px 26px;
    background: rgba(255, 255, 255, .82)
}

.practice-stage-principles-numbered .practice-stage-card:before {
    position: absolute;
    right: 14px;
    bottom: -.22em;
    z-index: 0;
    font-family: "JetBrains Mono", "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: clamp(7rem, 10vw, 10.5rem);
    font-weight: 900;
    line-height: .82;
    letter-spacing: -.08em;
    opacity: .08;
    pointer-events: none
}

.practice-stage-principles-numbered .practice-stage-card:nth-child(1):before {
    content: "1";
    color: var(--dream-deep)
}

.practice-stage-principles-numbered .practice-stage-card:nth-child(2):before {
    content: "2";
    color: var(--action)
}

.practice-stage-principles-numbered .practice-stage-card:nth-child(3):before {
    content: "3";
    color: var(--growth-deep)
}

.practice-stage-principles-numbered .practice-stage-card:nth-child(4):before {
    content: "4";
    color: #172229
}

.practice-stage-principles-numbered .practice-stage-card .block-label,
.practice-stage-principles-numbered .practice-stage-card h3,
.practice-stage-principles-numbered .practice-stage-card p {
    position: relative;
    z-index: 1
}

.practice-stage-principles-numbered .practice-stage-card:nth-child(1) .block-label {
    color: var(--dream-deep)
}

.practice-stage-principles-numbered .practice-stage-card:nth-child(2) .block-label {
    color: var(--action)
}

.practice-stage-principles-numbered .practice-stage-card:nth-child(3) .block-label {
    color: var(--growth-deep)
}

.practice-stage-principles-numbered .practice-stage-card:nth-child(4) .block-label {
    color: #516068
}

.practice-stage-problem-states .practice-stage-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(102, 117, 124, .14);
    background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(247, 250, 250, .72))
}

.practice-stage-transfer-steps .practice-stage-card {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    background: rgba(255, 255, 255, .82)
}

.practice-stage-transfer-steps .practice-stage-card:before {
    position: absolute;
    right: 14px;
    bottom: -.22em;
    z-index: 0;
    font-family: "JetBrains Mono", "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: clamp(7rem, 10vw, 10.5rem);
    font-weight: 900;
    line-height: .82;
    letter-spacing: -.08em;
    opacity: .08;
    pointer-events: none
}

.practice-stage-transfer-steps .practice-stage-card:nth-child(1):before {
    content: "1";
    color: var(--dream-deep)
}

.practice-stage-transfer-steps .practice-stage-card:nth-child(2):before {
    content: "2";
    color: var(--action)
}

.practice-stage-transfer-steps .practice-stage-card:nth-child(3):before {
    content: "3";
    color: var(--growth-deep)
}

.practice-stage-transfer-steps .practice-stage-card .block-label,
.practice-stage-transfer-steps .practice-stage-card h3,
.practice-stage-transfer-steps .practice-stage-card p {
    position: relative;
    z-index: 1
}

.practice-stage-transfer-steps .practice-stage-card:nth-child(1) .block-label {
    color: var(--dream-deep)
}

.practice-stage-transfer-steps .practice-stage-card:nth-child(2) .block-label {
    color: var(--action)
}

.practice-stage-transfer-steps .practice-stage-card:nth-child(3) .block-label {
    color: var(--growth-deep)
}

.practice-stage-transfer-steps .practice-stage-facts {
    max-width: 980px;
    margin: 24px auto 0
}

.practice-stage-transfer-steps .practice-stage-facts li {
    padding: 18px 22px;
    border-left: 3px solid rgba(23, 34, 41, .18);
    border-radius: 0 16px 16px 0;
    background: rgba(255, 255, 255, .68)
}

.practice-stage-transfer-steps .practice-stage-facts li:before {
    display: none
}

.practice-stage-readiness-check .practice-stage-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(102, 117, 124, .14);
    background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(247, 250, 250, .72))
}

.practice-stage-practice-format .practice-stage-card,
.practice-stage-practice-brief .practice-stage-card,
.practice-stage-practice-onboarding .practice-stage-card,
.practice-stage-practice-execution .practice-stage-card,
.practice-stage-practice-report .practice-stage-card,
.practice-stage-practice-supervision .practice-stage-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(102, 117, 124, .14);
    background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(247, 250, 250, .72))
}

.practice-stage-practice-execution .practice-stage-card {
    border-color: rgba(60, 153, 198, .2);
    background: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(240, 248, 250, .76));
    box-shadow: 0 12px 32px rgba(23, 34, 41, .045)
}

.practice-stage-practice-preparation .practice-stage-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 28px 24px 26px;
    background: rgba(255, 255, 255, .82)
}

.practice-stage-practice-preparation .practice-stage-card:before {
    position: absolute;
    right: 14px;
    bottom: -.22em;
    z-index: 0;
    font-family: "JetBrains Mono", "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: clamp(7rem, 10vw, 10.5rem);
    font-weight: 900;
    line-height: .82;
    letter-spacing: -.08em;
    opacity: .08;
    pointer-events: none
}

.practice-stage-practice-preparation .practice-stage-card:nth-child(1):before {
    content: "1";
    color: var(--dream-deep)
}

.practice-stage-practice-preparation .practice-stage-card:nth-child(2):before {
    content: "2";
    color: var(--action)
}

.practice-stage-practice-preparation .practice-stage-card:nth-child(3):before {
    content: "3";
    color: var(--growth-deep)
}

.practice-stage-practice-preparation .practice-stage-card:nth-child(4):before {
    content: "4";
    color: #172229
}

.practice-stage-practice-preparation .practice-stage-card .block-label,
.practice-stage-practice-preparation .practice-stage-card h3,
.practice-stage-practice-preparation .practice-stage-card p {
    position: relative;
    z-index: 1
}

.practice-stage-practice-preparation .practice-stage-card:nth-child(1) .block-label {
    color: var(--dream-deep)
}

.practice-stage-practice-preparation .practice-stage-card:nth-child(2) .block-label {
    color: var(--action)
}

.practice-stage-practice-preparation .practice-stage-card:nth-child(3) .block-label {
    color: var(--growth-deep)
}

.practice-stage-practice-preparation .practice-stage-card:nth-child(4) .block-label {
    color: #516068
}

.practice-stage-problem-states .practice-stage-card-head,
.practice-stage-readiness-check .practice-stage-card-head,
.practice-stage-practice-format .practice-stage-card-head,
.practice-stage-practice-brief .practice-stage-card-head,
.practice-stage-practice-onboarding .practice-stage-card-head,
.practice-stage-practice-execution .practice-stage-card-head,
.practice-stage-practice-report .practice-stage-card-head,
.practice-stage-practice-supervision .practice-stage-card-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 14px
}

.practice-stage-problem-states .practice-stage-card-icon,
.practice-stage-readiness-check .practice-stage-card-icon,
.practice-stage-practice-format .practice-stage-card-icon,
.practice-stage-practice-brief .practice-stage-card-icon,
.practice-stage-practice-onboarding .practice-stage-card-icon,
.practice-stage-practice-execution .practice-stage-card-icon,
.practice-stage-practice-report .practice-stage-card-icon,
.practice-stage-practice-supervision .practice-stage-card-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(60, 153, 198, .08)
}

.practice-stage-problem-states .practice-stage-card-icon:before,
.practice-stage-readiness-check .practice-stage-card-icon:before,
.practice-stage-practice-format .practice-stage-card-icon:before,
.practice-stage-practice-brief .practice-stage-card-icon:before,
.practice-stage-practice-onboarding .practice-stage-card-icon:before,
.practice-stage-practice-execution .practice-stage-card-icon:before,
.practice-stage-practice-report .practice-stage-card-icon:before,
.practice-stage-practice-supervision .practice-stage-card-icon:before {
    content: "";
    width: 32px;
    height: 32px;
    background: var(--dream-deep);
    opacity: .78;
    -webkit-mask: center / contain no-repeat url("../icons/lucide/lucide-svg/play-circle.svg");
    mask: center / contain no-repeat url("../icons/lucide/lucide-svg/play-circle.svg")
}

.practice-stage-problem-states .practice-stage-card-title,
.practice-stage-readiness-check .practice-stage-card-title,
.practice-stage-practice-format .practice-stage-card-title,
.practice-stage-practice-brief .practice-stage-card-title,
.practice-stage-practice-onboarding .practice-stage-card-title,
.practice-stage-practice-execution .practice-stage-card-title,
.practice-stage-practice-report .practice-stage-card-title,
.practice-stage-practice-supervision .practice-stage-card-title {
    display: block
}

.practice-stage-problem-states .practice-stage-card-title .block-label,
.practice-stage-readiness-check .practice-stage-card-title .block-label,
.practice-stage-practice-format .practice-stage-card-title .block-label,
.practice-stage-practice-brief .practice-stage-card-title .block-label,
.practice-stage-practice-onboarding .practice-stage-card-title .block-label,
.practice-stage-practice-execution .practice-stage-card-title .block-label,
.practice-stage-practice-report .practice-stage-card-title .block-label,
.practice-stage-practice-supervision .practice-stage-card-title .block-label {
    display: block;
    margin: 0 0 6px
}

.practice-stage-problem-states .practice-stage-card-title h3,
.practice-stage-readiness-check .practice-stage-card-title h3,
.practice-stage-practice-format .practice-stage-card-title h3,
.practice-stage-practice-brief .practice-stage-card-title h3,
.practice-stage-practice-onboarding .practice-stage-card-title h3,
.practice-stage-practice-execution .practice-stage-card-title h3,
.practice-stage-practice-report .practice-stage-card-title h3,
.practice-stage-practice-supervision .practice-stage-card-title h3 {
    margin: 0
}

.practice-stage-problem-states .practice-stage-card:nth-child(2) .practice-stage-card-icon {
    background: rgba(212, 79, 69, .08)
}

.practice-stage-problem-states .practice-stage-card:nth-child(2) .practice-stage-card-icon:before {
    background: var(--action);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/repeat.svg");
    mask-image: url("../icons/lucide/lucide-svg/repeat.svg")
}

.practice-stage-problem-states .practice-stage-card:nth-child(3) .practice-stage-card-icon {
    background: rgba(42, 148, 114, .08)
}

.practice-stage-problem-states .practice-stage-card:nth-child(3) .practice-stage-card-icon:before {
    background: var(--growth-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/route-off.svg");
    mask-image: url("../icons/lucide/lucide-svg/route-off.svg")
}

.practice-stage-problem-states .practice-stage-card .block-label {
    color: #66757c
}

.practice-stage-readiness-check .practice-stage-card .block-label {
    color: #66757c
}

.practice-stage-readiness-check .practice-stage-card:nth-child(1) .practice-stage-card-icon:before {
    background: var(--dream-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/target.svg");
    mask-image: url("../icons/lucide/lucide-svg/target.svg")
}

.practice-stage-readiness-check .practice-stage-card:nth-child(2) .practice-stage-card-icon {
    background: rgba(42, 148, 114, .08)
}

.practice-stage-readiness-check .practice-stage-card:nth-child(2) .practice-stage-card-icon:before {
    background: var(--growth-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/shield-check.svg");
    mask-image: url("../icons/lucide/lucide-svg/shield-check.svg")
}

.practice-stage-readiness-check .practice-stage-card:nth-child(3) .practice-stage-card-icon {
    background: rgba(212, 79, 69, .08)
}

.practice-stage-readiness-check .practice-stage-card:nth-child(3) .practice-stage-card-icon:before {
    background: var(--action);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/user-cog.svg");
    mask-image: url("../icons/lucide/lucide-svg/user-cog.svg")
}

.practice-stage-readiness-check .practice-stage-card:nth-child(4) .practice-stage-card-icon {
    background: rgba(42, 148, 114, .08)
}

.practice-stage-readiness-check .practice-stage-card:nth-child(4) .practice-stage-card-icon:before {
    background: var(--growth-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/users.svg");
    mask-image: url("../icons/lucide/lucide-svg/users.svg")
}

.practice-stage-practice-format .practice-stage-card .block-label,
.practice-stage-practice-brief .practice-stage-card .block-label,
.practice-stage-practice-onboarding .practice-stage-card .block-label,
.practice-stage-practice-execution .practice-stage-card .block-label,
.practice-stage-practice-report .practice-stage-card .block-label,
.practice-stage-practice-supervision .practice-stage-card .block-label {
    color: #66757c
}

.practice-stage-practice-format .practice-stage-card:nth-child(1) .practice-stage-card-icon:before {
    -webkit-mask-image: url("../icons/lucide/lucide-svg/user-check.svg");
    mask-image: url("../icons/lucide/lucide-svg/user-check.svg")
}

.practice-stage-practice-format .practice-stage-card:nth-child(2) .practice-stage-card-icon:before {
    background: var(--action);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/settings.svg");
    mask-image: url("../icons/lucide/lucide-svg/settings.svg")
}

.practice-stage-practice-format .practice-stage-card:nth-child(3) .practice-stage-card-icon:before {
    background: var(--growth-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/badge-check.svg");
    mask-image: url("../icons/lucide/lucide-svg/badge-check.svg")
}

.practice-stage-practice-brief .practice-stage-card:nth-child(1) .practice-stage-card-icon:before {
    -webkit-mask-image: url("../icons/lucide/lucide-svg/clipboard-list.svg");
    mask-image: url("../icons/lucide/lucide-svg/clipboard-list.svg")
}

.practice-stage-practice-brief .practice-stage-card:nth-child(2) .practice-stage-card-icon:before {
    background: var(--action);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/target.svg");
    mask-image: url("../icons/lucide/lucide-svg/target.svg")
}

.practice-stage-practice-brief .practice-stage-card:nth-child(3) .practice-stage-card-icon:before {
    background: var(--growth-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/check-square.svg");
    mask-image: url("../icons/lucide/lucide-svg/check-square.svg")
}

.practice-stage-practice-onboarding .practice-stage-card:nth-child(1) .practice-stage-card-icon:before {
    -webkit-mask-image: url("../icons/lucide/lucide-svg/clipboard-check.svg");
    mask-image: url("../icons/lucide/lucide-svg/clipboard-check.svg")
}

.practice-stage-practice-onboarding .practice-stage-card:nth-child(2) .practice-stage-card-icon:before {
    background: var(--action);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/bot.svg");
    mask-image: url("../icons/lucide/lucide-svg/bot.svg")
}

.practice-stage-practice-onboarding .practice-stage-card:nth-child(3) .practice-stage-card-icon:before {
    background: var(--growth-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/play-circle.svg");
    mask-image: url("../icons/lucide/lucide-svg/play-circle.svg")
}

.practice-stage-practice-execution .practice-stage-card:nth-child(1) .practice-stage-card-icon:before {
    -webkit-mask-image: url("../icons/lucide/lucide-svg/repeat.svg");
    mask-image: url("../icons/lucide/lucide-svg/repeat.svg")
}

.practice-stage-practice-execution .practice-stage-card:nth-child(2) .practice-stage-card-icon:before {
    background: var(--action);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/check-square.svg");
    mask-image: url("../icons/lucide/lucide-svg/check-square.svg")
}

.practice-stage-practice-execution .practice-stage-card:nth-child(3) .practice-stage-card-icon:before {
    background: var(--growth-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/calendar-clock.svg");
    mask-image: url("../icons/lucide/lucide-svg/calendar-clock.svg")
}

.practice-stage-practice-execution .practice-stage-card:nth-child(4) .practice-stage-card-icon:before {
    background: #516068;
    -webkit-mask-image: url("../icons/lucide/lucide-svg/waypoints.svg");
    mask-image: url("../icons/lucide/lucide-svg/waypoints.svg")
}

.practice-stage-practice-report .practice-stage-card:nth-child(1) .practice-stage-card-icon:before {
    -webkit-mask-image: url("../icons/lucide/lucide-svg/chart-line.svg");
    mask-image: url("../icons/lucide/lucide-svg/chart-line.svg")
}

.practice-stage-practice-report .practice-stage-card:nth-child(2) .practice-stage-card-icon:before {
    background: var(--action);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/file-check.svg");
    mask-image: url("../icons/lucide/lucide-svg/file-check.svg")
}

.practice-stage-practice-report .practice-stage-card:nth-child(3) .practice-stage-card-icon:before {
    background: var(--growth-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/file-text.svg");
    mask-image: url("../icons/lucide/lucide-svg/file-text.svg")
}

.practice-stage-practice-supervision .practice-stage-card:nth-child(1) .practice-stage-card-icon:before {
    -webkit-mask-image: url("../icons/lucide/lucide-svg/clipboard-check.svg");
    mask-image: url("../icons/lucide/lucide-svg/clipboard-check.svg")
}

.practice-stage-practice-supervision .practice-stage-card:nth-child(2) .practice-stage-card-icon:before {
    background: var(--action);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/file-pen.svg");
    mask-image: url("../icons/lucide/lucide-svg/file-pen.svg")
}

.practice-stage-practice-supervision .practice-stage-card:nth-child(3) .practice-stage-card-icon:before {
    background: var(--growth-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/waypoints.svg");
    mask-image: url("../icons/lucide/lucide-svg/waypoints.svg")
}

.practice-stage-practice-supervision .practice-stage-card:nth-child(4) .practice-stage-card-icon:before {
    background: #516068;
    -webkit-mask-image: url("../icons/lucide/lucide-svg/badge-check.svg");
    mask-image: url("../icons/lucide/lucide-svg/badge-check.svg")
}

.practice-stage-practice-format .practice-stage-facts,
.practice-stage-practice-onboarding .practice-stage-facts,
.practice-stage-practice-preparation .practice-stage-facts,
.practice-stage-practice-execution .practice-stage-facts,
.practice-stage-practice-report .practice-stage-facts,
.practice-stage-practice-supervision .practice-stage-facts {
    max-width: 980px;
    margin: 24px auto 0
}

.practice-stage-practice-format .practice-stage-facts li,
.practice-stage-practice-onboarding .practice-stage-facts li,
.practice-stage-practice-preparation .practice-stage-facts li,
.practice-stage-practice-execution .practice-stage-facts li,
.practice-stage-practice-report .practice-stage-facts li,
.practice-stage-practice-supervision .practice-stage-facts li {
    padding: 18px 22px;
    border-left: 3px solid rgba(23, 34, 41, .18);
    border-radius: 0 16px 16px 0;
    background: rgba(255, 255, 255, .68)
}

.practice-stage-practice-format .practice-stage-facts li:before,
.practice-stage-practice-onboarding .practice-stage-facts li:before,
.practice-stage-practice-preparation .practice-stage-facts li:before,
.practice-stage-practice-execution .practice-stage-facts li:before,
.practice-stage-practice-report .practice-stage-facts li:before,
.practice-stage-practice-supervision .practice-stage-facts li:before {
    display: none
}

.practice-stage-contact-modal .practice-stage-card {
    width: 100%;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease
}

.practice-stage-contact-modal .practice-stage-card:hover,
.practice-stage-contact-modal .practice-stage-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(23, 34, 41, .22);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 34px rgba(23, 34, 41, .085)
}

.practice-stage-contact-modal .practice-stage-card:focus-visible {
    outline: 3px solid rgba(42, 148, 114, .2);
    outline-offset: 4px
}

.program-bridge-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 14px
}

.program-bridge-card {
    padding: 24px;
    border: 1px solid rgba(102, 117, 124, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .78)
}

.program-bridge-card .block-label {
    color: var(--action);
    margin-bottom: 8px
}

.program-bridge-card h3 {
    margin: 0 0 8px;
    font-size: 1.06rem
}

.program-bridge-card p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.56
}

.program-bridge-cta {
    text-align: center
}

.program-bridge-callout {
    margin-top: 24px
}

.program-bridge-science-engine .program-bridge-grid {
    position: relative
}

.program-bridge-science-engine .program-bridge-grid:before,
.program-bridge-system-base .program-bridge-grid:before,
.program-bridge-method-pillars .program-bridge-grid:before {
    content: "";
    position: absolute;
    left: 16%;
    right: 16%;
    top: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 117, 124, .26), transparent);
    pointer-events: none
}

.program-bridge-science-engine .program-bridge-card,
.program-bridge-system-base .program-bridge-card,
.program-bridge-method-pillars .program-bridge-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(247, 250, 250, .74))
}

.program-bridge-science-engine .program-bridge-card-head,
.program-bridge-system-base .program-bridge-card-head,
.program-bridge-method-pillars .program-bridge-card-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 14px
}

.program-bridge-science-engine .program-bridge-card-icon,
.program-bridge-system-base .program-bridge-card-icon,
.program-bridge-method-pillars .program-bridge-card-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(102, 117, 124, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .52)
}

.program-bridge-science-engine .program-bridge-card-icon:before,
.program-bridge-system-base .program-bridge-card-icon:before,
.program-bridge-method-pillars .program-bridge-card-icon:before {
    content: "";
    width: 32px;
    height: 32px;
    background: var(--action);
    opacity: .78;
    -webkit-mask: center / contain no-repeat url("../icons/lucide/lucide-svg/cog.svg");
    mask: center / contain no-repeat url("../icons/lucide/lucide-svg/cog.svg")
}

.program-bridge-science-engine .program-bridge-card-title,
.program-bridge-system-base .program-bridge-card-title,
.program-bridge-method-pillars .program-bridge-card-title {
    display: block
}

.program-bridge-science-engine .program-bridge-card-title .block-label,
.program-bridge-system-base .program-bridge-card-title .block-label,
.program-bridge-method-pillars .program-bridge-card-title .block-label {
    display: block;
    margin: 0 0 6px
}

.program-bridge-science-engine .program-bridge-card-title h3,
.program-bridge-system-base .program-bridge-card-title h3,
.program-bridge-method-pillars .program-bridge-card-title h3 {
    margin: 0
}

.program-bridge-science-engine .program-bridge-card:nth-child(2) .program-bridge-card-icon:before {
    background: var(--dream-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/user-cog.svg");
    mask-image: url("../icons/lucide/lucide-svg/user-cog.svg")
}

.program-bridge-science-engine .program-bridge-card:nth-child(3) .program-bridge-card-icon:before {
    background: var(--growth-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/check-square.svg");
    mask-image: url("../icons/lucide/lucide-svg/check-square.svg")
}

.program-bridge-science-engine .program-bridge-card .block-label,
.program-bridge-science-engine .program-bridge-card h3,
.program-bridge-science-engine .program-bridge-card p,
.program-bridge-system-base .program-bridge-card .block-label,
.program-bridge-system-base .program-bridge-card h3,
.program-bridge-system-base .program-bridge-card p,
.program-bridge-method-pillars .program-bridge-card .block-label,
.program-bridge-method-pillars .program-bridge-card h3,
.program-bridge-method-pillars .program-bridge-card p {
    position: relative;
    z-index: 1
}

.program-bridge-science-engine .program-bridge-card .block-label,
.program-bridge-system-base .program-bridge-card .block-label,
.program-bridge-method-pillars .program-bridge-card .block-label {
    color: #66757c
}

.program-bridge-system-base .program-bridge-card:nth-child(2) .program-bridge-card-icon:before {
    background: var(--dream-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/route.svg");
    mask-image: url("../icons/lucide/lucide-svg/route.svg")
}

.program-bridge-system-base .program-bridge-card:nth-child(3) .program-bridge-card-icon:before {
    background: var(--growth-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/shield-check.svg");
    mask-image: url("../icons/lucide/lucide-svg/shield-check.svg")
}

.program-bridge-method-pillars .program-bridge-card:nth-child(1) .program-bridge-card-icon:before {
    background: var(--dream-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/target.svg");
    mask-image: url("../icons/lucide/lucide-svg/target.svg")
}

.program-bridge-method-pillars .program-bridge-card:nth-child(2) .program-bridge-card-icon:before {
    background: var(--action);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/settings.svg");
    mask-image: url("../icons/lucide/lucide-svg/settings.svg")
}

.program-bridge-method-pillars .program-bridge-card:nth-child(3) .program-bridge-card-icon:before {
    background: var(--growth-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/repeat.svg");
    mask-image: url("../icons/lucide/lucide-svg/repeat.svg")
}

.program-bridge-science-engine .program-bridge-callout,
.program-bridge-system-base .program-bridge-callout,
.program-bridge-method-pillars .program-bridge-callout {
    position: relative;
    overflow: hidden
}

.program-bridge-science-engine .program-bridge-callout:before,
.program-bridge-system-base .program-bridge-callout:before,
.program-bridge-method-pillars .program-bridge-callout:before {
    content: "";
    position: absolute;
    right: 20px;
    bottom: -18px;
    width: 126px;
    height: 126px;
    background: #172229;
    opacity: .045;
    -webkit-mask: center / contain no-repeat url("../icons/lucide/lucide-svg/cpu.svg");
    mask: center / contain no-repeat url("../icons/lucide/lucide-svg/cpu.svg");
    pointer-events: none
}

.program-bridge-system-base .program-bridge-callout:before {
    -webkit-mask-image: url("../icons/lucide/lucide-svg/message-circle-question.svg");
    mask-image: url("../icons/lucide/lucide-svg/message-circle-question.svg")
}

.program-bridge-method-pillars .program-bridge-callout:before {
    -webkit-mask-image: url("../icons/lucide/lucide-svg/cog.svg");
    mask-image: url("../icons/lucide/lucide-svg/cog.svg")
}

.program-bridge-science-engine .program-bridge-callout .block-label,
.program-bridge-science-engine .program-bridge-callout p,
.program-bridge-system-base .program-bridge-callout .block-label,
.program-bridge-system-base .program-bridge-callout p,
.program-bridge-method-pillars .program-bridge-callout .block-label,
.program-bridge-method-pillars .program-bridge-callout p {
    position: relative;
    z-index: 1
}

.warning-list-section .warning {
    max-width: 980px;
    margin: 0 auto
}

.warning-list {
    margin-top: 12px
}

.warning-list-section .warning p {
    margin-top: 18px;
    color: #4c3d1d;
    line-height: 1.55
}

.warning-list-note {
    max-width: 900px;
    margin: 20px auto 0;
    color: #43535b;
    line-height: 1.62
}

.warning-list-section-strict-limits .warning {
    position: relative;
    overflow: hidden;
    border-color: rgba(102, 117, 124, .18);
    background: rgba(255, 255, 255, .72)
}

.warning-list-section-strict-limits .warning:before {
    content: "";
    position: absolute;
    right: 22px;
    bottom: -18px;
    width: 150px;
    height: 150px;
    background: #172229;
    opacity: .045;
    -webkit-mask: center / contain no-repeat url("../icons/lucide/lucide-svg/shield-close.svg");
    mask: center / contain no-repeat url("../icons/lucide/lucide-svg/shield-close.svg");
    pointer-events: none
}

.warning-list-section-strict-limits .warning .block-label,
.warning-list-section-strict-limits .warning ul,
.warning-list-section-strict-limits .warning p {
    position: relative;
    z-index: 1
}

.warning-list-section-strict-limits .warning p {
    max-width: 760px;
    color: #43535b
}

.warning-list-section-partnership-filter .warning {
    position: relative;
    overflow: hidden;
    border-color: rgba(42, 148, 114, .2);
    background: rgba(255, 255, 255, .74)
}

.warning-list-section-partnership-filter .warning:before {
    content: "";
    position: absolute;
    right: 22px;
    bottom: -18px;
    width: 140px;
    height: 140px;
    background: var(--growth-deep);
    opacity: .055;
    -webkit-mask: center / contain no-repeat url("../icons/lucide/lucide-svg/mail-badge.svg");
    mask: center / contain no-repeat url("../icons/lucide/lucide-svg/mail-badge.svg");
    pointer-events: none
}

.warning-list-section-partnership-filter .warning .block-label,
.warning-list-section-partnership-filter .warning ul,
.warning-list-section-partnership-filter .warning p {
    position: relative;
    z-index: 1
}

.warning-list-section-partnership-filter .checklist.no li:before {
    content: "✓";
    color: var(--growth)
}

.warning-list-section-partnership-filter .warning p {
    max-width: 780px;
    color: #43535b
}

.method-stage {
    position: relative;
    scroll-margin-top: 96px;
    overflow: hidden
}

.method-stage:before {
    content: attr(data-index);
    position: absolute;
    z-index: 0;
    left: max(18px, calc((100vw - var(--max)) / 2 - 6px));
    top: 28px;
    color: var(--dream-deep);
    font-size: clamp(7.5rem, 18vw, 16rem);
    font-family: "JetBrains Mono", "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
    font-variant-numeric: slashed-zero tabular-nums;
    font-feature-settings: "zero" 1, "tnum" 1;
    font-weight: 900;
    line-height: .78;
    letter-spacing: -.06em;
    opacity: .055;
    pointer-events: none;
    user-select: none
}

.method-stage > .container {
    position: relative;
    z-index: 1
}

.method-stage-layout-rtl:before {
    right: max(18px, calc((100vw - var(--max)) / 2 - 6px));
    left: auto
}

.method-stage-layout-full:before {
    left: 50%;
    transform: translateX(-50%)
}

.method-stage-skill:before,
.method-stage-willpower:before {
    color: var(--action)
}

.method-stage-habits:before,
.method-stage-motivation:before,
.method-stage-integrity:before {
    color: var(--growth-deep)
}

.section-head-rtl .method-stage-title {
    grid-column: 2
}

.section-head-full .method-stage-title {
    max-width: 760px
}

.method-stage-title h2 {
    margin: 0
}

.method-stage-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 14px
}

.method-stage-count-4 {
    grid-template-columns:repeat(4, minmax(0, 1fr))
}

.method-stage-card {
    min-height: 100%;
    padding: 22px;
    border: 1px solid rgba(102, 117, 124, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .78)
}

.method-stage-card .block-label {
    color: var(--dream-deep);
    margin-bottom: 8px
}

.method-stage-card h3 {
    margin: 0 0 8px;
    font-size: 1.04rem
}

.method-stage-card p {
    margin: 0;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.56
}

.method-stage-willpower-actions .method-stage-card,
.method-stage-habit-building .method-stage-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(102, 117, 124, .14);
    background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(247, 250, 250, .72))
}

.method-stage-card-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 14px
}

.method-stage-card-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(42, 148, 114, .08)
}

.method-stage-card-icon:before {
    content: "";
    width: 32px;
    height: 32px;
    background: var(--growth-deep);
    opacity: .8;
    -webkit-mask: center / contain no-repeat url("../icons/lucide/lucide-svg/target.svg");
    mask: center / contain no-repeat url("../icons/lucide/lucide-svg/target.svg")
}

.method-stage-card-title {
    display: block
}

.method-stage-card-title .block-label {
    display: block;
    margin: 0 0 6px
}

.method-stage-card-title h3 {
    margin: 0
}

.method-stage-willpower-actions .method-stage-card:nth-child(1) .method-stage-card-icon:before {
    background: var(--dream-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/target.svg");
    mask-image: url("../icons/lucide/lucide-svg/target.svg")
}

.method-stage-willpower-actions .method-stage-card:nth-child(2) .method-stage-card-icon {
    background: rgba(212, 79, 69, .08)
}

.method-stage-willpower-actions .method-stage-card:nth-child(2) .method-stage-card-icon:before {
    background: var(--action);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/zap.svg");
    mask-image: url("../icons/lucide/lucide-svg/zap.svg")
}

.method-stage-willpower-actions .method-stage-card:nth-child(3) .method-stage-card-icon:before {
    -webkit-mask-image: url("../icons/lucide/lucide-svg/battery-charging.svg");
    mask-image: url("../icons/lucide/lucide-svg/battery-charging.svg")
}

.method-stage-habit-building .method-stage-card:nth-child(1) .method-stage-card-icon:before {
    background: var(--dream-deep);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/blocks.svg");
    mask-image: url("../icons/lucide/lucide-svg/blocks.svg")
}

.method-stage-habit-building .method-stage-card:nth-child(2) .method-stage-card-icon {
    background: rgba(212, 79, 69, .08)
}

.method-stage-habit-building .method-stage-card:nth-child(2) .method-stage-card-icon:before {
    background: var(--action);
    -webkit-mask-image: url("../icons/lucide/lucide-svg/layers.svg");
    mask-image: url("../icons/lucide/lucide-svg/layers.svg")
}

.method-stage-habit-building .method-stage-card:nth-child(3) .method-stage-card-icon:before {
    -webkit-mask-image: url("../icons/lucide/lucide-svg/layers-3.svg");
    mask-image: url("../icons/lucide/lucide-svg/layers-3.svg")
}

.method-stage-integrity-system .method-stage-grid {
    position: relative
}

.method-stage-integrity-system .method-stage-grid:before {
    content: "";
    position: absolute;
    inset: 50% 8% auto;
    z-index: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(42, 148, 114, .26), transparent);
    pointer-events: none
}

.method-stage-integrity-system .method-stage-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: rgba(255, 255, 255, .82)
}

.method-stage-integrity-system .method-stage-card:before {
    content: "";
    position: absolute;
    right: 14px;
    bottom: -12px;
    width: 72px;
    height: 72px;
    background: var(--growth-deep);
    opacity: .045;
    -webkit-mask: center / contain no-repeat url("../icons/lucide/lucide-svg/puzzle.svg");
    mask: center / contain no-repeat url("../icons/lucide/lucide-svg/puzzle.svg");
    pointer-events: none
}

.method-stage-integrity-system .method-stage-card .block-label,
.method-stage-integrity-system .method-stage-card p {
    position: relative;
    z-index: 1
}

.method-stage-facts {
    display: grid;
    gap: 10px;
    max-width: 980px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none
}

.method-stage-facts li {
    position: relative;
    padding: 13px 16px 13px 42px;
    border: 1px solid rgba(102, 117, 124, .13);
    border-radius: 14px;
    background: rgba(255, 255, 255, .62);
    color: #43535b;
    line-height: 1.5
}

.method-stage-facts li:before {
    content: "";
    position: absolute;
    left: 17px;
    top: 20px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--growth)
}

.method-stage-cta {
    margin: 26px 0 0;
    text-align: center
}

.method-stage-skill .method-stage-card .block-label,
.method-stage-willpower .method-stage-card .block-label {
    color: var(--action)
}

.method-stage-habits .method-stage-card .block-label,
.method-stage-motivation .method-stage-card .block-label,
.method-stage-integrity .method-stage-card .block-label {
    color: var(--growth-deep)
}

.compare {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 18px
}

.compare-col {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px
}

.compare-col.good {
    border-color: #b8dccd;
    background: #f5fbf8
}

.compare-col h3 {
    margin-top: 0
}

.compare-section-quote-intro .section-head {
    margin-bottom: 24px
}

.compare-section-quote-intro .section-head h2 {
    transform: translateY(-10px)
}

.section-intro-quote {
    position: relative;
    padding-left: 34px
}

.section-intro-quote:before {
    content: "“";
    position: absolute;
    left: 0;
    top: -.1em;
    color: var(--action);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    line-height: 1;
    opacity: .62;
    transform: translateY(-.48em) rotate(180deg);
    transform-origin: 50% 50%
}

.compare-note {
    max-width: 980px;
    margin: 20px auto 0;
    padding: 18px 22px;
    border: 1px solid rgba(102, 117, 124, .13);
    border-radius: 16px;
    background: rgba(255, 255, 255, .66);
    color: #43535b;
    line-height: 1.55
}

.compare-section-responsibility .compare-col {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background: rgba(255, 255, 255, .72)
}

.compare-section-responsibility .compare-col:before {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 16px;
    width: 92px;
    height: 92px;
    background: #172229;
    opacity: .045;
    -webkit-mask: center / contain no-repeat url("../icons/lucide/lucide-svg/user-cog.svg");
    mask: center / contain no-repeat url("../icons/lucide/lucide-svg/user-cog.svg");
    pointer-events: none
}

.compare-section-responsibility .compare-col.good {
    border-color: rgba(42, 148, 114, .28);
    background: linear-gradient(145deg, rgba(245, 251, 248, .94), rgba(255, 255, 255, .76))
}

.compare-section-responsibility .compare-col.good:before {
    background: var(--growth-deep);
    opacity: .08;
    -webkit-mask-image: url("../icons/lucide/lucide-svg/waypoints.svg");
    mask-image: url("../icons/lucide/lucide-svg/waypoints.svg")
}

.compare-section-responsibility .compare-col h3,
.compare-section-responsibility .compare-col p,
.compare-section-responsibility .compare-col ul {
    position: relative;
    z-index: 1
}

.compare-section-responsibility .compare-note {
    position: relative;
    border-left: 3px solid rgba(23, 34, 41, .18);
    border-radius: 0 16px 16px 0;
    background: rgba(255, 255, 255, .72)
}

.compare-section-partnership .compare-col {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background: rgba(255, 255, 255, .72)
}

.compare-section-partnership .compare-col:before {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 16px;
    width: 96px;
    height: 96px;
    background: #172229;
    opacity: .045;
    -webkit-mask: center / contain no-repeat url("../icons/lucide/lucide-svg/briefcase-business.svg");
    mask: center / contain no-repeat url("../icons/lucide/lucide-svg/briefcase-business.svg");
    pointer-events: none
}

.compare-section-partnership .compare-col.good {
    border-color: rgba(42, 148, 114, .3);
    background: linear-gradient(145deg, rgba(245, 251, 248, .94), rgba(255, 255, 255, .76))
}

.compare-section-partnership .compare-col.good:before {
    background: var(--growth-deep);
    opacity: .09;
    -webkit-mask-image: url("../icons/lucide/lucide-svg/handshake.svg");
    mask-image: url("../icons/lucide/lucide-svg/handshake.svg")
}

.compare-section-partnership .compare-col h3,
.compare-section-partnership .compare-col p,
.compare-section-partnership .compare-col ul {
    position: relative;
    z-index: 1
}

.compare-section-partnership .compare-note {
    position: relative;
    border-left: 3px solid rgba(42, 148, 114, .24);
    border-radius: 0 16px 16px 0;
    background: rgba(255, 255, 255, .72)
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 18px 0 0
}

.checklist li {
    padding-left: 28px;
    position: relative;
    margin: 11px 0;
    color: #3e4c53
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--growth);
    font-weight: 900
}

.checklist.no li:before {
    content: "—";
    color: #8a9498
}

.program-list {
    position: relative;
    display: grid;
    gap: 10px
}

.program-section .program-list:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 26px;
    top: 44px;
    bottom: 22px;
    width: 2px;
    background: linear-gradient(180deg, rgba(60, 153, 198, .24), rgba(212, 79, 69, .24), rgba(42, 148, 114, .24));
    pointer-events: none
}

.program-section .program-group,
.program-section .module {
    position: relative;
    z-index: 1
}

.program-teaser {
    display: grid;
    grid-template-columns:minmax(0, .95fr) minmax(0, 1.25fr);
    gap: 28px;
    align-items: stretch
}

.program-teaser-main {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72)
}

.program-teaser-main p {
    margin: 0;
    color: #314149;
    font-size: 1.05rem;
    line-height: 1.62
}

.program-teaser-levels {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 12px
}

.program-teaser-level {
    padding: 22px;
    border: 1px solid rgba(102, 117, 124, .16);
    border-radius: 16px;
    background: #fff
}

.program-teaser-level h3 {
    margin: 8px 0 8px;
    font-size: 1.1rem
}

.program-teaser-level p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.55
}

.program-group {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 14px 0 4px;
    color: #879398;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase
}

.program-group:first-child {
    margin-top: 0
}

.program-group:before, .program-group:after {
    content: "";
    height: 1px;
    flex: 1;
    background-image: repeating-linear-gradient(to right, rgba(135, 147, 152, .45) 0 5px, transparent 5px 10px)
}

.program-group-label {
    white-space: nowrap
}

.program-group-label.term-help {
    font-style: inherit;
    text-decoration-color: rgba(135, 147, 152, .5);
    text-underline-offset: .24em
}

.program-section .program-group:nth-of-type(1) .program-group-label {
    color: var(--dream-deep)
}

.program-section .program-group:nth-of-type(5) .program-group-label {
    color: var(--action)
}

.program-section .program-group:nth-of-type(8) .program-group-label {
    color: var(--growth-deep)
}

.module {
    display: grid;
    grid-template-columns:54px 1fr auto;
    gap: 18px;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 20px;
    text-decoration: none;
    cursor: default
}

.module:hover {
    box-shadow: 0 8px 22px rgba(23, 34, 41, .07)
}

.module-no {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--surface-2);
    font-weight: 850;
    color: var(--growth-deep)
}

.program-section .module-no {
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 0 0 6px var(--surface)
}

.program-section .module:nth-of-type(2) .module-no,
.program-section .module:nth-of-type(3) .module-no,
.program-section .module:nth-of-type(4) .module-no {
    color: var(--dream-deep)
}

.program-section .module:nth-of-type(6) .module-no,
.program-section .module:nth-of-type(7) .module-no {
    color: var(--action)
}

.program-section .module:nth-of-type(9) .module-no,
.program-section .module:nth-of-type(10) .module-no {
    color: var(--growth-deep)
}

.module h3 {
    margin: 0;
    font-size: 1rem
}

.module-name {
    color: var(--ink);
    font-weight: 850
}

.module p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: .9rem
}

.module-time {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    justify-self: end;
    min-height: 34px;
    padding: 7px 11px 7px 9px;
    border: 1px solid rgba(102, 117, 124, .18);
    border-radius: 999px;
    background: rgba(237, 244, 245, .72);
    font-size: .8rem;
    font-weight: 800;
    color: #66757c;
    white-space: nowrap;
    cursor: help
}

.module-time-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: url("/images/icons/svg/arrows.svg") center / contain no-repeat;
    mask: url("/images/icons/svg/arrows.svg") center / contain no-repeat
}

.module-time-2 {
    background: rgba(219, 240, 232, .72);
    border-color: rgba(42, 148, 114, .18);
    color: #3f7465
}

.module-time-4 {
    background: rgba(221, 241, 244, .76);
    border-color: rgba(95, 148, 216, .17);
    color: #4c7582
}

.module-time-6 {
    background: rgba(235, 239, 250, .78);
    border-color: rgba(95, 148, 216, .2);
    color: #5b6687
}

.module-time-8 {
    background: rgba(246, 235, 245, .78);
    border-color: rgba(164, 104, 158, .2);
    color: #785f78
}

.module-time-12 {
    background: rgba(245, 234, 239, .78);
    border-color: rgba(217, 86, 74, .16);
    color: #86606a
}

.program-micro {
    max-width: 900px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.5
}

.module-card {
    margin: 18px 0;
    padding: 28px
}

.module-card h2 {
    margin: .7em 0 .25em;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.16;
    letter-spacing: -.03em
}

.module-card p {
    max-width: 790px
}

.module-card-note {
    color: var(--muted)
}

.page-hero {
    padding: 72px 0 52px;
    border-bottom: 1px solid var(--line)
}

.page-hero h1 {
    font-size: clamp(2.6rem, 5.2vw, 4.8rem)
}

.breadcrumbs {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 18px
}

.breadcrumbs a {
    text-decoration: none
}

.content {
    padding: 60px 0 84px
}

.content > .container > h2, .prose h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -.035em;
    margin: 2.15em 0 .65em
}

.content > .container > p, .content > .container > ul, .content > .container > ol, .content > .container > h2, .content > .container > .callout, .content > .container > .definition, .content > .container > .warning, .content > .container > .note, .content > .container > .quote, .content > .container > .cta-link-wrap, .content > .container > .grid-2, .content > .container > .flow-compact {
    max-width: 790px
}

.content > .container > p, .content > .container > ul, .content > .container > ol {
    color: #405058
}

.prose {
    max-width: 790px
}

.prose h3 {
    font-size: 1.25rem;
    margin: 1.8em 0 .55em
}

.prose p, .prose li {
    color: #405058
}

.prose strong, .content > .container strong {
    color: var(--ink)
}

.content > .container > ul, .content > .container > ol, .prose ul, .prose ol {
    padding-left: 1.2rem
}

.prose .callout, .prose .definition, .prose .warning, .prose .note, .prose .quote, .prose .flow, .content > .container > .callout, .content > .container > .definition, .content > .container > .warning, .content > .container > .note, .content > .container > .quote, .content > .container > .flow {
    margin: 28px 0
}

.prose .quote {
    width: auto;
    box-shadow: none
}

.cta-link-wrap {
    margin: 26px 0 0
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding-bottom: 5px;
    font-weight: 850;
    text-decoration: none;
    color: var(--growth-deep)
}

.cta-link-text {
    position: relative;
    display: inline-block;
    overflow: hidden
}

.cta-link-text:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: currentColor;
    transform: translateX(0) scaleX(1);
    transform-origin: left center
}

.cta-link-arrow {
    display: inline-block;
    transition: transform .22s ease
}

.cta-link:hover .cta-link-text:after, .cta-link:focus-visible .cta-link-text:after {
    animation: cta-underline-run .96s ease both
}

.cta-link:hover .cta-link-arrow, .cta-link:focus-visible .cta-link-arrow {
    transform: translateX(4px)
}

.cta-link:focus-visible {
    outline: 3px solid rgba(42, 148, 114, .22);
    outline-offset: 5px;
    border-radius: 4px
}

@keyframes cta-underline-run {
    0% {
        transform: translateX(0) scaleX(1);
        transform-origin: right center
    }
    45% {
        transform: translateX(105%) scaleX(.05);
        transform-origin: right center
    }
    46% {
        transform: translateX(-105%) scaleX(.05);
        transform-origin: left center
    }
    100% {
        transform: translateX(0) scaleX(1);
        transform-origin: left center
    }
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: .92rem
}

.prose th, .prose td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: top
}

.prose th {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted)
}

.kpi {
    font-size: 2.2rem;
    font-weight: 850;
    letter-spacing: -.045em
}

.kpi-label {
    font-size: .86rem;
    color: var(--muted)
}

.cta-band {
    padding: 44px 0
}

.home-cta-band {
    padding-top: 0;
    margin-top: -22px
}

.cta-box {
    background: var(--ink);
    color: #fff;
    border-radius: 28px;
    padding: 42px;
    display: grid;
    grid-template-columns:1.2fr .8fr;
    gap: 30px;
    align-items: center
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.02;
    letter-spacing: -.045em;
    margin: 0 0 10px
}

.cta-box p {
    color: #cbd4d8;
    margin: 0
}

.cta-box .hero-actions {
    justify-content: flex-end;
    margin-top: 0
}

.cta-box .btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #526067
}

.home-cta-box {
    text-align: center;
}

.home-cta-box > div:first-child {
    justify-self: center;
    text-align: center;
}

.home-cta-box p {
    max-width: 680px;
    margin-inline: auto
}

.home-cta-box .hero-actions {
    justify-content: center;
    justify-self: stretch
}

.home-cta-box .btn-primary {
    min-width: min(100%, 230px);
    padding: clamp(13px, 1.5vw, 16px) clamp(26px, 3vw, 38px);
    font-size: clamp(1rem, 1.15vw, 1.1rem)
}

.price-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 30px
}

.price-card.primary {
    border: 2px solid var(--growth)
}

.pricing-grid.pricing-count-2 {
    max-width: 790px
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -.05em
}

.price-sub {
    color: var(--muted);
    font-size: .9rem
}

.tag {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    background: var(--surface-2);
    font-size: .76rem;
    font-weight: 800;
    color: var(--growth-deep)
}

.page-faq .content {
    position: relative;
    background-color: var(--bg);
    background-image: linear-gradient(90deg, rgba(247, 249, 247, .18), rgba(247, 249, 247, .5) 52%, rgba(247, 249, 247, .34)), url("/assets/faq-pattern.svg");
    background-repeat: repeat;
    background-size: auto, 620px 430px;
    background-position: center, left top
}

.page-faq .content > .container {
    position: relative
}

.page-faq .faq {
    margin-right: 0
}

.faq details {
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0 20px;
    margin: 10px 0;
    box-shadow: 0 8px 22px rgba(23, 34, 41, .045);
    backdrop-filter: blur(2px)
}

.faq summary {
    cursor: pointer;
    font-weight: 750;
    padding: 18px 0
}

.faq details p {
    margin: 0 0 18px;
    color: var(--muted)
}

.page-start .content {
    background-color: var(--bg);
    background-image: linear-gradient(90deg, rgba(247, 249, 247, .26), rgba(247, 249, 247, .54) 50%, rgba(247, 249, 247, .22)), url("/assets/start-pattern.svg");
    background-repeat: repeat;
    background-size: auto, 680px 460px;
    background-position: center, left top
}

.page-start main {
    min-height: calc(100svh - 74px);
    display: grid
}

.page-start .site-footer {
    margin-top: 0
}

.launch-countdown {
    min-height: calc(100svh - 74px);
    display: grid;
    place-items: center;
    padding: clamp(46px, 7vw, 92px) 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(217, 86, 74, .12), transparent 34%),
        linear-gradient(rgba(246, 247, 243, .9), rgba(246, 247, 243, .96)),
        url("/images/backgounds/hero-pattern_v10.svg") center / cover no-repeat;
    overflow: hidden
}

.launch-countdown-inner {
    display: grid;
    justify-items: center;
    gap: clamp(22px, 3.6vw, 38px);
    text-align: center
}

.launch-countdown-copy {
    max-width: 780px
}

.launch-countdown h1 {
    margin: .2em 0 .32em;
    font-size: clamp(2.05rem, 5.1vw, 4.6rem);
    line-height: .98;
    letter-spacing: 0
}

.launch-countdown-copy p {
    margin: 0 auto;
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.62
}

.launch-countdown-timer {
    width: min(100%, 880px);
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: clamp(10px, 1.8vw, 18px)
}

.launch-countdown-unit {
    min-width: 0;
    padding: clamp(16px, 2.5vw, 28px) clamp(10px, 1.7vw, 18px);
    border: 1px solid rgba(217, 225, 226, .9);
    border-radius: 20px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 14px 36px rgba(23, 34, 41, .065);
    backdrop-filter: blur(6px)
}

.launch-countdown-value {
    display: block;
    color: var(--ink);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-size: clamp(2.2rem, 6.6vw, 6rem);
    font-weight: 850;
    line-height: .92;
    font-variant-numeric: tabular-nums slashed-zero;
    letter-spacing: 0
}

.launch-countdown-label {
    display: block;
    margin-top: 10px;
    color: var(--action-deep);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase
}

.launch-countdown-date {
    color: var(--muted);
    font-size: .86rem
}

.launch-countdown.is-expired .launch-countdown-timer {
    opacity: .42
}

.start-panel {
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 30px;
    max-width: 800px;
    box-shadow: 0 14px 36px rgba(23, 34, 41, .07);
    backdrop-filter: blur(2px)
}

.form-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px
}

.field {
    display: grid;
    gap: 7px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-weight: 700;
    font-size: .88rem
}

.field input, .field textarea, .field select {
    width: 100%;
    border: 1px solid #bdc8cc;
    border-radius: 11px;
    background: #fff;
    padding: 12px 13px;
    color: var(--ink)
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 42px;
    background-image: linear-gradient(45deg, transparent 50%, #66757c 50%), linear-gradient(135deg, #66757c 50%, transparent 50%);
    background-position: calc(100% - 19px) 50%, calc(100% - 13px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat
}

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

.field input:focus, .field textarea:focus, .field select:focus {
    outline: 3px solid rgba(95, 148, 216, .2);
    border-color: var(--dream)
}

.start-form-warning {
    margin: 22px 0
}

.start-result {
    margin-top: 24px
}

.form-note {
    font-size: .8rem;
    color: var(--muted)
}

.site-footer {
    border-top: 1px solid var(--line);
    margin-top: 56px;
    background: #eef1ef
}

.footer-top {
    display: grid;
    grid-template-columns:1.25fr repeat(3, 1fr);
    gap: 40px;
    padding: 52px 0 38px
}

.footer-brand p {
    color: var(--muted);
    max-width: 260px;
    font-size: .9rem
}

.footer-col h3 {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 14px;
    color: #56656c
}

.footer-col a {
    display: block;
    width: fit-content;
    text-decoration: none;
    margin: 7px 0;
    padding-bottom: 2px;
    font-size: .92rem;
    color: #33434a;
    overflow: hidden
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 18px 0 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: .84rem
}

.socials {
    display: flex;
    gap: 8px
}

.socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid #cbd4d5;
    background: var(--surface);
    text-decoration: none;
    overflow: hidden
}

.socials svg,
.socials img{
    width: 18px;
    height: 18px;
    transition: width .3s ease, height .3s ease
}

.socials a:hover svg,
.socials a:focus-visible svg,
.socials a:hover img,
.socials a:focus-visible img{
    width: 25px;
    height: 25px
}

.socials a:focus-visible {
    outline: 2px solid rgba(95, 148, 216, .32);
    outline-offset: 3px
}

.email-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    padding: 24px;
    overflow: auto;
    background: rgba(23, 34, 41, .64);
    backdrop-filter: blur(8px)
}

.email-modal.open {
    display: grid;
    place-items: center
}

.email-modal__panel {
    width: min(100%, 560px);
    padding: 26px;
    border: 1px solid rgba(217, 225, 226, .96);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    box-shadow: 0 24px 90px rgba(23, 34, 41, .22)
}

.email-modal__header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 22px
}

.email-modal__header h2 {
    margin: 6px 0 0;
    font-size: 1.7rem;
    line-height: 1.08;
    letter-spacing: 0
}

.email-modal__close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    color: var(--ink);
    font-size: 20px;
    line-height: 1;
    cursor: pointer
}

.email-form {
    display: grid;
    gap: 14px
}

.email-form label,
.email-captcha {
    display: grid;
    gap: 7px
}

.email-form span,
.email-captcha > span {
    color: var(--muted);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase
}

.email-form input,
.email-form textarea,
.email-captcha input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    color: var(--ink);
    padding: 12px 13px;
    font: inherit;
    outline: none
}

.email-form textarea {
    resize: vertical;
    min-height: 130px
}

.email-form input:focus,
.email-form textarea:focus,
.email-captcha input:focus {
    border-color: var(--dream);
    box-shadow: 0 0 0 3px rgba(95, 148, 216, .14)
}

.email-captcha__row {
    display: grid;
    grid-template-columns:168px 92px minmax(100px, 1fr);
    gap: 10px;
    align-items: center
}

.captcha-img {
    width: 168px;
    height: 48px;
    border-radius: 10px;
    background: var(--surface-2)
}

.email-refresh {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface-2);
    color: var(--ink);
    font: inherit;
    font-size: .82rem;
    font-weight: 800;
    cursor: pointer
}

.email-submit {
    min-height: 46px;
    border: 1px solid var(--ink);
    border-radius: 12px;
    background: var(--ink);
    color: #fff;
    font-weight: 800;
    cursor: pointer
}

.email-submit:disabled {
    opacity: .58;
    cursor: progress
}

.email-status {
    min-height: 1.4em;
    margin: 0;
    color: var(--muted);
    font-size: .88rem
}

.email-status.is-ok {
    color: var(--growth-deep)
}

.email-status.is-error {
    color: var(--action-deep)
}

.email-modal__note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .8rem
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 800
}

.status-pill:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--growth)
}

.legal-note {
    font-size: .82rem;
    color: var(--muted);
    border-left: 3px solid var(--warning);
    padding-left: 14px
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 32px 0
}

.center {
    text-align: center
}

.mt-0 {
    margin-top: 0 !important
}

@media (max-width: 920px) {
    .nav-links {
        position: fixed;
        left: 20px;
        right: 20px;
        top: 82px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow)
    }

    .nav-links.open {
        display: flex
    }

    .site-header:has(.header-locale-row) .nav-links {
        top: 116px
    }

    .nav-toggle {
        display: block
    }

    .nav-actions .btn-ghost {
        display: none
    }

    html[lang="fr"] .hero-grid {
        grid-template-columns:1fr
    }

    .hero-grid, .practice-hero-grid, .program-hero-grid, .method-hero-grid, .about-hero-grid, .author-hero-grid, .author-origin-grid, .section-head, .cta-box {
        grid-template-columns:1fr
    }

    .program-teaser {
        grid-template-columns:1fr
    }

    .program-teaser-levels {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }

    .practice-stage-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .program-bridge-grid {
        grid-template-columns:repeat(3, minmax(0, 1fr))
    }

    .method-stage-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .section-head-rtl h2, .section-head-rtl p {
        grid-column: auto;
        grid-row: auto
    }

    .hero {
        padding-top: 58px
    }

    .hero-grid {
        gap: 36px
    }

    .hero h1 {
        font-size: clamp(2.45rem, 7.1vw, 3.35rem)
    }

    .grid-4, .grid-5 {
        grid-template-columns:repeat(2, 1fr)
    }

    .grid-3 {
        grid-template-columns:1fr 1fr
    }

    .cta-box .hero-actions {
        justify-content: flex-start
    }

    .home-cta-box .hero-actions {
        justify-content: center
    }

    .home-cta-box .btn-primary {
        width: auto;
        min-width: min(100%, 220px)
    }

    .footer-top {
        grid-template-columns:1.5fr 1fr 1fr
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .module {
        grid-template-columns:50px 1fr
    }

    .module-time {
        grid-column: 2
    }
}

@media (max-width: 640px) {
    .container, .narrow {
        width: min(calc(100% - 28px), var(--max))
    }

    .nav {
        height: 68px
    }

    .brand-logo {
        height: 34px
    }

    .footer-brand .brand-logo {
        height: 40px
    }

    .hero {
        padding: 46px 0 52px
    }

    .practice-hero {
        padding: 46px 0 52px
    }

    .program-hero {
        padding: 46px 0 52px
    }

    .method-hero {
        padding: 46px 0 52px
    }

    .about-hero {
        padding: 46px 0 52px
    }

    .author-hero {
        padding: 46px 0 52px
    }

    .hero h1 {
        font-size: clamp(1.78rem, 8vw, 2.55rem);
        line-height: 1.04
    }

    .practice-hero h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.04
    }

    .program-hero h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.04
    }

    .method-hero h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.04
    }

    .about-hero h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.04
    }

    .author-hero h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.04
    }

    .page-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.35rem)
    }

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

    .btn {
        width: 100%
    }

    .home-cta-box .btn-primary {
        width: 100%;
        min-width: 0
    }

    .grid-2, .grid-3, .grid-4, .grid-5, .compare, .form-grid, .practice-stage-grid, .program-bridge-grid, .method-stage-grid {
        grid-template-columns:1fr
    }

    .program-bridge-science-engine .program-bridge-grid:before {
        display: none
    }

    .module-flow-section-program-logic .module-flow:before {
        display: none
    }

    .module-flow-section-home-pipeline .module-flow:before {
        display: none
    }

    .method-stage-integrity-system .method-stage-grid:before {
        display: none
    }

    .compare-section-responsibility .compare-col:before,
    .warning-list-section-strict-limits .warning:before {
        width: 104px;
        height: 104px
    }

    .practice-stage-has-step:before {
        top: 18px;
        left: 18px;
        font-size: clamp(5.5rem, 22vw, 8rem);
        opacity: .035
    }

    .practice-stage-layout-rtl:before {
        right: 18px
    }

    .practice-stage-has-step:after {
        bottom: 12px;
        width: 62px;
        height: 22px
    }

    .practice-hero-card {
        padding: 22px
    }

    .about-hero-card {
        padding: 22px
    }

    .author-portrait-wrap {
        justify-self: stretch;
        width: 100%
    }

    .author-origin-copy,
    .author-origin-note {
        padding: 24px
    }

    .author-origin-copy:before {
        width: 150px;
        height: 116px;
        right: 16px;
        top: 16px
    }

    .author-401-card {
        grid-template-columns:1fr;
        gap: 12px;
        padding: 24px
    }

    .author-401-number {
        font-size: clamp(5.8rem, 30vw, 8.4rem)
    }

    .program-hero-card {
        padding: 22px
    }

    .method-hero-card {
        padding: 22px
    }

    .practice-hero-point {
        grid-template-columns:1fr;
        gap: 9px
    }

    .about-hero-point {
        grid-template-columns:1fr;
        gap: 9px
    }

    .program-hero-point {
        grid-template-columns:1fr;
        gap: 9px
    }

    .method-hero-point {
        grid-template-columns:1fr;
        gap: 9px
    }

    .program-teaser-levels {
        grid-template-columns:1fr
    }

    .program-teaser-main, .program-teaser-level {
        padding: 20px
    }

    .section {
        padding: 58px 0
    }

    .home-cta-band {
        margin-top: -10px
    }

    .section-tight {
        padding: 42px 0
    }

    .section-head {
        gap: 16px;
        margin-bottom: 28px
    }

    .trajectory-card {
        padding: 21px
    }

    .flow {
        display: grid
    }

    .flow-arrow {
        transform: rotate(90deg)
    }

    .cta-box {
        padding: 28px 22px
    }

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

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column
    }

    .email-captcha__row {
        grid-template-columns:1fr
    }

    .captcha-img {
        width: 168px;
        max-width: 100%
    }

    .page-hero {
        padding: 48px 0 38px
    }

    .content {
        padding: 42px 0 64px
    }

    .page-faq .content {
        background-image: linear-gradient(rgba(247, 249, 247, .72), rgba(247, 249, 247, .86)), url("/assets/faq-pattern.svg");
        background-size: auto, 520px 361px
    }

    .page-faq .faq {
        margin-inline: auto
    }

    .page-start .content {
        background-image: linear-gradient(rgba(247, 249, 247, .72), rgba(247, 249, 247, .88)), url("/assets/start-pattern.svg");
        background-size: auto, 540px 365px
    }

    .launch-countdown {
        min-height: calc(100svh - 74px);
        padding: 42px 0
    }

    .launch-countdown-timer {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .start-panel {
        padding: 22px
    }

    .module {
        padding: 15px
    }

    .module p {
        font-size: .84rem
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        scroll-behavior: auto !important;
        transition: none !important
    }

    .nav-links a:after, .footer-col a:after {
        transition: none !important
    }
}
