:root {
  --home-ink: #07111f;
  --home-ink-soft: #132238;
  --home-paper: #f7f8fb;
  --home-white: #ffffff;
  --home-line: rgba(7, 17, 31, 0.11);
  --home-muted: #607086;
  --home-blue: #0a68ff;
  --home-cyan: #66d7ff;
  --home-violet: #8c78ff;
  --home-green: #1fb981;
  --home-radius: 28px;
  --home-shadow: 0 28px 80px rgba(7, 17, 31, 0.12);
}

body.home-page {
  background: var(--home-paper);
  color: var(--home-ink);
  overflow-x: hidden;
}

.home-page a {
  text-decoration: none;
}

.home-page .home-shell {
  width: min(100% - 40px, 1320px);
  margin-inline: auto;
}

.home-page .home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-page .home-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}

.home-page .home-display {
  font-size: clamp(3.8rem, 7.8vw, 8.4rem);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 760;
}

html[lang="en"] .home-page .home-display {
  max-width: 760px;
  font-size: clamp(2.9rem, 3.8vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.home-page .home-title {
  font-size: clamp(2.35rem, 5vw, 5.3rem);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 740;
}

.home-page .home-copy-lg {
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.75;
  color: var(--home-muted);
}

.home-page .home-copy {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--home-muted);
}

html[lang="zh-Hant"] .home-page .home-display {
  max-width: 820px;
  font-family: 'Noto Sans TC', 'Inter', sans-serif;
  font-size: clamp(3rem, 5.8vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 720;
}

html[lang="zh-Hant"] .home-page .home-title {
  font-family: 'Noto Sans TC', 'Inter', sans-serif;
  font-size: clamp(2rem, 3.7vw, 4rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 700;
}

@media (min-width: 1081px) {
  html[lang="en"] .home-page #about .home-section-intro {
    align-items: stretch;
  }

  html[lang="en"] .home-page #about .home-section-intro > div:first-child {
    display: flex;
    flex-direction: column;
  }

  html[lang="en"] .home-page #about .home-about-copy {
    align-self: center;
    padding-top: 0;
  }

  html[lang="en"] .home-page #about .home-title {
    max-width: 520px;
    font-size: clamp(2.9rem, 3.6vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -.04em;
  }
}

html[lang="zh-Hant"] .home-page .home-copy-lg {
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.82;
}

html[lang="zh-Hant"] .home-page .home-focus-card h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -.025em;
}

html[lang="zh-Hant"] .home-page .home-validation-card h3,
html[lang="zh-Hant"] .home-page .home-journey-content h3 {
  letter-spacing: -.025em;
}

.home-page .home-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(7, 17, 31, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-page .home-nav-inner {
  width: min(100% - 40px, 1440px);
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-page .home-brand img {
  display: block;
  width: 148px;
  height: auto;
}

.home-page .home-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-page .home-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: visible;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-page .home-nav-links a {
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}

.home-page .home-nav-links a:hover {
  color: #fff;
}

.home-page .home-nav-cta,
.home-page .home-btn-primary,
.home-page .home-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 760;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.home-page .home-nav-cta,
.home-page .home-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--home-blue), #3998ff);
  box-shadow: 0 14px 34px rgba(10, 104, 255, .28);
}

.home-page .home-nav-cta:hover,
.home-page .home-btn-primary:hover,
.home-page .home-btn-secondary:hover {
  transform: translateY(-2px);
}

.home-page .home-btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
}

.home-page .home-lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.home-page .home-lang-switch button {
  min-width: 42px;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, .58);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  cursor: pointer;
}

.home-page .home-lang-switch button.is-active {
  background: #fff;
  color: var(--home-ink);
}

.home-page .home-mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.home-page .home-mobile-menu {
  display: none;
  position: fixed;
  inset: 78px 0 auto 0;
  z-index: 79;
  padding: 18px 20px 28px;
  background: rgba(7, 17, 31, .98);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.home-page .home-mobile-menu.is-open {
  display: grid;
  gap: 8px;
}

.home-page .home-mobile-menu a {
  color: #fff;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-weight: 650;
}

.home-page .home-hero {
  position: relative;
  min-height: 880px;
  padding: 178px 0 94px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 17%, rgba(102, 215, 255, .22), transparent 26%),
    radial-gradient(circle at 64% 70%, rgba(140, 120, 255, .2), transparent 28%),
    linear-gradient(140deg, #07111f 0%, #0a1830 52%, #081321 100%);
}

html[lang="en"] .home-page .home-hero {
  min-height: min(820px, 100svh);
  padding: 132px 0 64px;
}

html[lang="en"] .home-page .home-hero h1 {
  margin: 22px 0 24px;
}

.home-page .home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 90%);
}

