:root {
    --navy: #071a35;
    --navy-2: #0c2850;
    --blue: #1f5eff;
    --cyan: #44c7e8;
    --gold: #b89958;
    --ink: #11223b;
    --slate: #5f6e82;
    --paper: #f7f9fc;
    --line: rgba(10, 37, 73, .13);
    --serif: "DM Serif Display", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif;
    --shell: min(1180px, calc(100% - 64px))
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    background: #fff
}

.shell {
    width: var(--shell);
    margin: auto
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -60px;
    z-index: 100;
    color: #fff;
    background: var(--blue);
    padding: 9px 14px;
    border-radius: 5px
}

.skip-link:focus {
    top: 12px
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    cursor: pointer
}

.site-header {
    height: 88px;
    position: absolute;
    z-index: 20;
    width: 100%;
    transition: .35s ease
}

.site-header.is-scrolled {
    position: fixed;
    background: rgba(7, 26, 53, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, .08)
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand,
.footer-brand {
    display: block;
    width: 174px
}

.brand img,
.footer-brand img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
    filter: brightness(1.3) contrast(.85)
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: rgba(255, 255, 255, .8);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em
}

.site-nav>a:not(.button):after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: var(--cyan);
    transition: width .25s
}

.site-nav>a:hover:after {
    width: 100%
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .035em;
    transition: transform .25s, background .25s, border-color .25s, box-shadow .25s
}

.button i,
.text-link i {
    font-style: normal;
    font-size: 16px;
    line-height: .7
}

.button:hover {
    transform: translateY(-2px)
}

.button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 8px 20px rgba(31, 94, 255, .24)
}

.button-primary:hover {
    background: #3972ff;
    box-shadow: 0 12px 27px rgba(31, 94, 255, .3)
}

.button-small {
    padding: 11px 15px
}

.nav-cta {
    margin-left: 7px
}

.menu-toggle {
    display: none
}

.hero {
    min-height: 820px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 74% 35%, #12417a 0, transparent 25%), linear-gradient(125deg, #051529 0%, #081d3d 64%, #0b2c59 100%);
    color: #fff
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image: linear-gradient(rgba(101, 184, 255, .15) 1px, transparent 1px), linear-gradient(90deg, rgba(101, 184, 255, .15) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000, transparent 92%)
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .22
}

.glow-one {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    top: -100px;
    right: -60px
}

.glow-two {
    width: 290px;
    height: 290px;
    background: var(--blue);
    bottom: -150px;
    left: 24%
}

.hero-layout {
    min-height: 820px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative
}

.hero-copy {
    padding-top: 40px;
    max-width: 615px;
    position: relative;
    z-index: 99;
}

.eyebrow {
    margin: 0 0 18px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .16em;
    font-weight: 800;
    color: var(--blue)
}

.eyebrow.light {
    color: var(--cyan)
}

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

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2 {
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -.035em
}

h1 {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 5vw, 5.4rem);
    margin-bottom: 28px
}

h1 em,
h2 em {
    font-style: italic;
    color: var(--cyan)
}

.hero-intro {
    font-size: 18px;
    line-height: 1.7;
    max-width: 530px;
    color: rgba(255, 255, 255, .76);
    margin-bottom: 30px
}

.button-row {
    display: flex;
    align-items: center;
    gap: 28px
}

.text-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--blue);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .02em
}

.text-link:hover i {
    transform: translateX(4px)
}

.text-link i {
    transition: transform .25s
}

.on-dark {
    color: #fff
}

.hero-note {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    margin: 31px 0 0
}

.hero-art {
    position: absolute;
    width: min(650px, 54vw);
    right: -5%;
    top: 50%;
    transform: translateY(-42%);
    aspect-ratio: 1
}

.hero-art svg {
    width: 100%;
    height: 100%;
    overflow: visible
}

.chart-line {
    fill: none;
    stroke: url(#line);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3.3s .4s forwards
}

.line-two {
    opacity: .52;
    animation-delay: .8s
}

.line-three {
    opacity: .28;
    animation-delay: 1.1s
}

.nodes circle {
    fill: #e2bb6e;
    stroke: #fff;
    stroke-width: 3;
    transform-box: fill-box;
    transform-origin: center;
    animation: nodepulse 2.4s infinite
}

.orbit {
    position: absolute;
    border: 1px solid rgba(135, 209, 242, .17);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-32deg)
}

