:root {
    --paper: #f3eee4;
    --paper-deep: #e8dfd0;
    --ink: #171820;
    --muted: #6d685f;
    --line: rgb(23 24 32 / 15%);
    --cream: #fffaf1;
    --blue: #1d3866;
    --blue-soft: #dfe7f2;
    --red: #ab4f45;
    --red-soft: #efd9d3;
    --gold: #d5a341;
    --font-display: "Fraunces", Georgia, serif;
    --font-ui: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

@property --qa-cta-silver-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background:
        radial-gradient(circle at 88% 4%, rgb(29 56 102 / 10%), transparent 31rem),
        radial-gradient(circle at 9% 25%, rgb(171 79 69 / 8%), transparent 27rem),
        var(--paper);
    color: var(--ink);
    font-family: var(--font-ui);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
a:focus-visible { outline: 3px solid rgb(29 56 102 / 35%); outline-offset: 4px; }

.qa-topbar,
main,
.qa-footer {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.qa-topbar {
    position: sticky;
    z-index: 50;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    border-bottom: 1px solid var(--line);
    background: rgb(243 238 228 / 88%);
    box-shadow: 0 10px 30px rgb(23 24 32 / 5%);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    backdrop-filter: blur(16px) saturate(1.15);
}

.qa-brand {
    position: relative;
    display: block;
    width: 158px;
    height: 60px;
    overflow: hidden;
    border: 1px solid var(--ink);
    border-radius: 11px 11px 11px 4px;
    background: #faf7f0;
    box-shadow: 3px 3px 0 var(--red);
    transform: rotate(-.5deg);
}

.qa-brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}

.qa-topbar-actions,
.qa-nav {
    display: flex;
    align-items: center;
}
.qa-topbar-actions { gap: clamp(12px, 2vw, 24px); }
.qa-nav { gap: 4px; }
.qa-nav a {
    padding: 9px 11px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}
.qa-nav a:hover { background: rgb(23 24 32 / 6%); color: var(--ink); }

.qa-top-action {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: visible;
    padding: 10px 15px;
    border: 3px solid var(--blue);
    border-radius: 999px;
    background: var(--blue);
    color: var(--cream);
    box-shadow: 3px 3px 0 rgb(171 79 69 / 82%);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.qa-top-action::before {
    position: absolute;
    z-index: 2;
    inset: -3px;
    padding: 3px;
    border-radius: inherit;
    background: conic-gradient(
        from var(--qa-cta-silver-angle),
        transparent 0deg,
        rgb(214 220 230 / 42%) 28deg,
        #fff 76deg,
        rgb(214 220 230 / 62%) 124deg,
        transparent 158deg,
        transparent 360deg
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    content: "";
    pointer-events: none;
    animation: qa-cta-silver-orbit 3.4s linear infinite;
}

.qa-top-action:hover {
    border-color: #142a50;
    background: #142a50;
    color: var(--cream);
    box-shadow: 4px 4px 0 var(--red);
    transform: translateY(-1px);
}

@keyframes qa-cta-silver-orbit {
    to { --qa-cta-silver-angle: 360deg; }
}

.qa-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
    gap: clamp(42px, 7vw, 88px);
    align-items: center;
    min-height: min(720px, calc(100svh - var(--public-topbar-height, 84px)));
    padding: clamp(56px, 8vw, 96px) 0;
}
.qa-hero-copy { max-width: 680px; }

.qa-eyebrow,
.qa-card-kicker {
    margin: 0;
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.qa-hero .qa-eyebrow { display: flex; align-items: center; gap: 9px; }
.qa-hero .qa-eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px rgb(171 79 69 / 13%);
}

.qa-hero h1 {
    max-width: 680px;
    margin: 19px 0 0;
    font-family: var(--font-display);
    font-size: clamp(54px, 6.2vw, 86px);
    font-weight: 570;
    letter-spacing: -.052em;
    line-height: .92;
}

.qa-hero h1 em { color: var(--blue); font-weight: 480; }
.qa-intro {
    max-width: 580px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(15px, 1.6vw, 19px);
    line-height: 1.6;
}

.qa-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    align-items: center;
    margin-top: 30px;
}
.qa-hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}
.qa-hero-primary {
    gap: 10px;
    padding: 13px 19px;
    border: 2px solid var(--blue);
    background: var(--blue);
    box-shadow: 4px 4px 0 var(--red);
    color: var(--cream);
}
.qa-hero-primary span { font-size: 16px; }
.qa-hero-secondary {
    padding: 13px 17px;
    border: 1px solid var(--line);
    color: var(--ink);
}
.qa-hero-primary:hover { background: #142a50; transform: translateY(-1px); }
.qa-hero-secondary:hover { background: rgb(255 250 241 / 65%); }
.qa-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 19px 0 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}
.qa-hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.qa-hero-trust span::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    content: "";
}

