@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --t3-primary: #3546f5;
    --t3-secondary: #143459;
    --t3-accent: #1597e5;
    --t3-cobalt: var(--t3-primary);
    --t3-navy: var(--t3-secondary);
    --t3-charcoal: #17181d;
    --t3-footer: #202840;
    --t3-ink: #202735;
    --t3-muted: #596273;
    --t3-pale: #d5e8fc;
    --t3-band: #f6f8fb;
    --t3-white: #ffffff;
    --t3-line: #e6e9ef;
    --t3-container: 1120px;
    --t3-shadow: 0 14px 34px rgba(20, 52, 89, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.theme-three-body {
    min-width: 320px;
    margin: 0;
    overflow-x: clip;
    color: var(--t3-ink);
    background: var(--t3-white);
    font-family: "Nunito", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

body.theme-three-body img {
    display: block;
    max-width: 100%;
}

body.theme-three-body a {
    color: inherit;
    text-decoration: none;
}

body.theme-three-body button,
body.theme-three-body input {
    font: inherit;
}

body.theme-three-body h1,
body.theme-three-body h2,
body.theme-three-body h3,
body.theme-three-body p {
    margin-top: 0;
}

body.theme-three-body h1,
body.theme-three-body h2,
body.theme-three-body h3 {
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: 0;
}

body.theme-three-body :focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px var(--t3-cobalt);
}

.t3-site-shell {
    position: relative;
    overflow: hidden;
    background: var(--t3-white);
}

.t3-container {
    width: min(var(--t3-container), calc(100% - 48px));
    margin-inline: auto;
}

.t3-skip {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--t3-white);
    background: var(--t3-cobalt);
    border-radius: 4px;
    transform: translateY(-160%);
}

.t3-skip:focus {
    transform: translateY(0);
}

.t3-header {
    position: absolute;
    z-index: 1000;
    top: 94px;
    left: 50%;
    width: min(1120px, calc(100% - 48px));
    color: var(--t3-white);
    background: rgba(23, 24, 29, 0.98);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateX(-50%);
}

.t3-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--t3-white);
    background: rgba(23, 24, 29, 0.99);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: none;
    animation: t3-header-enter 500ms ease both;
}

.t3-header.is-sticky .t3-header-inner {
    width: min(var(--t3-container), calc(100% - 48px));
    margin-inline: auto;
}

.t3-header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: minmax(170px, 1fr) auto auto auto;
    align-items: center;
    gap: 18px;
    padding: 10px 34px 10px 40px;
}

.t3-brand {
    width: min(220px, 100%);
    min-width: 0;
    display: inline-flex;
    align-items: center;
}

.t3-brand img {
    width: auto;
    max-width: 220px;
    height: 54px;
    object-fit: contain;
    object-position: left center;
}

.t3-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.t3-nav > a {
    position: relative;
    padding-block: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
}

.t3-nav > a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--t3-cobalt);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.t3-nav > a:hover::after,
.t3-nav > a.is-active::after {
    transform: scaleX(1);
}

.t3-mobile-banking,
.t3-menu-toggle {
    display: none;
}

.t3-language-switcher {
    position: relative;
    z-index: 6100;
    width: 138px;
    color: var(--t3-ink);
}

.t3-language-button {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    color: #ffffff;
    background: #24262d;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.t3-language-button:hover,
.t3-language-switcher.is-open .t3-language-button {
    background: #30333c;
    border-color: rgba(255, 255, 255, 0.58);
}

.t3-language-button img,
.t3-language-menu img {
    width: 24px;
    height: 17px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(8, 15, 43, 0.18);
}

.t3-language-button span {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.t3-language-button svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 180ms ease;
}

.t3-language-switcher.is-open .t3-language-button svg {
    transform: rotate(180deg);
}

.t3-language-menu {
    position: absolute;
    z-index: 6200;
    top: calc(100% + 8px);
    right: 0;
    width: 250px;
    max-height: min(390px, calc(100vh - 150px));
    display: none;
    grid-template-columns: 1fr;
    gap: 2px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 7px;
    color: var(--t3-ink);
    background: #ffffff;
    border: 1px solid #dce3ec;
    border-radius: 6px;
    box-shadow: 0 22px 54px rgba(8, 15, 43, 0.3);
    overscroll-behavior: contain;
}

.t3-language-switcher.is-open .t3-language-menu {
    display: grid;
}

.t3-language-menu button {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: #253044;
    background: #ffffff;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
}

.t3-language-menu button:hover,
.t3-language-menu button:focus-visible,
.t3-language-menu button.is-active {
    color: var(--t3-navy);
    background: #edf4fc;
}

.t3-language-button:focus-visible,
.t3-language-menu button:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--t3-cobalt);
}

