:root {
  --navy: #06182c;
  --navy2: #0a2340;
  --blue: #0d3153;
  --gold: #c9a66b;
  --gold2: #e0c18c;
  --paper: #f6f7f7;
  --ink: #102338;
  --muted: #667482;
  --line: #dfe4e8;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: #fff;
}
.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  color: white;
  border-bottom: 1px solid #ffffff20;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--navy);
  min-width: 190px;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border: 1px solid var(--gold);
  color: var(--gold2);
  font: 600 23px "Playfair Display";
  transform: rotate(45deg);
}
.logo-image {
  width: 41px;
  height: 41px;
  object-fit: contain;
}
.logo-mark::first-letter {
  transform: rotate(-45deg);
}
.logo span:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.logo b {
  font-size: 17px;
  letter-spacing: 3px;
}
.logo small {
  font-size: 9px;
  letter-spacing: 4px;
  margin-top: 2px;
}
.header .logo {
  color: white;
}
.header nav {
  margin: auto;
  display: flex;
  gap: 36px;
  height: 100%;
}
.header nav a {
  height: 100%;
  display: flex;
  align-items: center;
  color: #c9d1d9;
  text-decoration: none;
  font-size: 13px;
  position: relative;
}
.header nav a:after {
  content: "";
  position: absolute;
  height: 2px;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: var(--gold);
  transition: 0.25s;
}
.header nav a:hover,
.header nav a.active {
  color: white;
}
.header nav a.active:after,
.header nav a:hover:after {
  left: 0;
  right: 0;
}
.tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang {
  color: #ced6de;
  background: transparent;
  border: 0;
}
.login {
  padding: 11px 17px;
  border: 1px solid #c9a66b80;
  color: var(--gold2);
  text-decoration: none;
  font-size: 12px;
}
.menu {
  display: none;
  background: none;
  border: 0;
}
.menu i {
  width: 24px;
  height: 1px;
  background: #fff;
  display: block;
  margin: 5px;
}
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 14, 28, 0.96) 0%,
      rgba(3, 18, 35, 0.72) 40%,
      rgba(3, 18, 35, 0.04) 75%
    ),
    linear-gradient(0deg, rgba(2, 14, 27, 0.55), transparent 45%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}
.hero-content {
  position: absolute;
  left: 9vw;
  top: 50%;
  transform: translateY(-44%);
  max-width: 690px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold2);
  font-weight: 600;
}
.hero h1 {
  font-size: 64px;
  line-height: 1.22;
  letter-spacing: 4px;
  margin: 22px 0;
  font-weight: 500;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold2);
}
.hero-content > p {
  color: #c0cbd5;
  font-size: 15px;
  line-height: 2;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}
