

:root {
    --red: #e21e26;
    --navy: #1f1d5f;
    --ink: #232526;
    --muted: #6b7075;
    --line: #e7e8e9;
    --gold: #dda638;
    --light: #f5f6f7;
    --radius: 12px
}

* {
    box-sizing: border-box
}

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

body {
    margin: 0;
    background: white;
    color: var(--ink);
    font-family: 'Albert Sans', Tahoma, sans-serif;
    font-size: 15px;
    line-height: 1.6
}

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

button {
    font: inherit;
    cursor: pointer
}

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

button,
a {
    -webkit-tap-highlight-color: transparent
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 5px
}

::selection {
    background: #ffe1df
}

.wrap {
    max-width: 1280px;
    width: calc(100% - 112px);
    margin: auto
}

.section {
    padding-top: 100px;
    padding-bottom: 100px
}

.eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    display: flex;
    align-items: center;
    gap: 10px
}

h1,
h2,
h3,
h4,
h5,
p {
    margin: 0
}

h2 {
    font-size: 39px;
    line-height: 1.18;
    letter-spacing: -1.5px;
    font-weight: 550
}

h3 {
    font-size: 21px;
    letter-spacing: -.6px;
    line-height: 1.3
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--red);
    color: white;
    padding: 16px 22px;
    font-size: 12px;
    font-weight: 650;
    border: 1px solid var(--red);
    border-radius: 7px;
    transition: background .2s, transform .2s;
    min-height: 48px
}

.button:hover {
    background: #bc1820;
    transform: translateY(-2px)
}

.button span {
    font-size: 18px;
    line-height: 1
}

.button.compact {
    font-size: 11px;
    padding: 12px 17px;
    min-height: 43px;
    gap: 18px
}
.button.secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.button.secondary:hover {
    background: var(--light);
    border-color: #ccc;
    transform: translateY(-2px);
}

header {
    position: sticky;
    top: 0;
    background: #fffffff5;
    backdrop-filter: blur(12px);
    z-index: 20;
    border-bottom: 1px solid var(--line)
}

.nav-shell {
    max-width: 1370px;
    width: calc(100% - 80px);
    height: 86px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.sterling-logo {
    width: 114px;
    height: auto
}

nav {
    display: flex;
    gap: 30px
}

nav a {
    font-size: 12px;
    font-weight: 550;
    position: relative
}

nav a:hover,
nav a.active {
    color: var(--red)
}

nav a.active:after {
    content: '';
    height: 2px;
    background: var(--red);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px
}

.menu-toggle {
    display: none
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    padding-top: 80px;
    padding-bottom: 38px;
    min-height: 690px;
    height: calc(90vh - 86px);
    max-height: 830px
}

.hero-copy {
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

.partner {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 34px
}

.partner>span {
    font-size: 7px;
    line-height: 1.9;
    letter-spacing: .8px;
    color: #62656a
}

.partner strong {
    font-weight: 600
}

.partner i {
    height: 36px;
    width: 1px;
    background: var(--line)
}

.partner img {
    width: 135px;
    height: 66px;
    object-fit: contain
}

.red-line {
    height: 2px;
    width: 22px;
    background: var(--red)
}

.hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1.7px;
    margin-bottom: 18px
}

h1 {
    font-family: "Bebas Neue", Tahoma, sans-serif;
    font-size: 86px;
    line-height: .99;
    letter-spacing: -4.8px;
    font-weight: 550;
    color: var(--navy);
    margin-bottom: 24px
}

h1>span:not(.period) {
    color: var(--red)
}

h1 .period {
    color: var(--red)
}

.hero-description {
    font-size: 15px;
    color: #68696d;
    max-width: 390px;
    line-height: 1.75
}

.offer {
    display: flex;
    margin-top: 29px;
    padding: 0;
    gap: 32px;
    color: var(--navy)
}

.offer>div+div {
    border-left: 1px solid #d9d9df;
    padding-left: 32px
}

.offer strong {
    font-family: Tahoma, sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -.8px;
    display: block;
    line-height: 1.25
}

.offer strong span {
    font-family: 'Albert Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    font-weight: 400
}

.offer small {
    display: block;
    color: #6b6b75;
    font-size: 10px;
    margin-top: 6px
}

.fineprint {
    font-size: 10px;
    color: #797d82;
    line-height: 1.6
}

.hero .fineprint {
    margin-top: 14px
}

.hero-actions {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-top: 25px
}

.prospectus {
    border: 0;
    padding: 0;
    background: none;
    color: #6b7075;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    cursor: not-allowed
}

.prospectus small,
.final-prospectus small {
    font-size: 7px;
    font-weight: 650;
    letter-spacing: 1px;
    border: 1px solid #d9dade;
    border-radius: 3px;
    padding: 2px 5px;
    color: #777c83
}

.hero-visual {
    position: relative;
    min-width: 0;
    min-height: 580px;
    border-radius: 12px;
    overflow: hidden;
    background: #e4e7ea
}

.refinery {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 46% center
}

.photo-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 40px 22px 20px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 8px;
    letter-spacing: 1px;
    color: white;
    background: linear-gradient(transparent, #101626bb)
}

.intro-strip {
    display: flex;
    align-items: center;
    gap: 32px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 23px 0;
    font-size: 12px
}

.intro-strip>span {
    display: flex;
    gap: 13px;
    align-items: center;
    font-weight: 600
}

.outline-icon {
    border: 1px solid #f0c4c5;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: var(--red);
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 18px
}

.intro-strip p {
    font-size: 11px;
    color: var(--muted)
}

.intro-strip>a {
    margin-left: auto;
    font-size: 22px
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 35px
}

.section-top .eyebrow,
.journey-copy>.eyebrow {
    color: var(--red);
    margin-bottom: 14px
}

.section-top>p {
    font-size: 12px;
    line-height: 1.8;
    color: var(--muted)
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.route-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .25s, border-color .25s
}

.route-card:hover {
    transform: translateY(-5px);
    border-color: #eab6b7
}

.route-card.active {
    border-color: var(--red)
}

.card-visual {
    height: 235px;
    background: #f8f0ef;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 28px
}

.card-visual .phone {
    width: 230px
}

.card-visual .desktop {
    width: 310px;
}

.card-visual .desktop .screen {
    min-height: 175px;
    height: 175px;
}

.sterlingpro .card-visual {
    padding-top: 40px
}

/* Splash screen: icon + name centered on brand-colored background */
.splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 280px;
}
.splash-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: contain;
}
.splash-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: -0.3px;
}
.big-device .splash-screen {
    min-height: 380px;
}
.big-device .splash-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
}
.big-device .splash-name {
    font-size: 18px;
}

.banca .card-visual {
    background: #f0f1f7
}

.sterlingpro .card-visual {
    background: #eff1f3;
    padding-top: 53px
}

.illustration-label {
    position: absolute;
    right: 12px;
    bottom: 10px;
    font-size: 6px;
    color: #74777d;
    letter-spacing: 1px;
    background: #ffffffd9;
    padding: 3px 5px;
    border-radius: 2px
}

.card-body {
    padding: 24px
}

.tags {
    display: flex;
    gap: 7px;
    margin-bottom: 13px
}

