:root {
    --blush: #f6b6c7;
    --blush-soft: #fad4de;
    --pink: #ed2476;
    --pink-dark: #cf155f;
    --cream: #fff8f4;
    --white: #ffffff;
    --ink: #19171b;
    --muted: #685a60;
    --line: rgba(25, 23, 27, 0.18);
    --line-light: rgba(255, 248, 244, 0.22);
    --display: Impact, "Arial Narrow", "Arial Black", sans-serif;
    --body: "Segoe UI", Arial, sans-serif;
    --radius-large: 34px;
    --radius-medium: 24px;
    --radius-small: 14px;
}

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

html {
    color-scheme: light;
    scroll-behavior: auto;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--blush);
    color: var(--ink);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

body,
button,
a {
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
dl,
dd {
    margin-top: 0;
}

h1,
h2,
h3,
.title-line,
.heading-line {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.shell {
    width: min(calc(100% - 64px), 1240px);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    transform: translateY(-150%);
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    text-decoration: none;
}

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

.site-header {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(25, 23, 27, 0.16);
    background: var(--cream);
}

.site-header__inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand__mark {
    width: 58px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--pink);
    color: var(--white);
    font-family: var(--display);
    font-size: 22px;
    line-height: 1;
}

.brand__name {
    display: grid;
    gap: 1px;
    font-size: 12px;
    line-height: 1.25;
}

.brand__name strong {
    font-size: 14px;
    letter-spacing: 0.06em;
}

.brand__name span {
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 700;
}

.site-nav a {
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-decoration-color: transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    text-decoration-color: var(--pink);
}

.vacancy-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.vacancy-status > span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pink);
}

.hero {
    padding: 84px 0 96px;
    background: var(--blush);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    align-items: center;
    gap: clamp(44px, 6vw, 88px);
}

.eyebrow,
.section-index,
.income__label {
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
}

.eyebrow > span {
    padding: 7px 10px;
    border-radius: 8px;
    background: var(--pink);
    color: var(--white);
}

.hero h1,
.section h2,
.final-offer h2 {
    margin-bottom: 26px;
    font-family: var(--display);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(70px, 6.2vw, 96px);
    line-height: 0.92;
}

.title-line,
.heading-line {
    display: block;
}

.title-line + .title-line,
.heading-line + .heading-line {
    margin-top: 0.08em;
}

.title-line--accent,
.heading-line--accent,
.section-heading h2 span,
.internship h2 span,
.rhythm h2 span,
.founder h2 span {
    color: var(--pink);
}

.hero__lead {
    max-width: 680px;
    margin-bottom: 30px;
    font-size: 19px;
    line-height: 1.55;
}

.hero__action {
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: minmax(270px, 350px) minmax(0, 1fr);
    align-items: center;
    gap: 20px;
}

.hero__action p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.cta {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px 10px 22px;
    border: 2px solid var(--pink);
    border-radius: 999px;
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(169, 28, 91, 0.18);
    font-size: 15px;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.cta:hover {
    transform: translateY(-2px);
    background: var(--pink-dark);
}

.cta:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible {
    outline: 3px solid var(--ink);
    outline-offset: 4px;
}

.cta__arrow {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--cream);
    color: var(--ink);
}

.cta__arrow svg {
    width: 22px;
    height: 22px;
    display: block;
    overflow: visible;
}

.cta__arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.cta--cream {
    border-color: var(--cream);
    background: var(--cream);
    color: var(--ink);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.cta--cream .cta__arrow {
    background: var(--blush-soft);
}

.cta--cream:hover {
    background: var(--white);
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.hero-facts li {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 750;
}

.hero-facts li > span {
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
}

.hero-machine {
    width: 100%;
    max-width: 520px;
    justify-self: end;
}

.media-frame {
    position: relative;
    margin: 0;
    padding: 14px;
    border: 2px solid rgba(237, 36, 118, 0.38);
    border-radius: var(--radius-large);
    background: var(--cream);
    box-shadow: 0 24px 64px rgba(120, 47, 75, 0.2);
}

.media-frame::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: -12px;
    left: 50%;
    width: 92px;
    height: 24px;
    transform: translateX(-50%);
    border: 3px solid var(--cream);
    border-radius: 999px;
    background: var(--pink);
}

.media-frame img {
    width: 100%;
    border-radius: 22px;
}

.media-frame figcaption {
    padding: 12px 8px 2px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
}

.section {
    padding: 112px 0;
}

.work {
    background: var(--cream);
}

.section-heading {
    max-width: 900px;
    margin-bottom: 56px;
}

.section-heading--wide {
    max-width: 1050px;
}

.section-index {
    margin-bottom: 18px;
    color: var(--muted);
}

.section-index--light {
    color: rgba(255, 248, 244, 0.72);
}

.section-heading h2,
.internship h2,
.rhythm h2,
.founder h2,
.final-offer h2 {
    font-size: clamp(48px, 4.8vw, 72px);
    line-height: 0.96;
}

.section-heading > p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 19px;
}

