:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-soft: #eef6fb;
    --surface-strong: #233f84;
    --surface-strong-2: #34539a;
    --text: #102235;
    --text-soft: #4e6174;
    --text-on-dark: #f7fbff;
    --line: rgba(16, 34, 53, 0.1);
    --line-strong: rgba(143, 171, 194, 0.34);
    --brand-navy: #2d468f;
    --brand-blue: #38579e;
    --brand-sky: #7ecfe8;
    --brand-red: #ff1723;
    --brand-red-deep: #d80d1b;
    --success: #1e8a5a;
    --shadow-lg: 0 22px 48px rgba(15, 44, 69, 0.1);
    --shadow-md: 0 14px 30px rgba(15, 44, 69, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top center, rgba(126, 207, 232, 0.16), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f5f7fb 58%, #eef2f8 100%);
}

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

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

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

.page-shell {
    min-height: 100vh;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16, 34, 53, 0.08);
}

.site-header::before {
    content: "";
    display: block;
    height: 8px;
    background: linear-gradient(90deg, var(--brand-sky) 0 34%, var(--brand-red) 34% 74%, var(--brand-navy) 74% 100%);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

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

.brand-mark {
    width: clamp(104px, 12vw, 154px);
    flex: 0 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 18px rgba(16, 34, 53, 0.12);
}

.brand-mark img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-copy {
    display: none;
}

.brand-copy strong,
.hero-copy h1,
.page-hero h1,
.section-heading h2,
.hero-panel h2,
.impact-band h2,
.content-box h2,
.thanks-box h1,
.candidate-card-head h2 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
}

.brand-copy strong {
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.brand-copy small {
    color: var(--text-soft);
    max-width: 34ch;
    line-height: 1.45;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.main-nav a {
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 700;
    transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.on {
    color: var(--brand-navy);
    background: rgba(126, 207, 232, 0.22);
}

main {
    padding-bottom: 24px;
}

.hero-section {
    padding: 34px 0 16px;
}

.home-stage {
    padding: 26px 0 10px;
}

.stage-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
    gap: 26px;
    align-items: start;
}

.stage-intro,
.stage-aside,
.manifesto-shell,
.project-stage,
.focus-stage {
    position: relative;
}

.stage-intro {
    padding: 38px 40px 32px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(126, 207, 232, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 252, 255, 0.99));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.stage-intro::before,
.stage-note::before,
.manifesto-shell::before,
.focus-stage::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 16px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(126, 207, 232, 0.76) 0 18%, rgba(255, 23, 35, 0.72) 18% 62%, rgba(45, 70, 143, 0.82) 62% 100%);
}

.stage-intro h1 {
    max-width: 11ch;
    margin: 18px 0 0;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
    color: #112a4a;
}

.stage-lead {
    max-width: 42ch;
    margin: 18px 0 0;
    font-size: 1.06rem;
    line-height: 1.8;
    color: var(--text-soft);
}

.stage-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.stage-aside {
    display: grid;
    gap: 18px;
}

.stage-note {
    padding: 38px 26px 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 255, 0.99));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.stage-mark {
    width: 128px;
    margin-left: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(18, 40, 74, 0.1);
}

.stage-note p {
    margin: 18px 0 0;
    font-size: 1.02rem;
    line-height: 1.8;
    color: #203754;
}

.signal-grid {
    display: grid;
    gap: 12px;
}

.signal-card {
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(234, 244, 251, 0.96), rgba(247, 251, 255, 0.96));
    border: 1px solid rgba(45, 70, 143, 0.08);
    box-shadow: 0 8px 18px rgba(22, 40, 76, 0.05);
}

.signal-card strong {
    display: block;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.5rem;
    color: #18304e;
}

.signal-card span {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
}

.manifesto-shell,
.project-stage,
.focus-stage {
    padding: 34px 30px 30px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.99));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.manifesto-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
    gap: 24px;
}

.manifesto-copy p {
    margin: 0;
    max-width: 56ch;
    color: var(--text-soft);
    line-height: 1.8;
}

.manifesto-points {
    display: grid;
    gap: 14px;
}

.manifesto-point {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(242, 248, 253, 0.96), rgba(248, 251, 255, 0.96));
    border: 1px solid rgba(45, 70, 143, 0.08);
}

.point-bar {
    display: block;
    width: 42px;
    height: 6px;
    border-radius: 999px;
    margin-top: 10px;
    background: linear-gradient(90deg, rgba(126, 207, 232, 0.76) 0 18%, rgba(255, 23, 35, 0.72) 18% 62%, rgba(45, 70, 143, 0.82) 62% 100%);
}