.tags span {
    font-size: 8px;
    border: 1px solid #e2e3e5;
    border-radius: 4px;
    padding: 2px 7px;
    color: #70747a
}

.card-body h3 {
    font-size: 22px;
    font-weight: 550
}

.card-body p {
    font-size: 12px;
    line-height: 1.8;
    color: var(--muted);
    margin-top: 10px;
    min-height: 65px
}

.card-link {
    font-size: 11px;
    font-weight: 650;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: 20px
}

.card-link span {
    color: var(--red);
    font-size: 20px;
    transition: transform .2s
}

.route-card:hover .card-link span {
    transform: translate(3px, -3px)
}

.device {
    background: #24252a;
    padding: 6px;
    border-radius: 28px;
    box-shadow: 0 18px 28px #20202b26;
    position: relative;
    text-align: left;
    color: var(--ink);
    width: 208px;
    flex-shrink: 0;
    border: 2px solid #96969b;
    font-family: 'Albert Sans', sans-serif
}

.device-top {
    background: white;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px 12px;
    font-size: 7px;
    line-height: 1
}

.island {
    background: #1d1d21;
    width: 57px;
    height: 15px;
    border-radius: 15px;
    margin-top: -3px
}

.screen {
    padding: 9px 12px 17px;
    background: #fff;
    border-radius: 0 0 22px 22px;
    overflow: hidden
}

.app-brand {
    font-weight: 700;
    color: var(--red);
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
    letter-spacing: -.7px
}

.app-brand>span {
    font-size: 12px;
    font-weight: 400
}

.screen-content>small {
    font-size: 5px;
    letter-spacing: 1.2px;
    color: var(--muted)
}

.screen h4 {
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--navy);
    margin: 7px 0 12px
}

.screen-photo {
    position: relative;
    height: 82px;
    border-radius: 5px;
    overflow: hidden
}

.screen-photo>img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.screen-photo .mini-logo {
    position: absolute;
    top: 7px;
    right: 7px;
    background: white;
    width: 29px;
    padding: 3px
}

.screen h5 {
    font-size: 9px;
    margin: 14px 0 5px
}

.screen-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--navy)
}

.screen-price span {
    font-size: 7px;
    color: var(--muted);
    font-weight: 400
}

.screen-rule {
    border-top: 1px solid var(--line);
    margin: 12px 0
}

.screen-row {
    display: flex;
    justify-content: space-between;
    font-size: 6px;
    margin: 8px 0
}

.fake-button {
    background: var(--red);
    color: white;
    font-size: 8px;
    padding: 9px 12px;
    border-radius: 4px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between
}

.desktop {
    width: 335px;
    border-radius: 9px;
    padding: 5px;
    border-color: #666a72
}

.desktop .device-top {
    border-radius: 3px 3px 0 0;
    background: #eff0f2;
    color: #8b8d92;
    padding: 7px 9px;
    font-size: 6px
}

.desktop .device-top span {
    margin: auto;
    font-size: 5px
}

.desktop .screen {
    border-radius: 0;
    padding: 14px;
    min-height: 230px;
    position: relative
}

.desktop .app-brand {
    font-size: 12px;
    margin-bottom: 15px
}

.desktop-menu {
    position: absolute;
    left: 14px;
    top: 55px;
    width: 75px;
    font-size: 6px;
    color: #7b7d84
}

.desktop-menu b {
    color: var(--red)
}

.desktop .screen-content {
    margin-left: 78px
}

.desktop .screen h4 {
    font-size: 20px
}

.desktop .screen-photo {
    height: 62px
}

.desktop .screen h5 {
    font-size: 8px
}

.desktop .screen-row {
    font-size: 5px
}

.desktop .screen-price {
    font-size: 15px
}

.desktop:after {
    content: '';
    position: absolute;
    left: -15px;
    right: -15px;
    height: 7px;
    bottom: -7px;
    background: #a9aab0;
    border-radius: 0 0 9px 9px
}

.journey {
    border-top: 1px solid var(--line)
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start
}

.journey-art {
    height: 580px;
    border-radius: 14px;
    background: #f9f0ee;
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 28px
}

.art-label {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    letter-spacing: 1.4px;
    color: #9a7270
}

.big-device {
    display: flex;
    justify-content: center;
    align-items: center
}

.big-device .phone {
    transform: rotate(-5deg);
    width: 250px
}

.big-device .screen {
    padding: 14px 16px 22px
}

.big-device .screen h4 {
    font-size: 32px
}

.big-device .screen-photo {
    height: 113px
}

.big-device .screen h5 {
    font-size: 12px
}

.big-device .screen-row {
    font-size: 8px
}

.big-device .fake-button {
    font-size: 10px;
    padding: 13px
}

.art-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.art-bottom>span {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -1px
}

.art-bottom small {
    font-size: 8px;
    color: #7c7676
}

.journey-copy h2 {
    font-size: 37px
}

.journey-description {
    font-size: 13px;
    line-height: 1.85;
    color: var(--muted);
    margin-top: 15px
}

.requirements {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: #faf7f4;
    border: 1px solid #f0e9e0;
    border-radius: 8px;
    margin: 26px 0 31px
}

.prep-icon {
    color: #96742c;
    font-size: 23px;
    line-height: 1
}

.requirements h3 {
    font-size: 12px;
    letter-spacing: 0;
    margin-bottom: 6px
}

.requirements p {
    font-size: 11px;
    line-height: 1.85;
    color: #777066
}

.update-notice {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #fef2f2, #fff8f8);
    border: 1px solid #fecaca;
    border-radius: 10px;
    margin: 0 0 28px;
    position: relative;
    overflow: hidden;
    animation: noticeSlideIn .5s ease-out
}

.update-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(226,30,38,.02), transparent);
    pointer-events: none
}

.update-notice-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e21e26;
    color: white;
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite
}

.update-notice-icon .icon {
    width: 18px;
    height: 18px
}

.update-notice-body {
    flex: 1;
    min-width: 0
}

.update-notice-body strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #991b1b;
    letter-spacing: -.2px;
    margin-bottom: 5px
}

.update-notice-body p {
    font-size: 11px;
    line-height: 1.75;
    color: #7f1d1d;
    margin: 0
}

.store-badges {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
    align-items: center
}

.store-badge {
    height: 36px;
    width: auto;
    display: block;
    transition: opacity .2s, transform .15s;
    border-radius: 6px
}

img.store-badge[src*="google-play"] {
    height: 53px;
    margin: -8px 0
}

.store-badges a:hover .store-badge {
    opacity: .85;
    transform: translateY(-1px)
}

@keyframes noticeSlideIn {
    from { opacity: 0; transform: translateY(-8px) }
    to   { opacity: 1; transform: translateY(0) }
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(226,30,38,.3) }
    50%      { box-shadow: 0 0 0 6px rgba(226,30,38,0) }
}