.production-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
}

.track-step {
    position: relative;
    min-width: 0;
    padding: 30px 22px 32px;
}

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

.track-step__number {
    display: block;
    margin-bottom: 28px;
    color: var(--pink);
    font-size: 12px;
    font-weight: 900;
}

.track-step__icon {
    width: 54px;
    height: 54px;
    position: relative;
    margin-bottom: 24px;
    border-radius: 16px;
    background: var(--pink);
}

.track-step__icon i {
    position: absolute;
    display: block;
    background: var(--cream);
}

.icon-brief i:nth-child(1),
.icon-script i:nth-child(1) {
    top: 16px;
    left: 14px;
    width: 26px;
    height: 3px;
}

.icon-brief i:nth-child(2),
.icon-script i:nth-child(2) {
    top: 25px;
    left: 14px;
    width: 20px;
    height: 3px;
}

.icon-brief i:nth-child(3),
.icon-script i:nth-child(3) {
    top: 34px;
    left: 14px;
    width: 25px;
    height: 3px;
}

.icon-phone i {
    inset: 10px 16px;
    border: 3px solid var(--cream);
    border-radius: 7px;
    background: transparent;
}

.icon-profile i:nth-child(1) {
    top: 11px;
    left: 20px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.icon-profile i:nth-child(2) {
    bottom: 10px;
    left: 13px;
    width: 28px;
    height: 16px;
    border-radius: 14px 14px 6px 6px;
}

.icon-revision i {
    top: 15px;
    left: 14px;
    width: 25px;
    height: 25px;
    border: 3px solid var(--cream);
    border-left-color: transparent;
    border-radius: 50%;
    background: transparent;
}

.track-step h3,
.support-line h3,
.rhythm__steps h3,
.selection-route h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.15;
}

.track-step p,
.support-line p,
.rhythm__steps p,
.selection-route p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.48;
}

.work-note {
    max-width: 930px;
    margin: 38px 0 0;
    padding-left: 18px;
    border-left: 4px solid var(--pink);
    color: var(--muted);
}

.work-note strong {
    color: var(--ink);
}

.internship {
    background: var(--ink);
    color: var(--cream);
}

.internship__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
    align-items: start;
    gap: clamp(44px, 6vw, 90px);
}

.internship__lead {
    max-width: 720px;
    margin-bottom: 36px;
    color: rgba(255, 248, 244, 0.78);
    font-size: 19px;
}

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