.manifesto-point p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.project-ribbon {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.project-ribbon-card {
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.98));
    border: 1px solid rgba(45, 70, 143, 0.08);
    box-shadow: 0 8px 18px rgba(22, 40, 76, 0.05);
    position: relative;
    overflow: hidden;
}

.project-ribbon-card::before,
.focus-line {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(126, 207, 232, 0.76) 0 18%, rgba(255, 23, 35, 0.72) 18% 62%, rgba(45, 70, 143, 0.82) 62% 100%);
}

.project-ribbon-card small {
    display: inline-block;
    margin-top: 18px;
    color: var(--brand-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.project-ribbon-card h3,
.focus-card h3 {
    margin: 12px 0 10px;
    font-size: 1.28rem;
    color: #132b49;
}

.project-ribbon-card p,
.focus-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.72;
}

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

.focus-card {
    padding: 20px 22px 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.98));
    border: 1px solid rgba(45, 70, 143, 0.08);
    box-shadow: 0 8px 18px rgba(22, 40, 76, 0.05);
}

.focus-line {
    margin-bottom: 16px;
}

.hero-grid,
.impact-band,
.feature-panel-grid,
.split-panel,
.contact-layout,
.candidate-dashboard-grid,
.candidate-hero-inner {
    display: grid;
    gap: 24px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    max-width: 980px;
    margin: 0 auto;
}

.hero-copy,
.hero-panel,
.feature-panel,
.impact-band,
.content-box,
.project-card,
.service-card,
.model-card,
.value-card,
.service-detail-card,
.career-card,
.role-panel,
.candidate-hero-note,
.candidate-intro-card,
.candidate-side-card,
.candidate-form-section,
.candidate-status {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 253, 0.96));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.hero-copy {
    position: relative;
    overflow: hidden;
    min-height: 0;
    padding: clamp(28px, 3.2vw, 38px);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 252, 255, 0.99));
    color: var(--text);
    display: grid;
    align-content: start;
    align-self: stretch;
    min-height: 0;
}

.hero-copy::before,
.hero-copy::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-copy::before {
    left: 28px;
    right: 28px;
    top: 16px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(126, 207, 232, 0.78) 0 16%, rgba(255, 23, 35, 0.75) 16% 64%, rgba(45, 70, 143, 0.82) 64% 100%);
}

.hero-copy::after {
    width: 160px;
    height: 160px;
    right: -52px;
    top: -34px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126, 207, 232, 0.09), transparent 68%);
}

.hero-copy > * {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-blue);
    background: rgba(126, 207, 232, 0.24);
    border: 1px solid rgba(126, 207, 232, 0.28);
}

.hero-copy .eyebrow,
.hero-panel .eyebrow {
    color: var(--brand-navy);
    background: rgba(126, 207, 232, 0.24);
    border-color: rgba(45, 70, 143, 0.12);
}

.hero-copy h1,
.page-hero h1,
.thanks-box h1 {
    margin: 18px 0 12px;
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-subtitle {
    margin: 14px 0 0;
    max-width: 21ch;
    font-size: clamp(1.08rem, 1.6vw, 1.38rem);
    font-weight: 700;
    line-height: 1.16;
    color: var(--brand-navy);
}

.hero-text,
.stack-item p,
.project-card p,
.service-card p,
.model-card p,
.service-detail-card p,
.career-card p,
.content-box p,
.impact-band p,
.feature-lead,
.page-hero p {
    margin: 0;
    line-height: 1.75;
}

.hero-text {
    max-width: 42ch;
    margin-top: 12px;
    color: var(--text-soft);
    font-size: 0.96rem;
}

.hero-actions,
.popup-launch-row,
.candidate-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn,
button,
.candidate-exit-link,
.role-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
button:hover,
.candidate-exit-link:hover,
.role-back:hover {
    transform: translateY(-1px);
}

.btn-primary,
button {
    color: #fff;
    background: linear-gradient(180deg, var(--brand-red), var(--brand-red-deep));
    box-shadow: 0 16px 30px rgba(208, 40, 47, 0.24);
}

.btn-secondary,
.candidate-exit-link,
.role-back {
    color: var(--brand-navy);
    background: #fff;
    border: 1px solid rgba(16, 34, 53, 0.12);
    box-shadow: 0 10px 24px rgba(15, 44, 69, 0.08);
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    max-width: 720px;
}

.metric-chip {
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(233, 244, 252, 0.96), rgba(247, 251, 255, 0.96));
    border: 1px solid rgba(45, 70, 143, 0.08);
    min-height: 118px;
    display: grid;
    align-content: start;
    box-shadow: 0 8px 18px rgba(22, 40, 76, 0.05);
}