.home-page .home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  align-items: center;
  gap: 64px;
}

.home-page .home-hero .home-eyebrow {
  color: var(--home-cyan);
}

.home-page .home-hero h1 {
  margin: 30px 0 32px;
  max-width: 860px;
}

.home-page .home-hero-copy {
  max-width: 650px;
  color: rgba(255,255,255,.68);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.8;
}

.home-page .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.home-page .home-hero-note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.47);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-page .home-hero-note span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--home-green);
  box-shadow: 0 0 0 5px rgba(31,185,129,.12);
}

.home-page .home-system {
  position: relative;
  min-height: 560px;
}

.home-page .system-orbit {
  position: absolute;
  inset: 48px 0 20px 40px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.home-page .system-orbit::before,
.home-page .system-orbit::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 24px rgba(102,215,255,.85);
}

.home-page .system-orbit::before { top: 17%; right: 9%; }
.home-page .system-orbit::after { bottom: 15%; left: 10%; background: var(--home-violet); }

.home-page .system-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(10, 24, 48, .78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 32px 80px rgba(0,0,0,.24);
}

.home-page .system-card-main {
  inset: 88px 38px auto 0;
  min-height: 340px;
  padding: 26px;
  border-radius: 30px;
  transform: rotate(-1.5deg);
}

.home-page .system-card-small {
  right: -8px;
  bottom: 74px;
  width: 250px;
  padding: 18px;
  border-radius: 22px;
  transform: rotate(3deg);
}

.home-page .system-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-page .system-card-label strong {
  color: var(--home-cyan);
  font-weight: 700;
}

.home-page .system-flow {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.home-page .system-step {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.065);
}

.home-page .system-step-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--home-cyan);
  background: rgba(102,215,255,.1);
}

.home-page .system-step-title {
  color: #fff;
  font-size: 14px;
  font-weight: 680;
}

.home-page .system-step-sub {
  margin-top: 3px;
  color: rgba(255,255,255,.42);
  font-size: 11px;
}

.home-page .system-step-state {
  color: rgba(255,255,255,.45);
  font-size: 11px;
}

.home-page .system-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.home-page .system-chip {
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.055);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.home-page .system-mini-metric {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.home-page .system-mini-metric b {
  font-size: 34px;
  line-height: 1;
  color: #fff;
}

.home-page .system-mini-metric span {
  max-width: 90px;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
}

.home-page .home-proof {
  position: relative;
  z-index: 4;
  margin-top: -38px;
}

.home-page .home-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 24px;
  box-shadow: var(--home-shadow);
  overflow: hidden;
}

.home-page .home-proof-item {
  padding: 26px 28px;
  border-right: 1px solid var(--home-line);
}

.home-page .home-proof-item:last-child { border-right: 0; }

.home-page .home-proof-item b {
  display: block;
  color: var(--home-ink);
  font-size: 19px;
  letter-spacing: -.02em;
}

.home-page .home-proof-item span {
  display: block;
  margin-top: 5px;
  color: var(--home-muted);
  font-size: 12px;
}

.home-page .home-section {
  padding: 130px 0;
}

.home-page .home-section-dark {
  color: #fff;
  background: var(--home-ink);
}

.home-page .home-section-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.home-page .home-section-intro .home-title {
  max-width: 620px;
}

.home-page .home-about-copy {
  padding-top: 8px;
  max-width: 690px;
}

.home-page .home-about-copy p + p {
  margin-top: 24px;
}

.home-page .home-about-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.home-page .home-tag {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--home-line);
  background: rgba(255,255,255,.7);
  color: #3e4f64;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.home-page .home-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 62px;
}

.home-page .home-focus-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  border-radius: var(--home-radius);
  overflow: hidden;
  color: #fff;
  background: linear-gradient(160deg, #10233e 0%, #091524 100%);
  border: 1px solid rgba(255,255,255,.08);
}