.banca-notice {
    background: linear-gradient(135deg, #f0f0f8, #f5f4fb);
    border-color: #c7c5e0
}

.banca-notice::before {
    background: linear-gradient(135deg, rgba(31,29,95,.02), transparent)
}

.banca-notice .update-notice-icon {
    background: #1f1d5f;
    animation: iconPulseBanca 2s ease-in-out infinite
}

.banca-notice .update-notice-body strong {
    color: #1f1d5f
}

.banca-notice .update-notice-body p {
    color: #2d2b6b
}

.banca-notice .update-notice-body a {
    color: #1f1d5f
}

.banca-notice .update-notice-body a:hover {
    color: #14124a
}

@keyframes iconPulseBanca {
    0%, 100% { box-shadow: 0 0 0 0 rgba(31,29,95,.3) }
    50%      { box-shadow: 0 0 0 6px rgba(31,29,95,0) }
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0 0 28px
}

.steps li {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    position: relative
}

.steps li:not(:last-child):before {
    content: '';
    position: absolute;
    left: 15px;
    top: 32px;
    bottom: 0;
    border-left: 1px solid #e3e4e6
}

.step-number {
    font-size: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 31px;
    height: 31px;
    border: 1px solid #e0e1e5;
    border-radius: 50%;
    color: var(--red);
    background: #fff
}

.steps h3 {
    font-size: 13px;
    letter-spacing: -.1px;
    margin: 5px 0 7px;
    font-weight: 650
}

.steps p {
    font-size: 11px;
    line-height: 1.85;
    color: var(--muted)
}

.journey.banca {
    background: #f7f8fa
}

.banca .journey-art {
    grid-column: 2;
    background: #ebedf5
}

.banca .journey-copy {
    grid-column: 1;
    grid-row: 1
}

.banca .big-device .phone {
    transform: rotate(5deg)
}

.banca .requirements {
    background: white;
    border-color: #e3e4e9
}

.banca .art-label {
    color: #72758e
}

.tracking-tag {
    display: inline-block;
    font-size: 8px;
    color: #477965;
    background: #e8f1ec;
    padding: 5px 9px;
    border-radius: 3px;
    margin-top: 10px
}

.journey.sterlingpro {
    background: #202329;
    color: white;
    border: 0
}

.sterlingpro .journey-art {
    background: #2b2f37;
    height: 480px;
    padding: 48px 28px;
}

.sterlingpro .art-label {
    color: #a6a9b0
}

.sterlingpro .art-bottom small {
    color: #aaadb5
}

.sterlingpro .journey-description,
.sterlingpro .steps p {
    color: #b4b7bf
}

.sterlingpro .requirements {
    background: #2d3036;
    border-color: #424249
}

.sterlingpro .requirements p {
    color: #c4c4c6
}

.sterlingpro .requirements h3 {
    color: #f2e3c6
}

.sterlingpro .prep-icon {
    color: var(--gold)
}

.sterlingpro .step-number {
    background: #30333a;
    border-color: #51535a;
    color: #e8c275
}

.sterlingpro .steps li:before {
    border-color: #41434b
}

.sterlingpro .journey-copy>.eyebrow {
    color: #e0bb70
}

.sterlingpro .big-device .desktop {
    width: 480px;
    max-width: 95%;
    transform: perspective(1000px) rotateY(-5deg)
}
.sterlingpro .big-device .desktop .screen {
    min-height: 270px;
    height: 270px;
    overflow: hidden
}

.table-scroll {
    overflow-x: auto
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    text-align: center;
    min-width: 620px
}

th,
td {
    padding: 19px 18px;
    border-bottom: 1px solid var(--line);
    width: 22%
}

th:first-child {
    text-align: left;
    width: 34%;
    font-weight: 450
}

thead {
    background: #f6f7f8
}

thead th {
    font-weight: 600 !important
}

thead th:first-child {
    border-radius: 8px 0 0 8px
}

thead th:last-child {
    border-radius: 0 8px 8px 0
}

tbody td {
    color: #50695d;
    font-size: 12px
}

tfoot a {
    color: var(--red);
    font-size: 11px;
    font-weight: 600
}

tfoot td {
    border: 0
}

.comparison>.fineprint {
    margin-top: 12px
}

.faq-section {
    background: #f8f9fa
}

.faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px
}

.faq-grid .eyebrow {
    color: var(--red);
    margin-bottom: 15px
}

.faq-grid h2 {
    font-size: 48px
}

.faq-grid>div>p {
    font-size: 15px;
    color: var(--muted);
    margin: 20px 0 34px
}

.text-link {
    font-size: 11px;
    border-bottom: 1px solid #d6d7da;
    padding-bottom: 6px
}

details {
    border-bottom: 1px solid #dedfe3
}

summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding: 22px 35px 22px 0;
    font-size: 13px;
    font-weight: 550;
    line-height: 1.6
}

summary::-webkit-details-marker {
    display: none
}

.plus {
    position: absolute;
    right: 3px;
    top: 19px;
    font-size: 21px;
    color: #777d85;
    font-weight: 400
}

details[open] .plus {
    transform: rotate(45deg)
}

details p {
    font-size: 12px;
    line-height: 1.9;
    color: var(--muted);
    padding: 0 30px 24px 0
}

.risk {
    background: #fbf1e7;
    border: 1px solid #eee0cf;
    border-radius: 8px;
    margin-top: 22px;
    padding: 0 20px
}

.risk summary {
    padding-top: 17px
}

.risk-label {
    display: block;
    font-size: 8px;
    letter-spacing: 1.4px;
    color: #92703a;
    margin-bottom: 7px
}

.risk p {
    color: #716452
}

.risk .plus {
    top: 29px
}

.final-section {
    padding-top: 80px;
    padding-bottom: 80px
}

.final-panel {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #141b2d;
    min-height: 380px;
    display: flex;
    align-items: center
}

.final-panel>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.final-panel:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0b182aea, #10213777)
}

.final-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 50px 55px;
    width: 100%
}

.final-content .eyebrow {
    color: #d4b368;
    margin-bottom: 15px
}

.final-content h2 {
    font-size: 43px
}

.final-content p {
    font-size: 13px;
    color: #d4d9df;
    margin: 18px 0 25px
}

#final-buttons {
    display: flex;
    gap: 12px
}

.button.light {
    background: white;
    color: #2b2c33;
    border-color: white;
    font-size: 11px;
    gap: 22px
}

.button.light:hover {
    background: #fceeee
}

.final-prospectus {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    margin-top: 23px;
    color: #e1e3e7
}

.final-prospectus small {
    color: #ddd;
    border-color: #ffffff44
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: start;
    padding: 0 0 40px
}

.footer-main>div {
    display: flex;
    gap: 25px;
    font-size: 10px
}

.footer-main>div:last-child {
    flex-direction: column;
    gap: 8px
}

.footer-main a:hover,
.legal a:hover {
    text-decoration: underline
}

.legal {
    border-top: 1px solid var(--line);
    padding: 25px 0;
    font-size: 9px;
    color: #888d93
}

.legal p {
    max-width: 890px
}

.legal>div {
    display: flex;
    justify-content: space-between;
    margin-top: 24px
}

.mobile-cta {
    display: none
}

dialog {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px;
    max-width: 460px;
    width: calc(100% - 32px);
    color: var(--ink)
}

dialog::backdrop {
    background: #15192599;
    backdrop-filter: blur(4px)
}

dialog h2 {
    font-size: 30px;
    margin: 14px 0
}

dialog p {
    font-size: 13px;
    color: var(--muted);
    margin: 18px 0
}