.t3-language-menu button:focus-visible {
    outline-color: var(--t3-cobalt);
    box-shadow: none;
}

.t3-google-translate-source {
    position: fixed !important;
    top: -10000px !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.t3-google-translate-source .goog-te-gadget {
    font-size: 0 !important;
}

.theme-three-body .skiptranslate.goog-te-banner-frame,
.theme-three-body .goog-te-banner-frame,
.theme-three-body .VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

body.theme-three-body {
    top: 0 !important;
}

.t3-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.t3-banking-button,
.t3-hero-button,
.t3-primary-button,
.t3-newsletter-button {
    color: #ffffff;
    background: var(--t3-cobalt);
}

.t3-banking-button:hover,
.t3-hero-button:hover,
.t3-primary-button:hover {
    color: #ffffff;
    background: var(--t3-navy);
}

.t3-banking-button {
    min-width: 156px;
}

.t3-hero {
    position: relative;
    height: min(900px, calc(100svh - 52px));
    min-height: 700px;
    overflow: hidden;
    color: #ffffff;
    background: #493b32;
    touch-action: pan-y;
    user-select: none;
}

.t3-slider-track {
    width: 100%;
    height: 100%;
    display: flex;
    will-change: transform;
}

.t3-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.t3-slide.is-active {
    pointer-events: auto;
}

.t3-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.t3-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(68, 43, 26, 0.58);
}

.t3-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 146px;
    padding-bottom: 86px;
    text-align: center;
}

.t3-hero-eyebrow {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 650;
}

.t3-slide-content h1,
.t3-slide-content h2 {
    width: min(760px, 100%);
    margin-bottom: 24px;
    color: #ffffff;
    font-family: "Nunito", "Segoe UI", Arial, sans-serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 1.16;
}

.t3-slide-content > p:not(.t3-hero-eyebrow) {
    width: min(680px, 100%);
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 16px;
}

.t3-slide-content > * {
    opacity: 0;
}

.t3-slide.is-active .t3-slide-content > * {
    opacity: 1;
}

.t3-slide:first-child.is-active.is-animating .t3-hero-eyebrow,
.t3-slide[data-t3-slide-clone].is-active.is-animating .t3-hero-eyebrow {
    animation: t3-hero-up 1s 0.1s both;
}

.t3-slide:first-child.is-active.is-animating .t3-slide-content h1,
.t3-slide[data-t3-slide-clone].is-active.is-animating .t3-slide-content h1 {
    animation: t3-hero-up 2s 0.2s both;
}

.t3-slide:first-child.is-active.is-animating .t3-slide-content > p:not(.t3-hero-eyebrow),
.t3-slide[data-t3-slide-clone].is-active.is-animating .t3-slide-content > p:not(.t3-hero-eyebrow) {
    animation: t3-hero-up 3s 0.3s both;
}

.t3-slide:first-child.is-active.is-animating .t3-hero-button,
.t3-slide[data-t3-slide-clone].is-active.is-animating .t3-hero-button {
    animation: t3-hero-up 4s 0.4s both;
}

.t3-slide:nth-child(2).is-active.is-animating .t3-hero-eyebrow {
    animation: t3-hero-down 2s 0.2s both;
}

.t3-slide:nth-child(2).is-active.is-animating .t3-slide-content h2 {
    animation: t3-hero-left 2s 0.2s both;
}

.t3-slide:nth-child(2).is-active.is-animating .t3-slide-content > p:not(.t3-hero-eyebrow) {
    animation: t3-hero-right 2s 0.2s both;
}

.t3-slide:nth-child(2).is-active.is-animating .t3-hero-button {
    animation: t3-hero-up 2s 0.2s both;
}

.t3-slider-dots {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 24px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.t3-slider-dots button {
    width: 30px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.64);
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
}

.t3-slider-dots button.is-active {
    width: 40px;
    background: var(--t3-navy);
}

.t3-choose,
.t3-insurance {
    padding: 92px 0;
    background: #ffffff;
}

.t3-section-title {
    width: min(760px, 100%);
    margin: 0 auto 50px;
    text-align: center;
}

.t3-section-title h2,
.t3-about-copy h2 {
    color: var(--t3-cobalt);
    font-size: 40px;
    font-weight: 750;
}

.t3-section-title h2 {
    margin-bottom: 16px;
}

.t3-section-title > p:last-child {
    margin-bottom: 0;
    color: var(--t3-muted);
}

.t3-label {
    margin-bottom: 10px;
    color: var(--t3-navy);
    font-size: 14px;
    font-weight: 750;
}

