.topbar {
    position: relative;
    z-index: 110;
    min-height: var(--topbar-height);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background:
        radial-gradient(circle at 18% 50%, rgba(255, 255, 255, .06) 0 1px, transparent 1.5px) 0 0 / 22px 22px,
        var(--blue-deep);
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.topbar__inner {
    min-height: var(--topbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar__left,
.topbar__right,
.topbar__social {
    display: flex;
    align-items: center;
}

.topbar__left,
.topbar__right {
    gap: 18px;
}

.topbar__left strong {
    color: var(--white);
}

.topbar__divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, .22);
}

.topbar__social {
    gap: 8px;
}

.topbar__social a {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: var(--white);
    font-size: 8px;
    font-weight: 800;
}

.site-header {
    position: absolute;
    z-index: 100;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    color: var(--white);
    transition:
        background-color .35s var(--ease-out),
        box-shadow .35s var(--ease-out),
        backdrop-filter .35s;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    background: rgba(0, 3, 84, .92);
    box-shadow: 0 12px 38px rgba(0, 0, 40, .22);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: grid;
    min-height: var(--header-height);
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.4vw, 28px);
}

.site-nav--right {
    justify-content: flex-end;
}

.site-nav > a:not(.button) {
    position: relative;
    padding-block: 12px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--yellow-accent);
    content: "";
    transition: transform .25s var(--ease-out);
}

.site-nav > a:not(.button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    min-height: clamp(760px, 97svh, 1060px);
    overflow: hidden;
    background: var(--blue-deep);
    color: var(--white);
}

.hero::after {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 0;
    left: 0;
    height: 230px;
    background: linear-gradient(180deg, transparent, rgba(0, 3, 84, .88) 78%, var(--blue-deep));
    content: "";
    pointer-events: none;
}

.hero__media,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__media {
    background:
        radial-gradient(circle at 70% 35%, rgba(21, 155, 238, .26), transparent 28%),
        linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0, 3, 84, .94) 0%, rgba(0, 3, 84, .76) 44%, rgba(0, 3, 84, .36) 100%),
        linear-gradient(180deg, rgba(0, 3, 84, .12), rgba(0, 3, 84, .18));
}

.hero__stars {
    position: absolute;
    z-index: 3;
    top: 19%;
    right: 6%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    color: rgba(255, 255, 255, .17);
    font-size: clamp(18px, 2.2vw, 38px);
    transform: rotate(11deg);
}

.hero__content {
    position: relative;
    z-index: 5;
    display: flex;
    min-height: inherit;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 170px;
}

.hero__copy {
    max-width: 940px;
}

.hero h1 {
    max-width: 1060px;
    font-size: clamp(68px, 7.2vw, 134px);
}

.hero h1 span {
    color: var(--blue-light);
}

.hero__text {
    display: grid;
    max-width: 710px;
    gap: 10px;
    margin-top: 30px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(16px, 1.35vw, 20px);
}

.hero__text p:first-child {
    color: var(--white);
    font-weight: 600;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero__microcopy {
    margin-top: 28px;
    color: rgba(255, 255, 255, .62);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero__microcopy span {
    color: var(--white);
}

.featured-overlap {
    position: relative;
    z-index: 10;
    margin-top: -126px;
    padding-bottom: clamp(96px, 9vw, 150px);
    background:
        linear-gradient(180deg, transparent 0 126px, var(--blue-royal) 126px 100%);
    color: var(--white);
}

.section-kicker-row {
    display: flex;
    min-height: 92px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.section-mini-title {
    font-size: clamp(34px, 3vw, 54px);
}

.featured-slider {
    padding-top: 18px;
    padding-bottom: 16px;
}

.feature-card {
    position: relative;
    width: clamp(310px, 31vw, 500px);
    height: clamp(420px, 38vw, 580px);
    overflow: hidden;
    border-radius: 34px 34px 12px 34px;
    background: var(--blue-primary);
    box-shadow: var(--shadow-dark);
    color: var(--white);
    transition: transform .35s var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease-out);
}

.feature-card:hover > img {
    transform: scale(1.025);
}

.feature-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 3, 84, .04) 20%, rgba(0, 3, 84, .45) 58%, rgba(0, 3, 84, .98) 100%);
}