.dialog-close {
    position: absolute;
    right: 14px;
    top: 8px;
    border: 0;
    background: none;
    font-size: 27px;
    color: #777
}

.dialog-done {
    width: 100%;
    margin-top: 12px
}

.skip {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 50;
    background: white;
    padding: 12px
}

.skip:focus {
    top: 10px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

@media(min-width:1450px) {
    h1 {
        font-size: 99px
    }

    .hero-description {
        font-size: 17px
    }

    .hero .eyebrow {
        font-size: 10px
    }

    .hero {
        gap: 65px
    }
}

@media(max-width:1100px) {
    .wrap {
        width: calc(100% - 64px)
    }

    .nav-shell {
        width: calc(100% - 48px)
    }

    nav {
        gap: 18px
    }

    .hero {
        gap: 32px;
        min-height: 650px
    }

    h1 {
        font-size: 70px;
        letter-spacing: -3.6px
    }

    .hero-actions {
        gap: 14px
    }

    .hero-actions .button {
        padding: 14px;
        font-size: 11px;
        gap: 15px
    }

    .partner {
        gap: 15px
    }

    .partner img {
        width: 112px
    }

    .journey-grid {
        gap: 50px
    }

    .card-body {
        padding: 20px
    }

    .card-body h3 {
        font-size: 20px
    }

    .card-visual .desktop {
        width: 260px
    }

    .card-visual .desktop .screen {
        min-height: 145px;
        height: 145px
    }

    .journey-art {
        height: 650px
    }

    .journey-copy h2 {
        font-size: 31px
    }

    .footer-main>div {
        gap: 15px
    }

    .faq-grid {
        gap: 60px
    }
}

@media(max-width:800px) {
    .nav-shell>.button {
        margin-left: auto
    }

    nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        padding: 24px;
        background: white;
        border-bottom: 1px solid var(--line);
        flex-direction: column
    }

    nav.is-open {
        display: flex
    }

    .menu-toggle {
        display: block;
        border: 0;
        background: none;
        font-size: 22px;
        padding: 8px
    }

    .nav-shell {
        height: 76px
    }

    .hero {
        min-height: 590px;
        gap: 24px;
        height: auto
    }

    .partner>span {
        display: none
    }

    .partner i {
        display: none
    }

    .partner {
        margin-bottom: 20px
    }

    .partner img {
        width: 125px;
        height: 55px
    }

    h1 {
        font-size: 61px
    }

    .hero-description {
        font-size: 13px
    }

    .hero .eyebrow {
        font-size: 7px;
        letter-spacing: 1px
    }

    .offer {
        gap: 18px
    }

    .offer>div+div {
        padding-left: 18px
    }

    .offer strong {
        font-size: 23px
    }

    .offer small {
        font-size: 8px
    }

    .hero-actions {
        flex-wrap: wrap
    }

    .hero-visual {
        min-height: 500px
    }

    .intro-strip p {
        max-width: 250px
    }

    .section {
        padding-top: 70px;
        padding-bottom: 70px
    }

    h2 {
        font-size: 32px
    }

    .section-top>p {
        font-size: 11px
    }

    .route-grid {
        gap: 14px
    }

    .card-body {
        padding: 16px
    }

    .card-body h3 {
        font-size: 17px
    }

    .card-body p {
        font-size: 10px;
        min-height: 75px
    }

    .card-visual {
        height: 200px
    }

    .card-visual .phone {
        width: 170px
    }

    .card-visual .desktop {
        width: 195px
    }

    .card-visual .desktop .screen {
        min-height: 110px;
        height: 110px
    }

    .tags span {
        font-size: 6px
    }

    .journey-grid {
        gap: 32px
    }

    .journey-art {
        height: 570px;
        padding: 20px
    }

    .big-device .phone {
        width: 215px
    }

    .journey-copy h2 {
        font-size: 27px
    }

    .journey-description {
        font-size: 12px
    }

    .requirements {
        padding: 15px
    }

    .steps li {
        gap: 12px
    }

    .steps p {
        font-size: 11px
    }

    .art-label {
        font-size: 6px
    }

    .art-bottom small {
        text-align: center;
        font-size: 7px
    }

    .faq-grid {
        gap: 40px;
        grid-template-columns: .7fr 1.3fr
    }

    .final-content {
        padding: 40px 30px
    }

    .final-content h2 {
        font-size: 34px
    }

    .button.light {
        padding: 13px 14px;
        gap: 12px;
        font-size: 10px
    }

    .footer-main {
        flex-wrap: wrap
    }

    .footer-main>div {
        flex-wrap: wrap
    }
}

