:root {
    --ink: #132343;
    --blue: #1677f2;
    --paper: #f8f8f6;
    --muted: #697386;
    --line: #dfe4ec;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
}

.navbar {
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
    z-index: 1030;
}

.navbar.scrolled {
    background: rgba(19, 35, 67, .94);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, .1);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -.04em;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: .45rem;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 25px;
    height: 25px;
    background: var(--blue);
    color: #fff;
    font-family: Arial, sans-serif;
    border-radius: 7px;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1;
}

.nav-link {
    color: rgba(255, 255, 255, .76) !important;
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s;
}

.nav-link:hover {
    color: #fff !important;
}

.navbar-toggler {
    color: #fff;
    font-size: 1.75rem;
}

.hero {
    min-height: 760px;
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, #071632 0%, #102c60 55%, #146fe8 150%);
    color: #fff;
}

.hero:after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .26;
    background-image: linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100svh;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 64px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: .7;
}

.orb-one {
    width: 570px;
    height: 570px;
    right: -150px;
    top: 13%;
    background: radial-gradient(circle at 30% 30%, #55b6ff, rgba(40, 120, 255, .05) 63%);
}

.orb-two {
    width: 400px;
    height: 400px;
    left: -200px;
    bottom: -180px;
    background: #315dcd;
    filter: blur(70px);
}

.eyebrow {
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .16em;
    margin-bottom: 1.5rem;
}

.eyebrow span {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: currentColor;
    vertical-align: middle;
    margin-right: 10px;
}

.eyebrow.ink {
    color: var(--blue);
}

.display-title {
    font: 700 clamp(3.6rem, 8vw, 7.7rem)/.92 var(--serif);
    letter-spacing: -.065em;
    margin: 0;
}

.display-title em,
h2 em {
    color: #79b9ff;
    font-weight: 600;
}

.hero-bottom {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3.2rem;
    max-width: 470px;
}

.hero-bottom p {
    color: rgba(255, 255, 255, .68);
    font-size: 1.02rem;
    margin: 0;
}

.circle-link {
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: grid;
    place-items: center;
    color: #fff;
    transition: background .2s, transform .2s;
}

.circle-link:hover {
    background: #fff;
    color: var(--ink);
    transform: translateY(4px);
}

.vertical-note {
    transform: rotate(90deg);
    transform-origin: left top;
    white-space: nowrap;
    margin: 0 0 0 100%;
    font-size: .66rem;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .48);
}

.section-space {
    padding: 145px 0;
}

.lead-copy {
    font: 600 clamp(1.8rem, 3.3vw, 3.25rem)/1.17 var(--serif);
    letter-spacing: -.042em;
    max-width: 800px;
    margin: 0;
}

.article-meta {
    color: var(--muted);
    font-size: .82rem;
}

.author {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--ink);
}

.author img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.author b,
.author small {
    display: block;
    line-height: 1.2;
}

.author small {
    font-size: .72rem;
    color: var(--muted);
    margin-top: 3px;
}

.feature-image {
    width: min(1440px, calc(100% - 48px));
    margin: auto;
    position: relative;
    overflow: hidden;
    height: clamp(330px, 48vw, 660px);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82);
    transition: transform 1s ease;
}

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

.feature-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 22px 28px;
    background: var(--paper);
    font-size: .75rem;
    color: var(--muted);
}

.feature-caption span {
    color: var(--blue);
    font-weight: 700;
    margin-right: 15px;
}

h2 {
    font: 700 clamp(2.7rem, 5vw, 5rem)/.96 var(--serif);
    letter-spacing: -.06em;
    margin: 0 0 2rem;
}

h2 em {
    font-style: italic;
}

.article-body p,
.body-muted {
    color: var(--muted);
    font-size: 1.06rem;
    margin-bottom: 1.25rem;
}

.text-link {
    display: inline-block;
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 5px;
    margin-top: 1rem;
}

.text-link i {
    color: var(--blue);
    margin-left: 7px;
}

.stats-stack {
    border-left: 1px solid var(--line);
    padding-left: 28px;
}

.stats-stack div {
    padding: 0 0 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--line);
}

.stats-stack div:last-child {
    border: 0;
}

.stats-stack strong,
.stats-stack span {
    display: block;
}

.stats-stack strong {
    font: 700 2rem/1 var(--serif);
    color: var(--blue);
}

.stats-stack span {
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.35;
    margin-top: 8px;
}

.quote-band {
    color: #fff;
    background: var(--blue);
    padding: 125px 0;
    text-align: center;
}