.qa-hero-preview {
    position: relative;
    overflow: hidden;
    padding: clamp(26px, 3.6vw, 42px);
    border: 1px solid var(--ink);
    border-radius: 24px 24px 24px 7px;
    background: var(--cream);
    box-shadow: 9px 10px 0 var(--ink);
    transform: rotate(.7deg);
}
.qa-hero-preview::after {
    position: absolute;
    top: -100px;
    right: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgb(171 79 69 / 9%);
    content: "";
    pointer-events: none;
}
.qa-preview-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.qa-preview-topline span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
}
.qa-hero-preview h2 {
    position: relative;
    z-index: 1;
    margin: clamp(31px, 4vw, 48px) 0 0;
    font-family: var(--font-display);
    font-size: clamp(27px, 3.1vw, 41px);
    font-weight: 560;
    letter-spacing: -.035em;
    line-height: 1.08;
}
.qa-preview-options { margin-top: 30px; }
.qa-preview-options span {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}
.qa-preview-options b { color: var(--red); font-size: 10px; }
.qa-preview-options span:first-child b { color: var(--blue); }
.qa-preview-note {
    margin: 17px 0 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.qa-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--ink);
    border-radius: 22px;
    background: var(--cream);
    box-shadow: 7px 8px 0 var(--ink);
    margin-top: 18px;
}

.qa-stat {
    position: relative;
    min-height: 210px;
    padding: 24px 22px;
}
.qa-stat + .qa-stat { border-left: 1px solid var(--line); }
.qa-stat.is-primary { background: var(--blue); color: white; }
.qa-stat-index {
    display: block;
    color: currentColor;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    opacity: .48;
}
.qa-stat strong {
    display: block;
    margin-top: 42px;
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: .9;
}
.qa-stat p {
    margin: 12px 0 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.qa-stat small {
    display: block;
    margin-top: 5px;
    color: currentColor;
    font-size: 10px;
    opacity: .58;
}

.qa-patterns { padding-top: clamp(62px, 7vw, 92px); }
.qa-depth-section,
.qa-questions { padding-top: clamp(84px, 10vw, 128px); }
.qa-summary-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
    gap: 50px;
    align-items: end;
    scroll-margin-top: calc(var(--public-topbar-height, 84px) + 18px);
    padding-top: clamp(60px, 8vw, 92px);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.qa-summary-heading h1,
.qa-summary-heading h2 {
    margin: 11px 0 0;
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 560;
    letter-spacing: -.045em;
    line-height: .98;
}
.qa-summary-heading > p {
    max-width: 390px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}
.qa-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
    gap: 50px;
    align-items: end;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}
.qa-section-heading h1,
.qa-section-heading h2 {
    max-width: 760px;
    margin: 12px 0 0;
    font-family: var(--font-display);
    font-size: clamp(38px, 5.8vw, 70px);
    font-weight: 560;
    letter-spacing: -.045em;
    line-height: 1;
}
.qa-section-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}
.qa-section-heading > p b { color: var(--ink); }

.qa-pattern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 18px;
}
.qa-feature {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgb(255 250 241 / 68%);
}
.qa-feature h3 {
    margin: 18px 0 0;
    font-family: var(--font-display);
    font-size: clamp(25px, 3vw, 40px);
    font-weight: 550;
    letter-spacing: -.035em;
    line-height: 1.16;
}
.qa-feature.is-close { min-height: 500px; }
.qa-feature.is-consensus { min-height: 500px; background: var(--red); color: var(--cream); }
.qa-feature.is-consensus .qa-card-kicker { color: rgb(255 250 241 / 64%); }
.qa-big-percent {
    display: block;
    margin-top: 32px;
    font-family: var(--font-display);
    font-size: clamp(70px, 10vw, 116px);
    font-weight: 650;
    letter-spacing: -.07em;
    line-height: .7;
}
.qa-consensus-answer {
    width: fit-content;
    margin: 20px 0 0;
    padding: 8px 11px;
    border: 1px solid rgb(255 250 241 / 35%);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}