.home-page .home-focus-card::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  right: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(102,215,255,.2), transparent 68%);
}

.home-page .home-focus-number {
  color: var(--home-cyan);
  font-size: 12px;
  letter-spacing: .15em;
  font-weight: 800;
}

.home-page .home-focus-card h3 {
  margin-top: 126px;
  font-size: clamp(1.75rem, 2.5vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.home-page .home-focus-card p {
  margin-top: 18px;
  max-width: 320px;
  color: rgba(255,255,255,.56);
  line-height: 1.7;
}

.home-page .home-product {
  border-radius: 38px;
  overflow: hidden;
  background: linear-gradient(145deg, #07111f, #0f2340);
  box-shadow: var(--home-shadow);
}

.home-page .home-product-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  min-height: 660px;
}

.home-page .home-product-copy {
  padding: 68px 58px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-page .home-product-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.home-page .home-product-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-green);
}

.home-page .home-product h3 {
  margin-top: 24px;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: .95;
  letter-spacing: -.055em;
}

.home-page .home-product-kicker {
  margin-top: 13px;
  color: var(--home-cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-page .home-product-copy p {
  margin-top: 26px;
  max-width: 510px;
  color: rgba(255,255,255,.61);
  font-size: 17px;
  line-height: 1.75;
}

.home-page .home-product-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: rgba(255,255,255,.53);
  font-size: 11px;
}

.home-page .home-product-flow b {
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.07);
}

.home-page .home-product-copy .home-btn-primary {
  width: fit-content;
  margin-top: 34px;
}

.home-page .home-product-visual {
  position: relative;
  min-height: 620px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 32%, rgba(61,154,255,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}

.home-page .home-product-visual img {
  width: auto;
  max-width: min(100%, 520px);
  max-height: 720px;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 36px 90px rgba(0,0,0,.38);
  transform: none;
}

.home-page .home-work-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 52px;
}

.home-page .home-work-header p {
  max-width: 520px;
}

.home-page .home-work-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  grid-template-rows: repeat(2, minmax(330px, auto));
  gap: 16px;
}

.home-page .home-case {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: 30px;
  border: 1px solid var(--home-line);
  background: #fff;
}

.home-page .home-case:first-child {
  grid-row: 1 / span 2;
}

.home-page .home-case-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.home-page .home-case-art {
  position: absolute;
  inset: 0;
}

.home-page .home-case-art.unibridge {
  background:
    radial-gradient(circle at 72% 30%, rgba(80, 253, 232, .28), transparent 23%),
    linear-gradient(145deg, #0b1522, #112f3a);
}

.home-page .home-case-art.usd2pay {
  background:
    radial-gradient(circle at 80% 10%, rgba(55, 167, 255, .28), transparent 26%),
    linear-gradient(145deg, #071d37, #0b3153);
}

.home-page .home-case-art.investpro {
  background:
    radial-gradient(circle at 85% 25%, rgba(141, 120, 255, .3), transparent 26%),
    linear-gradient(145deg, #12102a, #242052);
}

.home-page .home-case-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}

.home-page .home-case-media.contain {
  object-fit: contain;
  padding: 36px;
  background: linear-gradient(145deg, #eef6ff, #ffffff);
}

.home-page .home-case::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top, rgba(3,8,15,.88) 0%, rgba(3,8,15,.14) 50%, rgba(3,8,15,0) 72%);
}

.home-page .home-case:hover .home-case-media {
  transform: scale(1.025);
}

.home-page .home-case-gridline {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 44px 44px;
}

.home-page .home-case-sigil {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(48%, 360px);
  aspect-ratio: 1;
  transform: translate(-50%, -54%);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
}

.home-page .home-case-sigil::before,
.home-page .home-case-sigil::after {
  content: '';
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 34%;
  transform: rotate(45deg);
}

.home-page .home-case-sigil::after {
  inset: 31%;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.home-page .home-case-name-art {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 760;
  letter-spacing: -.06em;
  white-space: nowrap;
}

.home-page .home-case-meta {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  background: linear-gradient(to top, rgba(3,8,15,.84), transparent);
  color: #fff;
}

.home-page .home-case-meta h3 {
  font-size: 22px;
  letter-spacing: -.03em;
}

.home-page .home-case-meta p {
  margin-top: 6px;
  max-width: 510px;
  color: rgba(255,255,255,.57);
  font-size: 13px;
  line-height: 1.6;
}

.home-page .home-case-badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.66);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.home-page .home-case:hover .home-case-name-art {
  transform: translate(-50%, -50%) scale(1.035);
  transition: transform .35s ease;
}

.home-page .home-validation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.home-page .home-validation-card {
  position: relative;
  min-height: 360px;
  padding: 40px;
  border-radius: 30px;
  overflow: hidden;
}

.home-page .home-validation-card.gov {
  color: #fff;
  background: linear-gradient(145deg, #0e2c4c, #0c1c31);
}

.home-page .home-validation-card.media {
  color: var(--home-ink);
  background: #fff;
  border: 1px solid var(--home-line);
}

.home-page .home-validation-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
}

.home-page .gov .home-validation-mark {
  background: rgba(255,255,255,.1);
  color: var(--home-cyan);
}

.home-page .media .home-validation-mark {
  background: #f1f3f7;
  color: #d52929;
}

.home-page .home-validation-card h3 {
  max-width: 540px;
  margin-top: 72px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.home-page .home-validation-card p {
  max-width: 560px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.8;
}

.home-page .gov p { color: rgba(255,255,255,.56); }
.home-page .media p { color: var(--home-muted); }

.home-page .home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
  color: inherit;
  font-size: 13px;
  font-weight: 780;
}

.home-page .home-journey {
  position: relative;
}

.home-page .home-journey-line {
  position: absolute;
  left: 18px;
  top: 12px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, var(--home-blue), rgba(10,104,255,.1));
}