.quote-band .container {
    max-width: 920px;
}

.quote-icon {
    font-size: 2rem;
    opacity: .7;
}

.quote-band blockquote {
    font: 700 clamp(2.1rem, 4.5vw, 4.4rem)/1.04 var(--serif);
    letter-spacing: -.055em;
    margin: 20px 0 25px;
}

.quote-band p {
    color: rgba(255, 255, 255, .68);
    font-size: .8rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.future h2 {
    font-size: clamp(3rem, 5.2vw, 5.4rem);
}

.future h2 em {
    color: var(--blue);
}

.image-composition {
    position: relative;
    padding: 28px 28px 0 0;
}

.image-main {
    width: 100%;
    height: 510px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    left: -35px;
    bottom: -25px;
    background: var(--ink);
    color: #fff;
    padding: 28px 30px;
    min-width: 210px;
    box-shadow: 0 12px 30px rgba(19, 35, 67, .2);
}

.floating-card i {
    color: #75b4ff;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 20px;
}

.floating-card b,
.floating-card span {
    display: block;
}

.floating-card b {
    font: 700 1.25rem/1.1 var(--serif);
}

.floating-card span {
    opacity: .56;
    font-size: .7rem;
    margin-top: 10px;
}

.btn-primary {
    background: var(--blue);
    border-color: var(--blue);
    font-weight: 600;
}

.btn-primary:hover {
    background: #0965d6;
    border-color: #0965d6;
}

.newsletter {
    padding: 50px 0 100px;
}

.newsletter-panel {
    padding: clamp(38px, 6vw, 82px);
    background: var(--ink);
    color: #fff;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: end;
}

.newsletter h2 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.newsletter h2 em {
    color: #74b8ff;
}

.subscribe-form {
    position: relative;
    display: flex;
    width: min(100%, 390px);
    border-bottom: 1px solid rgba(255, 255, 255, .55);
}

.subscribe-form input {
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    outline: 0;
    padding: 12px 0;
    font: 400 1rem var(--sans);
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, .57);
}

.subscribe-form button {
    background: none;
    border: 0;
    color: #fff;
    font-size: 1.3rem;
    padding: 0 0 0 15px;
}

.subscribe-form small {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 10px;
    color: rgba(255, 255, 255, .52);
}

.subscribe-form small.success {
    color: #7cd0a3;
}

footer {
    padding: 28px 0 40px;
}

footer p {
    color: var(--muted);
    font-size: .72rem;
    margin: 0;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    color: var(--ink);
    font-size: 1rem;
}

.back-to-top {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--ink);
    z-index: 1000;
    transition: .25s;
    box-shadow: 0 8px 20px rgba(19, 35, 67, .2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width:991.98px) {
    .navbar {
        background: rgba(19, 35, 67, .88);
        backdrop-filter: blur(10px);
    }

    .navbar-collapse {
        padding: 1rem 0 .5rem;
    }

    .nav-link {
        padding: .6rem 0;
    }

    .hero,
    .hero-content {
        min-height: 680px;
    }

    .section-space {
        padding: 100px 0;
    }

    .newsletter-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .stats-stack {
        display: flex;
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 24px 0 0;
        gap: 20px;
    }

    .stats-stack div {
        flex: 1;
        margin: 0;
        padding: 0;
        border: 0;
    }

    .image-main {
        height: 430px;
    }
}

@media (max-width:575.98px) {

    .hero,
    .hero-content {
        min-height: 650px;
    }

    .display-title {
        font-size: 3.35rem;
    }

    .hero-bottom {
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .hero-bottom p {
        font-size: .9rem;
    }

    .section-space {
        padding: 75px 0;
    }

    .feature-image {
        width: calc(100% - 24px);
        height: 340px;
    }

    .feature-caption {
        left: 0;
        right: auto;
        padding: 14px 16px;
        font-size: .65rem;
    }

    .lead-copy {
        font-size: 1.8rem;
    }

    .stats-stack {
        gap: 10px;
    }

    .stats-stack strong {
        font-size: 1.55rem;
    }

    .image-composition {
        padding: 0;
    }

    .image-main {
        height: 370px;
    }

    .floating-card {
        left: 12px;
        bottom: -20px;
        padding: 20px;
        min-width: 170px;
    }

    .newsletter {
        padding: 30px 0 70px;
    }

    .newsletter-panel {
        padding: 32px 25px;
    }

    .quote-band {
        padding: 80px 0;
    }

    footer {
        text-align: center;
    }

    footer .container {
        align-items: center;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
}

@media (prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}