.t3-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.t3-choose-card {
    min-height: 312px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 30px 28px;
    text-align: center;
    background: var(--t3-pale);
    border-radius: 0;
    box-shadow: var(--t3-shadow);
}

.t3-icon-ring {
    width: 100px;
    height: 100px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--t3-navy);
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 7px 22px rgba(20, 52, 89, 0.08);
}

.t3-icon-ring svg,
.t3-insurance-card > span svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.t3-choose-card h3 {
    margin-bottom: 10px;
    color: var(--t3-cobalt);
    font-size: 21px;
}

.t3-choose-card p {
    margin-bottom: 18px;
    color: var(--t3-muted);
    font-size: 15px;
}

.t3-circle-link {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    color: #ffffff;
    background: var(--t3-navy);
    border-radius: 50%;
    font-size: 17px;
    line-height: 1;
}

.t3-circle-link:hover {
    color: #ffffff;
    background: var(--t3-cobalt);
}

.t3-about {
    padding: 98px 0;
    background: var(--t3-band);
}

.t3-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    align-items: center;
    gap: 70px;
}

.t3-about-copy h2 {
    max-width: 590px;
    margin-bottom: 24px;
}

.t3-about-copy > p:not(.t3-label) {
    margin-bottom: 17px;
    color: var(--t3-muted);
}

.t3-about-copy .t3-primary-button {
    min-width: 139px;
    margin-top: 14px;
}

.t3-about-image {
    justify-self: end;
    width: min(530px, 100%);
}

.t3-about-image img {
    width: 100%;
    aspect-ratio: 530 / 501;
    object-fit: cover;
    border-radius: 4px;
}

.t3-insurance-title {
    margin-bottom: 42px;
}

.t3-insurance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.t3-insurance-card {
    min-height: 292px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 28px 26px;
    color: #ffffff;
    text-align: center;
    background: var(--t3-cobalt);
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(53, 70, 245, 0.16);
    transition: transform 180ms ease, background-color 180ms ease;
}

.t3-insurance-card:hover {
    background: #2d3de0;
    transform: translateY(-3px);
}

.t3-insurance-card > span {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    color: var(--t3-navy);
    background: #ffffff;
    border: 1px dotted var(--t3-navy);
    border-radius: 50%;
}

.t3-insurance-card > span svg {
    width: 32px;
    height: 32px;
}

.t3-insurance-card h3 {
    margin-bottom: 11px;
    color: #ffffff;
    font-size: 20px;
}

.t3-insurance-card p {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 14px;
}

.t3-insurance-card > a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    color: var(--t3-navy);
    background: #ffffff;
    border-radius: 50%;
    font-weight: 800;
}

.t3-invest {
    padding: 12px 0 56px;
    background: #ffffff;
}

.t3-invest-grid {
    min-height: 290px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    color: #ffffff;
    background: var(--t3-cobalt);
    border-radius: 8px;
}

.t3-invest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t3-invest-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 46px 52px;
}

.t3-invest-copy h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 32px;
}

.t3-invest-copy p {
    margin-bottom: 20px;
    color: #ffffff;
}

.t3-invest-copy a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.t3-footer {
    position: relative;
    color: #ffffff;
    background-color: var(--t3-footer);
    background-image: linear-gradient(rgba(8, 15, 43, 0.92), rgba(8, 15, 43, 0.92)), url("../img/footer-background.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.t3-footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.85fr 1.1fr;
    gap: 58px;
    padding-top: 74px;
    padding-bottom: 66px;
}

.t3-footer-grid > div {
    min-width: 0;
}

.t3-footer h3 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 22px;
}

.t3-footer h3::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    content: "";
    background: #ffffff;
}

.t3-footer-brand img {
    width: auto;
    max-width: 250px;
    height: 60px;
    margin-bottom: 22px;
    object-fit: contain;
    object-position: left center;
}

.t3-footer p,
.t3-footer a,
.t3-footer span {
    overflow-wrap: anywhere;
}

.t3-footer-brand p,
.t3-footer-newsletter p {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 14px;
}

.t3-footer-contact > a,
.t3-footer-contact > p {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 14px;
}

.t3-footer-contact strong {
    font-size: 14px;
}

.t3-footer-company > a {
    width: fit-content;
    display: block;
    margin-bottom: 11px;
    color: #ffffff;
    font-size: 14px;
}

.t3-footer a:hover {
    color: #b8d8ff;
}

.t3-footer-newsletter label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.t3-footer-newsletter input {
    width: 100%;
    height: 52px;
    margin-bottom: 18px;
    padding: 12px 18px;
    color: #1e2532;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 2px;
}

.t3-newsletter-button {
    width: 100%;
}

