:root {
    --blue: #075ee8;
    --blue-dark: #0449bc;
    --blue-soft: #eaf3ff;
    --navy: #071a3c;
    --text: #40516f;
    --line: #dfe7f1;
    --white: #fff;
    --surface: #f7faff;
    --green: #18a966;
    --shadow: 0 16px 48px rgba(15, 43, 85, .09);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--navy);
    background: var(--white);
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 82px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 76px;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(220,229,240,.85);
    backdrop-filter: blur(14px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: 218px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 700; }
.main-nav > a:not(.nav-cta) { color: #42506a; transition: color .2s; }
.main-nav > a:not(.nav-cta):hover { color: var(--blue); }
.nav-cta { display: inline-flex; align-items: center; gap: 14px; padding: 13px 20px; color: #fff; background: var(--blue); border-radius: 10px; box-shadow: 0 9px 24px rgba(7,94,232,.2); transition: transform .2s, background .2s; }
.nav-cta svg { width: 17px; height: 17px; }
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-2px); }
.menu-toggle { display: none; align-items: center; justify-content: center; padding: 8px; color: var(--navy); background: transparent; border: 0; cursor: pointer; }

.hero { position: relative; min-height: 600px; overflow: hidden; background: linear-gradient(90deg, #fff 0%, #f5f9fe 55%, #eaf4fc 100%); }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: right center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.97) 31%, rgba(255,255,255,.72) 49%, rgba(255,255,255,0) 66%); }
.hero-inner { position: relative; z-index: 2; min-height: 600px; display: flex; align-items: center; }
.hero-content { width: 55%; max-width: 650px; padding: 52px 0; }
.eyebrow, .section-kicker { color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .01em; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; padding: 9px 13px; background: rgba(238,246,255,.95); border: 1px solid #cfe2fb; border-radius: 30px; }
.eyebrow svg { width: 17px; height: 17px; }
.hero h1 { max-width: 630px; margin: 0; font-size: clamp(46px, 5.1vw, 68px); line-height: 1.04; letter-spacing: -3.4px; }
.hero h1 span { color: var(--blue); }
.hero-content > p { max-width: 600px; margin: 23px 0 28px; color: var(--text); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 22px; border: 1px solid transparent; border-radius: 10px; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button svg { width: 18px; height: 18px; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 10px 24px rgba(7,94,232,.2); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 14px 28px rgba(7,94,232,.28); }
.button-light { color: var(--blue); background: rgba(255,255,255,.9); border-color: #8eb9f6; }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 28px; color: #62718b; font-size: 12px; }
.hero-note strong { color: var(--navy); }
.avatars { display: flex; }
.avatars i { width: 29px; height: 29px; display: grid; place-items: center; margin-left: -7px; color: #fff; background: var(--navy); border: 2px solid #fff; border-radius: 50%; font-size: 10px; font-style: normal; font-weight: 800; }
.avatars i:first-child { margin-left: 0; background: #ff9455; }
.avatars i:last-child { background: var(--blue); }

.section-heading { margin-bottom: 34px; }
.section-heading h2 { margin: 7px 0 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.15; letter-spacing: -1.7px; }
.centered { text-align: center; }
.benefits { background: #fff; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { min-height: 174px; display: flex; align-items: flex-start; gap: 18px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 32px rgba(14,40,80,.06); transition: transform .25s, box-shadow .25s; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon-box { flex: 0 0 52px; width: 52px; height: 52px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 16px; }
.icon-box svg { width: 24px; height: 24px; }
.benefit-card h3 { margin: 1px 0 9px; font-size: 17px; }
.benefit-card p { margin: 0; color: var(--text); font-size: 13px; line-height: 1.65; }

.opportunities { background: var(--surface); }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.split-heading > p { max-width: 460px; margin: 0; color: var(--text); line-height: 1.7; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.category-card { position: relative; min-height: 230px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; overflow: hidden; color: #fff; border-radius: 20px; box-shadow: 0 18px 38px rgba(8,45,102,.11); transition: transform .25s, box-shadow .25s; }
.category-card:hover { transform: translateY(-6px); box-shadow: 0 25px 46px rgba(8,45,102,.18); }
.category-card::after { content: ""; position: absolute; right: -40px; bottom: -55px; width: 190px; height: 190px; border: 36px solid rgba(255,255,255,.11); border-radius: 50%; }
.category-1 { background: linear-gradient(135deg, #075ee8, #0848ad); }
.category-2 { background: linear-gradient(135deg, #162b5e, #071a3c); }
.category-3 { background: linear-gradient(135deg, #f5823b, #e75037); }
.category-number { font-size: 13px; font-weight: 700; opacity: .65; }
.category-card strong { position: relative; z-index: 2; max-width: 240px; font-size: 23px; line-height: 1.25; letter-spacing: -.7px; }
.circle-arrow { position: absolute; z-index: 2; right: 25px; top: 24px; width: 42px; height: 42px; display: grid; place-items: center; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.circle-arrow svg { width: 18px; height: 18px; }

.subscribe { background: #fff; }
.subscribe-box { padding: 44px; background: linear-gradient(135deg, #f0f7ff, #f9fbff); border: 1px solid #dbe8f8; border-radius: 24px; }
.subscribe-copy { max-width: 650px; }
.subscribe-copy h2 { margin: 8px 0 10px; font-size: clamp(27px, 3vw, 39px); letter-spacing: -1.6px; }
.subscribe-copy p { margin: 0; color: var(--text); }
.preference-form { display: grid; grid-template-columns: 1.5fr 1.6fr auto; gap: 12px; align-items: center; margin-top: 27px; }
.preference-form > input { width: 100%; height: 52px; padding: 0 17px; color: var(--navy); background: #fff; border: 1px solid #cfdceb; border-radius: 10px; outline: 0; transition: border .2s, box-shadow .2s; }
.preference-form > input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(7,94,232,.1); }
.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.channels label { cursor: pointer; }
.channels input { position: absolute; opacity: 0; pointer-events: none; }
.channels span { height: 52px; display: flex; align-items: center; justify-content: center; gap: 7px; color: #44536f; background: #fff; border: 1px solid #cfdceb; border-radius: 10px; font-size: 13px; font-weight: 700; transition: .2s; }
.channels svg { width: 18px; height: 18px; }
.channels input:checked + span { color: var(--blue); background: var(--blue-soft); border-color: var(--blue); box-shadow: 0 0 0 2px rgba(7,94,232,.08); }
.form-message { grid-column: 1 / -1; margin: 0; padding-top: 4px; font-size: 13px; font-weight: 700; }
.form-message.success { color: var(--green); }
.form-message.error { color: #c93e39; }

.site-footer { padding: 10px 0 24px; background: #fff; }
.footer-main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding: 28px 0; border-top: 1px solid var(--line); }
.footer-main .brand img { width: 184px; }
.footer-links { display: flex; gap: 28px; color: #53617a; font-size: 13px; font-weight: 600; }
.footer-links a:hover { color: var(--blue); }
.footer-main > p { justify-self: end; margin: 0; color: #7b88a0; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; color: #8a96a9; border-top: 1px solid #edf1f6; font-size: 11px; }

@media (max-width: 1020px) {
    .hero { min-height: 560px; }
    .hero-inner { min-height: 560px; }
    .hero-content { width: 58%; }
    .hero-photo { object-position: right center; }
    .hero h1 { font-size: 53px; }
    .hero-content > p { font-size: 15px; }
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit-card { min-height: auto; }
    .preference-form { grid-template-columns: 1fr; }
    .channels { max-width: 540px; }
    .preference-form .button { justify-self: start; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-links { justify-self: end; }
    .footer-main > p { display: none; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 28px, 620px); }
    .section { padding: 62px 0; }
    .site-header { height: 68px; }
    .menu-toggle { display: inline-flex; }
    .main-nav { position: absolute; top: 68px; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 14px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(16,39,72,.12); }
    .main-nav.is-open { display: flex; }
    .main-nav > a { padding: 13px 14px; }
    .nav-cta { margin-top: 7px; justify-content: space-between; }
    .hero { min-height: 0; padding-top: clamp(330px, 90vw, 680px); background: #fff; }
    .hero-photo { top: 0; right: auto; bottom: auto; left: -60%; width: 160%; height: auto; min-height: 0; max-height: none; object-fit: initial; object-position: initial; }
    .hero-shade { height: clamp(335px, 91vw, 688px); background: linear-gradient(0deg, #fff 0%, rgba(255,255,255,0) 34%); }
    .hero-inner { min-height: 0; }
    .hero-content { width: 100%; padding: 20px 0 54px; }
    .eyebrow { margin-bottom: 16px; font-size: 11px; }
    .hero h1 { font-size: clamp(40px, 12vw, 55px); letter-spacing: -2.5px; }
    .hero h1 br { display: none; }
    .hero-content > p { margin: 20px 0 25px; line-height: 1.65; }
    .hero-actions .button { flex: 1 1 200px; }
    .split-heading { align-items: flex-start; flex-direction: column; gap: 16px; }
    .category-grid { grid-template-columns: 1fr; }
    .category-card { min-height: 190px; }
    .subscribe-box { padding: 28px 20px; }
    .channels { grid-template-columns: 1fr; }
    .preference-form .button { width: 100%; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-links { justify-self: start; flex-wrap: wrap; gap: 16px 24px; }
}

@media (max-width: 420px) {
    .brand img { width: 184px; }
    .hero h1 { font-size: 39px; }
    .hero-note { align-items: flex-start; }
    .benefit-card { flex-direction: column; padding: 23px; }
    .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 360px) {
    .container { width: calc(100% - 24px); }
    .brand img { width: 166px; }
    .hero h1 { font-size: 35px; }
    .hero-actions .button { flex-basis: 100%; }
    .subscribe-box { padding-inline: 17px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