@media(max-width:600px) {
    html {
        scroll-padding-top: 82px
    }

    .wrap {
        width: calc(100% - 40px)
    }

    .nav-shell {
        width: calc(100% - 36px);
        height: 70px;
        gap: 12px
    }

    .sterling-logo {
        width: 99px
    }

    .nav-shell>.button {
        font-size: 9px;
        padding: 10px;
        gap: 9px;
        min-height: 38px
    }

    .menu-toggle {
        font-size: 20px;
        padding: 5px
    }

    nav {
        top: 70px
    }

    .hero {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding-top: 40px;
        padding-bottom: 25px
    }

    .hero-copy {
        padding: 0
    }

    .partner {
        margin-bottom: 16px;
        gap: 20px
    }

    .partner>span {
        display: block;
        font-size: 6px
    }

    .partner i {
        display: block;
        height: 28px
    }

    .partner img {
        width: 114px;
        height: 49px
    }

    .hero .eyebrow {
        font-size: 7px;
        letter-spacing: 1.4px;
        margin-bottom: 16px
    }

    h1 {
        font-size: 68px;
        letter-spacing: -3.6px;
        margin-bottom: 18px
    }

    .hero-description {
        font-size: 13px;
        max-width: 340px
    }

    .offer {
        margin-top: 22px;
        gap: 30px
    }

    .offer>div+div {
        padding-left: 30px
    }

    .offer strong {
        font-size: 25px
    }

    .offer small {
        font-size: 9px
    }

    .hero .fineprint {
        font-size: 8px;
        margin-top: 10px
    }

    .hero-actions {
        margin-top: 22px;
        gap: 20px;
        flex-wrap: nowrap
    }

    .hero-actions .button {
        font-size: 10px;
        min-height: 46px;
        padding: 13px 16px
    }

    .prospectus {
        font-size: 9px
    }

    .hero-visual {
        height: 265px;
        min-height: 0;
        width: 100%;
        border-radius: 8px
    }

    .refinery {
        object-position: center 51%
    }

    .photo-caption {
        font-size: 6px;
        padding: 35px 15px 14px
    }

    .intro-strip {
        gap: 10px;
        padding: 17px 0
    }

    .intro-strip>span {
        font-size: 10px;
        gap: 9px
    }

    .outline-icon {
        width: 25px;
        height: 25px
    }

    .intro-strip p {
        display: none
    }

    .section {
        padding-top: 56px;
        padding-bottom: 56px
    }

    .section-top {
        display: block;
        margin-bottom: 27px
    }

    .section-top>p {
        margin-top: 14px
    }

    .section-top>p br {
        display: none
    }

    h2 {
        font-size: 30px;
        letter-spacing: -1.1px
    }

    .eyebrow {
        font-size: 8px;
        letter-spacing: 1.4px
    }

    .section-top .eyebrow {
        margin-bottom: 12px
    }

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

    .card-visual {
        height: 220px
    }

    .card-visual .phone {
        width: 195px
    }

    .card-visual .desktop {
        width: 290px
    }

    .card-visual .desktop .screen {
        min-height: 165px;
        height: 165px
    }

    .card-body {
        padding: 24px
    }

    .card-body h3 {
        font-size: 23px
    }

    .card-body p {
        font-size: 12px;
        min-height: 0
    }

    .tags span {
        font-size: 8px
    }

    .card-link {
        margin-top: 20px;
        font-size: 12px
    }

    .journey-grid {
        display: flex;
        flex-direction: column;
        gap: 32px
    }

    .journey-art {
        position: relative;
        top: 0;
        width: 100%;
        height: 480px;
        padding: 20px;
        order: 0
    }

    .big-device {
        position: absolute;
        top: 35px;
        width: 100%;
        left: 0
    }

    .big-device .phone {
        width: 220px
    }

    .art-label {
        font-size: 7px
    }

    .art-bottom {
        background: linear-gradient(transparent, #f9f0ee 25%);
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 33px 10px 16px;
        gap: 6px;
        z-index: 2
    }

    .art-bottom>span {
        font-size: 22px
    }

    .art-bottom small {
        font-size: 7px
    }

    .journey-copy {
        order: 1
    }

    .journey-copy h2 {
        font-size: 30px
    }

    .journey-description {
        font-size: 13px
    }

    .requirements {
        padding: 18px;
        gap: 12px
    }

    .requirements p {
        font-size: 12px
    }

    .requirements h3 {
        font-size: 13px
    }

    .steps li {
        gap: 17px;
        padding-bottom: 27px
    }

    .steps h3 {
        font-size: 14px
    }

    .steps p {
        font-size: 12px
    }

    .journey-copy>.button {
        width: 100%;
        font-size: 12px;
        justify-content: space-between
    }

    .banca .art-bottom {
        background: linear-gradient(transparent, #ebedf5 25%)
    }

    .journey.sterlingpro .journey-art {
        height: 340px
    }

    .sterlingpro .big-device {
        top: 85px
    }

    .sterlingpro .big-device .desktop {
        width: 280px
    }

    .sterlingpro .big-device .desktop .screen {
        min-height: 160px;
        height: 160px
    }

    .sterlingpro .art-bottom {
        background: linear-gradient(transparent, #2b2f37 25%)
    }

    .sterlingpro .art-bottom small {
        font-size: 7px
    }

    .tracking-tag {
        font-size: 9px
    }

    .table-scroll {
        margin-right: -20px
    }

    table {
        min-width: 530px;
        font-size: 11px
    }

    th,
    td {
        padding: 16px 12px
    }

    tbody td {
        font-size: 10px
    }

    .comparison>.fineprint {
        font-size: 9px
    }

    .faq-grid {
        display: block
    }

    .faq-grid h2 {
        font-size: 39px
    }

    .faq-grid>div>p {
        margin: 15px 0;
        font-size: 13px
    }

    .faq-grid .text-link {
        display: inline-block;
        margin-bottom: 27px
    }

    summary {
        font-size: 12px;
        padding: 20px 30px 20px 0
    }

    .risk {
        padding: 0 15px
    }

    details p {
        font-size: 12px;
        padding-right: 8px
    }

    .final-section {
        padding: 50px 0
    }

    .final-panel {
        min-height: 450px
    }

    .final-content {
        padding: 30px 24px
    }

    .final-content h2 {
        font-size: 33px
    }

    .final-content p {
        font-size: 12px
    }

    .final-content p br {
        display: none
    }

    #final-buttons {
        flex-direction: column;
        gap: 10px
    }

    .button.light {
        justify-content: space-between;
        font-size: 11px
    }

    .final-prospectus {
        font-size: 8px
    }

    .footer-main {
        gap: 25px;
        padding-bottom: 28px
    }

    .footer-main>div {
        font-size: 10px;
        gap: 13px 22px
    }

    .footer-main>div:last-child {
        flex-direction: row
    }

    .legal>div {
        flex-direction: column;
        gap: 8px
    }

    .legal {
        padding-bottom: 100px
    }

    .mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        background: #fffffff5;
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--line);
        padding: 12px 20px max(12px, env(safe-area-inset-bottom));
        z-index: 25
    }

    .mobile-cta>span {
        font-size: 9px;
        color: var(--muted);
        max-width: 95px;
        line-height: 1.4
    }

    .mobile-cta .button {
        font-size: 10px;
        padding: 12px 15px;
        min-height: 42px
    }

    dialog {
        padding: 32px 24px
    }
}

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

    *,
    *:before,
    *:after {
        transition: none !important;
        animation: none !important
    }
}

/* Campaign typography remains distinct from Sterling interface typography. */
.screen h4 {
    font-family: "Bebas Neue", Tahoma, sans-serif;
    letter-spacing: 0
}

@media(max-width:600px) {
    .offer {
        flex-direction: column;
        width: 100%;
        gap: 10px
    }

    .offer>div {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .offer>div+div {
        padding-left: 0;
        border-left: 0
    }

    .offer small {
        margin-top: 0
    }

    .partner img {
        width: 145px;
        height: 49px
    }
}

/* Contextual icons and shared interaction language. */
:root {
    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --ease-ui: cubic-bezier(.2, .7, .3, 1)
}

.icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    vertical-align: middle;
    transition: transform 220ms var(--ease-ui), color 220ms var(--ease-ui), opacity 220ms var(--ease-ui)
}

.button .icon {
    width: 17px;
    height: 17px
}

.compact .icon {
    width: 15px;
    height: 15px
}

.card-link>.icon {
    color: var(--red);
    width: 20px;
    height: 20px
}

.prospectus-title,
.photo-caption>span,
.tracking-tag,
.text-link,
.footer-main a,
.legal a,
tfoot a {
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.prospectus-title .icon,
.photo-caption .icon,
.footer-main .icon,
.legal .icon {
    width: 13px;
    height: 13px
}

.final-prospectus .icon {
    width: 14px;
    height: 14px
}

.tracking-tag .icon {
    width: 13px;
    height: 13px
}

.prep-icon .icon {
    width: 23px;
    height: 23px
}

.prep-icon {
    flex-shrink: 0
}

.plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 220ms var(--ease-ui), color 220ms var(--ease-ui)
}

.plus .icon {
    width: 18px;
    height: 18px
}

details.is-closing .plus {
    transform: rotate(0)
}

.dialog-close {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    right: 10px;
    top: 10px;
    border-radius: 50%
}

.dialog-close .icon {
    width: 20px;
    height: 20px
}

.menu-toggle .icon {
    width: 22px;
    height: 22px
}

.status-icons {
    display: flex;
    gap: 3px
}

.status-icons .icon {
    width: 9px;
    height: 9px
}

.app-brand>.icon {
    width: 13px;
    height: 13px
}

.fake-button .icon {
    width: 11px;
    height: 11px
}

.outline-icon>.icon {
    width: 15px;
    height: 15px
}

tbody .icon {
    width: 16px;
    height: 16px
}