.feature-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: clamp(24px, 2.6vw, 38px);
}

.feature-card__badge {
    display: inline-block;
    margin-bottom: 10px;
    border-radius: 999px;
    background: var(--yellow-accent);
    color: var(--blue-deep);
    padding: 6px 10px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.feature-card__category {
    color: var(--blue-light);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.feature-card h3 {
    max-width: 390px;
    margin-top: 8px;
    font-size: clamp(34px, 3vw, 52px);
    line-height: .92;
}

.feature-card__content > p:not(.feature-card__category) {
    max-width: 380px;
    margin: 14px 0 18px;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
}

.nation-stories .container {
    position: relative;
    z-index: 2;
}

.nation-stories .section-heading h2 {
    color: var(--white);
}

.editorial-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(20px, 3vw, 46px);
}

.editorial-card {
    overflow: hidden;
    border-radius: 46px 12px 46px 12px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    color: var(--ink);
    transition: transform .35s var(--ease-out);
}

.editorial-card:hover {
    transform: translateY(-5px);
}

.editorial-card--offset {
    margin-top: 74px;
    border-radius: 12px 46px 12px 46px;
}

.editorial-card__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #dce8f7;
}

.editorial-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease-out);
}

.editorial-card:hover img {
    transform: scale(1.02);
}

.editorial-card__body {
    padding: clamp(28px, 4vw, 56px);
}

.editorial-card h3 {
    color: var(--blue-deep);
    font-size: clamp(46px, 5vw, 82px);
    line-height: .9;
}

.editorial-card h4 {
    max-width: 650px;
    margin-top: 16px;
    color: var(--blue-primary);
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1;
}

.editorial-card__body > p:not(.eyebrow) {
    max-width: 680px;
    margin: 24px 0 30px;
    color: var(--text-dark-secondary);
}

.weekly-story {
    background:
        linear-gradient(90deg, rgba(7, 62, 174, .05), transparent 35%),
        var(--white);
}

.weekly-intro {
    display: grid;
    max-width: 1220px;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 50px;
    margin-bottom: 64px;
}

.weekly-intro > p:last-child {
    max-width: 520px;
    color: var(--text-dark-secondary);
    font-size: 18px;
}

.weekly-feature {
    display: grid;
    min-height: 650px;
    grid-template-columns: 1.18fr .82fr;
    overflow: hidden;
    border-radius: 52px 12px 52px 12px;
    background: var(--blue-deep);
    box-shadow: var(--shadow-soft);
    color: var(--white);
}

.weekly-feature__media {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.weekly-feature__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 55%, rgba(0, 3, 84, .86) 100%);
    content: "";
}

.weekly-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.weekly-feature__number {
    position: absolute;
    z-index: 2;
    bottom: -40px;
    left: 30px;
    color: rgba(255, 255, 255, .16);
    font-family: var(--font-display);
    font-size: clamp(190px, 20vw, 360px);
    font-weight: 900;
    line-height: .8;
}

.weekly-feature__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 5vw, 76px);
}

.weekly-feature__meta {
    color: var(--blue-light);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.weekly-feature__meta span {
    margin-inline: 7px;
    color: var(--yellow-accent);
}

.weekly-feature h3 {
    margin: 16px 0 22px;
    font-size: clamp(50px, 5vw, 82px);
    line-height: .9;
}

.weekly-feature__content > p:not(.eyebrow, .weekly-feature__meta) {
    color: rgba(255, 255, 255, .72);
}

.weekly-feature blockquote {
    margin: 30px 0;
    border-left: 3px solid var(--yellow-accent);
    color: var(--white);
    padding-left: 22px;
    font-family: var(--font-display);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.weekly-feature .button {
    align-self: flex-start;
}

.timeline__line {
    position: absolute;
    top: 0;
    left: 34%;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, .08);
}

.timeline__layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.65fr);
    gap: clamp(46px, 7vw, 110px);
}

.timeline__intro {
    position: sticky;
    top: 130px;
    align-self: start;
}

.timeline__intro h2 {
    margin-bottom: 28px;
    color: var(--white);
}

