﻿:root {
    --navy: #123A5C;
    --navy-deep: #0B2740;
    --sky: #7FC7E8;
    --paper: #F7F5F0;
    --paper-card: #FFFFFF;
    --ink: #1C2733;
    --ink-soft: #4A5661;
    --ink-faint: #8592A0;
    --denied: #B5442E;
    --overturned: #1E8449;
    --line: #E4E1D9;
    --radius: 10px;
}

/** {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', serif;
    margin: 0;
    color: var(--navy);
}*/

p {
    margin: 0;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ---------- Header ---------- */
header.site {
    background: var(--navy-deep);
    padding: 18px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    letter-spacing: .2px;
}

    .brand span {
        color: var(--sky);
    }

.brand-sub {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9fb8cc;
    margin-top: 2px;
}

.back-link {
    font-size: 13px;
    color: var(--sky);
    text-decoration: none;
    border: 1px solid rgba(127,199,232,.4);
    padding: 8px 14px;
    border-radius: 20px;
}

    .back-link:hover {
        background: rgba(127,199,232,.1);
    }

/* ---------- herofight ---------- */
.herofight {
    padding: 72px 0 56px;
}

.herofight-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    background: #E9F1F6;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.herofight h1 {
    font-size: 42px;
    line-height: 1.15;
}

.herofight p.lede {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.6;
    color: #333333;
    max-width: 46ch;
}

.herofight-actions {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}

.btn-primary {
    background: var(--navy);
    color: #fff;
}

    .btn-primary:hover {
        background: var(--navy-deep);
    }

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

    .btn-ghost:hover {
        background: var(--navy);
        color: #fff;
    }

.herofight-meta {
    margin-top: 22px;
    font-size: 13px;
    color: var(--ink-faint);
}

/* ---------- Stamp signature element ---------- */
.stamp-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(18,58,92,0.08);
}

.stamp-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-faint);
    font-weight: bold;
}

.stamp-doc {
    margin-top: 14px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    min-height: 180px;
    background: repeating-linear-gradient( to bottom, transparent, transparent 22px, #EFEDE6 23px );
}

    .stamp-doc .doc-line {
        height: 2px;
    }

.stamp {
    position: absolute;
    font-family: Georgia, serif;
    font-weight: 900;
    letter-spacing: 3px;
    border: 4px solid currentColor;
    padding: 6px 16px;
    border-radius: 6px;
    transform: rotate(-9deg);
}

    .stamp.denied {
        top: 22px;
        left: 24px;
        color: var(--denied);
        font-size: 22px;
        opacity: 1;
        animation: fadeStamp1 8s ease-in-out infinite;
    }

    .stamp.overturned {
        bottom: 20px;
        right: 20px;
        color: var(--overturned);
        font-size: 22px;
        opacity: 0;
        animation: fadeStamp2 8s ease-in-out infinite;
    }

@keyframes fadeStamp1 {
    0%, 38% {
        opacity: 1;
    }

    50%, 100% {
        opacity: 0.18;
    }
}

@keyframes fadeStamp2 {
    0%, 45% {
        opacity: 0;
        transform: rotate(-9deg) scale(0.85);
    }

    58%, 92% {
        opacity: 1;
        transform: rotate(-9deg) scale(1);
    }

    100% {
        opacity: 1;
    }
}

.stamp-caption {
    margin-top: 16px;
    font-size: 13px;
    color: var(--ink-faint);
    line-height: 1.5;
}

.stamp-stat {
    margin-top: 18px;
    display: flex;
    gap: 20px;
}

    .stamp-stat div {
        flex: 1;
    }

    .stamp-stat .num {
        font-family: Georgia, serif;
        font-size: 26px;
        color: var(--navy);
        font-weight: bold;
    }

    .stamp-stat .lbl {
        font-size: 12px;
        color: var(--ink-faint);
        margin-top: 2px;
    }

/* ---------- Section shell ---------- */
section {
    padding: 20px 0;
    /*padding: 56px 0;*/
}

.section-head {
    /*max-width: 640px;*/
    margin-bottom: 40px;
}

    .section-head .eyebrow {
        margin-bottom: 14px;
    }

    .section-head h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .section-head p {
        margin-top: 14px;
        font-size: 15.5px;
        color: var(--ink-soft);
        line-height: 1.6;
    }

/* ---------- Feature grid ---------- */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 20px;
}

.feature-icon {
    font-size: 22px;
}

.feature-card h3 {
    font-size: 16px;
    margin-top: 12px;
    color: var(--ink);
    font-family: Arial, sans-serif;
}

.feature-card p {
    margin-top: 8px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ink-soft);
}

/* ---------- How it works ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.step {
    position: relative;
    padding: 0 18px 0 0;
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    font-family: Georgia, serif;
}

.step h3 {
    font-size: 15px;
    margin-top: 14px;
    font-family: Arial, sans-serif;
    color: var(--ink);
}

.step p {
    margin-top: 6px;
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.step-line {
    position: absolute;
    top: 17px;
    left: 34px;
    right: -18px;
    height: 2px;
    background: var(--line);
}

.step:last-child .step-line {
    display: none;
}

/* ---------- Stats bar ---------- */
.stats-bar {
    background: var(--navy);
    border-radius: 14px;
    padding: 20px 40px;
    /*padding: 36px 40px;*/
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

    .stats-bar .stat .num {
        font-family: Georgia, serif;
        font-size: 30px;
        color: #fff;
        font-weight: bold;
    }

    .stats-bar .stat .lbl {
        font-size: 12.5px;
        color: #b9cfe0;
        margin-top: 4px;
    }

/* ---------- Quote ---------- */
.quotes {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.quote-card {
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 32px;
    color: var(--sky);
    line-height: 1;
}

.quote-card p.body {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
    font-style: italic;
}

.quote-card p.attr {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--ink-faint);
    font-weight: bold;
    font-style: normal;
}

/* ---------- Note / disclosure ---------- */
.note {
    background: #F6F9FC;
    border-left: 3px solid var(--sky);
    border-radius: 6px;
    padding: 18px 22px;
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.6;
}

    .note strong {
        color: var(--ink);
    }

/* ---------- Final CTA ---------- */
.cta-band {
    background: var(--navy-deep);
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
}

    .cta-band h2 {
        color: #fff;
        font-size: 28px;
    }

    .cta-band p {
        color: #b9cfe0;
        margin-top: 12px;
        font-size: 15px;
        max-width: 52ch;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-band .herofight-actions {
        justify-content: center;
        margin-top: 26px;
    }

    .cta-band .btn-ghost {
        color: #fff;
        border-color: rgba(255,255,255,.5);
    }

        .cta-band .btn-ghost:hover {
            background: rgba(255,255,255,.1);
        }


/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .herofight-grid {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2,1fr);
    }

    .steps {
        grid-template-columns: repeat(2,1fr);
        row-gap: 28px;
    }

    .step-line {
        display: none;
    }

    .stats-bar {
        grid-template-columns: repeat(2,1fr);
    }

    .quotes {
        grid-template-columns: 1fr;
    }

    .herofight h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .cta-band {
        padding: 36px 22px;
    }
    .stamp-card {
        display: none;
    }
}

a:focus-visible, button:focus-visible {
    outline: 3px solid var(--sky);
    outline-offset: 2px;
}

@media (max-width: 600px) {
    .stamp-card {
        display: none;
    }
}
