@charset "utf-8";

:root {
    --ctf-navy: #071b4b;
    --ctf-blue: #0e3b95;
    --ctf-soft: #f4f8ff;
    --ctf-line: #dbe5f1;
    --ctf-text: #111827;
    --ctf-muted: #5a6678;
}

.ctf-page,
.ctf-page * {
    box-sizing: border-box;
}

.ctf-page {
    background: #fff;
    color: var(--ctf-text);
    font-family: inherit;
}

.ctf-page img {
    display: block;
    max-width: 100%;
}

.ctf-page a {
    text-decoration: none;
}


/* =========================================================
   HERO
========================================================= */

.ctf-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 570px;
    margin-top: -120px;
    padding-top: 120px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(124, 174, 255, .20),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #edf5ff 0%,
            #f9fbff 48%,
            #fff 100%
        );
}

.ctf-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 3;
    pointer-events: none;
    background: rgba(0, 33, 82, .23);
}

.ctf-hero__copy {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
        74px
        max(28px, calc((100vw - 1380px) / 2 + 24px))
        64px;
    padding-right: 56px;
}

.ctf-kicker {
    margin: 0 0 14px;
    color: var(--ctf-blue);
    font-size: 18px;
    font-weight: 900;
}

.ctf-hero h1 {
    margin: 0;
    max-width: 720px;
    color: var(--ctf-navy);
    font-size: clamp(44px, 4.7vw, 76px);
    line-height: 1.06;
    letter-spacing: -.06em;
    word-break: keep-all;
}

.ctf-hero__lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: #283548;
    font-size: 19px;
    line-height: 1.8;
    word-break: keep-all;
}

.ctf-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.ctf-hero__chips span {
    padding: 8px 12px;
    border: 1px solid #c9d8ef;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: #173b78;
    font-size: 13px;
    font-weight: 800;
}

.ctf-hero__actions,
.ctf-inline-actions,
.ctf-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.ctf-hero__image {
    min-height: 450px;
    overflow: hidden;
}

.ctf-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.06) contrast(1.02);
}


/* =========================================================
   BUTTON
========================================================= */

.ctf-btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 9px;
    font-weight: 900;
    line-height: 1;
    transition: .2s;
}

.ctf-btn:hover {
    transform: translateY(-1px);
}

.ctf-btn--primary {
    background: var(--ctf-blue);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(14, 59, 149, .16);
}

.ctf-btn--primary:hover {
    background: #082f7b;
}

.ctf-btn--ghost {
    border: 1px solid #b8c9e3;
    background: #fff;
    color: #173b78 !important;
}

.ctf-btn--white {
    background: #fff;
    color: #0b2c70 !important;
}

.ctf-btn--outline-white {
    border: 1px solid rgba(255, 255, 255, .62);
    color: #fff !important;
}


/* =========================================================
   QUICK INFO
========================================================= */

.ctf-quick {
    position: relative;
    z-index: 5;
    max-width: 1380px;
    margin: -26px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--ctf-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 15px 38px rgba(19, 46, 88, .08);
}

.ctf-quick > div {
    padding: 20px 24px;
    border-right: 1px solid var(--ctf-line);
}

.ctf-quick > div:last-child {
    border-right: 0;
}

.ctf-quick strong,
.ctf-quick span,
.ctf-quick a {
    display: block;
}

.ctf-quick strong {
    margin-bottom: 5px;
    color: #173b78;
    font-size: 14px;
}

.ctf-quick span,
.ctf-quick a {
    color: #49566a;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.ctf-section {
    max-width: 1380px;
    margin: 0 auto;
    padding: 78px 24px 0;
}

.ctf-section--soft {
    max-width: none;
    margin-top: 76px;
    padding:
        76px
        max(24px, calc((100vw - 1380px) / 2 + 24px));
    background: linear-gradient(180deg, #f7faff, #eef5ff);
}

.ctf-heading {
    max-width: 900px;
    margin: 0 auto 38px;
    text-align: center;
}

.ctf-heading > p {
    margin: 0 0 8px;
    color: var(--ctf-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.ctf-heading h2 {
    margin: 0;
    color: var(--ctf-navy);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.25;
    letter-spacing: -.045em;
    word-break: keep-all;
}

.ctf-heading > span {
    display: block;
    max-width: 800px;
    margin: 15px auto 0;
    color: var(--ctf-muted);
    font-size: 16px;
    line-height: 1.8;
    word-break: keep-all;
}


/* =========================================================
   STEPS
========================================================= */

.ctf-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ctf-steps article {
    padding: 28px 22px 25px;
    border: 1px solid var(--ctf-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(20, 46, 86, .04);
}

.ctf-steps b {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ctf-blue);
    color: #fff;
}

.ctf-steps h3 {
    margin: 18px 0 8px;
    color: #152b54;
    font-size: 20px;
}

.ctf-steps p {
    margin: 0;
    color: var(--ctf-muted);
    font-size: 14px;
    line-height: 1.7;
}

.ctf-center-action {
    margin-top: 28px;
    text-align: center;
}


/* =========================================================
   STORY / PHOTO
========================================================= */

.ctf-story-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .75fr;
    gap: 18px;
}

.ctf-photo-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(18, 46, 89, .08);
}

.ctf-photo-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.ctf-photo-card--wide img {
    object-position: center 35%;
}

.ctf-photo-card div {
    padding: 22px;
}

.ctf-photo-card h3 {
    margin: 0 0 8px;
    color: #142b55;
    font-size: 20px;
}

.ctf-photo-card p {
    margin: 0;
    color: #5b6676;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   GEAR
========================================================= */

.ctf-gear-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 26px;
    align-items: start;
}

.ctf-gear-image {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--ctf-line);
    border-radius: 18px;
    background: #fff;
}