.orbit-a {
    width: 90%;
    height: 42%;
    animation: orbit 13s linear infinite
}

.orbit-b {
    width: 64%;
    height: 80%;
    animation: orbit 18s linear infinite reverse
}

.orbit-c {
    width: 95%;
    height: 95%;
    border-color: rgba(255, 255, 255, .08);
    animation: orbit 24s linear infinite
}

.art-label {
    position: absolute;
    display: grid;
    gap: 3px;
    padding: 13px 15px;
    background: rgba(7, 26, 53, .58);
    border: 1px solid rgba(136, 213, 246, .23);
    border-radius: 8px;
    backdrop-filter: blur(7px);
    font-size: 10px;
    color: rgba(255, 255, 255, .68)
}

.art-label b {
    color: #fff;
    font-size: 11px
}

.label-top {
    right: 2%;
    top: 18%
}

.label-bottom {
    left: 2%;
    bottom: 14%;
    display: flex;
    align-items: center;
    gap: 8px
}

.pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 0 rgba(68, 199, 232, .7);
    animation: pulse 2.4s infinite
}

.scroll-cue {
    position: absolute;
    bottom: 29px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    align-items: center;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase
}

.scroll-cue i {
    height: 28px;
    width: 1px;
    background: linear-gradient(#fff, transparent)
}

.section {
    padding: 130px 0
}

.split-intro {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    gap: 45px
}

.split-intro h2,
.section-heading h2 {
    font-family: var(--serif);
    font-size: clamp(2.65rem, 4.2vw, 4.4rem);
    margin-bottom: 24px
}

.split-intro h2 em {
    color: var(--blue)
}

.lead {
    max-width: 750px;
    font-size: 19px;
    line-height: 1.75;
    color: var(--slate)
}

.section-navy {
    background: var(--navy);
    color: #fff
}

.section-heading {
    max-width: 715px
}

.section-heading>p:not(.eyebrow) {
    color: var(--slate);
    font-size: 17px;
    line-height: 1.75
}

.section-heading.two-col {
    max-width: none;
    display: grid;
    grid-template-columns: 1.05fr .7fr;
    justify-content: space-between;
    gap: 90px;
    align-items: end
}

.section-heading.two-col>p {
    margin-bottom: 28px
}

.section-navy .section-heading>p:not(.eyebrow) {
    color: rgba(255, 255, 255, .64)
}

.wealth-map {
    height: 520px;
    position: relative;
    margin: 38px 0 15px
}

.wealth-map svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible
}

.wealth-map svg path {
    fill: none;
    stroke: rgba(83, 188, 228, .24);
    stroke-width: 1.2;
    stroke-dasharray: 5 8
}

.map-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 166px;
    height: 166px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 32% 25%, #195398, #0a2853 72%);
    border: 1px solid rgba(119, 205, 240, .46);
    box-shadow: 0 0 0 15px rgba(68, 199, 232, .04), 0 0 75px rgba(36, 107, 202, .25)
}

.map-center span {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cyan);
    font-weight: 800
}

.map-center strong {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.1;
    font-weight: 400;
    margin-top: 7px
}

.map-item {
    position: absolute;
    width: 190px
}

.map-item b {
    display: block;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400
}

.map-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, .62)
}

.map-goals {
    left: 2%;
    top: 18%
}

.map-plan {
    left: 42%;
    top: 0;
    text-align: center
}

.map-portfolio {
    right: 0;
    top: 18%;
    text-align: right
}

.map-protection {
    left: 16%;
    bottom: 0
}

.map-review {
    right: 16%;
    bottom: 0;
    text-align: right
}

.centered-link {
    display: flex;
    justify-content: center
}

.section-soft {
    background: var(--paper)
}

.investment-explorer {
    margin-top: 54px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    overflow: hidden
}

.lens-tabs {
    display: flex;
    border-bottom: 1px solid var(--line)
}

