:root {
    --ink: #17151c;
    --ink-soft: #5f5b68;
    --surface: #ffffff;
    --canvas: #f7f7f5;
    --line: #e9e7ec;
    --green: #0ab86b;
    --green-deep: #078c53;
    --green-soft: #eaf9f2;
    --violet: #7263ad;
    --violet-soft: #f0edfa;
    --shadow: 0 18px 50px rgba(30, 24, 42, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1180px;
}

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

html {
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    max-width: 100%;
    overflow-x: clip;
    color: var(--ink);
    background: var(--canvas);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--violet);
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 15px;
    color: #fff;
    background: var(--ink);
    border-radius: 10px;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(233, 231, 236, 0.88);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

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

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

.brand img {
    display: block;
    width: 176px;
    height: auto;
}

.home-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.home-link:hover {
    color: var(--green-deep);
    border-color: rgba(10, 184, 107, 0.35);
    background: var(--green-soft);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 44px 44px,
        linear-gradient(30deg, #15131a 0%, #1b1821 64%, #211d2b 100%);
}

.hero::after {
    position: absolute;
    right: -80px;
    bottom: -155px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
    content: "";
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 104px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-glow--green {
    top: -210px;
    right: 5%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(10, 184, 107, 0.24), rgba(10, 184, 107, 0) 68%);
}

.hero-glow--violet {
    bottom: -280px;
    left: 15%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(114, 99, 173, 0.28), rgba(114, 99, 173, 0) 68%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(10, 184, 107, 0.14);
}

.hero h1 {
    max-width: 1050px;
    margin: 0;
    font-size: clamp(48px, 7.5vw, 92px);
    font-weight: 760;
    hyphens: manual;
    letter-spacing: -0.055em;
    line-height: 0.98;
    overflow-wrap: break-word;
}

.hero h1 span {
    color: #a79dd0;
}

.hero-lead {
    max-width: 660px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.55;
}

.update-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 30px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.2;
}

.policy-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 62px;
    align-items: start;
    padding-top: 76px;
    padding-bottom: 110px;
}

.toc {
    position: sticky;
    top: 112px;
}

.toc-card {
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 36px rgba(30, 24, 42, 0.045);
}

.toc-title {
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.toc ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: toc;
}

.toc li {
    counter-increment: toc;
}

.toc li + li {
    margin-top: 6px;
}

.toc a {
    display: grid;
    grid-template-columns: 25px 1fr;
    gap: 8px;
    align-items: baseline;
    padding: 4px 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.toc a::before {
    color: #aaa5b1;
    content: counter(toc, decimal-leading-zero);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.04em;
}

.toc a:hover {
    color: var(--green-deep);
    transform: translateX(2px);
}

.toc-contact {
    margin-top: 22px;
    padding-top: 19px;
    border-top: 1px solid var(--line);
}

.toc-contact span,
.toc-contact a {
    display: block;
}

.toc-contact span {
    margin-bottom: 3px;
    color: var(--ink-soft);
    font-size: 11px;
}

.toc-contact a {
    color: var(--green-deep);
    font-size: 13px;
    font-weight: 700;
}

.policy {
    min-width: 0;
}

.intro-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    margin-bottom: 16px;
    padding: 28px 30px;
    border: 1px solid rgba(10, 184, 107, 0.15);
    background: linear-gradient(135deg, #f4fbf7, #fff 70%);
    border-radius: var(--radius-md);
}

.intro-card p {
    margin: 0;
    color: #3e3a44;
    font-size: 16px;
    line-height: 1.7;
}

.intro-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--green-deep);
    background: var(--green-soft);
    border-radius: 14px;
}

.policy-section {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 24px;
    padding: 54px 0;
    border-bottom: 1px solid var(--line);
}

.policy-section--last {
    border-bottom: 0;
}

