:root {
    --brand: #3b7dd8;
    --brand-dark: #205fad;
    --brand-deep: #164a8e;
    --brand-soft: #eaf3ff;
    --navy: #0f2947;
    --navy-soft: #183b61;
    --sky: #6cc9e8;
    --gold: #f1c75b;
    --ink: #172536;
    --muted: #637083;
    --line: #dce5ef;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --success: #16845b;
    --danger: #bd2d3a;
    --warning: #9a6711;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --shadow-sm: 0 8px 24px rgba(15, 41, 71, 0.08);
    --shadow-md: 0 18px 48px rgba(15, 41, 71, 0.13);
    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 48px;
    --space-7: 64px;
    --space-8: 88px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: var(--brand-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--brand-deep);
}

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

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
    transform: translateY(-160%);
}

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

:focus-visible {
    outline: 3px solid rgba(59, 125, 216, 0.4);
    outline-offset: 3px;
}

.civic-strip {
    color: #eaf3ff;
    background: var(--navy);
    font-size: 13px;
    letter-spacing: 0.01em;
}

.civic-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    gap: 10px;
    text-align: center;
}

.civic-strip a {
    color: #fff;
    font-weight: 700;
}

.civic-strip__pulse {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    background: #66dda8;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(102, 221, 168, 0.13);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(220, 229, 239, 0.86);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    text-decoration: none;
}

.brand:hover {
    color: var(--navy);
}

.brand__mark {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--brand), var(--brand-deep));
    border-radius: 14px;
    box-shadow: 0 9px 20px rgba(59, 125, 216, 0.23);
}

.brand__mark svg {
    width: 31px;
    height: 31px;
}

.brand__text {
    display: grid;
    line-height: 1.15;
}