.metric-chip strong,
.impact-stat strong {
    display: block;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.32rem;
    letter-spacing: -0.04em;
    color: #18304e;
}

.metric-chip span {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
    line-height: 1.45;
}

.hero-panel {
    padding: 28px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 252, 255, 0.99));
    color: var(--text);
    position: relative;
    display: none;
}

.hero-panel-head {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
    padding-top: 16px;
}

.hero-panel h2,
.section-heading h2,
.content-box h2,
.impact-band h2 {
    margin: 0;
    font-size: clamp(1.7rem, 2.6vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-panel-head p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.stack-list,
.check-list,
.line-list,
.impact-stats,
.candidate-main-column,
.candidate-sidebar,
.candidate-prose,
.candidate-plan-form,
.candidate-form-section,
.candidate-meta-list,
.form-grid {
    display: grid;
    gap: 14px;
}

.stack-item,
.impact-stat,
.candidate-field-card,
.mini-form,
.mini-form-box {
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(246, 250, 254, 0.98), rgba(239, 246, 252, 0.98));
    border: 1px solid rgba(45, 70, 143, 0.08);
    box-shadow: 0 8px 18px rgba(22, 40, 76, 0.04);
}

.stack-item h3,
.project-card h3,
.service-card h3,
.model-card h3,
.value-card h3,
.service-detail-card h3,
.career-card h3 {
    margin: 0 0 8px;
    font-size: 1.16rem;
}

.stack-item p {
    color: var(--text-soft);
}

.section-block {
    padding: 18px 0;
}

.feature-panel,
.impact-band,
.content-box,
.thanks-box,
.role-panel {
    border-radius: var(--radius-xl);
    padding: 34px;
}

.feature-panel {
    background:
        linear-gradient(180deg, rgba(126, 207, 232, 0.12) 0 18%, rgba(255, 255, 255, 0.98) 18% 100%);
}

.feature-panel-grid,
.split-panel,
.contact-layout,
.impact-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-heading {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.feature-lead {
    font-size: 1.14rem;
    color: var(--text);
}

.check-list,
.line-list,
.candidate-meta-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li,
.line-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text-soft);
}

.check-list li::before,
.line-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--brand-blue), var(--brand-red));
    box-shadow: 0 0 0 5px rgba(44, 140, 181, 0.12);
}

.project-grid,
.service-grid,
.role-card-grid,
.value-grid {
    display: grid;
    gap: 18px;
}

.project-grid,
.service-grid,
.role-card-grid,
.value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-grid,
.service-detail-grid,
.career-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.project-card,
.service-card,
.model-card,
.value-card,
.service-detail-card,
.career-card,
.role-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 24px;
}

.project-card::before,
.service-card::before,
.model-card::before,
.service-detail-card::before,
.role-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--brand-sky) 0 24%, var(--brand-red) 24% 74%, var(--brand-navy) 74% 100%);
}

.project-card p,
.service-card p,
.model-card p,
.service-detail-card p,
.career-card p,
.content-box p,
.impact-band p,
.page-hero p,
.candidate-prose p,
.candidate-meta-list span,
.candidate-comp-list span {
    color: var(--text-soft);
}

.candidate-line {
    margin: 0;
}

.candidate-line-highlight {
    padding: 14px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(238, 247, 255, 0.95), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(112, 180, 226, 0.32);
    color: var(--text-main);
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 12px 28px rgba(105, 155, 199, 0.12);
}

.candidate-line-strong {
    padding-left: 16px;
    border-left: 4px solid rgba(223, 46, 56, 0.82);
    color: var(--text-main);
    font-weight: 600;
}

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

.model-card-accent {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
}

.model-step {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(26, 95, 140, 0.08);
    color: var(--brand-blue);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.impact-band {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 252, 255, 0.99));
    color: var(--text);
    position: relative;
}

.impact-band p {
    color: var(--text-soft);
}

.impact-band::before {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    top: 18px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-sky) 0 18%, var(--brand-red) 18% 68%, var(--brand-navy) 68% 100%);
}