.t3-footer-bottom {
    min-height: 72px;
    display: flex;
    align-items: center;
    color: #ffffff;
    text-align: center;
    background: var(--t3-navy);
    font-size: 14px;
}

.t3-back-to-top {
    position: fixed;
    z-index: 1200;
    right: 26px;
    bottom: 24px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #ffffff;
    background: var(--t3-cobalt);
    border: 0;
    border-radius: 4px;
    box-shadow: 0 12px 28px rgba(20, 52, 89, 0.28);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transform: translateY(70px);
    transition: opacity 220ms ease, transform 420ms ease, background-color 180ms ease;
}

.t3-back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.t3-back-to-top:hover {
    background: var(--t3-navy);
}

.t3-back-to-top svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.t3-motion-ready [data-t3-reveal] {
    opacity: 0;
    transition: opacity 750ms ease var(--t3-reveal-delay, 0s), transform 750ms cubic-bezier(.2,.7,.2,1) var(--t3-reveal-delay, 0s);
}

.t3-motion-ready [data-t3-reveal="up"] {
    transform: translate3d(0, 54px, 0);
}

.t3-motion-ready [data-t3-reveal="left"] {
    transform: translate3d(-58px, 0, 0);
}

.t3-motion-ready [data-t3-reveal="right"] {
    transform: translate3d(58px, 0, 0);
}

.t3-motion-ready [data-t3-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.t3-page-title {
    min-height: 390px;
    display: flex;
    align-items: flex-end;
    padding: 220px 0 82px;
    color: #ffffff;
    text-align: center;
    background: var(--t3-navy);
}

.t3-page-title-inner h1 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 52px;
    font-weight: 900;
}

.t3-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
}

.t3-breadcrumb a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.t3-page-intro {
    padding: 96px 0;
    background: #ffffff;
}

.t3-page-intro-grid {
    min-height: 420px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: stretch;
}

.t3-page-intro-media {
    min-height: 420px;
    overflow: hidden;
}

.t3-page-intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t3-page-intro-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 52px 56px;
    color: #ffffff;
    background: var(--t3-cobalt);
}

.t3-page-intro-copy .t3-label {
    color: rgba(255, 255, 255, 0.82);
}

.t3-page-intro-copy h2 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 900;
}

.t3-page-intro-copy > p:not(.t3-label) {
    margin-bottom: 26px;
    color: #ffffff;
}

.t3-page-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.t3-page-intro-copy .t3-primary-button {
    color: var(--t3-cobalt);
    background: #ffffff;
}

.t3-page-intro-copy .t3-primary-button:hover {
    color: #ffffff;
    background: var(--t3-navy);
}

.t3-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    font-weight: 700;
}

.t3-page-features {
    padding: 94px 0;
    background: var(--t3-band);
}

.t3-page-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.t3-page-feature {
    min-height: 282px;
    padding: 34px 30px 30px;
    background: #ffffff;
    border: 1px solid var(--t3-line);
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(20, 52, 89, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.t3-page-feature:hover {
    box-shadow: 0 18px 34px rgba(20, 52, 89, 0.12);
    transform: translateY(-4px);
}

.t3-page-feature-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #ffffff;
    background: var(--t3-cobalt);
    border-radius: 50%;
}

.t3-page-feature-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.t3-page-feature h3 {
    margin-bottom: 12px;
    color: var(--t3-navy);
    font-size: 22px;
}

.t3-page-feature p {
    margin-bottom: 0;
    color: var(--t3-muted);
}

.t3-page-detail {
    padding: 100px 0;
    background: #ffffff;
}

.t3-page-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 72px;
}

.t3-page-article h2 {
    margin-bottom: 24px;
    color: var(--t3-cobalt);
    font-size: 38px;
    font-weight: 900;
}

.t3-page-article h3 {
    margin: 32px 0 16px;
    color: var(--t3-navy);
    font-size: 24px;
}

.t3-page-article p,
.t3-page-article li {
    color: var(--t3-muted);
}

.t3-page-article ul {
    margin: 0;
    padding-left: 22px;
}

.t3-page-article li + li {
    margin-top: 10px;
}

.t3-page-sidebar {
    border-left: 3px solid var(--t3-cobalt);
}

.t3-page-links,
.t3-page-access {
    padding: 28px 0 28px 28px;
}

.t3-page-links {
    border-bottom: 1px solid var(--t3-line);
}

.t3-page-sidebar h3 {
    margin-bottom: 18px;
    color: var(--t3-navy);
    font-size: 22px;
}

.t3-page-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    color: var(--t3-muted);
    border-bottom: 1px solid #edf0f4;
    font-weight: 700;
}