.section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 34px;
    margin-top: 4px;
    color: var(--violet);
    background: var(--violet-soft);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.section-body h2 {
    margin: 0 0 22px;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 740;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.section-body p {
    margin: 0;
    color: var(--ink-soft);
}

.section-body p + p,
.section-body p + .check-list,
.section-body .check-list + p {
    margin-top: 18px;
}

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

.definition-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.definition-list > div {
    padding: 20px 22px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 14px;
}

.definition-list dt {
    margin-bottom: 4px;
    font-weight: 750;
    line-height: 1.4;
}

.definition-list dd {
    margin: 0;
    color: var(--ink-soft);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    color: var(--ink-soft);
}

.check-list li::before {
    position: absolute;
    top: 0.52em;
    left: 0;
    width: 18px;
    height: 18px;
    border: 5px solid var(--green-soft);
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(10, 184, 107, 0.16);
    content: "";
}

.note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    margin-top: 24px;
    padding: 20px 22px;
    color: var(--violet);
    background: var(--violet-soft);
    border-radius: 14px;
}

.note p {
    color: #514767;
}

.company-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: var(--radius-md);
    font-style: normal;
}

.company-row {
    display: grid;
    grid-template-columns: minmax(140px, 0.55fr) 1fr;
    gap: 30px;
    padding: 17px 22px;
}

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

.company-row span {
    color: var(--ink-soft);
    font-size: 13px;
}

.company-row strong {
    font-size: 14px;
    font-weight: 700;
}

.contact-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-top: 24px;
    padding: 44px;
    color: #fff;
    background: linear-gradient(135deg, #6d5da8 0%, #51447f 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-banner::after {
    position: absolute;
    right: -75px;
    bottom: -105px;
    width: 280px;
    height: 280px;
    border: 45px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
    content: "";
}

.contact-banner > * {
    position: relative;
    z-index: 1;
}

.contact-kicker {
    color: #cfc8eb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-banner h2 {
    max-width: 510px;
    margin: 9px 0 10px;
    font-size: clamp(25px, 3vw, 34px);
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.contact-banner p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.contact-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    color: #12432f;
    background: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-button:hover {
    color: #12432f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.site-footer {
    color: rgba(255, 255, 255, 0.62);
    background: #15131a;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    min-height: 132px;
}

.footer-inner img {
    width: 145px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.76;
}

.footer-inner p {
    margin: 0;
    font-size: 13px;
    text-align: center;
}

.footer-inner a {
    justify-self: end;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

@media (max-width: 960px) {
    .policy-layout {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 48px;
    }

    .toc {
        position: static;
    }

    .toc-card {
        padding: 22px 24px;
    }

    .toc ol {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 28px;
    }

    .toc-contact {
        display: flex;
        gap: 8px;
    }

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

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

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

    .brand img {
        width: 138px;
    }

    .home-link {
        width: 42px;
        height: 42px;
        justify-content: center;
        padding: 0;
    }

    .home-link span {
        position: absolute;
        overflow: hidden;
        width: 1px;
        height: 1px;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        padding-top: 64px;
        padding-bottom: 72px;
    }

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

    .hero h1 span {
        font-size: 0.84em;
    }

    .update-badge {
        align-items: flex-start;
        border-radius: 15px;
    }

    .update-badge svg {
        flex: 0 0 auto;
    }

    .policy-layout {
        padding-top: 32px;
        padding-bottom: 70px;
    }

    .toc ol {
        grid-template-columns: 1fr;
    }

    .toc-contact {
        display: block;
    }

    .intro-card {
        grid-template-columns: 1fr;
        padding: 23px;
    }

    .policy-section {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 42px 0;
    }

    .section-number {
        width: 47px;
        height: 29px;
    }

    .section-body h2 {
        margin-bottom: 18px;
    }

    .company-row {
        grid-template-columns: 1fr;
        gap: 3px;
        padding: 16px 18px;
    }

    .contact-banner {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 13px;
        padding: 35px 0;
    }

    .footer-inner a {
        justify-self: center;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}

@media print {
    :root {
        --canvas: #fff;
    }

    .site-header,
    .toc,
    .contact-banner,
    .site-footer {
        display: none;
    }

    .hero {
        min-height: auto;
        color: #111;
        background: #fff;
    }

    .hero h1 span,
    .hero-lead,
    .eyebrow,
    .update-badge {
        color: #111;
    }

    .hero-inner {
        padding: 30px 0;
    }

    .policy-layout {
        display: block;
        padding: 0;
    }

    .policy-section {
        break-inside: avoid;
    }
}
