:root {
    --orange: #ff5722;
    --orange-dark: #d94718;
    --navy: #2d3047;
    --navy-dark: #17192a;
    --ink: #292a38;
    --muted: #626477;
    --surface: #ffffff;
    --surface-soft: #fff7f2;
    --border: rgba(45, 48, 71, 0.12);
    --success: #247a52;
    --warning: #9a6500;
    --shadow: 0 22px 60px rgba(45, 48, 71, 0.1);
    --font: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: #f8f8fa;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 10px 15px;
    border-radius: 10px;
    color: #fff;
    background: var(--navy-dark);
    transform: translateY(-160%);
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

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

.brand { color: var(--navy); font-size: 1.6rem; font-weight: 900; letter-spacing: -0.05em; }
.brand span { color: var(--orange); }

.site-nav { display: flex; align-items: center; gap: 22px; font-size: 0.93rem; font-weight: 800; }
.site-nav a:not(.button):hover { color: var(--orange-dark); }

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 12px 28px rgba(255, 87, 34, 0.2);
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

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

.news-hero {
    padding: 86px 0 72px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 87, 34, 0.14), transparent 30%),
        linear-gradient(180deg, #fff, #fff9f5);
}

.eyebrow {
    width: fit-content;
    display: inline-flex;
    margin: 0 0 16px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--orange-dark);
    background: rgba(255, 87, 34, 0.1);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-hero .eyebrow { margin-inline: auto; }
.news-hero h1, .article-hero h1 { margin: 0; color: var(--navy-dark); font-weight: 900; line-height: 1.05; letter-spacing: -0.045em; }
.news-hero h1 { font-size: clamp(2.7rem, 7vw, 5rem); }
.news-hero p { max-width: 720px; margin: 20px auto 0; color: var(--muted); font-size: 1.1rem; }

.news-index { padding: 72px 0 100px; }
.news-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }

.news-card {
    min-width: 0;
    display: grid;
    grid-template-rows: 260px 1fr;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(45, 48, 71, 0.07);
}

.news-card__image { overflow: hidden; background: var(--surface-soft); }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; transition: transform 250ms ease; }
.news-card:hover .news-card__image img { transform: scale(1.025); }
.news-card__body { display: flex; flex-direction: column; padding: 28px; }
.news-card__meta { color: var(--orange-dark); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.07em; text-transform: uppercase; }
.news-card h2 { margin: 10px 0 0; color: var(--navy-dark); font-size: 1.5rem; line-height: 1.2; }
.news-card p { margin: 12px 0 24px; color: var(--muted); }
.news-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--orange-dark); font-weight: 900; }
.news-card__link span { transition: transform 180ms ease; }
.news-card__link:hover span { transform: translateX(4px); }

.article-hero { padding: 62px 0 48px; background: #fff; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 34px; padding: 0; color: var(--muted); font-size: 0.88rem; list-style: none; }
.breadcrumbs li:not(:last-child)::after { margin-left: 8px; content: '/'; }
.breadcrumbs a:hover { color: var(--orange-dark); }
.article-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr); gap: 58px; align-items: center; }
.article-hero h1 { font-size: clamp(2.5rem, 6vw, 4.65rem); }
.article-hero__lead { margin: 20px 0 0; color: var(--muted); font-size: 1.15rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; color: var(--muted); font-size: 0.88rem; font-weight: 800; }
.article-hero figure { margin: 0; padding: 14px; border: 1px solid var(--border); border-radius: 25px; background: #fff; box-shadow: var(--shadow); }
.article-hero figure img { width: 100%; max-height: 520px; border-radius: 18px; object-fit: cover; object-position: center 32%; }

.article-main { padding: 68px 0 96px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(220px, 0.5fr); gap: 68px; align-items: start; }
.article-body { min-width: 0; }
.article-body > p:first-child { margin-top: 0; color: var(--navy); font-size: 1.2rem; font-weight: 700; }
.article-body h2 { margin: 48px 0 14px; color: var(--navy-dark); font-size: clamp(1.75rem, 4vw, 2.35rem); line-height: 1.16; letter-spacing: -0.025em; }
.article-body h3 { margin: 30px 0 8px; color: var(--navy-dark); font-size: 1.25rem; }
.article-body p { margin: 0 0 18px; color: var(--muted); }
.article-body ul, .article-body ol { display: grid; gap: 12px; margin: 18px 0 26px; padding-left: 23px; color: var(--muted); }
.article-body strong { color: var(--navy-dark); }

.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 24px 0 32px; }
.benefit-card { padding: 22px; border: 1px solid var(--border); border-radius: 18px; background: #fff; }
.benefit-card h3 { margin: 0 0 7px; font-size: 1.08rem; }
.benefit-card p { margin: 0; font-size: 0.95rem; }

.callout { margin: 30px 0; padding: 24px; border-left: 5px solid var(--orange); border-radius: 0 16px 16px 0; background: var(--surface-soft); }
.callout--status { border-left-color: var(--success); background: #f2faf6; }
.callout--progress { border-left-color: #d18b00; background: #fff9eb; }
.callout h2, .callout h3 { margin: 0 0 8px; font-size: 1.2rem; }
.callout p:last-child { margin-bottom: 0; }

.status-list { display: grid; gap: 14px; margin: 24px 0 34px; padding: 0; list-style: none; }
.status-list li { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: #fff; }
.status-list__badge { min-width: 94px; height: fit-content; padding: 5px 9px; border-radius: 999px; color: var(--success); background: #eaf7f0; font-size: 0.72rem; font-weight: 900; text-align: center; text-transform: uppercase; }
.status-list__badge--progress { color: var(--warning); background: #fff3d6; }

.article-sidebar { position: sticky; top: 104px; padding: 24px; border: 1px solid var(--border); border-radius: 20px; background: #fff; }
.article-sidebar h2 { margin: 0; color: var(--navy-dark); font-size: 1.2rem; }
.article-sidebar p { margin: 10px 0 20px; color: var(--muted); font-size: 0.94rem; }
.article-sidebar .button { width: 100%; }
.article-sidebar .button + .button { margin-top: 10px; }

.site-footer { padding: 48px 0 26px; color: rgba(255, 255, 255, 0.72); background: #10111d; }
.site-footer__grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.site-footer p { margin: 8px 0 0; }
.site-footer__links { display: grid; gap: 10px; text-align: right; font-weight: 800; }
.site-footer__links a:hover { color: #ffb69d; }
.site-footer__bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.84rem; }

@media (max-width: 900px) {
    .article-hero__grid, .article-layout { grid-template-columns: 1fr; }
    .article-hero figure { max-width: 680px; }
    .article-sidebar { position: static; }
}

@media (max-width: 720px) {
    .container { width: min(100% - 28px, 1160px); }
    .site-header { position: static; }
    .site-header__inner { display: grid; padding-block: 14px; }
    .site-nav { width: 100%; justify-content: space-between; gap: 12px; }
    .site-nav > a:not(.button) { display: none; }
    .news-grid, .benefit-grid { grid-template-columns: 1fr; }
    .news-card { grid-template-rows: 220px 1fr; }
    .article-hero { padding-top: 42px; }
    .article-hero__grid { gap: 34px; }
    .article-main { padding: 52px 0 72px; }
    .article-layout { gap: 40px; }
    .status-list li { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__links { text-align: left; }
}

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