.t3-page-links a::after {
    content: "\2192";
    color: var(--t3-cobalt);
}

.t3-page-links a:hover {
    color: var(--t3-cobalt);
}

.t3-page-access {
    color: #ffffff;
    background: var(--t3-navy);
}

.t3-page-access h3,
.t3-page-access p {
    color: #ffffff;
}

.t3-page-access p {
    font-size: 14px;
}

.t3-page-faq {
    padding: 96px 0;
    background: var(--t3-band);
}

.t3-page-faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
    align-items: start;
    gap: 80px;
}

.t3-page-faq h2 {
    margin-bottom: 18px;
    color: var(--t3-cobalt);
    font-size: 38px;
    font-weight: 900;
}

.t3-page-faq header > p:not(.t3-label) {
    color: var(--t3-muted);
}

.t3-faq-list details {
    background: #ffffff;
    border-bottom: 1px solid var(--t3-line);
}

.t3-faq-list summary {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
    color: var(--t3-navy);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.t3-faq-list summary span {
    color: var(--t3-cobalt);
    font-size: 24px;
    transition: transform 180ms ease;
}

.t3-faq-list details[open] summary span {
    transform: rotate(45deg);
}

.t3-faq-list details p {
    margin: 0;
    padding: 0 20px 22px;
    color: var(--t3-muted);
}

.t3-page-cta {
    padding: 58px 0;
    color: #ffffff;
    background: var(--t3-cobalt);
}

.t3-page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.t3-page-cta .t3-label,
.t3-page-cta h2 {
    color: #ffffff;
}

.t3-page-cta h2 {
    font-size: 34px;
}

.t3-page-cta-button {
    flex: 0 0 auto;
    color: var(--t3-cobalt);
    background: #ffffff;
}

.t3-page-cta-button:hover {
    color: #ffffff;
    background: var(--t3-navy);
}

.theme-three-body .t2-section {
    padding: 92px 0;
}

.theme-three-body .t2-container {
    width: min(var(--t3-container), calc(100% - 48px));
    margin-inline: auto;
}

.theme-three-body .t2-section-head {
    width: min(760px, 100%);
    margin: 0 auto 38px;
    text-align: center;
}

.theme-three-body .t2-section-head span {
    display: block;
    margin-bottom: 9px;
    color: var(--t3-navy);
    font-weight: 700;
}

.theme-three-body .t2-section-head h2 {
    color: var(--t3-cobalt);
    font-size: 38px;
}

.theme-three-body .t2-section-head p {
    color: var(--t3-muted);
}

.theme-three-body .t2-loan-public-form,
.theme-three-body .t2-loan-public-summary,
.theme-three-body .t2-loan-notice,
.theme-three-body .t2-loan-public-form input,
.theme-three-body .t2-loan-public-form select,
.theme-three-body .t2-loan-public-form textarea {
    border-radius: 6px !important;
}

.theme-three-body .t2-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    color: #ffffff;
    background: var(--t3-cobalt);
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
}