.btn {
  height: 50px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.25s;
}
.btn:hover {
  transform: translateY(-2px);
}
.primary {
  color: var(--navy);
  background: linear-gradient(100deg, #c8a268, #e2c490);
}
.ghost {
  border: 1px solid #ffffff5c;
  color: #fff;
}
.trust {
  display: flex;
  gap: 30px;
  margin-top: 38px;
  color: #9faebb;
  font-size: 11px;
}
.trust i {
  font-style: normal;
  color: var(--gold2);
  border: 1px solid #c9a66b80;
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  margin-right: 7px;
}
.scroll {
  position: absolute;
  bottom: 0;
  left: 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  letter-spacing: 3px;
  color: #98a7b6;
}
.scroll i {
  width: 1px;
  height: 53px;
  background: linear-gradient(var(--gold), transparent);
}
.section {
  padding: 115px 9vw;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.section-head.left {
  text-align: left;
  margin-left: 0;
  margin-bottom: 52px;
}
.section-head h2,
.account h2,
.security h2,
.cta h2 {
  font-size: 42px;
  font-weight: 500;
  margin: 14px 0 18px;
  letter-spacing: 2px;
}
.section-head p,
.account-copy > p,
.security-copy > p {
  color: var(--muted);
  line-height: 2;
  font-size: 14px;
}
.eyebrow.dark {
  color: #9b7743;
}
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.numbers div {
  text-align: center;
  padding: 35px;
  border-right: 1px solid var(--line);
}
.numbers div:last-child {
  border: 0;
}
.numbers b {
  display: block;
  font-size: 34px;
  font-weight: 500;
  color: var(--navy);
}
.numbers b:after {
  content: "+";
  font-size: 18px;
  color: var(--gold);
}
.numbers div:nth-child(3) b:after {
  content: "";
}
.numbers span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
}
.services {
  background: var(--paper);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.service-card {
  min-height: 355px;
  background: #fff;
  border: 1px solid var(--line);
  border-right: 0;
  padding: 32px;
  position: relative;
  transition: 0.35s;
}
.service-card:last-child {
  border-right: 1px solid var(--line);
}
.service-card:hover,
.service-card.featured {
  background: var(--navy);
  color: white;
  transform: translateY(-8px);
  box-shadow: 0 20px 50px #09213c22;
}
.service-card .num {
  position: absolute;
  right: 25px;
  top: 22px;
  color: #abb4bc;
  font-size: 10px;
}
.service-card .icon {
  font-size: 38px;
  color: var(--gold);
  margin: 45px 0 40px;
}
.service-card h3 {
  font-size: 19px;
  font-weight: 500;
}
.service-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  min-height: 70px;
}
.service-card:hover p,
.service-card.featured p {
  color: #aab8c5;
}
.service-card a {
  font-size: 11px;
  color: #a17e49;
  text-decoration: none;
}
.account {
  min-height: 760px;
  display: grid;
  grid-template-columns: 55% 45%;
  background: var(--navy);
  color: white;
  overflow: hidden;
}
.account-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #071a30;
}
.account-visual img {
  width: 90%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 50px #0008);
}
.glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #174d7c;
  filter: blur(90px);
  opacity: 0.5;
}
.account-copy {
  padding: 100px 9vw 80px 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.account-copy h2 {
  font-size: 45px;
}
.account-copy > p {
  color: #9caaba;
}
.gold {
  color: var(--gold2);
}
.account ul {
  padding: 0;
  margin: 24px 0 32px;
  list-style: none;
}
.account li {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}
.account li > i {
  font-style: normal;
  color: var(--gold);
  width: 28px;
  height: 28px;
  border: 1px solid #c9a66b55;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.account li span {
  display: flex;
  flex-direction: column;
}
.account li b {
  font-size: 13px;
}
.account li small {
  color: #8291a0;
  margin-top: 5px;
}
.gold-btn {
  align-self: flex-start;
  color: var(--navy);
  background: linear-gradient(100deg, #c8a268, #e2c490);
}
.security {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 730px;
}
.security-copy {
  padding-right: 8vw;
}
.security-list {
  margin-top: 38px;
}
.security-list > div {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.security-list > div > span {
  font: 600 12px "Playfair Display";
  color: var(--gold);
}
.security-list p {
  margin: 0;
}
.security-list b,
.security-list small {
  display: block;
}
.security-list small {
  margin-top: 6px;
  color: var(--muted);
}
.security-art {
  height: 480px;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #e9eff3 0, transparent 65%);
}
.shield {
  width: 190px;
  height: 220px;
  clip-path: polygon(50% 0, 92% 18%, 85% 72%, 50% 100%, 15% 72%, 8% 18%);
  background: linear-gradient(145deg, #092742, #06182c);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  filter: drop-shadow(0 25px 25px #17334d44);
  z-index: 2;
}
.shield span {
  color: var(--gold2);
  font-size: 35px;
}
.shield b {
  letter-spacing: 4px;
  margin-top: 12px;
}
.shield small {
  font-size: 7px;
  color: #7e90a0;
  margin-top: 5px;
  letter-spacing: 2px;
}
.orbit {
  position: absolute;
  border: 1px solid #b5c2cc;
  border-radius: 50%;
}
.o1 {
  width: 360px;
  height: 360px;
}
.o2 {
  width: 470px;
  height: 270px;
  transform: rotate(-20deg);
}
.node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px #c9a66b20;
}
.n1 {
  top: 20%;
  left: 22%;
}
.n2 {
  bottom: 18%;
  right: 24%;
}
.n3 {
  top: 34%;
  right: 16%;
}
.cta {
  min-height: 470px;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 120%, #17496e 0, transparent 55%),
    linear-gradient(120deg, transparent 45%, #c9a66b0f 45% 46%, transparent 46%);
}
.cta > div:last-child {
  position: relative;
}
.cta h2 {
  font-size: 44px;
}
.cta p {
  color: #9dabb9;
}
.cta > div > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 32px;
}
.text-link {
  color: white;
  text-underline-offset: 5px;
  font-size: 12px;
}
footer {
  background: #04111f;
  color: #8593a0;
  padding: 75px 9vw 25px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.logo.light {
  color: #fff;
}
.footer-brand p {
  max-width: 300px;
  line-height: 1.8;
  font-size: 12px;
}
.footer-top h4 {
  color: #fff;
  font-size: 13px;
  margin-top: 0;
}
.footer-top > div > a:not(.logo),
.footer-top > div > p {
  display: block;
  color: #82909d;
  text-decoration: none;
  font-size: 11px;
  margin: 12px 0;
}
.footer-bottom {
  border-top: 1px solid #ffffff12;
  margin-top: 55px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}
.footer-bottom a {
  color: #aeb8c2;
  text-decoration: none;
  margin-left: 14px;
}
.notice {
  position: fixed;
  z-index: 50;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 15px;
  border-radius: 20px;
  color: #ced6de;
  background: #06182ddd;
  backdrop-filter: blur(10px);
  font-size: 9px;
  box-shadow: 0 5px 20px #0003;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .header nav {
    gap: 18px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card:nth-child(2) {
    border-right: 1px solid var(--line);
  }
  .account {
    grid-template-columns: 1fr;
  }
  .account-visual {
    min-height: 600px;
  }
  .account-visual img {
    max-width: 720px;
  }
  .account-copy {
    padding: 85px 10vw;
  }
  .security {
    grid-template-columns: 1fr;
  }
  .security-copy {
    padding-right: 0;
  }
  .security-art {
    margin-top: 50px;
  }
}
@media (max-width: 760px) {
  .header {
    height: 72px;
    padding: 0 20px;
  }
  .header nav {
    position: fixed;
    inset: 72px 0 auto;
    background: #06182cf5;
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 20px 30px;
    gap: 0;
    transform: translateY(-150%);
    transition: 0.3s;
  }
  .header nav.open {
    transform: none;
  }
  .header nav a {
    height: 48px;
  }
  .login,
  .lang {
    display: none;
  }
  .menu {
    display: block;
  }
  .logo {
    min-width: auto;
  }
  .logo small {
    display: none;
  }
  .hero {
    min-height: 690px;
  }
  .hero > img {
    object-position: 64% center;
  }
  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(3, 14, 28, 0.96),
      rgba(3, 18, 35, 0.45)
    );
  }
  .hero-content {
    left: 25px;
    right: 25px;
    top: 51%;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-content > p {
    font-size: 13px;
  }
  .trust {
    gap: 12px;
    flex-direction: column;
  }
  .section {
    padding: 80px 24px;
  }
  .section-head h2,
  .account h2,
  .security h2,
  .cta h2 {
    font-size: 31px;
  }
  .numbers {
    grid-template-columns: 1fr 1fr;
  }
  .numbers div:nth-child(2) {
    border-right: 0;
  }
  .numbers div {
    border-bottom: 1px solid var(--line);
    padding: 25px 10px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:nth-child(2) {
    border-right: 1px solid var(--line);
  }
  .account-visual {
    min-height: 380px;
  }
  .account-visual img {
    width: 110%;
    max-width: none;
  }
  .account-copy {
    padding: 75px 25px;
  }
  .security-art {
    height: 370px;
    transform: scale(0.8);
  }
  .cta {
    padding: 80px 24px;
  }
  .cta > div > div {
    flex-direction: column;
    gap: 20px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
  .notice {
    width: 90%;
    text-align: center;
  }
  .scroll {
    display: none;
  }
}

.lang.language-select {
  min-width: 96px;
  height: 36px;
  padding: 0 28px 0 10px;
  border: 1px solid rgba(154, 174, 198, 0.32);
  border-radius: 3px;
  color: #e7eef7;
  background: #07111d;
}

.lang.language-select option {
  color: #e7eef7;
  background: #07111d;
}

.trust b {
  font-weight: 500;
}

@media (max-width: 720px) {
  .lang.language-select {
    display: block;
    min-width: 84px;
    width: 84px;
  }
}

.landing-support-fab {
  position: fixed;
  right: 24px;
  bottom: 72px;
  z-index: 61;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #071a2e;
  background: #d7b56d;
  box-shadow: 0 12px 30px #071a2e40;
  cursor: pointer;
}

.landing-support-fab svg {
  width: 22px;
  height: 22px;
}

.landing-support-fab span {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #34b78b;
}

.landing-support {
  position: fixed;
  right: 24px;
  bottom: 136px;
  z-index: 60;
  width: min(330px, calc(100vw - 28px));
  height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d8e0e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px #071a2e40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: 0.2s ease;
}

.landing-support.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.landing-support > header {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  color: #fff;
  background: #0a2238;
}

.landing-support > header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing-support > header > div > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #071a2e;
  background: #d7b56d;
  font-size: 10px;
  font-weight: 700;
}

.landing-support header p,
.landing-support header b,
.landing-support header small {
  display: block;
  margin: 0;
}

.landing-support header b {
  font-size: 11px;
}

.landing-support header small {
  margin-top: 4px;
  color: #aebdca;
  font-size: 9px;
}

.landing-support header small i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #34b78b;
}

.landing-support > header button {
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.landing-support-messages {
  flex: 1;
  padding: 15px;
  overflow: auto;
  background: #f3f6f7;
}

.support-agent,
.support-user {
  max-width: 84%;
  margin: 5px 0;
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 10px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.support-agent {
  color: #293d48;
  background: #fff;
}

.support-user {
  margin-left: auto;
  color: #fff;
  background: #0a2a42;
}

.support-contact-options {
  display: grid;
  gap: 7px;
  padding: 10px;
  border-top: 1px solid #d8e0e3;
  background: #fff;
}

.support-contact-options[hidden] {
  display: none;
}

.support-contact-link {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid #d8e0e3;
  border-radius: 6px;
  color: #0a2a42;
  background: #f7fafb;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.support-contact-link:hover {
  border-color: #d7b56d;
  color: #8c6933;
  background: #fffaf0;
}

.support-contact-link small {
  color: #82909d;
  font-size: 8px;
  font-weight: 600;
}

.landing-support form {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-top: 1px solid #d8e0e3;
}

.landing-support form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 10px;
}

.landing-support form button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #0a2a42;
  cursor: pointer;
}

.landing-support form svg {
  width: 15px;
  height: 15px;
}

.content-main {
  min-height: 100vh;
  padding: 132px 6vw 80px;
  background:
    linear-gradient(180deg, rgba(6, 24, 44, 0.92), rgba(6, 24, 44, 0.8)),
    url("assets/hero-bank.png") center/cover fixed;
}

.content-article {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(201, 166, 107, 0.28);
  border-radius: 8px;
  color: #dce7f0;
  background: rgba(6, 24, 44, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.content-article h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 34px;
}

.content-article p {
  margin: 0 0 14px;
  color: #c9d6df;
  line-height: 1.8;
}

.content-back {
  display: inline-flex;
  margin-top: 20px;
  color: var(--gold2);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 520px) {
  .landing-support-fab {
    right: 14px;
  }

  .landing-support {
    right: 14px;
    bottom: 132px;
  }
}


/* 2026-08-01 theme-aware language and mobile landing fixes */
.header .language-picker {
  --language-picker-bg: rgba(6, 24, 44, 0.86);
  --language-picker-border: rgba(201, 166, 107, 0.36);
  --language-picker-hover: rgba(255, 255, 255, 0.08);
  --language-picker-active: rgba(201, 166, 107, 0.28);
  --language-picker-text: #f2f6fb;
}

.header .language-picker-menu {
  backdrop-filter: blur(10px);
}

@media (max-width: 760px) {
  .header {
    height: 86px;
    padding: 0 14px;
  }

  .header nav {
    inset: 86px 0 auto;
  }

  .tools {
    gap: 8px;
    margin-left: auto;
  }

  .logo {
    gap: 8px;
  }

  .logo-mark,
  .logo-image {
    width: 38px;
    height: 38px;
  }

  .logo b {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .header .language-picker {
    min-width: 112px;
  }

  .header .language-picker-button {
    min-height: 42px;
    padding: 0 10px;
  }

  .login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 12px;
    white-space: nowrap;
    background: rgba(6, 24, 44, 0.68);
    backdrop-filter: blur(8px);
  }

  .hero {
    min-height: 760px;
    height: 100svh;
  }

  .hero > img {
    object-position: 82% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 14, 28, 0.94) 0%, rgba(3, 18, 35, 0.58) 52%, rgba(3, 18, 35, 0.2) 100%),
      linear-gradient(0deg, rgba(2, 14, 27, 0.58), transparent 45%);
  }

  .hero-content {
    top: 57%;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.28;
  }
}

@media (max-width: 430px) {
  .header {
    padding: 0 12px;
  }

  .logo b {
    font-size: 15px;
    letter-spacing: 1.6px;
  }

  .header .language-picker {
    min-width: 104px;
  }

  .login {
    width: auto;
    min-width: 54px;
    max-width: 86px;
    padding: 0 8px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .login::before {
    content: none;
  }

  .hero > img {
    object-position: 86% center;
  }
}

@media (max-width: 370px) {
  .logo span:nth-child(2) {
    display: none;
  }

  .header .language-picker {
    min-width: 96px;
  }

  .login {
    max-width: 78px;
  }
}


/* 2026-08-01 mobile overflow guard */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html:not([data-i18n-ready="1"]) .language-select,
html:not([data-i18n-ready="1"]) [data-i18n] {
  visibility: hidden;
}

html:not([data-i18n-ready="1"]) [data-i18n-placeholder]::placeholder {
  color: transparent;
}

@media (max-width: 760px) {
  .hero,
  .account-visual,
  .security-art {
    max-width: 100%;
    overflow: hidden;
  }

  .account-visual img {
    width: 100%;
    max-width: 100%;
  }
}

/* 2026-08-01 content preserved line breaks */
.content-article #contentBody,
.content-article #contentBody p {
  white-space: pre-wrap;
}

.content-article #contentBody p {
  overflow-wrap: anywhere;
}