.home-page .home-journey-list {
  margin-top: 56px;
  display: grid;
  gap: 0;
}

.home-page .home-journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 32px;
  padding: 0 0 48px;
}

.home-page .home-journey-dot {
  position: relative;
  z-index: 2;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--home-blue);
  box-shadow: 0 0 0 8px rgba(10,104,255,.09);
  font-size: 10px;
  font-weight: 800;
}

.home-page .home-journey-content {
  padding-top: 4px;
  max-width: 760px;
}

.home-page .home-journey-content span {
  color: var(--home-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-page .home-journey-content h3 {
  margin-top: 7px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.home-page .home-journey-content p {
  margin-top: 9px;
  color: var(--home-muted);
  line-height: 1.7;
}

.home-page .home-cta-section {
  padding: 54px 0 110px;
}

.home-page .home-cta {
  position: relative;
  overflow: hidden;
  padding: 72px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(102,215,255,.25), transparent 24%),
    linear-gradient(140deg, #081321, #102a4b);
}

.home-page .home-cta::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: -250px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
}

.home-page .home-cta h2 {
  position: relative;
  z-index: 2;
  max-width: 880px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: .97;
  letter-spacing: -.05em;
}

.home-page .home-cta p {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255,255,255,.58);
  font-size: 17px;
  line-height: 1.7;
}

.home-page .home-cta .home-btn-primary {
  position: relative;
  z-index: 2;
  margin-top: 32px;
}

.home-page .home-footer {
  padding: 70px 0 32px;
  color: #fff;
  background: #050b13;
}

.home-page .home-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, .75fr);
  gap: 48px;
}

.home-page .home-footer-brand img {
  width: 150px;
}

.home-page .home-footer-brand p {
  max-width: 360px;
  margin-top: 20px;
  color: rgba(255,255,255,.48);
  font-size: 13px;
  line-height: 1.8;
}

.home-page .home-footer h4 {
  margin-bottom: 16px;
  color: rgba(255,255,255,.95);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-page .home-footer-links {
  display: grid;
  gap: 11px;
}

.home-page .home-footer-links a,
.home-page .home-footer-links span {
  color: rgba(255,255,255,.48);
  font-size: 13px;
  line-height: 1.6;
}

.home-page .home-footer-links a:hover { color: #fff; }

.home-page .home-footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.32);
  font-size: 11px;
}

