:root {
    --color-bg-dark: #160f0a;
    --color-bg-dark-soft: #24170f;
    --color-surface: #fff;
    --color-text: #101010;
    --color-text-inverse: #fff;
    --color-text-muted: #6b6b6b;
    --color-border: #d8d8d8;
    --color-gold: #f5bf36;
    --color-gold-light: #ffe18a;
    --color-gold-deep: #9a6000;
    --color-danger: #d71920;
    --color-danger-soft: #fdebec;
    --container: 1320px;
    --page-pad: clamp(20px, 4vw, 60px);
    --focus: 0 0 0 3px #160f0a, 0 0 0 6px #f5bf36;
}
*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-surface);
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}
body, button, input { font: inherit; }
img, svg { display: block; }
a { color: inherit; }
button, a, input { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: none; box-shadow: var(--focus); }
.page-shell {
    width: min(var(--container), calc(100% - (var(--page-pad) * 2)));
    margin-inline: auto;
}
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px; left: 12px;
    padding: 12px 18px;
    color: var(--color-text);
    background: var(--color-gold);
    border-radius: 8px;
    transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary {
    color: var(--color-text);
    background: linear-gradient(105deg, var(--color-gold-light), var(--color-gold));
    box-shadow: 0 10px 24px rgb(245 191 54 / 18%);
}
.button--outline {
    color: var(--color-text-inverse);
    background: rgb(22 15 10 / 58%);
    border-color: var(--color-gold);
}
.site-header {
    position: absolute;
    z-index: 20;
    inset: 0 0 auto;
    color: var(--color-text-inverse);
}
.site-header__inner {
    width: min(var(--container), calc(100% - (var(--page-pad) * 2)));
    min-height: 112px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}
.site-header__brand { border-radius: 50%; }
.site-header__brand img {
    width: 96px; height: 96px;
    object-fit: contain;
}
.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 2.3vw, 42px);
}
.primary-nav__link {
    position: relative;
    padding: 14px 0;
    font-size: 18px;
    text-decoration: none;
    white-space: nowrap;
}
.primary-nav__link::after {
    content: "";
    position: absolute;
    right: 0; bottom: 6px; left: 0;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}