tbody .icon-minus {
    color: #92969d
}

header {
    transition: box-shadow 250ms var(--ease-ui), border-color 250ms var(--ease-ui)
}

header.is-scrolled {
    box-shadow: 0 4px 22px #20232909;
    border-color: #dfe1e4
}

nav a::after {
    content: '';
    height: 2px;
    background: var(--red);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms var(--ease-ui)
}

nav a:is(:hover, :focus-visible, .active)::after {
    transform: scaleX(1)
}

a,
button,
summary {
    transition: color 180ms var(--ease-ui), background-color 180ms var(--ease-ui), border-color 180ms var(--ease-ui), box-shadow 220ms var(--ease-ui), transform 220ms var(--ease-ui)
}

.button {
    transition: background-color 180ms var(--ease-ui), border-color 180ms var(--ease-ui), box-shadow 220ms var(--ease-ui), transform 220ms var(--ease-ui)
}

.button:active {
    transform: translateY(1px) scale(.975);
    box-shadow: none
}

.button:focus-visible {
    box-shadow: 0 0 0 5px #dda63820
}

.menu-toggle:active,
.dialog-close:active {
    transform: scale(.9)
}

.menu-toggle[aria-expanded="true"] .icon {
    animation: icon-in 180ms var(--ease-out)
}

.route-card {
    transition: transform 350ms var(--ease-out), border-color 220ms var(--ease-ui), box-shadow 350ms var(--ease-out)
}

.route-card:active {
    transform: translateY(-1px) scale(.992)
}

.card-visual .device,
.big-device {
    transition: transform 650ms var(--ease-out)
}

.tags span {
    transition: background-color 220ms var(--ease-ui), border-color 220ms var(--ease-ui), color 220ms var(--ease-ui)
}

.requirements {
    transition: border-color 250ms var(--ease-ui), box-shadow 250ms var(--ease-ui)
}

.step-number {
    transition: background-color 250ms var(--ease-ui), border-color 250ms var(--ease-ui), color 250ms var(--ease-ui), box-shadow 250ms var(--ease-ui), transform 250ms var(--ease-ui)
}

.steps li.has-entered .step-number {
    border-color: #e9b9bb
}

.sterlingpro .steps li.has-entered .step-number {
    border-color: #9f895e
}

.steps li:before {
    transition: border-color 350ms var(--ease-ui)
}

.steps li.has-entered:before {
    border-color: #d9bfc0
}

.sterlingpro .steps li.has-entered:before {
    border-color: #746548
}

tbody tr {
    transition: background-color 200ms var(--ease-ui)
}

summary .plus {
    border-radius: 50%
}

details {
    transition: border-color 220ms var(--ease-ui), background-color 220ms var(--ease-ui)
}

details[open]:not(.risk) {
    border-color: #d6b5b8
}

.mobile-cta {
    transition: box-shadow 250ms var(--ease-ui)
}

dialog[open] {
    animation: dialog-in 280ms var(--ease-out)
}

dialog[open]::backdrop {
    animation: backdrop-in 200ms ease-out
}

@keyframes dialog-in {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.98)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes backdrop-in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes icon-in {
    from {
        opacity: .4;
        transform: rotate(-30deg) scale(.8)
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1)
    }
}

@keyframes menu-in {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media(hover:hover) {
    .button:hover {
        box-shadow: 0 5px 14px #b7202020
    }

    .button:hover .icon-phone {
        transform: rotate(-8deg)
    }

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

    .button:hover .icon-routes {
        transform: scale(1.12)
    }

    .button:hover .icon-check {
        transform: scale(1.15)
    }

    .route-card:hover {
        box-shadow: 0 14px 32px #2325260b
    }

    .route-card:hover .card-link>.icon,
    tfoot a:hover .icon {
        transform: translateX(4px)
    }

    .route-card:hover .card-visual .device {
        transform: translateY(-6px)
    }

    .route-card:hover .tags span {
        background: #fff7f6;
        border-color: #ebc9c8;
        color: #7e5454
    }

    .journey-art:hover .big-device {
        transform: translateY(-5px)
    }

    .requirements:hover {
        border-color: #d7c5a8;
        box-shadow: 0 5px 15px #715c2708
    }

    .requirements:hover .prep-icon .icon {
        transform: translateY(-2px)
    }

    .steps li:hover .step-number {
        background: #fff1f1;
        border-color: #e3a5a7;
        transform: scale(1.08);
        box-shadow: 0 0 0 4px #e21e2607
    }

    .sterlingpro .steps li:hover .step-number {
        background: #453e32;
        border-color: var(--gold);
        color: #f4d593
    }

    .tracking-tag:hover .icon {
        transform: rotate(-18deg)
    }

    tbody tr:hover {
        background: #f8f9fa
    }

    tbody tr:hover .icon-check {
        transform: scale(1.14)
    }

    summary:hover {
        color: var(--red)
    }

    summary:hover .plus {
        background: #e21e2609;
        color: var(--red)
    }

    .risk summary:hover {
        color: #86602c
    }

    .intro-strip>a:hover .icon {
        transform: translateY(4px)
    }

    .text-link:hover .icon-support,
    .footer-main a:hover .icon-support {
        transform: rotate(-8deg)
    }

    .footer-main a:hover .icon,
    .legal a:hover .icon {
        transform: translateY(-2px)
    }

    .dialog-close:hover {
        background: #f0f1f2
    }

    .dialog-close:hover .icon {
        transform: rotate(90deg)
    }
}

@media(max-width:800px) {
    nav.is-open {
        animation: menu-in 230ms var(--ease-out)
    }
}

@media(max-width:600px) {
    .photo-caption .icon {
        width: 10px;
        height: 10px
    }

    .mobile-cta .button {
        gap: 10px
    }

    .mobile-cta .button .icon {
        width: 15px;
        height: 15px
    }

    .prospectus-title {
        gap: 4px
    }

    .prospectus-title .icon {
        width: 11px;
        height: 11px
    }

    .hero-actions {
        gap: 14px
    }

    .button .icon {
        width: 15px;
        height: 15px
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }
}

/* Keep accessible comparison labels inside the horizontally scrolling table. */
.table-scroll {
    position: relative
}

/* Refinery gallery: photography stays intact; motion belongs to the interface. */
.refinery-carousel {
    isolation: isolate;
    touch-action: pan-y;
    cursor: grab;
    outline-offset: 5px
}

.refinery-carousel.is-dragging {
    cursor: grabbing
}

.carousel-stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #17202a
}

.carousel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none
}

.carousel-image.is-current {
    z-index: 1
}

.carousel-interface {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none
}

.carousel-interface[hidden] {
    display: none
}

.carousel-top {
    position: absolute;
    top: 22px;
    left: 22px;
    right: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.carousel-location {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: white;
    font-size: 8px;
    letter-spacing: 1.4px;
    border: 1px solid #ffffff30;
    border-radius: 30px;
    padding: 9px 12px;
    background: #18212d55;
    backdrop-filter: blur(10px)
}

.carousel-location .icon {
    width: 13px;
    height: 13px
}

.carousel-control {
    pointer-events: auto;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    color: white;
    background: #17202b66;
    backdrop-filter: blur(12px);
    border: 1px solid #ffffff66;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px #0000000d
}

.carousel-control .icon {
    width: 20px;
    height: 20px
}

.carousel-toggle .icon {
    width: 16px;
    height: 16px
}

.carousel-control:active {
    transform: scale(.91);
    background: #ffffff44
}

.carousel-arrows {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 45%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%)
}