.impact-stat {
    background: rgba(126, 207, 232, 0.1);
    border: 1px solid rgba(45, 70, 143, 0.08);
}

.impact-stat span {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
    line-height: 1.45;
}

.page-hero {
    padding: 48px 0 18px;
}

.narrow {
    max-width: 820px;
}

.page-hero p {
    max-width: 62ch;
    font-size: 1.04rem;
}

.value-card {
    min-height: 120px;
    display: flex;
    align-items: center;
}

.role-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
}

.role-card {
    display: grid;
    gap: 12px;
    min-height: 180px;
    align-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.role-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.role-card strong {
    font-size: 1.3rem;
    line-height: 1.12;
}

.role-card span {
    color: var(--text-soft);
    line-height: 1.65;
}

.role-card-primary::before {
    background: linear-gradient(90deg, var(--brand-red) 0 62%, var(--brand-blue) 62% 100%);
}

.role-card-manager::before {
    background: linear-gradient(90deg, var(--brand-blue) 0 50%, var(--brand-sky) 50% 78%, var(--brand-red) 78% 100%);
}

.field-grid,
.verification-grid,
.inline-forms,
.popup-actions,
.candidate-field-grid {
    display: grid;
    gap: 16px;
}

.field-grid,
.verification-grid,
.inline-forms,
.popup-actions,
.candidate-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-span-2 {
    grid-column: span 2;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--text);
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #ccd7e2;
    background: #fff;
    color: var(--text);
    box-shadow: none;
}

input::placeholder,
textarea::placeholder {
    color: #6a7c8e;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.error {
    padding: 14px 16px;
    border-radius: 16px;
    color: #8a1f27;
    background: rgba(208, 40, 47, 0.08);
    border: 1px solid rgba(208, 40, 47, 0.16);
}

.verification-state,
.ok-box {
    padding: 14px 16px;
    border-radius: 16px;
    color: #0d5136;
    background: rgba(30, 138, 90, 0.12);
    border: 1px solid rgba(30, 138, 90, 0.18);
}

.mini-note {
    padding: 18px;
    border-radius: 18px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
}

.mini-note strong {
    display: block;
    margin-bottom: 8px;
}

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

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 34px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 58%, rgba(244, 248, 252, 0.98) 58% 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.cta-band p {
    margin: 10px 0 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.site-footer {
    margin-top: 42px;
    padding: 32px 0 42px;
    background: linear-gradient(180deg, rgba(126, 207, 232, 0.18) 0 16%, #f5f7fb 16% 100%);
    border-top: 1px solid rgba(16, 34, 53, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 22px;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 14px;
    font-size: 1rem;
}

.footer-logo {
    width: min(100%, 220px);
    margin-bottom: 14px;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(16, 34, 53, 0.14);
}

.site-footer p,
.site-footer small,
.site-footer a {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
}

.content-card {
    max-width: 760px;
    margin: 64px auto;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.98));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.content-card h1 {
    margin: 0 0 12px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(2.2rem, 6vw, 4rem);
    letter-spacing: -0.06em;
}

.content-card p {
    margin: 0 0 14px;
    color: var(--text-soft);
    line-height: 1.75;
}

.content-card code {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 12px;
    background: var(--surface-soft);
    color: var(--brand-navy);
}

.footer-bottom {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(16, 34, 53, 0.08);
}

.table-wrap {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(16, 34, 53, 0.08);
}

.data-table th {
    color: var(--brand-navy);
    font-size: 0.92rem;
}

.popup-card {
    max-width: 760px;
    margin: 0 auto;
}

.popup-launch-link {
    width: auto;
}

.popup-close-btn {
    border: 1px solid rgba(16, 34, 53, 0.12);
}

.candidate-hero {
    padding-top: 36px;
}

.candidate-hero-inner,
.candidate-dashboard-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.72fr);
    align-items: start;
}

.candidate-hero-note,
.candidate-intro-card,
.candidate-side-card,
.candidate-form-section {
    border-radius: 24px;
    padding: 24px;
}

.candidate-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 18px;
}

.candidate-status.is-ok {
    background: rgba(30, 138, 90, 0.1);
    border-color: rgba(30, 138, 90, 0.18);
}

.candidate-status.is-error {
    background: rgba(208, 40, 47, 0.08);
    border-color: rgba(208, 40, 47, 0.16);
}

.candidate-review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(24, 47, 92, 0.14);
    background: rgba(255, 255, 255, 0.78);
    color: var(--text-strong);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(19, 37, 68, 0.06);
    cursor: pointer;
    font: inherit;
}