.timeline__intro > p:not(.eyebrow) {
    max-width: 430px;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.slider-controls--left {
    margin-top: 32px;
}

.timeline-slider {
    padding: 8px 2px 20px;
}

.timeline-card {
    width: clamp(310px, 25vw, 390px);
    min-height: 535px;
    overflow: hidden;
    border-radius: 34px 34px 10px 34px;
    background: var(--blue-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 35, .25);
    transition: transform .35s var(--ease-out), background-color .35s;
}

.timeline-card:hover {
    transform: translateY(-5px);
    background: var(--blue-royal);
}

.timeline-card__media {
    position: relative;
    height: 245px;
    overflow: hidden;
    border-radius: 34px 34px 34px 0;
    background: var(--blue-navy);
}

.timeline-card__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 3, 84, .7));
    content: "";
}

.timeline-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease-out);
}

.timeline-card:hover img {
    transform: scale(1.03);
}

.timeline-card__year {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 8px;
    color: var(--yellow-accent);
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
}

.timeline-card__body {
    padding: 28px;
}

.timeline-card__body > p {
    color: var(--blue-light);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.timeline-card h3 {
    margin: 9px 0 16px;
    font-size: 38px;
    line-height: .92;
}

.timeline-card__description {
    min-height: 68px;
    color: var(--text-secondary);
    font-size: 14px;
}

.timeline-card .text-link {
    margin-top: 24px;
    font-size: 13px;
}

.remember {
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(21, 155, 238, .13), transparent 22%),
        var(--white);
}

.memory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    border-radius: 34px;
    background: var(--border-dark);
}

.memory-tile {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    background: var(--white);
    padding: clamp(26px, 3vw, 44px);
    transition: background-color .3s, color .3s;
}

.memory-tile::after {
    position: absolute;
    right: -36px;
    bottom: -62px;
    color: rgba(7, 62, 174, .06);
    content: "★";
    font-size: 170px;
    line-height: 1;
}

.memory-tile:hover {
    background: var(--blue-primary);
    color: var(--white);
}

.memory-tile > span {
    color: var(--blue-light);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 900;
}

.memory-tile p {
    position: relative;
    z-index: 2;
    max-width: 340px;
    margin-top: 56px;
    font-family: var(--font-display);
    font-size: clamp(28px, 2.4vw, 42px);
    font-weight: 800;
    line-height: .98;
    text-transform: uppercase;
}

.remember__closing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 44px;
}