.carousel-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 72px 24px 23px;
    color: white;
    background: linear-gradient(transparent, #102030b8 40%, #0c1925ef);
    pointer-events: none
}

.carousel-caption {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px
}

.carousel-eyebrow {
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 1.6px;
    opacity: .8
}

.carousel-title {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: -.2px;
    margin-top: 5px;
    font-weight: 500
}

.carousel-count {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    font-size: 11px;
    letter-spacing: .7px
}

.carousel-count b {
    display: inline-block;
    font-size: 21px;
    font-weight: 500
}

.carousel-count>span {
    opacity: .6
}

.carousel-thumbnails {
    position: relative;
    display: flex;
    gap: 7px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding: 4px 3px 5px;
    margin: 0 -3px;
    pointer-events: auto;
    touch-action: pan-x pan-y
}

.carousel-thumbnails::-webkit-scrollbar {
    display: none
}

.carousel-thumb {
    position: relative;
    flex: 1 0 44px;
    min-width: 44px;
    max-width: 64px;
    height: 47px;
    padding: 0;
    border: 2px solid #ffffff38;
    border-radius: 5px;
    overflow: hidden;
    background: #182632;
    opacity: .58;
    cursor: pointer;
    transition: opacity 200ms ease, border-color 200ms ease, transform 250ms var(--ease-out), box-shadow 250ms ease
}

.carousel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none
}

.carousel-thumb>span {
    position: absolute;
    right: 3px;
    bottom: 2px;
    color: white;
    font-size: 7px;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 1px 4px black;
    line-height: 1
}

.carousel-thumb.is-active {
    opacity: 1;
    border-color: white;
    box-shadow: 0 0 0 1px #ffffff30;
    transform: translateY(-2px)
}

.carousel-thumb:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 1px;
    opacity: 1
}

.carousel-progress {
    height: 2px;
    width: 100%;
    background: #ffffff26;
    margin-top: 13px;
    overflow: hidden;
    border-radius: 2px
}

.carousel-progress>span {
    display: block;
    width: 100%;
    height: 100%;
    background: white;
    transform: scaleX(0);
    transform-origin: left
}

@media(hover:hover) {
    .carousel-control:hover {
        background: #ffffff30;
        border-color: white;
        box-shadow: 0 4px 16px #00000020
    }

    .carousel-prev:hover .icon {
        transform: translateX(-2px)
    }

    .carousel-next:hover .icon {
        transform: translateX(2px)
    }

    .carousel-thumb:hover {
        opacity: 1;
        transform: translateY(-2px);
        border-color: #ffffffaa
    }
}

@media(max-width:1100px) {
    .carousel-bottom {
        padding-left: 18px;
        padding-right: 18px
    }

    .carousel-title {
        font-size: 13px
    }

    .carousel-thumbnails {
        gap: 6px
    }

    .carousel-top {
        left: 18px;
        right: 18px;
        top: 18px
    }
}

@media(max-width:600px) {
    .hero-visual.refinery-carousel {
        height: 335px;
        min-height: 335px
    }

    .carousel-top {
        left: 14px;
        right: 14px;
        top: 13px
    }

    .carousel-location {
        font-size: 7px;
        padding: 7px 9px
    }

    .carousel-arrows {
        left: 12px;
        right: 12px;
        top: 42%
    }

    .carousel-bottom {
        padding: 55px 15px 13px
    }

    .carousel-caption {
        margin-bottom: 10px
    }

    .carousel-title {
        font-size: 12px
    }

    .carousel-eyebrow {
        font-size: 6px;
        letter-spacing: 1.2px
    }

    .carousel-count b {
        font-size: 18px
    }

    .carousel-count {
        font-size: 9px
    }

    .carousel-thumb {
        height: 44px;
        flex: 0 0 46px
    }

    .carousel-progress {
        margin-top: 8px
    }

    .carousel-control {
        width: 44px;
        height: 44px
    }
}

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

    .carousel-control,
    .carousel-thumb,
    .carousel-control .icon {
        transition: none
    }

    .carousel-thumb.is-active {
        transform: none
    }
}

.refinery-carousel {
    touch-action: auto
}

.refinery-carousel:focus-visible {
    outline: 3px solid var(--gold)
}

.carousel-stage {
    touch-action: pan-y pinch-zoom
}

/* Supplied platform identities: original colours, proportions and artwork. */
.platform-icon {
    display: block;
    object-fit: contain;
    flex: 0 0 auto;
    width: 40px;
    height: 40px
}

.platform-heading {
    display: flex;
    align-items: center;
    gap: 12px
}

.journey-copy .platform-heading {
    gap: 15px
}

.journey-copy .platform-heading>.platform-icon {
    width: 48px;
    height: 48px
}

.app-identity {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.7px
}

.app-brand {
    align-items: center
}

.app-identity .platform-icon {
    width: 24px;
    height: 24px
}

.desktop .app-identity {
    font-size: 12px;
    gap: 5px
}

.desktop .app-identity .platform-icon {
    width: 20px;
    height: 20px
}

.button>.platform-icon {
    width: 25px;
    height: 25px
}

.mobile-cta .button>.platform-icon {
    width: 23px;
    height: 23px
}

@media(max-width:1100px) {
    .platform-heading {
        gap: 10px
    }

    .card-body .platform-icon {
        width: 34px;
        height: 34px
    }
}

@media(max-width:800px) and (min-width:601px) {
    .card-body .platform-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px
    }

    .journey-copy .platform-heading>.platform-icon {
        width: 36px;
        height: 36px
    }
}

@media(max-width:600px) {
    .journey-copy .platform-heading {
        gap: 12px
    }

    .journey-copy .platform-heading>.platform-icon {
        width: 40px;
        height: 40px
    }

    .journey-copy .platform-heading h2 {
        font-size: 28px
    }
}

/* Campaign mark — single combined brand lockup. */
.partner {
    max-width: 100%;
    min-height: auto;
    margin-bottom: 34px
}

.ipo-mark {
    width: auto;
    height: 120px;
    object-fit: contain
}

@media(max-width:1100px) {
    .ipo-mark {
        height: 88px
    }
}

@media(max-width:800px) {
    .ipo-mark {
        height: 76px
    }
}

@media(max-width:600px) {
    .ipo-mark {
        height: 70px
    }
}

@media(max-width:360px) {
    .ipo-mark {
        height: 60px
    }
}

/* Reading scale: preserve display typography; make instructions and controls legible. */
:root {
    --text-reading: 15px;
    --text-control: 14px;
    --text-note: 12px;
    --text-label: 11px
}

.hero {
    height: auto;
    min-height: max(740px, calc(90vh - 86px));
    max-height: none
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    max-width: 430px
}

.eyebrow,
.hero .eyebrow {
    font-size: var(--text-label);
    line-height: 1.6;
    letter-spacing: 1.4px
}

.offer small {
    font-size: var(--text-note);
    line-height: 1.5
}

