/* diaspora.ro homepage — single active source of truth.
   Base homepage styles, card layers, and responsive refinements are consolidated here.
   No cascade patches or priority overrides. */


/* Source: homepage.css */
/*
 * diaspora.ro — homepage.css v6
 * Redesign Desktop: editorial curat, fond alb, fără elemente copilărești.
 * Mobile & tablet: neatins.
 */

/* ═══════════════════════════════════════════════════════
   1. CLOCKBAR
   ═══════════════════════════════════════════════════════ */
.clockbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 20px;
  background: #ffffff;
  border-bottom: 1px solid #f0f2f5;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: .05em;
  position: relative;
  overflow: hidden;
  z-index: 98;
}
.clockbar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1877F2 0%, #6366F1 35%, #EC4899 65%, #1877F2 100%);
  background-size: 200% 100%;
  animation: clockbarShimmer 6s linear infinite;
}
@keyframes clockbarShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
#hud-clock { font-variant-numeric: tabular-nums; }
@media (max-width: 900px) { .clockbar { display: none; } }


/* ═══════════════════════════════════════════════════════
   2. MOBILE + TABLET — neatins (max-width: 1000px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .hero.hero-compact {
    padding: 16px 0 8px;
    gap: 12px;
    margin-bottom: 16px;
  }
  .hero.hero-compact .hero-compact-bar {
    padding: 20px 18px;
    border-radius: 18px;
    gap: 14px;
  }
  .hero.hero-compact .hero-compact-h1 {
    font-size: clamp(22px, 6vw, 34px);
  }
  .hero.hero-compact .hero-compact-sub {
    font-size: 14px;
  }
}


/* ═══════════════════════════════════════════════════════
   3. DESKTOP — layout corect (min-width: 1001px)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 1001px) {

  body { background: #FFFFFF; }
  body::before { display: none; }

  .main {
    max-width: 1280px;
    padding: 0 52px 80px;
  }

  /* ───────────────────────────────────────────────────────
     HERO: hero-compact-bar devine grid 2 coloane
     Col 1 (stânga): geo badge + titlu + CTA
     Col 2 (dreapta): search + quick tags
     Stats: rând separat dedesubt (rămâne cum e)
  ─────────────────────────────────────────────────────── */
  .hero.hero-compact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px 0 0;
    margin-bottom: 24px;
  }
  .hero.hero-compact::before { display: none; }
  .hero.hero-compact::after  { display: none; }

  /* hero-compact-bar — grid 2 col */
  .hero.hero-compact .hero-compact-bar {
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-template-rows: auto auto;
    column-gap: 48px;
    row-gap: 0;
    align-items: start;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
    transform: none;
    transition: none;
  }
  .hero.hero-compact .hero-compact-bar:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
    border-color: transparent;
  }

  /* Geo badge — col 1, rând 1 */
  .hero.hero-compact .hero-geo {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 12px;
  }

  /* Text wrap (h1 + sub + CTA) — col 1, rând 2 */
  .hero.hero-compact .hero-compact-txt-wrap {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  /* H1 */
  .hero.hero-compact .hero-compact-h1 {
    font-size: clamp(34px, 3.5vw, 50px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -.03em;
    margin: 0;
    color: var(--text);
  }

  /* Subtitlu */
  .hero.hero-compact .hero-compact-sub {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
  }

  /* CTA */
  .hero.hero-compact .hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero.hero-compact .hero-cta-btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
  }
  .hero.hero-compact .hero-trust {
    font-size: 13px;
    color: var(--text3);
  }

  /* Search wrap — col 2, ambele rânduri */
  .hero.hero-compact .hero-compact-search-wrap {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
  }

  /* Search input */
  .hero.hero-compact .hero-search {
    border-radius: 10px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    display: flex;
  }
  .hero.hero-compact .hero-search:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(24,119,242,.15);
  }
  .hero.hero-compact .hero-search input {
    font-size: 14px;
    padding: 11px 14px;
  }
  .hero.hero-compact .hero-search button {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
  }

  /* Quick tags */
  .hero.hero-compact .hero-quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }
  .hero.hero-compact .hqt {
    padding: 6px 13px;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 8px;
    background: var(--bg2);
    color: var(--text2);
    border: 1px solid var(--border);
    transition: all .12s;
  }
  .hero.hero-compact .hqt:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
  }


}
/* ═══════════════════════════════════════════════════════
   END desktop
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   HERO STAT CARDS — single source of truth
   This is the only stylesheet definition for the four first-hero cards.
   The desktop values remain the existing desktop design; mobile has equal tracks.
   ═══════════════════════════════════════════════════════════════════ */