.ctf-gear-image img {
    width: 100%;
    height: auto;
}

.ctf-gear-image figcaption {
    padding: 11px 16px 15px;
    color: #6a7483;
    font-size: 13px;
    text-align: center;
}

.ctf-gear-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ctf-gear-list article {
    min-height: 112px;
    padding: 18px;
    border: 1px solid var(--ctf-line);
    border-radius: 14px;
    background: #f9fbff;
}

.ctf-gear-list b,
.ctf-gear-list span {
    display: block;
}

.ctf-gear-list b {
    margin-bottom: 7px;
    color: #173b78;
    font-size: 17px;
}

.ctf-gear-list span {
    color: #5b6677;
    font-size: 14px;
    line-height: 1.6;
}

.ctf-warning {
    margin-top: 18px;
    padding: 16px 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    justify-content: center;
    border: 1px solid #f0c4c0;
    border-radius: 13px;
    background: #fff8f7;
    color: #c8332d;
    text-align: center;
}


/* =========================================================
   CATCH
========================================================= */

.ctf-catch {
    max-width: 1380px;
    margin: 78px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 22px;
    background: #0b224b;
}

.ctf-catch__image {
    min-height: 510px;
}

.ctf-catch__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctf-catch__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px;
    color: #fff;
}

.ctf-catch__copy > p:first-child {
    margin: 0 0 8px;
    color: #8fb8ff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .13em;
}

.ctf-catch__copy h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 37px;
    line-height: 1.25;
}

.ctf-catch__copy > p:not(:first-child) {
    margin: 0;
    color: #d6e1f3;
    font-size: 16px;
    line-height: 1.85;
}

.ctf-catch .ctf-btn--ghost {
    border-color: #6e83a4;
    background: transparent;
    color: #fff !important;
}


/* =========================================================
   GALLERY
========================================================= */

.ctf-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.ctf-gallery img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 16px;
}


/* =========================================================
   SEO COPY
========================================================= */

.ctf-seo-copy {
    max-width: 1040px;
    margin: 0 auto;
    padding: 30px 34px;
    border-top: 1px solid var(--ctf-line);
    border-bottom: 1px solid var(--ctf-line);
}

.ctf-seo-copy p {
    margin: 10px 0;
    color: #465267;
    font-size: 16px;
    line-height: 1.9;
    word-break: keep-all;
}

.ctf-seo-copy strong {
    color: #173b78;
}


/* =========================================================
   FAQ
========================================================= */

.ctf-section--faq {
    max-width: 1120px;
}

.ctf-faq {
    border-top: 2px solid #183f82;
}

.ctf-faq details {
    border-bottom: 1px solid var(--ctf-line);
}

.ctf-faq summary {
    position: relative;
    padding: 22px 52px 22px 8px;
    cursor: pointer;
    list-style: none;
    color: #1a2d50;
    font-size: 17px;
    font-weight: 800;
}

.ctf-faq summary::-webkit-details-marker {
    display: none;
}

.ctf-faq summary::after {
    content: "+";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ctf-blue);
    font-size: 25px;
}

.ctf-faq details[open] summary::after {
    content: "−";
}