.offer strong span {
    font-size: 14px
}

.fineprint,
.hero .fineprint,
.comparison>.fineprint {
    font-size: var(--text-note);
    line-height: 1.65;
    color: #696e75
}

.button,
.button.compact,
.hero-actions .button,
.button.light,
.journey-copy>.button {
    font-size: var(--text-control);
    line-height: 1.4;
    min-height: 48px
}

nav a {
    font-size: 14px
}

.prospectus,
.final-prospectus {
    font-size: 13px;
    line-height: 1.5
}

.prospectus small,
.final-prospectus small {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: .7px
}

.prospectus-title {
    white-space: nowrap
}

.hero-actions {
    flex-wrap: wrap
}

.intro-strip>span {
    font-size: 14px
}

.intro-strip p {
    font-size: 13px
}

.section-top>p,
.card-body p,
.journey-description,
.requirements p,
.steps p,
details p,
.final-content p,
dialog p {
    font-size: var(--text-reading);
    line-height: 1.75
}

.faq-grid>div>p {
    font-size: 16px;
    line-height: 1.7
}

.tags {
    flex-wrap: wrap
}

.tags span {
    font-size: 12px;
    line-height: 1.5;
    padding: 3px 8px
}

.card-link,
.text-link {
    font-size: 14px;
    line-height: 1.5
}

.route-card {
    display: flex;
    flex-direction: column
}

.card-visual {
    flex-shrink: 0
}

.card-body {
    display: flex;
    flex-direction: column;
    flex: 1
}

.card-body p {
    min-height: 0;
    margin-bottom: 20px
}

.card-link {
    margin-top: auto
}

.requirements h3 {
    font-size: 15px;
    line-height: 1.4
}

.steps h3 {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 3px
}

.step-number {
    font-size: 12px
}

.tracking-tag {
    font-size: 12px;
    line-height: 1.5
}

.art-label {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 1px;
    gap: 10px
}

.art-label>span:last-child {
    white-space: nowrap
}

.art-bottom small,
.sterlingpro .art-bottom small {
    font-size: 11px;
    line-height: 1.5;
    text-align: center
}

.illustration-label {
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: .7px;
    color: #555b63
}

table,
tbody td {
    font-size: 14px;
    line-height: 1.6
}

tfoot a {
    font-size: 14px
}

summary {
    font-size: 16px;
    line-height: 1.5
}

.risk-label {
    font-size: 11px;
    line-height: 1.5
}

.footer-main>div,
.footer-main a,
.legal {
    font-size: 12px;
    line-height: 1.7
}

.footer-main>div {
    flex-wrap: wrap
}

.legal {
    color: #666c74
}

.carousel-location,
.carousel-eyebrow {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 1px
}

.carousel-title {
    font-size: 15px;
    line-height: 1.5
}

.carousel-count {
    font-size: 12px
}

.carousel-thumb>span {
    font-size: 11px;
    background: #101c2ac9;
    padding: 2px 3px;
    border-radius: 2px
}

.carousel-location .icon,
.prospectus-title .icon,
.footer-main .icon,
.legal .icon {
    width: 15px;
    height: 15px
}

@media(max-width:1100px) {
    .hero {
        min-height: 700px
    }

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

    .footer-main {
        flex-wrap: wrap
    }

    .footer-main>div {
        gap: 15px 20px
    }
}

@media(max-width:800px) {
    .hero {
        min-height: 0
    }

    nav a {
        font-size: 16px;
        min-height: 40px;
        display: flex;
        align-items: center
    }

    #final-buttons {
        flex-wrap: wrap
    }

    .button.light {
        flex: 1;
        min-width: 190px
    }

    .hero .eyebrow {
        letter-spacing: 1px
    }
}

@media(max-width:600px) {
    :root {
        --text-reading: 16px
    }

    .hero-description {
        font-size: 16px;
        max-width: none
    }

    .hero-actions {
        width: 100%;
        flex-wrap: wrap;
        gap: 14px
    }

    .hero-actions .button {
        width: auto;
        justify-content: center
    }

    .hero-actions .prospectus {
        flex-direction: row;
        align-items: center;
        gap: 10px
    }

    .nav-shell {
        gap: 8px
    }

    .nav-shell>.button {
        font-size: 12px;
        padding: 10px 12px;
        gap: 8px;
        min-height: 44px;
        white-space: nowrap
    }

    .nav-shell>.button .icon {
        width: 14px;
        height: 14px
    }

    .intro-strip>span {
        font-size: 13px
    }

    .section-top>p {
        font-size: 15px
    }

    .offer small {
        max-width: 155px;
        text-align: right
    }

    .card-body p {
        margin-bottom: 22px
    }

    .journey-copy>.button {
        font-size: 14px
    }

    .art-label {
        font-size: 10px
    }

    .art-bottom small,
    .sterlingpro .art-bottom small {
        font-size: 11px
    }

    .art-bottom {
        padding-left: 18px;
        padding-right: 18px
    }

    .tracking-tag {
        font-size: 12px
    }

    table {
        min-width: 600px
    }

    table,
    tbody td,
    tfoot a {
        font-size: 14px
    }

    summary {
        font-size: 16px
    }

    details p {
        font-size: 16px
    }

    .final-content p {
        font-size: 16px
    }

    .button.light {
        font-size: 14px;
        min-width: 0;
        flex: auto
    }

    .final-prospectus {
        flex-wrap: wrap;
        font-size: 13px
    }

    .footer-main>div,
    .footer-main a,
    .legal {
        font-size: 12px
    }

    .mobile-cta {
        gap: 10px;
        padding-left: 16px;
        padding-right: 16px
    }

    .mobile-cta>span {
        font-size: 12px;
        max-width: 100px
    }

    .mobile-cta .button {
        font-size: 13px;
        min-height: 46px;
        padding: 12px;
        gap: 8px
    }

    .carousel-location,
    .carousel-eyebrow {
        font-size: 10px;
        letter-spacing: .8px
    }

    .carousel-title {
        font-size: 14px
    }

    .carousel-count {
        font-size: 12px
    }

    .carousel-caption {
        gap: 8px
    }

    .carousel-caption>div {
        min-width: 0
    }
}

@media(max-width:360px) {
    .nav-shell>.button {
        font-size: 11px;
        padding: 10px 8px
    }

    .nav-shell>.button .icon {
        display: none
    }

    .mobile-cta>span {
        max-width: 75px
    }

    .mobile-cta .button {
        font-size: 12px
    }
}

/* Size the gallery independently of the reading column and viewport height. */
.hero {
    min-height: 0;
    align-items: center
}

.hero-visual.refinery-carousel {
    height: clamp(500px, 68vh, 660px);
    min-height: 0;
    align-self: center;
    width: 100%
}

@media(max-width:1100px) {
    .hero-visual.refinery-carousel {
        height: clamp(460px, 62vh, 580px)
    }
}

@media(max-width:600px) {
    .hero-visual.refinery-carousel {
        height: 335px;
        min-height: 335px
    }
}

/* Keep each mobile offer value and its explanation together. */
@media(max-width:600px) {
    .offer {
        gap: 16px
    }

    .offer>div {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4px
    }

    .offer small {
        max-width: none;
        text-align: left;
        margin-top: 0
    }
}