.stats-live {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.stat-live {
  align-self: stretch;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  padding: 13px 14px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid rgba(0,0,0,.10);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s, border-color .28s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.stat-live::after { display: none; }
.stat-live:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

.stat-live.cp { border-color: #dfe5ee; background: linear-gradient(155deg,#fff 0%,#EFF6FF 100%); }
.stat-live.cb { border-color: #dfe5ee; background: linear-gradient(155deg,#fff 0%,#F0FDF4 100%); }
.stat-live.cg { border-color: #dfe5ee; background: linear-gradient(155deg,#fff 0%,#FFFBEB 100%); }
.stat-live.cn { border-color: #dfe5ee; background: linear-gradient(155deg,#fff 0%,#F5F3FF 100%); }
.stat-stiaiCA { display: flex; flex-direction: column; }

.stat-live.cp:hover,
.stat-live.cb:hover,
.stat-live.cg:hover,
.stat-live.cn:hover {
  border-color: #cfd8e6;
  box-shadow: 0 10px 28px rgba(15,23,42,.12);
}

.stat-v { font-size: 24px; font-weight: 900; letter-spacing: -.04em; line-height: 1; margin-bottom: 3px; }
.stat-l { font-size: 11px; font-weight: 700; color: #374151; letter-spacing: .05em; text-transform: uppercase; }
.stat-t { font-size: 11px; margin-top: 3px; font-weight: 600; }
.stat-sub { font-size: 12px; color: #4B5563; font-weight: 500; margin-top: 7px; padding-top: 6px; border-top: 1px solid rgba(0,0,0,.07); line-height: 1.55; }
.stat-valuta .stat-v { font-size: 18px; letter-spacing: -.02em; }
#val-extra { white-space: normal; line-height: 1.9; font-size: 12px; font-weight: 600; font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji","Plus Jakarta Sans",sans-serif; }
.stat-v-purple { background: linear-gradient(135deg,#6366F1,#818CF8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.cp .stat-v { color: #1877F2; }
.cp .stat-t { color: #1877F2; }
.cb .stat-v { color: #16A34A; }
.cb .stat-t { color: #16A34A; }
.cg .stat-v { color: #D97706; }
.cg .stat-t { color: #D97706; }
.cn .stat-v { color: #6366F1; }
.cn .stat-t { color: #6366F1; }

/* Country flags and text rows — unchanged visual treatment, one definition. */
.stats-live .hero-country-flag {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  flex: 0 0 32px;
  display: block;
  object-fit: contain;
  margin: 0;
  padding: 0;
  border-radius: 7px;
  box-shadow: 0 1px 4px rgba(15,23,42,.18);
}
.stats-live > .stat.cp .stat-sub,
.stats-live > .stat.cb .stat-sub {
  align-items: center;
  text-align: center;
}
.stats-live > .stat.cp .stat-sub > div,
.stats-live > .stat.cb .stat-sub > div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  justify-content: stretch;
  column-gap: 7px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.stats-live > .stat.cp .stat-sub > div > .hero-country-flag,
.stats-live > .stat.cb .stat-sub > div > .hero-country-flag {
  justify-self: start;
}
.stats-live > .stat.cp .stat-sub > div > span,
.stats-live > .stat.cb .stat-sub > div > span {
  display: block;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  text-align: left;
  line-height: 1.25;
}

/* Currency card internals. */
.stat-valuta #val-extra {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
  line-height: 1.15;
}
.stat-valuta .hero-currency-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  min-height: 78px;
  padding: 6px 3px;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  border: 1px solid rgba(217,119,6,.14);
  border-radius: 8px;
}
.stat-valuta .hero-currency-row .hero-country-flag {
  margin: 0;
}
.stat-valuta .hero-currency-row strong,
.stat-valuta .hero-currency-row .hero-currency-value {
  display: block;
  width: 100%;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  line-height: 1.15;
}
.stat-valuta .hero-currency-row strong { font-size: 10px; color: #92400E; }
.stat-valuta .hero-currency-value { font-size: 10px; font-weight: 700; color: #78350F; }

/* Tablet. */
@media (min-width: 600px) and (max-width: 1000px) {
  .stats-live { gap: 10px; }
  .stat-live { padding: 14px 16px; }
  .stat-v { font-size: 26px; }
  .stat-valuta .stat-v { font-size: 20px; }
  .stat-sub { font-size: 12.5px; }
}

/* Desktop — the existing desktop composition, isolated from mobile. */
@media (min-width: 1001px) {
  .stats-live {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 4px;
    background: none;
    border: none;
    border-radius: 0;
  }
  .stat-live {
    padding: 20px;
    border-radius: 14px;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
  }
  .stat-live:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,.10); }
  .stat-v { font-size: 28px; font-weight: 900; line-height: 1.1; letter-spacing: -.06em; margin-bottom: 5px; }
  .stat-l { font-size: 11px; }
  .stat-t { font-size: 11px; margin-top: 4px; }
  .stat-sub { font-size: 13.5px; margin-top: 10px; padding-top: 8px; line-height: 1.65; width: 100%; font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji","Plus Jakarta Sans",system-ui,sans-serif; }
  .stat-valuta .stat-v { font-size: 22px; }
}

/* Mobile — equal two-row tracks. This is the only mobile card sizing rule. */
@media (max-width: 599px) {
  .stats-live { grid-template-rows: repeat(2, 280px); }
  .stats-live > .stat-live { align-self: stretch; height: 100%; }
  .stats-live > .stat.cp .stat-sub > div,
  .stats-live > .stat.cb .stat-sub > div {
    grid-template-columns: 30px minmax(0, 1fr);
    column-gap: 6px;
  }
  .stats-live > .stat.cp .stat-sub > div > .hero-country-flag,
  .stats-live > .stat.cb .stat-sub > div > .hero-country-flag {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }
  .stats-live > .stat.cp .stat-sub > div > span,
  .stats-live > .stat.cb .stat-sub > div > span {
    font-size: 11px;
    line-height: 1.2;
  }
  .stat-valuta #val-extra { gap: 5px; }
  .stat-valuta .hero-currency-row { min-height: 72px; padding: 4px 1px; }
  .stat-valuta .hero-currency-row .hero-country-flag {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    flex-basis: 28px;
  }
  .stat-valuta .hero-currency-row strong,
  .stat-valuta .hero-currency-value { font-size: 9px; }
}

/* Dark mode. */
html[data-theme=dark] .stat-live { background: #242526; border-color: #3A3B3C; }
html[data-theme=dark] .stat-live.cp { background: linear-gradient(155deg,#1a1a2e 0%,#16213e 100%); }
html[data-theme=dark] .stat-live.cb { background: linear-gradient(155deg,#1a1a2e 0%,#0a2818 100%); }
html[data-theme=dark] .stat-live.cg { background: linear-gradient(155deg,#1a1a2e 0%,#2a1a00 100%); }
html[data-theme=dark] .stat-live.cn { background: linear-gradient(155deg,#1a1a2e 0%,#1a0a2e 100%); }
html[data-theme=dark] .stat-l { color: #B0B3B8; }
html[data-theme=dark] .stat-sub { color: #9CA3AF; border-top-color: rgba(255,255,255,.08); }


/* Source: homepage-polish-clean.css */
/* Homepage visual system. One source of truth for hero and quick-access cards. */
.hero.hero-compact .hero-compact-bar {
  box-sizing: border-box;
  width: 100%;
  padding: 52px clamp(28px, 5vw, 74px);
  border: 1px solid rgba(99, 102, 241, .18);
  border-radius: 30px;
  background: linear-gradient(115deg, #f8fbff 0%, #ffffff 48%, #f6f3ff 100%);
  box-shadow: 0 20px 58px rgba(37, 71, 130, .13), 0 0 0 1px rgba(255, 255, 255, .8) inset;
}
.hero.hero-compact .hero-compact-bar > .hero-geo { margin: 0; padding: 7px 13px; border-color: #c9dbff; background: #eef4ff; color: #2457b8; }
.hero.hero-compact .hero-compact-h1 { margin: 0 0 8px; }
.hero.hero-compact .hero-compact-sub { max-width: 620px; }

.home-intent { position: relative; width: 100%; box-sizing: border-box; margin: 0 0 24px; padding: 26px 28px 28px; border: 1px solid rgba(99,102,241,.18); border-radius: 24px; overflow: hidden; background: radial-gradient(circle at 0% 0%, rgba(37,99,235,.11), transparent 42%), radial-gradient(circle at 100% 100%, rgba(124,58,237,.10), transparent 45%), rgba(255,255,255,.72); box-shadow: 0 12px 34px rgba(30,41,59,.08); }
.home-intent__head { position: relative; z-index: 1; display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.home-intent__eyebrow { color: #4f46e5; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.home-intent h2 { margin: 0; color: #0f172a; font-size: 23px; letter-spacing: -.045em; }
@media (max-width: 900px) {
  .hero.hero-compact .hero-compact-bar { display: grid; grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 12px; }
  .hero.hero-compact .hero-compact-txt-wrap { display: flex; flex-direction: column; min-width: 0; }
  .hero.hero-compact .hero-compact-search-wrap { width: 100%; min-width: 0; }
  .hero.hero-compact .hero-compact-h1 { white-space: normal; overflow: visible; text-overflow: clip; }
}
@media (max-width: 560px) {
  .hero.hero-compact { padding: 14px 0 0; margin-bottom: 22px; }
  .hero.hero-compact .hero-compact-bar { padding: 26px 18px 22px; border-radius: 24px; gap: 12px; }
  .hero.hero-compact .hero-compact-h1 { max-width: 100%; font-size: clamp(27px, 8.4vw, 34px); line-height: 1.04; white-space: normal; overflow: visible; text-overflow: clip; }
  .hero.hero-compact .hero-compact-sub { font-size: 14px; line-height: 1.5; }
  .home-intent { margin-bottom: 20px; padding: 24px 16px 20px; border-radius: 22px; }
  .home-intent__head { display: block; margin-bottom: 16px; }
  .home-intent h2 { margin-top: 5px; font-size: 24px; }
}

/* Homepage mobile polish: compact header controls and full-width search. */
@media (max-width: 900px) {
  .site-header-stack .topbar { gap: 5px ; }
  .site-header-stack .tb-right { margin-left: auto ; margin-right: 0 ; }
  .site-header-stack .site-menu-trigger { margin-left: 0 ; }
}
@media (max-width: 640px) {
  .site-header-stack .topbar { gap: 6px ; padding-left: 12px ; padding-right: 12px ; }
  .site-header-stack .tb-live { display: none  ; }
  .site-header-stack .tb-logo-txt { display: block ; }
  .site-header-stack .tb-user-menu { gap: 0 ; }
  .site-header-stack .tb-user-menu > .tb-profile-link { margin-right: 0 ; }
  .site-header-stack .tb-right { gap: 5px ; margin-left: auto ; }
  .site-header-stack .tb-right .btn-reg { display: none ; }
  .site-header-stack .tb-right .btn-in { padding-left: 9px ; padding-right: 9px ; font-size: 11px ; white-space: nowrap ; }
  .site-header-stack .site-menu-trigger { margin-left: 0 ; padding-left: 10px ; padding-right: 10px ; }
  .hero.hero-compact .hero-compact-search-wrap {
    width: 100% ;
    min-width: 0 ;
    align-self: stretch ;
    box-sizing: border-box ;
  }
  .hero.hero-compact .hero-search {
    width: 100% ;
    max-width: none ;
    box-sizing: border-box ;
  }
}
/* Mobile correction: the search fills the hero card. */
@media (max-width: 900px) {
  .hero.hero-compact .hero-compact-search-wrap {
    width: 100% ;
    max-width: none ;
    min-width: 0 ;
    align-self: stretch ;
  }
  .hero.hero-compact .hero-search {
    width: 100% ;
    max-width: none ;
    box-sizing: border-box ;
  }
}

/* Mobile final sizing: the search row stays as wide as the hero card. */
@media (max-width: 900px) {
  .hero.hero-compact .hero-compact-bar,
  .hero.hero-compact .hero-compact-search-wrap,
  .hero.hero-compact .hero-search {
    width: 100% ;
    max-width: none ;
    box-sizing: border-box ;
  }
  .hero.hero-compact .hero-search input {
    flex: 1 1 auto ;
    min-width: 0 ;
  }
}

/* Enclose the guide heading so it reads as a deliberate section header. */
.return-relocation__intro{padding:18px 20px;border:1px solid rgba(99,102,241,.16);border-radius:18px;background:rgba(255,255,255,.72);box-shadow:0 8px 22px rgba(30,41,59,.05)}
/* Variante discrete: fiecare card pornește din alb, dar nu repetă aceeași tranziție. */
.stats.stats-live > .stat-live:nth-child(1) { background: linear-gradient(142deg, rgba(255,255,255,.98) 0%, rgba(248,247,255,.82) 58%, rgba(232,236,255,.58) 100%) ; }
.stats.stats-live > .stat-live:nth-child(2) { background: linear-gradient(158deg, rgba(255,255,255,.98) 0%, rgba(246,249,255,.78) 52%, rgba(231,240,255,.52) 100%) ; }
.stats.stats-live > .stat-live:nth-child(3) { background: linear-gradient(128deg, rgba(255,255,255,.98) 0%, rgba(250,247,255,.8) 61%, rgba(239,232,255,.55) 100%) ; }
.stats.stats-live > .stat-live:nth-child(4) { background: linear-gradient(166deg, rgba(255,255,255,.98) 0%, rgba(247,250,255,.8) 56%, rgba(232,238,255,.56) 100%) ; }


/* Source: homepage-refinement-20260908.css */
/*
 * diaspora.ro homepage refinement
 * Visual continuity, hamburger account surface, mobile card rhythm and Melissa launcher.
 * This file is intentionally isolated from the structural homepage styles.
 */

.homepage-body {
  position: relative;
  isolation: isolate;
  background: #e9eef7 ;
}

.homepage-body::before {
  display: none ;
}

.homepage-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

.homepage-ambient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(107, 174, 255, .18) 0 3%, transparent 12%),
    radial-gradient(circle at 32% 30%, rgba(183, 144, 255, .16) 0 3%, transparent 13%),
    radial-gradient(circle at 59% 13%, rgba(87, 215, 190, .15) 0 4%, transparent 15%),
    radial-gradient(circle at 89% 34%, rgba(255, 176, 146, .14) 0 3%, transparent 13%),
    radial-gradient(circle at 42% 74%, rgba(204, 151, 255, .13) 0 3%, transparent 14%),
    radial-gradient(circle at 75% 68%, rgba(255, 211, 112, .12) 0 2%, transparent 10%);
  opacity: .9;
}

.homepage-ambient__orb {
  position: absolute;
  display: block;
  width: clamp(42px, 7vw, 108px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 50%;
  box-shadow:
    inset -14px -16px 26px rgba(255,255,255,.18),
    inset 10px 10px 22px rgba(255,255,255,.22),
    0 16px 34px rgba(54,75,150,.12);
  opacity: .42;
  filter: blur(.2px);
  animation: homepageAmbientOrbFloat 14s ease-in-out infinite alternate;
}

.homepage-ambient__orb--blue { left: 7%; top: 12%; background: rgba(83,156,255,.34); }
.homepage-ambient__orb--violet { left: 27%; top: 29%; width: clamp(34px, 5vw, 82px); background: rgba(151,118,255,.28); animation-delay: -2s; }
.homepage-ambient__orb--mint { left: 53%; top: 9%; width: clamp(56px, 8vw, 130px); background: rgba(73,211,174,.25); animation-delay: -4s; }
.homepage-ambient__orb--peach { right: 10%; top: 32%; width: clamp(38px, 6vw, 96px); background: rgba(255,174,130,.26); animation-delay: -6s; }
.homepage-ambient__orb--sky { left: 71%; top: 5%; width: clamp(28px, 4vw, 70px); background: rgba(82,197,255,.25); animation-delay: -8s; }
.homepage-ambient__orb--lilac { left: 41%; top: 59%; width: clamp(32px, 5vw, 78px); background: rgba(205,143,255,.24); animation-delay: -10s; }
.homepage-ambient__orb--gold { right: 27%; top: 64%; width: clamp(25px, 4vw, 62px); background: rgba(255,210,104,.27); animation-delay: -12s; }

@keyframes homepageAmbientOrbFloat {
  from { transform: translate3d(-8px, 7px, 0) scale(.96); }
  to { transform: translate3d(12px, -12px, 0) scale(1.06); }
}

.homepage-body .site-header-stack,
.homepage-body .main,
.homepage-body .footer {
  position: relative;
  z-index: 1;
}

@media (min-width: 901px) {
  .homepage-body { background: #f3f5f8 ; }
  .homepage-ambient::before { opacity: .42 ; }
  .homepage-ambient__orb { opacity: .22 ; }
}

/* The menu owns both account surfaces. The header keeps only navigation and auth entry actions. */
.homepage-body .site-menu__account {
  display: grid;
  gap: 10px;
  padding: 16px 0 6px;
  border-bottom: 1px solid #e6eaf1;
}

.homepage-body .site-menu__hub-entry,
.homepage-body .site-menu__profile {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #dfe5ff;
  border-radius: 15px;
  background: rgba(248,250,255,.88);
  box-shadow: 0 6px 16px rgba(15,23,42,.07);
  overflow: hidden;
}

.homepage-body .site-menu__hub-entry {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: #172033;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.homepage-body .site-menu__hub-entry:hover,
.homepage-body .site-menu__hub-entry:focus-visible {
  border-color: #a5b4fc;
  background: #eef2ff;
  box-shadow: 0 9px 20px rgba(79,70,229,.13);
  outline: none;
  transform: translateY(-1px);
}

/* GPS must stay inside the same account card at every viewport width. */
.homepage-body .site-menu__chat-entry {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 13px 14px;
  overflow: hidden;
}
.homepage-body .site-menu__chat-copy {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.homepage-body .site-menu__chat-copy span,
.homepage-body .site-menu__chat-copy strong {
  overflow-wrap: anywhere;
}

.homepage-body .site-menu__hub-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(124,58,237,.35);
  border-radius: 11px;
  background: linear-gradient(145deg,#f3efff,#e0e7ff);
  color: #6d28d9;
  font: 800 9px/1.05 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .08em;
}

.homepage-body .site-menu__hub-copy,
.homepage-body .site-menu__profile-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.homepage-body .site-menu__hub-copy strong,
.homepage-body .site-menu__profile-name {
  color: #172033;
  font-size: 14px;
  line-height: 1.2;
}

.homepage-body .site-menu__hub-copy span,
.homepage-body .site-menu__profile-email {
  color: #64748b;
  font-size: 11px;
  line-height: 1.35;
}

.homepage-body .site-menu__profile > a {
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  width: 100%;
  padding: 12px;
  color: inherit;
  text-decoration: none;
  transition: background .18s ease, box-shadow .18s ease;
}

.homepage-body .site-menu__profile > a:hover,
.homepage-body .site-menu__profile > a:focus-visible {
  background: rgba(129,140,248,.12);
  box-shadow: inset 0 0 0 2px rgba(99,102,241,.16);
  outline: none;
}

.homepage-body .site-menu__profile-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 12px;
}

.homepage-body .site-menu__profile-row > a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
  padding: 4px 0;
  color: inherit;
  text-decoration: none;
}

.homepage-body .site-menu__profile-row > a:hover,
.homepage-body .site-menu__profile-row > a:focus-visible {
  outline: none;
}

.homepage-body .site-menu__profile-row .site-menu__logout {
  flex: 0 0 auto;
  white-space: nowrap;
}

.homepage-body .site-menu__profile-avatar.mh-ava {
  display: inline-flex;
  position: relative;
  width: 42px ;
  height: 42px ;
  min-width: 42px;
  min-height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(99,102,241,.28);
  border-radius: 12px;
  background: linear-gradient(135deg,#6366f1,#7c3aed);
  box-shadow: 0 3px 9px rgba(15,23,42,.16);
}

.homepage-body .site-menu__profile-avatar.mh-ava img,
.homepage-body .site-menu__profile-avatar.mh-ava .mh-avatar-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% ;
  height: 100% ;
  max-width: none ;
  max-height: none ;
  border-radius: 11px;
  object-fit: cover;
}


/* Melissa launcher geometry stays here; layer and collision visibility belong to Melissa's source. */
.homepage-body #melissa-mobile-pro-fab {
  position: fixed ;
  display: flex ;
}

.homepage-body #melissa-mobile-pro-fab .mel-anna-orb {
  animation: melOrbGrad 4s ease infinite, melissaHomepageFloat 4.8s ease-in-out infinite;
}

@keyframes melissaHomepageFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -5px; }
}

/* The four compact homepage cards read as balanced pairs on small screens. */
@media (max-width: 640px) {
  .homepage-body .main .home-intent__grid.home-intent__grid--onboarding {
    grid-template-columns: repeat(2, minmax(0, 1fr)) ;
    gap: 10px ;
  }


  .homepage-body .main .stat-combined .stat-v {
    font-size: 23px ;
  }

  .homepage-body .main .stat-combined .stat-l,
  .homepage-body .main .stat-combined .stat-t,
  .homepage-body .main .stat-combined__currency-title {
    font-size: 9px ;
  }

  .homepage-ambient {
    position: absolute;
    min-height: 100%;
    background-attachment: scroll;
  }
}


@media (prefers-reduced-motion: reduce) {
  .homepage-ambient__orb,
  .homepage-body #melissa-mobile-pro-fab .mel-anna-orb {
    animation: none ;
  }
}

/* The compact hero and its orientation cards remain visible. */


/* White copy belongs on the dark editorial surfaces, with lighter weights. */
.homepage-body .home-showcase-slide,
.homepage-body .home-showcase-slide__copy {
  background: linear-gradient(135deg, #172554 0%, #293f7b 100%) ;
  border-color: rgba(255,255,255,.22) ;
}
.homepage-body .home-showcase-slide__copy h3,
.homepage-body .home-showcase-slide__copy p,
.homepage-body .home-showcase__intro h2,
.homepage-body .home-showcase__intro p,
.homepage-body .home-showcase__intro .home-showcase__eyebrow {
  color: #fff ;
  -webkit-text-fill-color: #fff ;
}
.homepage-body .home-showcase-slide__copy h3 { font-weight: 400 ; }
.homepage-body .home-showcase-slide__copy p,
.homepage-body .home-showcase__intro p { font-weight: 400 ; }
.homepage-body .return-relocation__card h3 { font-weight: 500 ; }

/* Keep the existing footer copy palette except for the requested black labels. */
.homepage-body .footer .footer-col-t,
.homepage-body .footer .footer-app-branding strong,
.homepage-body .footer .fcopy,
.homepage-body .footer .fcopy strong {
  color: #000 ;
  -webkit-text-fill-color: #000 ;
}

/* Desktop only: keep the hamburger at the far right of the top bar. */
@media (min-width: 901px) {
  .homepage-body .site-header-stack .topbar > .site-menu-trigger {
    order: 99 ;
    margin-left: auto ;
    flex: 0 0 auto ;
  }
}

/* Homepage night-state correction 20260907 */
html[data-atmosphere-level="dark"] body.homepage-body,
html[data-atmosphere-level="dark"] body.homepage-body .main {
  background: #111827 ;
  background-color: #111827 ;
  background-image: none ;
  color: #f8fafc ;
}


/* Source: previously consolidated homepage layers. */
/* Consolidated from #agent-footer-light-theme. */
/* Footer follows the homepage surface: white, airy, and using the same indigo/blue language. */
.footer {
  background: #ffffff ;
  color: #172033 ;
  border-top: 1px solid #E3E8F2;
  box-shadow: 0 -8px 26px rgba(30,41,59,.04);
}
.footer::before {
  height: 3px;
  background: linear-gradient(90deg,#2563EB 0%,#4F46E5 34%,#0F766E 68%,#F59E0B 100%);
}
.footer-brand-logo,
.footer-brand-logo span { color: #172033 ; }
.footer-brand-sub { color: #64748B ; }
.footer-col-t { color: #172033 ; }
.footer-col-links a { color: #526176 ; }
.footer-col-links a:hover { color: #4338CA ; }
.footer-col-t::after { color: #6366F1 ; }
.footer-bottom { border-top: 1px solid #E8ECF4; }
.flinks a { color: #526176 ; }
.flinks a:hover { color: #4338CA ; }
.fcopy { color: #64748B ; }
.footer-soc-btn { border-color: #E3E8F2 ; box-shadow: 0 3px 10px rgba(30,41,59,.08); }
.footer-soc-btn:hover { opacity: .88; box-shadow: 0 7px 16px rgba(30,41,59,.12); }
.store-badge-svg { box-shadow: 0 4px 14px rgba(30,41,59,.12); }
@media (max-width: 768px) {
  .footer-col-t { border-top: 1px solid #E8ECF4; }
  .footer-col-links { background: rgba(255,255,255,.72); }
  .footer { padding-bottom: 16px; }
}


/* Consolidated from #agent-homepage-showcase-polish. */
/* Four top cards: compact but content-rich on mobile. */
.stats.stats-live { align-items: stretch; }
.stat-stiaiCA { display: flex; flex-direction: column; justify-content: flex-start; }
.stat-fact-kicker {
  margin: 0 0 7px;
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(23px, 2.15vw, 30px);
  font-weight: 400;
  letter-spacing: .018em;
  line-height: 1;
  color: #4338CA ;
}
.stat-fact-question {
  color: #172033;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  margin-bottom: 6px;
}
.stat-stiaiCA .stat-fact-copy {
  display: block ;
  min-height: 0 ;
  flex: 1 1 auto ;
  margin: 0 ;
  padding: 9px 2px 7px ;
  border-top: 1px solid rgba(99,102,241,.15) ;
  color: #596579 ;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12.5px ;
  font-weight: 400 ;
  line-height: 1.52 ;
  white-space: normal ;
}
.stat-fact-button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  margin-top: auto;
  padding: 7px 13px;
  border: 1px solid rgba(99,102,241,.18);
  border-radius: 999px;
  background: #EEF2FF;
  color: #4338CA;
  font: 750 11px/1.1 Inter, system-ui, sans-serif;
  cursor: pointer;
  transition: background .18s, transform .18s, border-color .18s;
}
.stat-fact-button:hover { background: #E0E7FF; border-color: #A5B4FC; transform: translateY(-1px); }

/* Large editorial panels inspired by the supplied reference structure. */
.home-showcase { position: relative; margin: 0 0 42px; padding: 36px 0 4px; }
.home-showcase::before { content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(99,102,241,.25), transparent); }
.home-showcase__intro { max-width: 760px; margin: 0 auto 25px; text-align: center; }
.home-showcase__eyebrow, .home-showcase-slide__eyebrow { display: inline-block; color: #4F46E5; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.home-showcase__intro h2 { margin: 9px 0 0; color: #0F172A; font-size: clamp(29px, 4vw, 48px); line-height: 1.04; letter-spacing: -.055em; }
.home-showcase__intro p { max-width: 650px; margin: 13px auto 0; color: #64748B; font-size: 15px; line-height: 1.65; }
.home-showcase__slides { position: relative; width: 100%; height: 430px; }
.home-showcase-slide { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); height: 430px; min-height: 430px; overflow: hidden; border: 1px solid #E3E8F2; border-radius: 26px; background: #fff; box-shadow: 0 16px 40px rgba(30,41,59,.09); }
.home-showcase-slide[hidden] { display: none; }
.home-showcase-slide__copy { display: flex; min-height: 0; overflow: hidden; flex-direction: column; justify-content: flex-start; padding: clamp(30px, 5vw, 72px); background: linear-gradient(145deg,#FFFFFF 0%,#F7F8FF 100%); }
.home-showcase-slide__eyebrow { margin-bottom: 14px; }
.home-showcase-slide__copy h3 { display: -webkit-box; max-width: 520px; margin: 0; overflow: hidden; color: #172033; font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif; font-size: clamp(36px, 4.4vw, 64px); font-weight: 500; line-height: .98; letter-spacing: -.035em; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.home-showcase-slide__copy p { display: -webkit-box; max-width: 500px; margin: 22px 0 28px; overflow: hidden; color: #526176; font-size: 15px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.home-showcase-slide__action { display: inline-flex; align-items: center; align-self: center; justify-content: center; width: min(100%, 230px); min-height: 44px; box-sizing: border-box; gap: 10px; white-space: nowrap; padding: 10px 16px; border-radius: 10px; background: linear-gradient(135deg,#2563EB,#4F46E5); color: #fff; font-size: 13px; font-weight: 850; text-decoration: none; box-shadow: 0 7px 18px rgba(79,70,229,.25); transition: transform .18s, box-shadow .18s; }
.home-showcase-slide__action:hover { transform: translateY(-2px); box-shadow: 0 11px 24px rgba(79,70,229,.32); }
.home-showcase-slide__action b { font-size: 18px; font-weight: 400; line-height: 1; }
.home-showcase-slide__visual { min-height: 430px; overflow: hidden; background: #E8EEF9; }
.home-showcase-slide__visual picture { display: block; width: 100%; height: 100%; min-height: 430px; }
.home-showcase-slide__visual img { display: block; width: 100%; height: 100%; min-height: 430px; object-fit: cover; transition: transform .7s ease; }
.home-showcase-slide:hover .home-showcase-slide__visual img { transform: scale(1.035); }
.home-showcase-slide--image-left .home-showcase-slide__copy { order: 2; }
.home-showcase-slide--image-left .home-showcase-slide__visual { order: 1; }
.home-showcase__dots { display: flex; justify-content: center; gap: 7px; margin-top: 15px; }
.home-showcase__dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #CBD5E1; cursor: pointer; transition: width .2s, border-radius .2s, background .2s; }
.home-showcase__dots button[aria-current="true"] { width: 26px; border-radius: 999px; background: #4F46E5; }
@media (max-width: 900px) {
  .home-showcase__slides { height: 370px; }
  .home-showcase-slide { height: 370px; min-height: 370px; }
  .home-showcase-slide__visual, .home-showcase-slide__visual picture, .home-showcase-slide__visual img { height: 370px; min-height: 370px; }
  .home-showcase-slide__copy { padding: 30px; }
  .home-showcase-slide__copy h3 { font-size: clamp(31px, 5vw, 48px); }
}
@media (max-width: 560px) {
  .stats.stats-live { width: min(100%, 430px); margin-inline: auto; gap: 9px; }
  .stat-live { min-height: 164px; padding: 15px 12px; }
  .stat-live .stat-v { font-size: 25px; }
  .stat-live .stat-l { font-size: 8.5px; line-height: 1.25; }
  .stat-live .stat-t { font-size: 10px; line-height: 1.3; }
  .stat-stiaiCA { min-height: 164px; }
  .stat-fact-kicker { font-size: 22px; }
  .stat-fact-question { font-size: 10.5px; }
  .stat-stiaiCA .stat-fact-copy { font-size: 11.5px ; line-height: 1.42 ; }
  .stat-fact-button { padding: 6px 9px; font-size: 10px; }
  .home-showcase { padding-top: 28px; margin-bottom: 28px; }
  .home-showcase__intro { margin-bottom: 18px; }
  .home-showcase__intro h2 { font-size: 31px; }
  .home-showcase__intro p { font-size: 13px; line-height: 1.55; }
  .home-showcase__slides { height: 556px; }
  .home-showcase-slide { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: 235px minmax(0, 321px); height: 556px; min-height: 556px; border-radius: 21px; }
  .home-showcase-slide__visual, .home-showcase-slide--image-left .home-showcase-slide__visual { grid-row: 1; order: 0; min-height: 235px; height: 235px; }
  .home-showcase-slide__visual picture, .home-showcase-slide__visual img { min-height: 235px; height: 235px; }
  .home-showcase-slide__copy, .home-showcase-slide--image-left .home-showcase-slide__copy { grid-row: 2; order: 0; min-height: 0; padding: 25px 21px 27px; }
  .home-showcase-slide__copy h3 { font-size: 37px; line-height: .98; }
  .home-showcase-slide__copy p { margin: 15px 0 20px; font-size: 13px; line-height: 1.58; }
  .home-showcase-slide__action { width: min(100%, 230px); min-height: 44px; padding: 10px 15px; font-size: 12px; }
}


/* Consolidated from #verifier-homepage-fixes. */
/* Dedicated service illustrations and compact mobile cards. */
.home-showcase-slide__visual img { display:block; width:100%; height:100%; object-fit:cover; }
@media (max-width: 599px) {
  .stats.stats-live { grid-template-rows:none ; grid-auto-rows:auto; align-items:start; }
  .stats.stats-live > .stat-live { height:auto ; min-height:0 ; align-self:start ; }
  .stats.stats-live .stat-stiaiCA { min-height:0 ; }
  .stats.stats-live .stat-fact-kicker { white-space:nowrap; font-size:clamp(19px, 5vw, 24px); letter-spacing:-.035em; line-height:1; }
  .footer-col-t { min-height:52px; height:52px; box-sizing:border-box; padding:0 20px ; align-items:center; line-height:1; }
  .footer-col-t::after { display:flex; align-items:center; justify-content:center; height:22px; line-height:22px; }
  .footer-app-col > .footer-col-links { display:flex; padding:4px 20px 22px; }
}
.footer-app-col > .footer-col-t { display:none; }


/* Consolidated from #title-layout-fixes. */
/* Homepage quick links: six cards on one desktop row, content-led sizing. */
@media (min-width: 901px) {
}


/* Consolidated from #footer-app-socials-refresh. */
.footer-brand{display:none}
.footer-app-col .footer-col-links{align-items:center;gap:8px}
.footer-app-badges{gap:8px;flex-wrap:nowrap}
.store-badge-link{line-height:0}
.store-badge-svg{width:140px;height:42px;box-shadow:0 3px 12px rgba(15,23,42,.14);border-radius:7px}
.footer-app-community{display:flex;flex-direction:column;align-items:center;gap:7px;width:100%}
.footer-app-socials{display:flex;align-items:center;justify-content:center;gap:7px}
.footer-app-socials .footer-soc-btn{width:30px;height:30px;border-radius:8px;background:#fff;border:1px solid #D6DCE8;color:var(--social);box-shadow:0 2px 8px rgba(15,23,42,.1)}
.footer-app-socials .footer-soc-btn:hover{border-color:var(--social);color:var(--social);transform:translateY(-1px);opacity:1}
.footer-app-socials .footer-soc-btn svg{width:16px;height:16px;display:block;fill:currentColor;color:var(--social)}
.footer-app-socials .footer-soc-btn svg circle[fill="none"]{fill:none}
.footer-app-branding{display:flex;flex-direction:column;align-items:center;text-align:center;gap:2px;color:#64748B;line-height:1.2;white-space:normal;max-width:100%}
.footer-app-branding strong{font-size:15px;letter-spacing:-.03em;color:#172033}
.footer-app-branding span{font-size:9.5px;font-weight:600;letter-spacing:.01em}
@media(max-width:768px){
  .footer-app-col .footer-col-links{padding:8px 20px 18px;gap:8px}
  .footer-app-badges{gap:7px}
  .store-badge-svg{width:130px;height:39px}
  .footer-app-socials{gap:6px}
  .footer-app-socials .footer-soc-btn{width:29px;height:29px}
  .footer-app-branding strong{font-size:14px}
  .footer-app-branding span{font-size:9px}
}
@media(max-width:350px){.store-badge-svg{width:120px;height:36px}.footer-app-socials .footer-soc-btn{width:27px;height:27px}}


/* Consolidated from #showcase-button-alignment. */
.home-showcase-slide__action {
  align-self: center;
  justify-content: center;
  text-align: center;
  min-width: 156px;
}
.home-showcase-slide__action b { display: none; }
@media (max-width: 599px) {
  .home-showcase-slide__action { align-self: center; min-width: 150px; }
}


/* Consolidated from #agent-home-news-card. */
.home-compact-bar{}
.hero-compact-bar{grid-template-columns:minmax(0,1.02fr) minmax(220px,.56fr) minmax(310px,.78fr);}
.hero-compact-search-wrap{grid-column:3;grid-row:1 / span 2;}
.home-news-card{grid-column:2;grid-row:1 / span 2;align-self:stretch;display:flex;flex-direction:column;justify-content:center;min-width:0;padding:22px 21px;border:1px solid rgba(79,70,229,.16);border-radius:19px;background:linear-gradient(150deg,#ffffff 0%,#f3f4ff 100%);box-shadow:0 10px 26px rgba(79,70,229,.10);transition:transform .2s,box-shadow .2s;}
.home-news-card:hover{transform:translateY(-2px);box-shadow:0 15px 30px rgba(79,70,229,.15);}
.home-news-card__topline{display:flex;align-items:center;gap:7px;margin-bottom:13px;color:#4f46e5;font-size:9px;font-weight:900;letter-spacing:.13em;text-transform:uppercase;}
.home-news-card__dot{width:7px;height:7px;border-radius:50%;background:#4f46e5;box-shadow:0 0 0 4px rgba(79,70,229,.12);}
.home-news-card__time{margin-left:auto;color:#94a3b8;font-size:9px;letter-spacing:.04em;}
.home-news-card h2{margin:0;color:#172033;font-family:"Cormorant Garamond","Iowan Old Style","Palatino Linotype",Georgia,serif;font-size:clamp(29px,2.5vw,42px);font-weight:600;line-height:.95;letter-spacing:-.035em;}
.home-news-card p{margin:13px 0 18px;color:#596579;font-size:12px;line-height:1.55;}
.home-news-card__link{display:inline-flex;align-items:center;gap:7px;color:#4338ca;font-size:10px;font-weight:850;line-height:1.3;}
.home-news-card__link span{font-size:16px;font-weight:400;line-height:1;}
@media(max-width:1180px){.hero-compact-bar{grid-template-columns:minmax(0,1fr) minmax(195px,.52fr) minmax(280px,.85fr);gap:8px 24px;padding-left:28px;padding-right:28px}.home-news-card{padding:18px 15px}.home-news-card h2{font-size:31px}.home-news-card p{font-size:11px;}}
@media(max-width:900px){.hero-compact-bar{grid-template-columns:1fr;grid-template-rows:auto auto auto auto;}.home-news-card{grid-column:1;grid-row:3;}.hero-compact-search-wrap{grid-column:1;grid-row:4;}}
@media(max-width:560px){.home-news-card{padding:18px 16px;border-radius:16px}.home-news-card h2{font-size:32px}.home-news-card p{margin:10px 0 13px;font-size:12px;}}


/* Consolidated from #agent-header-search-restore. */
/* Header navigation and the original two-zone homepage search layout. */
.tb-desktop-quick-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  margin-left: auto;
  white-space: nowrap;
}
.tb-desktop-quick-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 7px;
  border-radius: 8px;
  color: #475569;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  transition: background .18s, color .18s;
}
.tb-desktop-quick-nav a:hover {
  background: #EEF2FF;
  color: #3730A3;
}
.tb-desktop-quick-nav .tb-news-link {
  margin-right: 4px;
  padding: 8px 9px;
  background: #EEF2FF;
  color: #4338CA;
  border: 1px solid #C7D2FE;
}
.tb-desktop-quick-nav .tb-news-link:hover {
  background: #E0E7FF;
  color: #312E81;
}
.tb-news-link__dot {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: #4F46E5;
}
@media (min-width: 901px) {
  .hero-compact-bar {
    display: grid ;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr) ;
    grid-template-rows: auto 1fr ;
    grid-template-areas: "geo search" "copy search" ;
    column-gap: 54px ;
    row-gap: 8px ;
  }
  .hero-compact-bar > .hero-geo { grid-area: geo ; }
  .hero-compact-txt-wrap { grid-area: copy ; }
  .hero-compact-search-wrap {
    grid-area: search ;
    align-self: center ;
    width: 100% ;
  }
}
@media (max-width: 1180px) and (min-width: 901px) {
  .topbar { padding-left: 18px ; padding-right: 18px ; gap: 8px ; }
  .tb-desktop-quick-nav { gap: 0; }
  .tb-desktop-quick-nav a { padding-left: 5px; padding-right: 5px; font-size: 10px; }
  .tb-desktop-quick-nav .tb-news-link { margin-right: 1px; padding-left: 6px; padding-right: 6px; }
  .tb-right { gap: 5px; }
  .btn-in { padding-left: 9px; padding-right: 9px; }
  .btn-reg { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 900px) {
  .tb-desktop-quick-nav { display: none ; }
  .hero-compact-bar {
    display: grid ;
    grid-template-columns: 1fr ;
    grid-template-rows: auto auto auto ;
    grid-template-areas: "geo" "copy" "search" ;
  }
  .hero-compact-bar > .hero-geo { grid-area: geo ; }
  .hero-compact-txt-wrap { grid-area: copy ; }
  .hero-compact-search-wrap { grid-area: search ; }
}


/* Consolidated from #mobile-card-footer-alignment-fix. */
/* Mobile alignment fix: equal stat cards and stable footer accordion rows. */
@media (max-width: 768px) {
  .footer-cols > .footer-col:nth-child(4) {
    padding-right: 0 ;
  }
  .footer-cols > .footer-col,
  .footer-cols > .footer-col > .footer-col-t {
    width: 100% ;
    box-sizing: border-box ;
  }
  .footer-cols > .footer-col > .footer-col-t {
    min-height: 48px ;
  }
}


/* Consolidated from #desktop-header-order-fix. */
/* Desktop header: navigation on the left, account actions next to the final menu button. */
@media (min-width: 1001px) {
  .topbar {
    display: flex ;
    align-items: center ;
    gap: 12px ;
  }
  .tb-logo { order: 1 ; }
  .tb-live { order: 2 ; }
  .tb-desktop-quick-nav {
    order: 3 ;
    flex: 1 1 auto ;
    min-width: 0 ;
    margin-left: 18px ;
    margin-right: 0 ;
    justify-content: flex-start ;
  }
  .tb-right {
    order: 4 ;
    margin-left: auto ;
    flex-shrink: 0 ;
  }
  .home-menu-trigger {
    order: 5 ;
    margin-left: 0 ;
    flex-shrink: 0 ;
  }
}


/* Consolidated from #desktop-atmosphere-slider. */
/* Desktop atmosphere control: manual, smooth, and intentionally not animated. */
:root {
  --atmo-bg: #ffffff;
  --atmo-surface: #ffffff;
  --atmo-surface-soft: #f8fbff;
  --atmo-text: #172033;
  --atmo-muted: #526176;
  --atmo-border: #e3e8f2;
  --atmo-track-border: rgba(15,23,42,.16);
  --atmo-shadow: rgba(37,71,130,.10);
  --atmo-accent: #4f46e5;
  --atmo-button-text: #ffffff;
}
html[data-atmosphere-active="1"][data-atmosphere-level="dark"] body,
html[data-atmosphere-active="1"][data-atmosphere-level="dark"] .main {
  background: var(--atmo-bg) ;
  color: var(--atmo-text) ;
  transition: background-color .7s ease, color .7s ease;
}
html[data-atmosphere-active="1"] .topbar,
html[data-atmosphere-active="1"] .clockbar {
  background: var(--atmo-surface) ;
  border-color: var(--atmo-border) ;
  transition: background-color .7s ease, border-color .7s ease;
}
html[data-atmosphere-active="1"] .hero-compact-bar {
  background: linear-gradient(115deg, var(--atmo-surface-soft), var(--atmo-surface)) ;
}
html[data-atmosphere-active="1"] .hero-search input,
html[data-atmosphere-active="1"] .hero-search input::placeholder {
  color: var(--atmo-text) ;
}
html[data-atmosphere-active="1"] .tb-logo-txt,
html[data-atmosphere-active="1"] .tb-desktop-quick-nav a,
html[data-atmosphere-active="1"] .tb-news-link,
html[data-atmosphere-active="1"] .footer-col-t,
html[data-atmosphere-active="1"] .fcopy,
html[data-atmosphere-active="1"] .flinks a {
  color: var(--atmo-text) ;
  transition: color .7s ease;
}
html[data-atmosphere-active="1"] .desktop-atmosphere-slider {
  background: var(--atmo-surface) ;
  border-color: var(--atmo-border) ;
  transition: background-color .7s ease, border-color .7s ease;
}

.desktop-atmosphere-slider {
  display: none;
}
@media (min-width: 1001px) {
  .desktop-atmosphere-slider {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 42px;
    padding: 8px 42px;
    background: #ffffff;
    border-bottom: 1px solid #e3e8f2;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background-color .7s ease, border-color .7s ease, color .7s ease;
  }
  .desktop-atmosphere-slider__label {
    flex: 0 0 auto;
    min-width: 48px;
  }
  .desktop-atmosphere-slider__label:last-child {
    text-align: right;
  }
  .desktop-atmosphere-slider__track {
    position: relative;
    flex: 1 1 auto;
    min-width: 160px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg,
      #ffffff 0%,
      #bfdbfe 25%,
      #c4b5fd 48%,
      #475569 74%,
      #111827 100%);
    border: 1px solid var(--atmo-track-border);
    box-shadow: inset 0 1px 3px rgba(15,23,42,.16), 0 1px 2px rgba(15,23,42,.08);
  }
  .desktop-atmosphere-slider__track::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255,255,255,.65), transparent 45%, rgba(15,23,42,.18));
    pointer-events: none;
  }
  .desktop-atmosphere-slider__input {
    position: absolute;
    inset: -10px 0;
    width: 100%;
    height: 32px;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    z-index: 2;
  }
  .desktop-atmosphere-slider__thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 24px;
    height: 24px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(15,23,42,.30), 0 0 0 1px rgba(15,23,42,.16);
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: left .7s ease, background-color .7s ease, box-shadow .7s ease;
    z-index: 1;
  }
  .desktop-atmosphere-slider__input:focus-visible + .desktop-atmosphere-slider__thumb {
    outline: 3px solid rgba(79,70,229,.35);
    outline-offset: 3px;
  }
}


/* Consolidated from #dpr-dark-contrast-overrides. */
html[data-theme="dark"] .hero-tagline,
html[data-theme="dark"] .hero-search input,
html[data-theme="dark"] .docs-tool-copy strong,
html[data-theme="dark"] .stat,
html[data-theme="dark"] .stat-live,
html[data-theme="dark"] .mc,
html[data-theme="dark"] .jobs-card,
html[data-theme="dark"] .age-card {
  color: var(--text) ;
}
html[data-theme="dark"] #dam-login-modal,
html[data-theme="dark"] #dam-register-modal,
html[data-theme="dark"] #dam-otp-modal,
html[data-theme="dark"] #dam-forgot-modal {
  background: var(--surface) ;
  color: var(--text) ;
}
html[data-theme="dark"] #dam-login-modal input,
html[data-theme="dark"] #dam-register-modal input,
html[data-theme="dark"] #dam-otp-modal input,
html[data-theme="dark"] #dam-forgot-modal input {
  background: var(--bg2) ;
  border-color: var(--border) ;
  color: var(--text) ;
}
html[data-theme="dark"] #dam-login-modal [style*="color:#1C1E21"],
html[data-theme="dark"] #dam-register-modal [style*="color:#1C1E21"],
html[data-theme="dark"] #dam-otp-modal [style*="color:#1C1E21"],
html[data-theme="dark"] #dam-forgot-modal [style*="color:#1C1E21"] {
  color: var(--text) ;
}


/* Consolidated from #homepage-stats-history-inventions. */
.stat-combined {
    display: flex;
    flex-direction: column;
    gap: 9px;
    overflow: hidden;
  }
  .stat-combined__eyebrow,
  .stat-combined__currency-title {
    color: #64748B;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .stat-combined__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .stat-combined__metric {
    min-width: 0;
    padding: 8px 9px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 10px;
    background: rgba(248, 250, 252, .72);
  }
  .stat-combined .stat-v {
    font-size: clamp(23px, 2.4vw, 31px) ;
    line-height: 1;
    margin-bottom: 5px;
  }
  .stat-combined .stat-l {
    font-size: 9px;
    line-height: 1.25;
  }
  .stat-combined .stat-t {
    margin-top: 4px;
    font-size: 9px;
    line-height: 1.25;
    white-space: nowrap;
  }
  .stat-combined__positive { color: #16A34A; }
  .stat-combined__currency {
    display: grid;
    gap: 4px;
    padding-top: 8px;
    border-top: 1px solid rgba(15, 23, 42, .08);
  }
  .stat-combined .hero-currency-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    font-size: 12px;
    line-height: 1.2;
  }
  .stat-combined .hero-currency-row strong { color: #1F2937; }
  .stat-combined .hero-currency-value { color: #475569; font-weight: 700; }
  .stat-combined #val-extra { display: block ; margin: 0; padding: 0; }
  .stat-combined__updated { color: #D97706 ; font-size: 9px ; }
  .stat-rotating-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    cursor: pointer;
  }
  .stat-rotating-card:focus-visible {
    outline: 3px solid rgba(79,70,229,.28);
    outline-offset: 4px;
  }
  .stat-rotating-card .stat-fact-copy {
    display: block ;
    flex: 1;
  }
  .stat-rotating-card .stat-fact-button { margin-top: auto; }
  @media (max-width: 560px) {
    .stat-combined { padding: 12px 10px; gap: 7px; }
    .stat-combined__metric { padding: 7px 7px; }
    .stat-combined .stat-v { font-size: 22px ; }
    .stat-combined .stat-l { font-size: 8px; }
    .stat-combined .stat-t { font-size: 8px; }
    .stat-combined .hero-currency-row { font-size: 10px; }
    .stat-combined__eyebrow,
    .stat-combined__currency-title { font-size: 8px; }
    .stat-rotating-card .stat-fact-copy { display: block ; }
  }


/* Consolidated from #homepage-stats-layout-correction. */
/* Indicatorii rămân într-un singur card, ca o listă verticală — fără carduri în card. */
  .stat-combined {
    gap: 0 ;
    padding: 14px 16px ;
  }
  .stat-combined__metrics {
    display: flex ;
    flex-direction: column ;
    gap: 0 ;
  }
  .stat-combined__metric {
    padding: 7px 0 ;
    border: 0 ;
    border-bottom: 1px solid rgba(15, 23, 42, .09) ;
    border-radius: 0 ;
    background: transparent ;
  }
  .stat-combined__metric:last-child { border-bottom: 0 ; }
  .stat-combined .stat-v {
    font-size: 27px ;
    line-height: 1 ;
    margin-bottom: 3px ;
  }
  .stat-combined .stat-l { font-size: 9px ; }
  .stat-combined .stat-t { margin-top: 3px ; }
  .stat-combined__currency {
    gap: 3px ;
    padding-top: 8px ;
    border-top: 0 ;
  }
  .stat-combined__currency-title { margin-bottom: 2px; }
  .stat-combined .hero-currency-row {
    justify-content: flex-start ;
    gap: 12px ;
  }
  .stat-combined .hero-currency-value { margin-left: auto; }

  /* Cardurile rotative: textul și acțiunea sunt centrate în toată înălțimea. */
  .stat-rotating-card {
    align-items: center ;
    justify-content: center ;
    text-align: center ;
    padding: 18px ;
  }
  .stat-rotating-card .stat-fact-kicker,
  .stat-rotating-card .stat-fact-question,
  .stat-rotating-card .stat-fact-copy {
    width: 100% ;
    text-align: center ;
  }
  .stat-rotating-card .stat-fact-copy {
    flex: 0 0 auto ;
    max-width: 245px;
    margin: 14px auto 18px ;
  }
  .stat-rotating-card .stat-fact-button {
    align-self: center ;
    margin: 0 auto ;
  }
  @media (max-width: 560px) {
    .stat-combined { padding: 12px 13px ; }
    .stat-combined__metric { padding: 6px 0 ; }
    .stat-combined .stat-v { font-size: 24px ; }
    .stat-rotating-card { padding: 16px 12px ; }
  }


/* Consolidated from #homepage-card-interactions. */
/* Micro-interacțiuni inspirate de produsele sociale moderne, păstrând cardurile curate. */
  .stats.stats-live > .stat-live {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    will-change: transform, box-shadow;
    animation: diaspora-card-enter .58s cubic-bezier(.2,.8,.2,1) both;
  }
  .stats.stats-live > .stat-live:nth-child(1) { animation-delay: .02s; }
  .stats.stats-live > .stat-live:nth-child(2) { animation-delay: .08s; }
  .stats.stats-live > .stat-live:nth-child(3) { animation-delay: .14s; }
  .stats.stats-live > .stat-live:nth-child(4) { animation-delay: .20s; }
  .stats.stats-live > .stat-live::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(79,70,229,.13), transparent 42%, rgba(24,119,242,.10));
    opacity: 0;
    transition: opacity .28s ease;
  }
  .stats.stats-live > .stat-live::after {
    content: "";
    position: absolute;
    top: -80%;
    left: -70%;
    width: 45%;
    height: 260%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
    transform: rotate(18deg) translateX(-220%);
    opacity: 0;
  }
  .stats.stats-live > .stat-live:hover {
    transform: translateY(-4px);
    border-color: rgba(79,70,229,.24);
    box-shadow: 0 18px 38px rgba(30,41,99,.13), 0 0 0 1px rgba(99,102,241,.06);
  }
  .stats.stats-live > .stat-live:hover::before { opacity: 1; }
  .stats.stats-live > .stat-live:hover::after {
    opacity: 1;
    animation: diaspora-card-shine .82s ease-out both;
  }
  .stats.stats-live > .stat-live:active {
    transform: translateY(-1px) scale(.988);
    transition-duration: .08s;
  }
  .stats.stats-live > .stat-live:focus-visible {
    outline: 3px solid rgba(79,70,229,.28);
    outline-offset: 3px;
  }
  .stats.stats-live > .stat-live > * { position: relative; z-index: 3; }

  .stat-combined__metric {
    position: relative;
    transition: transform .22s ease, padding-left .22s ease;
  }
  .stat-combined__metric::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(#4F46E5, #1877F2);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform .22s ease;
  }
  .stat-combined__metric:hover {
    padding-left: 9px ;
    transform: translateX(2px);
  }
  .stat-combined__metric:hover::before { transform: scaleY(1); }
  .stat-combined .stat-v { transition: color .22s ease, letter-spacing .22s ease; }
  .stat-combined__metric:hover .stat-v {
    color: #4F46E5;
    letter-spacing: .01em;
  }
  .stat-combined__updated::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 5px 1px 0;
    border-radius: 50%;
    background: #16A34A;
    box-shadow: 0 0 0 3px rgba(22,163,74,.10);
    animation: diaspora-live-pulse 1.8s ease-in-out infinite;
  }

  .stat-rotating-card .stat-fact-question { transition: color .22s ease, transform .22s ease; }
  .stat-rotating-card:hover .stat-fact-question {
    color: #4F46E5;
    transform: translateY(-1px);
  }
  .stat-fact-copy.card-copy-changing {
    animation: diaspora-copy-in .34s cubic-bezier(.2,.8,.2,1) both;
  }
  .stat-fact-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  }
  .stat-fact-button:hover {
    transform: translateY(-2px) scale(1.02) ;
    box-shadow: 0 7px 16px rgba(79,70,229,.18);
  }
  .stat-fact-button:active,
  .stat-fact-button.is-pressed {
    transform: translateY(0) scale(.96) ;
    box-shadow: 0 2px 7px rgba(79,70,229,.14);
  }
  .stat-fact-button .card-ripple {
    position: absolute;
    z-index: -1;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(79,70,229,.22);
    transform: translate(-50%, -50%) scale(0);
    animation: diaspora-ripple .48s ease-out both;
    pointer-events: none;
  }
  .stat-fact-button:focus-visible {
    outline: 3px solid rgba(79,70,229,.25);
    outline-offset: 3px;
  }

  @keyframes diaspora-card-enter {
    from { opacity: 0; transform: translateY(10px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes diaspora-card-shine {
    from { transform: rotate(18deg) translateX(-220%); }
    to { transform: rotate(18deg) translateX(520%); }
  }
  @keyframes diaspora-copy-in {
    from { opacity: .15; transform: translateY(6px); filter: blur(2px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
  }
  @keyframes diaspora-live-pulse {
    0%, 100% { opacity: .55; transform: scale(.82); }
    50% { opacity: 1; transform: scale(1.08); }
  }
  @keyframes diaspora-ripple {
    to { transform: translate(-50%, -50%) scale(18); opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .stats.stats-live > .stat-live,
    .stat-fact-copy.card-copy-changing,
    .stat-combined__updated::before { animation: none ; }
    .stats.stats-live > .stat-live::after { display: none; }
    .stats.stats-live > .stat-live,
    .stat-fact-button,
    .stat-combined__metric { transition: none ; }
  }
  @media (max-width: 560px) {
    .stats.stats-live > .stat-live:hover { transform: translateY(-2px); }
    .stat-combined__metric:hover { padding-left: 7px ; }
  }


/* Consolidated from #homepage-readable-cards. */
/* Desktop readability pass: the four knowledge cards should be read, not merely noticed. */
@media (min-width: 900px) {
  .stats.stats-live { gap: 16px ; }
  .stats.stats-live > .stat-live {
    min-height: 290px ;
    padding: 26px 28px ;
  }
  .stats.stats-live .stat-fact-kicker {
    margin-bottom: 14px ;
    font-size: clamp(28px, 2.7vw, 40px) ;
    line-height: 1.02 ;
  }
  .stats.stats-live .stat-fact-question {
    margin-bottom: 10px ;
    color: #172033 ;
    font-size: clamp(16px, 1.45vw, 21px) ;
    line-height: 1.35 ;
  }
  .stats.stats-live .stat-fact-copy {
    max-width: 100% ;
    margin: 16px auto 22px ;
    color: #24324A ;
    font-size: clamp(16px, 1.3vw, 19px) ;
    font-weight: 600 ;
    line-height: 1.68 ;
    letter-spacing: -.005em;
  }
  .stats.stats-live .stat-fact-button {
    padding: 11px 17px ;
    font-size: 14px ;
    line-height: 1.2 ;
  }
  .stats.stats-live .stat-combined {
    gap: 10px ;
    padding: 24px 28px ;
  }
  .stats.stats-live .stat-combined__eyebrow,
  .stats.stats-live .stat-combined__currency-title {
    color: #475569 ;
    font-size: 12px ;
  }
  .stats.stats-live .stat-combined__metric { padding: 12px 0 ; }
  .stats.stats-live .stat-combined .stat-v {
    font-size: clamp(31px, 3vw, 45px) ;
  }
  .stats.stats-live .stat-combined .stat-l {
    color: #24324A ;
    font-size: 13px ;
    line-height: 1.35 ;
  }
  .stats.stats-live .stat-combined .stat-t {
    font-size: 11.5px ;
    line-height: 1.4 ;
  }
  .stats.stats-live .stat-combined .hero-currency-row { font-size: 14px ; }
  .stats.stats-live .stat-combined__updated { font-size: 11px ; }
}


/* Consolidated from #homepage-hub-trigger-style. */
.site-hub-trigger{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;margin-left:8px;border:1px solid rgba(124,58,237,.35);border-radius:12px;background:linear-gradient(145deg,#f3efff,#e0e7ff);color:#6d28d9;text-decoration:none;box-shadow:0 3px 10px rgba(109,40,217,.16);transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease}
.site-hub-trigger:hover,.site-hub-trigger:focus-visible{transform:translateY(-1px);border-color:#7c3aed;box-shadow:0 6px 16px rgba(109,40,217,.24);outline:none}
.site-hub-trigger__mark{font:800 9px/1.05 ui-monospace,SFMono-Regular,Menlo,monospace;letter-spacing:.08em}
@media(max-width:560px){.site-hub-trigger{width:38px;height:38px;margin-left:4px;border-radius:10px}.site-hub-trigger__mark{font-size:8px}}


/* Consolidated from #return-relocation-cards. */
.return-relocation{max-width:1180px;margin:0 auto 34px;padding:0 28px}.return-relocation__intro{margin-bottom:16px}.return-relocation__eyebrow{display:block;margin-bottom:6px;color:#4f46e5;font-size:10px;font-weight:900;letter-spacing:.14em;text-transform:uppercase}.return-relocation__intro h2{margin:0;color:#172033;font-size:clamp(26px,3vw,38px);letter-spacing:-.045em}.return-relocation__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.return-relocation__card{position:relative;display:flex;min-height:206px;flex-direction:column;justify-content:space-between;overflow:hidden;padding:24px;border:1px solid #d9def0;border-radius:22px;text-decoration:none;box-shadow:0 10px 28px rgba(31,41,81,.08);transition:transform .2s,box-shadow .2s}.return-relocation__card:hover{transform:translateY(-4px);box-shadow:0 17px 34px rgba(31,41,81,.14)}.return-relocation__card--home{background:linear-gradient(135deg,#eefcf7 0%,#fff 68%);border-color:#b9e8da}.return-relocation__card--abroad{background:linear-gradient(135deg,#eef3ff 0%,#fff 68%);border-color:#c8d5fa}.return-relocation__icon{display:flex;width:42px;height:42px;align-items:center;justify-content:center;margin-bottom:16px;border-radius:13px;font-size:22px}.return-relocation__card--home .return-relocation__icon{background:#d6f5e9}.return-relocation__card--abroad .return-relocation__icon{background:#dce6ff}.return-relocation__card h3{max-width:560px;margin:0;color:#172033;font-size:clamp(23px,2.4vw,34px);line-height:1.02;letter-spacing:-.045em}.return-relocation__card p{max-width:540px;margin:12px 0 20px;color:#596579;font-size:13px;line-height:1.55}.return-relocation__link{display:inline-flex;align-items:center;gap:8px;color:#4338ca;font-size:12px;font-weight:900}.return-relocation__link span{font-size:18px;font-weight:400;line-height:1}@media(max-width:700px){.return-relocation{padding:0 20px}.return-relocation__grid{grid-template-columns:1fr}.return-relocation__card{min-height:185px;padding:21px}.return-relocation__card h3{font-size:28px}}


/* Consolidated from #homepage-refinement-20260907. */
/* Homepage refinement: compact hierarchy, direct actions, responsive grid. */
.tb-desktop-quick-nav > a:not(.tb-news-link),
#hdr-btn-login {
  color: #4f46e5 ;
}
#hdr-btn-login {
  border-color: rgba(79, 70, 229, .22) ;
  background: #f5f3ff ;
}
#hdr-btn-login:hover,
#hdr-btn-login:focus-visible {
  color: #4338ca ;
  border-color: rgba(79, 70, 229, .45) ;
  background: #ede9fe ;
}
.hero-compact {
  gap: 22px;
  margin-bottom: 22px;
}
.hero-compact-bar {
  max-width: none;
}
.hero-quick-tags {
  display: none ;
}
.hero-compact-search-wrap {
  align-self: center;
  width: min(100%, 560px);
  padding: 0 ;
  border: 0 ;
  background: transparent ;
  box-shadow: none ;
}
.hero-search {
  max-width: none ;
  border: 0 ;
  border-radius: 0 ;
  background: transparent ;
  box-shadow: none ;
  border-bottom: 1px solid rgba(79, 70, 229, .28) ;
}
.hero-search:focus-within {
  border-color: #6366f1 ;
  box-shadow: 0 4px 14px rgba(79, 70, 229, .12) ;
}
.hero-search input {
  padding-left: 0 ;
}.home-intent__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) ;
  gap: 12px ;
}
.stats.stats-live {
  grid-template-columns: repeat(4, minmax(0, 1fr)) ;
  gap: 14px ;
  margin-top: 26px ;
}
.stats.stats-live > .stat-live {
  min-height: 194px ;
  padding: 18px ;
  border-radius: 18px ;
}
.stat-combined__eyebrow {
  margin-bottom: 8px ;
  color: #4f46e5 ;
  font-size: 10px ;
  letter-spacing: .14em ;
}
.stat-combined__metrics {
  grid-template-columns: 1fr ;
  gap: 8px ;
}
.stat-combined__metric {
  padding: 4px 0 9px ;
}
.stat-combined .stat-v {
  font-size: clamp(28px, 2.4vw, 40px) ;
}
.stat-combined .stat-l {
  font-size: 11px ;
  font-weight: 750 ;
}
.stat-combined .stat-t,
.stat-combined__updated {
  font-size: 10px ;
}
.stat-combined__currency {
  margin-top: 8px ;
  padding-top: 8px ;
}
.stat-combined__currency-title {
  font-size: 12px ;
}
.stats.stats-live > .stat-rotating-card .stat-fact-kicker {
  margin-bottom: 10px ;
  color: #4338ca ;
  font-family: Inter, system-ui, sans-serif ;
  font-size: 12px ;
  font-weight: 850 ;
  letter-spacing: .12em ;
  line-height: 1.1 ;
  text-transform: uppercase ;
}
.stats.stats-live > .stat-rotating-card .stat-fact-question {
  margin-bottom: 8px ;
  color: #172033 ;
  font-size: clamp(19px, 1.6vw, 24px) ;
  font-weight: 800 ;
  line-height: 1.15 ;
}
.stats.stats-live > .stat-rotating-card .stat-fact-copy {
  padding: 10px 0 8px ;
  color: #475569 ;
  font-size: 13px ;
  line-height: 1.5 ;
}
.stats.stats-live > .stat-rotating-card .stat-fact-button {
  font-size: 11px ;
}
.return-relocation {
  margin-top: 28px ;
  margin-bottom: 36px ;
}
.return-relocation__grid {
  gap: 20px ;
}
.return-relocation__card {
  min-height: 154px ;
  padding: 22px ;
  border-radius: 18px ;
}
.return-relocation__icon { display: none ; }
.return-relocation__card h3 {
  max-width: none ;
  font-size: clamp(20px, 2vw, 27px) ;
  line-height: 1.08 ;
}
.return-relocation__card p {
  margin: 10px 0 0 ;
  font-size: 12px ;
  line-height: 1.5 ;
}
.home-showcase {
  margin-top: 12px ;
}
.home-showcase__intro { display: none ; }
.footer {
  padding-top: 34px ;
}
.footer::before {
  background: linear-gradient(90deg, #1677ff 0%, #3b82f6 28%, #facc15 52%, #f59e0b 65%, #ef4444 83%, #dc2626 100%) ;
}
.footer-cols {
  margin-top: 10px ;
  gap: 26px ;
}
.footer-col-links {
  padding-top: 10px ;
}
@media (max-width: 900px) {
  .stats.stats-live { grid-template-columns: repeat(2, minmax(0, 1fr)) ; }
}
@media (max-width: 560px) {
  .hero-compact { padding-top: 14px ; gap: 16px ; }
  .hero-compact-search-wrap { width: 100%; }
  .stats.stats-live { grid-template-columns: 1fr ; gap: 10px ; margin-top: 20px ; }
  .stats.stats-live > .stat-live { min-height: 0 ; padding: 16px ; }
  .return-relocation { margin-top: 22px ; padding: 0 20px ; }
  .return-relocation__grid { gap: 14px ; }
  .return-relocation__card { min-height: 0 ; padding: 18px ; }
  .return-relocation__card h3 { font-size: 21px ; }
  .return-relocation__card p { font-size: 12px ; }
  .footer { padding-top: 28px ; }
  .footer-cols { gap: 10px ; }
}


/* Consolidated from #homepage-footer-and-order-refinement-20260907. */
/* Final homepage hierarchy and footer palette. */
.hero-compact {
  gap: 18px ;
}
.return-relocation__card h3 {
  font-size: clamp(21px, 2.1vw, 28px) ;
  font-weight: 850 ;
}
.return-relocation__card p {
  margin-top: 14px ;
  font-size: 14.5px ;
  line-height: 1.55 ;
}
/* Make explanatory copy readable without overpowering the card titles. */
.stats.stats-live > .stat-rotating-card .stat-fact-copy {
  color: #334155 ;
  font-size: 14.5px ;
  line-height: 1.55 ;
}
.stats.stats-live > .stat-rotating-card .stat-fact-question {
  font-size: clamp(20px, 1.7vw, 25px) ;
}
/* Instagram purple for footer navigation, identity, and legal copy. */
.footer .footer-col-t,
.footer .footer-col-links a,
.footer .footer-brand-logo,
.footer .footer-brand-logo span,
.footer .footer-brand-sub,
.footer .footer-app-branding strong,
.footer .footer-app-branding span,
.footer .footer-bottom a,
.footer .fcopy,
.footer .fcopy strong {
  color: #833ab4 ;
}
.footer .footer-col-links a:hover,
.footer .footer-bottom a:hover {
  color: #6d28d9 ;
}
.footer .footer-col-t::after {
  color: #833ab4 ;
}
.footer-col-t {
  margin-bottom: 0 ;
}
.footer-col-links {
  margin-top: 0 ;
  padding-top: 0 ;
}
.footer .footer-app-branding span,
.footer .footer-brand-sub {
  font-size: 13px ;
  line-height: 1.45 ;
}
.footer .fcopy {
  font-size: 12px ;
  line-height: 1.4 ;
}
.tb-desktop-quick-nav > a:not(.tb-news-link),
#hdr-btn-login {
  font-size: 13px ;
  font-weight: 750 ;
}
@media (max-width: 900px) {
}
@media (max-width: 560px) {
  .return-relocation__card h3 {
    font-size: 22px ;
  }
  .return-relocation__card p {
    margin-top: 10px ;
    font-size: 13.5px ;
  }
  .stats.stats-live > .stat-rotating-card .stat-fact-copy {
    font-size: 13.5px ;
  }
}


/* Consolidated from #homepage-correction-20260907. */
/* Corrections: match the header palette, restore the search frame, and improve hierarchy. */
:root {
  --diaspora-header-purple: #4f46e5;
}
/* The search keeps its own frame; only the surrounding hero remains borderless. */
.hero-compact-search-wrap {
  width: min(100%, 640px) ;
  border: 0 ;
  background: transparent ;
  box-shadow: none ;
}
.hero-search {
  width: 100% ;
  border: 1.5px solid #e4e6eb ;
  border-radius: 14px ;
  background: #ffffff ;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08) ;
}
.hero-search:focus-within {
  border-color: #6366f1 ;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .16) ;
}
/* Footer uses precisely the header's blue-purple, not the Instagram-magenta variant. */
.footer .footer-col-t,
.footer .footer-col-links a,
.footer .footer-brand-logo,
.footer .footer-brand-logo span,
.footer .footer-brand-sub,
.footer .footer-app-branding strong,
.footer .footer-app-branding span,
.footer .footer-bottom a,
.footer .fcopy,
.footer .fcopy strong {
  color: #4f46e5 ;
}
.footer .footer-col-links a:hover,
.footer .footer-bottom a:hover {
  color: #4338ca ;
}
.footer .footer-col-t::after {
  color: #4f46e5 ;
}
/* Keep a visible, intentional gap between each footer heading and its options. */
.footer .footer-col-links {
  margin-top: 0 ;
  padding-top: 9px ;
}
@media (max-width: 900px) {
}
@media (max-width: 560px) {
  .hero-compact-search-wrap { width: 100% ; }
  .footer .footer-col-links { padding-top: 7px ; }
}


/* Consolidated from #homepage-palette-and-wave-background-20260907. */
/* Match the live header color exactly. */
.footer .footer-col-t,
.footer .footer-col-links a,
.footer .footer-brand-logo,
.footer .footer-brand-logo span,
.footer .footer-brand-sub,
.footer .footer-app-branding strong,
.footer .footer-app-branding span,
.footer .footer-bottom a,
.footer .fcopy,
.footer .fcopy strong,
.footer .footer-col-t::after {
  color: rgb(79, 70, 229) ;
}
/* Explicit two-part coloring: the first and second halves are separate spans. */
.return-title-accent {
  color: #7c3aed ;
  -webkit-text-fill-color: #7c3aed ;
}
/* Consolidated from #diaspora-light-cards-fix. */
/* LIGHT HOMEPAGE — only card surfaces/text; no content or behavior changes */
.stat,
.stat-live,
.mc,
.jobs-card,
.age-card {
  background: #ffffff ;
}

.stat,
.stat-live,
.mc,
.jobs-card,
.age-card,
.stat-live .stat-l,
.stat-live .stat-sub,
.stat-live .stat-stiaiCA-txt,
.stat-live .stat-sub-flags,
.stat-live #val-extra,
.mc .mc-tit,
.mc .mc-desc,
.mc .mc-lbl,
.mc .mcl,
.jobs-card .jobs-tit,
.jobs-card .jobs-sub,
.jobs-card .j4v,
.jobs-card .jobs-tips li,
.age-card .age-card-tit,
.age-card .age-card-sub,
.age-card .age-card-topic {
  color: var(--text) ;
}

.jobs-card .jobs-know,
.jobs-card .jobs-row4 {
  background: var(--surface) ;
  border-color: var(--border) ;
}

.stat-live .stat-sub {
  border-top-color: var(--border) ;
}

.age-card-badge {
  background: var(--glass-h) ;
}


/* Consolidated from #homepage-facts-readability-final. */
/* Faptele noi au aceeași forță vizuală ca postările consacrate. */
.stat-rotating-card .stat-fact-copy {
  color:#172033 ;
  opacity:1 ;
  font-weight:600 ;
  text-shadow:none ;
}
@media (max-width:560px) {
  .stats.stats-live > .stat-rotating-card {
    min-height:230px ;
    padding:18px 16px 15px ;
    overflow:visible ;
  }
  .stats.stats-live > .stat-rotating-card .stat-fact-kicker {
    font-size:24px ;
    line-height:1.05 ;
    margin-bottom:9px ;
  }
  .stats.stats-live > .stat-rotating-card .stat-fact-question {
    font-size:13px ;
    line-height:1.35 ;
    margin-bottom:9px ;
  }
  .stats.stats-live > .stat-rotating-card .stat-fact-copy,
  .stat-stiaiCA .stat-fact-copy {
    display:block ;
    max-width:none ;
    min-height:0 ;
    padding:11px 0 9px ;
    margin:0 ;
    color:#172033 ;
    font-size:14px ;
    font-weight:600 ;
    line-height:1.55 ;
    text-align:left ;
  }
  .stat-stiaiCA .stat-fact-kicker,
  .stat-stiaiCA .stat-fact-question { text-align:left ; }
  .stats.stats-live > .stat-rotating-card .stat-fact-button {
    align-self:flex-start ;
    margin:10px 0 0 ;
    padding:8px 12px ;
    font-size:11px ;
  }
}


/* Consolidated from #homepage-facts-preserve-old-style. */
/* Textele scurte păstrează stilul consacrat; doar textele noi/lungi primesc spațiu suplimentar. */
@media (max-width:560px) {
  .stats.stats-live > .stat-rotating-card .stat-fact-copy:not(.fact-long) {
    font-size:11.5px ;
    line-height:1.42 ;
    font-weight:400 ;
    color:#596579 ;
  }
  .stat-stiaiCA .stat-fact-copy:not(.fact-long) {
    max-width:285px ;
    text-align:center ;
  }
  .stats.stats-live > .stat-rotating-card .stat-fact-copy.fact-long {
    color:#172033 ;
    font-size:14px ;
    font-weight:600 ;
    line-height:1.55 ;
    max-width:none ;
    text-align:left ;
  }
}


/* Consolidated from #currency-card-mobile-final-fix. */
/* Mobile-only repair for the exchange-rate card: keep all three currencies inside the card. */
@media (max-width: 599px) {
  .stats.stats-live > .stat-live.stat-valuta {
    overflow: hidden ;
    min-height: 0 ;
    box-sizing: border-box ;
  }
  .stats.stats-live > .stat-live.stat-valuta #val-extra,
  .stats.stats-live > .stat-live.stat-valuta .stat-valuta-sub {
    display: flex ;
    flex: 0 1 auto ;
    flex-direction: column ;
    align-items: stretch ;
    justify-content: flex-start ;
    width: 100% ;
    max-width: 100% ;
    min-width: 0 ;
    height: auto ;
    max-height: none ;
    gap: 4px ;
    margin-top: 7px ;
    padding-top: 7px ;
    line-height: 1 ;
    overflow: visible ;
    box-sizing: border-box ;
  }
  .stats.stats-live > .stat-live.stat-valuta .hero-currency-row {
    display: grid ;
    grid-template-columns: 20px 32px minmax(0, 1fr) ;
    align-items: center ;
    flex: 0 0 30px ;
    width: 100% ;
    max-width: 100% ;
    min-width: 0 ;
    min-height: 30px ;
    height: 30px ;
    gap: 4px ;
    margin: 0 ;
    padding: 0 ;
    line-height: 1 ;
    box-sizing: border-box ;
    overflow: hidden ;
  }
  .stats.stats-live > .stat-live.stat-valuta .hero-currency-row .hero-currency-flag,
  .stats.stats-live > .stat-live.stat-valuta .hero-currency-row img {
    display: block ;
    width: 20px ;
    height: 14px ;
    max-width: 20px ;
    object-fit: cover ;
    margin: 0 ;
  }
  .stats.stats-live > .stat-live.stat-valuta .hero-currency-row strong,
  .stats.stats-live > .stat-live.stat-valuta .hero-currency-value {
    display: block ;
    min-width: 0 ;
    max-width: 100% ;
    margin: 0 ;
    padding: 0 ;
    overflow: hidden ;
    text-overflow: ellipsis ;
    white-space: nowrap ;
    line-height: 1.1 ;
    font-size: 10px ;
  }
  .stats.stats-live > .stat-live.stat-valuta .hero-currency-row strong {
    text-align: left ;
  }
  .stats.stats-live > .stat-live.stat-valuta .hero-currency-value {
    text-align: right ;
  }
}


/* Responsive geometry contract. Decorative hero art may extend visually, never the scroll area. */
@media (max-width: 640px) {
  .hero {
    overflow-x: hidden;
    overflow-x: clip;
  }
}


/* Folded active homepage layer: topbar-account-polish.css. */
/* diaspora.ro — account controls polish
   Shared by the legacy topbar pages. Source stylesheet, no runtime injection. */
.topbar .tb-user-menu {
  gap: 8px ;
  padding: 4px ;
  border: 1px solid var(--border) ;
  border-radius: 17px ;
  background: var(--bg2) ;
  box-shadow: 0 3px 12px rgba(15, 23, 42, .08) ;
}
.topbar .tb-user-menu > a,
.topbar .tb-user-menu > a:hover {
  display: inline-flex ;
  align-items: center ;
  justify-content: flex-start ;
  gap: 8px ;
  width: auto ;
  min-width: 0 ;
  height: 40px ;
  padding: 3px 12px 3px 4px ;
  border: 1px solid rgba(24, 119, 242, .18) ;
  border-radius: 13px ;
  background: rgba(24, 119, 242, .07) ;
  color: var(--text) ;
  font-size: 13px ;
  font-weight: 700 ;
  box-shadow: none ;
  transition: background .15s, border-color .15s, transform .15s ;
}
.topbar .tb-user-menu > a:hover {
  background: rgba(24, 119, 242, .13) ;
  border-color: rgba(24, 119, 242, .38) ;
  transform: translateY(-1px) ;
}
.topbar .tb-user-menu .mh-ava {
  display: inline-flex ;
  width: 34px ;
  height: 34px ;
  margin: 0 ;
  border: 2px solid #fff ;
  border-radius: 50% ;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe) ;
  box-shadow: 0 1px 5px rgba(15, 23, 42, .20) ;
  overflow: hidden ;
  flex: 0 0 34px ;
}
.topbar .tb-user-menu .mh-ava img {
  width: 100% ;
  height: 100% ;
  object-fit: contain ;
  border-radius: 50% ;
  display: block ;
}
.topbar .tb-user-menu > button,
.topbar .tb-user-menu > button:hover {
  display: inline-flex ;
  align-items: center ;
  justify-content: center ;
  height: 36px ;
  min-width: 68px ;
  padding: 0 13px ;
  border: 1px solid rgba(100, 116, 139, .28) ;
  border-radius: 11px ;
  background: var(--bg) ;
  color: var(--text2) ;
  font: 700 12px/1 var(--font) ;
  cursor: pointer ;
  box-shadow: 0 1px 3px rgba(15, 23, 42, .08) ;
  transition: background .15s, border-color .15s, color .15s, transform .15s ;
}
.topbar .tb-user-menu > button:hover {
  background: #fff ;
  border-color: rgba(220, 38, 38, .38) ;
  color: #b91c1c ;
  transform: translateY(-1px) ;
}
@media (max-width: 640px) {
  .topbar .tb-user-menu { gap: 6px ; padding: 3px ; border-radius: 15px ; }
  .topbar .tb-user-menu > a {
    width: 40px ;
    height: 40px ;
    padding: 2px ;
    justify-content: center ;
    border-radius: 12px ;
    font-size: 0 ;
  }
  .topbar .tb-user-menu .mh-ava { width: 34px ; height: 34px ; flex-basis: 34px ; }
  .topbar .tb-user-menu > button { min-width: 58px ; height: 36px ; padding: 0 11px ; }
}


/* ── Avatar header: un singur cadru pătrat cu colțuri rotunjite ── */
body .topbar .tb-user-menu > .tb-profile-link .mh-ava {
  width: 34px ;
  height: 34px ;
  flex: 0 0 34px ;
  border: 0 ;
  border-radius: 9px ;
  clip-path: none ;
  background: #eef2ff ;
  box-shadow: 0 1px 5px rgba(15, 23, 42, .18) ;
  overflow: hidden ;
}
body .topbar .tb-user-menu > .tb-profile-link .mh-ava img,
body .topbar .tb-user-menu > .tb-profile-link .mh-avatar-image {
  width: 100% ;
  height: 100% ;
  border-radius: 9px ;
  clip-path: none ;
  object-fit: contain ;
  display: block ;
}
@media (max-width: 640px) {
  body .topbar .tb-user-menu > .tb-profile-link .mh-ava {
    width: 34px ;
    height: 34px ;
    flex-basis: 34px ;
  }
}


/* Folded active homepage layer: spatiul-meu-cta.css. */
.space-cta{display:flex;align-items:center;justify-content:space-between;gap:18px;margin:18px 0 26px;padding:16px 18px;border:1px solid rgba(24,119,242,.2);border-radius:16px;background:linear-gradient(105deg,rgba(24,119,242,.08),rgba(99,102,241,.06));box-shadow:0 5px 18px rgba(24,119,242,.06)}.space-cta__copy{display:flex;align-items:center;gap:12px;min-width:0}.space-cta__mark{display:grid;place-items:center;flex:0 0 38px;width:38px;height:38px;border-radius:12px;background:linear-gradient(135deg,#1877f2,#635bdb);color:#fff;font-weight:900}.space-cta__copy strong{display:block;color:#16213a;font-size:14px}.space-cta__copy span{display:block;margin-top:2px;color:#64748b;font-size:12px}.space-cta__button{display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;padding:10px 15px;border-radius:10px;background:linear-gradient(135deg,#1877f2,#1260cc);color:#fff;text-decoration:none;font-size:12px;font-weight:800;box-shadow:0 4px 12px rgba(24,119,242,.2);transition:transform .18s,box-shadow .18s}.space-cta__button:hover{transform:translateY(-1px);box-shadow:0 7px 18px rgba(24,119,242,.3)}@media(max-width:560px){.space-cta{align-items:flex-start;flex-direction:column;gap:13px;padding:14px}.space-cta__button{width:100%}}


/* Homepage visual contract — blue wave artwork, glass cards, one active slide. */
.homepage-body,
html[data-atmosphere-level="light"] body.homepage-body,
html[data-atmosphere-level="mid"] body.homepage-body,
html[data-atmosphere-level="dark"] body.homepage-body {
  --homepage-art: image-set(url('/assets/img/homepage-background-fullhd-modern-20260907.webp') type('image/webp') 1x, url('/assets/img/homepage-background-fullhd-modern-20260907.jpg') type('image/jpeg') 1x);
  background-color: #f7faff ;
  background-image: url('/assets/img/homepage-background-fullhd-modern-20260907.jpg') ;
  background-image: image-set(url('/assets/img/homepage-background-fullhd-modern-20260907.webp') type('image/webp') 1x, url('/assets/img/homepage-background-fullhd-modern-20260907.jpg') type('image/jpeg') 1x) ;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #172033;
}
.homepage-body .main { background: transparent ; }
.homepage-body .homepage-ambient {
  display: block ;
  opacity: 1 ;
  background: transparent ;
}


/* One glass showcase panel; hidden slides never take layout space. */
.homepage-body .home-showcase-slide[hidden] { display: none ; }
.homepage-body .home-showcase-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.35) ;
  border-radius: 24px;
  background: rgba(255,255,255,.38) ;
  box-shadow: 0 18px 42px rgba(3,18,46,.28);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.homepage-body .home-showcase-slide__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(30px, 5vw, 68px);
  background: rgba(255,255,255,.68) ;
  color: #f8fbff;
}
.homepage-body .home-showcase-slide__copy h3 {
  max-width: 520px;
  margin: 0;
  color: #102a56 ;
  -webkit-text-fill-color: #102a56 ;
  font-weight: 650;
  line-height: 1.02;
}
.homepage-body .home-showcase-slide__copy p {
  max-width: 500px;
  margin: 20px 0 26px;
  color: #475569 ;
  -webkit-text-fill-color: #475569 ;
  line-height: 1.68;
}
.homepage-body .home-showcase-slide__eyebrow,
.homepage-body .home-showcase__eyebrow {
  color: #1d4ed8 ;
  -webkit-text-fill-color: #1d4ed8 ;
}
.homepage-body .home-showcase-slide__action {
  align-self: center;
  justify-content: center;
  width: min(100%, 230px);
  min-height: 44px;
  box-sizing: border-box;
  margin-top: auto;
  background: rgba(29,78,216,.92) ;
  color: #fff ;
  -webkit-text-fill-color: #fff ;
  box-shadow: 0 7px 18px rgba(2,24,76,.34);
}
.homepage-body .home-showcase-slide__visual {
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  background: rgba(255,255,255,.10) ;
}
.homepage-body .home-showcase-slide__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.homepage-body .home-showcase__dots button {
  background: rgba(255,255,255,.60) ;
}
.homepage-body .home-showcase__dots button[aria-current="true"] {
  background: #ffffff ;
}
.homepage-body .footer {
  background: rgba(255,255,255,.88) ;
  color: #172033;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.homepage-body .hero-search button,
.homepage-body .stat-fact-button,
.homepage-body .gbtn {
  background-image: none ;
  background: rgba(29,78,216,.88) ;
}

@media (max-width: 900px) {
  .homepage-body .home-showcase-slide { min-height: 370px; }
  .homepage-body .home-showcase-slide__visual,
  .homepage-body .home-showcase-slide__visual img { min-height: 370px; }
  .homepage-body .home-showcase-slide__copy {
    padding: 30px;
    background: #ffffff;
    color: #172033;
  }
  .homepage-body .home-showcase-slide__copy h3 {
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(27px, 4vw, 34px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
  }
  .homepage-body .home-showcase-slide__copy p {
    margin: 12px 0 18px;
    font-size: 13px;
    line-height: 1.5;
  }
  .homepage-body .home-showcase-slide__action { align-self: flex-start; }
}
@media (max-width: 560px) {
  .homepage-body { background-attachment: scroll; }
  .homepage-body .home-showcase__slides { height: 556px; }
  .homepage-body .home-showcase-slide {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 210px minmax(0, 286px);
    height: 496px;
    min-height: 496px;
    border-radius: 22px;
  }
  .homepage-body .home-showcase-slide__visual,
  .homepage-body .home-showcase-slide--image-left .home-showcase-slide__visual {
    grid-row: 1;
    order: 0;
    min-height: 210px;
    height: 210px;
  }
  .homepage-body .home-showcase-slide__visual picture {
    min-height: 210px;
    height: 210px;
  }
  .homepage-body .home-showcase-slide__visual img {
    min-height: 210px;
    height: 210px;
  }
  .homepage-body .home-showcase-slide__copy,
  .homepage-body .home-showcase-slide--image-left .home-showcase-slide__copy {
    grid-row: 2;
    order: 0;
    min-height: 0;
    padding: 22px 18px 20px;
    background: #ffffff;
    color: #172033;
  }
  .homepage-body .home-showcase-slide__copy h3 {
    font-family: Inter, system-ui, sans-serif;
    font-size: clamp(24px, 7vw, 29px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
  }
  .homepage-body .home-showcase-slide__copy p {
    margin: 12px 0 18px;
    font-size: 13px;
    line-height: 1.5;
  }
  .homepage-body .home-showcase-slide__action {
    align-self: flex-start;
    width: min(100%, 230px);
    min-height: 44px;
    padding: 10px 15px;
    font-size: 12px;
  }
}

/* Navigation palette: links blue, section titles black. */
.homepage-body .tb-desktop-quick-nav a,
html[data-atmosphere-active="1"] body.homepage-body .tb-desktop-quick-nav a,
html[data-atmosphere-active="1"] body.homepage-body .tb-news-link,
.homepage-body .site-menu__links a,
.homepage-body .site-menu__links a strong,
.homepage-body .site-menu__links a span,
.homepage-body .footer .footer-col-links a,
.homepage-body .footer .footer-bottom a,
.homepage-body .footer .flinks a {
  color: #2563eb;
  -webkit-text-fill-color: #2563eb;
}
.homepage-body .site-menu__section h3,
.homepage-body .footer .footer-col-t {
  color: #000;
  -webkit-text-fill-color: #000;
}

/* The footer reuses the exact header brand lockup. */
.homepage-body .footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #172033;
  text-decoration: none;
}
.homepage-body .footer-brand-lockup img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: cover;
  display: block;
  flex: 0 0 30px;
}
.homepage-body .footer-brand-lockup .tb-logo-txt {
  color: #172033;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -.04em;
}
.homepage-body .footer-brand-lockup .tb-logo-txt span { color: #2563eb; }
.homepage-body .footer-brand-sub { display: block; color: #172033; }

@media (max-width: 640px) {
  .homepage-body { background-attachment: scroll; }
}

@media (min-width: 901px) {
  .homepage-body,
  html[data-atmosphere-level="light"] body.homepage-body,
  html[data-atmosphere-level="mid"] body.homepage-body {
    background-color: #f3f5f8 ;
    background-image: linear-gradient(135deg, #f7f8fb 0%, #eef2f7 52%, #f8f9fb 100%) ;
    background-attachment: scroll;
  }
}


/* Homepage typography and card rhythm — compact, centered, readable. */
.homepage-body .hero-search button,
.homepage-body .gbtn,
.homepage-body .stat-fact-button,
.homepage-body .home-showcase-slide__action,
.homepage-body .return-relocation__link {
  color: #ffffff ;
  -webkit-text-fill-color: #ffffff ;
}
.homepage-body .hero-search button,
.homepage-body .gbtn,
.homepage-body .stat-fact-button {
  font-weight: 800;
}

/* The two relocation cards are short centered banners, not tall text panels. */
.homepage-body .return-relocation__card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  padding: 18px 26px;
  text-align: center;
}
.homepage-body .return-relocation__card > div { width: 100%; }
.homepage-body .return-relocation__card h3 {
  max-width: none;
  margin: 0;
  color: #102a56 ;
  -webkit-text-fill-color: #102a56 ;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.08;
}
.homepage-body .return-relocation__card p {
  max-width: 680px;
  margin: 7px auto 0;
  color: #475569 ;
  -webkit-text-fill-color: #475569 ;
  font-size: 12px;
  line-height: 1.42;
}
.homepage-body .return-relocation__card .return-title-accent {
  color: #4f46e5 ;
  -webkit-text-fill-color: #4f46e5 ;
}

/* Statistics cards: balanced height and centered hierarchy. */
.homepage-body .stats.stats-live > .stat-live {
  min-height: 218px;
  height: auto;
  padding: 20px 18px;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #102a56 ;
  -webkit-text-fill-color: #102a56 ;
}
.homepage-body .stat-live .stat-v,
.homepage-body .stat-live .stat-fact-kicker,
.homepage-body .stat-live .stat-fact-question,
.homepage-body .stat-live .stat-l,
.homepage-body .stat-live .stat-t,
.homepage-body .stat-live .stat-sub,
.homepage-body .stat-live .stat-fact-copy,
.homepage-body .stat-live .stat-stiaiCA-txt,
.homepage-body .stat-live #val-extra {
  text-align: center;
}
.homepage-body .stat-live .stat-fact-kicker {
  color: #102a56 ;
  -webkit-text-fill-color: #102a56 ;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .12em;
}
.homepage-body .stat-live .stat-fact-question {
  color: #1e40af ;
  -webkit-text-fill-color: #1e40af ;
  font-size: 20px;
  line-height: 1.12;
}
.homepage-body .stat-live .stat-fact-copy,
.homepage-body .stat-live .stat-sub,
.homepage-body .stat-live .stat-stiaiCA-txt {
  color: #475569 ;
  -webkit-text-fill-color: #475569 ;
  font-size: 12px;
  line-height: 1.45;
}
.homepage-body .stat-live .stat-v {
  color: #102a56 ;
  -webkit-text-fill-color: #102a56 ;
}

@media (max-width: 700px) {
  .homepage-body .return-relocation__card {
    min-height: 96px;
    padding: 15px 16px;
  }
  .homepage-body .return-relocation__card h3 { font-size: 21px; }
  .homepage-body .return-relocation__card p { margin-top: 6px; font-size: 11.5px; }
  .homepage-body .stats.stats-live > .stat-live {
    min-height: 184px;
    padding: 16px 12px;
  }
}


.homepage-body .stats.stats-live {
  align-items: stretch;
}
.homepage-body .stats.stats-live > .stat-live {
  min-height: 220px ;
  padding: 17px 16px ;
  overflow: hidden;
}
.homepage-body .stats.stats-live > .stat-live .stat-fact-kicker {
  margin-bottom: 5px;
  font-size: 11px;
}
.homepage-body .stats.stats-live > .stat-live .stat-fact-question {
  margin: 3px 0 5px;
  font-size: 18px;
  line-height: 1.12;
}
.homepage-body .stats.stats-live > .stat-live .stat-fact-copy {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 7px 0 9px;
  padding: 7px 0 5px;
  font-size: 11.5px;
  line-height: 1.35;
}
.homepage-body .stats.stats-live > .stat-live .stat-combined__eyebrow {
  margin-bottom: 4px;
  font-size: 10px;
}
.homepage-body .stats.stats-live > .stat-live .stat-combined__metrics {
  min-height: 78px;
}
.homepage-body .stats.stats-live > .stat-live .stat-combined__currency {
  margin-top: 5px;
  padding-top: 5px;
}
.homepage-body .stats.stats-live > .stat-live .stat-combined__currency-title {
  font-size: 9px;
  line-height: 1.1;
}
.homepage-body .stats.stats-live > .stat-live .stat-combined__updated,
.homepage-body .stats.stats-live > .stat-live .hero-currency-row,
.homepage-body .stats.stats-live > .stat-live #val-extra {
  font-size: 10px;
  line-height: 1.25;
}

@media (max-width: 700px) {
  .homepage-body .stats.stats-live > .stat-live {
    min-height: 188px ;
    padding: 14px 11px ;
  }
  .homepage-body .stats.stats-live > .stat-live .stat-fact-copy { -webkit-line-clamp: 4; }
}


/* Three fact cards only: compact, readable, and complete on mobile. */
.homepage-body .stats.stats-live {
  grid-template-columns: repeat(3, minmax(0, 1fr)) ;
  align-items: start ;
  gap: 14px ;
}
.homepage-body .stats.stats-live > .stat-rotating-card {
  height: 210px ;
  min-height: 210px ;
  box-sizing: border-box ;
  padding: 18px 18px 16px ;
  overflow: hidden ;
  align-self: start ;
  align-items: flex-start ;
  justify-content: flex-start ;
  text-align: left ;
  border: 1px solid #dbe4ef ;
  border-radius: 22px ;
  background: #ffffff ;
  box-shadow: 0 10px 24px rgba(30,64,120,.08) ;
}
.homepage-body .stats.stats-live > .stat-rotating-card .stat-fact-kicker {
  margin: 0 0 7px ;
  color: #4f46e5 ;
  -webkit-text-fill-color: #4f46e5 ;
  font-family: inherit ;
  font-size: 11px ;
  font-weight: 800 ;
  letter-spacing: .10em ;
  line-height: 1.2 ;
  text-align: left ;
  text-transform: uppercase ;
}
.homepage-body .stats.stats-live > .stat-rotating-card .stat-fact-question {
  margin: 0 0 7px ;
  color: #102a56 ;
  -webkit-text-fill-color: #102a56 ;
  font-family: inherit ;
  font-size: 18px ;
  font-weight: 800 ;
  line-height: 1.15 ;
  text-align: left ;
}
.homepage-body .stats.stats-live > .stat-rotating-card .stat-fact-copy {
  display: -webkit-box ;
  max-height: none ;
  overflow: hidden ;
  -webkit-box-orient: vertical ;
  -webkit-line-clamp: 4 ;
  margin: 0 0 10px ;
  padding: 0 ;
  color: #475569 ;
  -webkit-text-fill-color: #475569 ;
  font-family: inherit ;
  font-size: 12.5px ;
  font-weight: 500 ;
  letter-spacing: 0 ;
  line-height: 1.45 ;
  text-align: left ;
}
.homepage-body .stats.stats-live > .stat-rotating-card .stat-fact-button {
  display: inline-flex ;
  align-self: flex-start ;
  align-items: center ;
  justify-content: center ;
  margin: auto 0 0 ;
  min-height: 36px ;
  padding: 8px 12px ;
  border: 0 ;
  border-radius: 10px ;
  background: #1d4ed8 ;
  color: #ffffff ;
  -webkit-text-fill-color: #ffffff ;
  box-shadow: 0 4px 10px rgba(29,78,216,.18) ;
  font-family: inherit ;
  font-size: 11px ;
  font-weight: 800 ;
  line-height: 1 ;
  white-space: nowrap ;
  cursor: pointer ;
}
.homepage-body .stats.stats-live > .stat-rotating-card .stat-fact-button:hover {
  background: #1e40af ;
  transform: translateY(-1px);
}
@media (max-width: 700px) {
  .homepage-body .stats.stats-live {
    grid-template-columns: 1fr ;
    grid-auto-rows: auto ;
    gap: 6px ;
  }
  .homepage-body .stats.stats-live > .stat-live {
    height: 210px ;
    min-height: 210px ;
    padding: 16px ;
  }
  .homepage-body .stats.stats-live > .stat-rotating-card {
    height: 210px ;
    min-height: 210px ;
    padding: 16px ;
    overflow: hidden ;
  }
  .homepage-body .stats.stats-live > .stat-rotating-card .stat-fact-question {
    font-size: 18px ;
  }
  .homepage-body .stats.stats-live > .stat-rotating-card .stat-fact-copy {
    font-size: 11.5px ;
    line-height: 1.45 ;
  }
  .homepage-body .stats.stats-live > .stat-rotating-card .stat-fact-button {
    min-width: 44px ;
    min-height: 44px ;
    padding: 10px 14px ;
  }
}


/* Showcase controls: arrows flank the panel; dots stay a compact bottom indicator. */
.homepage-body .home-showcase__slides {
  position: relative;
}
.homepage-body .home-showcase__navigation {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  pointer-events: none;
}
.homepage-body .home-showcase__navigation .home-showcase__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  display: flex;
  gap: 7px;
  margin: 0;
  transform: translateX(-50%);
  pointer-events: auto;
}
.homepage-body .home-showcase__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(37,99,235,.32);
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: #1d4ed8;
  box-shadow: 0 4px 12px rgba(30,64,175,.14);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.homepage-body .home-showcase__arrow:hover,
.homepage-body .home-showcase__arrow:focus-visible {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(30,64,175,.25);
}
@media (max-width: 560px) {
  .homepage-body .home-showcase__navigation {
    align-items: flex-start;
    box-sizing: border-box;
    padding: 83px 8px 0;
  }
  .homepage-body .home-showcase__arrow { width: 34px; height: 34px; font-size: 22px; }
.homepage-body .home-showcase-slide__visual {
  background: rgba(255,255,255,.08) ;
}
.homepage-body .footer {
  background: rgba(255,255,255,.82) ;
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
}
}
/* Homepage narrow-header containment: keep language control and menu inside the viewport. */
@media (max-width: 360px) {
  .homepage-body #dpr-global-language-select {
    width: 82px;
    max-width: 82px;
  }
}


/* Homepage footer separators and compact mobile ending. */
.footer-bottom {
  justify-content: flex-start;
  gap: 0;
  flex-wrap: wrap;
}
.footer-bottom .flinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.footer-bottom .flinks a {
  display: inline-flex;
  align-items: center;
}
.footer-bottom .fcopy {
  display: inline-flex;
  align-items: center;
}
.footer-bottom .fcopy::before {
  content: '|';
  display: inline-block;
  margin: 0 .55em;
  color: #94a3b8;
}
@media (max-width:768px) {
  .footer { padding-bottom: 16px; }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .footer-bottom .flinks {
    overflow: visible;
  }
}

/* Homepage Mobile accessibility contract — 2026-09-20. */
.homepage-body :is(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(37, 99, 235, .82);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .homepage-body #dpr-global-language-select {
    min-height: 44px;
  }

  /* Keep each dot easy to tap while its visible mark stays small. */
  .homepage-body .home-showcase__dots button {
    position: relative;
    display: grid;
    background: transparent ;
    width: 32px;
    min-width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
  }
  .homepage-body .home-showcase__dots button::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.72);
    content: '';
  }
  .homepage-body .home-showcase__dots button[aria-current="true"] {
    background: transparent ;
  }
  .homepage-body .home-showcase__dots button[aria-current="true"]::before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(29,78,216,.28);
  }
}

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

/* Homepage mobile touch contract — source-owned controls, 2026-09-20. */
@media (max-width: 900px) {
  .homepage-body .site-header-stack .site-menu-trigger,
  .homepage-body .site-menu__close {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    box-sizing: border-box;
  }

  .homepage-body .hero-search input,
  .homepage-body .hero-search button,
  .homepage-body .hero-compact-action,
  .homepage-body .hero-search-suggestions a {
    min-height: 44px;
  }
  .homepage-body .hero-compact-action {
    white-space: nowrap;
  }

  .homepage-body .home-showcase__arrow {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .homepage-body .home-showcase__dots button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .homepage-body .stats.stats-live > .stat-rotating-card .stat-fact-button {
    min-width: 44px;
    min-height: 44px;
    padding: 10px 14px;
  }

  .homepage-body .footer-app-socials .footer-soc-btn {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }
}

/* Canonical mobile page background ownership. */
@media (max-width: 900px) {
  .homepage-body {
    background-image: url('/assets/img/homepage-background-fullhd-modern-20260907.jpg');
    background-image: image-set(url('/assets/img/homepage-background-fullhd-modern-20260907.webp') type('image/webp') 1x, url('/assets/img/homepage-background-fullhd-modern-20260907.jpg') type('image/jpeg') 1x);
    background-color: #f7faff;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }
}