.ctf-faq details p {
    margin: 0;
    padding: 0 44px 22px 8px;
    color: #5b6677;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   INTERNAL LINKS
========================================================= */

.ctf-link-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.ctf-link-grid a {
    min-height: 118px;
    padding: 20px;
    border: 1px solid var(--ctf-line);
    border-radius: 14px;
    background: #fff;
    transition: .2s;
}

.ctf-link-grid a:hover {
    transform: translateY(-2px);
    border-color: #9ab3db;
    box-shadow: 0 10px 24px rgba(20, 46, 86, .07);
}

.ctf-link-grid strong,
.ctf-link-grid span {
    display: block;
}

.ctf-link-grid strong {
    margin-bottom: 8px;
    color: #16396f;
    font-size: 17px;
}

.ctf-link-grid span {
    color: #697486;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   FINAL CTA
========================================================= */

.ctf-final {
    max-width: 1380px;
    margin: 78px auto 70px;
    padding: 44px 46px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center;
    border-radius: 22px;
    background: linear-gradient(110deg, #0a245f, #0e3b95);
    color: #fff;
}

.ctf-final p {
    margin: 0 0 8px;
    color: #9fc0ff;
    font-size: 13px;
    font-weight: 900;
}

.ctf-final h2 {
    margin: 0;
    color: #fff;
    font-size: 32px;
    line-height: 1.3;
}

.ctf-final span {
    display: block;
    margin-top: 10px;
    max-width: 760px;
    color: #dbe6f8;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .ctf-hero {
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }

    .ctf-hero__copy {
        padding-left: 30px;
        padding-right: 30px;
    }

    .ctf-quick {
        margin-left: 20px;
        margin-right: 20px;
    }

    .ctf-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .ctf-story-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ctf-photo-card--wide {
        grid-column: 1 / -1;
    }

    .ctf-gear-layout {
        grid-template-columns: 1fr;
    }

    .ctf-gear-image {
        max-width: 760px;
        margin: 0 auto;
    }

    .ctf-catch,
    .ctf-final {
        margin-left: 20px;
        margin-right: 20px;
    }

    .ctf-link-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .ctf-hero {
        display: block;
        min-height: 0;
        margin-top: -70px;
        padding-top: 70px;
    }

    .ctf-hero::before {
        height: 70px;
        background: rgba(0, 33, 82, .30);
    }

    .ctf-hero__copy {
        padding: 38px 18px 30px;
    }

    .ctf-kicker {
        font-size: 14px;
    }

    .ctf-hero h1 {
        font-size: 38px;
    }

    .ctf-hero__lead {
        margin-top: 17px;
        font-size: 15px;
        line-height: 1.75;
    }

    .ctf-hero__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 22px;
    }

    .ctf-btn {
        min-height: 46px;
        padding: 0 14px;
        font-size: 14px;
    }

    .ctf-hero__image {
        height: 280px;
        min-height: 0;
    }

    .ctf-quick {
        grid-template-columns: 1fr 1fr;
        margin: -18px 14px 0;
    }

    .ctf-quick > div {
        padding: 15px;
        border-bottom: 1px solid var(--ctf-line);
    }

    .ctf-quick > div:nth-child(2n) {
        border-right: 0;
    }

    .ctf-section {
        padding: 58px 16px 0;
    }

    .ctf-section--soft {
        margin-top: 58px;
        padding: 58px 16px;
    }

    .ctf-heading {
        margin-bottom: 28px;
    }

    .ctf-heading h2 {
        font-size: 27px;
    }

    .ctf-heading > span {
        font-size: 14px;
    }

    .ctf-steps {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .ctf-story-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ctf-photo-card--wide {
        grid-column: auto;
    }

    .ctf-photo-card img,
    .ctf-photo-card--wide img {
        height: 380px;
    }

    .ctf-gear-list {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .ctf-gear-list article {
        min-height: 118px;
        padding: 15px 13px;
    }

    .ctf-catch {
        display: block;
        margin: 58px 14px 0;
        border-radius: 17px;
    }

    .ctf-catch__image {
        height: 420px;
        min-height: 0;
    }

    .ctf-catch__copy {
        padding: 27px 20px 30px;
    }

    .ctf-catch__copy h2 {
        font-size: 27px;
    }

    .ctf-gallery {
        grid-template-columns: 1fr;
    }

    .ctf-gallery img {
        height: 430px;
    }

    .ctf-seo-copy {
        padding: 22px 3px;
    }

    .ctf-seo-copy p {
        font-size: 14px;
    }

    .ctf-faq summary {
        padding: 19px 44px 19px 4px;
        font-size: 15px;
    }

    .ctf-faq details p {
        padding: 0 34px 20px 4px;
        font-size: 14px;
    }

    .ctf-link-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .ctf-final {
        display: block;
        margin: 58px 14px 34px;
        padding: 29px 20px;
        border-radius: 17px;
    }

    .ctf-final h2 {
        font-size: 25px;
    }

    .ctf-final__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .ctf-hero h1 {
        font-size: 34px;
    }

    .ctf-hero__image {
        height: 245px;
    }

    .ctf-hero__actions {
        grid-template-columns: 1fr;
    }

    .ctf-quick {
        grid-template-columns: 1fr;
    }

    .ctf-quick > div {
        border-right: 0;
        border-bottom: 1px solid var(--ctf-line) !important;
    }

    .ctf-quick > div:last-child {
        border-bottom: 0 !important;
    }

    .ctf-photo-card img,
    .ctf-photo-card--wide img {
        height: 330px;
    }

    .ctf-gear-list {
        grid-template-columns: 1fr;
    }

    .ctf-catch__image {
        height: 360px;
    }

    .ctf-gallery img {
        height: 360px;
    }

    .ctf-link-grid {
        grid-template-columns: 1fr;
    }

}