@keyframes t3-header-enter {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes t3-hero-up {
    from { opacity: 0; transform: translate3d(0, 70px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes t3-hero-down {
    from { opacity: 0; transform: translate3d(0, -70px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes t3-hero-left {
    from { opacity: 0; transform: translate3d(-80px, 0, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes t3-hero-right {
    from { opacity: 0; transform: translate3d(80px, 0, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 1120px) {
    .t3-header-inner {
        grid-template-columns: minmax(150px, 1fr) auto auto auto;
        gap: 14px;
        padding-inline: 24px;
    }

    .t3-brand img {
        max-width: 180px;
    }

    .t3-nav {
        gap: 16px;
    }

    .t3-language-switcher {
        width: 126px;
    }

    .t3-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .t3-header {
        top: 76px;
        width: calc(100% - 36px);
    }

    .t3-header.is-sticky {
        top: 0;
        width: 100%;
    }

    .t3-header.is-sticky .t3-header-inner {
        width: calc(100% - 36px);
    }

    .t3-header-inner {
        min-height: 74px;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 12px;
        padding-inline: 18px;
    }

    .t3-language-switcher {
        width: 128px;
    }

    .t3-language-menu {
        right: -56px;
        width: min(250px, calc(100vw - 24px));
        max-height: min(390px, calc(100dvh - 105px));
    }

    .t3-brand img {
        height: 48px;
        max-width: 220px;
    }

    .t3-banking-button {
        display: none;
    }

    .t3-menu-toggle {
        width: 44px;
        height: 44px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        color: #ffffff;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 4px;
        cursor: pointer;
    }

    .t3-menu-toggle span {
        width: 20px;
        height: 2px;
        background: currentColor;
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .t3-header.is-menu-open .t3-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .t3-header.is-menu-open .t3-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .t3-header.is-menu-open .t3-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .t3-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3px;
        padding: 14px;
        background: #17181d;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    }

    .t3-header.is-menu-open .t3-nav {
        display: grid;
    }

    .t3-nav > a {
        padding: 12px;
    }

    .t3-nav > a::after {
        display: none;
    }

    .t3-mobile-banking {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        color: #ffffff !important;
        background: var(--t3-cobalt);
    }

    .t3-about-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .t3-about-image {
        justify-self: center;
    }

    .t3-insurance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .t3-invest-copy {
        padding: 40px;
    }

    .t3-page-intro-grid,
    .t3-page-detail-grid,
    .t3-page-faq-grid {
        grid-template-columns: 1fr;
    }

    .t3-page-intro-grid {
        width: min(720px, calc(100% - 48px));
    }

    .t3-page-detail-grid,
    .t3-page-faq-grid {
        gap: 46px;
    }

    .t3-page-sidebar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-left: 0;
        border-top: 3px solid var(--t3-cobalt);
    }

    .t3-page-links {
        border-right: 1px solid var(--t3-line);
        border-bottom: 0;
    }
}

@media (max-width: 700px) {
    .t3-container {
        width: calc(100% - 30px);
    }

    .t3-header {
        top: 64px;
        width: calc(100% - 28px);
    }

    .t3-header.is-sticky {
        top: 0;
        width: 100%;
    }

    .t3-header.is-sticky .t3-header-inner {
        width: calc(100% - 30px);
    }

    .t3-brand img {
        max-width: min(210px, calc(100vw - 108px));
    }

    .t3-hero {
        height: 680px;
        min-height: 680px;
    }

    .t3-slide > img {
        object-position: 58% center;
    }

    .t3-slide:nth-child(2) > img {
        object-position: 53% center;
    }

    .t3-slide-overlay {
        background: rgba(68, 43, 26, 0.62);
    }

    .t3-slide-content {
        justify-content: flex-end;
        padding-top: 155px;
        padding-bottom: 76px;
    }

    .t3-slide-content h1,
    .t3-slide-content h2 {
        margin-bottom: 18px;
        font-size: 44px;
    }

    .t3-slide-content > p:not(.t3-hero-eyebrow) {
        font-size: 15px;
        line-height: 1.55;
    }

    .t3-choose,
    .t3-insurance,
    .t3-about {
        padding: 68px 0;
    }

    .t3-section-title {
        margin-bottom: 34px;
    }

    .t3-section-title h2,
    .t3-about-copy h2 {
        font-size: 34px;
    }

    .t3-choose-grid,
    .t3-insurance-grid,
    .t3-invest-grid {
        grid-template-columns: 1fr;
    }

    .t3-choose-grid,
    .t3-insurance-grid {
        gap: 18px;
    }

    .t3-choose-card,
    .t3-insurance-card {
        min-height: 0;
    }

    .t3-invest {
        padding: 0 0 44px;
    }

    .t3-invest-image {
        min-height: 250px;
    }

    .t3-invest-copy {
        min-height: 270px;
        padding: 34px 28px;
    }

    .t3-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 52px;
    }

    .t3-page-title {
        min-height: 330px;
        padding: 176px 0 66px;
    }

    .t3-page-title-inner h1 {
        font-size: 42px;
    }

    .t3-page-intro,
    .t3-page-features,
    .t3-page-detail,
    .t3-page-faq {
        padding: 68px 0;
    }

    .t3-page-intro-grid {
        width: calc(100% - 30px);
    }

    .t3-page-intro-media {
        min-height: 300px;
    }

    .t3-page-intro-copy {
        padding: 38px 30px;
    }

    .t3-page-intro-copy h2,
    .t3-page-article h2,
    .t3-page-faq h2 {
        font-size: 32px;
    }

    .t3-page-feature-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .t3-page-feature {
        min-height: 0;
    }

    .t3-page-sidebar {
        grid-template-columns: 1fr;
    }

    .t3-page-links {
        border-right: 0;
        border-bottom: 1px solid var(--t3-line);
    }

    .t3-page-links,
    .t3-page-access {
        padding: 26px;
    }

    .t3-page-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .t3-page-cta-button {
        width: 100%;
    }

    .theme-three-body .t2-container {
        width: calc(100% - 30px);
    }

    .theme-three-body .t2-section {
        padding: 68px 0;
    }
}

@media (max-width: 430px) {
    .t3-header {
        top: 60px;
    }

    .t3-header.is-sticky {
        top: 0;
    }

    .t3-header-inner {
        min-height: 68px;
        gap: 10px;
        padding-inline: 12px;
    }

    .t3-brand img {
        height: 43px;
    }

    .t3-language-switcher {
        width: 46px;
    }

    .t3-language-button {
        min-height: 42px;
        justify-content: center;
        padding: 8px;
    }

    .t3-language-button span,
    .t3-language-button svg {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .t3-language-menu {
        right: -54px;
    }

    .t3-nav {
        grid-template-columns: 1fr;
    }

    .t3-hero {
        height: 650px;
        min-height: 650px;
    }

    .t3-slide-content h1,
    .t3-slide-content h2 {
        font-size: 38px;
    }

    .t3-hero-eyebrow {
        font-size: 13px;
    }

    .t3-hero-button {
        width: 100%;
    }

    .t3-section-title h2,
    .t3-about-copy h2 {
        font-size: 31px;
    }

    .t3-choose-card {
        padding-inline: 22px;
    }

    .t3-insurance-card {
        padding-inline: 22px;
    }

    .t3-page-title-inner h1 {
        font-size: 36px;
    }

    .t3-page-intro-copy {
        padding: 34px 22px;
    }

    .t3-page-actions {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .t3-page-actions .t3-button {
        width: 100%;
    }

    .t3-page-cta h2 {
        font-size: 29px;
    }
}

.theme-three-body .t2-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 96px 24px 24px;
    overflow: visible;
    pointer-events: none;
    background: transparent;
    backdrop-filter: none;
}

.theme-three-body .t2-auth-modal.is-open {
    display: flex;
}

.theme-three-body .t2-auth-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(420px, 100%);
    max-height: calc(100vh - 120px);
    overflow: auto;
    pointer-events: auto;
    border: 1px solid color-mix(in srgb, var(--t3-primary) 18%, #d7e1eb);
    border-radius: 8px;
    background: #eef4f8;
    box-shadow: 0 20px 48px rgba(9, 24, 40, 0.24), 0 5px 16px rgba(9, 24, 40, 0.14);
}

.theme-three-body .t2-auth-aside {
    position: relative;
    display: flex;
    min-height: 150px;
    padding: 17px 22px 19px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(112deg, rgba(5, 17, 32, 0.94) 0%, rgba(8, 32, 55, 0.82) 56%, rgba(8, 32, 55, 0.56) 100%), url("../img/hero-family.png") center 42% / cover no-repeat;
    border-right: 0;
    border-bottom: 3px solid var(--t3-accent);
}

.theme-three-body .t2-auth-brand {
    position: relative;
    z-index: 1;
    display: block;
    max-width: calc(100% - 48px);
}

.theme-three-body .t2-auth-dark-logo {
    display: block;
    width: auto;
    max-width: 218px;
    height: 34px;
    object-fit: contain;
    object-position: left center;
}

.theme-three-body .t2-auth-aside-copy {
    position: relative;
    z-index: 1;
    max-width: 315px;
}

.theme-three-body .t2-auth-aside .t2-eyebrow {
    display: inline-block;
    margin-bottom: 3px;
    color: var(--t3-accent);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.theme-three-body .t2-auth-aside h2 {
    max-width: 275px;
    margin: 0 0 3px;
    color: #fff;
    font-size: 21px;
    line-height: 1.18;
}

.theme-three-body .t2-auth-aside p {
    max-width: 310px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    line-height: 1.4;
}

.theme-three-body .t2-auth-panel {
    padding: 26px 28px 28px;
    color: #182838;
    background: linear-gradient(180deg, #f5f9fc 0%, #eaf1f6 100%);
}

.theme-three-body .t2-auth-kicker {
    display: inline-flex;
    margin-bottom: 6px;
    align-items: center;
    gap: 7px;
    color: var(--t3-primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.theme-three-body .t2-auth-kicker::before {
    width: 18px;
    height: 2px;
    background: var(--t3-accent);
    content: "";
}

.theme-three-body .t2-auth-panel h3 {
    margin: 0 0 5px;
    color: #10263b;
    font-size: 25px;
    line-height: 1.2;
}

.theme-three-body .t2-auth-panel > .t2-auth-step > p {
    margin: 0 0 18px;
    color: #607185;
    font-size: 13px;
    line-height: 1.5;
}

.theme-three-body .t2-auth-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    background: rgba(4, 18, 32, 0.48);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.theme-three-body .t2-auth-close:hover {
    color: #fff;
    background: var(--t3-accent);
    border-color: var(--t3-accent);
}

.theme-three-body .t2-auth-close:focus-visible,
.theme-three-body .t2-btn:focus-visible,
.theme-three-body .t2-auth-footnote a:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--t3-accent) 72%, #fff);
    outline-offset: 3px;
}

.theme-three-body .t2-field {
    margin: 14px 0;
}

.theme-three-body .t2-field label {
    display: block;
    margin-bottom: 7px;
    color: #263a4c;
    font-size: 12px;
    font-weight: 800;
}

.theme-three-body .t2-field input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #c5d2de;
    border-radius: 6px;
    color: #10263b;
    background: rgba(255, 255, 255, 0.88);
    font: inherit;
    box-shadow: inset 0 1px 2px rgba(13, 38, 62, 0.04), 0 1px 0 rgba(255, 255, 255, 0.7);
}

.theme-three-body .t2-field input:focus {
    outline: 3px solid color-mix(in srgb, var(--t3-primary) 18%, transparent);
    border-color: var(--t3-primary);
    background: #fff;
}

.theme-three-body .t2-auth-buttons {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.theme-three-body .t2-btn {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.theme-three-body .t2-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--t3-primary), var(--t3-secondary));
    box-shadow: 0 8px 18px color-mix(in srgb, var(--t3-primary) 24%, transparent);
}

.theme-three-body .t2-btn-primary:hover {
    color: #fff;
    background: var(--t3-secondary);
}

.theme-three-body .t2-btn-ghost {
    color: var(--t3-primary);
    background: rgba(255, 255, 255, 0.58);
    border-color: color-mix(in srgb, var(--t3-primary) 24%, #cbd4dd);
}

.theme-three-body .t2-btn-ghost:hover {
    color: #fff;
    background: var(--t3-primary);
    border-color: var(--t3-primary);
}

.theme-three-body .t2-auth-footnote {
    margin: 15px 0 0;
    font-size: 12px;
    text-align: center;
}

.theme-three-body .t2-auth-footnote a {
    color: var(--t3-primary);
    font-weight: 800;
}

.theme-three-body .t2-auth-result {
    margin-top: 14px;
    color: #566473;
    font-size: 13px;
}

.theme-three-body .t2-auth-result .alert {
    padding: 11px 12px;
    border-radius: 6px;
}

.theme-three-body .t2-auth-result .danger {
    color: #982525;
    background: #fff0f0;
    border: 1px solid #f4caca;
}

.theme-three-body .t2-auth-result .success {
    color: #126343;
    background: #eaf8f1;
    border: 1px solid #c4ead8;
}

.theme-three-body .t2-auth-step.is-hidden {
    display: none;
}

.theme-three-body .t2-captcha,
.theme-three-body .t2-code-row {
    display: flex;
    gap: 9px;
    margin: 16px 0;
}

.theme-three-body .t2-captcha span,
.theme-three-body .t2-code-row input {
    display: grid;
    width: 48px;
    height: 52px;
    padding: 0;
    place-items: center;
    border: 1px solid #d4dde5;
    border-radius: 6px;
    color: #17212b;
    background: rgba(255, 255, 255, 0.7);
    font: inherit;
    font-size: 21px;
    font-weight: 800;
    text-align: center;
}

@media (max-width: 760px) {
    .theme-three-body .t2-auth-modal {
        inset: var(--t3-auth-viewport-top, 0px) 0 auto;
        height: var(--t3-auth-viewport-height, 100dvh);
        align-items: center;
        justify-content: center;
        padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        pointer-events: auto;
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }

    .theme-three-body .t2-auth-shell {
        grid-template-columns: 1fr;
        max-height: calc(var(--t3-auth-viewport-height, 100dvh) - 24px);
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-gutter: stable;
        -webkit-overflow-scrolling: touch;
    }

    .theme-three-body .t2-auth-close {
        position: fixed;
        top: calc(var(--t3-auth-viewport-top, 0px) + max(18px, env(safe-area-inset-top)));
        right: max(18px, calc((100vw - 420px) / 2 + 14px));
    }

    .theme-three-body .t2-auth-panel {
        padding: 24px 22px 26px;
    }

    .theme-three-body .t2-auth-panel h3 {
        font-size: 24px;
    }
}

@media (max-width: 430px) {
    .theme-three-body .t2-auth-aside {
        min-height: 142px;
        padding: 15px 18px 17px;
        background-position: center 38%;
    }

    .theme-three-body .t2-auth-aside h2 {
        max-width: 245px;
        font-size: 19px;
    }

    .theme-three-body .t2-auth-dark-logo {
        max-width: 190px;
        height: 30px;
    }

    .theme-three-body .t2-auth-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }

    .theme-three-body .t2-auth-footnote {
        margin-top: 18px;
    }

    .theme-three-body .t2-captcha span,
    .theme-three-body .t2-code-row input {
        width: 44px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