.primary-nav__link:hover::after,
.primary-nav__link--active::after { transform: scaleX(1); }
.menu-button { display: none; }
.hero {
    position: relative;
    min-height: 780px;
    overflow: hidden;
    color: var(--color-text-inverse);
    background:
        radial-gradient(circle at 80% 54%, rgb(245 191 54 / 14%), transparent 34%),
        linear-gradient(90deg, #130c08 0%, #1b110b 58%, #100b08 100%);
}
.hero__glow {
    position: absolute;
    inset: 0;
    opacity: .24;
    background:
        linear-gradient(90deg, transparent 62%, rgb(245 191 54 / 8%)),
        repeating-linear-gradient(90deg, transparent 0 115px, rgb(255 255 255 / 2%) 116px 117px);
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.hero__inner {
    position: relative;
    min-height: 780px;
    padding-top: 178px;
    display: grid;
    grid-template-columns: minmax(520px, .94fr) minmax(520px, 1.06fr);
    align-items: end;
}
.hero__copy {
    position: relative;
    z-index: 4;
    align-self: start;
    padding: 38px 0 76px;
}
.hero h1 {
    max-width: 770px;
    margin: 0;
    font-family: Manrope, Arial, sans-serif;
    font-size: clamp(52px, 4.35vw, 68px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.04;
}
.hero h1 span { display: block; color: var(--color-gold-light); }
.hero__lead {
    max-width: 700px;
    margin: 28px 0 34px;
    font-size: 21px;
    line-height: 1.52;
}
.hero-search {
    max-width: 795px;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 220px;
    align-items: center;
}
.hero-search__icon {
    height: 72px;
    display: grid;
    place-items: center;
    color: #555;
    background: #fff;
    border-radius: 12px 0 0 12px;
}
.hero-search__icon svg, .action-row svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.hero-search__icon svg { width: 32px; height: 32px; }
.hero-search input {
    min-width: 0;
    height: 72px;
    padding: 0 14px 0 0;
    color: var(--color-text);
    background: #fff;
    border: 0;
    font-size: 17px;
}
.hero-search input:focus { outline: 0; }
.hero-search:focus-within .hero-search__icon,
.hero-search:focus-within input { box-shadow: inset 0 0 0 2px var(--color-gold); }
.hero-search__submit { height: 72px; margin-left: 10px; }
.hero__report-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 18px;
    text-underline-offset: 5px;
}
.hero__art {
    position: absolute;
    z-index: 2;
    right: -86px;
    bottom: 0;
    width: min(63vw, 910px);
    height: 690px;
    pointer-events: none;
}
.hero__art img {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -10px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 28px rgb(0 0 0 / 36%));
}
.hero__shield {
    position: absolute;
    z-index: 1;
    right: 92px;
    bottom: 12px;
    width: 650px;
    color: var(--color-gold);
    opacity: .9;
    filter: drop-shadow(0 0 8px rgb(245 191 54 / 65%));
}
.hero__shield path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1500;
    animation: draw-shield 1200ms ease-out both, breathe-shield 20s 1200ms ease-in-out infinite;
}
.primary-actions { position: relative; z-index: 5; background: #fff; }
.primary-actions__inner {
    min-height: 180px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}
.action-row {
    min-height: 100px;
    display: grid;
    grid-template-columns: 62px 1fr 28px;
    align-items: center;
    gap: 20px;
    padding: 18px 30px;
    border-right: 1px solid var(--color-border);
    font-family: Manrope, Arial, sans-serif;
    font-size: 20px;
    font-weight: 750;
    line-height: 1.25;
    text-decoration: none;
}
.action-row:first-of-type { padding-left: 0; }
.action-row:last-of-type { padding-right: 0; border-right: 0; }
.action-row__icon {
    width: 62px; height: 62px;
    display: grid;
    place-items: center;
    color: var(--color-gold-deep);
    background: #fff5dd;
    border-radius: 50%;
}
.action-row__icon svg { width: 30px; height: 30px; }
.action-row__arrow { width: 28px; height: 28px; transition: transform 160ms ease; }
.action-row:hover .action-row__arrow { transform: translateX(4px); }
.action-row--danger .action-row__icon { color: var(--color-danger); background: var(--color-danger-soft); }
@keyframes draw-shield { from { stroke-dashoffset: 1500; } to { stroke-dashoffset: 0; } }
@keyframes breathe-shield {
    0%, 100% { transform: translateY(0); opacity: .82; }
    50% { transform: translateY(-8px); opacity: 1; }
}
@media (max-width: 1180px) {
    .site-header__inner { gap: 22px; }
    .primary-nav { gap: 20px; }
    .primary-nav__link, .site-header__report { font-size: 16px; }
    .hero__inner { grid-template-columns: minmax(500px, 1fr) minmax(430px, .8fr); }
    .hero__art { right: -160px; }
}
@media (max-width: 960px) {
    .site-header__inner { grid-template-columns: auto 1fr auto; }
    .site-header__brand img { width: 88px; height: 88px; }
    .menu-button {
        justify-self: end;
        display: inline-grid;
        place-items: center;
        gap: 4px;
        padding: 8px;
        color: #fff;
        background: transparent;
        border: 0;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
    }
    .menu-button__icon { width: 34px; display: grid; gap: 6px; }
    .menu-button__icon i { height: 3px; display: block; background: currentColor; border-radius: 999px; }
    .site-header__report { display: none; }
    .primary-nav {
        position: fixed;
        z-index: 30;
        inset: 112px 20px auto;
        display: grid;
        gap: 0;
        padding: 18px 24px;
        color: #fff;
        background: #24170f;
        border: 1px solid rgb(245 191 54 / 45%);
        border-radius: 16px;
        box-shadow: 0 18px 50px rgb(0 0 0 / 35%);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    }
    .site-header--menu-open .primary-nav { opacity: 1; visibility: visible; transform: translateY(0); }
    .primary-nav__link {
        min-height: 54px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgb(255 255 255 / 12%);
        font-size: 18px;
    }
    .hero, .hero__inner { min-height: 1180px; }
    .hero__inner { display: block; padding-top: 150px; }
    .hero__copy { padding-top: 16px; }
    .hero__art {
        right: 50%;
        bottom: 0;
        width: min(980px, 108vw);
        height: 650px;
        transform: translateX(50%);
    }
    .hero__shield { right: 50%; width: min(650px, 78vw); transform: translateX(50%); }
    .primary-actions__inner { grid-template-columns: 1fr; padding-block: 28px; }
    .action-row, .action-row:first-of-type, .action-row:last-of-type {
        min-height: 92px;
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
    }
    .action-row:last-of-type { border-bottom: 0; }
}
@media (max-width: 620px) {
    :root { --page-pad: 20px; }
    .site-header__inner { min-height: 118px; }
    .site-header__brand img { width: 84px; height: 84px; }
    .hero, .hero__inner { min-height: 1280px; }
    .hero__inner { padding-top: 145px; }
    .hero__copy { padding-top: 14px; }
    .hero h1 { font-size: clamp(40px, 11.2vw, 48px); line-height: 1.06; }
    .hero__lead { margin: 24px 0 28px; font-size: 20px; line-height: 1.45; }
    .hero-search { grid-template-columns: 52px minmax(0, 1fr); row-gap: 14px; }
    .hero-search__icon, .hero-search input { height: 72px; }
    .hero-search__submit { width: 100%; height: 64px; margin: 0; grid-column: 1 / -1; }
    .hero__report-link { margin-top: 18px; font-size: 17px; }
    .hero__art { right: -56%; bottom: 0; width: 215%; height: 670px; transform: none; }
    .hero__art img { right: 0; bottom: -20px; }
    .hero__shield { right: 50%; bottom: 12px; width: 620px; }
    .action-row { grid-template-columns: 60px minmax(0, 1fr) 28px; gap: 16px; font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