.lens {
    flex: 1;
    padding: 21px 15px;
    background: #fff;
    border: 0;
    border-right: 1px solid var(--line);
    color: var(--slate);
    font-size: 12px;
    font-weight: 800;
    transition: .25s
}

.lens:last-child {
    border: 0
}

.lens.active {
    background: var(--navy);
    color: #fff
}

.spectrum {
    height: 290px;
    position: relative;
    margin: 0 7%;
}

.spectrum-meta {
    position: absolute;
    top: 49%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #8290a4;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: .1em;
    font-weight: 800
}

.spectrum-line {
    position: absolute;
    top: 58%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #6cb8e7, var(--blue), var(--gold))
}

.asset {
    position: absolute;
    bottom: calc(42% - 3px);
    transform: translateX(-50%);
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    transition: opacity .3s, transform .3s
}

.asset span {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(31, 94, 255, .3);
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 4px 13px rgba(7, 26, 53, .08)
}

.asset b {
    font-size: 11px;
    white-space: nowrap
}

.asset:hover span {
    background: var(--blue);
    color: #fff;
    transform: scale(1.12)
}

.asset-fd {
    left: 6%;
    bottom: calc(37% - 3px)
}

.asset-bonds {
    left: 27%;
    bottom: calc(64% - 3px)
}

.asset-mf {
    left: 52%;
    bottom: calc(35% - 3px)
}

.asset-equities {
    left: 76%;
    bottom: calc(75% - 3px)
}

.asset-pms {
    left: 94%;
    bottom: calc(46% - 3px)
}

.asset.dim {
    opacity: .18;
    transform: translateX(-50%) scale(.87)
}

.lens-copy {
    padding: 21px 7%;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 25px;
    font-size: 13px
}

.lens-copy p {
    margin: 0
}

.lens-copy p b {
    color: var(--blue)
}

.lens-copy>span {
    color: var(--slate);
    font-size: 11px;
    max-width: 330px
}

.investment-footnote {
    font-size: 11px;
    color: var(--slate);
    margin: 17px 0 0
}

.solution-accordions {
    margin-top: 45px;
    border-top: 1px solid var(--line)
}

.solution-item {
    border-bottom: 1px solid var(--line)
}

.solution-trigger {
    padding: 29px 0;
    display: grid;
    grid-template-columns: 85px 1fr auto;
    gap: 20px;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    color: var(--ink);
    align-items: start
}

.solution-number {
    font-size: 15px;
    color: var(--blue);
    font-weight: 800;
    padding-top: 5px
}

.solution-trigger b {
    font-family: var(--serif);
    font-size: 29px;
    font-weight: 400;
    display: block;
    line-height: 1.1
}

.solution-trigger small {
    font-size: 15px;
    color: var(--slate);
    display: block;
    margin-top: 7px
}

.solution-trigger>i {
    font-style: normal;
    color: var(--blue);
    font-size: 26px;
    line-height: .8;
    transition: transform .3s
}

.is-open .solution-trigger>i {
    transform: rotate(45deg)
}

.solution-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s ease
}

.solution-panel>div {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr auto;
    align-items: start;
    gap: 30px;
    padding: 0 55px 0 105px
}

.is-open .solution-panel {
    grid-template-rows: 1fr
}

.is-open .solution-panel>div {
    padding-bottom: 30px
}

.solution-panel p {
    font-size: 15px;
    color: var(--slate);
    margin: 0
}

.solution-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    columns: 2;
    font-size: 15px;
    line-height: 1.7
}

.solution-panel li {
    position: relative;
    padding-left: 18px;
}

.solution-panel li::before {
    content: "·";
    color: var(--blue);
    font-weight: 800;
    position: absolute;
    left: 0;
    top: 0;
}

.audience-layout {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 10%;
    align-items: center
}

.audience-copy>p:not(.eyebrow) {
    color: var(--slate)
}

.audience-tabs {
    margin-top: 38px;
    border-top: 1px solid var(--line)
}

.audience-tab {
    width: 100%;
    padding: 13px 5px;
    display: flex;
    justify-content: space-between;
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 800;
    color: #748197;
    transition: color .2s
}