.brand__text strong {
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.brand__text small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav > a:not(.button) {
    position: relative;
    padding: 11px 12px;
    color: #425268;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    border-radius: 10px;
}

.site-nav > a:not(.button):hover,
.site-nav > a.is-active:not(.button) {
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.nav-toggle span:not(.visually-hidden) {
    display: block;
    width: 100%;
    height: 2px;
    margin-block: 5px;
    background: var(--navy);
    border-radius: 3px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 24px;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button--primary {
    color: #fff;
    background: linear-gradient(145deg, var(--brand), var(--brand-dark));
    box-shadow: 0 10px 25px rgba(59, 125, 216, 0.24);
}

.button--primary:hover {
    color: #fff;
    background: linear-gradient(145deg, var(--brand-dark), var(--brand-deep));
    box-shadow: 0 14px 30px rgba(59, 125, 216, 0.3);
}

.button--secondary {
    color: var(--navy);
    background: #fff;
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.button--secondary:hover {
    color: var(--brand-dark);
    border-color: #a9c4e8;
}

.button--light {
    color: var(--navy);
    background: #fff;
    box-shadow: 0 12px 30px rgba(4, 22, 40, 0.2);
}

.button--danger {
    color: #fff;
    background: var(--danger);
}

.button--small {
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
}

.button--wide {
    width: 100%;
}

.button[disabled] {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 3px;
    background: var(--brand);
    border-radius: 10px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-block: var(--space-8);
    background:
        radial-gradient(circle at 10% 10%, rgba(108, 201, 232, 0.2), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(59, 125, 216, 0.16), transparent 25%),
        linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.hero::after {
    position: absolute;
    right: -150px;
    bottom: -190px;
    width: 440px;
    height: 440px;
    content: "";
    border: 70px solid rgba(59, 125, 216, 0.045);
    border-radius: 50%;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    align-items: center;
    gap: 70px;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(46px, 6vw, 76px);
    font-weight: 900;
    line-height: 0.99;
    letter-spacing: -0.062em;
}

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

.hero__lead {
    max-width: 650px;
    margin: 28px 0 0;
    color: #526276;
    font-size: 19px;
    line-height: 1.75;
}

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

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin: 28px 0 0;
    padding: 0;
    color: #536277;
    font-size: 13px;
    font-weight: 700;
    list-style: none;
}

.hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero__trust li::before {
    display: grid;
    width: 20px;
    height: 20px;
    content: "✓";
    place-items: center;
    color: #fff;
    background: var(--success);
    border-radius: 50%;
    font-size: 11px;
}

.hero__visual {
    position: relative;
    min-height: 540px;
}

.hero__image {
    position: absolute;
    inset: 0 24px 24px 0;
    overflow: hidden;
    background: var(--navy);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(15, 41, 71, 0.03) 30%, rgba(15, 41, 71, 0.76) 100%);
}

.hero__image-caption {
    position: absolute;
    right: 34px;
    bottom: 52px;
    left: 28px;
    z-index: 1;
    color: #fff;
}

.hero__image-caption small {
    display: block;
    margin-bottom: 8px;
    color: #cbe5ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__image-caption strong {
    display: block;
    max-width: 430px;
    font-size: 25px;
    line-height: 1.25;
}

.hero__signal-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 230px;
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(220, 229, 239, 0.8);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.hero__signal-card span {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    place-items: center;
    color: #fff;
    background: var(--brand);
    border-radius: 13px;
    font-size: 20px;
    font-weight: 900;
}

.hero__signal-card strong {
    display: block;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.3;
}

.hero__signal-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.5;
}

.section {
    padding-block: var(--space-8);
}

.section--soft {
    background: var(--surface-soft);
}

.section--compact {
    padding-block: var(--space-7);
}

.section-heading {
    max-width: 740px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-heading p {
    max-width: 680px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 18px;
}

.section-heading--left {
    margin-inline: 0;
    text-align: left;
}

.section-heading--left p {
    margin-left: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.step-card {
    position: relative;
    min-height: 286px;
    padding: 32px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.step-card::after {
    position: absolute;
    top: -38px;
    right: -22px;
    color: rgba(59, 125, 216, 0.07);
    content: attr(data-step);
    font-size: 125px;
    font-weight: 950;
    line-height: 1;
}

.step-card__number {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, var(--brand), var(--brand-dark));
    border-radius: 14px;
    font-weight: 900;
}

.step-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--navy);
    font-size: 21px;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.step-card p {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: var(--muted);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-card {
    display: flex;
    align-items: center;
    min-height: 102px;
    padding: 20px;
    gap: 16px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.category-card:hover {
    color: var(--ink);
    border-color: #9ebee8;
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.category-card__icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    color: var(--brand-dark);
    background: var(--brand-soft);
    border-radius: 14px;
    font-size: 24px;
    font-weight: 900;
}

.category-card strong {
    font-size: 15px;
    line-height: 1.35;
}

.manifesto {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.manifesto__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    filter: saturate(0.7);
}

.manifesto::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(15, 41, 71, 0.99) 0%, rgba(15, 41, 71, 0.88) 56%, rgba(15, 41, 71, 0.6) 100%);
}

.manifesto__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    min-height: 560px;
    padding-block: var(--space-8);
    gap: 80px;
}

.manifesto blockquote {
    margin: 0;
    font-size: clamp(35px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.048em;
}

.manifesto blockquote span {
    color: #8cdff8;
}

.manifesto__copy p {
    margin: 0 0 20px;
    color: #d7e4f2;
    font-size: 17px;
}

.manifesto__copy .button {
    margin-top: 10px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.principle {
    padding: 28px;
    background: var(--surface-soft);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
}

.principle span {
    display: grid;
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    place-items: center;
    color: var(--brand-dark);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-weight: 900;
}

.principle h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 850;
}

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

.cta-band {
    padding-block: var(--space-7);
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 44px 50px;
    gap: 30px;
    color: #fff;
    background: linear-gradient(125deg, var(--brand-deep), var(--brand) 65%, #55b2dd);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(37, 93, 165, 0.25);
}

.cta-band h2 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.cta-band p {
    margin: 12px 0 0;
    color: #e5f3ff;
}

.page-hero {
    padding-block: 70px;
    background:
        radial-gradient(circle at 75% 20%, rgba(108, 201, 232, 0.2), transparent 26%),
        linear-gradient(180deg, #f3f8ff, #fff);
    border-bottom: 1px solid #edf2f7;
}

.page-hero__inner {
    max-width: 850px;
}

.page-hero h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(40px, 6vw, 62px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.page-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 19px;
}

.page-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    color: var(--brand-dark);
    background: var(--brand-soft);
    border: 1px solid #cee2fb;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
    gap: 44px;
}

.content-card,
.sidebar-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.content-card {
    padding: 40px;
}

.content-card--spaced {
    margin-top: 28px;
}

.sidebar-card {
    padding: 28px;
}

.sidebar-card + .sidebar-card {
    margin-top: 18px;
}

.sidebar-card h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 19px;
    font-weight: 850;
}

.sidebar-card p,
.sidebar-card li {
    color: var(--muted);
    font-size: 14px;
}

.sidebar-card ul {
    margin: 0;
    padding-left: 20px;
}

.notice-box {
    padding: 20px 22px;
    color: #38506b;
    background: #f4f8fd;
    border: 1px solid #d9e6f4;
    border-left: 4px solid var(--brand);
    border-radius: 12px;
}

.notice-box--warning {
    color: #65470f;
    background: #fff9e9;
    border-color: #f0dda5;
    border-left-color: var(--gold);
}

.notice-box--danger {
    color: #74232b;
    background: #fff2f3;
    border-color: #f0c4c8;
    border-left-color: var(--danger);
}

.notice-box p:last-child {
    margin-bottom: 0;
}

.alert {
    padding: 16px 18px;
    border-radius: 12px;
}

.alert--danger {
    color: #7d2831;
    background: #fff0f2;
    border: 1px solid #efc1c6;
}

.alert--success {
    color: #0f6344;
    background: #edf9f4;
    border: 1px solid #bfe5d5;
}

.signal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 32px;
}

.signal-form {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-section {
    padding: 36px 40px;
    border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
    border-bottom: 0;
}

.form-section__heading {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    gap: 16px;
}

.form-section__number {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    color: #fff;
    background: var(--brand);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
}

.form-section__heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.form-section__heading p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

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

.form-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 12px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

.form-label small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.required-mark {
    color: var(--danger);
}

.form-control,
.form-select {
    min-height: 52px;
    padding: 13px 15px;
    color: var(--ink);
    background-color: #fff;
    border: 1px solid #cfdbe8;
    border-radius: 12px;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(59, 125, 216, 0.12);
}

textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

.field-hint {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.field-error {
    margin: 8px 0 0;
    color: var(--danger);
    font-size: 13px;
    font-weight: 700;
}

.has-error .form-control,
.has-error .form-select {
    border-color: var(--danger);
}

.dropzone {
    position: relative;
    display: grid;
    min-height: 190px;
    padding: 30px;
    place-items: center;
    text-align: center;
    background: #f8fbff;
    border: 2px dashed #b6cbe2;
    border-radius: 16px;
    transition: border-color 160ms ease, background 160ms ease;
}

.dropzone.is-dragging {
    background: var(--brand-soft);
    border-color: var(--brand);
}

.dropzone input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.dropzone__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    place-items: center;
    color: var(--brand-dark);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    font-size: 24px;
    font-weight: 900;
}

.dropzone strong {
    display: block;
    color: var(--navy);
    font-size: 16px;
}

.dropzone span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.dropzone label {
    margin-top: 14px;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

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

.file-preview__item {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr 30px;
    align-items: center;
    min-width: 0;
    padding: 9px;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.file-preview__item img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 8px;
}

.file-preview__item span {
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-preview__remove {
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    place-items: center;
    color: var(--danger);
    background: #fff1f2;
    border: 0;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1;
}

.checkbox-card {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: start;
    padding: 16px;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.checkbox-card + .checkbox-card {
    margin-top: 12px;
}

.checkbox-card input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--brand);
}

.checkbox-card label {
    margin: 0;
    color: #405168;
    font-size: 13px;
    line-height: 1.55;
}

.form-actions {
    padding: 30px 40px 40px;
    background: #f8fbff;
}

.form-actions__note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.sticky-help {
    position: sticky;
    top: 112px;
}

.help-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.help-list li {
    position: relative;
    padding: 0 0 18px 28px;
    color: var(--muted);
    font-size: 14px;
}

.help-list li:last-child {
    padding-bottom: 0;
}

.help-list li::before {
    position: absolute;
    top: 4px;
    left: 0;
    display: grid;
    width: 18px;
    height: 18px;
    content: "✓";
    place-items: center;
    color: #fff;
    background: var(--success);
    border-radius: 50%;
    font-size: 10px;
}

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

.legal-content {
    max-width: 900px;
    margin-inline: auto;
}

.legal-content h2 {
    margin: 46px 0 16px;
    color: var(--navy);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.legal-content h3 {
    margin: 30px 0 12px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 850;
}

.legal-content p,
.legal-content li {
    color: #4d5d70;
}

.legal-content li + li {
    margin-top: 8px;
}

.legal-content table {
    width: 100%;
    margin-block: 24px;
    border-collapse: collapse;
}

.legal-content th,
.legal-content td {
    padding: 14px;
    text-align: left;
    vertical-align: top;
    border: 1px solid var(--line);
}

.legal-content th {
    color: var(--navy);
    background: var(--surface-soft);
}

.idea-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.idea-card {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.idea-card h2,
.idea-card h3 {
    margin: 0 0 14px;
    color: var(--navy);
    font-weight: 900;
}

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

.timeline {
    position: relative;
    max-width: 800px;
    margin-inline: auto;
}

.timeline::before {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 27px;
    width: 2px;
    content: "";
    background: #cfe0f2;
}

.timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
}

.timeline__item + .timeline__item {
    margin-top: 28px;
}

.timeline__number {
    z-index: 1;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: #fff;
    background: var(--brand);
    border: 6px solid #f5f8fc;
    border-radius: 50%;
    font-weight: 900;
}

.timeline__content {
    padding: 24px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.timeline__content h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 21px;
    font-weight: 900;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    place-items: center;
    color: var(--brand-dark);
    background: var(--brand-soft);
    border-radius: 14px;
    font-size: 19px;
    font-weight: 900;
}

.contact-card h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 900;
}

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

.success-panel {
    max-width: 780px;
    margin-inline: auto;
    padding: 54px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.success-panel__icon {
    display: grid;
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    place-items: center;
    color: #fff;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(22, 132, 91, 0.25);
    font-size: 34px;
}

.success-panel h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(38px, 6vw, 58px);
    font-weight: 900;
    letter-spacing: -0.05em;
}

.success-panel > p {
    max-width: 620px;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 18px;
}

.signal-code {
    display: inline-grid;
    margin: 28px 0;
    padding: 16px 24px;
    color: var(--navy);
    background: var(--brand-soft);
    border: 1px dashed #98bae7;
    border-radius: 14px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.site-footer {
    padding: 70px 0 26px;
    color: #c9d6e4;
    background: #0b2038;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
    gap: 44px;
}

.brand--footer {
    color: #fff;
}

.brand--footer:hover {
    color: #fff;
}

.brand--footer .brand__text small {
    color: #9eb2c8;
}

.site-footer__brand p {
    max-width: 350px;
    margin: 22px 0 0;
    color: #9eb2c8;
}

.site-footer h2 {
    margin: 4px 0 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: 0.03em;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 10px;
}

.site-footer a {
    color: #b8c9da;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer__notice {
    padding: 22px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.site-footer__notice p {
    margin: 0;
    color: #9eb2c8;
    font-size: 13px;
}

.photo-credit {
    margin: 36px 0 0;
    color: #8097ae;
    font-size: 11px;
    text-align: center;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 46px;
    padding-top: 22px;
    gap: 24px;
    color: #7f95ac;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
}

/* Администраторски панел */
.admin-body {
    min-height: 100vh;
    background: #f3f6fa;
}

.admin-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 26px 20px;
    color: #d3e0ec;
    background: var(--navy);
}

.admin-sidebar .brand {
    color: #fff;
}

.admin-sidebar .brand__text small {
    color: #93aac1;
}

.admin-nav {
    display: grid;
    margin-top: 36px;
    gap: 6px;
}

.admin-nav a,
.admin-nav button {
    display: flex;
    width: 100%;
    padding: 12px 14px;
    color: #bfd0e1;
    background: transparent;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 750;
    text-align: left;
    text-decoration: none;
}

.admin-nav a:hover,
.admin-nav a.is-active,
.admin-nav button:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
}

.admin-main {
    min-width: 0;
    padding: 34px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 20px;
}

.admin-topbar h1 {
    margin: 0;
    color: var(--navy);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.admin-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.admin-card + .admin-card {
    margin-top: 20px;
}

.admin-card__title {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 19px;
    font-weight: 900;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.admin-filters {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 1fr auto;
    align-items: end;
    gap: 14px;
}

.setup-spacing {
    margin-top: 18px;
}

.setup-button {
    margin-top: 24px;
}

.admin-notes {
    min-height: 150px !important;
}

.danger-zone {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.official-letter {
    max-width: 900px;
    margin-inline: auto;
    padding: 58px;
    color: #1a1a1a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.7;
}

.official-letter h1 {
    margin: 42px 0 28px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 22px;
}

.admin-stat {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.admin-stat span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
}

.admin-stat strong {
    display: block;
    margin-top: 6px;
    color: var(--navy);
    font-size: 30px;
    font-weight: 900;
}

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

.admin-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid #edf1f5;
}

.admin-table th {
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.admin-table td {
    color: #3e4d60;
    font-size: 13px;
}

.admin-table tr:last-child td {
    border-bottom: 0;
}

.status-badge {
    display: inline-flex;
    padding: 5px 9px;
    color: #31516e;
    background: #edf4fa;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.status-badge--new {
    color: #174f93;
    background: #e7f1ff;
}

.status-badge--sent,
.status-badge--published {
    color: #0f6848;
    background: #e6f7ef;
}

.status-badge--rejected {
    color: #8b3038;
    background: #fff0f2;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: start;
    gap: 20px;
}

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

.detail-list div {
    min-width: 0;
}

.detail-list dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.detail-list dd {
    margin: 5px 0 0;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-weight: 650;
}

.signal-description {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    white-space: pre-wrap;
}

.admin-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.admin-images a {
    overflow: hidden;
    border-radius: 12px;
}

.admin-images img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.admin-login {
    display: grid;
    min-height: 100vh;
    padding: 30px;
    place-items: center;
    background:
        radial-gradient(circle at 10% 10%, rgba(108, 201, 232, 0.18), transparent 28%),
        var(--surface-soft);
}

.admin-login__card {
    width: min(460px, 100%);
    padding: 38px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.admin-login__card .brand {
    margin-bottom: 28px;
}

.admin-login__card h1 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 30px;
    font-weight: 900;
}

.admin-login__card > p {
    margin: 0 0 26px;
    color: var(--muted);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    gap: 6px;
}

.pagination a,
.pagination span {
    display: grid;
    min-width: 38px;
    height: 38px;
    padding-inline: 8px;
    place-items: center;
    color: var(--navy);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.pagination span {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

@media (max-width: 1050px) {
    .site-nav > a:not(.button) {
        padding-inline: 8px;
        font-size: 13px;
    }

    .hero__grid {
        grid-template-columns: 1fr 420px;
        gap: 38px;
    }

    .hero__visual {
        min-height: 500px;
    }

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

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

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 18px 20px 22px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav > a:not(.button) {
        padding: 13px 14px;
        font-size: 15px;
    }

    .site-nav .button {
        margin-top: 8px;
    }

    .hero__grid,
    .manifesto__inner,
    .content-grid,
    .signal-layout,
    .admin-detail-grid {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        gap: 52px;
    }

    .hero__copy {
        text-align: center;
    }

    .hero__lead,
    .hero__trust {
        margin-inline: auto;
    }

    .hero__actions,
    .hero__trust {
        justify-content: center;
    }

    .hero__visual {
        width: min(620px, 100%);
        margin-inline: auto;
    }

    .steps-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .manifesto__inner {
        gap: 40px;
    }

    .sticky-help {
        position: static;
    }

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

    .admin-sidebar {
        position: static;
        height: auto;
    }

    .admin-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 20px;
    }

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

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

@media (max-width: 680px) {
    :root {
        --space-7: 52px;
        --space-8: 64px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .civic-strip__inner {
        min-height: 42px;
        font-size: 11px;
    }

    .civic-strip a,
    .civic-strip__pulse {
        display: none;
    }

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

    .brand__mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .brand__text strong {
        font-size: 18px;
    }

    .brand__text small {
        display: none;
    }

    .hero {
        padding-top: 54px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 60px);
    }

    .hero__lead {
        font-size: 17px;
    }

    .hero__actions {
        display: grid;
    }

    .hero__visual {
        min-height: 410px;
    }

    .hero__image {
        inset: 0 10px 14px 0;
    }

    .hero__image-caption {
        right: 22px;
        bottom: 34px;
        left: 22px;
    }

    .hero__image-caption strong {
        max-width: 230px;
        font-size: 20px;
    }

    .hero__signal-card {
        width: 176px;
        padding: 16px;
    }

    .hero__signal-card span {
        width: 36px;
        height: 36px;
        margin-bottom: 11px;
    }

    .hero__signal-card strong {
        font-size: 14px;
    }

    .hero__signal-card small {
        display: none;
    }

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

    .section-heading p {
        font-size: 16px;
    }

    .category-grid,
    .principles-grid,
    .idea-grid,
    .form-grid,
    .file-preview,
    .site-footer__grid,
    .contact-grid,
    .admin-stats,
    .detail-list {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 84px;
    }

    .manifesto__inner {
        min-height: 620px;
    }

    .cta-band__inner {
        display: grid;
        padding: 34px 26px;
        text-align: center;
    }

    .page-hero {
        padding-block: 52px;
    }

    .content-card,
    .form-section,
    .form-actions,
    .success-panel {
        padding: 26px 22px;
    }

    .signal-form {
        border-radius: 20px;
    }

    .form-section__heading {
        display: grid;
    }

    .site-footer__grid {
        gap: 32px;
    }

    .site-footer__bottom {
        display: grid;
        text-align: center;
    }

    .admin-main {
        padding: 20px 14px;
    }

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

    .admin-topbar {
        display: grid;
    }

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

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

    .official-letter {
        padding: 26px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .civic-strip,
    .site-header,
    .site-footer,
    .no-print,
    .button {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    .admin-main,
    .content-card {
        padding: 0;
        border: 0;
        box-shadow: none;
    }
}