.candidate-review-link:hover {
    background: rgba(255, 255, 255, 0.96);
}

.candidate-plan-form textarea:target {
    border-color: rgba(58, 101, 201, 0.38);
    box-shadow: 0 0 0 4px rgba(123, 196, 239, 0.18);
    scroll-margin-top: 120px;
}

.candidate-card-head {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

@media (max-width: 720px) {
    .candidate-status {
        align-items: flex-start;
        flex-direction: column;
    }
}

.candidate-card-head h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.candidate-prose code {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(16, 34, 53, 0.08);
}

.candidate-step-list {
    margin: 4px 0 0;
    padding-left: 20px;
    color: var(--text-soft);
}

.candidate-step-list li {
    margin: 8px 0;
    line-height: 1.7;
}

.candidate-field-card {
    background: var(--surface-soft);
    border: 1px solid var(--line);
}

.admin-candidate-detail {
    scroll-margin-top: 96px;
}

.admin-command-box {
    padding: 22px 24px;
}

.admin-command-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.admin-command-copy {
    display: grid;
    gap: 8px;
}

.admin-command-copy strong {
    color: var(--text-strong);
    font-size: 1.02rem;
}

.admin-command-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.admin-inline-exit {
    width: auto;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.admin-candidate-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 10px 0 0;
    color: var(--text-soft);
    font-size: 0.96rem;
}

.admin-candidate-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(123, 196, 239, 0.08);
    border: 1px solid rgba(45, 70, 143, 0.08);
}

.admin-candidate-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-plan-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(246, 250, 254, 0.98), rgba(239, 246, 252, 0.98));
    border: 1px solid rgba(45, 70, 143, 0.08);
    box-shadow: 0 8px 18px rgba(22, 40, 76, 0.04);
}

.admin-plan-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--brand-blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-plan-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text-strong);
}

.admin-plan-item p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.admin-plan-item-wide {
    grid-column: 1 / -1;
}

.admin-review-stack,
.candidate-review-stack {
    display: grid;
    gap: 16px;
}

.admin-followup-note {
    margin: 14px 0 4px;
}

.admin-review-card,
.candidate-review-card {
    display: grid;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(246, 250, 254, 0.98), rgba(239, 246, 252, 0.98));
    border: 1px solid rgba(45, 70, 143, 0.08);
    box-shadow: 0 8px 18px rgba(22, 40, 76, 0.04);
}

.admin-review-card strong {
    color: var(--text-strong);
}

.admin-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 8px;
    font-size: 0.92rem;
}

.admin-candidate-inline-meta {
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.admin-status-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.admin-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(45, 70, 143, 0.08);
    border: 1px solid rgba(45, 70, 143, 0.12);
    color: var(--brand-blue);
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-chip-warn {
    background: rgba(208, 40, 47, 0.08);
    border-color: rgba(208, 40, 47, 0.14);
    color: #a1242a;
}

.admin-chip-ok {
    background: rgba(16, 148, 91, 0.08);
    border-color: rgba(16, 148, 91, 0.16);
    color: #0f7a4c;
}

.admin-chip-muted {
    background: rgba(16, 34, 53, 0.06);
    border-color: rgba(16, 34, 53, 0.12);
    color: var(--text-soft);
}

.admin-filter-bar {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(246, 250, 254, 0.98), rgba(239, 246, 252, 0.98));
    border: 1px solid rgba(45, 70, 143, 0.08);
}

.admin-filter-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 0.7fr)) auto;
    gap: 14px;
    align-items: end;
}

.admin-filter-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-filter-actions .btn,
.admin-filter-actions button {
    min-height: 48px;
}

.admin-filter-summary {
    margin: 0;
    color: var(--text-soft);
}

.admin-track-meta {
    display: grid;
    gap: 6px;
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.5;
}

.admin-tracking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

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

.admin-tracking-item {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(45, 70, 143, 0.08);
}

.admin-tracking-item span {
    color: var(--text-soft);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
}

.admin-tracking-item strong {
    color: var(--text-strong);
    font-size: 1.35rem;
    line-height: 1.1;
}

.admin-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.admin-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(16, 34, 53, 0.12);
    color: var(--brand-navy);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 44, 69, 0.08);
}

.admin-pagination a.is-current {
    background: linear-gradient(180deg, var(--brand-red), var(--brand-red-deep));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 16px 30px rgba(208, 40, 47, 0.24);
}