.qa-split {
    height: 24px;
    margin-top: 72px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--red);
}
.qa-split span {
    display: block;
    width: var(--split);
    height: 100%;
    border-right: 3px solid var(--cream);
    background: var(--blue);
}
.qa-split-labels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 17px;
}
.qa-split-labels span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}
.qa-split-labels span:last-child { text-align: right; }
.qa-split-labels b {
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 30px;
}
.qa-depth-section {
    padding-right: clamp(20px, 4vw, 44px);
    padding-bottom: clamp(20px, 4vw, 44px);
    padding-left: clamp(20px, 4vw, 44px);
    border: 1px solid rgb(29 56 102 / 22%);
    border-radius: 24px;
    background:
        linear-gradient(115deg, rgb(255 255 255 / 34%), transparent 55%),
        var(--blue-soft);
}
.qa-depth-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
    gap: 50px;
    align-items: end;
    padding-bottom: 28px;
    border-bottom: 1px solid rgb(29 56 102 / 18%);
}
.qa-depth-heading h2 {
    max-width: 680px;
    margin: 12px 0 0;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: clamp(38px, 5.5vw, 66px);
    font-weight: 560;
    letter-spacing: -.045em;
    line-height: 1;
}
.qa-depth-heading > p {
    margin: 0;
    color: rgb(29 56 102 / 68%);
    font-size: 13px;
    line-height: 1.6;
}
.qa-depth-heading > p b { color: var(--blue); }
.qa-depth-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}
.qa-depth-list article {
    padding: clamp(17px, 2.5vw, 25px);
    border: 1px solid rgb(29 56 102 / 16%);
    border-radius: 16px;
    background: rgb(255 250 241 / 42%);
}
.qa-depth-list span,
.qa-depth-list small { display: block; color: rgb(29 56 102 / 67%); font-size: 9px; }
.qa-depth-list span b { color: var(--blue); font-size: 15px; }
.qa-depth-list strong {
    display: block;
    margin-top: 19px;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: clamp(37px, 5vw, 56px);
    letter-spacing: -.05em;
    line-height: .9;
}
.qa-depth-list small { margin-top: 8px; font-weight: 750; }
.qa-depth-list article p {
    margin: 22px 0 0;
    padding-top: 12px;
    border-top: 1px solid rgb(29 56 102 / 14%);
    color: var(--blue);
    font-size: 11px;
    font-weight: 750;
}
.qa-empty-copy { color: var(--muted); }

.qa-question-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}
.qa-question-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgb(255 250 241 / 72%);
}
.qa-question-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.qa-question-card header span { color: var(--red); }
.qa-question-card h3 {
    min-height: 3.6em;
    margin: 18px 0 28px;
    font-family: var(--font-display);
    font-size: clamp(21px, 2.2vw, 29px);
    font-weight: 560;
    letter-spacing: -.025em;
    line-height: 1.2;
}
.qa-answer + .qa-answer { margin-top: 18px; }
.qa-answer-copy {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: end;
}
.qa-answer-copy span { color: var(--muted); font-size: 11px; line-height: 1.35; }
.qa-answer-copy strong { font-family: var(--font-display); font-size: 20px; }
.qa-answer-track {
    height: 7px;
    margin-top: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--paper-deep);
}
.qa-answer-track span { display: block; height: 100%; border-radius: inherit; background: var(--blue); }
.qa-answer.is-b .qa-answer-track span { background: var(--red); }

.qa-cta {
    margin-top: clamp(90px, 13vw, 160px);
    padding: clamp(50px, 8vw, 90px) 24px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 80% 10%, rgb(255 255 255 / 12%), transparent 22rem),
        var(--blue);
    color: var(--cream);
    text-align: center;
}
.qa-cta .qa-eyebrow { color: #d99c91; }
.qa-cta h2 {
    max-width: 780px;
    margin: 15px auto 0;
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 560;
    letter-spacing: -.045em;
    line-height: .97;
}
.qa-cta > p:not(.qa-eyebrow) { margin: 22px 0 0; color: rgb(255 250 241 / 65%); font-size: 13px; }
.qa-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 13px 19px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}
.qa-cta a:hover { transform: translateY(-2px); }