.remember__closing p {
    color: var(--blue-deep);
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.manifesto,
.final-cta,
.footer__credit { flex-shrink: 0; }
.footer__credit a { color: #159bee; font-weight: 700; }
.footer__credit a:hover { text-decoration: underline; }
.footer__credit a:focus-visible { outline: 2px solid #159bee; outline-offset: 4px; }

.thank-you {
    display: flex;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    background: var(--blue-deep);
    color: var(--white);
}

.manifesto__background,
.final-cta__background,
.thank-you__background {
    position: absolute;
    inset: 0;
    background:
        url("../img/hero/torcida-placeholder.webp") center / cover no-repeat,
        var(--blue-primary);
}

.manifesto__overlay,
.final-cta__overlay,
.thank-you__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 25%, rgba(21, 155, 238, .22), transparent 24%),
        linear-gradient(180deg, rgba(0, 3, 84, .62), rgba(0, 3, 84, .9));
}

.manifesto__content {
    position: relative;
    z-index: 2;
    padding-block: 120px;
    text-align: center;
}

.manifesto h2 {
    font-size: clamp(76px, 11vw, 190px);
}

.manifesto__words {
    display: flex;
    max-width: 1150px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 18px;
    margin: 44px auto;
}

.manifesto__words span {
    color: rgba(255, 255, 255, .78);
    font-family: var(--font-display);
    font-size: clamp(26px, 3.2vw, 54px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.manifesto__words span:nth-child(3n + 2) {
    color: var(--blue-light);
}

.manifesto__final {
    color: var(--yellow-accent);
    font-family: var(--font-display);
    font-size: clamp(26px, 2.8vw, 44px);
    font-weight: 800;
    text-transform: uppercase;
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.steps::before {
    position: absolute;
    top: 45px;
    right: 12%;
    left: 12%;
    height: 1px;
    background: rgba(10, 50, 139, .16);
    content: "";
}

.step {
    position: relative;
    z-index: 1;
    min-height: 330px;
    border-radius: 28px 28px 8px 28px;
    background: var(--white);
    box-shadow: 0 16px 50px rgba(7, 22, 61, .07);
    padding: 34px;
    transition: transform .3s var(--ease-out), box-shadow .3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(7, 22, 61, .12);
}

.step__number {
    color: rgba(7, 62, 174, .25);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
}

.step__icon {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    margin-top: 18px;
    border-radius: 50% 50% 12px 50%;
    background: var(--blue-primary);
    color: var(--yellow-accent);
    font-size: 28px;
}

.step h3 {
    margin-top: 28px;
    color: var(--blue-deep);
    font-size: 36px;
}

.step p {
    margin-top: 9px;
    color: var(--text-dark-secondary);
}

.submit-story__graphics {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.submit-story__five {
    position: absolute;
    bottom: -90px;
    left: 1%;
    color: rgba(255, 255, 255, .045);
    font-family: var(--font-display);
    font-size: min(56vw, 800px);
    font-weight: 900;
    line-height: .8;
    transform: translate3d(0, var(--parallax-y, 0), 0);
}

.submit-story__star {
    position: absolute;
    color: rgba(255, 255, 255, .08);
    line-height: 1;
}

.submit-story__star--one {
    top: 8%;
    left: 35%;
    font-size: 120px;
}

.submit-story__star--two {
    right: 3%;
    bottom: 4%;
    font-size: 280px;
}

.submit-story__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(520px, 1.15fr);
    align-items: center;
    gap: clamp(50px, 8vw, 130px);
}

.submit-story__intro h2 {
    color: var(--white);
}

.submit-story__intro > p:not(.eyebrow) {
    max-width: 560px;
    color: var(--text-secondary);
}

.submit-story__lead {
    margin: 30px 0 8px;
    color: var(--white) !important;
    font-size: 22px;
    font-weight: 700;
}

.submit-story__signature {
    display: inline-flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 54px;
    color: rgba(255, 255, 255, .72);
    font-family: var(--font-display);
}

.submit-story__signature span {
    color: var(--yellow-accent);
    font-size: 12px;
    letter-spacing: 4px;
}

.submit-story__signature strong {
    font-size: 22px;
    line-height: .9;
    letter-spacing: .04em;
}

.story-form-card {
    border-radius: 38px 12px 38px 12px;
    background: var(--white);
    box-shadow: var(--shadow-dark);
    color: var(--ink);
    padding: clamp(28px, 4vw, 58px);
}

.form-alert {
    margin-bottom: 28px;
    border-left: 4px solid #c53b3b;
    border-radius: 10px;
    background: #fff1f1;
    color: #681f1f;
    padding: 18px 20px;
}

.form-alert strong {
    display: block;
    margin-bottom: 6px;
}

.form-alert ul {
    padding-left: 20px;
    list-style: disc;
}

.form-required-note {
    margin-bottom: 20px;
    color: var(--text-dark-secondary);
    font-size: 12px;
}

.form-required-note span,
.field-error {
    color: #a31e1e;
}

.field-error {
    font-size: 12px;
    font-weight: 600;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--blue-deep);
    font-size: 13px;
    font-weight: 700;
}

.field label span {
    color: #a31e1e;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid rgba(7, 22, 61, .15);
    border-radius: 12px;
    outline: 0;
    background: #f8fafd;
    color: var(--ink);
    padding: 14px 15px;
    transition: border-color .2s, box-shadow .2s, background-color .2s;
}

.field input,
.field select {
    min-height: 52px;
}

.field textarea {
    min-height: 190px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--blue-vibrant);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(7, 86, 217, .1);
}

.field [aria-invalid="true"] {
    border-color: #c53b3b;
}

.field small,
.field__meta {
    color: rgba(7, 22, 61, .55);
    font-size: 11px;
}

.field__meta {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.upload-box {
    position: relative;
    display: grid;
    min-height: 132px;
    place-items: center;
    align-content: center;
    gap: 3px;
    overflow: hidden;
    border: 1px dashed rgba(7, 62, 174, .28);
    border-radius: 16px;
    background: #f6f9fe;
    color: var(--blue-primary);
    text-align: center;
    transition: background .2s, border-color .2s;
}

.upload-box:hover,
.upload-box.is-dragging {
    border-color: var(--blue-vibrant);
    background: #eef5ff;
}

.upload-box input {
    position: absolute;
    z-index: 2;
    inset: 0;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.upload-box__icon {
    font-size: 28px;
    line-height: 1;
}

.upload-box strong {
    font-size: 14px;
}

.upload-box span:last-child {
    max-width: 80%;
    overflow: hidden;
    color: rgba(7, 22, 61, .58);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.field--checkbox {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 12px;
    margin-top: 4px;
}

.field--checkbox input {
    width: 19px;
    min-height: auto;
    height: 19px;
    margin-top: 2px;
    accent-color: var(--blue-primary);
}

.field--checkbox label {
    color: rgba(7, 22, 61, .7);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.field--checkbox .field-error {
    grid-column: 2;
}

.button--submit {
    width: 100%;
    min-height: 60px;
    margin-top: 26px;
    font-size: 18px;
}

.form-microcopy {
    margin-top: 12px;
    color: rgba(7, 22, 61, .54);
    font-size: 11px;
    text-align: center;
}

.final-cta {
    min-height: 820px;
}

.final-cta__content {
    position: relative;
    z-index: 3;
    max-width: 1220px;
    padding-block: 120px;
}

.final-cta h2 {
    max-width: 1200px;
    font-size: clamp(70px, 8.5vw, 150px);
}

.final-cta h2 span {
    color: var(--blue-light);
}

.final-cta__content > p:not(.eyebrow) {
    max-width: 720px;
    margin: 30px 0 34px;
    color: rgba(255, 255, 255, .74);
    font-size: 18px;
}

.footer {
    position: relative;
    background: var(--blue-deep);
    color: var(--white);
    padding-top: 84px;
}

.footer::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    content: "";
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: clamp(36px, 6vw, 90px);
    padding-bottom: 66px;
}

.footer__grid h2 {
    margin-bottom: 18px;
    color: var(--blue-light);
    font-size: 18px;
    letter-spacing: .04em;
}

.footer__grid > div:not(.footer__brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer__grid a {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    transition: color .2s;
    overflow-wrap: anywhere;
}

.footer__grid a:hover {
    color: var(--white);
}

.footer__brand p {
    max-width: 320px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.footer__bottom {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .45);
    font-size: 11px;
}

.thank-you {
    position: relative;
    min-height: 900px;
}

.thank-you__background {
    background: url("../img/titulos/1976.webp") center 42% / cover no-repeat;
}

.thank-you__overlay {
    background: linear-gradient(180deg, rgba(0, 3, 84, .8), rgba(0, 3, 84, .92));
}

.thank-you__content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding-block: 160px 110px;
}

.thank-you h1,
.story-detail__header h1 {
    font-size: clamp(76px, 9vw, 150px);
}

.thank-you__lead {
    max-width: 720px;
    margin-top: 30px;
    color: var(--white);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 600;
}

.thank-you__content > p:not(.eyebrow, .thank-you__lead) {
    max-width: 600px;
    margin-top: 12px;
    color: var(--text-secondary);
}

.thank-you__mark {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin: 42px 0;
    font-family: var(--font-display);
}

.thank-you__mark span {
    color: var(--yellow-accent);
    letter-spacing: 4px;
}

.thank-you__mark strong {
    font-size: 24px;
    line-height: .95;
}

.thank-you__star {
    position: absolute;
    z-index: 2;
    right: -110px;
    bottom: -150px;
    color: rgba(255, 255, 255, .08);
    font-size: 620px;
    line-height: 1;
}

.story-detail {
    background: var(--white);
}

.story-detail__hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: end;
    overflow: hidden;
    background: var(--blue-deep);
    color: var(--white);
}

.story-detail__hero-image {
    position: absolute;
    inset: 0;
    background: url("../img/historias/historia-semana.webp") center / cover no-repeat;
}

.story-detail__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-detail__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 3, 84, .96) 0%, rgba(0, 3, 84, .8) 46%, rgba(0, 3, 84, .34));
}

.story-detail__header {
    position: relative;
    z-index: 2;
    padding-top: 210px;
    padding-bottom: 90px;
}

.story-detail__header p:last-child {
    max-width: 680px;
    margin-top: 24px;
    color: var(--text-secondary);
}

.story-detail__navigation {
    position: absolute;
    top: calc(var(--header-height) + 24px);
    left: 0;
    width: 100%;
    z-index: 3;
}

.story-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid var(--yellow-accent);
    border-radius: 6px;
    background: var(--yellow-accent);
    color: var(--blue-deep);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .2);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.story-detail__back:hover {
    background: var(--white);
    border-color: var(--white);
}