@media (max-width: 1080px) {
  .home-page .home-hero-grid,
  .home-page .home-product-grid,
  .home-page .home-section-intro {
    grid-template-columns: 1fr;
  }

  .home-page .home-hero-grid { gap: 30px; }
  .home-page .home-system { min-height: 520px; max-width: 700px; width: 100%; margin-inline: auto; }
  .home-page .home-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .home-page .home-proof-item:nth-child(2) { border-right: 0; }
  .home-page .home-proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--home-line); }
  .home-page .home-focus-grid { grid-template-columns: 1fr; }
  .home-page .home-focus-card { min-height: 300px; }
  .home-page .home-focus-card h3 { margin-top: 72px; }
  .home-page .home-product-visual { min-height: 540px; }
  .home-page .home-work-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .home-page .home-case:first-child { grid-column: 1 / -1; grid-row: auto; min-height: 520px; }
  .home-page .home-footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .home-page .home-footer-grid > :last-child { grid-column: 2 / span 2; }
}

@media (max-width: 820px) {
  .home-page .home-shell,
  .home-page .home-nav-inner { width: min(100% - 30px, 1320px); }
  .home-page .home-nav-links { display: none; }
  .home-page .home-mobile-toggle { display: grid; place-items: center; }
  .home-page .home-hero { min-height: auto; padding: 142px 0 100px; }
  .home-page .home-hero-grid { display: block; }
  .home-page .home-system { margin-top: 54px; min-height: 500px; }
  .home-page .system-card-main { inset: 60px 20px auto 0; }
  .home-page .system-card-small { right: 0; bottom: 40px; }
  .home-page .home-section { padding: 92px 0; }
  .home-page .home-section-intro { gap: 36px; }
  .home-page .home-work-header { display: block; }
  .home-page .home-work-header p { margin-top: 22px; }
  .home-page .home-validation-grid { grid-template-columns: 1fr; }
  .home-page .home-cta { padding: 52px 36px; }
  .home-page .home-footer-grid { grid-template-columns: 1fr 1fr; }
  .home-page .home-footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  .home-page .home-display { font-size: clamp(3.2rem, 17vw, 5.5rem); }
  html[lang="en"] .home-page .home-display { font-size: clamp(2.7rem, 13.5vw, 4.4rem); line-height: .98; }
  .home-page .home-title { font-size: clamp(2.2rem, 12vw, 3.6rem); }
  .home-page .home-hero { padding-top: 128px; }
  .home-page .home-hero-actions { display: grid; }
  .home-page .home-btn-primary,
  .home-page .home-btn-secondary { width: 100%; }
  .home-page .home-system { min-height: 430px; }
  .home-page .system-orbit { inset: 30px -120px 30px 30px; }
  .home-page .system-card-main { inset: 42px 0 auto 0; padding: 18px; min-height: 300px; }
  .home-page .system-card-small { display: none; }
  .home-page .system-step { grid-template-columns: 36px 1fr; }
  .home-page .system-step-state { display: none; }
  .home-page .system-step-icon { width: 36px; height: 36px; }
  .home-page .home-proof { margin-top: -26px; }
  .home-page .home-proof-grid { grid-template-columns: 1fr; border-radius: 20px; }
  .home-page .home-proof-item { border-right: 0 !important; border-bottom: 1px solid var(--home-line); padding: 21px 22px; }
  .home-page .home-proof-item:last-child { border-bottom: 0; }
  .home-page .home-focus-card { padding: 28px; }
  .home-page .home-product { border-radius: 26px; }
  .home-page .home-product-copy { padding: 46px 28px; }
  .home-page .home-product-visual { min-height: 380px; padding: 28px 0 28px 20px; }
  .home-page .home-product-visual img { width: 132%; border-radius: 16px 0 0 16px; }
  .home-page .home-work-grid { grid-template-columns: 1fr; }
  .home-page .home-case:first-child { grid-column: auto; min-height: 410px; }
  .home-page .home-case { min-height: 330px; border-radius: 24px; }
  .home-page .home-case-meta { display: block; }
  .home-page .home-case-badge { margin-top: 12px; width: fit-content; }
  .home-page .home-validation-card { padding: 30px; min-height: 330px; }
  .home-page .home-validation-card h3 { margin-top: 52px; }
  .home-page .home-journey-item { grid-template-columns: 58px 1fr; gap: 14px; }
  .home-page .home-journey-line { left: 18px; }
  .home-page .home-cta { padding: 44px 26px; border-radius: 26px; }
  .home-page .home-footer-grid { grid-template-columns: 1fr; }
  .home-page .home-footer-bottom { display: block; }
  .home-page .home-footer-bottom span { display: block; margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