.support-line article {
    display: grid;
    grid-template-columns: 76px minmax(180px, 0.62fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid var(--line-light);
}

.support-line article > span {
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
}

.support-line h3,
.support-line p {
    margin-bottom: 0;
}

.support-line p {
    color: rgba(255, 248, 244, 0.7);
}

.media-frame--dark {
    border-color: rgba(237, 36, 118, 0.56);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.internship-visual {
    max-width: 500px;
    justify-self: end;
}

.cycle {
    margin-top: 72px;
    padding: 30px;
    border-radius: var(--radius-medium);
    background: var(--cream);
    color: var(--ink);
}

.cycle__title {
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cycle ol {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.cycle li {
    min-width: 0;
    padding: 18px 12px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

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

.cycle li span {
    display: block;
    margin-bottom: 7px;
    color: var(--pink);
    font-size: 11px;
}

.internship-action {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.internship-action > p {
    max-width: 550px;
    margin-bottom: 0;
    color: rgba(255, 248, 244, 0.72);
}

.internship-action .cta {
    width: min(100%, 360px);
}

.conditions {
    background: var(--blush);
}

.conditions__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    gap: clamp(44px, 6vw, 84px);
    align-items: start;
}

.rhythm__steps {
    margin-top: 42px;
    border-top: 2px solid var(--ink);
}

.rhythm__steps article {
    display: grid;
    grid-template-columns: 72px minmax(170px, 0.7fr) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.rhythm__steps article > span {
    color: var(--pink-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.rhythm__steps h3,
.rhythm__steps p {
    margin-bottom: 0;
}

.income {
    padding: clamp(28px, 4vw, 52px);
    border: 2px solid rgba(237, 36, 118, 0.55);
    border-radius: var(--radius-large);
    background: var(--cream);
}

.income__label {
    color: var(--pink-dark);
}

.income h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.02;
}

.income__rate {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
}

.income__rate strong {
    font-family: var(--display);
    font-size: clamp(54px, 5vw, 76px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0;
}

.income__rate span {
    color: var(--muted);
    font-weight: 800;
}

.income-equation {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1.2fr;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 18px;
    background: var(--ink);
    color: var(--cream);
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
}

.income-equation b {
    color: var(--pink);
    font-size: 22px;
}

.income-equation strong {
    color: var(--blush-soft);
    font-size: 16px;
}

.bru-terms {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 2px solid var(--pink);
}

.bru-terms > span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bru-terms strong {
    display: block;
    font-family: var(--display);
    font-size: 38px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.bru-terms p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.fit {
    background: var(--white);
}

.fit-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: var(--radius-large);
}

.fit-column {
    padding: clamp(30px, 4vw, 54px);
}

.fit-column + .fit-column {
    border-left: 2px solid var(--ink);
}

.fit-column--yes {
    background: var(--cream);
}

.fit-column--no {
    background: var(--blush-soft);
}

.fit-column__heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.fit-column__heading > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pink);
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
}

.fit-column__heading h3 {
    margin-bottom: 0;
    font-size: 27px;
    line-height: 1.1;
}

.fit-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fit-column li {
    position: relative;
    padding: 17px 0 17px 28px;
    border-top: 1px solid var(--line);
}

.fit-column li::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
}

.selection {
    background: var(--ink);
    color: var(--cream);
}

.selection-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.68fr);
    gap: clamp(44px, 6vw, 90px);
    align-items: center;
    margin-bottom: 62px;
}

.selection .section-heading {
    margin-bottom: 0;
}

.selection .section-heading > p:last-child {
    color: rgba(255, 248, 244, 0.72);
}

.selection-visual {
    max-width: 420px;
    justify-self: end;
}

.selection-route {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 248, 244, 0.36);
    border-radius: var(--radius-medium);
    list-style: none;
}

.selection-route li {
    min-width: 0;
    min-height: 220px;
    padding: 30px;
    background: var(--cream);
    color: var(--ink);
}

.selection-route li:not(:nth-child(3n + 1)) {
    border-left: 1px solid var(--line);
}

.selection-route li:nth-child(n + 4) {
    border-top: 1px solid var(--line);
}

.selection-route li > span {
    display: block;
    margin-bottom: 38px;
    color: var(--pink);
    font-size: 13px;
    font-weight: 900;
}

.founder {
    background: var(--white);
}

.founder__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(48px, 7vw, 100px);
}

.founder-photo {
    margin: 0;
    padding: 14px;
    border: 2px solid rgba(237, 36, 118, 0.45);
    border-radius: var(--radius-large);
    background: var(--cream);
    box-shadow: 0 24px 64px rgba(120, 47, 75, 0.18);
}

.founder-photo img {
    width: 100%;
    border-radius: 22px;
}

.founder-photo figcaption {
    padding: 14px 8px 2px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.07em;
    text-align: center;
    text-transform: uppercase;
}

.founder__lead {
    font-size: 20px;
}

.founder__content > p:not(.section-index):not(.founder__lead) {
    color: var(--muted);
}

.founder-facts {
    margin: 34px 0 0;
    border-top: 2px solid var(--ink);
}

.founder-facts > div {
    display: grid;
    grid-template-columns: minmax(180px, 0.75fr) minmax(0, 1fr);
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.founder-facts dt {
    font-weight: 850;
}

.founder-facts dd {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.final-offer {
    padding: 112px 0 56px;
    background: var(--pink);
}

.final-offer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: clamp(48px, 7vw, 100px);
}

.final-offer h2 {
    color: var(--ink);
}

.final-offer__content > p:not(.section-index) {
    max-width: 650px;
    font-size: 18px;
}

.final-offer__action {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.final-offer__action .cta {
    width: min(100%, 350px);
}

.final-offer__action > p {
    margin-bottom: 0;
    max-width: 220px;
    color: rgba(25, 23, 27, 0.72);
    font-size: 13px;
    line-height: 1.4;
}

.final-visual {
    max-width: 470px;
    justify-self: end;
}

.prototype-notice {
    margin-top: 64px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    border-radius: 18px;
    background: var(--cream);
    font-size: 13px;
    line-height: 1.45;
}

.prototype-notice strong {
    color: var(--pink-dark);
}

.prototype-notice.is-highlighted {
    outline: 4px solid var(--ink);
    outline-offset: 4px;
}

.site-footer {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 248, 244, 0.22);
    background: var(--ink);
    color: rgba(255, 248, 244, 0.72);
    font-size: 12px;
}

.site-footer .shell {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

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

@media (max-width: 1080px) {
    .site-nav {
        display: none;
    }

    .hero__grid,
    .internship__grid,
    .conditions__grid,
    .founder__grid,
    .final-offer__inner {
        gap: 48px;
    }

    .hero h1 {
        font-size: clamp(64px, 7.2vw, 80px);
    }

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

    .track-step:nth-child(4),
    .track-step:nth-child(5) {
        border-top: 1px solid var(--line);
    }

    .track-step:nth-child(4) {
        border-left: 0;
    }

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

    .cycle li:nth-child(5) {
        border-left: 0;
    }

    .cycle li:nth-child(n + 5) {
        border-top: 1px solid var(--line);
    }

    .final-offer__action {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 820px) {
    .shell {
        width: min(calc(100% - 40px), 720px);
    }

    .site-header__inner {
        min-height: 74px;
    }

    .vacancy-status {
        font-size: 12px;
    }

    .hero {
        padding: 68px 0 78px;
    }

    .hero__grid,
    .internship__grid,
    .conditions__grid,
    .selection-intro,
    .founder__grid,
    .final-offer__inner {
        grid-template-columns: 1fr;
    }

    .hero-machine,
    .internship-visual,
    .selection-visual,
    .final-visual {
        max-width: 560px;
        justify-self: center;
    }

    .section {
        padding: 84px 0;
    }

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

    .track-step:nth-child(3) {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .track-step:nth-child(4) {
        border-left: 1px solid var(--line);
    }

    .track-step:nth-child(5) {
        border-left: 0;
    }

    .support-line article,
    .rhythm__steps article {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .support-line article p,
    .rhythm__steps article p {
        grid-column: 2;
    }

    .fit-table {
        grid-template-columns: 1fr;
    }

    .fit-column + .fit-column {
        border-top: 2px solid var(--ink);
        border-left: 0;
    }

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

    .selection-route li:not(:nth-child(3n + 1)) {
        border-left: 0;
    }

    .selection-route li:nth-child(even) {
        border-left: 1px solid var(--line);
    }

    .selection-route li:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .founder-photo {
        width: min(100%, 520px);
        justify-self: center;
    }

    .final-offer {
        padding-top: 84px;
    }

    .final-visual {
        grid-row: 1;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .shell {
        width: calc(100% - 32px);
    }

    .site-header__inner {
        min-height: 68px;
        gap: 12px;
    }

    .brand {
        gap: 8px;
    }

    .brand__mark {
        width: 50px;
        height: 42px;
        border-radius: 12px;
        font-size: 19px;
    }

    .brand__name strong {
        font-size: 11px;
    }

    .brand__name span {
        font-size: 10px;
    }

    .vacancy-status {
        gap: 6px;
        font-size: 10px;
    }

    .vacancy-status > span {
        width: 8px;
        height: 8px;
    }

    .hero {
        padding: 54px 0 68px;
    }

    .hero__grid,
    .internship__grid,
    .conditions__grid,
    .selection-intro,
    .founder__grid,
    .final-offer__inner {
        gap: 42px;
    }

    .eyebrow {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
        margin-bottom: 20px;
        font-size: 11px;
    }

    .hero h1 {
        margin-bottom: 22px;
        font-size: clamp(51px, 15vw, 58px);
        line-height: 0.94;
    }

    .hero__lead {
        margin-bottom: 26px;
        font-size: 17px;
        line-height: 1.5;
    }

    .hero__action {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 28px;
    }

    .hero__action p {
        padding-inline: 2px;
    }

    .cta {
        width: 100%;
        min-height: 58px;
        padding-left: 18px;
        font-size: 14px;
    }

    .hero-facts {
        grid-template-columns: 1fr;
    }

    .hero-facts li {
        min-height: 48px;
    }

    .media-frame {
        padding: 10px;
        border-radius: 26px;
        box-shadow: 0 18px 46px rgba(120, 47, 75, 0.17);
    }

    .media-frame::before {
        top: -10px;
        width: 76px;
        height: 20px;
    }

    .media-frame img {
        border-radius: 18px;
    }

    .media-frame figcaption {
        padding: 10px 5px 2px;
        font-size: 10px;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .internship h2,
    .rhythm h2,
    .founder h2,
    .final-offer h2 {
        margin-bottom: 22px;
        font-size: clamp(39px, 11vw, 46px);
        line-height: 0.98;
    }

    .section-index,
    .income__label {
        margin-bottom: 14px;
        font-size: 11px;
        line-height: 1.35;
    }

    .section-heading > p:last-child,
    .internship__lead {
        font-size: 17px;
    }

    .production-track {
        grid-template-columns: 1fr;
    }

    .track-step,
    .track-step:nth-child(3),
    .track-step:nth-child(4),
    .track-step:nth-child(5) {
        display: grid;
        grid-template-columns: 44px 58px minmax(0, 1fr);
        column-gap: 14px;
        align-items: start;
        padding: 24px 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .track-step:first-child {
        border-top: 0;
    }

    .track-step__number,
    .track-step__icon,
    .track-step h3 {
        margin-bottom: 0;
    }

    .track-step__number {
        padding-top: 5px;
    }

    .track-step__icon {
        width: 50px;
        height: 50px;
    }

    .track-step h3 {
        padding-top: 4px;
        font-size: 19px;
    }

    .track-step p {
        grid-column: 3;
        margin-top: 8px;
    }

    .work-note {
        margin-top: 30px;
        font-size: 14px;
    }

    .support-line article,
    .rhythm__steps article {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 14px;
        padding: 20px 0;
    }

    .support-line article p,
    .rhythm__steps article p {
        grid-column: 2;
    }

    .cycle {
        margin-top: 48px;
        padding: 22px 18px;
        border-radius: 20px;
    }

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

    .cycle li,
    .cycle li:nth-child(5) {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .cycle li:nth-child(-n + 2) {
        border-top: 0;
    }

    .cycle li:nth-child(even) {
        border-left: 1px solid var(--line);
    }

    .internship-action {
        margin-top: 24px;
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .conditions__grid {
        gap: 52px;
    }

    .rhythm__steps {
        margin-top: 32px;
    }

    .income {
        padding: 28px 20px;
        border-radius: 26px;
    }

    .income h2 {
        font-size: 32px;
    }

    .income__rate {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .income__rate strong {
        font-size: 56px;
    }

    .income-equation {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: left;
    }

    .income-equation b {
        font-size: 18px;
    }

    .bru-terms strong {
        font-size: 34px;
    }

    .fit-table {
        border-radius: 24px;
    }

    .fit-column {
        padding: 30px 22px;
    }

    .fit-column__heading h3 {
        font-size: 23px;
    }

    .fit-column li {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 15px;
    }

    .selection-intro {
        margin-bottom: 42px;
    }

    .selection-route {
        grid-template-columns: 1fr;
    }

    .selection-route li,
    .selection-route li:nth-child(even),
    .selection-route li:nth-child(n + 3) {
        min-height: auto;
        padding: 26px 22px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .selection-route li:first-child {
        border-top: 0;
    }

    .selection-route li > span {
        margin-bottom: 22px;
    }

    .founder__grid {
        gap: 46px;
    }

    .founder-photo {
        padding: 10px;
        border-radius: 26px;
        box-shadow: 0 18px 46px rgba(120, 47, 75, 0.16);
    }

    .founder-photo img {
        border-radius: 18px;
    }

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

    .final-offer {
        padding: 72px 0 40px;
    }

    .final-visual {
        grid-row: 1;
    }

    .final-offer__action {
        gap: 14px;
    }

    .prototype-notice {
        margin-top: 44px;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px;
    }

    .site-footer .shell {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

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

    .cta {
        transition: none;
    }
}