.story-detail__back:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 4px;
}

.story-detail__content {
    display: grid;
    grid-template-columns: 260px minmax(0, 780px);
    justify-content: center;
    gap: clamp(50px, 8vw, 120px);
    padding-block: 110px 150px;
}

.story-detail__meta {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.story-detail__meta div {
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 18px;
}

.story-detail__meta span,
.story-detail__meta strong {
    display: block;
}

.story-detail__meta span {
    color: var(--blue-primary);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.story-detail__meta strong {
    margin-top: 3px;
    color: var(--blue-deep);
    font-size: 13px;
}

.story-detail__body {
    color: rgba(7, 22, 61, .78);
    font-size: 18px;
    line-height: 1.85;
}

.story-detail__lead {
    color: var(--blue-deep);
    font-size: clamp(23px, 2.3vw, 32px);
    font-weight: 600;
    line-height: 1.45;
}

.story-detail__body h2 {
    margin: 56px 0 18px;
    color: var(--blue-deep);
    font-size: clamp(42px, 4vw, 64px);
}

.story-detail__body figure {
    margin-block: 56px;
}

.story-detail__body figure img {
    width: 100%;
    border-radius: 28px 8px 28px 8px;
}

.story-detail__body figcaption {
    margin-top: 10px;
    color: rgba(7, 22, 61, .48);
    font-size: 11px;
}

.story-detail__body blockquote {
    margin-block: 58px;
    border-left: 4px solid var(--yellow-accent);
    color: var(--blue-primary);
    padding-left: 28px;
    font-family: var(--font-display);
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.story-detail__cta {
    background:
        linear-gradient(90deg, rgba(0, 3, 84, .8), rgba(0, 3, 84, .52)),
        url("../img/titulos/1976.webp") center 42% / cover no-repeat;
    color: var(--white);
    padding-block: 100px;
}

.story-detail__cta h2 {
    max-width: 1000px;
    margin-bottom: 30px;
    font-size: clamp(54px, 6vw, 96px);
}

/* Patrocinadores acima do rodape compartilhado. */
.sponsors { padding: 36px 0; background: var(--surface-light); border-top: 1px solid var(--border-dark); }
.sponsors__inner { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 72px); }
.sponsors__title { margin: 0; color: var(--blue-deep); font-family: var(--font-display); font-size: 28px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.sponsors__logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px; margin: 0; padding: 0; list-style: none; }
.sponsors__logo { display: flex; align-items: center; justify-content: center; width: 210px; height: 98px; overflow: hidden; border-radius: 8px; background: #fff; }
.sponsors__logo--k7 { background: #000; }
.sponsors__logo a { display: block; width: 100%; height: 100%; border-radius: inherit; }
.sponsors__logo a:focus-visible { outline: 3px solid var(--yellow-accent); outline-offset: -3px; }
.sponsors__logo img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
@media (max-width: 760px) {
    .sponsors__inner { flex-direction: column; gap: 20px; }
    .sponsors__logos { gap: 16px; width: 100%; }
    .sponsors__logo { width: min(200px, 100%); height: 93px; }
}

.eyebrow--monthly::before { display: none; }
.monthly-star { color: var(--yellow-accent); font-size: 20px; line-height: 1; }