.audience-tab:after {
    content: "↗";
    opacity: 0
}

.audience-tab.active {
    color: var(--blue)
}

.audience-tab.active:after {
    opacity: 1
}

.audience-card {
    background: linear-gradient(145deg, #0a2a56, #06182f);
    border-radius: 15px;
    padding: 44px;
    color: #fff;
    position: relative;
    min-height: 397px;
    overflow: hidden;
    box-shadow: 0 15px 38px rgba(7, 26, 53, .16)
}

.audience-card:before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -200px;
    top: -180px;
    border: 1px solid rgba(110, 211, 246, .3);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(110, 211, 246, .04), 0 0 0 82px rgba(110, 211, 246, .035)
}

.card-index {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800
}

.audience-symbol {
    font-family: var(--serif);
    font-size: 73px;
    color: var(--cyan);
    line-height: 1;
    margin: 46px 0 30px
}

.audience-card h3 {
    font-family: var(--serif);
    font-size: 37px;
    font-weight: 400;
    margin-bottom: 10px
}

.audience-card p {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    max-width: 340px
}

.card-line {
    display: block;
    width: 45px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0 12px
}

.audience-card small {
    font-size: 13px;
    color: rgba(255, 255, 255, .54)
}

.centered {
    text-align: center;
    margin: 0 auto
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 53px;
    border-top: 1px solid rgba(255, 255, 255, .17);
    border-left: 1px solid rgba(255, 255, 255, .17);
    margin-bottom: 50px;
}

.trust-grid article {
    padding: 27px 25px 30px;
    border-right: 1px solid rgba(255, 255, 255, .17);
    border-bottom: 1px solid rgba(255, 255, 255, .17)
}

.trust-grid span {
    font-size: 15px;
    font-weight: 800;
    color: var(--cyan)
}

.trust-grid h3 {
    font-family: var(--serif);
    font-size: 23px;
    line-height: 1.15;
    font-weight: 400;
    margin: 26px 0 10px
}

.trust-grid p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .62);
    margin: 0
}

.process-list {
    padding: 0;
    margin: 56px 0 0;
    list-style: none;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(5, 1fr)
}

.process-list li {
    padding: 26px 22px 0 0;
    position: relative
}

.process-list li:not(:last-child):after {
    content: "";
    position: absolute;
    top: -1px;
    right: 0;
    width: calc(100% - 30px);
    height: 1px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .7s
}

.process-list.is-visible li:not(:last-child):after {
    transform: scaleX(1)
}

.process-list span {
    font-size: 15px;
    font-weight: 800;
    color: var(--blue)
}

.process-list h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    margin: 26px 0 8px
}

.process-list p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--slate);
    margin: 0;
    max-width: 180px
}

.contact {
    position: relative;
    color: #fff;
    overflow: hidden;
    background: radial-gradient(circle at 15% 70%, #123e77, transparent 30%), var(--navy);
    padding: 128px 0
}

.contact-glow {
    position: absolute;
    right: -220px;
    top: -240px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(99, 210, 244, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(99, 210, 244, .025), 0 0 0 130px rgba(99, 210, 244, .02)
}

.contact-layout {
    position: relative;
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 11%;
    align-items: start
}

.contact-copy h2 {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 4vw, 4.3rem);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -.035em;
    margin-bottom: 25px
}

.contact-copy>p:not(.eyebrow) {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    max-width: 440px
}

.contact address {
    font-style: normal;
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    margin-top: 50px
}

.enquiry-form {
    padding: 32px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 13px;
    backdrop-filter: blur(12px)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.enquiry-form label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .62);
    font-weight: 800;
    margin: 0 0 8px
}

.enquiry-form label span {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    background: transparent;
    border-radius: 0;
    outline: none;
    padding: 8px 0 11px;
    margin: 0 0 24px;
    color: #fff;
    font-size: 13px;
    transition: border-color .25s
}

.enquiry-form textarea {
    resize: vertical
}

.enquiry-form select option {
    color: var(--ink)
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--cyan)
}

.form-submit {
    margin-top: 5px
}