.qa-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 26px;
    padding: 28px 0 38px;
    color: var(--muted);
    font-size: 10px;
}
.qa-footer a { font-weight: 800; text-decoration: none; }

@media (max-width: 920px) {
    .qa-hero {
        grid-template-columns: 1fr;
        gap: 44px;
        min-height: auto;
        padding: 48px 0 68px;
    }
    .qa-hero-copy { max-width: 720px; }
    .qa-hero h1 { font-size: clamp(47px, 9vw, 68px); }
    .qa-intro { margin-top: 20px; }
    .qa-hero-actions { align-items: stretch; margin-top: 25px; }
    .qa-hero-actions a { flex: 1 1 100%; }
    .qa-hero-secondary { min-height: 44px !important; }
    .qa-hero-trust { gap: 7px 13px; margin-top: 16px; }
    .qa-hero-preview {
        width: min(100%, 680px);
        padding: 24px 20px;
        box-shadow: 6px 7px 0 var(--ink);
    }
    .qa-hero-preview h2 { margin-top: 26px; font-size: clamp(29px, 5vw, 40px); }
    .qa-preview-options { margin-top: 25px; }
}

@media (max-width: 760px) {
    .qa-topbar, main, .qa-footer { width: min(100% - 24px, 1180px); }
    .qa-topbar { min-height: 72px; }
    .qa-brand { width: 132px; height: 50px; }
    .qa-nav { display: none; }
    .qa-top-action { padding: 9px 11px; font-size: 10px; }
    .qa-hero h1 { font-size: clamp(47px, 13.2vw, 64px); }
    .qa-hero-preview h2 { margin-top: 26px; font-size: 29px; }
    .qa-stats { grid-template-columns: 1fr 1fr; box-shadow: 5px 6px 0 var(--ink); }
    .qa-stat { min-height: 168px; padding: 18px 16px; }
    .qa-stat + .qa-stat { border-left: 0; }
    .qa-stat:nth-child(even) { border-left: 1px solid var(--line); }
    .qa-stat:nth-child(n+3) { border-top: 1px solid var(--line); }
    .qa-stat strong { margin-top: 28px; font-size: 41px; }
    .qa-stat p { font-size: 9px; }
    .qa-summary-heading { grid-template-columns: 1fr; gap: 14px; }
    .qa-summary-heading h1,
    .qa-summary-heading h2 { font-size: 42px; }
    .qa-section-heading { grid-template-columns: 1fr; gap: 18px; }
    .qa-pattern-grid { grid-template-columns: 1fr; }
    .qa-feature.is-close,
    .qa-feature.is-consensus { min-height: 440px; }
    .qa-split { margin-top: 54px; }
    .qa-depth-section { padding: 52px 18px 18px; }
    .qa-depth-heading { grid-template-columns: 1fr; gap: 18px; }
    .qa-depth-heading h2 { font-size: 40px; }
    .qa-depth-list { grid-template-columns: 1fr; gap: 8px; }
    .qa-depth-list article {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        padding: 17px;
    }
    .qa-depth-list strong { grid-column: 2; grid-row: 1 / span 2; margin: 0; }
    .qa-depth-list small { margin-top: 6px; }
    .qa-depth-list article p { grid-column: 1 / -1; }
    .qa-question-grid { grid-template-columns: 1fr; }
    .qa-question-card { padding: 20px; }
    .qa-question-card h3 { min-height: 0; margin-bottom: 25px; }
    .qa-footer { flex-wrap: wrap; }
    .qa-footer p { order: 3; width: 100%; margin: 0; }
}

@media (prefers-reduced-motion: no-preference) {
    .qa-top-action,
    .qa-cta a,
    .qa-hero-actions a { transition: transform .18s ease, background-color .18s ease, color .18s ease; }
}

@media (prefers-reduced-motion: reduce) {
    .qa-top-action::before {
        display: none;
        animation: none;
    }
}