.admin-row-actions form {
    margin: 0;
}

.admin-link-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--brand-blue);
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
}

.admin-link-button.is-danger {
    color: #b42318;
}

.admin-review-reply,
.candidate-review-status-row {
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(123, 196, 239, 0.08);
    border: 1px solid rgba(45, 70, 143, 0.08);
}

.admin-review-reply span,
.candidate-review-status-row strong {
    color: var(--brand-blue);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.admin-review-reply p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.admin-review-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.admin-review-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.admin-review-table-wrap {
    overflow-x: auto;
}

.admin-review-table {
    min-width: 1500px;
}

.admin-review-table th {
    vertical-align: top;
}

.admin-review-table td {
    vertical-align: top;
}

.admin-review-table textarea,
.admin-review-table select {
    width: 100%;
}

.admin-inline-label {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-blue);
    font-size: 0.82rem;
    font-weight: 800;
}

.admin-table-cell-head {
    display: grid;
    gap: 4px;
    margin-bottom: 12px;
}

.admin-plan-text {
    color: var(--text-soft);
    line-height: 1.75;
    white-space: normal;
}

.admin-approval-cell {
    display: grid;
    gap: 10px;
    min-width: 180px;
}

.admin-review-diff p + p {
    margin-top: 14px;
}

.admin-review-diff strong {
    color: var(--text);
}

.candidate-reply-form {
    display: grid;
    gap: 10px;
}

.candidate-save-btn {
    width: auto;
    min-width: 220px;
}

.candidate-meta-list li,
.candidate-comp-list p {
    margin: 0;
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(16, 34, 53, 0.08);
}

.candidate-meta-list li:last-child,
.candidate-comp-list p:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.candidate-uploaded-files {
    margin-top: 12px;
}

.candidate-meta-list strong,
.candidate-comp-list strong {
    color: var(--brand-blue);
    font-size: 0.92rem;
}

.sms-step {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(16, 34, 53, 0.08);
}

@media (max-width: 1120px) {
    .stage-shell,
    .manifesto-shell,
    .hero-grid,
    .impact-band,
    .footer-grid,
    .cta-band,
    .candidate-dashboard-grid,
    .candidate-hero-inner {
        grid-template-columns: 1fr;
    }

    .project-ribbon,
    .focus-grid,
    .project-grid,
    .service-grid,
    .role-card-grid,
    .home-model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric-row {
        max-width: none;
    }

    .cta-band {
        justify-items: start;
    }
}

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

    .nav-bar,
    .feature-panel-grid,
    .split-panel,
    .contact-layout,
    .field-grid,
    .inline-forms,
    .verification-grid,
    .model-grid,
    .service-detail-grid,
    .career-grid,
    .candidate-field-grid,
    .popup-actions {
        grid-template-columns: 1fr;
    }

    .nav-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        justify-content: flex-start;
    }

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

    .hero-section {
        padding-top: 28px;
    }

    .hero-copy,
    .hero-panel,
    .feature-panel,
    .impact-band,
    .content-box,
    .thanks-box,
    .role-panel,
    .cta-band,
    .candidate-hero-note,
    .candidate-intro-card,
    .candidate-side-card,
    .candidate-form-section {
        padding: 24px;
        border-radius: 24px;
    }

    .hero-copy {
        min-height: auto;
    }

    .stage-intro,
    .stage-note,
    .manifesto-shell,
    .project-stage,
    .focus-stage {
        padding: 24px;
        border-radius: 24px;
    }

    .project-ribbon,
    .focus-grid,
    .project-grid,
    .service-grid,
    .value-grid,
    .role-card-grid,
    .home-model-grid,
    .metric-row,
    .admin-candidate-plan-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .popup-launch-row,
    .candidate-form-actions {
        flex-direction: column;
    }

    .admin-filter-grid {
        grid-template-columns: 1fr;
    }

    .admin-filter-actions {
        flex-direction: column;
    }

    .admin-command-row,
    .admin-review-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-command-actions,
    .admin-review-header-actions {
        justify-content: flex-start;
    }

    .admin-tracking-grid {
        grid-template-columns: 1fr;
    }

    .admin-tracking-grid-wide {
        grid-template-columns: 1fr;
    }

    .btn,
    button,
    .candidate-save-btn,
    .candidate-exit-link,
    .role-back,
    .popup-launch-link {
        width: 100%;
    }

    .field-span-2 {
        grid-column: auto;
    }
}