.form-status {
    margin: 14px 0 0;
    font-size: 12px;
    min-height: 20px;
    color: var(--cyan)
}

.footer {
    background: #051327;
    color: #fff;
    padding-top: 38px
}

.footer-main {
    display: grid;
    grid-template-columns: 215px 1fr auto;
    gap: 40px;
    align-items: center;
    padding-bottom: 35px
}

.footer-main>p {
    font-size: 15px;
    color: rgba(255, 255, 255, .58);
    margin: 25px 0 0 0;
    max-width: 455px
}

.footer-main nav {
    display: flex;
    gap:30px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, .72)
}

.footer-main nav a:hover {
    color: var(--cyan)
}

.footer-bottom {
    padding: 17px 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
    color: rgba(255, 255, 255, .43)
}

.footer-bottom p {
    margin: 0
}

.footer-bottom p:last-child {
    max-width: 650px;
    text-align: right
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease
}

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

@keyframes draw {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes orbit {
    to {
        transform: translate(-50%, -50%) rotate(328deg)
    }
}

@keyframes nodepulse {
    50% {
        transform: scale(1.3);
        filter: drop-shadow(0 0 8px #fff)
    }
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 7px rgba(68, 199, 232, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(68, 199, 232, 0)
    }
}

@media(max-width:1050px) {
    .hero-art {
        right: -13%
    }

    .wealth-map {
        height: 480px
    }

    .solution-panel>div {
        grid-template-columns: 1fr 1fr;
        padding-left: 105px
    }

    .solution-panel .text-link {
        grid-column: 2
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px
    }

    .process-list li:nth-child(4) {
        grid-column: 1
    }

    .process-list li:after {
        display: none
    }
}

@media(max-width:800px) {
    :root {
        --shell: min(100% - 40px, 620px)
    }

    .site-header {
        height: 72px
    }

    .brand {
        width: 143px
    }

    .menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        padding: 0;
        align-items: center;
        justify-content: center;
        gap: 5px;
        flex-direction: column;
        background: transparent;
        border: 0
    }

    .menu-toggle span {
        display: block;
        width: 21px;
        height: 1.5px;
        background: #fff;
        transition: transform .25s
    }

    .menu-toggle.is-open span:first-child {
        transform: translateY(3px) rotate(45deg)
    }

    .menu-toggle.is-open span:last-child {
        transform: translateY(-3px) rotate(-45deg)
    }

    .site-nav {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        inset: 72px 0 auto;
        height: calc(100vh - 72px);
        background: var(--navy);
        padding: 42px max(20px, calc((100vw - 620px)/2));
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 24px;
        transform: translateY(-16px);
        transition: .3s;
        overflow: auto;
        font-size: 15px
    }

    .site-nav.open {
        visibility: visible;
        opacity: 1;
        transform: none
    }

    .site-nav .nav-cta {
        margin: 12px 0 0
    }

    .hero,
    .hero-layout {
        min-height: 760px
    }

    .hero-layout {
        display: block;
        padding-top: 157px
    }

    .hero-copy {
        padding: 0
    }

    .hero-art {
        width: 455px;
        right: -150px;
        top: auto;
        bottom: -140px;
        transform: none;
        opacity: .72
    }

    .hero-intro {
        font-size: 16px
    }

    .scroll-cue {
        display: none
    }

    .section {
        padding: 88px 0
    }

    .split-intro,
    .section-heading.two-col,
    .audience-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .split-intro .eyebrow {
        margin-bottom: 0
    }

    .lead {
        font-size: 17px
    }

    .section-heading.two-col>p {
        margin: 0
    }

    .wealth-map {
        height: 510px;
        margin-top: 10px
    }

    .map-center {
        width: 135px;
        height: 135px
    }

    .map-center strong {
        font-size: 17px
    }

    .map-item {
        width: 120px
    }

    .map-item b {
        font-size: 21px
    }

    .map-item span {
        font-size: 10px;
        line-height: 1.3;
        display: block
    }

    .map-goals {
        left: 0;
        top: 19%
    }

    .map-plan {
        left: 50%;
        top: 2%;
        transform: translateX(-50%)
    }

    .map-portfolio {
        right: 0;
        top: 19%
    }

    .map-protection {
        left: 2%;
        bottom: 4%
    }

    .map-review {
        right: 2%;
        bottom: 4%
    }

    .lens-tabs {
        overflow: auto
    }

    .lens {
        min-width: 150px
    }

    .spectrum {
        margin: 0 5%;
        height: 330px
    }

    .asset b {
        font-size: 9px
    }

    .asset-fd {
        left: 3%
    }

    .asset-bonds {
        left: 25%
    }

    .asset-mf {
        left: 51%
    }

    .asset-equities {
        left: 76%
    }

    .asset-pms {
        left: 97%
    }

    .lens-copy {
        padding: 18px;
        display: block
    }

    .lens-copy>span {
        display: block;
        margin-top: 8px
    }

    .solution-trigger {
        grid-template-columns: 42px 1fr auto
    }

    .solution-trigger b {
        font-size: 25px
    }

    .solution-panel>div {
        display: block;
        padding-left: 42px
    }

    .solution-panel ul {
        margin: 18px 0
    }

    .solution-panel .text-link {
        margin-top: 8px
    }

    .audience-card {
        min-height: 365px
    }

    .trust-grid {
        grid-template-columns: 1fr
    }

    .trust-grid article {
        padding: 23px
    }

    .process-list {
        grid-template-columns: 1fr 1fr;
        gap: 0
    }

    .process-list li {
        padding: 21px 18px 26px 0;
        border-bottom: 1px solid var(--line)
    }

    .process-list li:last-child {
        border-bottom: 0
    }

    .contact {
        padding: 85px 0
    }

    .enquiry-form {
        padding: 25px 20px
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .footer-main nav {
        flex-wrap: wrap
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom p:last-child {
        text-align: left;
        margin-top: 9px
    }

    .footer-brand {
        width: 180px
    }
}

@media(max-width:480px) {
    :root {
        --shell: calc(100% - 32px)
    }

    .hero,
    .hero-layout {
        min-height: 700px
    }

    .hero-layout {
        padding-top: 130px
    }

    .eyebrow {
        font-size: 9px
    }

    .hero h1 {
        font-size: 2.8rem
    }

    .hero-intro {
        font-size: 15px;
        max-width: 360px
    }

    .button-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px
    }

    .hero-note {
        margin-top: 22px
    }

    .hero-art {
        width: 380px;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .art-label {
        display: none
    }

    .split-intro h2,
    .section-heading h2 {
        font-size: 2.55rem
    }

    .wealth-map {
        height: 450px
    }

    .map-center {
        width: 110px;
        height: 110px
    }

    .map-center span {
        font-size: 8px
    }

    .map-center strong {
        font-size: 15px
    }

    .map-item {
        width: 96px
    }

    .map-item b {
        font-size: 18px
    }

    .map-item span {
        font-size: 9px
    }

    .map-goals,
    .map-portfolio {
        top: 21%
    }

    .map-protection,
    .map-review {
        bottom: 5%
    }

    .investment-explorer {
        margin-top: 35px
    }

    .spectrum {
        height: 285px
    }

    .spectrum-meta {
        font-size: 7px
    }

    .asset span {
        width: 35px;
        height: 35px;
        font-size: 8px
    }

    .asset b {
        font-size: 8px
    }

    .solution-trigger {
        padding: 23px 0
    }

    .solution-trigger small {
        font-size: 11px
    }

    .solution-panel>div {
        padding-left: 42px
    }

    .solution-panel ul {
        columns: 1
    }

    .audience-card {
        padding: 33px;
        min-height: 340px
    }

    .audience-symbol {
        margin: 31px 0 22px
    }

    .audience-card h3 {
        font-size: 32px
    }

    .process-list {
        grid-template-columns: 1fr
    }

    .process-list h3 {
        margin: 11px 0 5px
    }

    .process-list li {
        display: grid;
        grid-template-columns: 50px 1fr;
        gap: 8px
    }

    .process-list li span {
        padding-top: 9px
    }

    .process-list p {
        max-width: none
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .contact-copy h2 {
        font-size: 2.65rem
    }

    .footer-main>p {
        font-size: 11px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

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