:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5b6570;
  --line: #d9dee5;
  --paper: #ffffff;
  --soft: #f5f7f9;
  --accent: #0f766e;
  --accent-strong: #115e59;
  --gold: #b88a2a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Vazirmatn", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--soft);
  color: var(--ink);
  line-height: 1.8;
}

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

.coming-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(16px, 5vw, 32px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(24, 24, 24, 0.92)),
    var(--soft);
}

.coming-panel {
  position: relative;
  overflow: hidden;
  width: min(680px, 100%);
  text-align: center;
  background: #f8f8f6;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: clamp(28px, 7vw, 68px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.coming-panel::before {
  content: "";
  position: absolute;
  top: 28px;
  left: -58px;
  width: 230px;
  height: 34px;
  background: linear-gradient(135deg, #020202 0%, #111 52%, #000 100%);
  transform: rotate(-45deg);
  transform-origin: center;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.24) inset;
}

.brand-logo {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 22px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 10px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.15;
  margin-bottom: 16px;
}

h2 { font-size: clamp(24px, 4vw, 36px); line-height: 1.25; }
h3 { font-size: 18px; margin-bottom: 6px; }

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 700px;
  margin-inline: auto;
}

.text-link {
  display: inline-flex;
  margin-top: 32px;
  color: var(--accent-strong);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.site-header nav { display: flex; gap: 18px; color: var(--muted); font-size: 14px; }

.home-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(195, 20, 30, 0.06) 0 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f5f7f9 50%, #ffffff 100%);
  background-size: 72px 72px, auto;
}

.home-header,
.home-hero,
.home-strip,
.home-section {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.home-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
  padding-block: 12px;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111820;
  font-weight: 700;
}

.home-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.home-header nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 0;
  gap: clamp(14px, 3vw, 28px);
  color: #53606b;
  font-size: 14px;
}

.home-header nav a:hover { color: #c3141e; }

@media (min-width: 761px) and (max-width: 900px) {
  .home-header {
    flex-wrap: wrap;
    height: auto;
    padding-block: 16px;
  }
  .home-header nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
    white-space: normal;
  }
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  min-height: clamp(520px, 70vh, 660px);
  padding: clamp(28px, 6vw, 70px) 0 clamp(28px, 5vw, 56px);
}

.home-kicker {
  margin-bottom: 12px;
  color: #c3141e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: #101820;
  font-size: clamp(34px, 5.2vw, 68px);
}

.home-lead {
  max-width: 730px;
  color: #4f5d68;
  font-size: clamp(17px, 1.8vw, 20px);
}

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

.home-hero__signal {
  display: grid;
  gap: 12px;
}

.signal-main {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 190px;
  padding: 28px;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.78)),
    #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
}

.signal-main img {
  width: clamp(92px, 11vw, 132px);
  height: clamp(92px, 11vw, 132px);
  flex: 0 0 auto;
  object-fit: contain;
}

.signal-main strong {
  display: block;
  color: #101820;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.2;
}

.signal-main span,
.signal-stack span {
  color: #60707c;
  font-weight: 700;
}

.signal-stack {
  display: grid;
  gap: 10px;
}

.signal-stack span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 12px 18px;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.signal-stack b {
  color: #c3141e;
  font-weight: 700;
}

.home-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: #dfe5ea;
}

.home-strip div {
  min-height: 118px;
  padding: 22px 24px;
  background: #101820;
  color: #fff;
}

.home-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.home-strip span {
  color: rgba(255, 255, 255, 0.7);
}

.home-section {
  padding: clamp(50px, 7vw, 82px) 0 0;
}

.home-section__head {
  max-width: 760px;
  margin-bottom: 28px;
}

.home-section__head h2,
.home-contact h2 {
  color: #101820;
  font-size: clamp(28px, 4.6vw, 48px);
}

.home-grid {
  display: grid;
  gap: 16px;
}

.home-grid.three { grid-template-columns: repeat(3, 1fr); }

.home-tile,
.brand-item,
.brand-feature {
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: #fff;
}

.home-tile {
  min-height: 230px;
  padding: 24px 26px;
}

.tile-index {
  display: inline-block;
  margin-bottom: 34px;
  color: #c3141e;
  font-weight: 700;
}

.home-tile h3,
.brand-item h3,
.brand-feature h3 {
  color: #101820;
  font-size: 22px;
}

.home-tile p,
.brand-item p,
.brand-feature p,
.home-contact p {
  color: #5a6874;
}

.brand-section { padding-bottom: 18px; }

.brand-list {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
  gap: 16px;
}

.brand-feature {
  grid-row: span 2;
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 24px;
  min-height: 300px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(227, 20, 25, 0.1), rgba(255, 255, 255, 0.96) 58%),
    #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.brand-feature img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-feature span {
  color: #c3141e;
  font-weight: 700;
}

.brand-feature:hover,
.brand-feature:focus-visible {
  border-color: rgba(195, 20, 30, 0.45);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.1);
  transform: translateY(-2px);
}

.brand-feature:focus-visible {
  outline: 3px solid rgba(195, 20, 30, 0.18);
  outline-offset: 3px;
}

.brand-item {
  min-height: 142px;
  padding: 22px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.brand-item:hover,
.brand-item:focus-visible {
  border-color: rgba(195, 20, 30, 0.45);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.brand-item:focus-visible {
  outline: 3px solid rgba(195, 20, 30, 0.18);
  outline-offset: 3px;
}

.home-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(56px, 8vw, 92px);
  margin-bottom: 32px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.05), rgba(195, 20, 30, 0.08)),
    #fff;
}

.home-contact > div { max-width: 720px; }

.home-page::after {
  content: "";
  display: block;
  height: 24px;
}

.home-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: clamp(42px, 7vw, 72px) auto 0;
  padding: 22px 0 34px;
  border-top: 1px solid #dfe5ea;
  color: #60707c;
  font-size: 14px;
}

.home-footer p,
.home-footer span {
  margin: 0;
}

.home-footer p {
  color: #101820;
  font-weight: 700;
}

.about-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(195, 20, 30, 0.05) 0 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f5f7f9 46%, #ffffff 100%);
  background-size: 72px 72px, auto;
}

.about-hero,
.about-section {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(42px, 7vw, 88px) 0 clamp(34px, 6vw, 72px);
}

.about-hero h1 {
  max-width: 860px;
  margin-bottom: 22px;
  color: #101820;
  font-size: clamp(34px, 5vw, 64px);
}

.about-lead {
  max-width: 820px;
  color: #4f5d68;
  font-size: clamp(17px, 1.8vw, 20px);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-identity {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 330px;
  padding: 34px;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.78)),
    #fff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
  text-align: center;
}

.about-identity img {
  width: clamp(116px, 14vw, 164px);
  height: clamp(116px, 14vw, 164px);
  object-fit: contain;
  margin-bottom: 20px;
}

.about-identity strong {
  color: #101820;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.2;
}

.about-identity span {
  max-width: 280px;
  color: #60707c;
  font-weight: 700;
}

.about-section {
  padding-top: clamp(46px, 7vw, 82px);
}

.about-section__head {
  max-width: 780px;
  margin-bottom: 24px;
}

.about-section__head h2 {
  color: #101820;
  font-size: clamp(28px, 4.4vw, 46px);
}

.about-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-copy p,
.about-closing p {
  margin: 0;
  color: #4f5d68;
  font-size: 18px;
}

.about-copy p,
.about-pillars article,
.about-closing {
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.about-copy p {
  display: flex;
  align-items: center;
  padding: 24px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-pillars article {
  min-height: 240px;
  padding: 24px;
}

.about-pillars span {
  display: inline-block;
  margin-bottom: 34px;
  color: #c3141e;
  font-weight: 700;
}

.about-pillars h3 {
  color: #101820;
  font-size: 21px;
}

.about-pillars p {
  color: #5a6874;
}

.about-brand-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.about-brand-list a {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 14px;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: #fff;
  color: #101820;
  font-weight: 700;
  text-align: center;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.about-brand-list a:hover,
.about-brand-list a:focus-visible {
  border-color: rgba(195, 20, 30, 0.45);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.08);
  transform: translateY(-2px);
}

.about-brand-list a:focus-visible {
  outline: 3px solid rgba(195, 20, 30, 0.18);
  outline-offset: 3px;
}

.about-closing {
  margin-top: clamp(18px, 3vw, 28px);
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.04), rgba(195, 20, 30, 0.08)),
    #fff;
}

.brand-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(195, 20, 30, 0.04) 0 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f6f8fa 50%, #ffffff 100%);
  background-size: 84px 84px, auto;
}

.brand-hero,
.brand-reference,
.brand-section {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.brand-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding: clamp(46px, 8vw, 92px) 0 clamp(24px, 5vw, 46px);
}

.brand-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: #101820;
  font-size: clamp(40px, 6vw, 76px);
}

.brand-lead {
  max-width: 820px;
  color: #4f5d68;
  font-size: clamp(18px, 2vw, 22px);
}

.brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.brand-passport {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(16, 24, 32, 0.08);
}

.brand-passport span,
.brand-facts span,
.brand-related-grid span,
.brand-reference-list span {
  color: #9f1119;
  font-size: 13px;
  font-weight: 800;
}

.brand-passport strong {
  color: #101820;
  font-size: 26px;
  line-height: 1.45;
}

.brand-passport p {
  margin-bottom: 0;
  color: #60707c;
  font-weight: 700;
}

.brand-reference {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.brand-copy,
.brand-facts,
.brand-reference-list article,
.brand-related-grid a {
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.brand-copy {
  padding: clamp(24px, 4vw, 38px);
}

.brand-copy h2 {
  margin-bottom: 16px;
  color: #101820;
}

.brand-copy p:last-child {
  margin-bottom: 0;
  color: #4f5d68;
  font-size: 18px;
}

.brand-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.brand-facts div {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 136px;
  padding: 22px;
  border-bottom: 1px solid #dfe5ea;
  border-inline-start: 1px solid #dfe5ea;
}

.brand-facts div:nth-child(2n) {
  border-inline-start: 0;
}

.brand-facts div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.brand-facts strong {
  color: #101820;
  line-height: 1.7;
}

.brand-section {
  padding-top: clamp(34px, 6vw, 64px);
}

.brand-reference-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.brand-reference-list article {
  min-height: 170px;
  padding: 24px;
}

.brand-reference-list p {
  margin: 12px 0 0;
  color: #38444f;
  font-weight: 700;
}

.brand-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.brand-app-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: #101820;
  color: #fff;
  box-shadow: 0 14px 35px rgba(16, 24, 32, 0.1);
}

.brand-app-card:hover,
.brand-app-card:focus-visible {
  border-color: #c3141e;
  background: #1a252e;
  transform: translateY(-2px);
}

.brand-app-card img {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 8px;
}

.brand-app-card span {
  display: grid;
  gap: 2px;
}

.brand-app-card small {
  color: #b7c0c7;
  font-size: 13px;
}

.brand-app-card strong {
  color: #fff;
  font-size: 20px;
}

.province-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(34px, 6vw, 64px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid #dfe5ea;
  border-inline-start: 5px solid #c3141e;
  border-radius: 8px;
  background: #fff;
}

.province-callout h2,
.province-callout p:last-child {
  margin-bottom: 0;
}

.province-page {
  min-height: 100vh;
  background: linear-gradient(90deg, rgba(195, 20, 30, 0.04) 0 1px, transparent 1px), #f7f9fa;
  background-size: 84px 84px;
}

.province-index-hero,
.province-directory,
.province-hero,
.province-links,
.province-more {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.province-index-hero {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(54px, 9vw, 110px) 0 40px;
  text-align: center;
}

.province-index-hero h1,
.province-hero h1 {
  color: #101820;
  font-size: clamp(38px, 6vw, 70px);
}

.province-index-hero > p:last-child,
.province-hero > div > p:last-child {
  color: #586773;
  font-size: 19px;
}

.province-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 50px;
}

.province-directory a {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: #fff;
}

.province-directory a:hover,
.province-directory a:focus-visible {
  border-color: #c3141e;
  transform: translateY(-2px);
}

.province-directory span,
.province-directory small,
.province-hero aside span {
  color: #a91820;
  font-weight: 800;
}

.province-directory strong {
  color: #101820;
  font-size: 19px;
}

.province-directory small {
  align-self: end;
  color: #74818a;
}

.province-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 42px;
  align-items: end;
  padding: clamp(50px, 8vw, 96px) 0 40px;
}

.province-hero aside {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: #fff;
}

.province-hero aside strong {
  color: #101820;
  font-size: 26px;
}

.province-hero aside small {
  color: #687680;
}

.province-links,
.province-more {
  padding: 28px 0 42px;
}

.province-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.province-social {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 18px;
  border-radius: 8px;
  background: #101820;
  color: #fff;
}

.province-social > span {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  background: #c3141e;
  overflow: hidden;
}

.province-social > span img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.province-social div {
  display: grid;
}

.province-social small { color: #b8c1c7; }
.province-social strong { color: #fff; font-size: 20px; }
.province-social:hover, .province-social:focus-visible { background: #1d2932; transform: translateY(-2px); }
.province-social--telegram > span,
.province-social--soroush > span,
.province-social--rubika > span,
.province-social--eitaa > span,
.province-social--bale > span,
.province-social--instagram > span { background: #fff; }

.province-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.province-chips a {
  padding: 9px 13px;
  border: 1px solid #d9e0e5;
  border-radius: 6px;
  background: #fff;
  color: #34414b;
  font-size: 14px;
  font-weight: 700;
}

.province-chips a:hover,
.province-chips a:focus-visible { border-color: #c3141e; color: #a91820; }

.home-section-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.portfolio-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(195, 20, 30, 0.045) 0 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f5f7f8 55%, #fff 100%);
  background-size: 84px 84px, auto;
}

.portfolio-hero,
.portfolio-intro,
.portfolio-brands,
.portfolio-network {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.portfolio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: end;
  padding: clamp(58px, 10vw, 120px) 0 46px;
}

.portfolio-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: #101820;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.25;
}

.portfolio-hero__copy > p:last-child {
  max-width: 800px;
  margin-bottom: 0;
  color: #52616c;
  font-size: clamp(18px, 2vw, 22px);
}

.portfolio-summary {
  border: 1px solid #dce3e8;
  border-radius: 8px;
  overflow: hidden;
  background: #101820;
  color: #fff;
}

.portfolio-summary div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 94px;
  padding: 17px 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.portfolio-summary div:last-child { border-bottom: 0; }
.portfolio-summary strong { color: #ff3944; font-size: 34px; }
.portfolio-summary span { color: #eef2f4; font-weight: 700; }

.portfolio-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 30px;
  border-block: 1px solid #dce3e8;
}

.portfolio-intro > p {
  max-width: 730px;
  margin: 0;
  color: #3f4d57;
  font-size: 18px;
}

.portfolio-intro > div {
  display: grid;
  gap: 6px;
  color: #9f1119;
  font-size: 14px;
  font-weight: 800;
}

.portfolio-brands { padding: clamp(48px, 8vw, 84px) 0; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-card {
  display: grid;
  align-content: end;
  min-height: 290px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid #dce3e8;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: #101820;
}

.portfolio-card--featured {
  grid-row: span 2;
  min-height: 594px;
  background: #101820;
  color: #fff;
}

.portfolio-card__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-self: start;
  margin-bottom: auto;
}

.portfolio-card__top span { color: #c3141e; font-weight: 900; }
.portfolio-card__top small { color: #7a8790; font-weight: 700; }
.portfolio-card--featured .portfolio-card__top small { color: #c3cbd0; }

.portfolio-card img {
  width: min(220px, 60%);
  margin: 46px auto auto;
  border-radius: 8px;
}

.portfolio-card > p {
  margin: 24px 0 4px;
  color: #a91820;
  font-size: 14px;
  font-weight: 800;
}

.portfolio-card h3 {
  margin-bottom: 20px;
  color: inherit;
  font-size: clamp(25px, 3vw, 36px);
}

.portfolio-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid #dce3e8;
  color: #5e6c76;
  font-weight: 700;
}

.portfolio-card--featured .portfolio-card__meta { border-color: rgba(255,255,255,.15); color: #d7dde1; }
.portfolio-card__meta b { color: #c3141e; font-size: 23px; }
.portfolio-card:hover, .portfolio-card:focus-visible { border-color: #c3141e; transform: translateY(-3px); }

.portfolio-network {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: center;
  padding: clamp(30px, 6vw, 60px);
  border-radius: 8px;
  background: #eef1f3;
}

.portfolio-network h2 { margin-bottom: 14px; color: #101820; }
.portfolio-network p:not(.home-kicker) { max-width: 640px; color: #586670; }
.portfolio-network .button { margin-top: 12px; }

.portfolio-network__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #cbd4da;
}

.portfolio-network__facts div {
  display: grid;
  gap: 4px;
  padding: 22px 12px;
  border-inline-start: 1px solid #cbd4da;
  text-align: center;
}

.portfolio-network__facts div:first-child { border-inline-start: 0; }
.portfolio-network__facts strong { color: #c3141e; font-size: 30px; }
.portfolio-network__facts span { color: #45535d; font-size: 13px; font-weight: 700; }

.press-page {
  min-height: 100vh;
  background: linear-gradient(90deg, rgba(195,20,30,.045) 0 1px, transparent 1px), #f7f9fa;
  background-size: 84px 84px;
}

.press-hero, .press-nav, .press-section, .press-contact {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.press-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: clamp(36px, 7vw, 90px);
  align-items: end;
  padding: clamp(58px, 10vw, 112px) 0 48px;
}

.press-hero h1 { color: #101820; font-size: clamp(50px, 8vw, 90px); }
.press-hero > div > p:not(.home-kicker) { max-width: 760px; color: #52616c; font-size: 20px; }

.press-identity {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 0 18px;
  padding: 24px;
  border: 1px solid #dce3e8;
  border-radius: 8px;
  background: #fff;
}
.press-identity img { grid-row: span 2; width: 86px; height: 86px; object-fit: contain; }
.press-identity div { display: grid; align-content: center; }
.press-identity span { color: #a91820; font-size: 12px; font-weight: 800; }
.press-identity strong { color: #101820; }

.press-nav {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 8px;
  border: 1px solid #dce3e8;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 30px rgba(16,24,32,.06);
}
.press-nav a { flex: 1 0 auto; padding: 9px 13px; border-radius: 5px; color: #56646e; text-align: center; font-size: 13px; font-weight: 800; }
.press-nav a:hover, .press-nav a:focus-visible { background: #f2f4f6; color: #a91820; }

.press-section { padding: clamp(52px, 8vw, 88px) 0 0; }
.press-facts { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #dce3e8; border-radius: 8px; overflow: hidden; background: #fff; }
.press-facts div { display: grid; gap: 8px; min-height: 130px; padding: 24px; border-bottom: 1px solid #dce3e8; border-inline-start: 1px solid #dce3e8; }
.press-facts div:nth-child(3n + 1) { border-inline-start: 0; }
.press-facts div:nth-last-child(-n + 3) { border-bottom: 0; }
.press-facts span { color: #76838d; font-size: 13px; font-weight: 700; }
.press-facts strong { color: #101820; font-size: 20px; }

.press-timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.press-timeline article { display: grid; grid-template-columns: 62px 1fr; gap: 15px; min-height: 170px; padding: 22px; border: 1px solid #dce3e8; border-radius: 8px; background: #fff; }
.press-timeline article > span { color: #c3141e; font-weight: 900; }
.press-timeline h3 { color: #101820; }
.press-timeline p { margin: 0; color: #65727c; font-size: 14px; }

.press-copy-grid { display: grid; gap: 14px; }
.press-copy-grid article { padding: clamp(22px, 4vw, 34px); border: 1px solid #dce3e8; border-radius: 8px; background: #fff; }
.press-copy-grid article > div { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 18px; color: #a91820; font-weight: 800; }
.press-copy-grid p { max-width: 930px; margin: 0; color: #34424c; font-size: 17px; }
.press-copy { padding: 7px 12px; border: 1px solid #cbd4da; border-radius: 5px; background: #f7f9fa; color: #34424c; font: inherit; font-size: 12px; cursor: pointer; }
.press-copy:hover, .press-copy:focus-visible { border-color: #c3141e; color: #a91820; }

.press-brand-table { border: 1px solid #dce3e8; border-radius: 8px; overflow: hidden; background: #fff; }
.press-brand-table a { display: grid; grid-template-columns: minmax(230px, 1fr) minmax(200px, .8fr) 90px; gap: 20px; align-items: center; min-height: 104px; padding: 18px 24px; border-bottom: 1px solid #dce3e8; }
.press-brand-table a:last-child { border-bottom: 0; }
.press-brand-table a:hover, .press-brand-table a:focus-visible { background: #f8fafb; }
.press-brand-table div { display: grid; }
.press-brand-table strong { color: #101820; font-size: 18px; }
.press-brand-table span, .press-brand-table p { margin: 0; color: #6a7781; font-size: 13px; }
.press-brand-table b { color: #a91820; font-size: 13px; }
.press-province-link { display: flex; justify-content: space-between; gap: 24px; margin-top: 14px; padding: 24px; border-radius: 8px; background: #101820; color: #fff; }
.press-province-link span { color: #ff4650; font-weight: 800; }

.press-downloads { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.press-downloads a { display: grid; grid-template-columns: 70px 1fr auto; gap: 18px; align-items: center; min-height: 118px; padding: 20px; border: 1px solid #dce3e8; border-radius: 8px; background: #fff; }
.press-downloads a:hover, .press-downloads a:focus-visible { border-color: #c3141e; transform: translateY(-2px); }
.press-downloads img, .press-file-mark { display: grid; width: 70px; height: 70px; place-items: center; object-fit: contain; border-radius: 7px; background: #eef1f3; }
.press-file-mark { color: #a91820; font-size: 13px; font-weight: 900; }
.press-downloads div { display: grid; }
.press-downloads strong { color: #101820; }
.press-downloads span { color: #74818a; font-size: 12px; }
.press-downloads b { color: #a91820; font-size: 13px; }

.press-usage { display: grid; grid-template-columns: 310px 1fr; gap: 50px; }
.press-rules { display: grid; gap: 10px; }
.press-rules article { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 20px; border-bottom: 1px solid #dce3e8; }
.press-rules span { color: #c3141e; font-weight: 900; }
.press-rules p { margin: 0; color: #45535d; }

.press-contact { display: flex; justify-content: space-between; gap: 40px; align-items: center; margin-top: clamp(54px, 9vw, 96px); padding: clamp(28px, 5vw, 50px); border-radius: 8px; background: #eef1f3; }
.press-contact > div { max-width: 720px; }
.press-contact h2 { color: #101820; }
.press-contact p:last-child { margin: 0; color: #5b6872; }

.career-page { min-height: 100vh; background: linear-gradient(90deg, rgba(195,20,30,.04) 0 1px, transparent 1px), #f7f9fa; background-size: 84px 84px; }
.career-hero, .career-values, .career-openings, .career-account, .job-hero, .job-layout, .job-cta, .candidate-header, .candidate-layout, .apply-header, .apply-layout, .career-message { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.career-hero { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(38px,7vw,90px); align-items: end; padding: clamp(56px,9vw,108px) 0 48px; }
.career-hero h1, .job-hero h1 { color: #101820; font-size: clamp(42px,6.5vw,76px); }
.career-hero > div > p:last-child, .job-hero > div > p { max-width: 760px; color: #566570; font-size: 19px; }
.career-hero aside { padding: 27px; border: 1px solid #dce3e8; border-radius: 8px; background: #101820; color: #fff; }
.career-hero aside span, .career-hero aside strong { display: block; }
.career-hero aside span { color: #ff4650; font-size: 13px; font-weight: 800; }
.career-hero aside strong { margin: 8px 0; font-size: 23px; }
.career-hero aside p { margin: 0; color: #c2cbd0; font-size: 14px; }
.career-values { display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid #dce3e8; }
.career-values article { min-height: 210px; padding: 28px; border-inline-start: 1px solid #dce3e8; }
.career-values article:first-child { border-inline-start: 0; }
.career-values span { color: #c3141e; font-weight: 900; }
.career-values h2 { margin: 28px 0 8px; color: #101820; font-size: 24px; }
.career-values p { margin: 0; color: #66737d; }
.career-openings { padding: clamp(52px,8vw,88px) 0; }
.career-job-list { border: 1px solid #dce3e8; border-radius: 8px; overflow: hidden; background: #fff; }
.career-job-list > a { display: grid; grid-template-columns: minmax(0,1fr) 280px 120px; gap: 24px; align-items: center; padding: 26px; border-bottom: 1px solid #dce3e8; }
.career-job-list > a:last-child { border-bottom: 0; }
.career-job-list > a:hover { background: #f8fafb; }
.career-job-list span { color: #a91820; font-size: 13px; font-weight: 800; }
.career-job-list h3 { margin: 5px 0; color: #101820; font-size: 22px; }
.career-job-list p { margin: 0; color: #65727c; font-size: 14px; }
.career-job-list ul, .job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.career-job-list li, .job-tags span { padding: 5px 9px; border-radius: 5px; background: #eef1f3; color: #52616b; font-size: 12px; font-weight: 700; }
.career-job-list b { color: #a91820; font-size: 13px; }
.career-empty { padding: 44px; border: 1px solid #dce3e8; border-radius: 8px; background: #fff; text-align: center; }
.career-account, .job-cta { display: flex; justify-content: space-between; gap: 32px; align-items: center; padding: clamp(28px,5vw,46px); border-radius: 8px; background: #eef1f3; }
.career-account h2, .job-cta h2 { margin: 0; color: #101820; }

.job-hero { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 50px; align-items: end; padding: clamp(50px,8vw,94px) 0 44px; }
.job-tags { margin-top: 24px; }
.job-hero aside { display: grid; gap: 10px; padding: 24px; border: 1px solid #dce3e8; border-radius: 8px; background: #fff; }
.job-hero aside > span { color: #a91820; font-size: 13px; font-weight: 800; }
.job-hero aside > strong { color: #101820; font-size: 22px; }
.job-hero aside p { color: #697680; font-size: 13px; }
.job-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 40px; padding: 36px 0 68px; }
.job-description { display: grid; gap: 14px; }
.job-description section { padding: clamp(24px,4vw,36px); border: 1px solid #dce3e8; border-radius: 8px; background: #fff; }
.job-description h2 { color: #101820; }
.job-description p, .job-description li { color: #4f5d67; }
.job-description ul { display: grid; gap: 8px; padding-right: 22px; }
.job-process { align-self: start; position: sticky; top: 24px; padding: 24px; border-right: 3px solid #c3141e; background: #eef1f3; }
.job-process ol { display: grid; gap: 17px; padding: 0; list-style: none; }
.job-process li { display: flex; gap: 12px; color: #34414b; font-weight: 700; }
.job-process li span { color: #c3141e; }
.job-process > p:last-child { margin: 20px 0 0; color: #697680; font-size: 13px; }

.career-auth { min-height: 100vh; display: grid; place-items: center; padding: 70px 16px; background: linear-gradient(90deg,rgba(195,20,30,.05) 0 1px,transparent 1px),#f4f6f8; background-size: 84px 84px; }
.career-auth__brand { position: absolute; top: 26px; right: 32px; color: #101820; font-weight: 900; }
.career-auth > section { width: min(520px,100%); padding: clamp(28px,6vw,48px); border: 1px solid #dce3e8; border-radius: 8px; background: #fff; box-shadow: 0 22px 60px rgba(16,24,32,.08); }
.career-auth h1 { color: #101820; font-size: 42px; }
.career-auth p { color: #64717b; }
.career-auth form { display: grid; gap: 18px; margin-top: 28px; }
.career-auth .button { width: 100%; }
.career-back { display: block; margin-top: 22px; color: #687680; text-align: center; font-size: 13px; }
.career-auth__brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; }
.career-auth__brand img { width: 42px; height: 42px; object-fit: contain; }
.career-auth--logged-out { background: radial-gradient(circle at 78% 14%,rgba(196,24,33,.1),transparent 30%),linear-gradient(135deg,#faf7f0 0%,#f4f6f8 55%,#edf3f1 100%); }
.career-auth--logged-out > section { position: relative; overflow: hidden; border-color: rgba(16,24,32,.1); border-radius: 24px; text-align: center; }
.career-auth--logged-out > section::before { position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg,#c41821,#e9a43a,#32856d); content: ""; }
.career-auth__success { display: grid; width: 76px; height: 76px; margin: 0 auto 24px; place-items: center; border-radius: 50%; background: #e5f1ed; color: #25725d; box-shadow: 0 0 0 10px rgba(50,133,109,.08); }
.career-auth__success span { font-size: 38px; font-weight: 800; line-height: 1; }
.career-auth--logged-out h1 { margin: 8px 0 14px; font-size: clamp(34px,7vw,48px); }
.career-auth--logged-out p:not(.home-kicker) { max-width: 410px; margin-inline: auto; line-height: 2; }
.career-auth__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.career-auth__actions .button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; }
@media (max-width: 560px) { .career-auth__actions { grid-template-columns: 1fr; } .career-auth__brand { right: 20px; } }

.candidate-header { display: flex; justify-content: space-between; gap: 30px; align-items: end; padding: 56px 0 30px; }
.candidate-header h1, .apply-header h1 { color: #101820; }
.candidate-header p { margin: 0; color: #66737d; }
.candidate-layout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 18px; align-items: start; }
.candidate-form, .candidate-applications, .apply-form, .apply-profile { padding: clamp(22px,4vw,34px); border: 1px solid #dce3e8; border-radius: 8px; background: #fff; }
.career-form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.career-field { display: grid; gap: 7px; margin-bottom: 18px; }
.career-field--wide { grid-column: 1/-1; }
.career-field label { color: #24313a; font-weight: 800; }
.career-field input, .career-field select, .career-field textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #cfd7dd; border-radius: 6px; background: #fff; color: #172026; font: inherit; }
.career-field textarea { min-height: 130px; resize: vertical; }
.career-field input:focus, .career-field select:focus, .career-field textarea:focus { border-color: #c3141e; outline: 2px solid rgba(195,20,30,.1); }
.career-field small { color: #76838d; font-size: 12px; }
.career-field .errorlist, .career-auth .errorlist { margin: 0; padding: 0; color: #b4232c; font-size: 13px; list-style: none; }
.career-field--code input { direction: ltr; text-align: center; font-size: 27px; letter-spacing: 8px; }
.resume-current { padding: 12px; background: #f0f3f5; color: #5b6872; font-size: 13px; }
.resume-current a { color: #a91820; font-weight: 800; }
.candidate-applications > div { display: grid; gap: 10px; }
.candidate-applications a { display: grid; gap: 4px; padding: 17px; border: 1px solid #dce3e8; border-radius: 7px; }
.candidate-applications a > span, .candidate-applications small { color: #74818a; font-size: 12px; }
.candidate-applications a > strong { color: #101820; }
.application-status { width: fit-content; padding: 4px 8px; border-radius: 4px; background: #eef1f3; color: #52616b; font-size: 11px; }
.application-status--accepted, .application-status--offer { background: #e5f6ee; color: #176b48; }
.application-status--rejected, .application-status--withdrawn { background: #f5e9ea; color: #8d2830; }
.career-message { margin-top: 14px; padding: 13px 18px; border-right: 4px solid #0f766e; border-radius: 6px; background: #e9f5f3; color: #155e58; }

.apply-header { padding: 58px 0 30px; }
.apply-header p { color: #65727c; }
.apply-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 18px; align-items: start; }
.apply-profile { position: sticky; top: 24px; display: grid; gap: 7px; }
.apply-profile > span { color: #a91820; font-size: 13px; font-weight: 800; }
.apply-profile > strong { color: #101820; font-size: 22px; }
.apply-profile p { margin: 0; color: #66737d; }
.apply-profile a { margin-top: 13px; color: #a91820; font-weight: 800; }
.apply-confirm { display: flex; gap: 10px; margin-bottom: 20px; color: #53616b; font-size: 13px; }
.apply-confirm input { flex: 0 0 auto; margin-top: 7px; }

.advertising-page { min-height: 100vh; background: linear-gradient(90deg,rgba(195,20,30,.04) 0 1px,transparent 1px),linear-gradient(180deg,#fff,#f6f8f9 55%,#fff); background-size: 84px 84px,auto; }
.advertising-hero, .advertising-definition, .advertising-section, .advertising-process, .advertising-team, .advertising-cta { width: min(1120px,calc(100% - 32px)); margin-inline: auto; }
.advertising-hero { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: clamp(38px,7vw,88px); align-items: end; padding: clamp(58px,10vw,116px) 0 50px; }
.advertising-hero h1 { max-width: 820px; color: #101820; font-size: clamp(44px,7vw,82px); }
.advertising-hero > div > p:not(.home-kicker) { max-width: 780px; color: #53626d; font-size: 20px; }
.advertising-signal { padding: 28px; border: 1px solid #dce3e8; border-radius: 8px; background: #101820; color: #fff; }
.advertising-signal span { color: #ff4650; font-size: 13px; font-weight: 800; }
.advertising-signal strong { display: block; margin: 10px 0; font-size: 24px; line-height: 1.6; }
.advertising-signal p { margin: 0; color: #c2cbd0; font-size: 14px; }
.advertising-definition { display: grid; grid-template-columns: 340px 1fr; gap: 55px; align-items: center; padding: clamp(30px,5vw,48px); border-block: 1px solid #dce3e8; }
.advertising-definition h2 { margin: 0; color: #101820; }
.advertising-definition > p { margin: 0; color: #45535d; font-size: 18px; }
.advertising-section, .advertising-team { padding: clamp(54px,8vw,88px) 0 0; }
.audience-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.audience-grid article { min-height: 230px; padding: 28px; border: 1px solid #dce3e8; border-radius: 8px; background: #fff; }
.audience-grid span { color: #c3141e; font-weight: 900; }
.audience-grid h3 { margin: 34px 0 8px; color: #101820; font-size: 24px; }
.audience-grid p { margin: 0; color: #65727c; }
.advertising-value-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid #dce3e8; border-radius: 8px; overflow: hidden; background: #fff; }
.advertising-value-grid article { min-height: 220px; padding: 24px; border-inline-start: 1px solid #dce3e8; }
.advertising-value-grid article:first-child { border-inline-start: 0; }
.advertising-value-grid b { display: block; margin-bottom: 18px; color: #101820; font-size: 19px; }
.advertising-value-grid p { margin: 0; color: #66737d; font-size: 14px; }
.advertising-process { display: grid; grid-template-columns: 300px 1fr; gap: 55px; padding: clamp(60px,9vw,100px) 0 0; }
.advertising-process h2 { color: #101820; }
.advertising-process ol { margin: 0; padding: 0; border-top: 1px solid #dce3e8; list-style: none; }
.advertising-process li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid #dce3e8; }
.advertising-process li > span { color: #c3141e; font-weight: 900; }
.advertising-process strong { color: #101820; font-size: 18px; }
.advertising-process p { margin: 4px 0 0; color: #697680; font-size: 14px; }
.advertising-team .home-section__head > p:last-child { max-width: 760px; color: #65727c; }
.advertising-team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.advertising-team-grid article { display: grid; grid-template-columns: 92px 1fr; gap: 24px; align-items: center; min-height: 190px; padding: 30px; border: 1px solid #dce3e8; border-radius: 8px; background: #fff; }
.advertising-team-grid article > span { display: grid; width: 92px; height: 92px; place-items: center; border-radius: 8px; background: #101820; color: #ff4650; font-size: 38px; font-weight: 900; }
.advertising-team-grid small { color: #7a8790; font-weight: 700; }
.advertising-team-grid h3 { margin: 8px 0 12px; color: #101820; font-size: 25px; }
.advertising-team-grid a { color: #a91820; font-size: 13px; font-weight: 800; }
.advertising-cta { display: flex; justify-content: space-between; gap: 40px; align-items: center; margin-top: clamp(58px,9vw,100px); padding: clamp(30px,5vw,50px); border-radius: 8px; background: #eef1f3; }
.advertising-cta > div { max-width: 720px; }
.advertising-cta h2 { color: #101820; }
.advertising-cta p:last-child { margin: 0; color: #65727c; }

.brand-related {
  padding-bottom: 20px;
}

.brand-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.brand-related-grid a {
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 18px;
}

.brand-related-grid a:hover,
.brand-related-grid a:focus-visible {
  border-color: rgba(195, 20, 30, 0.55);
  transform: translateY(-2px);
}

.brand-related-grid strong {
  color: #101820;
}

.contact-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(195, 20, 30, 0.05) 0 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f5f7f9 48%, #ffffff 100%);
  background-size: 72px 72px, auto;
}

.contact-hero,
.contact-section {
  width: min(980px, calc(100% - 32px));
  margin-inline: auto;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(24px, 5vw, 56px);
  align-items: end;
  padding: clamp(42px, 7vw, 84px) 0 clamp(24px, 5vw, 42px);
}

.contact-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #101820;
  font-size: clamp(34px, 5vw, 62px);
}

.contact-lead {
  max-width: 760px;
  color: #4f5d68;
  font-size: clamp(17px, 1.8vw, 20px);
}

.contact-note {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: #fff;
}

.contact-note strong {
  color: #101820;
  font-size: 30px;
}

.contact-note span {
  color: #60707c;
  font-weight: 700;
}

.contact-section {
  padding-top: 10px;
}

.contact-form,
.contact-success {
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-success {
  margin-bottom: 16px;
  padding: 16px 18px;
  color: #0f766e;
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two {
  grid-template-columns: 1fr 1fr;
}

.form-grid.three {
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr) minmax(0, 1fr);
}

.contact-row {
  align-items: start;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label,
.department-field legend {
  color: #101820;
  font-weight: 700;
}

.form-field label span,
.form-field small {
  color: #60707c;
  font-size: 13px;
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #cfd7df;
  border-radius: 8px;
  background: #fff;
  color: #101820;
  font: inherit;
  padding: 12px 14px;
  outline: none;
}

.form-field input {
  height: 56px;
}

.form-field select {
  height: 56px;
  cursor: pointer;
}

.form-field small {
  min-height: 23px;
}

.form-field .errorlist {
  min-height: 28px;
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(195, 20, 30, 0.65);
  box-shadow: 0 0 0 3px rgba(195, 20, 30, 0.12);
}

.department-field {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.department-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.department-option {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid #dfe5ea;
  border-radius: 8px;
  background: #fff;
  color: #101820;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.department-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.department-option:has(input:checked) {
  border-color: #c3141e;
  background: rgba(195, 20, 30, 0.08);
  color: #9f1119;
}

.department-option:focus-within {
  outline: 3px solid rgba(195, 20, 30, 0.18);
  outline-offset: 3px;
}

.errorlist,
.form-errors {
  margin: 0;
  padding: 0;
  color: #b42318;
  font-size: 14px;
  list-style: none;
}

.contact-form .button {
  justify-self: end;
  min-width: 190px;
}

@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .site-header nav { width: 100%; justify-content: space-between; overflow-x: auto; }
  .home-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0 0;
  }
  .home-header nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px 16px;
    overflow: visible;
    padding: 0 8px 10px;
    white-space: normal;
  }
  .home-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-top: 34px;
  }
  .home-hero > *,
  .home-actions,
  .home-hero__signal,
  .signal-main,
  .signal-stack,
  .signal-stack > span {
    min-width: 0;
    max-width: 100%;
  }
  .home-kicker,
  .home-hero h1,
  .home-lead {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .home-actions { flex-direction: column; }
  .home-actions .button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .signal-main {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }
  .home-strip,
  .home-grid.three,
  .brand-list {
    grid-template-columns: 1fr;
  }
  .brand-feature {
    grid-row: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }
  .brand-feature img { margin-inline: auto; }
  .home-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-contact {
    align-items: stretch;
    flex-direction: column;
  }
  .home-contact .button { width: 100%; }
  .about-hero,
  .about-copy,
  .about-pillars,
  .about-brand-list,
  .brand-hero,
  .brand-reference,
  .brand-reference-list,
  .brand-app-grid,
  .brand-related-grid {
    grid-template-columns: 1fr;
  }

  .province-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .province-hero, .province-link-grid { grid-template-columns: 1fr; }
  .province-callout { align-items: flex-start; flex-direction: column; }
  .portfolio-hero, .portfolio-intro, .portfolio-network { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card--featured { grid-row: auto; min-height: 440px; }
  .portfolio-network { gap: 26px; }
  .press-hero, .press-usage { grid-template-columns: 1fr; }
  .press-facts, .press-timeline, .press-downloads { grid-template-columns: 1fr; }
  .press-facts div { border-inline-start: 0; border-bottom: 1px solid #dce3e8; }
  .press-facts div:nth-last-child(-n + 3) { border-bottom: 1px solid #dce3e8; }
  .press-facts div:last-child { border-bottom: 0; }
  .press-brand-table a { grid-template-columns: 1fr auto; }
  .press-brand-table a > p { grid-column: 1 / -1; }
  .press-province-link, .press-contact { align-items: flex-start; flex-direction: column; }
  .career-hero, .job-hero, .job-layout, .candidate-layout, .apply-layout { grid-template-columns: 1fr; }
  .career-values, .career-form-grid { grid-template-columns: 1fr; }
  .career-values article { border-inline-start: 0; border-bottom: 1px solid #dce3e8; }
  .career-values article:last-child { border-bottom: 0; }
  .career-job-list > a { grid-template-columns: 1fr; }
  .career-account, .job-cta, .candidate-header { align-items: flex-start; flex-direction: column; }
  .job-process, .apply-profile { position: static; }
  .career-field--wide { grid-column: auto; }
  .advertising-hero, .advertising-definition, .advertising-process { grid-template-columns: 1fr; }
  .audience-grid, .advertising-team-grid { grid-template-columns: 1fr; }
  .advertising-value-grid { grid-template-columns: 1fr; }
  .advertising-value-grid article { border-inline-start: 0; border-bottom: 1px solid #dce3e8; }
  .advertising-value-grid article:last-child { border-bottom: 0; }
  .advertising-cta { align-items: flex-start; flex-direction: column; }
  .about-identity { min-height: auto; }
  .brand-actions {
    flex-direction: column;
  }
  .brand-actions .button {
    width: 100%;
  }
  .brand-facts {
    grid-template-columns: 1fr;
  }
  .brand-facts div,
  .brand-facts div:nth-child(2n),
  .brand-facts div:nth-last-child(-n + 2) {
    border-inline-start: 0;
    border-bottom: 1px solid #dfe5ea;
  }
  .brand-facts div:last-child {
    border-bottom: 0;
  }
  .contact-hero,
  .form-grid.two,
  .form-grid.three,
  .department-options {
    grid-template-columns: 1fr;
  }
  .department-option {
    white-space: normal;
  }
  .contact-form .button {
    justify-self: stretch;
    width: 100%;
  }
  .memorial-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }
  .memorial-hero__mark {
    width: 150px;
    justify-self: start;
    order: -1;
    margin-top: 16px;
  }
  .memorial-hero::before {
    top: 28px;
    width: 220px;
    height: 10px;
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .memorial-live { margin-top: 0; }
  .program-item { grid-template-columns: 1fr; }
  .program-item::before { display: none; }
  .program-item div { padding-inline-start: 0; }
  .info-grid, .counter-grid { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .coming-panel { padding: 28px 20px 34px; }
  .coming-panel::before {
    top: 20px;
    left: -64px;
    width: 210px;
    height: 30px;
  }
  .brand-logo { width: 82px; height: 82px; }
  .coming-panel .lead { font-size: 16px; }
  .text-link { margin-top: 28px; }
}

/* Human brand portfolio */
.portfolio-human { --ph-ink:#18231f; --ph-muted:#66716c; --ph-paper:#fbf9f4; --ph-red:#bd2d38; --ph-green:#3f715c; --ph-amber:#d99b36; min-height:100vh; overflow:hidden; background:var(--ph-paper); color:var(--ph-ink); }
.portfolio-human + .site-legal-nav { display:none; }
.portfolio-human__shell { width:min(1200px,calc(100% - 64px)); margin-inline:auto; }
.portfolio-human h1,.portfolio-human h2,.portfolio-human h3,.portfolio-human p { text-wrap:pretty; }
.portfolio-human .borsa-site-header { background:rgba(251,249,244,.94); }
.portfolio-human__hero { display:grid; grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr); min-height:780px; padding-top:78px; }
.portfolio-human__hero-media { position:relative; min-height:700px; overflow:hidden; background:#d9d8d0; }
.portfolio-human__hero-media::after { position:absolute; inset:0; background:linear-gradient(180deg,transparent 48%,rgba(21,33,28,.72)); content:""; }
.portfolio-human__hero-media>img { width:100%; height:100%; object-fit:cover; object-position:center; }
.portfolio-human__hero-note { position:absolute; z-index:1; right:clamp(26px,5vw,72px); bottom:50px; left:clamp(26px,5vw,72px); padding-top:21px; border-top:1px solid rgba(255,255,255,.5); color:#fff; }
.portfolio-human__hero-note strong { display:block; font-size:18px; }
.portfolio-human__hero-note span { display:block; max-width:520px; margin-top:8px; color:rgba(255,255,255,.72); font-size:12px; line-height:1.9; }
.portfolio-human__hero-copy { display:flex; align-items:flex-start; flex-direction:column; justify-content:center; padding:70px clamp(42px,7vw,110px); background:#f4efe5; }
.portfolio-human__hero-copy h1 { max-width:700px; margin:0; font-size:clamp(48px,6.1vw,86px); line-height:1.32; }
.portfolio-human__hero-copy>p:not(.focus-kicker) { max-width:630px; margin:25px 0 32px; color:var(--ph-muted); font-size:18px; line-height:2.05; }
.portfolio-human__hero-facts { display:grid; grid-template-columns:repeat(3,1fr); width:100%; max-width:670px; margin-top:55px; padding-top:24px; border-top:1px solid rgba(24,35,31,.17); }
.portfolio-human__hero-facts div { display:grid; gap:5px; padding-inline:20px; border-inline-start:1px solid rgba(24,35,31,.14); }
.portfolio-human__hero-facts div:first-child { padding-inline-start:0; border:0; }
.portfolio-human__hero-facts strong { color:var(--ph-green); font-size:30px; }
.portfolio-human__hero-facts span { color:var(--ph-muted); font-size:11px; font-weight:800; line-height:1.8; }
.portfolio-human__meaning { padding:clamp(100px,12vw,165px) 0; background:var(--ph-paper); }
.portfolio-human__meaning-grid { display:grid; grid-template-columns:.38fr 1.62fr; gap:clamp(45px,9vw,130px); }
.portfolio-human__meaning-grid h2 { max-width:950px; margin:0; font-size:clamp(38px,4.4vw,62px); line-height:1.48; }
.portfolio-human__meaning-grid>div>p { max-width:850px; margin:27px 0 0; color:var(--ph-muted); font-size:16px; line-height:2.15; }
.portfolio-human__relations { display:flex; flex-wrap:wrap; gap:12px 33px; margin-top:35px; padding-top:26px; border-top:1px solid rgba(24,35,31,.14); }
.portfolio-human__relations span { display:flex; align-items:center; gap:9px; color:#435049; font-size:12px; font-weight:850; }
.portfolio-human__relations i { width:9px; height:9px; border-radius:50%; background:var(--ph-green); }
.portfolio-human__relations span:nth-child(2) i { background:var(--ph-amber); }
.portfolio-human__relations span:nth-child(3) i { background:var(--ph-red); }
.portfolio-human__brands { padding:clamp(100px,12vw,165px) 0; background:#e9eee9; }
.portfolio-human__section-head { display:grid; grid-template-columns:1.15fr .85fr; gap:70px; align-items:end; }
.portfolio-human__section-head h2 { max-width:760px; margin:0; font-size:clamp(40px,5vw,70px); line-height:1.42; }
.portfolio-human__section-head>p { max-width:520px; margin:0; color:var(--ph-muted); line-height:2.05; }
.portfolio-human__grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:70px; }
.portfolio-human__card { display:grid; grid-template-columns:minmax(210px,.86fr) minmax(0,1.14fr); min-height:390px; overflow:hidden; background:#fff; color:var(--ph-ink); transition:transform .3s ease,box-shadow .3s ease; }
.portfolio-human__card:hover,.portfolio-human__card:focus-visible { transform:translateY(-5px); box-shadow:0 24px 60px rgba(35,55,47,.12); }
.portfolio-human__card--featured { grid-column:1/-1; grid-template-columns:1.12fr .88fr; min-height:580px; }
.portfolio-human__card-media { position:relative; min-height:100%; overflow:hidden; background:#c9cec9; }
.portfolio-human__card-media::after { position:absolute; inset:0; background:linear-gradient(180deg,rgba(16,24,21,.05),rgba(16,24,21,.28)); content:""; }
.portfolio-human__card-media img { width:100%; height:100%; object-fit:cover; transition:transform .7s ease; }
.portfolio-human__card-media--identity{display:grid;place-items:center;background:linear-gradient(145deg,#173b35 0 58%,#d6604b 58%);isolation:isolate}.portfolio-human__card-media--identity:before{position:absolute;width:65%;aspect-ratio:1;border:1px solid rgba(255,255,255,.22);border-radius:50%;content:""}.portfolio-human__card-media--identity>strong{color:rgba(255,255,255,.92);font-size:clamp(72px,10vw,150px);font-weight:950}.portfolio-human__card:nth-child(2n) .portfolio-human__card-media--identity{background:linear-gradient(145deg,#d9a633 0 46%,#20312b 46%)}.portfolio-human__card:nth-child(3n) .portfolio-human__card-media--identity{background:linear-gradient(145deg,#d9e4dd 0 52%,#173b35 52%)}
.portfolio-human__card:hover .portfolio-human__card-media img { transform:scale(1.035); }
.portfolio-human__card-media>span { position:absolute; z-index:1; top:25px; right:25px; display:grid; width:46px; height:46px; place-items:center; border:1px solid rgba(255,255,255,.6); border-radius:50%; background:rgba(20,30,26,.25); color:#fff; font-size:11px; font-weight:900; backdrop-filter:blur(8px); }
.portfolio-human__card-copy { display:flex; align-items:flex-start; flex-direction:column; padding:clamp(28px,3.5vw,48px); }
.portfolio-human__card-copy>small { display:inline-flex; min-height:29px; align-items:center; padding:0 11px; border-radius:30px; background:#e6f0e9; color:var(--ph-green); font-size:10px; font-weight:900; }
.portfolio-human__card-copy>p { margin:32px 0 7px; color:var(--ph-red); font-size:12px; font-weight:900; }
.portfolio-human__card-copy h3 { margin:0; font-size:clamp(27px,3vw,43px); line-height:1.48; }
.portfolio-human__card-summary { margin:17px 0 32px; color:var(--ph-muted); font-size:13px; line-height:2; }
.portfolio-human__card-copy>b { display:flex; width:100%; align-items:center; justify-content:space-between; gap:25px; margin-top:auto; padding-top:20px; border-top:1px solid rgba(24,35,31,.13); font-size:12px; }
.portfolio-human__card-copy>b i { color:var(--ph-red); font-size:21px; font-style:normal; transition:transform .2s ease; }
.portfolio-human__card:hover b i { transform:translateX(-6px); }
.portfolio-human__ecosystem { padding:clamp(105px,13vw,180px) 0; background:#20312b; color:#fff; }
.portfolio-human__ecosystem-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(65px,10vw,145px); align-items:center; }
.portfolio-human__ecosystem .focus-kicker { color:#edce78; }
.portfolio-human__ecosystem-copy h2 { max-width:700px; margin:0; font-size:clamp(39px,4.6vw,66px); line-height:1.48; }
.portfolio-human__ecosystem-copy>p:not(.focus-kicker) { max-width:640px; margin:25px 0 0; color:rgba(255,255,255,.62); line-height:2.1; }
.portfolio-human__ecosystem-map { border-block:1px solid rgba(255,255,255,.18); }
.portfolio-human__ecosystem-map>div { display:grid; grid-template-columns:48px 1fr; gap:4px 20px; min-height:130px; align-content:center; padding:22px 4px; border-bottom:1px solid rgba(255,255,255,.18); }
.portfolio-human__ecosystem-map>div:last-child { border:0; }
.portfolio-human__ecosystem-map span { grid-row:1/3; color:#edce78; font-size:12px; font-weight:900; }
.portfolio-human__ecosystem-map strong { color:#fff; font-size:23px; }
.portfolio-human__ecosystem-map small { color:rgba(255,255,255,.5); }
.portfolio-human__network { display:grid; grid-template-columns:1fr 1fr; min-height:760px; background:#f3eadb; }
.portfolio-human__network-visual { position:relative; overflow:hidden; }
.portfolio-human__network-visual::after { position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(20,30,26,.74)); content:""; }
.portfolio-human__network-visual img { width:100%; height:100%; object-fit:cover; }
.portfolio-human__network-visual--identity{display:grid;place-items:center;background:radial-gradient(circle at 50% 50%,#d85f49 0 12%,transparent 12.5%),radial-gradient(circle at 25% 25%,rgba(255,255,255,.16) 0 2px,transparent 3px),linear-gradient(145deg,#173b35,#0d2420)}.portfolio-human__network-visual--identity>strong{color:#fff;font-size:clamp(120px,19vw,280px);font-weight:950;letter-spacing:-.08em}
.portfolio-human__network-visual>span { position:absolute; z-index:1; right:50px; bottom:44px; left:50px; max-width:530px; padding-top:20px; border-top:1px solid rgba(255,255,255,.48); color:#fff; font-size:15px; font-weight:900; line-height:1.9; }
.portfolio-human__network-copy { display:flex; align-items:flex-start; flex-direction:column; justify-content:center; padding:75px clamp(42px,7vw,110px); }
.portfolio-human__network-copy h2 { max-width:690px; margin:0; font-size:clamp(40px,4.8vw,67px); line-height:1.45; }
.portfolio-human__network-copy>p:not(.focus-kicker) { max-width:670px; margin:23px 0 0; color:var(--ph-muted); line-height:2.1; }
.portfolio-human__network-facts { display:grid; grid-template-columns:repeat(3,1fr); width:100%; max-width:700px; margin:36px 0; border-block:1px solid rgba(24,35,31,.16); }
.portfolio-human__network-facts div { display:grid; gap:7px; min-height:112px; align-content:center; padding:15px; border-inline-start:1px solid rgba(24,35,31,.14); }
.portfolio-human__network-facts div:first-child { border:0; }
.portfolio-human__network-facts strong { color:var(--ph-green); font-size:30px; }
.portfolio-human__network-facts span { color:var(--ph-muted); font-size:10px; font-weight:800; line-height:1.8; }
.portfolio-human__invite .portfolio-human__shell { width:min(1200px,calc(100% - 64px)); }
.portfolio-human .focus-footer .portfolio-human__shell { width:min(1200px,calc(100% - 64px)); margin-inline:auto; }

@media (max-width:1000px) {
  .portfolio-human__hero { grid-template-columns:1fr; padding-top:70px; }
  .portfolio-human__hero-media { min-height:620px; }
  .portfolio-human__hero-copy { padding:80px 48px; }
  .portfolio-human__meaning-grid,.portfolio-human__section-head,.portfolio-human__ecosystem-grid { grid-template-columns:1fr; }
  .portfolio-human__meaning-grid,.portfolio-human__ecosystem-grid { gap:45px; }
  .portfolio-human__section-head { gap:25px; }
  .portfolio-human__grid { grid-template-columns:1fr; }
  .portfolio-human__card--featured { grid-column:auto; }
  .portfolio-human__network { grid-template-columns:1fr; }
  .portfolio-human__network-visual { min-height:620px; }
}
@media (max-width:700px) {
  .portfolio-human__shell,.portfolio-human__invite .portfolio-human__shell,.portfolio-human .focus-footer .portfolio-human__shell { width:min(100% - 32px,1200px); }
  .portfolio-human__hero-media { min-height:500px; }
  .portfolio-human__hero-copy { padding:58px 24px 70px; }
  .portfolio-human__hero-copy h1 { font-size:clamp(42px,12vw,57px); }
  .portfolio-human__hero-copy>p:not(.focus-kicker) { font-size:16px; }
  .portfolio-human__hero-facts { gap:0; margin-top:42px; }
  .portfolio-human__hero-facts div { padding-inline:10px; }
  .portfolio-human__hero-facts strong { font-size:25px; }
  .portfolio-human__meaning-grid h2,.portfolio-human__section-head h2,.portfolio-human__ecosystem-copy h2,.portfolio-human__network-copy h2 { font-size:clamp(35px,10vw,48px); }
  .portfolio-human__card,.portfolio-human__card--featured { grid-template-columns:1fr; min-height:0; }
  .portfolio-human__card-media { min-height:350px; }
  .portfolio-human__card--featured .portfolio-human__card-media { min-height:430px; }
  .portfolio-human__card-copy { min-height:390px; padding:32px 25px; }
  .portfolio-human__network-visual { min-height:500px; }
  .portfolio-human__network-visual>span { right:24px; bottom:28px; left:24px; }
  .portfolio-human__network-copy { padding:65px 24px 76px; }
  .portfolio-human__network-facts { grid-template-columns:1fr; }
  .portfolio-human__network-facts div { min-height:86px; border-top:1px solid rgba(24,35,31,.14); border-inline-start:0; }
  .portfolio-human__network-facts div:first-child { border-top:0; }
}

/* Newsroom */
.news-page { min-height: 100vh; background: #f6f7f8; color: #171a1f; }
.news-page a { color: inherit; text-decoration: none; }
.news-index-head { max-width: 1180px; margin: 0 auto; padding: 76px 32px 38px; display: grid; grid-template-columns: 1fr 390px; align-items: end; gap: 56px; }
.news-index-head h1 { margin: 8px 0 12px; font-size: clamp(38px, 5vw, 68px); line-height: 1.25; letter-spacing: 0; }
.news-index-head > div > p:last-child { max-width: 650px; margin: 0; color: #606771; font-size: 18px; line-height: 2; }
.news-search label { display: block; margin-bottom: 9px; font-weight: 700; }
.news-search div { display: grid; grid-template-columns: 1fr auto; border: 1px solid #d6dbe0; background: #fff; }
.news-search input { min-width: 0; border: 0; padding: 14px 16px; font: inherit; outline: 0; background: transparent; }
.news-search button { border: 0; padding: 0 22px; color: #fff; background: #c60d20; font: inherit; font-weight: 700; cursor: pointer; }
.news-categories { max-width: 1180px; margin: 0 auto 38px; padding: 0 32px 18px; display: flex; gap: 12px; overflow-x: auto; border-bottom: 1px solid #dfe2e5; }
.news-categories a { flex: 0 0 auto; padding: 9px 14px; color: #5d646d; border-bottom: 2px solid transparent; font-weight: 700; }
.news-categories a.active { color: #b80e1e; border-color: #c60d20; }
.news-featured { max-width: 1116px; margin: 0 auto 54px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr); min-height: 430px; background: #171a1f; color: #fff; }
.news-featured__media { min-height: 430px; display: grid; place-items: center; overflow: hidden; background: #24282d; color: rgba(255,255,255,.4); font-size: 28px; font-weight: 800; }
.news-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.news-featured > div { align-self: center; padding: 48px; }
.news-featured h2 { margin: 18px 0; font-size: 34px; line-height: 1.6; letter-spacing: 0; }
.news-featured p { margin: 0 0 28px; color: #c5c9cf; line-height: 2; }
.news-meta { display: flex; align-items: center; gap: 13px; color: #777e87; font-size: 13px; }
.news-meta a { color: #c60d20; font-weight: 800; }
.news-featured .news-meta { color: #aeb4bc; }
.news-featured .news-meta a { color: #ff5b68; }
.news-grid { max-width: 1116px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.news-card { min-width: 0; background: #fff; border: 1px solid #e0e3e6; }
.news-card__media { display: grid; place-items: center; aspect-ratio: 16 / 10; overflow: hidden; background: #eceff1; color: #b7bdc4; font-size: 24px; font-weight: 800; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-card__media img { transform: scale(1.025); }
.news-card__copy { padding: 24px; }
.news-card h2 { margin: 15px 0 11px; font-size: 21px; line-height: 1.75; letter-spacing: 0; }
.news-card p { min-height: 76px; margin: 0 0 18px; color: #656c75; line-height: 1.9; }
.news-read { display: inline-flex; gap: 8px; color: #b80e1e !important; font-weight: 800; }
.news-pagination { max-width: 1116px; margin: 38px auto 0; display: flex; justify-content: center; align-items: center; gap: 18px; }
.news-pagination a { padding: 9px 16px; background: #171a1f; color: #fff; }
.news-empty { grid-column: 1 / -1; padding: 60px; text-align: center; background: #fff; border: 1px solid #e0e3e6; }
.news-empty h2 { margin: 0 0 8px; }
.news-empty p { margin: 0; color: #6b727a; }

.news-article { max-width: 920px; margin: 0 auto; padding: 76px 32px 30px; }
.news-article__head { max-width: 790px; margin: 0 auto 44px; }
.news-article__head h1 { margin: 18px 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.55; letter-spacing: 0; }
.news-article__head > p { margin: 0; color: #5d646d; font-size: 20px; line-height: 2; }
.news-hero-media, .news-media-item { margin: 0 0 36px; }
.news-hero-media img, .news-hero-media video, .news-media-item img, .news-media-item video { display: block; width: 100%; max-height: 720px; object-fit: contain; background: #111; }
.news-hero-media figcaption, .news-media-item figcaption { padding: 11px 4px; color: #727981; font-size: 14px; line-height: 1.8; }
.news-article__body { max-width: 790px; margin: 0 auto 42px; font-size: 18px; line-height: 2.25; }
.news-article__body p { margin: 0 0 24px; }
.news-media-gallery { display: grid; gap: 10px; }
.news-media-gallery:has(.news-media-item--image) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.news-media-item--video, .news-media-item--audio { grid-column: 1 / -1; }
.news-audio { display: grid; gap: 16px; padding: 26px; background: #171a1f; color: #fff; }
.news-audio audio { width: 100%; }
.news-tags { max-width: 790px; margin: 34px auto 0; padding-top: 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; border-top: 1px solid #dfe2e5; }
.news-tags span { margin-left: 7px; font-weight: 800; }
.news-tags b { padding: 6px 10px; background: #e8ebed; font-size: 13px; font-weight: 600; }
.news-source { max-width: 790px; margin: 18px auto; color: #717880; font-size: 14px; }
.news-source a { color: #b80e1e; }
.news-related { max-width: 1116px; margin: 50px auto 0; padding-top: 45px; border-top: 1px solid #dfe2e5; }
.news-related .news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .news-index-head { grid-template-columns: 1fr; gap: 28px; padding-top: 52px; }
  .news-featured { margin-inline: 24px; grid-template-columns: 1fr; }
  .news-featured__media { min-height: auto; aspect-ratio: 16 / 9; }
  .news-grid { padding-inline: 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-related { margin-inline: 24px; }
  .news-related .news-grid { padding-inline: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .news-index-head { padding: 42px 18px 28px; }
  .news-index-head h1 { font-size: 38px; }
  .news-categories { padding-inline: 18px; }
  .news-featured { margin-inline: 18px; }
  .news-featured > div { padding: 28px 22px; }
  .news-featured h2 { font-size: 26px; }
  .news-grid, .news-related .news-grid { padding-inline: 18px; grid-template-columns: 1fr; }
  .news-related { margin-inline: 0; }
  .news-related .home-section__head { padding-inline: 18px; }
  .news-article { padding: 48px 18px 20px; }
  .news-article__head h1 { font-size: 34px; }
  .news-article__head > p, .news-article__body { font-size: 17px; }
  .news-media-gallery:has(.news-media-item--image) { grid-template-columns: 1fr; }
  .news-media-item { grid-column: 1 / -1; }
  .press-nav {
    position: static;
    flex-wrap: wrap;
    overflow: visible;
  }
  .press-nav a {
    flex: 1 1 calc(33.333% - 4px);
    min-width: 92px;
  }
}

@media (min-width: 2400px) {
  body { zoom: 1.25; }
}

.site-legal-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; padding: 18px 24px 30px; color: #697078; background: #f6f7f8; border-top: 1px solid #e2e5e8; font-size: 14px; }
.skip-link { position: fixed; z-index: 10000; top: 8px; right: 8px; padding: 10px 14px; color: #fff; background: #171a1f; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid #16877e; outline-offset: 3px; }
.site-legal-nav a { color: inherit; text-decoration: none; }
.site-legal-nav a:hover { color: #b80e1e; }
.language-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 6px 11px;
  border: 1px solid #d7dce0;
  color: #27313a;
  white-space: nowrap;
}
.language-link span { color: #b80e1e; font-size: 11px; font-weight: 900; }
.language-link strong { font-size: 13px; font-weight: 700; }
.language-link:hover { border-color: #b80e1e; color: #b80e1e; background: #fff7f7; }

.language-page { min-height: 100vh; background: #f7f8f9; }
.language-page__content { width: min(1040px, calc(100% - 32px)); margin-inline: auto; padding: clamp(54px, 8vw, 96px) 0 100px; }
.language-page__head { margin-bottom: 36px; }
.language-page__head p { margin: 0 0 8px; color: #b80e1e; font-size: 13px; font-weight: 900; }
.language-page__head h1 { margin: 0; color: #111820; font-size: clamp(34px, 5vw, 58px); letter-spacing: 0; }
.language-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid #d9dde1; border-inline-start: 1px solid #d9dde1; background: #fff; }
.language-card { position: relative; display: grid; gap: 12px; min-height: 144px; padding: 28px; border-inline-end: 1px solid #d9dde1; border-bottom: 1px solid #d9dde1; color: #202a33; text-align: start; transition: color .18s ease, background .18s ease; }
.language-card > span { color: #7a858f; font-size: 12px; font-weight: 900; }
.language-card > strong { align-self: end; font-size: 24px; font-weight: 700; }
.language-card:hover { color: #b80e1e; background: #fff7f7; }
.language-card[aria-current="page"] { color: #a70d1b; background: #fff2f3; }
.language-card i { position: absolute; inset-block-start: 25px; inset-inline-end: 25px; width: 10px; height: 10px; border-radius: 50%; background: #c3141e; box-shadow: 0 0 0 5px rgba(195,20,30,.1); }
html[dir="ltr"] body { text-align: left; }
html[dir="ltr"] .home-header, html[dir="ltr"] .home-brand, html[dir="ltr"] .news-meta { direction: ltr; }
html[dir="ltr"] .legal-updated { border-right: 0; border-left: 3px solid #c60d20; }
.form-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.legal-page, .error-page { min-height: 100vh; background: #f6f7f8; color: #171a1f; }
.legal-content { max-width: 920px; margin: 0 auto; padding: 72px 32px 80px; }
.legal-content h1 { margin: 8px 0 20px; font-size: clamp(36px, 5vw, 62px); line-height: 1.35; letter-spacing: 0; }
.legal-content h2 { margin: 38px 0 10px; font-size: 23px; letter-spacing: 0; }
.legal-content p, .legal-content li { color: #555d66; line-height: 2.15; }
.legal-content ul { padding-right: 22px; }
.legal-updated { padding: 12px 16px; border-right: 3px solid #c60d20; background: #fff; }
.borsa-error { --error-accent:#bd2632; min-height:100vh; overflow:hidden; background:#f7f3ea; color:#17221e; }
.borsa-error--amber { --error-accent:#c98425; }.borsa-error--green { --error-accent:#39775f; }.borsa-error--blue { --error-accent:#315f80; }
.borsa-error__header { display:flex; width:min(100% - 64px,1280px); min-height:104px; margin:auto; align-items:center; justify-content:space-between; border-bottom:1px solid rgba(23,34,30,.13); }
.borsa-error__header>a { display:flex; align-items:center; gap:11px; color:inherit; font-size:21px; font-weight:900; text-decoration:none; }.borsa-error__header img { width:45px; height:45px; object-fit:contain; }.borsa-error__header>span { color:#69736e; font-size:11px; font-weight:700; }
.borsa-error__stage { display:grid; width:min(100% - 64px,1280px); min-height:calc(100vh - 190px); margin:auto; grid-template-columns:minmax(360px,.88fr) minmax(420px,1.12fr); align-items:center; gap:clamp(55px,9vw,135px); padding:70px 0 90px; }
.borsa-error__visual { position:relative; display:grid; aspect-ratio:1; max-width:520px; place-content:center; border-radius:50%; background:radial-gradient(circle at center,rgba(255,255,255,.95) 0 31%,transparent 32%),radial-gradient(circle at center,transparent 0 56%,rgba(255,255,255,.65) 57% 58%,transparent 59%),linear-gradient(145deg,rgba(255,255,255,.4),rgba(255,255,255,.08)); color:var(--error-accent); }
.borsa-error__visual::before,.borsa-error__visual::after { position:absolute; border-radius:50%; content:""; }.borsa-error__visual::before { inset:9%; border:1px solid color-mix(in srgb,var(--error-accent) 27%,transparent); }.borsa-error__visual::after { inset:25%; border:1px dashed color-mix(in srgb,var(--error-accent) 35%,transparent); }
.borsa-error__visual b { position:relative; z-index:2; font-size:clamp(75px,10vw,142px); font-weight:950; letter-spacing:-7px; line-height:.9; }.borsa-error__visual small { position:relative; z-index:2; margin-top:16px; color:#6d7772; font-size:11px; font-weight:850; text-align:center; }
.borsa-error__orbit { position:absolute; border:1px solid color-mix(in srgb,var(--error-accent) 32%,transparent); border-radius:50%; transform:rotate(-24deg); }.borsa-error__orbit--one { inset:2% 18%; }.borsa-error__orbit--two { inset:18% 2%; transform:rotate(32deg); }
.borsa-error__dot { position:absolute; z-index:2; width:12px; height:12px; border:3px solid #f7f3ea; border-radius:50%; background:var(--error-accent); box-shadow:0 5px 15px rgba(23,34,30,.18); }.borsa-error__dot--one { top:11%; right:27%; }.borsa-error__dot--two { bottom:22%; left:7%; width:18px; height:18px; }.borsa-error__dot--three { right:10%; bottom:16%; width:8px; height:8px; }
.borsa-error__copy { max-width:650px; }.borsa-error__eyebrow { display:flex; align-items:center; gap:10px; margin:0 0 24px!important; color:var(--error-accent)!important; font-size:11px!important; font-weight:900; }.borsa-error__eyebrow i { width:32px; height:2px; background:currentColor; }
.borsa-error__copy h1 { max-width:630px; margin:0; font-size:clamp(43px,5.3vw,76px); font-weight:920; letter-spacing:-2.5px; line-height:1.35; }.borsa-error__copy>p { max-width:590px; margin:25px 0 0; color:#66716c; font-size:15px; line-height:2.15; }
.borsa-error__actions { display:flex; flex-wrap:wrap; align-items:center; gap:15px 28px; margin-top:38px; }.borsa-error__actions a { min-height:54px; font-size:12px; font-weight:850; text-decoration:none; }.borsa-error__primary { display:inline-flex; padding:0 23px; align-items:center; gap:30px; justify-content:space-between; border-radius:3px; background:var(--error-accent); color:#fff; box-shadow:0 14px 30px color-mix(in srgb,var(--error-accent) 20%,transparent); }.borsa-error__primary span { font-size:20px; }.borsa-error__secondary { display:inline-flex; align-items:center; border-bottom:1px solid rgba(23,34,30,.35); color:#25302c; }
.borsa-error__footer { display:grid; width:min(100% - 64px,1280px); min-height:118px; margin:auto; grid-template-columns:1fr auto 1fr; align-items:center; gap:35px; border-top:1px solid rgba(23,34,30,.13); color:#6c7671; }.borsa-error__footer>div { display:flex; flex-direction:column; gap:5px; }.borsa-error__footer>div strong { color:#1d2824; font-size:15px; font-weight:900; }.borsa-error__footer>div span { font-size:9px; }.borsa-error__footer nav { display:flex; gap:25px; }.borsa-error__footer a { position:relative; color:#3d4944; font-size:10px; font-weight:800; text-decoration:none; }.borsa-error__footer a::after { position:absolute; right:0; bottom:-6px; width:0; height:1px; background:var(--error-accent); content:""; transition:width .2s ease; }.borsa-error__footer a:hover::after { width:100%; }.borsa-error__footer small { justify-self:end; color:#7d8581; font-size:9px; }
@media (max-width:900px) { .borsa-error__stage { grid-template-columns:1fr; gap:45px; padding-top:45px; text-align:center; }.borsa-error__visual { width:min(72vw,390px); margin:auto; }.borsa-error__copy { margin:auto; }.borsa-error__eyebrow,.borsa-error__actions { justify-content:center; }.borsa-error__copy>p { margin-inline:auto; } }
@media (min-width:601px) and (max-width:1050px) { .borsa-error__footer { min-height:145px; grid-template-columns:1fr auto; }.borsa-error__footer nav { grid-row:2; grid-column:1/-1; justify-content:center; padding-bottom:24px; }.borsa-error__footer small { justify-self:end; } }
@media (max-width:600px) { .borsa-error__header,.borsa-error__stage,.borsa-error__footer { width:min(100% - 36px,1280px); }.borsa-error__header { min-height:82px; }.borsa-error__header>span { display:none; }.borsa-error__stage { min-height:auto; padding:38px 0 65px; }.borsa-error__visual { width:min(78vw,310px); }.borsa-error__copy h1 { font-size:39px; letter-spacing:-1.5px; }.borsa-error__copy>p { font-size:13px; }.borsa-error__actions { align-items:stretch; flex-direction:column; }.borsa-error__actions a { width:100%; justify-content:center; }.borsa-error__primary { justify-content:space-between!important; }.borsa-error__footer { min-height:210px; grid-template-columns:1fr; align-content:center; gap:20px; text-align:center; }.borsa-error__footer>div { align-items:center; }.borsa-error__footer nav { flex-wrap:wrap; justify-content:center; gap:16px 22px; }.borsa-error__footer small { justify-self:center; } }

/* 2026 unified refresh: reference, utility, legal and candidate pages */
.brand-detail-human,.press-human,.province-human,.language-human,.legal-human,.job-human,.candidate-human{--legacy-ink:#18231f;--legacy-muted:#68736e;--legacy-paper:#fbf9f4;--legacy-red:#bd2d38;--legacy-green:#3f715c;min-height:100vh;overflow:hidden;background:var(--legacy-paper);color:var(--legacy-ink)}
.brand-detail-human+.site-legal-nav,.press-human+.site-legal-nav,.province-human+.site-legal-nav,.language-human+.site-legal-nav,.legal-human+.site-legal-nav,.job-human+.site-legal-nav,.candidate-human+.site-legal-nav,.auth-human+.site-legal-nav{display:none}
.brand-detail-human .borsa-site-header,.press-human .borsa-site-header,.province-human .borsa-site-header,.language-human .borsa-site-header,.legal-human .borsa-site-header,.job-human .borsa-site-header,.candidate-human .borsa-site-header{background:rgba(251,249,244,.94)}
.brand-detail-human h1,.brand-detail-human h2,.press-human h1,.press-human h2,.province-human h1,.province-human h2,.language-human h1,.legal-human h1,.legal-human h2,.job-human h1,.job-human h2,.candidate-human h1,.candidate-human h2{text-wrap:pretty}

/* Brand reference */
.brand-detail-human .brand-hero,.brand-detail-human .brand-reference,.brand-detail-human .brand-section{width:min(1200px,calc(100% - 64px));margin-inline:auto}
.brand-detail-human .brand-hero{position:relative;display:grid;grid-template-columns:1.4fr .6fr;gap:70px;min-height:620px;align-items:center;padding:90px 0;border:0}
.brand-detail-human .brand-hero::before{position:absolute;inset:45px 52% 45px -50vw;z-index:0;background:linear-gradient(140deg,#e8ece7,#f5eadb);content:""}.brand-detail-human .brand-hero>div{position:relative;z-index:1}.brand-detail-human .brand-hero h1{margin:14px 0 20px;font-size:clamp(65px,10vw,140px);letter-spacing:-5px;line-height:1}.brand-detail-human .brand-lead{max-width:720px;color:#4f5c56;font-size:clamp(18px,2vw,25px);line-height:1.9}.brand-detail-human .brand-actions{margin-top:34px}.brand-detail-human .brand-actions a{min-height:54px;padding-inline:24px;border-radius:2px}
.brand-detail-human .brand-passport{position:relative;z-index:1;display:flex;min-height:330px;padding:40px;align-items:flex-start;flex-direction:column;justify-content:flex-end;border:0;border-radius:0;background:#21332c;color:#fff;box-shadow:28px 28px 0 #d9a447}.brand-detail-human .brand-passport span{color:#edcc79}.brand-detail-human .brand-passport strong{margin:18px 0 10px;color:#fff;font-size:28px}.brand-detail-human .brand-passport p{color:rgba(255,255,255,.62)}
.brand-detail-human .brand-reference{display:grid;grid-template-columns:1.05fr .95fr;gap:80px;padding-block:100px;border-top:1px solid rgba(24,35,31,.13)}.brand-detail-human .brand-copy{padding:0;border:0;background:transparent}.brand-detail-human .brand-copy h2{font-size:clamp(38px,5vw,64px)}.brand-detail-human .brand-copy p:last-child{color:var(--legacy-muted);font-size:16px;line-height:2.15}.brand-detail-human .brand-facts{grid-template-columns:1fr 1fr;border:1px solid rgba(24,35,31,.14);background:#fff}.brand-detail-human .brand-facts div{min-height:140px;padding:25px}.brand-detail-human .brand-facts strong{font-size:20px}
.brand-detail-human .brand-section{padding-block:85px;border-top:1px solid rgba(24,35,31,.13)}.brand-detail-human .brand-reference-list{grid-template-columns:1fr 1fr;gap:0;border-top:1px solid rgba(24,35,31,.14)}.brand-detail-human .brand-reference-list article{display:grid;grid-template-columns:46px 1fr;gap:18px;min-height:150px;padding:30px 18px;border:0;border-bottom:1px solid rgba(24,35,31,.14);background:transparent}.brand-detail-human .brand-reference-list span{color:var(--legacy-red)}.brand-detail-human .brand-related-grid{grid-template-columns:repeat(2,1fr);gap:12px}.brand-detail-human .brand-related-grid a{min-height:150px;padding:30px;border:0;background:#fff;box-shadow:0 18px 45px rgba(24,35,31,.06)}

/* Press kit */
.press-human .press-hero,.press-human .press-nav,.press-human .press-section,.press-human .press-contact{width:min(1200px,calc(100% - 64px));margin-inline:auto}.press-human .press-hero{display:grid;grid-template-columns:1.25fr .75fr;gap:70px;min-height:610px;align-items:center;padding:90px 0;border:0}.press-human .press-hero h1{margin:10px 0;font-size:clamp(70px,10vw,135px);letter-spacing:-6px;line-height:1}.press-human .press-hero>div>p:not(.home-kicker){max-width:760px;color:var(--legacy-muted);font-size:20px;line-height:2}.press-human .press-identity{position:relative;display:grid;min-height:355px;padding:42px;align-content:end;border:0;border-radius:0;background:#fff;box-shadow:25px 25px 0 #d9a447}.press-human .press-identity::before{position:absolute;inset:0;background:linear-gradient(145deg,rgba(63,113,92,.13),transparent 58%);content:""}.press-human .press-identity img{position:relative;width:112px;height:112px;margin-bottom:35px}.press-human .press-nav{position:sticky;top:0;z-index:20;display:flex;padding:12px;background:#20312b;box-shadow:0 14px 35px rgba(24,35,31,.14)}.press-human .press-nav a{padding:12px 17px;border-radius:0;color:rgba(255,255,255,.68)}.press-human .press-nav a:hover{background:rgba(255,255,255,.08);color:#fff}.press-human .press-section{padding-block:95px;border-bottom:1px solid rgba(24,35,31,.13)}.press-human .press-facts{border:0;border-radius:0;background:transparent;gap:1px}.press-human .press-facts div{min-height:150px;border:0;background:#fff}.press-human .press-timeline{gap:1px}.press-human .press-timeline article{min-height:210px;border:0;border-radius:0;background:#e9eee9}.press-human .press-copy-grid{gap:1px}.press-human .press-copy-grid article{padding:38px;border:0;border-radius:0;background:#fff}.press-human .press-brand-table{border:0;border-radius:0}.press-human .press-brand-table a{min-height:120px;padding:25px 30px}.press-human .press-downloads{gap:12px}.press-human .press-downloads a{min-height:145px;border:0;border-radius:0;box-shadow:0 16px 40px rgba(24,35,31,.06)}.press-human .press-contact{margin-block:90px;padding:60px;border-radius:0;background:#20312b;color:#fff}.press-human .press-contact h2{color:#fff;font-size:clamp(35px,5vw,58px)}.press-human .press-contact p:last-child{color:rgba(255,255,255,.62)}

/* Provinces */
.province-human .province-index-hero,.province-human .province-directory,.province-human .province-hero,.province-human .province-links,.province-human .province-more{width:min(1200px,calc(100% - 64px));margin-inline:auto}.province-human .province-index-hero{position:relative;min-height:540px;padding:110px 0 80px;border:0}.province-human .province-index-hero::after{position:absolute;top:65px;left:0;width:310px;height:310px;border:70px solid rgba(189,45,56,.08);border-radius:50%;content:""}.province-human .province-index-hero h1,.province-human .province-hero h1{max-width:900px;margin:15px 0;font-size:clamp(57px,8vw,105px);letter-spacing:-4px;line-height:1.18}.province-human .province-index-hero>p:last-child{max-width:700px;color:var(--legacy-muted);font-size:18px;line-height:2}.province-human .province-directory{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;padding-bottom:110px;background:rgba(24,35,31,.12)}.province-human .province-directory a{display:grid;min-height:150px;padding:26px;align-content:space-between;border:0;border-radius:0;background:#fff}.province-human .province-directory a:hover{z-index:1;background:#20312b;color:#fff;transform:none}.province-human .province-directory a:hover strong,.province-human .province-directory a:hover small{color:#fff}.province-human .province-directory span{color:var(--legacy-red)}.province-human .province-directory strong{font-size:24px}
.province-human .province-hero{display:grid;grid-template-columns:1.25fr .75fr;gap:70px;min-height:570px;align-items:center;padding-block:85px;border:0}.province-human .province-hero aside{min-height:280px;padding:40px;align-content:end;border-radius:0;background:#20312b;box-shadow:22px 22px 0 #d9a447}.province-human .province-links,.province-human .province-more{padding-block:90px;border-top:1px solid rgba(24,35,31,.13)}.province-human .province-link-grid{grid-template-columns:repeat(3,1fr);gap:12px}.province-human .province-social{min-height:145px;padding:24px;border-radius:0;background:#fff;color:var(--legacy-ink);box-shadow:0 15px 40px rgba(24,35,31,.06)}.province-human .province-social strong{color:var(--legacy-ink)}.province-human .province-social:hover strong{color:#fff}.province-human .province-chips{gap:8px}.province-human .province-chips a{padding:12px 16px;border-color:rgba(24,35,31,.14);border-radius:0;background:#fff}

/* Language selector */
.language-human .language-page__content{width:min(1200px,calc(100% - 64px));margin:auto;padding:90px 0 120px}.language-human .language-page__head{display:grid;grid-template-columns:170px 1fr;align-items:end;margin-bottom:55px;padding-bottom:35px;border-bottom:1px solid rgba(24,35,31,.14)}.language-human .language-page__head p{display:grid;width:105px;height:105px;margin:0;place-items:center;border-radius:50%;background:#20312b;color:#fff;font-size:18px;font-weight:900}.language-human .language-page__head h1{font-size:clamp(58px,8vw,104px);letter-spacing:-4px}.language-human .language-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:rgba(24,35,31,.12)}.language-human .language-card{position:relative;display:grid;min-height:145px;padding:25px;align-content:space-between;border:0;border-radius:0;background:#fff}.language-human .language-card:hover{z-index:1;background:#20312b;transform:none}.language-human .language-card[aria-current=page]{background:#e5ece7}.language-human .language-card strong{font-size:19px}.language-human .language-card i{top:24px;left:24px}

/* Legal documents */
.legal-human .legal-content{position:relative;width:min(100% - 64px,1200px);margin:auto;padding:100px clamp(28px,8vw,130px) 120px;border:0;border-radius:0;background:#fff}.legal-human .legal-content::before{position:absolute;top:0;right:0;width:8px;height:270px;background:linear-gradient(var(--legacy-red),#d9a447);content:""}.legal-human .legal-content>h1{max-width:850px;margin:14px 0 16px;font-size:clamp(58px,8vw,100px);letter-spacing:-4px;line-height:1.2}.legal-human .legal-updated{display:inline-flex;margin:0 0 60px!important;padding:8px 13px;background:#e9eee9;color:#476052!important;font-size:11px!important;font-weight:800}.legal-human .legal-content>p:not(.legal-updated):first-of-type{font-size:19px;line-height:2}.legal-human .legal-content h2{margin:65px 0 15px;padding-top:26px;border-top:1px solid rgba(24,35,31,.13);font-size:30px}.legal-human .legal-content p,.legal-human .legal-content li{max-width:850px;color:#53605a;font-size:15px;line-height:2.2}.legal-human .legal-content ul{padding-inline-start:0;list-style:none}.legal-human .legal-content li{position:relative;padding:10px 25px 10px 0}.legal-human .legal-content li::before{position:absolute;top:25px;right:0;width:7px;height:7px;border-radius:50%;background:var(--legacy-red);content:""}.legal-human .legal-content a{color:var(--legacy-red);font-weight:850}

/* Job details and candidate dashboard */
.job-human .job-hero,.job-human .job-layout,.job-human .job-cta,.candidate-human .candidate-header,.candidate-human .candidate-layout,.candidate-human .career-message{width:min(1200px,calc(100% - 64px));margin-inline:auto}.job-human .job-hero{display:grid;grid-template-columns:1.35fr .65fr;gap:75px;min-height:620px;align-items:center;padding-block:90px}.job-human .job-hero h1{margin:12px 0;font-size:clamp(58px,8vw,105px);letter-spacing:-4px;line-height:1.15}.job-human .job-hero>div>p{max-width:760px;color:var(--legacy-muted);font-size:19px;line-height:2}.job-human .job-tags{margin-top:25px}.job-human .job-tags span{padding:9px 14px;border-radius:0;background:#e6ece7}.job-human .job-hero aside{display:flex;min-height:350px;padding:38px;align-items:flex-start;flex-direction:column;justify-content:flex-end;border:0;border-radius:0;background:#20312b;color:#fff;box-shadow:24px 24px 0 #d9a447}.job-human .job-hero aside strong{color:#fff;font-size:30px}.job-human .job-hero aside p{color:rgba(255,255,255,.6)}.job-human .job-hero aside .button{width:100%;margin-top:24px}.job-human .job-layout{display:grid;grid-template-columns:1fr 330px;gap:70px;padding-block:95px;border-top:1px solid rgba(24,35,31,.13)}.job-human .job-description{padding:0;border:0;border-radius:0;background:transparent}.job-human .job-description section{padding:0 0 60px}.job-human .job-description h2{font-size:35px}.job-human .job-description p,.job-human .job-description li{color:#52605a;line-height:2.1}.job-human .job-description li{padding:14px 30px 14px 0;border-bottom:1px solid rgba(24,35,31,.1)}.job-human .job-process{position:sticky;top:30px;padding:32px;border-radius:0;background:#fff;box-shadow:0 20px 50px rgba(24,35,31,.07)}.job-human .job-cta{margin-bottom:100px;padding:55px;border-radius:0;background:#dfe9e2}.job-human .job-cta h2{font-size:38px}
.candidate-human .candidate-header{display:flex;min-height:350px;padding-block:80px;align-items:flex-end;justify-content:space-between;border-bottom:1px solid rgba(24,35,31,.13)}.candidate-human .candidate-header h1{margin:8px 0;font-size:clamp(55px,8vw,92px);letter-spacing:-4px}.candidate-human .candidate-header>div>p:last-child{color:var(--legacy-muted)}.candidate-human .candidate-layout{display:grid;grid-template-columns:1.15fr .85fr;gap:35px;padding-block:80px 110px}.candidate-human .candidate-form,.candidate-human .candidate-applications{padding:42px;border:0;border-radius:0;background:#fff;box-shadow:0 20px 55px rgba(24,35,31,.06)}.candidate-human .candidate-form input,.candidate-human .candidate-form select,.candidate-human .candidate-form textarea{border-color:rgba(24,35,31,.18);border-radius:2px;background:#fbfaf7}.candidate-human .candidate-applications>div>a{padding:22px 0;border-bottom:1px solid rgba(24,35,31,.12)}.candidate-human .application-status{border-radius:0}

/* Passwordless auth */
.auth-human{position:relative;display:grid;min-height:100vh;padding:0;grid-template-columns:1.05fr .95fr;background:#20312b;color:#fff}.auth-human::before{position:absolute;top:-190px;right:-160px;width:520px;height:520px;border:90px solid rgba(255,255,255,.035);border-radius:50%;content:""}.auth-human .career-auth__brand{z-index:2;top:34px;right:45px;color:#fff}.auth-human .career-auth__brand img{filter:drop-shadow(0 7px 14px rgba(0,0,0,.2))}.auth-human__story{position:relative;z-index:1;display:flex;padding:140px clamp(45px,8vw,130px) 80px;justify-content:center;flex-direction:column}.auth-human__story>span{color:#e8c46c;font-size:12px;font-weight:900}.auth-human__story h2{max-width:650px;margin:18px 0;font-size:clamp(43px,5vw,72px);line-height:1.45}.auth-human__story p{max-width:550px;color:rgba(255,255,255,.6);font-size:15px;line-height:2}.auth-human__story ol{display:grid;gap:13px;margin:35px 0 0;padding:0;list-style:none}.auth-human__story li{color:rgba(255,255,255,.72);font-size:12px}.auth-human__story li::before{display:inline-grid;width:24px;height:24px;margin-left:10px;place-items:center;border:1px solid rgba(255,255,255,.2);border-radius:50%;color:#e8c46c;content:"✓"}.auth-human>section{position:relative;z-index:1;width:100%;min-height:100vh;padding:clamp(45px,8vw,110px);align-content:center;border:0;border-radius:0;background:#fbf9f4;box-shadow:none}.auth-human>section .home-kicker{color:var(--legacy-red)}.auth-human>section h1{margin:10px 0 15px;color:#18231f;font-size:clamp(48px,6vw,78px);letter-spacing:-3px}.auth-human>section>p{max-width:480px;color:#68736e;line-height:2}.auth-human form{margin-top:35px}.auth-human .career-field label{color:#26332e}.auth-human .career-field input{min-height:60px;border:1px solid rgba(24,35,31,.18);border-radius:2px;background:#fff}.auth-human .button.primary{display:flex;min-height:58px;align-items:center;justify-content:space-between;border-radius:2px;background:#bd2d38}.auth-human__trust{display:block;margin-top:18px;color:#77817c;font-size:10px;line-height:1.8}.auth-human .career-back{color:#53605a}.auth-human--verify .career-field--code input{font-size:32px}

@media(max-width:900px){.brand-detail-human .brand-hero,.brand-detail-human .brand-reference,.press-human .press-hero,.province-human .province-hero,.job-human .job-hero,.job-human .job-layout,.candidate-human .candidate-layout{grid-template-columns:1fr}.brand-detail-human .brand-hero::before{inset:30px -32px 42%}.brand-detail-human .brand-passport,.press-human .press-identity,.province-human .province-hero aside,.job-human .job-hero aside{max-width:560px}.province-human .province-directory,.province-human .province-link-grid{grid-template-columns:repeat(2,1fr)}.language-human .language-grid{grid-template-columns:repeat(3,1fr)}.press-human .press-nav{overflow-x:auto}.candidate-human .candidate-header{align-items:flex-start;flex-direction:column;justify-content:flex-end}.auth-human{grid-template-columns:1fr}.auth-human__story{min-height:520px;padding-top:130px}.auth-human>section{min-height:auto}.auth-human .career-auth__brand{position:absolute}}
@media(max-width:650px){.brand-detail-human .brand-hero,.brand-detail-human .brand-reference,.brand-detail-human .brand-section,.press-human .press-hero,.press-human .press-nav,.press-human .press-section,.press-human .press-contact,.province-human .province-index-hero,.province-human .province-directory,.province-human .province-hero,.province-human .province-links,.province-human .province-more,.language-human .language-page__content,.legal-human .legal-content,.job-human .job-hero,.job-human .job-layout,.job-human .job-cta,.candidate-human .candidate-header,.candidate-human .candidate-layout,.candidate-human .career-message{width:min(100% - 32px,1200px)}.brand-detail-human .brand-hero,.press-human .press-hero,.province-human .province-hero,.job-human .job-hero{min-height:0;padding-block:65px}.brand-detail-human .brand-hero h1,.press-human .press-hero h1,.province-human .province-index-hero h1,.province-human .province-hero h1,.job-human .job-hero h1,.candidate-human .candidate-header h1,.language-human .language-page__head h1,.legal-human .legal-content>h1{font-size:48px;letter-spacing:-2px}.brand-detail-human .brand-passport,.press-human .press-identity,.province-human .province-hero aside,.job-human .job-hero aside{min-height:270px;box-shadow:12px 12px 0 #d9a447}.brand-detail-human .brand-reference-list,.brand-detail-human .brand-related-grid,.press-human .press-facts,.press-human .press-timeline,.press-human .press-downloads,.province-human .province-directory,.province-human .province-link-grid,.language-human .language-grid,.career-form-grid{grid-template-columns:1fr}.press-human .press-section,.province-human .province-links,.province-human .province-more{padding-block:65px}.press-human .press-contact{margin-block:60px;padding:35px 25px}.language-human .language-page__head{grid-template-columns:1fr;gap:25px}.language-human .language-page__head p{width:74px;height:74px}.legal-human .legal-content{padding:65px 24px 80px}.legal-human .legal-content h2{font-size:26px}.job-human .job-layout{gap:35px;padding-block:60px}.job-human .job-process{position:static}.job-human .job-cta{align-items:flex-start;flex-direction:column;padding:32px}.candidate-human .candidate-header{min-height:300px;padding-block:55px}.candidate-human .candidate-form,.candidate-human .candidate-applications{padding:25px 18px}.auth-human__story{min-height:480px;padding:125px 24px 65px}.auth-human__story h2{font-size:42px}.auth-human>section{padding:65px 24px}.auth-human>section h1{font-size:48px}}
@media (max-width: 620px) { .legal-content { padding: 46px 18px 60px; } .legal-content h1 { font-size: 38px; } }
@media (max-width: 760px) {
  .language-link { align-self: center; margin-bottom: 14px; }
  .language-grid { grid-template-columns: 1fr; }
  .language-card { min-height: 112px; padding: 22px; }
  .language-card > strong { font-size: 21px; }
}

@media (min-width: 761px) and (max-width: 980px) {
  .language-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
html:is([lang="ru"], [lang="tr"], [lang="az"], [lang="tg"]) body,
html:is([lang="ru"], [lang="tr"], [lang="az"], [lang="tg"]) button,
html:is([lang="ru"], [lang="tr"], [lang="az"], [lang="tg"]) input,
html:is([lang="ru"], [lang="tr"], [lang="az"], [lang="tg"]) select,
html:is([lang="ru"], [lang="tr"], [lang="az"], [lang="tg"]) textarea {
  font-family: "Noto Sans Local", Arial, sans-serif;
}

html:is([lang="ur"], [lang="ur-in"]) body,
html:is([lang="ur"], [lang="ur-in"]) button,
html:is([lang="ur"], [lang="ur-in"]) input,
html:is([lang="ur"], [lang="ur-in"]) select,
html:is([lang="ur"], [lang="ur-in"]) textarea {
  font-family: "Noto Nastaliq Urdu Local", "Vazirmatn", sans-serif;
}

html:is([lang="ur"], [lang="ur-in"]) body {
  line-height: 2;
}

html:is([lang="fa-af"], [lang="ps-af"], [lang="uz-arab-af"], [lang="tk-arab-af"]) body,
html:is([lang="fa-af"], [lang="ps-af"], [lang="uz-arab-af"], [lang="tk-arab-af"]) button,
html:is([lang="fa-af"], [lang="ps-af"], [lang="uz-arab-af"], [lang="tk-arab-af"]) input,
html:is([lang="fa-af"], [lang="ps-af"], [lang="uz-arab-af"], [lang="tk-arab-af"]) select,
html:is([lang="fa-af"], [lang="ps-af"], [lang="uz-arab-af"], [lang="tk-arab-af"]) textarea {
  font-family: "Noto Sans Arabic Local", "Vazirmatn", sans-serif;
}

html[lang="hi"] body,
html[lang="hi"] button,
html[lang="hi"] input,
html[lang="hi"] select,
html[lang="hi"] textarea {
  font-family: "Noto Sans Devanagari Local", "Noto Sans Local", sans-serif;
}

html[lang="zh-hans"] body,
html[lang="zh-hans"] button,
html[lang="zh-hans"] input,
html[lang="zh-hans"] select,
html[lang="zh-hans"] textarea {
  font-family: "Noto Sans SC Local", "Noto Sans Local", sans-serif;
}

html:is([lang="fr-fr"], [lang="de"], [lang="es-es"], [lang="pt-br"]) body,
html:is([lang="fr-fr"], [lang="de"], [lang="es-es"], [lang="pt-br"]) button,
html:is([lang="fr-fr"], [lang="de"], [lang="es-es"], [lang="pt-br"]) input,
html:is([lang="fr-fr"], [lang="de"], [lang="es-es"], [lang="pt-br"]) select,
html:is([lang="fr-fr"], [lang="de"], [lang="es-es"], [lang="pt-br"]) textarea {
  font-family: "Noto Sans Local", Arial, sans-serif;
}

html[lang="bn-bd"] :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Bengali Local", "Noto Sans Local", sans-serif;
}

html[lang="pa-guru"] :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Gurmukhi Local", "Noto Sans Local", sans-serif;
}

html[lang="th"] :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Thai Local", "Noto Sans Local", sans-serif;
}

html[lang="ja"] :is(body, button, input, select, textarea) {
  font-family: "Noto Sans JP Local", "Noto Sans Local", sans-serif;
}

html[lang="ko"] :is(body, button, input, select, textarea) {
  font-family: "Noto Sans KR Local", "Noto Sans Local", sans-serif;
}

html:is([lang="id"], [lang="ms"], [lang="vi"], [lang="et"], [lang="lv"], [lang="lt"], [lang="sw"], [lang="af"], [lang="so"], [lang="ha"], [lang="yo"], [lang="ig"], [lang="zu"]) :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Local", Arial, sans-serif;
}

html[lang="el"] :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Local", Arial, sans-serif;
}

html[lang="hy"] :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Armenian Local", "Noto Sans Local", Arial, sans-serif;
}

html[lang="ka"] :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Georgian Local", "Noto Sans Local", Arial, sans-serif;
}

html[lang="am"] :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Ethiopic Local", "Noto Sans Local", Arial, sans-serif;
}

html:is([lang="ckb"], [lang="pa-arab-pk"], [lang="sd-arab-pk"], [lang="ar-sa"], [lang="ar-ae"], [lang="ar-iq"], [lang="ar-eg"]) :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Arabic Local", "Vazirmatn", sans-serif;
}

html:is([lang="zh-hant"], [lang="zh-hant-hk"]) :is(body, button, input, select, textarea) {
  font-family: "Noto Sans TC Local", "Noto Sans Local", sans-serif;
}

html:is([lang="ne"], [lang="mr"]) :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Devanagari Local", "Noto Sans Local", sans-serif;
}

html[lang="si"] :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Sinhala Local", "Noto Sans Local", sans-serif;
}

html[lang="ta"] :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Tamil Local", "Noto Sans Local", sans-serif;
}

html[lang="te"] :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Telugu Local", "Noto Sans Local", sans-serif;
}

html[lang="gu"] :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Gujarati Local", "Noto Sans Local", sans-serif;
}

html:is([lang="ku"], [lang="uz-latn"], [lang="tk"], [lang="fr-ca"], [lang="es-mx"], [lang="pt-pt"], [lang="en-gb"], [lang="en-us"], [lang="kk"], [lang="ky"], [lang="uz-cyrl"]) :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Local", Arial, sans-serif;
}

html[lang="ml"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Malayalam Local", "Noto Sans Local", sans-serif; }
html[lang="kn"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Kannada Local", "Noto Sans Local", sans-serif; }
html[lang="as"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Bengali Local", "Noto Sans Local", sans-serif; }
html[lang="or"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Odia Local", "Noto Sans Local", sans-serif; }
html[lang="my"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Myanmar Local", "Noto Sans Local", sans-serif; }
html[lang="km"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Khmer Local", "Noto Sans Local", sans-serif; }
html[lang="lo"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Lao Local", "Noto Sans Local", sans-serif; }
html[lang="yue"] :is(body, button, input, select, textarea) { font-family: "Noto Sans TC Local", "Noto Sans Local", sans-serif; }
html[lang="ti"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Ethiopic Local", "Noto Sans Local", sans-serif; }

html:is([lang="fil"], [lang="mn"], [lang="xh"], [lang="st"], [lang="tn"], [lang="rw"], [lang="mg"], [lang="sn"], [lang="ny"], [lang="om"], [lang="ff"], [lang="mt"], [lang="lb"], [lang="fo"], [lang="co"], [lang="sc"], [lang="eo"], [lang="fr-be"], [lang="fr-ch"], [lang="de-at"], [lang="de-ch"], [lang="es-ar"], [lang="es-co"], [lang="pt-ao"], [lang="en-ca"], [lang="en-au"], [lang="en-in"]) :is(body, button, input, select, textarea) {
  font-family: "Noto Sans Local", Arial, sans-serif;
}

html[lang="ug"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Arabic Local", "Vazirmatn", sans-serif; }
html:is([lang="bo"], [lang="dz"]) :is(body, button, input, select, textarea) { font-family: "Noto Serif Tibetan Local", serif; }
html[lang="ban"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Balinese Local", sans-serif; }
html[lang="iu"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Canadian Aboriginal Local", "Noto Sans Local", sans-serif; }
html[lang="zgh"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Tifinagh Local", "Noto Sans Local", sans-serif; }
html[lang="bs-cyrl"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Local", Arial, sans-serif; }
html[lang="zh-hans-sg"] :is(body, button, input, select, textarea) { font-family: "Noto Sans SC Local", "Noto Sans Local", sans-serif; }
html[lang="zh-hant-mo"] :is(body, button, input, select, textarea) { font-family: "Noto Sans TC Local", "Noto Sans Local", sans-serif; }
html[lang="ta-lk"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Tamil Local", "Noto Sans Local", sans-serif; }
html[lang="bn"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Bengali Local", "Noto Sans Local", sans-serif; }
html[lang="chr"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Cherokee Local", sans-serif; }

/* Cinematic Borsa home page */
.home-cinema {
  --borsa-red: #c3141e;
  --borsa-red-dark: #941018;
  --borsa-charcoal: #101820;
  --borsa-black: #080a0c;
  --borsa-white: #fff;
  --borsa-silver: #d9dee5;
  --borsa-muted: #5b6570;
  --borsa-gold: #b88a2a;
  overflow: hidden;
  background: #eef1f2;
  color: var(--borsa-charcoal);
}

.cinema-shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.cinema-hero {
  position: relative;
  min-height: min(900px, 92vh);
  isolation: isolate;
  background: url("../images/home/hero.ebe81fe47314.webp") center 48% / cover no-repeat;
  color: #fff;
}

.cinema-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 10, 12, .18) 0%, rgba(8, 10, 12, .42) 44%, rgba(8, 10, 12, .94) 100%),
    linear-gradient(0deg, rgba(8, 10, 12, .72) 0%, transparent 38%);
}

.home-cinema .home-header {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 64px));
  min-height: 98px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
}

.home-cinema .home-brand,
.home-cinema .home-header nav,
.home-cinema .home-header nav a,
.home-cinema .language-link {
  color: #fff;
}

.home-cinema .home-brand img {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, .24));
}

.home-cinema .home-header nav a {
  opacity: .84;
  transition: color .2s ease, opacity .2s ease;
}

.home-cinema .home-header nav a:hover,
.home-cinema .home-header nav a:focus-visible {
  color: #fff;
  opacity: 1;
}

.home-cinema .language-link {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(8, 10, 12, .25);
  backdrop-filter: blur(8px);
}

.cinema-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  width: min(1240px, calc(100% - 64px));
  min-height: calc(min(900px, 92vh) - 98px);
  margin-inline: auto;
  padding-block: clamp(80px, 13vh, 150px) 110px;
}

.cinema-hero__copy {
  width: min(790px, 72%);
  margin-inline-start: auto;
}

.cinema-hero .home-kicker {
  color: #ff5961;
}

.cinema-hero h1 {
  max-width: 790px;
  margin: 16px 0 24px;
  color: #fff;
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: 1.25;
}

.cinema-hero .home-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 2;
}

.cinema-button {
  width: auto;
  min-width: 160px;
  min-height: 54px;
  border-radius: 4px;
}

.cinema-button--primary {
  border-color: var(--borsa-red);
  background: var(--borsa-red);
  color: #fff;
}

.cinema-button--primary:hover,
.cinema-button--primary:focus-visible {
  border-color: var(--borsa-red-dark);
  background: var(--borsa-red-dark);
}

.cinema-button--ghost {
  border-color: rgba(255, 255, 255, .62);
  background: rgba(8, 10, 12, .18);
  color: #fff;
  backdrop-filter: blur(7px);
}

.cinema-button--ghost:hover,
.cinema-button--ghost:focus-visible {
  background: rgba(255, 255, 255, .13);
}

.cinema-scroll {
  position: absolute;
  bottom: 42px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.cinema-scroll i {
  display: block;
  width: 46px;
  height: 1px;
  background: #fff;
}

.cinema-intro {
  padding: clamp(100px, 12vw, 170px) 0 clamp(90px, 11vw, 150px);
  background: var(--borsa-black);
  color: #fff;
}

.cinema-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: end;
}

.cinema-intro h2,
.cinema-feature h2,
.cinema-chapter h2,
.cinema-portfolio h2,
.cinema-closing h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.45;
}

.cinema-intro__grid > p {
  margin: 0;
  color: #abb3b8;
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 2.15;
}

.cinema-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(70px, 9vw, 110px);
  border-block: 1px solid rgba(255, 255, 255, .18);
}

.cinema-facts div {
  min-width: 0;
  padding: 34px 26px;
  border-inline-start: 1px solid rgba(255, 255, 255, .18);
}

.cinema-facts div:first-child { border-inline-start: 0; }
.cinema-facts strong,
.cinema-facts span { display: block; }
.cinema-facts strong { margin-bottom: 8px; color: #fff; font-size: clamp(25px, 3vw, 40px); }
.cinema-facts span { color: #8f999f; font-size: 13px; line-height: 1.8; }

.cinema-feature {
  margin-block: clamp(36px, 5vw, 72px);
  padding: clamp(90px, 11vw, 150px) 0;
}

.cinema-feature--akharin {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(8, 10, 12, .18), rgba(8, 10, 12, .68) 52%, rgba(148, 16, 24, .98) 100%),
    url("../images/home/media.97ea3d2d0f6d.webp") center / cover no-repeat;
  color: #fff;
}

.cinema-feature--akharin::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(8, 10, 12, .48), transparent 46%);
}

.cinema-feature--akharin::after {
  position: absolute;
  bottom: -90px;
  left: -30px;
  content: "AKHARIN KHABAR";
  color: rgba(255, 255, 255, .055);
  font: 800 clamp(80px, 13vw, 190px)/1 Arial, sans-serif;
  white-space: nowrap;
}

.cinema-feature__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, .9fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.cinema-overline {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.cinema-feature__copy > p:not(.cinema-overline) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 19px;
  line-height: 2;
}

.cinema-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: inherit;
  font-weight: 800;
}

.cinema-text-link span {
  transition: transform .2s ease;
}

.cinema-text-link:hover span,
.cinema-text-link:focus-visible span {
  transform: translateX(-5px);
}

html[dir="ltr"] .cinema-text-link:hover span,
html[dir="ltr"] .cinema-text-link:focus-visible span {
  transform: translateX(5px);
}

.cinema-ak-logo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  width: min(470px, 100%);
  justify-self: end;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 4px;
  background: rgba(8, 10, 12, .76);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
}

.cinema-ak-logo img {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 3px;
}

.cinema-ak-logo span,
.cinema-ak-logo b,
.cinema-ak-logo small {
  display: block;
}

.cinema-ak-logo span {
  padding-inline-start: 22px;
  border-inline-start: 1px solid rgba(255, 255, 255, .24);
  white-space: nowrap;
}

.cinema-ak-logo b {
  margin-bottom: 7px;
  color: #fff;
  font-size: 14px;
}

.cinema-ak-logo small {
  color: #ff6b72;
  font-weight: 800;
}

.cinema-chapters {
  display: grid;
  gap: clamp(36px, 5vw, 72px);
  padding-block: 0 clamp(36px, 5vw, 72px);
}

.cinema-chapter {
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  min-height: clamp(600px, 70vw, 760px);
  background: var(--borsa-charcoal);
  color: #fff;
}

.cinema-chapter--reverse {
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
}

.cinema-chapter--reverse .cinema-chapter__image { order: 2; }

.cinema-chapter__image {
  min-height: 600px;
  background-position: center;
  background-size: cover;
}

.cinema-chapter--media .cinema-chapter__image { background-image: url("../images/home/media-camera.e20f6195b44f.webp"); background-position: center 54%; }
.cinema-chapter--creative .cinema-chapter__image { background-image: url("../images/home/creative.b9aa9731f555.webp"); background-position: center 46%; }
.cinema-chapter--education .cinema-chapter__image { background-image: url("../images/home/education-hijab.32203d351395.webp"); background-position: center; }
.cinema-chapter--growth .cinema-chapter__image { background-image: url("../images/home/growth-women.d9ea28d727f4.webp"); background-position: center; }

.cinema-chapter--education {
  background: #fff;
  color: var(--borsa-charcoal);
}

.cinema-chapter--creative { background: #172128; }
.cinema-chapter--growth { background: #202428; }

.cinema-chapter__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(50px, 7vw, 100px);
}

.cinema-index {
  display: block;
  margin-bottom: 52px;
  color: var(--borsa-red);
  font-weight: 800;
}

.cinema-chapter .home-kicker { margin-bottom: 12px; }
.cinema-chapter h2 { font-size: clamp(32px, 4vw, 56px); }
.cinema-chapter__copy > p:last-of-type {
  margin: 23px 0 0;
  color: #b3bcc2;
  font-size: 18px;
  line-height: 2;
}
.cinema-chapter--education .cinema-chapter__copy > p:last-of-type { color: var(--borsa-muted); }

.cinema-portfolio {
  margin-top: clamp(36px, 5vw, 72px);
  padding: clamp(100px, 12vw, 160px) 0;
  background: #fff;
}

.cinema-portfolio__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.cinema-portfolio__head > div { max-width: 740px; }
.cinema-portfolio__head .cinema-text-link { flex: 0 0 auto; color: var(--borsa-red); }

.cinema-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-block: 1px solid var(--borsa-silver);
}

.cinema-portfolio__grid a {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 220px;
  padding: 28px 22px;
  border-inline-start: 1px solid var(--borsa-silver);
  color: var(--borsa-charcoal);
  transition: background .2s ease, color .2s ease;
}

.cinema-portfolio__grid a:first-child { border-inline-start: 0; }
.cinema-portfolio__grid a:hover,
.cinema-portfolio__grid a:focus-visible { background: var(--borsa-charcoal); color: #fff; }
.cinema-portfolio__grid span { margin-bottom: auto; color: var(--borsa-red); font-weight: 800; }
.cinema-portfolio__grid strong { font-size: clamp(18px, 1.8vw, 25px); line-height: 1.55; }
.cinema-portfolio__grid small { margin-top: 10px; color: #76818a; }

.cinema-closing {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 700px;
  margin-top: clamp(36px, 5vw, 72px);
  isolation: isolate;
  background: url("../images/home/hero.ebe81fe47314.webp") center / cover no-repeat;
  color: #fff;
}

.cinema-closing::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(8, 10, 12, .78);
}

.cinema-closing .cinema-shell { padding-block: 110px; }
.cinema-closing h2 { max-width: 850px; }
.cinema-closing .cinema-shell > p:not(.home-kicker) {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

.home-cinema .cinema-footer {
  width: min(1240px, calc(100% - 64px));
  margin-top: 0;
  padding-block: 38px 52px;
  border-color: #30353a;
  color: #89939a;
}

.home-cinema .cinema-footer p { color: #fff; }
.home-cinema::after { display: none; }

@media (max-width: 1080px) {
  .home-cinema .home-header {
    flex-wrap: wrap;
    padding-block: 16px;
  }

  .home-cinema .home-header nav {
    order: 3;
    width: 100%;
    flex-basis: 100%;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .cinema-hero__inner { min-height: 700px; }
  .cinema-hero__copy { width: min(790px, 86%); }
  .cinema-portfolio__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cinema-portfolio__grid a:nth-child(4) { border-inline-start: 0; }
  .cinema-portfolio__grid a:nth-child(n+4) { border-top: 1px solid var(--borsa-silver); }
}

@media (max-width: 760px) {
  .cinema-shell,
  .home-cinema .home-header,
  .cinema-hero__inner,
  .home-cinema .cinema-footer {
    width: min(100% - 32px, 1240px);
  }

  .cinema-hero {
    min-height: 760px;
    background-position: 38% center;
  }

  .cinema-hero::before {
    background: linear-gradient(0deg, rgba(8, 10, 12, .96) 0%, rgba(8, 10, 12, .48) 72%, rgba(8, 10, 12, .7) 100%);
  }

  .home-cinema .home-header nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .home-cinema .home-header nav::-webkit-scrollbar { display: none; }
  .home-cinema .home-header nav a { flex: 0 0 auto; }

  .cinema-hero__inner {
    align-items: end;
    min-height: 610px;
    padding-block: 70px 88px;
  }

  .cinema-hero__copy { width: 100%; }
  .cinema-hero h1 { font-size: clamp(39px, 12vw, 58px); }
  .cinema-hero .home-lead { font-size: 16px; line-height: 1.9; }
  .cinema-hero .home-actions { flex-direction: row; }
  .cinema-hero .home-actions .button { width: auto; flex: 1 1 150px; }
  .cinema-scroll { right: 0; left: auto; }

  .cinema-intro__grid,
  .cinema-feature__inner,
  .cinema-chapter,
  .cinema-chapter--reverse {
    grid-template-columns: 1fr;
  }

  .cinema-intro__grid { gap: 34px; }
  .cinema-facts { grid-template-columns: repeat(2, 1fr); }
  .cinema-facts div:nth-child(3) { border-inline-start: 0; }
  .cinema-facts div:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .18); }

  .cinema-feature__inner { gap: 50px; }
  .cinema-ak-logo { justify-self: stretch; margin-inline: auto; }
  .cinema-chapter--reverse .cinema-chapter__image { order: 0; }
  .cinema-chapter__image { min-height: 62vw; max-height: 520px; }
  .cinema-chapter--creative .cinema-chapter__image { background-position: center 38%; }
  .cinema-chapter__copy { min-height: 470px; padding: 54px 24px 64px; }
  .cinema-index { margin-bottom: 38px; }

  .cinema-portfolio__head { display: block; }
  .cinema-portfolio__grid { grid-template-columns: 1fr 1fr; }
  .cinema-portfolio__grid a { min-height: 190px; }
  .cinema-portfolio__grid a:nth-child(odd) { border-inline-start: 0; }
  .cinema-portfolio__grid a:nth-child(4) { border-inline-start: 1px solid var(--borsa-silver); }
  .cinema-portfolio__grid a:nth-child(n+3) { border-top: 1px solid var(--borsa-silver); }
  .cinema-closing { min-height: 620px; }

  .home-cinema .cinema-footer {
    align-items: flex-start;
    padding-bottom: 58px;
  }
}

@media (max-width: 440px) {
  .home-cinema .home-brand span { display: none; }
  .home-cinema .language-link strong { display: none; }
  .cinema-hero .home-actions { flex-direction: column; }
  .cinema-hero .home-actions .button { width: 100%; flex-basis: auto; }
  .cinema-facts { grid-template-columns: 1fr; }
  .cinema-facts div { border-inline-start: 0; border-top: 1px solid rgba(255, 255, 255, .18); }
  .cinema-facts div:first-child { border-top: 0; }
  .cinema-portfolio__grid { grid-template-columns: 1fr; }
  .cinema-portfolio__grid a,
  .cinema-portfolio__grid a:nth-child(4) { border-inline-start: 0; border-top: 1px solid var(--borsa-silver); }
  .cinema-portfolio__grid a:first-child { border-top: 0; }
  .cinema-ak-logo { grid-template-columns: 1fr; }
  .cinema-ak-logo span { padding: 18px 0 0; border-inline-start: 0; border-top: 1px solid rgba(255, 255, 255, .24); }
}

/* Human-first homepage — 2026 redesign */
.human-home { --hh-ink:#17231f; --hh-muted:#66736d; --hh-paper:#faf8f2; --hh-cream:#f1eadc; --hh-red:#c42633; --hh-coral:#ed6b5f; --hh-green:#3f7560; --hh-yellow:#f2c55e; overflow:hidden; background:var(--hh-paper); color:var(--hh-ink); }
.human-home .borsa-shell { width:min(1240px,calc(100% - 64px)); }
.human-home .borsa-site-header { position:absolute; color:var(--hh-ink); border-color:rgba(23,35,31,.1); background:rgba(250,248,242,.78); backdrop-filter:blur(18px) saturate(140%); }
.human-home .borsa-site-header__brand,.human-home .borsa-site-header__primary a,.human-home .borsa-site-header .language-link,.human-home .borsa-site-header__menu-button { color:var(--hh-ink); }
.human-home .borsa-site-header .language-link,.human-home .borsa-site-header__menu-button { border-color:rgba(23,35,31,.17); background:rgba(255,255,255,.42); }
.human-home h1,.human-home h2,.human-home h3,.human-home p { text-wrap:pretty; }
.human-kicker { display:flex; align-items:center; gap:11px; margin:0 0 20px; color:var(--hh-green); font-size:13px; font-weight:900; }
.human-kicker span { width:26px; height:3px; border-radius:10px; background:var(--hh-coral); }
.human-button { display:inline-flex; align-items:center; justify-content:center; gap:20px; min-height:56px; padding:0 25px; border:1px solid transparent; font-size:14px; font-weight:900; transition:transform .2s ease,background .2s ease,color .2s ease,border-color .2s ease; }
.human-button:hover,.human-button:focus-visible { transform:translateY(-2px); }
.human-button--primary { border-radius:4px; background:var(--hh-red); color:#fff; box-shadow:0 13px 30px rgba(196,38,51,.18); }
.human-button--primary:hover,.human-button--primary:focus-visible { background:#9f1e29; }
.human-button--text { padding-inline:8px; color:var(--hh-ink); border-bottom-color:rgba(23,35,31,.3); }
.human-button--light { border-radius:4px; background:#fff; color:var(--hh-ink); }
.human-actions { display:flex; flex-wrap:wrap; align-items:center; gap:18px; }

.human-hero { position:relative; min-height:880px; padding:150px 0 90px; background:linear-gradient(135deg,#fffdf8 0%,#f5efe2 100%); isolation:isolate; }
.human-hero__shape { position:absolute; z-index:-1; top:90px; left:-160px; width:520px; height:520px; border-radius:50%; background:#dce9df; opacity:.75; }
.human-hero__grid { display:grid; grid-template-columns:minmax(0,.92fr) minmax(500px,1.08fr); gap:clamp(55px,8vw,120px); align-items:center; }
.human-hero__copy { position:relative; z-index:2; padding-top:34px; }
.human-hero h1 { max-width:690px; margin:0; font-size:clamp(54px,5.4vw,78px); line-height:1.27; letter-spacing:-1.2px; }
.human-hero__lead { max-width:660px; margin:28px 0 34px; color:var(--hh-muted); font-size:18px; line-height:2.05; }
.human-hero__trust { display:flex; flex-wrap:wrap; gap:0; margin-top:50px; padding-top:20px; border-top:1px solid rgba(23,35,31,.14); color:#56645e; font-size:12px; font-weight:850; }
.human-hero__trust span { padding:0 17px; }
.human-hero__trust span:first-child { padding-inline-start:0; }
.human-hero__trust span+span { border-inline-start:1px solid rgba(23,35,31,.18); }
.human-hero__visual { position:relative; min-height:620px; }
.human-photo { position:absolute; overflow:hidden; margin:0; border-radius:160px 160px 18px 18px; background:#ddd; box-shadow:0 28px 70px rgba(38,47,42,.14); }
.human-photo img { width:100%; height:100%; object-fit:cover; }
.human-photo--main { top:0; right:0; width:78%; height:540px; }
.human-photo--small { right:-34px; bottom:-18px; width:44%; height:250px; border:8px solid var(--hh-paper); border-radius:18px 90px 18px 18px; }
.human-photo--small img { object-position:40% center; }
.human-hero__note { position:absolute; z-index:2; right:-30px; bottom:55px; display:flex; width:255px; flex-direction:column; gap:8px; padding:22px 24px; border-radius:4px; background:#fff; box-shadow:0 18px 50px rgba(33,42,37,.14); }
.human-hero__note::before { position:absolute; top:-9px; right:24px; width:18px; height:18px; border-radius:50%; background:var(--hh-yellow); content:""; }
.human-hero__note strong { font-size:17px; }
.human-hero__note span { color:var(--hh-muted); font-size:12px; line-height:1.8; }

.human-impact { padding:74px 0; background:var(--hh-green); color:#fff; }
.human-impact__grid { display:grid; grid-template-columns:1.3fr repeat(4,1fr); gap:0; align-items:stretch; }
.human-impact__intro { padding-inline-end:44px; }
.human-impact .human-kicker { color:#fff; }
.human-impact .human-kicker span { background:var(--hh-yellow); }
.human-impact h2 { max-width:330px; margin:0; font-size:26px; line-height:1.65; }
.human-stat { display:flex; justify-content:center; flex-direction:column; min-height:135px; padding:15px 28px; border-inline-start:1px solid rgba(255,255,255,.2); }
.human-stat strong,.human-stat span { display:block; }
.human-stat strong { font-size:clamp(30px,3vw,45px); line-height:1.25; }
.human-stat span { margin-top:10px; color:rgba(255,255,255,.7); font-size:12px; line-height:1.8; }
.human-stat--featured strong { color:#ffe18c; font-size:clamp(25px,2.35vw,36px); }

.human-how { padding:clamp(105px,12vw,160px) 0; background:#fff; }
.human-heading { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr); gap:clamp(50px,9vw,130px); align-items:end; }
.human-heading h2 { max-width:780px; margin:0; font-size:clamp(42px,4.6vw,66px); line-height:1.38; }
.human-heading>p { margin:0; color:var(--hh-muted); font-size:17px; line-height:2.05; }
.human-heading--compact { grid-template-columns:1fr; }
.human-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; margin:75px 0 0; padding:0; background:#e3e7e3; border:1px solid #e3e7e3; list-style:none; counter-reset:item; }
.human-steps li { position:relative; min-height:330px; padding:34px 30px; background:var(--hh-paper); transition:background .25s ease,transform .25s ease; }
.human-steps li:hover { z-index:2; background:#fff; transform:translateY(-8px); box-shadow:0 20px 45px rgba(31,43,37,.1); }
.human-steps li>span { color:var(--hh-coral); font-size:13px; font-weight:900; }
.human-steps li div { margin-top:100px; }
.human-steps h3 { margin:0 0 15px; font-size:22px; line-height:1.5; }
.human-steps p { margin:0; color:var(--hh-muted); font-size:14px; line-height:2; }
.human-steps li::after { position:absolute; top:40px; left:28px; width:38px; height:38px; border:1px solid #cfd7d1; border-radius:50%; color:var(--hh-green); content:"←"; display:grid; place-items:center; }

.human-worlds { padding:clamp(105px,12vw,160px) 0; background:#f3eee3; }
.human-worlds__grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:65px; }
.human-world { position:relative; display:grid; grid-template-columns:.9fr 1.1fr; min-height:430px; overflow:hidden; background:#fff; color:var(--hh-ink); }
.human-world img { width:100%; height:100%; object-fit:cover; filter:saturate(.88); transition:transform .5s ease,filter .5s ease; }
.human-world:hover img { filter:saturate(1.05); transform:scale(1.025); }
.human-world>div { display:flex; align-items:flex-start; flex-direction:column; padding:42px 38px; }
.human-world small { color:var(--hh-green); font-size:12px; font-weight:900; }
.human-world h3 { margin:18px 0 14px; font-size:26px; line-height:1.55; }
.human-world p { margin:0; color:var(--hh-muted); font-size:14px; line-height:2; }
.human-world div>span { margin-top:auto; padding-top:30px; color:var(--hh-red); font-size:12px; font-weight:900; }
.human-world--wide { grid-template-columns:1.15fr .85fr; }

.human-flagship { position:relative; padding:clamp(100px,11vw,150px) 0; overflow:hidden; background:#fff; }
.human-flagship::after { position:absolute; right:-180px; bottom:-260px; width:620px; height:620px; border:110px solid #f2d9d6; border-radius:50%; content:""; opacity:.5; }
.human-flagship__grid { position:relative; z-index:1; display:grid; grid-template-columns:1.08fr .92fr; gap:clamp(60px,10vw,150px); align-items:center; }
.human-flagship__logo { width:120px; max-height:90px; margin-bottom:28px; object-fit:contain; }
.human-flagship h2 { max-width:700px; margin:0; font-size:clamp(42px,4.8vw,68px); line-height:1.38; }
.human-flagship__copy>p:not(.human-kicker) { max-width:650px; margin:25px 0; color:var(--hh-muted); font-size:17px; line-height:2.05; }
.human-flagship ul { display:flex; flex-wrap:wrap; gap:10px; margin:0 0 35px; padding:0; list-style:none; }
.human-flagship li { padding:10px 14px; border-radius:30px; background:#eef4ef; color:var(--hh-green); font-size:11px; font-weight:900; }
.human-flagship__visual { position:relative; display:flex; align-items:center; justify-content:center; min-height:600px; }
.human-flagship__visual>img { position:relative; z-index:2; width:min(300px,70%); border-radius:34px; box-shadow:0 32px 70px rgba(25,34,29,.28); }
.human-flagship__halo { position:absolute; width:470px; height:470px; border-radius:52% 48% 44% 56%; background:#f4c8c0; transform:rotate(-12deg); }
.human-flagship__visual>span { position:absolute; z-index:3; right:0; bottom:45px; padding:17px 21px; border-radius:4px; background:var(--hh-green); color:#fff; font-size:12px; font-weight:900; box-shadow:0 15px 35px rgba(42,75,60,.25); }

.human-paths { padding:clamp(105px,12vw,160px) 0; background:#e4eee7; }
.human-paths__grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:65px; }
.human-paths__grid a { position:relative; min-height:255px; padding:34px 38px; overflow:hidden; border:1px solid rgba(63,117,96,.18); background:rgba(255,255,255,.7); color:var(--hh-ink); transition:background .2s ease,transform .2s ease; }
.human-paths__grid a:hover { background:#fff; transform:translateY(-3px); }
.human-paths__grid span { color:var(--hh-coral); font-size:12px; font-weight:900; }
.human-paths__grid h3 { margin:40px 0 10px; font-size:25px; }
.human-paths__grid p { max-width:520px; margin:0; color:var(--hh-muted); font-size:14px; line-height:1.9; }
.human-paths__grid b { position:absolute; left:32px; bottom:28px; color:var(--hh-red); font-size:22px; }

.human-closing { padding:70px 0; background:var(--hh-red); color:#fff; }
.human-closing__grid { display:grid; grid-template-columns:1fr .72fr; gap:70px; align-items:center; }
.human-closing .human-kicker { color:#fff; }
.human-closing .human-kicker span { background:var(--hh-yellow); }
.human-closing h2 { max-width:770px; margin:0; font-size:clamp(43px,5vw,70px); line-height:1.4; }
.human-closing p:not(.human-kicker) { max-width:650px; margin:22px 0 33px; color:rgba(255,255,255,.78); font-size:17px; line-height:2; }
.human-closing img { width:100%; height:430px; border-radius:150px 12px 12px 12px; object-fit:cover; box-shadow:0 25px 60px rgba(89,12,20,.25); }
.human-footer { background:#24342e; color:rgba(255,255,255,.68); }
.human-footer .borsa-shell { display:flex; justify-content:space-between; gap:30px; padding-block:42px 58px; border-bottom:1px solid rgba(255,255,255,.1); }
.human-footer p { margin:0; color:#fff; }

@media (max-width:1050px) {
  .human-hero__grid { grid-template-columns:1fr 1fr; gap:45px; }
  .human-hero h1 { font-size:clamp(48px,6vw,66px); }
  .human-impact__grid { grid-template-columns:1fr 1fr; }
  .human-impact__intro { grid-column:1/-1; margin-bottom:35px; }
  .human-impact h2 { max-width:640px; }
  .human-stat:nth-child(odd) { border-inline-start:0; }
  .human-steps { grid-template-columns:1fr 1fr; }
  .human-world { grid-template-columns:1fr; }
  .human-world img { height:290px; }
}
@media (max-width:760px) {
  .human-home .borsa-shell { width:min(100% - 32px,1240px); }
  .human-home .borsa-site-header { position:absolute; min-height:70px; align-items:center; flex-direction:row; padding:10px 16px; }
  .human-home .borsa-site-header__tools { margin-inline-start:auto; }
  .human-hero { min-height:0; padding:120px 0 70px; }
  .human-hero__grid,.human-heading,.human-flagship__grid,.human-closing__grid { grid-template-columns:1fr; }
  .human-hero__copy { padding-top:0; }
  .human-hero h1 { font-size:clamp(42px,12vw,57px); line-height:1.35; letter-spacing:0; }
  .human-hero__lead { font-size:16px; }
  .human-hero__visual { min-height:520px; margin-top:25px; }
  .human-photo--main { width:90%; height:455px; }
  .human-photo--small { right:auto; left:-8px; width:46%; height:205px; }
  .human-hero__note { right:8px; bottom:18px; width:230px; }
  .human-impact { padding:58px 0; }
  .human-impact__grid { grid-template-columns:1fr 1fr; }
  .human-stat { min-height:135px; padding:16px; border-top:1px solid rgba(255,255,255,.18); }
  .human-stat:nth-child(odd) { border-inline-start:0; }
  .human-heading { gap:25px; }
  .human-heading h2 { font-size:clamp(39px,10.5vw,52px); }
  .human-steps { grid-template-columns:1fr; margin-top:48px; }
  .human-steps li { min-height:270px; }
  .human-steps li div { margin-top:70px; }
  .human-worlds__grid,.human-paths__grid { grid-template-columns:1fr; margin-top:45px; }
  .human-world,.human-world--wide { grid-template-columns:1fr; }
  .human-world img { height:280px; }
  .human-flagship__visual { min-height:510px; }
  .human-flagship__halo { width:390px; height:390px; }
  .human-closing img { order:-1; height:350px; }
  .human-footer .borsa-shell { flex-direction:column; }
}
@media (max-width:460px) {
  .human-actions { align-items:stretch; flex-direction:column; }
  .human-button { width:100%; }
  .human-hero__trust { display:grid; grid-template-columns:1fr; gap:10px; }
  .human-hero__trust span { padding:0; border:0!important; }
  .human-hero__visual { min-height:465px; }
  .human-photo--main { width:100%; height:390px; border-radius:110px 110px 12px 12px; }
  .human-photo--small { display:none; }
  .human-hero__note { right:12px; bottom:15px; }
  .human-impact__grid { grid-template-columns:1fr; }
  .human-stat { border-inline-start:0; }
  .human-world>div { padding:34px 26px; }
  .human-paths__grid a { min-height:280px; padding:30px 26px; }
  .human-flagship__visual>img { width:220px; }
  .human-flagship__halo { width:330px; height:330px; }
}

/* Homepage flagship: one cinematic scene, with the product kept in context. */
.borsa-flagship {
  position: relative;
  display: block;
  min-height: 760px;
  margin-top: clamp(100px, 12vw, 170px);
  overflow: hidden;
  isolation: isolate;
  background: #0d1012 url("../images/home/media-camera.e20f6195b44f.webp") center / cover no-repeat;
  color: #fff;
}
.borsa-flagship::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(7, 10, 12, .84);
  content: "";
}
.borsa-flagship__inner {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(58px, 7vw, 110px);
  min-height: 760px;
}
.borsa-flagship__visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: visible;
  isolation: auto;
  background: none;
}
.borsa-flagship__visual::before { display: none; }
.borsa-phone {
  width: min(290px, 72%);
  padding: 8px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  background: #090a0b;
  box-shadow: 0 35px 80px rgba(0,0,0,.55);
  transform: none;
}
.borsa-phone img { display: block; width: 100%; border-radius: 27px; }
.borsa-flagship__visual-label {
  right: auto;
  bottom: 22px;
  left: 50%;
  padding-top: 9px;
  border-top: 1px solid rgba(255,255,255,.26);
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  transform: translateX(-50%);
}
.borsa-flagship__copy {
  display: block;
  max-width: 680px;
  padding: 70px 0;
  background: transparent;
}
.borsa-flagship__heading { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.borsa-flagship__heading .borsa-label { margin: 0; color: rgba(255,255,255,.65); }
.borsa-flagship__heading img { width: 128px; max-height: 76px; object-fit: contain; }
.borsa-flagship__copy h2 { max-width: 650px; margin: 0; color: #fff; font-size: clamp(38px, 4.2vw, 64px); line-height: 1.42; }
.borsa-flagship__copy > p { max-width: 610px; margin: 24px 0 0; color: rgba(255,255,255,.67); font-size: 16px; line-height: 2; }
.borsa-flagship__features { display: flex; flex-wrap: wrap; gap: 0; margin: 35px 0 0; padding: 0; border: 0; }
.borsa-flagship__features span { padding: 0 20px; color: rgba(255,255,255,.8); font-size: 12px; font-weight: 850; }
.borsa-flagship__features span:first-child { padding-inline-start: 0; }
.borsa-flagship__features span + span { border-inline-start: 1px solid rgba(255,255,255,.24); }
.borsa-flagship__bottom { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 44px; }
.borsa-flagship__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin: 0; }
.borsa-flagship__website { color: rgba(255,255,255,.78); font-size: 13px; font-weight: 900; }
.borsa-flagship__website:hover, .borsa-flagship__website:focus-visible { color: #fff; }
.borsa-flagship__stores { display: flex; grid-template-columns: none; gap: 8px; margin: 0; border: 0; }
.borsa-flagship__stores a {
  display: grid;
  width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.borsa-flagship__stores a:first-child { border: 1px solid rgba(255,255,255,.18); }
.borsa-flagship__stores a:hover, .borsa-flagship__stores a:focus-visible { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.16); transform: translateY(-2px); }
.borsa-flagship__stores img { width: 25px; height: 25px; object-fit: contain; }

@media (max-width: 1000px) {
  .borsa-flagship__inner { grid-template-columns: minmax(250px, .75fr) minmax(400px, 1.25fr); gap: 42px; }
  .borsa-flagship__copy { padding: 64px 0; }
  .borsa-flagship__heading { display: flex; }
  .borsa-flagship__heading img { width: 116px; margin-top: 0; }
  .borsa-flagship__bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .borsa-flagship { min-height: 0; background-position: 62% center; }
  .borsa-flagship__inner { grid-template-columns: 1fr; gap: 0; min-height: 0; }
  .borsa-flagship__visual { min-height: 500px; padding-top: 46px; }
  .borsa-phone { width: min(225px, 62vw); }
  .borsa-flagship__visual-label { right: auto; bottom: 15px; }
  .borsa-flagship__copy { max-width: none; padding: 54px 0 70px; }
  .borsa-flagship__heading { display: flex; margin-bottom: 28px; }
  .borsa-flagship__copy h2 { font-size: clamp(34px, 10vw, 47px); }
  .borsa-flagship__bottom { margin-top: 38px; }
}

@media (max-width: 440px) {
  .borsa-flagship__visual { min-height: 455px; }
  .borsa-phone { width: 205px; }
  .borsa-flagship__heading { align-items: flex-start; }
  .borsa-flagship__heading img { width: 98px; }
  .borsa-flagship__features { row-gap: 14px; }
  .borsa-flagship__features span { padding-inline: 12px; }
  .borsa-flagship__features span:first-child { padding-inline-start: 0; }
  .borsa-flagship__actions { align-items: flex-start; flex-direction: column; }
  .borsa-flagship__actions .borsa-action { width: auto; }
  .borsa-flagship__stores { grid-template-columns: none; }
  .borsa-flagship__stores a { width: 44px; min-height: 44px; border: 1px solid rgba(255,255,255,.18); }
  .borsa-flagship__stores a:first-child { border-top: 1px solid rgba(255,255,255,.18); }
}

@media (prefers-reduced-motion: reduce) {
  .home-cinema *,
  .home-cinema *::before,
  .home-cinema *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
html[lang="yi"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Hebrew Local", sans-serif; }
html[lang="hyw"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Armenian Local", "Noto Sans Local", sans-serif; }
html[lang="ii"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Yi Local", sans-serif; }
html[lang="as-bd"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Bengali Local", "Noto Sans Local", sans-serif; }
html[lang="ks-arab"] :is(body, button, input, select, textarea),
html[lang="ha-arab"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Arabic Local", "Vazirmatn", sans-serif; }
html[lang="ks-deva"] :is(body, button, input, select, textarea),
html[lang="sd-deva"] :is(body, button, input, select, textarea),
html[lang="brx"] :is(body, button, input, select, textarea),
html[lang="doi"] :is(body, button, input, select, textarea),
html[lang="kok"] :is(body, button, input, select, textarea),
html[lang="mai"] :is(body, button, input, select, textarea),
html[lang="bho"] :is(body, button, input, select, textarea),
html[lang="awa"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Devanagari Local", "Noto Sans Local", sans-serif; }
html[lang="pa-in"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Gurmukhi Local", "Noto Sans Local", sans-serif; }
html[lang="sat"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Ol Chiki Local", sans-serif; }
html[lang="mni-mtei"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Meetei Mayek Local", sans-serif; }
html[lang="bo-in"] :is(body, button, input, select, textarea) { font-family: "Noto Serif Tibetan Local", serif; }
html[lang="mn-mong"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Mongolian Local", sans-serif; }
html[lang="ff-adlm"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Adlam Local", sans-serif; }
html[lang="jv-java"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Javanese Local", sans-serif; }
html[lang="su-sund"] :is(body, button, input, select, textarea) { font-family: "Noto Sans Sundanese Local", sans-serif; }
html:is([lang="ar-kw"], [lang="ar-qa"], [lang="ar-bh"], [lang="ar-om"], [lang="ar-jo"], [lang="ar-lb"], [lang="ar-sy"], [lang="ar-ma"], [lang="ar-dz"], [lang="ar-tn"]) :is(body, button, input, select, textarea) { font-family: "Noto Sans Arabic Local", "Vazirmatn", sans-serif; }
html:is([lang="jv"], [lang="su"], [lang="mi"], [lang="sm"], [lang="to"], [lang="ht"], [lang="gn"], [lang="ay"], [lang="qu"], [lang="kl"], [lang="crs"], [lang="mfe"], [lang="ln"], [lang="lg"], [lang="sw-tz"], [lang="nso"], [lang="ve"], [lang="ss"], [lang="nl-be"], [lang="it-ch"], [lang="ca-valencia"], [lang="sr-me"], [lang="ms-bn"]) :is(body, button, input, select, textarea) { font-family: "Noto Sans Local", Arial, sans-serif; }

/* Borsa home v3: editorial, cinematic, and product-led. */
.borsa-home {
  --bh-red: #c90016;
  --bh-ink: #111417;
  --bh-paper: #f3f3f0;
  --bh-line: rgba(17, 20, 23, .16);
  overflow: hidden;
  background: var(--bh-paper);
  color: var(--bh-ink);
}

.borsa-home::after { display: none; }
.borsa-shell { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }
.borsa-label { margin: 0 0 18px; color: var(--bh-red); font-size: 13px; font-weight: 900; }
.borsa-label::before { display: inline-block; width: 24px; height: 2px; margin-inline-end: 10px; background: currentColor; content: ""; vertical-align: middle; }

.borsa-hero {
  position: relative;
  min-height: min(920px, 100svh);
  isolation: isolate;
  background: url("../images/home/hero.ebe81fe47314.webp") center / cover no-repeat;
  color: #fff;
}
.borsa-hero::before { position: absolute; z-index: -1; inset: 0; background: rgba(8, 11, 13, .57); content: ""; }
.borsa-hero::after { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(6, 8, 10, .08), rgba(6, 8, 10, .74)); content: ""; }
.borsa-hero__media { position: absolute; z-index: -2; top: 0; bottom: 0; left: 0; width: 31%; border-inline-start: 1px solid rgba(255,255,255,.18); background: url("../images/home/media-camera.e20f6195b44f.webp") center 57% / cover no-repeat; box-shadow: 28px 0 70px rgba(5,7,9,.28); }
.borsa-home .home-header { position: relative; z-index: 2; width: min(1240px, calc(100% - 64px)); margin: 0 auto; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.24); background: transparent; }
.borsa-home .home-brand, .borsa-home .home-header nav a, .borsa-home .language-link { color: #fff; }
.borsa-home .home-brand img { width: 44px; height: 44px; padding: 0; border: 0; border-radius: 0; background: transparent; filter: drop-shadow(0 5px 9px rgba(0,0,0,.25)); }
.borsa-home .home-header nav a:hover, .borsa-home .home-header nav a:focus-visible { color: #fff; opacity: .66; }
.borsa-home .language-link { border-color: rgba(255,255,255,.45); }

.borsa-hero__content { display: flex; flex-direction: column; justify-content: center; min-height: calc(min(920px, 100svh) - 90px); padding-block: 140px 100px; }
.borsa-hero__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 800; }
.borsa-hero__eyebrow span { width: 34px; height: 2px; background: var(--bh-red); }
.borsa-hero h1 { max-width: 980px; margin: 0; font-size: clamp(52px, 6.2vw, 88px); line-height: 1.26; letter-spacing: 0; }
.borsa-hero__content > p { max-width: 680px; margin: 26px 0 0; color: rgba(255,255,255,.82); font-size: clamp(16px, 1.45vw, 19px); line-height: 2; }
.borsa-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.borsa-hero__brands { display: flex; flex-wrap: wrap; gap: 0; width: fit-content; max-width: 820px; margin-top: 54px; border-top: 1px solid rgba(255,255,255,.28); }
.borsa-hero__brands span { position: relative; padding: 17px 0 0 34px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; white-space: nowrap; }
.borsa-hero__brands span + span::before { position: absolute; top: 20px; left: 16px; width: 3px; height: 3px; border-radius: 50%; background: #c90016; content: ""; }
.borsa-action { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; color: inherit; font-weight: 900; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.borsa-action span { font-size: 21px; transition: transform .2s ease; }
.borsa-action:hover span, .borsa-action:focus-visible span { transform: translateX(-5px); }
.borsa-action--light { background: #fff; color: var(--bh-ink); }
.borsa-action--light:hover, .borsa-action--light:focus-visible { background: var(--bh-red); color: #fff; }
.borsa-action--line { border-color: rgba(255,255,255,.5); color: #fff; }
.borsa-action--line:hover, .borsa-action--line:focus-visible { border-color: #fff; background: #fff; color: var(--bh-ink); }
.borsa-action--dark { background: var(--bh-ink); color: #fff; }
.borsa-action--dark:hover, .borsa-action--dark:focus-visible { background: var(--bh-red); }
.borsa-hero__continue { position: absolute; right: max(32px, calc((100% - 1240px) / 2)); bottom: 30px; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.75); font-size: 12px; font-weight: 800; }
.borsa-hero__continue i { display: block; width: 60px; height: 1px; background: rgba(255,255,255,.5); }

.borsa-identity { padding: clamp(100px, 12vw, 170px) 0 0; background: var(--bh-paper); }
.borsa-identity__lead { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .7fr); gap: clamp(50px, 9vw, 140px); align-items: end; }
.borsa-identity__lead .borsa-label { grid-column: 1 / -1; margin-bottom: -20px; }
.borsa-identity h2, .borsa-section-head h2, .borsa-future h2 { margin: 0; font-size: clamp(40px, 4.6vw, 66px); line-height: 1.34; }
.borsa-identity__lead > p:last-child { margin: 0; color: #586168; font-size: 18px; line-height: 2.05; }
.borsa-identity__system { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 130px); align-items: center; margin-top: 100px; padding-block: 76px; border-block: 1px solid var(--bh-line); }
.borsa-identity__story > p, .borsa-identity__map > p { margin: 0 0 38px; color: #7a8389; font-size: 12px; font-weight: 900; }
.borsa-timeline { position: relative; }
.borsa-timeline::before { position: absolute; top: 11px; right: 8px; bottom: 22px; width: 1px; background: var(--bh-line); content: ""; }
.borsa-timeline article { position: relative; display: grid; grid-template-columns: 90px 1fr; gap: 26px; min-height: 128px; padding-right: 32px; }
.borsa-timeline article::before { position: absolute; top: 7px; right: 3px; width: 11px; height: 11px; border: 3px solid var(--bh-paper); border-radius: 50%; background: var(--bh-red); box-shadow: 0 0 0 1px var(--bh-red); content: ""; }
.borsa-timeline time { color: var(--bh-red); font-size: 27px; font-weight: 900; }
.borsa-timeline strong, .borsa-timeline span { display: block; }
.borsa-timeline strong { margin-bottom: 7px; font-size: 21px; }
.borsa-timeline span { color: #687279; font-size: 13px; line-height: 1.8; }
.borsa-identity__outcomes { display: grid; grid-template-columns: 1fr 1fr; margin-top: 8px; border-top: 1px solid var(--bh-line); }
.borsa-identity__outcomes div { padding: 24px 0 0 22px; }
.borsa-identity__outcomes div + div { padding-right: 22px; border-right: 1px solid var(--bh-line); }
.borsa-identity__outcomes strong, .borsa-identity__outcomes span { display: block; }
.borsa-identity__outcomes strong { margin-bottom: 8px; font-size: 17px; }
.borsa-identity__outcomes span { color: #737d83; font-size: 12px; }
.borsa-identity__map { display: flex; flex-direction: column; align-items: center; }
.borsa-identity__map > p { align-self: stretch; }
.borsa-synergy-map { position: relative; display: grid; grid-template: repeat(3, 118px) / repeat(3, 118px); place-items: center; direction: ltr; }
.borsa-synergy-map::before, .borsa-synergy-map::after { position: absolute; z-index: 0; background: #c8cdcf; content: ""; }
.borsa-synergy-map::before { top: 59px; bottom: 59px; left: calc(50% - .5px); width: 1px; }
.borsa-synergy-map::after { top: calc(50% - .5px); right: 59px; left: 59px; height: 1px; }
.borsa-synergy-map__node, .borsa-synergy-map__core { position: relative; z-index: 1; display: grid; place-items: center; width: 84px; height: 84px; border: 1px solid #c5cbce; border-radius: 50%; background: var(--bh-paper); color: #30383d; font-size: 13px; font-weight: 900; direction: rtl; }
.borsa-synergy-map__core { grid-area: 2 / 2; width: 94px; height: 94px; border-color: var(--bh-red); background: var(--bh-red); color: #fff; font-size: 18px; }
.borsa-synergy-map__node--top { grid-area: 1 / 2; }
.borsa-synergy-map__node--right { grid-area: 2 / 3; }
.borsa-synergy-map__node--left { grid-area: 2 / 1; }
.borsa-synergy-map__node--bottom { grid-area: 3 / 2; }
.borsa-identity__map-caption { max-width: 330px; margin-top: 26px; color: #6c767c; font-size: 12px; line-height: 1.9; text-align: center; }

.borsa-flagship { display: grid; grid-template-columns: 1fr 1fr; min-height: 840px; margin-top: clamp(100px, 12vw, 170px); background: #d8d9d6; }
.borsa-flagship__visual { position: relative; display: grid; place-items: center; overflow: hidden; isolation: isolate; background: url("../images/home/media-camera.e20f6195b44f.webp") center 57% / cover no-repeat; }
.borsa-flagship__visual::before { position: absolute; z-index: -1; inset: 0; background: rgba(8,11,13,.66); content: ""; }
.borsa-phone { position: relative; width: min(360px, 58%); aspect-ratio: 576 / 1280; overflow: hidden; border: 5px solid #171a1d; border-radius: 34px; background: #090909; box-shadow: 0 40px 90px rgba(0,0,0,.55); }
.borsa-phone img { display: block; width: 100%; height: 100%; object-fit: cover; }
.borsa-flagship__visual-label { position: absolute; right: 34px; bottom: 30px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.45); color: rgba(255,255,255,.72); font-size: 11px; font-weight: 800; }
.borsa-flagship__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(58px, 6vw, 92px); background: #fff; }
.borsa-flagship__heading { display: flex; align-items: center; justify-content: space-between; gap: 26px; margin-bottom: 32px; }
.borsa-flagship__heading .borsa-label { margin: 0; }
.borsa-flagship__heading img { width: min(165px, 34%); max-height: 90px; object-fit: contain; }
.borsa-flagship__copy h2 { margin: 0; font-size: clamp(33px, 3.4vw, 52px); line-height: 1.48; }
.borsa-flagship__copy > p { margin: 20px 0 0; color: #5e686f; font-size: 16px; line-height: 2; }
.borsa-flagship__features { display: grid; grid-template-columns: 1fr; gap: 0; margin: 28px 0 0; padding: 0; border-top: 1px solid var(--bh-line); list-style: none; }
.borsa-flagship__features li { position: relative; padding: 13px 18px 13px 0; border-bottom: 1px solid var(--bh-line); color: #343c41; font-size: 13px; font-weight: 800; }
.borsa-flagship__features li::before { position: absolute; top: 21px; right: 0; width: 5px; height: 5px; background: var(--bh-red); content: ""; }
.borsa-flagship__stores { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 24px; border-block: 1px solid var(--bh-line); }
.borsa-flagship__stores a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 58px; border-inline-start: 1px solid var(--bh-line); color: #30383d; font-size: 11px; font-weight: 800; transition: background .2s ease, color .2s ease; }
.borsa-flagship__stores a:first-child { border-inline-start: 0; }
.borsa-flagship__stores a:hover, .borsa-flagship__stores a:focus-visible { background: #f1f2ef; color: var(--bh-red); }
.borsa-flagship__stores img { width: 25px; height: 25px; object-fit: contain; }
.borsa-flagship__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 28px; }
.borsa-flagship__website { color: var(--bh-red); font-size: 13px; font-weight: 900; }
.borsa-flagship__website span { margin-inline-start: 7px; font-size: 16px; }

.borsa-fields { padding: clamp(110px, 13vw, 180px) 0; background: #101316; color: #fff; }
.borsa-section-head { display: flex; align-items: end; justify-content: space-between; gap: 70px; }
.borsa-section-head > div { max-width: 760px; }
.borsa-section-head > p { max-width: 430px; margin: 0; color: #98a0a5; line-height: 2; }
.borsa-fields__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 70px; background: rgba(255,255,255,.18); }
.borsa-field { position: relative; display: flex; align-items: end; justify-content: space-between; min-height: 430px; padding: 42px; overflow: hidden; isolation: isolate; color: #fff; }
.borsa-field::before { position: absolute; z-index: -2; inset: 0; background-position: center; background-size: cover; content: ""; transition: transform .7s ease; }
.borsa-field::after { position: absolute; z-index: -1; inset: 0; background: rgba(8,10,12,.58); content: ""; transition: background .25s ease; }
.borsa-field:hover::before { transform: scale(1.035); }
.borsa-field:hover::after { background: rgba(8,10,12,.4); }
.borsa-field--media::before { background-image: url("../images/home/media-camera.e20f6195b44f.webp"); background-position: center 58%; }
.borsa-field--creative::before { background-image: url("../images/home/creative-iranian-v2.fbe6c97462ce.webp"); background-position: center 48%; }
.borsa-field--education::before { background-image: url("../images/home/borsa-business-education-workshop.d47d6d753889.webp"); background-position: center 45%; }
.borsa-field--growth::before { background-image: url("../images/home/borsa-business-growth-team.99f611644242.webp"); background-position: center 48%; }
.borsa-field div { max-width: 510px; }
.borsa-field span { color: #fff; font-size: 13px; font-weight: 900; }
.borsa-field h3 { margin: 14px 0 0; font-size: clamp(27px, 3vw, 42px); line-height: 1.55; }
.borsa-field > b { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 24px; }

.borsa-portfolio { padding: clamp(110px, 13vw, 180px) 0; background: var(--bh-paper); }
.borsa-portfolio .borsa-section-head > p { max-width: 470px; margin: 0; color: #66727a; line-height: 2; }
.borsa-portfolio__showcase { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 1px; margin-top: 70px; background: var(--bh-line); border: 1px solid var(--bh-line); }
.borsa-portfolio__featured { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(210px, .72fr); min-height: 610px; overflow: hidden; isolation: isolate; background: #101316; color: #fff; }
.borsa-portfolio__featured::after { position: absolute; z-index: -1; right: -180px; bottom: -230px; width: 520px; height: 520px; border: 110px solid rgba(214,0,20,.16); border-radius: 50%; content: ""; transition: transform .7s ease; }
.borsa-portfolio__featured:hover::after, .borsa-portfolio__featured:focus-visible::after { transform: scale(1.09); }
.borsa-portfolio__featured-copy { display: flex; align-items: flex-start; flex-direction: column; padding: clamp(42px, 5vw, 70px); }
.borsa-portfolio__relation { display: inline-flex; align-items: center; gap: 9px; color: #ff6971; font-size: 12px; font-weight: 900; }
.borsa-portfolio__relation::before { width: 24px; height: 2px; background: var(--bh-red); content: ""; }
.borsa-portfolio__featured-copy > img { width: 132px; height: 132px; margin: 50px 0 34px; object-fit: contain; }
.borsa-portfolio__featured h3 { max-width: 480px; margin: 0; font-size: clamp(28px, 3.2vw, 46px); line-height: 1.55; }
.borsa-portfolio__featured p { max-width: 470px; margin: 22px 0 0; color: #aeb6bb; line-height: 2; }
.borsa-portfolio__featured-copy > b { display: flex; align-items: center; gap: 16px; margin-top: auto; padding-top: 45px; font-size: 13px; }
.borsa-portfolio__featured-copy > b i { color: #ff3944; font-size: 20px; font-style: normal; transition: transform .25s ease; }
.borsa-portfolio__featured:hover b i, .borsa-portfolio__featured:focus-visible b i { transform: translateX(-7px); }
.borsa-portfolio__featured-visual { position: relative; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; background: linear-gradient(180deg, #202428, #141719); }
.borsa-portfolio__featured-visual::before { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.34)); content: ""; }
.borsa-portfolio__featured-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .7s ease; }
.borsa-portfolio__featured:hover .borsa-portfolio__featured-visual img, .borsa-portfolio__featured:focus-visible .borsa-portfolio__featured-visual img { transform: scale(1.025); }
.borsa-portfolio__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--bh-line); }
.borsa-asset-card { position: relative; display: flex; align-items: flex-start; flex-direction: column; min-height: 304px; padding: 34px; overflow: hidden; background: #fff; color: var(--bh-ink); transition: background .3s ease, color .3s ease; }
.borsa-asset-card::after { position: absolute; right: -36px; bottom: -50px; width: 130px; height: 130px; border: 1px solid rgba(16,24,32,.09); border-radius: 50%; content: ""; transition: transform .5s ease, border-color .3s ease; }
.borsa-asset-card:hover, .borsa-asset-card:focus-visible { background: var(--bh-red); color: #fff; }
.borsa-asset-card:hover::after, .borsa-asset-card:focus-visible::after { transform: scale(1.35); border-color: rgba(255,255,255,.28); }
.borsa-asset-card__index { color: #a2aaaf; font-size: 12px; font-weight: 900; }
.borsa-asset-card > div { display: flex; align-items: flex-start; flex-direction: column; margin-top: auto; }
.borsa-asset-card small { margin-bottom: 13px; color: var(--bh-red); font-size: 11px; font-weight: 900; line-height: 1.7; }
.borsa-asset-card strong { font-size: clamp(20px, 1.7vw, 27px); line-height: 1.55; }
.borsa-asset-card p { margin: 10px 0 0; color: #758087; font-size: 13px; line-height: 1.8; }
.borsa-asset-card > i { position: absolute; top: 31px; inset-inline-end: 32px; color: #a1aaaf; font-size: 19px; font-style: normal; transition: transform .25s ease; }
.borsa-asset-card:hover small, .borsa-asset-card:focus-visible small, .borsa-asset-card:hover p, .borsa-asset-card:focus-visible p, .borsa-asset-card:hover .borsa-asset-card__index, .borsa-asset-card:focus-visible .borsa-asset-card__index, .borsa-asset-card:hover > i, .borsa-asset-card:focus-visible > i { color: rgba(255,255,255,.82); }
.borsa-asset-card:hover > i, .borsa-asset-card:focus-visible > i { transform: translateX(-6px); }
.borsa-portfolio__footer { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 34px; }
.borsa-portfolio__footer > span { color: #69747b; font-size: 13px; line-height: 1.9; }
.borsa-action--dark { background: #101316; color: #fff; }
.borsa-action--dark:hover, .borsa-action--dark:focus-visible { background: var(--bh-red); }
.borsa-action--dark i { margin-inline-start: 12px; font-style: normal; }

.borsa-future { position: relative; min-height: 720px; display: flex; align-items: center; isolation: isolate; background: url("../images/home/hero.ebe81fe47314.webp") center / cover no-repeat; color: #fff; }
.borsa-future::before { position: absolute; z-index: -1; inset: 0; background: rgba(8,10,12,.72); content: ""; }
.borsa-future .borsa-shell { padding-block: 110px; }
.borsa-future h2 { max-width: 900px; }
.borsa-future .borsa-shell > p:not(.borsa-label) { max-width: 660px; margin: 26px 0 38px; color: rgba(255,255,255,.76); font-size: 18px; line-height: 2; }
.borsa-future .borsa-shell > div { display: flex; flex-wrap: wrap; gap: 12px; }
.borsa-footer { background: #101316; color: #939b9f; }
.borsa-footer .borsa-shell { display: flex; justify-content: space-between; gap: 30px; padding-block: 42px 64px; border-top: 1px solid rgba(255,255,255,.14); }
.borsa-footer p { margin: 0; color: #fff; }

@media (max-width: 1000px) {
  .borsa-home .home-header { flex-wrap: wrap; }
  .borsa-home .home-header nav { order: 3; width: 100%; flex-basis: 100%; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.18); }
  .borsa-identity__lead { grid-template-columns: 1fr; gap: 30px; }
  .borsa-identity__lead .borsa-label { margin-bottom: 0; }
  .borsa-identity__system { grid-template-columns: 1fr 1fr; gap: 48px; }
  .borsa-flagship { grid-template-columns: 1fr 1fr; }
  .borsa-flagship__copy { padding: 58px 36px; }
  .borsa-flagship__heading { display: block; }
  .borsa-flagship__heading img { width: 150px; margin-top: 22px; }
  .borsa-section-head { align-items: flex-start; flex-direction: column; gap: 28px; }
  .borsa-portfolio__showcase { grid-template-columns: 1fr; }
  .borsa-portfolio__featured { min-height: 570px; }
}

@media (max-width: 760px) {
  .borsa-shell, .borsa-home .home-header { width: min(100% - 32px, 1240px); }
  .borsa-hero { min-height: 840px; background-position: 54% center; }
  .borsa-hero::after { background: rgba(6,8,10,.48); }
  .borsa-hero__media { display: none; }
  .borsa-home .home-header { padding-block: 14px; }
  .borsa-home .home-header nav { display: flex; flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
  .borsa-home .home-header nav::-webkit-scrollbar { display: none; }
  .borsa-hero__content { justify-content: flex-start; min-height: 760px; padding-block: 165px 58px; }
  .borsa-hero h1 { font-size: clamp(38px, 10.8vw, 52px); line-height: 1.38; }
  .borsa-hero__content > p { margin-top: 20px; font-size: 15px; line-height: 1.95; }
  .borsa-hero__actions { margin-top: 28px; }
  .borsa-hero__brands { display: grid; grid-template-columns: 1fr 1fr; width: 100%; margin-top: 34px; }
  .borsa-hero__brands span { padding: 13px 0 0; font-size: 10px; white-space: normal; }
  .borsa-hero__brands span + span::before { display: none; }
  .borsa-hero__continue { right: 16px; }
  .borsa-identity__system { grid-template-columns: 1fr; gap: 70px; margin-top: 64px; padding-block: 54px 70px; }
  .borsa-identity__map { order: -1; }
  .borsa-synergy-map { grid-template: repeat(3, 102px) / repeat(3, 102px); }
  .borsa-synergy-map::before { top: 51px; bottom: 51px; }
  .borsa-synergy-map::after { right: 51px; left: 51px; }
  .borsa-synergy-map__node { width: 76px; height: 76px; }
  .borsa-synergy-map__core { width: 86px; height: 86px; }
  .borsa-flagship { grid-template-columns: 1fr; min-height: 0; }
  .borsa-flagship__visual { min-height: 530px; }
  .borsa-phone { width: min(220px, 58%); }
  .borsa-flagship__visual-label { right: 20px; bottom: 20px; }
  .borsa-flagship__copy { padding: 58px 24px 68px; }
  .borsa-fields__grid { grid-template-columns: 1fr; }
  .borsa-field { min-height: 450px; padding: 28px 24px; }
  .borsa-portfolio__showcase { margin-top: 48px; }
  .borsa-portfolio__featured { grid-template-columns: 1fr; min-height: 0; }
  .borsa-portfolio__featured-copy { min-height: 510px; padding: 42px 28px; }
  .borsa-portfolio__featured-copy > img { width: 118px; height: 118px; margin: 40px 0 28px; }
  .borsa-portfolio__featured-visual { min-height: 440px; }
  .borsa-portfolio__cards { grid-template-columns: 1fr; }
  .borsa-asset-card { min-height: 240px; padding: 30px 26px; }
  .borsa-portfolio__footer { align-items: stretch; flex-direction: column; }
  .borsa-portfolio__footer .borsa-action { justify-content: center; width: 100%; }
  .borsa-footer .borsa-shell { flex-direction: column; }
}

@media (max-width: 440px) {
  .borsa-home .home-brand span, .borsa-home .language-link strong { display: none; }
  .borsa-hero__actions, .borsa-future .borsa-shell > div { flex-direction: column; }
  .borsa-hero__actions .borsa-action, .borsa-future .borsa-action { width: 100%; }
  .borsa-timeline article { grid-template-columns: 72px 1fr; gap: 16px; padding-right: 26px; }
  .borsa-identity__outcomes { grid-template-columns: 1fr; }
  .borsa-identity__outcomes div + div { margin-top: 20px; padding-right: 0; border-right: 0; }
  .borsa-phone { width: min(205px, 62%); }
  .borsa-flagship__visual { min-height: 490px; }
  .borsa-flagship__stores { grid-template-columns: 1fr; }
  .borsa-flagship__stores a { border-inline-start: 0; border-top: 1px solid var(--bh-line); }
  .borsa-flagship__stores a:first-child { border-top: 0; }
  .borsa-flagship__actions { align-items: stretch; flex-direction: column; }
  .borsa-flagship__actions .borsa-action { width: 100%; }
  .borsa-portfolio__featured-visual { min-height: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  .borsa-home *, .borsa-home *::before, .borsa-home *::after { transition-duration: .01ms !important; }
}

/* Shared Borsa navigation */
.borsa-site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  width: 100%;
  min-height: 82px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(17, 20, 23, .12);
  background: rgba(255,255,255,.94);
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset;
  backdrop-filter: blur(18px) saturate(150%);
  transition: min-height .25s ease, padding .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  flex-wrap: nowrap;
}
.borsa-site-header__brand { flex: 0 0 auto; gap: 12px; font-weight: 900; }
.borsa-site-header__brand img { width: 43px; height: 43px; padding: 0; border: 0; border-radius: 0; background: transparent; }
.borsa-site-header__primary { display: flex; flex: 1 1 auto; order: initial; width: auto; min-width: 0; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 34px); padding: 0 18px; border: 0; color: #4f5960; font-size: 13px; font-weight: 800; }
.borsa-site-header__primary a { position: relative; padding-block: 12px; transition: color .2s ease, opacity .2s ease; }
.borsa-site-header__primary a::after { position: absolute; right: 0; bottom: 4px; width: 0; height: 2px; background: #c90016; content: ""; transition: width .2s ease; }
.borsa-site-header__primary a:hover, .borsa-site-header__primary a:focus-visible, .borsa-site-header__primary a.is-active { color: #111417; }
.borsa-site-header__primary a:hover::after, .borsa-site-header__primary a:focus-visible::after, .borsa-site-header__primary a.is-active::after { width: 18px; }
.borsa-site-header__tools { display: flex; flex: 0 0 auto; align-items: center; gap: 10px; }
.borsa-site-header .language-link { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 13px; border: 1px solid rgba(17,20,23,.18); border-radius: 0; color: #273038; font-size: 11px; }
.borsa-site-header .language-link span { color: #c90016; font-weight: 900; direction: ltr; }
.borsa-site-header .language-link strong { font-size: 11px; white-space: nowrap; }
.borsa-site-header__menu-button { display: none; align-items: center; gap: 12px; min-height: 42px; padding: 0 14px; border: 1px solid rgba(17,20,23,.18); background: transparent; color: #111417; font: inherit; font-size: 12px; font-weight: 900; cursor: pointer; }
.borsa-site-header__menu-button i { position: relative; display: block; width: 20px; height: 14px; }
.borsa-site-header__menu-button b { position: absolute; right: 0; display: block; height: 2px; background: currentColor; }
.borsa-site-header__menu-button b:first-child { top: 2px; width: 20px; }
.borsa-site-header__menu-button b:last-child { right: 5px; bottom: 2px; width: 15px; }

.borsa-home .borsa-site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding-inline: max(32px, calc((100% - 1240px) / 2));
  border-color: rgba(255,255,255,.24);
  background: rgba(8,10,12,.08);
  box-shadow: none;
  color: #fff;
  backdrop-filter: blur(5px);
}
.borsa-home .borsa-site-header__brand, .borsa-home .borsa-site-header__primary a, .borsa-home .borsa-site-header .language-link, .borsa-home .borsa-site-header__menu-button { color: #fff; }
.borsa-home .borsa-site-header .language-link, .borsa-home .borsa-site-header__menu-button { border-color: rgba(255,255,255,.4); background: rgba(5,7,9,.14); }
.borsa-home .borsa-site-header__primary a:hover, .borsa-home .borsa-site-header__primary a:focus-visible, .borsa-home .borsa-site-header__primary a.is-active { color: #fff; }
.borsa-home .borsa-site-header.is-scrolled { min-height: 70px; padding-block: 9px; border-color: rgba(17,20,23,.12); background: rgba(255,255,255,.94); box-shadow: 0 12px 35px rgba(13,18,21,.08); color: #111417; backdrop-filter: blur(18px) saturate(150%); }
.borsa-home .borsa-site-header.is-scrolled .borsa-site-header__brand, .borsa-home .borsa-site-header.is-scrolled .borsa-site-header__primary a, .borsa-home .borsa-site-header.is-scrolled .language-link, .borsa-home .borsa-site-header.is-scrolled .borsa-site-header__menu-button { color: #111417; }
.borsa-home .borsa-site-header.is-scrolled .language-link, .borsa-home .borsa-site-header.is-scrolled .borsa-site-header__menu-button { border-color: rgba(17,20,23,.18); background: transparent; }

.site-menu-open { overflow: hidden; }
.borsa-site-menu[hidden] { display: none; }
.borsa-site-menu { position: fixed; z-index: 200; inset: 0; display: grid; grid-template-rows: auto 1fr auto; padding: 0 max(32px, calc((100% - 1240px) / 2)); background: rgba(13,16,18,.985); color: #fff; opacity: 0; transform: translateY(-12px); transition: opacity .22s ease, transform .22s ease; }
.borsa-site-menu.is-open { opacity: 1; transform: translateY(0); }
.borsa-site-menu__head { display: flex; align-items: center; justify-content: space-between; min-height: 86px; border-bottom: 1px solid rgba(255,255,255,.16); }
.borsa-site-menu__brand { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 900; }
.borsa-site-menu__brand img { width: 44px; height: 44px; object-fit: contain; }
.borsa-site-menu__head button { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.34); background: transparent; color: #fff; cursor: pointer; }
.borsa-site-menu__head button i, .borsa-site-menu__head button i::after { display: block; width: 20px; height: 2px; background: currentColor; content: ""; }
.borsa-site-menu__head button i { transform: rotate(45deg); }
.borsa-site-menu__head button i::after { transform: rotate(90deg); }
.borsa-site-menu__body { display: grid; grid-template-columns: .5fr 1.5fr; gap: clamp(50px, 8vw, 130px); align-items: center; padding-block: 44px; overflow-y: auto; }
.borsa-site-menu__body > p { align-self: start; margin: 16px 0 0; color: #899197; font-size: 13px; font-weight: 800; }
.borsa-site-menu__body > p::before { display: inline-block; width: 26px; height: 2px; margin-inline-end: 10px; background: #c90016; content: ""; vertical-align: middle; }
.borsa-site-menu__body nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0 52px; }
.borsa-site-menu__body nav a { position: relative; display: grid; min-height: 112px; align-content: center; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: #fff; }
.borsa-site-menu__body nav a::after { position: absolute; left: 2px; top: 50%; color: #c90016; font-size: 24px; content: "←"; transform: translateY(-50%); transition: transform .2s ease; }
.borsa-site-menu__body nav a:hover::after, .borsa-site-menu__body nav a:focus-visible::after { transform: translate(-7px, -50%); }
.borsa-site-menu__body nav span { font-size: clamp(23px, 2.4vw, 34px); font-weight: 900; }
.borsa-site-menu__body nav small { margin-top: 7px; color: #858e94; font-size: 12px; }
.borsa-site-menu__foot { display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 74px; border-top: 1px solid rgba(255,255,255,.16); color: #858e94; font-size: 12px; }
.borsa-site-menu__foot a { color: #fff; }
.borsa-site-menu__foot b { color: #c90016; }

@media (max-width: 1180px) {
  .borsa-site-header, .borsa-home .borsa-site-header { min-height: 70px; padding: 10px 20px; flex-wrap: nowrap; }
  .borsa-site-header__primary { display: none !important; }
  .borsa-site-header__brand img { width: 40px; height: 40px; }
  .borsa-site-header__tools { margin-inline-start: auto; }
  .borsa-site-header .language-link strong { display: none; }
  .borsa-site-header .language-link { min-width: 42px; justify-content: center; padding: 0 9px; }
  .borsa-site-header__menu-label { display: none; }
  .borsa-site-header__menu-button { display: inline-flex; width: 42px; justify-content: center; padding: 0; }
  .borsa-site-menu { padding-inline: 20px; }
  .borsa-site-menu__body { grid-template-columns: 1fr; gap: 12px; align-items: start; padding-block: 24px; }
  .borsa-site-menu__body > p { margin-bottom: 6px; }
  .borsa-site-menu__body nav { grid-template-columns: 1fr; }
  .borsa-site-menu__body nav a { min-height: 78px; padding: 12px 0; }
  .borsa-site-menu__body nav span { font-size: clamp(21px, 7vw, 29px); }
  .borsa-site-menu__body nav small { display: none; }
  .borsa-site-menu__foot { min-height: 64px; }
  .borsa-site-menu__foot > span { display: none; }
}

@media (max-width: 1180px) and (min-width: 761px) {
  .borsa-identity__system { grid-template-columns: 1fr; gap: 76px; }
  .borsa-identity__story { max-width: 760px; }
  .borsa-identity__map { order: -1; }
  .borsa-identity__map > p { width: 100%; text-align: center; }
}

@media (max-width: 420px) {
  .borsa-site-header__brand span { display: none; }
  .borsa-site-menu__head { min-height: 68px; }
  .borsa-site-menu__body nav a { min-height: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  .borsa-site-header, .borsa-site-menu, .borsa-site-header__primary a::after, .borsa-site-menu__body nav a::after { transition-duration: .01ms !important; }
}

/* Keep flagship v2 after legacy homepage rules. */
.borsa-home .borsa-flagship { position: relative; display: block; min-height: 760px; overflow: hidden; isolation: isolate; background: #0d1012 url("../images/home/media-camera.e20f6195b44f.webp") center / cover no-repeat; color: #fff; }
.borsa-home .borsa-flagship::before { position: absolute; z-index: -1; inset: 0; background: rgba(7,10,12,.84); content: ""; }
.borsa-home .borsa-flagship__inner { display: grid; grid-template-columns: minmax(280px,.82fr) minmax(480px,1.18fr); align-items: center; gap: clamp(58px,7vw,110px); min-height: 760px; }
.borsa-home .borsa-flagship__visual { position: relative; display: grid; min-height: 620px; place-items: center; overflow: visible; isolation: auto; background: none; }
.borsa-home .borsa-flagship__visual::before { display: none; }
.borsa-home .borsa-phone { width: min(290px,72%); padding: 8px; border: 1px solid rgba(255,255,255,.16); border-radius: 34px; background: #090a0b; box-shadow: 0 35px 80px rgba(0,0,0,.55); transform: none; }
.borsa-home .borsa-phone img { display: block; width: 100%; border-radius: 27px; }
.borsa-home .borsa-flagship__visual-label { right: auto; bottom: 22px; left: 50%; padding-top: 9px; border-top: 1px solid rgba(255,255,255,.26); color: rgba(255,255,255,.58); white-space: nowrap; transform: translateX(-50%); }
.borsa-home .borsa-flagship__copy { display: block; max-width: 680px; padding: 70px 0; background: transparent; }
.borsa-home .borsa-flagship__heading { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.borsa-home .borsa-flagship__heading .borsa-label { margin: 0; color: rgba(255,255,255,.65); }
.borsa-home .borsa-flagship__heading img { width: 128px; max-height: 76px; margin: 0; object-fit: contain; }
.borsa-home .borsa-flagship__copy h2 { max-width: 650px; margin: 0; color: #fff; font-size: clamp(38px,4.2vw,64px); line-height: 1.42; }
.borsa-home .borsa-flagship__copy > p { max-width: 610px; margin: 24px 0 0; color: rgba(255,255,255,.67); font-size: 16px; line-height: 2; }
.borsa-home .borsa-flagship__features { display: flex; flex-wrap: wrap; gap: 0; margin: 35px 0 0; padding: 0; border: 0; }
.borsa-home .borsa-flagship__features span { padding: 0 20px; color: rgba(255,255,255,.8); font-size: 12px; font-weight: 850; }
.borsa-home .borsa-flagship__features span:first-child { padding-inline-start: 0; }
.borsa-home .borsa-flagship__features span + span { border-inline-start: 1px solid rgba(255,255,255,.24); }
.borsa-home .borsa-flagship__bottom { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 44px; }
.borsa-home .borsa-flagship__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin: 0; }
.borsa-home .borsa-flagship__website { color: rgba(255,255,255,.78); }
.borsa-home .borsa-flagship__stores { display: flex; grid-template-columns: none; gap: 8px; margin: 0; border: 0; }
.borsa-home .borsa-flagship__stores a, .borsa-home .borsa-flagship__stores a:first-child { display: grid; width: 44px; min-height: 44px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 6px; background: rgba(255,255,255,.08); }
.borsa-home .borsa-flagship__stores a:hover, .borsa-home .borsa-flagship__stores a:focus-visible { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.16); transform: translateY(-2px); }
.borsa-home .borsa-flagship__stores img { width: 25px; height: 25px; }

@media (max-width: 1000px) {
  .borsa-home .borsa-flagship__inner { grid-template-columns: minmax(250px,.75fr) minmax(400px,1.25fr); gap: 42px; }
  .borsa-home .borsa-flagship__bottom { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 760px) {
  .borsa-home .borsa-flagship { min-height: 0; background-position: 62% center; }
  .borsa-home .borsa-flagship__inner { grid-template-columns: 1fr; gap: 0; min-height: 0; }
  .borsa-home .borsa-flagship__visual { min-height: 500px; padding-top: 46px; }
  .borsa-home .borsa-phone { width: min(225px,62vw); }
  .borsa-home .borsa-flagship__visual-label { right: auto; bottom: 15px; }
  .borsa-home .borsa-flagship__copy { max-width: none; padding: 54px 0 70px; }
  .borsa-home .borsa-flagship__copy h2 { font-size: clamp(34px,10vw,47px); }
}
@media (max-width: 440px) {
  .borsa-home .borsa-flagship__visual { min-height: 455px; }
  .borsa-home .borsa-phone { width: 205px; }
  .borsa-home .borsa-flagship__heading { display: flex; align-items: flex-start; }
  .borsa-home .borsa-flagship__heading img { width: 98px; }
  .borsa-home .borsa-flagship__features { row-gap: 14px; }
  .borsa-home .borsa-flagship__features span { padding-inline: 12px; }
  .borsa-home .borsa-flagship__actions { align-items: flex-start; flex-direction: column; }
  .borsa-home .borsa-flagship__actions .borsa-action { width: auto; }
  .borsa-home .borsa-flagship__stores { display: flex; grid-template-columns: none; }
}

/* Focused human homepage v2 */
.human-home--focused { --ff-ink:#18231f; --ff-muted:#66716c; --ff-paper:#fbf9f4; --ff-red:#bd2d38; --ff-green:#3f715c; --ff-amber:#d99b36; background:var(--ff-paper); color:var(--ff-ink); }
.human-home--focused .borsa-shell { width:min(1200px,calc(100% - 64px)); }
.human-home--focused .borsa-site-header { position:absolute; min-height:78px; color:var(--ff-ink); border-color:rgba(24,35,31,.11); background:rgba(251,249,244,.9); box-shadow:none; backdrop-filter:blur(18px); }
.human-home--focused .borsa-site-header__brand,.human-home--focused .borsa-site-header__primary a,.human-home--focused .borsa-site-header .language-link,.human-home--focused .borsa-site-header__menu-button { color:var(--ff-ink); }
.human-home--focused .borsa-site-header .language-link,.human-home--focused .borsa-site-header__menu-button { border-color:rgba(24,35,31,.18); background:rgba(255,255,255,.45); }
.human-home--focused h1,.human-home--focused h2,.human-home--focused h3,.human-home--focused p { text-wrap:pretty; }
.focus-kicker { margin:0 0 18px; color:var(--ff-green); font-size:13px; font-weight:900; }
.focus-kicker::before { display:inline-block; width:26px; height:3px; margin-inline-end:10px; border-radius:9px; background:#e27062; content:""; vertical-align:middle; }
.focus-button { display:inline-flex; min-height:54px; align-items:center; justify-content:center; gap:22px; padding:0 24px; border:1px solid transparent; font-size:13px; font-weight:900; transition:transform .2s ease,background .2s ease,color .2s ease; }
.focus-button:hover,.focus-button:focus-visible { transform:translateY(-2px); }
.focus-button--solid { border-radius:3px; background:var(--ff-red); color:#fff; box-shadow:0 13px 30px rgba(189,45,56,.17); }
.focus-button--solid:hover,.focus-button--solid:focus-visible { background:#9b202b; }
.focus-button--quiet { padding-inline:7px; border-bottom-color:rgba(24,35,31,.35); color:var(--ff-ink); }
.focus-button--light { border-radius:3px; background:#fff; color:var(--ff-ink); }

.focus-hero { padding:148px 0 72px; background:#fbf9f4; }
.focus-hero__grid { display:grid; grid-template-columns:minmax(0,.88fr) minmax(520px,1.12fr); gap:clamp(55px,8vw,110px); align-items:center; }
.focus-hero__copy { padding-block:30px; }
.focus-hero h1 { max-width:650px; margin:0; font-size:clamp(54px,5.2vw,76px); line-height:1.28; letter-spacing:-1px; }
.focus-hero__copy>p:not(.focus-kicker) { max-width:610px; margin:25px 0 32px; color:var(--ff-muted); font-size:18px; line-height:2.05; }
.focus-hero__actions { display:flex; flex-wrap:wrap; align-items:center; gap:18px; }
.focus-hero__photo { position:relative; height:630px; margin:0; overflow:hidden; border-radius:210px 210px 14px 14px; background:#ddd; }
.focus-hero__photo::after { position:absolute; inset:0; background:linear-gradient(0deg,rgba(19,31,25,.72),transparent 42%); content:""; }
.focus-hero__photo img { width:100%; height:100%; object-fit:cover; object-position:center; }
.focus-hero__photo figcaption { position:absolute; z-index:1; right:44px; bottom:36px; left:44px; color:#fff; }
.focus-hero__photo figcaption span,.focus-hero__photo figcaption small { display:block; }
.focus-hero__photo figcaption span { margin-bottom:7px; font-size:19px; font-weight:900; }
.focus-hero__photo figcaption small { color:rgba(255,255,255,.7); font-size:12px; }

.focus-proof { background:var(--ff-green); color:#fff; }
.focus-proof__grid { display:grid; grid-template-columns:1.25fr repeat(3,1fr); min-height:205px; }
.focus-proof__grid>div { display:flex; justify-content:center; flex-direction:column; padding:34px; border-inline-start:1px solid rgba(255,255,255,.18); }
.focus-proof__grid>div:last-child { border-inline-start:0; }
.focus-proof__grid strong,.focus-proof__grid span { display:block; }
.focus-proof__grid>div:not(.focus-proof__statement) strong { font-size:clamp(27px,2.8vw,40px); }
.focus-proof__grid>div:not(.focus-proof__statement) span { margin-top:9px; color:rgba(255,255,255,.7); font-size:12px; }
.focus-proof__statement { padding-inline-start:0!important; }
.focus-proof__statement span { margin-bottom:9px; color:#f4d886; font-size:12px; font-weight:900; }
.focus-proof__statement strong { max-width:300px; font-size:20px; line-height:1.7; }

.focus-stories { padding:clamp(105px,12vw,160px) 0; background:#fff; }
.focus-section-head { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr); gap:clamp(55px,10vw,140px); align-items:end; margin-bottom:80px; }
.focus-section-head h2 { max-width:780px; margin:0; font-size:clamp(42px,4.5vw,64px); line-height:1.4; }
.focus-section-head>p { margin:0; color:var(--ff-muted); font-size:16px; line-height:2.1; }
.focus-story { display:grid; grid-template-columns:1fr 1fr; min-height:650px; margin-top:28px; background:#f4f0e8; }
.focus-story--reverse figure { order:2; }
.focus-story figure { position:relative; min-height:650px; margin:0; overflow:hidden; }
.focus-story figure::after { position:absolute; inset:0; background:linear-gradient(0deg,rgba(13,22,17,.3),transparent 42%); content:""; }
.focus-story figure img { width:100%; height:100%; object-fit:cover; transition:transform .7s ease; }
.focus-story:hover figure img { transform:scale(1.02); }
.focus-story figure>span { position:absolute; z-index:1; right:28px; bottom:24px; color:#fff; font-size:14px; font-weight:900; }
.focus-story__copy { display:flex; align-items:flex-start; justify-content:center; flex-direction:column; padding:clamp(40px,6vw,78px); }
.focus-story__eyebrow { margin:0 0 20px!important; color:var(--ff-green)!important; font-size:12px!important; font-weight:900; }
.focus-story h3 { margin:0; font-size:clamp(31px,3.2vw,45px); line-height:1.5; }
.focus-story__copy>p:not(.focus-story__eyebrow) { margin:20px 0 26px; color:var(--ff-muted); font-size:15px; line-height:2.05; }
.focus-story dl { display:grid; width:100%; margin:0; border-top:1px solid rgba(24,35,31,.14); }
.focus-story dl div { display:grid; grid-template-columns:75px 1fr; gap:20px; padding:11px 0; border-bottom:1px solid rgba(24,35,31,.12); }
.focus-story dt { color:var(--ff-green); font-size:11px; font-weight:900; }
.focus-story dd { margin:0; color:#3e4a45; font-size:12px; }
.focus-story__copy>a { display:flex; align-items:center; gap:18px; margin-top:30px; color:var(--ff-red); font-size:12px; font-weight:900; }
.focus-story--red { background:#f6ece9; }
.focus-story--green { background:#eaf1ec; }
.focus-story--amber { background:#f7f0df; }

.focus-people { padding:clamp(90px,10vw,135px) 0; background:#f1ede4; }
.focus-people__grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(60px,10vw,140px); align-items:center; }
.focus-people__image { height:560px; overflow:hidden; border-radius:180px 14px 14px 14px; }
.focus-people__image img { width:100%; height:100%; object-fit:cover; }
.focus-people h2 { max-width:710px; margin:0; font-size:clamp(42px,4.5vw,64px); line-height:1.42; }
.focus-people__copy>p:not(.focus-kicker) { max-width:650px; margin:22px 0 31px; color:var(--ff-muted); font-size:16px; line-height:2.1; }

.focus-invite { padding:95px 0; background:var(--ff-red); color:#fff; }
.focus-invite__inner { display:grid; grid-template-columns:1.25fr .75fr; gap:80px; align-items:center; }
.focus-invite .focus-kicker { color:#ffe69b; }
.focus-invite .focus-kicker::before { background:#fff; }
.focus-invite h2 { max-width:800px; margin:0; font-size:clamp(43px,4.8vw,68px); line-height:1.38; }
.focus-invite p:not(.focus-kicker) { max-width:660px; margin:20px 0 0; color:rgba(255,255,255,.74); font-size:16px; line-height:2; }
.focus-invite__links { display:flex; align-items:stretch; flex-direction:column; gap:0; }
.focus-invite__links>a:not(.focus-button) { padding:18px 3px; border-bottom:1px solid rgba(255,255,255,.25); color:#fff; font-size:12px; font-weight:900; }
.focus-invite__links .focus-button { margin-bottom:14px; }
.focus-footer { background:#24332d; color:rgba(255,255,255,.65); }
.focus-footer .borsa-shell { display:flex; justify-content:space-between; gap:28px; padding-block:40px 56px; }
.focus-footer p { margin:0; color:#fff; }

@media (max-width:1000px) {
  .focus-hero__grid { grid-template-columns:1fr 1fr; gap:42px; }
  .focus-hero h1 { font-size:clamp(48px,6vw,63px); }
  .focus-proof__grid { grid-template-columns:1fr 1fr; }
  .focus-proof__grid>div:nth-child(odd) { border-inline-start:0; }
  .focus-proof__statement { padding:34px!important; }
  .focus-story { min-height:590px; }
  .focus-story figure { min-height:590px; }
}
@media (max-width:760px) {
  .human-home--focused .borsa-shell { width:min(100% - 32px,1200px); }
  .human-home--focused .borsa-site-header { min-height:70px; align-items:center; flex-direction:row; padding:10px 16px; }
  .human-home--focused .borsa-site-header__tools { margin-inline-start:auto; }
  .focus-hero { padding:112px 0 56px; }
  .focus-hero__grid,.focus-section-head,.focus-people__grid,.focus-invite__inner { grid-template-columns:1fr; }
  .focus-hero__copy { padding-block:0; }
  .focus-hero h1 { font-size:clamp(42px,11.5vw,55px); line-height:1.35; letter-spacing:0; }
  .focus-hero__copy>p:not(.focus-kicker) { font-size:16px; }
  .focus-hero__photo { height:500px; margin-top:18px; border-radius:140px 140px 10px 10px; }
  .focus-hero__photo figcaption { right:24px; bottom:24px; left:24px; }
  .focus-proof__grid { grid-template-columns:1fr 1fr; }
  .focus-proof__grid>div { min-height:145px; padding:24px 18px; border-top:1px solid rgba(255,255,255,.16); }
  .focus-proof__statement { grid-column:1/-1; min-height:180px!important; padding:32px 0!important; }
  .focus-section-head { gap:25px; margin-bottom:48px; }
  .focus-section-head h2 { font-size:clamp(38px,10vw,50px); }
  .focus-story,.focus-story--reverse { grid-template-columns:1fr; min-height:0; margin-top:18px; }
  .focus-story--reverse figure { order:0; }
  .focus-story figure { min-height:390px; }
  .focus-story__copy { padding:42px 25px 50px; }
  .focus-story h3 { font-size:32px; }
  .focus-people__grid { gap:45px; }
  .focus-people__image { height:420px; border-radius:130px 10px 10px 10px; }
  .focus-invite__inner { gap:45px; }
  .focus-footer .borsa-shell { flex-direction:column; }
}
@media (max-width:460px) {
  .focus-hero__actions { align-items:stretch; flex-direction:column; }
  .focus-button { width:100%; }
  .focus-hero__photo { height:430px; }
  .focus-proof__grid { grid-template-columns:1fr; }
  .focus-proof__statement { grid-column:auto; }
  .focus-proof__grid>div { border-inline-start:0; }
  .focus-story figure { min-height:320px; }
  .focus-story dl div { grid-template-columns:64px 1fr; gap:12px; }
  .focus-people__image { height:350px; }
}

/* Complete footer for the focused homepage */
.human-home--focused + .site-legal-nav { display:none; }
.focus-footer { position:relative; overflow:hidden; background:#20312b; color:#fff; }
.focus-footer::before { position:absolute; top:-240px; left:-190px; width:530px; height:530px; border:90px solid rgba(255,255,255,.035); border-radius:50%; content:""; pointer-events:none; }
.focus-footer .borsa-shell { position:relative; z-index:1; }
.focus-footer__top { display:grid!important; grid-template-columns:.72fr 1.28fr; gap:clamp(70px,11vw,155px)!important; padding-block:90px 76px!important; border:0!important; }
.focus-footer__brand>a { display:flex; align-items:center; gap:14px; width:fit-content; color:#fff; }
.focus-footer__brand img { width:58px; height:58px; object-fit:contain; filter:drop-shadow(0 8px 14px rgba(0,0,0,.18)); }
.focus-footer__brand strong { font-size:24px; }
.focus-footer__brand p { max-width:330px; margin:27px 0 10px; color:#fff; font-size:17px; font-weight:900; line-height:1.8; }
.focus-footer__brand>span { display:block; max-width:330px; color:rgba(255,255,255,.48); font-size:11px; line-height:1.9; }
.focus-footer__conversation { padding-inline-start:clamp(35px,6vw,85px); border-inline-start:1px solid rgba(255,255,255,.14); }
.focus-footer__conversation small { color:#f0c867; font-size:12px; font-weight:850; }
.focus-footer__conversation h2 { max-width:740px; margin:16px 0 28px; color:#fff; font-size:clamp(35px,4.1vw,57px); line-height:1.45; }
.focus-footer__conversation>a { display:inline-flex; min-height:52px; align-items:center; gap:30px; padding:0 23px; border:1px solid rgba(255,255,255,.45); color:#fff; font-size:13px; font-weight:900; transition:background .2s ease,color .2s ease; }
.focus-footer__conversation>a:hover,.focus-footer__conversation>a:focus-visible { background:#fff; color:#20312b; }
.focus-footer__conversation>a span { color:#f0c867; font-size:20px; }
.focus-footer__nav { display:grid!important; grid-template-columns:.8fr .8fr 1.45fr .8fr; gap:45px!important; padding-block:54px 64px!important; border-block:1px solid rgba(255,255,255,.13)!important; }
.focus-footer__nav nav { display:flex; align-items:flex-start; flex-direction:column; }
.focus-footer__nav h3 { margin:0 0 23px; color:#fff; font-size:13px; }
.focus-footer__nav h3::after { display:block; width:20px; height:2px; margin-top:10px; background:#d6535d; content:""; }
.focus-footer__nav a { padding:7px 0; color:rgba(255,255,255,.58); font-size:12px; line-height:1.7; transition:color .2s ease,transform .2s ease; }
.focus-footer__nav a:hover,.focus-footer__nav a:focus-visible { color:#fff; transform:translateX(-3px); }
.focus-footer__bottom { display:flex!important; min-height:105px; align-items:center; justify-content:space-between; gap:30px!important; padding-block:26px!important; border:0!important; }
.focus-footer__bottom p { margin:0; color:rgba(255,255,255,.45); font-size:11px; }
.focus-footer__bottom>a { display:flex; align-items:center; gap:12px; color:rgba(255,255,255,.7); font-size:11px; font-weight:850; }
.focus-footer__bottom>a span { display:grid; width:32px; height:32px; place-items:center; border:1px solid rgba(255,255,255,.22); border-radius:50%; color:#fff; font-size:16px; }
@media (max-width:900px) {
  .focus-footer__top { grid-template-columns:1fr; gap:52px!important; }
  .focus-footer__conversation { padding:44px 0 0; border-top:1px solid rgba(255,255,255,.14); border-inline-start:0; }
  .focus-footer__nav { grid-template-columns:1fr 1fr; gap:45px 70px!important; }
}
@media (max-width:560px) {
  .focus-footer__top { padding-block:70px 52px!important; }
  .focus-footer__brand img { width:50px; height:50px; }
  .focus-footer__conversation h2 { font-size:35px; }
  .focus-footer__conversation>a { width:100%; justify-content:space-between; }
  .focus-footer__nav { grid-template-columns:1fr; gap:38px!important; padding-block:45px 52px!important; }
  .focus-footer__family { padding-bottom:5px; }
  .focus-footer__bottom { align-items:flex-start!important; flex-direction:column!important; min-height:0; padding-block:32px 40px!important; }
}

/* Human newsroom */
.news-human{--nh-ink:#18231f;--nh-muted:#66716c;--nh-paper:#fbf9f4;--nh-red:#bd2d38;--nh-green:#3f715c;min-height:100vh;overflow:hidden;background:var(--nh-paper);color:var(--nh-ink)}
.news-human+.site-legal-nav{display:none}.news-human .borsa-shell{width:min(1200px,calc(100% - 64px))}.news-human h1,.news-human h2,.news-human h3,.news-human p{text-wrap:pretty}.news-human a{color:inherit}.news-human .borsa-site-header{background:rgba(251,249,244,.94)}
.news-human__hero{padding:clamp(105px,11vw,165px) 0 clamp(80px,9vw,125px);background:#f4efe5}.news-human__hero-grid{display:grid;grid-template-columns:1.35fr .65fr;gap:clamp(70px,10vw,145px);align-items:end}.news-human__hero h1{max-width:900px;margin:0;font-size:clamp(50px,6.4vw,88px);line-height:1.35}.news-human__hero-grid>div>p:not(.focus-kicker){max-width:750px;margin:25px 0 0;color:var(--nh-muted);font-size:18px;line-height:2.05}.news-human__hero-aside{padding:29px 30px;border-right:3px solid var(--nh-green);background:rgba(255,255,255,.45)}.news-human__hero-aside>span{color:var(--nh-green);font-size:11px;font-weight:900}.news-human__hero-aside ul{display:grid;gap:14px;margin:20px 0 0;padding:0;list-style:none}.news-human__hero-aside li{position:relative;padding-right:16px;color:#46534d;font-size:13px;font-weight:800}.news-human__hero-aside li:before{position:absolute;top:9px;right:0;width:5px;height:5px;border-radius:50%;background:var(--nh-red);content:""}
.news-human__tools{border-block:1px solid rgba(24,35,31,.13)}.news-human__tools-grid{display:grid;grid-template-columns:1fr 340px;gap:35px;align-items:center;min-height:96px}.news-human__categories{display:flex;gap:5px;overflow-x:auto;scrollbar-width:none}.news-human__categories a{flex:0 0 auto;padding:12px 15px;color:var(--nh-muted);font-size:12px;font-weight:850}.news-human__categories a.active{border-radius:30px;background:#e2ece5;color:var(--nh-green)}.news-human__search{display:grid;grid-template-columns:1fr auto;min-height:48px;border:1px solid rgba(24,35,31,.18);background:#fff}.news-human__search input{min-width:0;padding:0 15px;border:0;outline:0;background:transparent;font:inherit;font-size:12px}.news-human__search button{padding:0 18px;border:0;background:var(--nh-green);color:#fff;font:inherit;font-size:11px;font-weight:900}
.news-human__featured{display:grid;grid-template-columns:1.08fr .92fr;min-height:590px;margin-block:clamp(85px,10vw,135px);background:#20312b;color:#fff}.news-human__featured-media{position:relative;min-height:590px;overflow:hidden}.news-human__featured-media:after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 60%,rgba(9,14,12,.42));content:""}.news-human__featured-media img{width:100%;height:100%;object-fit:cover;transition:transform .7s}.news-human__featured:hover img{transform:scale(1.025)}.news-human__featured-media>span{position:absolute;z-index:1;top:28px;right:28px;padding:9px 13px;border:1px solid rgba(255,255,255,.45);border-radius:30px;background:rgba(20,30,26,.22);font-size:10px;font-weight:900}.news-human__featured-copy{display:flex;align-items:flex-start;flex-direction:column;justify-content:center;padding:clamp(42px,5.5vw,76px)}.news-human__meta{display:flex;flex-wrap:wrap;align-items:center;gap:10px 16px;color:#89928d;font-size:10px;font-weight:800}.news-human__meta a{color:var(--nh-red);font-weight:900}.news-human__featured .news-human__meta{color:rgba(255,255,255,.48)}.news-human__featured .news-human__meta a{color:#f1d27d}.news-human__featured h2{margin:23px 0 0;font-size:clamp(34px,4vw,55px);line-height:1.55}.news-human__featured-copy>p{margin:22px 0 32px;color:rgba(255,255,255,.62);line-height:2.05}
.news-human__latest{padding-bottom:clamp(105px,12vw,165px)}.news-human__section-head{display:flex;align-items:end;justify-content:space-between;gap:55px;margin-bottom:55px}.news-human__section-head h2{margin:0;font-size:clamp(37px,4.5vw,61px);line-height:1.45}.news-human__section-head>span{max-width:370px;color:var(--nh-muted);font-size:12px;line-height:2}.news-human__section-head>a{color:var(--nh-green);font-size:12px;font-weight:900}.news-human__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.news-human__card{min-width:0;overflow:hidden;background:#fff;transition:.3s}.news-human__card:hover{transform:translateY(-5px);box-shadow:0 24px 55px rgba(32,49,43,.1)}.news-human__card-media{display:grid;aspect-ratio:16/10;place-items:center;overflow:hidden;background:#dfe5e0;color:rgba(63,113,92,.45);font-size:30px;font-weight:900}.news-human__card-media img{width:100%;height:100%;object-fit:cover;transition:transform .6s}.news-human__card:hover img{transform:scale(1.035)}.news-human__card-copy{display:flex;align-items:flex-start;flex-direction:column;min-height:350px;padding:28px}.news-human__card h2{margin:19px 0 11px;font-size:22px;line-height:1.7}.news-human__card-copy>p{margin:0 0 24px;color:var(--nh-muted);font-size:13px;line-height:1.95}.news-human__read{display:flex;width:100%;align-items:center;justify-content:space-between;margin-top:auto;padding-top:18px;border-top:1px solid rgba(24,35,31,.12);color:var(--nh-green)!important;font-size:11px;font-weight:900}.news-human__read span{color:var(--nh-red);font-size:18px}
.news-human__empty{padding:clamp(80px,10vw,140px) 0;background:#e9eee9}.news-human__empty-grid{display:grid;grid-template-columns:1fr 1fr;min-height:590px;background:#fff}.news-human__empty-visual{position:relative;overflow:hidden}.news-human__empty-visual:after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(20,31,26,.7));content:""}.news-human__empty-visual img{width:100%;height:100%;object-fit:cover}.news-human__empty-visual>span{position:absolute;z-index:1;right:35px;bottom:34px;left:35px;padding-top:17px;border-top:1px solid rgba(255,255,255,.46);color:#fff;font-size:13px;font-weight:850}.news-human__empty-copy{display:flex;align-items:flex-start;flex-direction:column;justify-content:center;padding:clamp(40px,6vw,85px)}.news-human__empty-copy h2{margin:0;font-size:clamp(38px,4.5vw,62px);line-height:1.5}.news-human__empty-copy>p:not(.focus-kicker){margin:22px 0 32px;color:var(--nh-muted);line-height:2.05}.news-human__empty-copy>div{display:flex;flex-wrap:wrap;align-items:center;gap:24px}.news-human__empty-copy>div>a:not(.focus-button){color:var(--nh-green);font-size:12px;font-weight:900}.news-human__pagination{display:flex;align-items:center;justify-content:center;gap:18px;padding:0 24px 80px}.news-human__pagination a{padding:10px 17px;background:#20312b;color:#fff}.news-human__contact{padding:88px 0;background:#f3eadb}.news-human__contact>.borsa-shell{display:flex;align-items:center;justify-content:space-between;gap:55px}.news-human__contact h2{max-width:820px;margin:0;font-size:clamp(34px,4vw,55px);line-height:1.45}
.news-human__featured-placeholder{display:grid;position:absolute!important;inset:0;place-items:center;background:linear-gradient(145deg,#173b35,#d85e49);color:rgba(255,255,255,.88);font-size:clamp(70px,11vw,150px)!important;font-weight:950;letter-spacing:-.08em}.news-human__empty-visual--type{display:grid;place-items:center;background:linear-gradient(145deg,#163a34 0 58%,#e16a52 58%)}.news-human__empty-visual--type>strong{color:rgba(255,255,255,.9);font-size:clamp(80px,12vw,170px);font-weight:950;letter-spacing:-.08em}
.news-human__article{padding-top:70px}.news-human__article-head{padding-block:65px 80px}.news-human__back{display:inline-flex;gap:10px;margin-bottom:65px;color:var(--nh-green)!important;font-size:11px;font-weight:900}.news-human__article-heading{display:grid;grid-template-columns:190px 1fr;gap:clamp(45px,8vw,120px)}.news-human__article-side{display:grid;align-content:start;gap:5px;padding-top:10px}.news-human__article-side span{margin-top:17px;color:var(--nh-muted);font-size:10px}.news-human__article-side strong{font-size:13px}.news-human__article-heading h1{max-width:950px;margin:24px 0 0;font-size:clamp(44px,6vw,80px);line-height:1.45}.news-human__article-heading>div:last-child>p{max-width:840px;margin:24px 0 0;color:var(--nh-muted);font-size:19px;line-height:2.05}.news-human__article-hero{width:min(1380px,100%);margin:0 auto;background:#18231f}.news-human__article-hero img,.news-human__article-hero video{display:block;width:100%;max-height:820px;object-fit:cover}.news-human__article-hero figcaption,.news-human__media figcaption{padding:12px 16px;color:#7a847f;font-size:11px}.news-human__article-layout{display:grid;grid-template-columns:220px minmax(0,790px);gap:clamp(55px,9vw,135px);justify-content:center;padding-block:clamp(80px,10vw,140px)}.news-human__article-rail{align-self:start;padding-top:18px;border-top:3px solid var(--nh-green)}.news-human__article-rail>span{color:var(--nh-green);font-size:11px;font-weight:900}.news-human__article-rail p{color:var(--nh-muted);font-size:11px;line-height:1.9}.news-human__article-rail a{color:var(--nh-red);font-size:10px;font-weight:900}.news-human__article-body{color:#29352f;font-size:18px;line-height:2.35}.news-human__article-body p{margin:0 0 28px}.news-human__gallery{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:45px}.news-human__media{margin:0;background:#eef1ee}.news-human__media--video,.news-human__media--audio{grid-column:1/-1}.news-human__media img,.news-human__media video{display:block;width:100%;max-height:660px;object-fit:contain;background:#18231f}.news-human__audio{display:grid;gap:17px;padding:26px;background:#20312b;color:#fff}.news-human__audio audio{width:100%}.news-human__tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:45px;padding-top:22px;border-top:1px solid rgba(24,35,31,.14)}.news-human__tags b{padding:7px 11px;border-radius:30px;background:#e5ede7;color:var(--nh-green);font-size:10px}.news-human__related{padding:clamp(90px,11vw,145px) 0;background:#e9eee9}
@media(max-width:1000px){.news-human__hero-grid,.news-human__featured,.news-human__empty-grid{grid-template-columns:1fr}.news-human__tools-grid{grid-template-columns:1fr;padding-block:18px}.news-human__featured-media,.news-human__empty-visual{min-height:520px}.news-human__grid{grid-template-columns:1fr 1fr}.news-human__article-heading,.news-human__article-layout{grid-template-columns:1fr}.news-human__article-side{display:flex;flex-wrap:wrap;gap:8px 18px;order:2}}
@media(max-width:700px){.news-human .borsa-shell{width:min(100% - 32px,1200px)}.news-human__hero{padding:105px 0 70px}.news-human__hero h1{font-size:clamp(42px,12vw,57px)}.news-human__categories{padding-inline:16px}.news-human__search{margin-inline:16px}.news-human__featured{width:100%!important;margin-block:65px}.news-human__featured-media{min-height:410px}.news-human__featured-copy{padding:42px 24px 55px}.news-human__section-head,.news-human__contact>.borsa-shell{align-items:flex-start;flex-direction:column}.news-human__grid{grid-template-columns:1fr}.news-human__empty{padding:0}.news-human__empty-grid{width:100%!important}.news-human__empty-visual{min-height:430px}.news-human__empty-copy{padding:55px 24px 70px}.news-human__contact .focus-button{width:100%}.news-human__article-heading h1{font-size:clamp(39px,11vw,53px)}.news-human__article-layout{padding-block:70px}.news-human__article-body{font-size:17px}.news-human__gallery{grid-template-columns:1fr}.news-human__media{grid-column:1/-1}}

/* Human about page */
.about-human{--ah-ink:#18231f;--ah-muted:#66716c;--ah-paper:#fbf9f4;--ah-red:#bd2d38;--ah-green:#3f715c;--ah-amber:#d99b36;min-height:100vh;overflow:hidden;background:var(--ah-paper);color:var(--ah-ink)}.about-human+.site-legal-nav{display:none}.about-human__shell,.about-human .borsa-shell{width:min(1200px,calc(100% - 64px));margin-inline:auto}.about-human h1,.about-human h2,.about-human h3,.about-human p{text-wrap:pretty}.about-human .borsa-site-header{background:rgba(251,249,244,.94)}
.about-human__hero{display:grid;grid-template-columns:1.08fr .92fr;min-height:790px;padding-top:78px;background:#f4efe5}.about-human__hero-copy{display:flex;align-items:flex-start;flex-direction:column;justify-content:center;padding:70px clamp(42px,7vw,110px)}.about-human__hero h1{max-width:850px;margin:0;font-size:clamp(48px,6.1vw,86px);line-height:1.33}.about-human__hero-copy>p:not(.focus-kicker){max-width:720px;margin:25px 0 32px;color:var(--ah-muted);font-size:18px;line-height:2.05}.about-human__hero-actions{display:flex;flex-wrap:wrap;align-items:center;gap:25px}.about-human__hero-actions>a:not(.focus-button){color:var(--ah-green);font-size:12px;font-weight:900}.about-human__hero-media{position:relative;min-height:710px;overflow:hidden}.about-human__hero-media:after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 48%,rgba(18,29,24,.74));content:""}.about-human__hero-media>img{width:100%;height:100%;object-fit:cover}.about-human__hero-media>div{position:absolute;z-index:1;right:clamp(25px,5vw,70px);bottom:48px;left:clamp(25px,5vw,70px);padding-top:20px;border-top:1px solid rgba(255,255,255,.5);color:#fff}.about-human__hero-media strong{display:block;font-size:18px}.about-human__hero-media span{display:block;max-width:560px;margin-top:9px;color:rgba(255,255,255,.7);font-size:12px;line-height:1.9}
.about-human__intro{padding:clamp(105px,13vw,180px) 0}.about-human__intro-grid{display:grid;grid-template-columns:.36fr 1.64fr;gap:clamp(45px,9vw,135px)}.about-human__intro h2{max-width:980px;margin:0;font-size:clamp(40px,4.8vw,68px);line-height:1.48}.about-human__intro-grid>div>p{max-width:880px;margin:28px 0 0;color:var(--ah-muted);font-size:16px;line-height:2.2}
.about-human__timeline{padding:clamp(100px,12vw,165px) 0;background:#e9eee9}.about-human__section-head{display:grid;grid-template-columns:1.2fr .8fr;gap:70px;align-items:end;margin-bottom:65px}.about-human__section-head h2{max-width:820px;margin:0;font-size:clamp(39px,4.7vw,65px);line-height:1.45}.about-human__section-head>p{max-width:500px;margin:0;color:var(--ah-muted);line-height:2.05}.about-human__timeline-grid{display:grid;border-top:1px solid rgba(24,35,31,.18)}.about-human__timeline-grid article{display:grid;grid-template-columns:180px 1fr;gap:50px;min-height:210px;align-items:center;border-bottom:1px solid rgba(24,35,31,.18)}.about-human__timeline-grid article>span{color:var(--ah-green);font-size:clamp(31px,4vw,52px);font-weight:900}.about-human__timeline-grid small{color:var(--ah-red);font-size:10px;font-weight:900}.about-human__timeline-grid h3{margin:8px 0;font-size:25px}.about-human__timeline-grid p{max-width:700px;margin:0;color:var(--ah-muted);font-size:13px;line-height:2}
.about-human__purpose{display:grid;grid-template-columns:1fr 1fr;min-height:820px;background:#20312b;color:#fff}.about-human__purpose-media{overflow:hidden}.about-human__purpose-media img{width:100%;height:100%;object-fit:cover}.about-human__purpose-copy{display:flex;align-items:flex-start;flex-direction:column;justify-content:center;padding:75px clamp(42px,7vw,110px)}.about-human__purpose .focus-kicker{color:#edce78}.about-human__purpose-item{width:100%;max-width:720px;padding:30px 0;border-top:1px solid rgba(255,255,255,.16)}.about-human__purpose-item>span{color:#edce78;font-size:11px;font-weight:900}.about-human__purpose-item h2{margin:15px 0 0;font-size:clamp(37px,4.3vw,61px);line-height:1.5}.about-human__purpose-item h3{margin:15px 0 0;font-size:clamp(27px,3vw,40px);line-height:1.55}.about-human__purpose-item p{color:rgba(255,255,255,.58);line-height:2}
.about-human__model{padding:clamp(105px,13vw,180px) 0;background:#f4efe5}.about-human__model-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(65px,10vw,145px)}.about-human__model-grid>div:first-child{align-self:start;position:sticky;top:110px}.about-human__model h2{margin:0;font-size:clamp(39px,4.4vw,62px);line-height:1.48}.about-human__model-grid>div:first-child>p:not(.focus-kicker){color:var(--ah-muted);line-height:2.1}.about-human__model-grid>div:first-child>a{color:var(--ah-green);font-size:12px;font-weight:900}.about-human__model-list{border-top:1px solid rgba(24,35,31,.17)}.about-human__model-list article{display:grid;grid-template-columns:50px 1fr;gap:25px;min-height:210px;align-items:center;border-bottom:1px solid rgba(24,35,31,.17)}.about-human__model-list article>span{color:var(--ah-red);font-size:12px;font-weight:900}.about-human__model-list small{color:var(--ah-green);font-size:10px;font-weight:900}.about-human__model-list h3{margin:8px 0;font-size:25px}.about-human__model-list p{margin:0;color:var(--ah-muted);font-size:13px;line-height:1.95}
.about-human__impact{padding:clamp(105px,13vw,180px) 0}.about-human__impact-grid{display:grid;grid-template-columns:repeat(3,1fr);border-block:1px solid rgba(24,35,31,.17)}.about-human__impact-grid article{min-height:300px;padding:38px;border-inline-start:1px solid rgba(24,35,31,.17)}.about-human__impact-grid article:first-child{border:0}.about-human__impact-grid strong{color:var(--ah-green);font-size:clamp(48px,6vw,82px)}.about-human__impact-grid h3{margin:25px 0 10px;font-size:22px}.about-human__impact-grid p{color:var(--ah-muted);font-size:12px;line-height:2}
.about-human__values{padding:clamp(100px,12vw,165px) 0;background:#e9eee9}.about-human__values-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1px;background:rgba(24,35,31,.15);border:1px solid rgba(24,35,31,.15)}.about-human__values-grid article{min-height:300px;padding:45px;background:#fff}.about-human__values-grid span{color:var(--ah-red);font-size:11px;font-weight:900}.about-human__values-grid h3{margin:45px 0 12px;font-size:28px}.about-human__values-grid p{max-width:460px;color:var(--ah-muted);line-height:2}
.about-human__people{display:grid;grid-template-columns:1fr 1fr;min-height:760px;background:#f4efe5}.about-human__people-media{overflow:hidden}.about-human__people-media img{width:100%;height:100%;object-fit:cover}.about-human__people-copy{display:flex;align-items:flex-start;flex-direction:column;justify-content:center;padding:75px clamp(42px,7vw,110px)}.about-human__people h2{margin:0;font-size:clamp(40px,4.8vw,67px);line-height:1.45}.about-human__people-copy>p:not(.focus-kicker){color:var(--ah-muted);line-height:2.1}.about-human__people-copy>div{display:flex;flex-wrap:wrap;align-items:center;gap:25px;margin-top:20px}.about-human__people-copy>div>a:not(.focus-button){color:var(--ah-green);font-size:12px;font-weight:900}
.about-human__official{padding:clamp(100px,12vw,160px) 0}.about-human__official-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:90px;align-items:center}.about-human__official h2{margin:0;font-size:clamp(39px,4.5vw,62px);line-height:1.45}.about-human__official-grid>div:first-child>p:not(.focus-kicker){max-width:660px;color:var(--ah-muted);line-height:2.1}.about-human__official-grid>div:last-child{display:grid;grid-template-columns:88px 1fr;gap:5px 20px;padding:35px;border:1px solid rgba(24,35,31,.15);background:#fff}.about-human__official img{grid-row:1/3;width:88px;height:88px;object-fit:contain}.about-human__official strong{align-self:end;font-size:20px}.about-human__official span{color:var(--ah-muted);font-size:11px}.about-human__official .focus-button{grid-column:1/-1;margin-top:25px}.about-human__invite .about-human__shell{width:min(1200px,calc(100% - 64px))}
.about-human__invite{background:var(--ah-red);color:#fff}.about-human__invite .focus-kicker{color:#ffe69b}.about-human__invite .focus-kicker:before{background:#fff}.about-human__invite h2{color:#fff}.about-human__invite p:not(.focus-kicker){color:rgba(255,255,255,.82)}.about-human__invite .focus-invite__links>a:not(.focus-button){border-color:rgba(255,255,255,.3);color:#fff}.about-human__invite .focus-button--light{background:#fff;color:var(--ah-ink)}.about-human__invite .focus-button--light:hover,.about-human__invite .focus-button--light:focus-visible{background:#20312b;color:#fff}
@media(max-width:1000px){.about-human__hero,.about-human__purpose,.about-human__people{grid-template-columns:1fr}.about-human__hero{padding-top:70px}.about-human__hero-media,.about-human__purpose-media,.about-human__people-media{min-height:620px}.about-human__intro-grid,.about-human__section-head,.about-human__model-grid,.about-human__official-grid{grid-template-columns:1fr}.about-human__model-grid>div:first-child{position:static}.about-human__impact-grid{grid-template-columns:1fr}.about-human__impact-grid article{min-height:220px;border-top:1px solid rgba(24,35,31,.17);border-inline-start:0}}
@media(max-width:700px){.about-human__shell,.about-human .borsa-shell,.about-human__invite .about-human__shell{width:min(100% - 32px,1200px)}.about-human__hero-copy{padding:58px 24px 70px}.about-human__hero h1{font-size:clamp(42px,12vw,57px)}.about-human__hero-media,.about-human__purpose-media,.about-human__people-media{min-height:490px}.about-human__intro h2,.about-human__section-head h2,.about-human__model h2,.about-human__people h2{font-size:clamp(35px,10vw,48px)}.about-human__timeline-grid article{grid-template-columns:1fr;gap:15px;padding:35px 0}.about-human__purpose-copy,.about-human__people-copy{padding:65px 24px 75px}.about-human__model-list article{grid-template-columns:36px 1fr}.about-human__values-grid{grid-template-columns:1fr}.about-human__values-grid article{min-height:250px;padding:34px 26px}.about-human__official-grid>div:last-child{grid-template-columns:64px 1fr;padding:25px}.about-human__official img{width:64px;height:64px}.about-human__hero-actions,.about-human__people-copy>div{align-items:flex-start;flex-direction:column}.about-human__hero-actions .focus-button,.about-human__people-copy .focus-button{width:100%}}

/* Human contact page */
.contact-human{--ch-ink:#18231f;--ch-muted:#66716c;--ch-paper:#fbf9f4;--ch-red:#bd2d38;--ch-green:#3f715c;--ch-amber:#d99b36;--ff-ink:var(--ch-ink);--ff-red:var(--ch-red);min-height:100vh;overflow:hidden;background:var(--ch-paper);color:var(--ch-ink)}.contact-human+.site-legal-nav{display:none}.contact-human .borsa-shell{width:min(1200px,calc(100% - 64px));margin-inline:auto}.contact-human h1,.contact-human h2,.contact-human h3,.contact-human p{text-wrap:pretty}.contact-human .borsa-site-header{background:rgba(251,249,244,.94)}
.contact-human__hero{display:grid;grid-template-columns:1.04fr .96fr;min-height:760px;padding-top:78px;background:#f4efe5}.contact-human__hero-copy{display:flex;align-items:flex-start;flex-direction:column;justify-content:center;padding:70px clamp(42px,7vw,110px)}.contact-human__hero h1{max-width:830px;margin:0;font-size:clamp(47px,6vw,84px);line-height:1.36}.contact-human__hero-copy>p:not(.focus-kicker){max-width:680px;margin:25px 0 33px;color:var(--ch-muted);font-size:18px;line-height:2.05}.contact-human__hero-media{position:relative;min-height:680px;overflow:hidden}.contact-human__hero-media:after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(18,29,24,.78));content:""}.contact-human__hero-media img{width:100%;height:100%;object-fit:cover}.contact-human__hero-media>div{position:absolute;z-index:1;right:clamp(25px,5vw,65px);bottom:48px;left:clamp(25px,5vw,65px);padding-top:20px;border-top:1px solid rgba(255,255,255,.48);color:#fff}.contact-human__hero-media strong{display:block;font-size:19px}.contact-human__hero-media span{display:block;margin-top:8px;color:rgba(255,255,255,.7);font-size:12px;line-height:1.9}
.contact-human__routes{padding:clamp(100px,12vw,165px) 0}.contact-human__section-head{display:grid;grid-template-columns:1.25fr .75fr;gap:70px;align-items:end;margin-bottom:58px}.contact-human__section-head h2{margin:0;font-size:clamp(39px,4.7vw,64px);line-height:1.45}.contact-human__section-head>p{margin:0;color:var(--ch-muted);line-height:2}.contact-human__route-grid{display:grid;grid-template-columns:repeat(4,1fr);border-block:1px solid rgba(24,35,31,.16)}.contact-human__route-grid>a{position:relative;display:flex;min-height:330px;align-items:flex-start;flex-direction:column;padding:36px 29px;border-inline-start:1px solid rgba(24,35,31,.16);color:inherit;transition:.25s}.contact-human__route-grid>a:first-child{border:0}.contact-human__route-grid>a:hover{background:#e8eee9;transform:translateY(-5px)}.contact-human__route-grid span{color:var(--ch-red);font-size:11px;font-weight:900}.contact-human__route-grid h3{margin:47px 0 13px;font-size:23px;line-height:1.6}.contact-human__route-grid p{margin:0;color:var(--ch-muted);font-size:12px;line-height:2}.contact-human__route-grid b{margin-top:auto;color:var(--ch-green);font-size:21px}
.contact-human__process{padding:clamp(100px,12vw,160px) 0;background:#20312b;color:#fff}.contact-human__process-grid{display:grid;grid-template-columns:.83fr 1.17fr;gap:clamp(65px,11vw,150px)}.contact-human__process-grid>div{align-self:start;position:sticky;top:110px}.contact-human__process .focus-kicker{color:#edce78}.contact-human__process h2{margin:0;font-size:clamp(38px,4.4vw,61px);line-height:1.52}.contact-human__process-grid>div>p:not(.focus-kicker){color:rgba(255,255,255,.58);line-height:2.1}.contact-human__process-grid>div>a{color:#edce78;font-size:11px;font-weight:900}.contact-human__process ol{margin:0;padding:0;border-top:1px solid rgba(255,255,255,.17);list-style:none}.contact-human__process li{display:grid;grid-template-columns:70px 1fr;gap:22px;min-height:190px;align-items:center;border-bottom:1px solid rgba(255,255,255,.17)}.contact-human__process li>span{display:grid;width:45px;height:45px;border:1px solid rgba(255,255,255,.28);border-radius:50%;place-items:center;color:#edce78;font-weight:900}.contact-human__process strong{font-size:23px}.contact-human__process li p{max-width:590px;margin:8px 0 0;color:rgba(255,255,255,.58);font-size:13px;line-height:2}
.contact-human__form-section{padding:clamp(100px,12vw,165px) 0;background:#f4efe5}.contact-human__form-layout{display:grid;grid-template-columns:360px minmax(0,1fr);gap:clamp(45px,7vw,95px);align-items:start}.contact-human__form-intro{position:sticky;top:110px}.contact-human__form-intro h2{margin:0;font-size:clamp(37px,4.1vw,56px);line-height:1.5}.contact-human__form-intro>p:not(.focus-kicker){color:var(--ch-muted);line-height:2.05}.contact-human__form-intro>div{margin-top:35px;padding:25px 27px;border-right:3px solid var(--ch-green);background:#e7ede8}.contact-human__form-intro>div strong{font-size:13px}.contact-human__form-intro ul{display:grid;gap:10px;margin:15px 0 0;padding-right:18px;color:var(--ch-muted);font-size:12px;line-height:1.8}.contact-human__form-card{min-width:0;background:#fff;box-shadow:0 28px 80px rgba(32,49,43,.08)}.contact-human .contact-form{gap:0;padding:clamp(28px,5vw,55px);border:0;border-radius:0;background:#fff}.contact-human__form-group{display:grid;gap:22px;padding:0 0 45px;margin-bottom:45px;border-bottom:1px solid rgba(24,35,31,.14)}.contact-human__form-label{display:grid;grid-template-columns:42px 1fr;gap:15px;align-items:start}.contact-human__form-label>span{color:var(--ch-red);font-size:11px;font-weight:900}.contact-human__form-label strong{display:block;font-size:20px}.contact-human__form-label small{display:block;margin-top:5px;color:var(--ch-muted);font-size:11px}.contact-human .form-field{gap:9px}.contact-human .form-field label,.contact-human .department-field legend{color:var(--ch-ink);font-size:12px;font-weight:850}.contact-human .form-field input,.contact-human .form-field select,.contact-human .form-field textarea{border:1px solid rgba(24,35,31,.19);border-radius:0;background:#fbfaf7;padding:13px 15px}.contact-human .form-field input,.contact-human .form-field select{height:57px}.contact-human .form-field textarea{min-height:180px}.contact-human .form-field input:focus,.contact-human .form-field select:focus,.contact-human .form-field textarea:focus{border-color:var(--ch-green);box-shadow:0 0 0 3px rgba(63,113,92,.12)}.contact-human .department-options{gap:8px}.contact-human .department-option{min-height:72px;border:1px solid rgba(24,35,31,.17);border-radius:0;background:#fbfaf7;font-size:12px;white-space:normal}.contact-human .department-option:has(input:checked){border-color:var(--ch-green);background:#e4ece6;color:var(--ch-green)}.contact-human .department-option:focus-within{outline-color:rgba(63,113,92,.25)}.contact-human__submit{display:flex;align-items:center;justify-content:space-between;gap:30px}.contact-human__submit p{max-width:430px;margin:0;color:var(--ch-muted);font-size:10px;line-height:1.9}.contact-human .contact-success{display:grid;grid-template-columns:52px 1fr;gap:20px;margin:0;padding:30px clamp(28px,5vw,55px);border:0;border-bottom:1px solid rgba(63,113,92,.18);border-radius:0;background:#e5eee7;color:var(--ch-ink)}.contact-human .contact-success>span{display:grid;width:46px;height:46px;border-radius:50%;place-items:center;background:var(--ch-green);color:#fff;font-size:22px}.contact-human .contact-success strong{font-size:19px}.contact-human .contact-success p{margin:6px 0;color:var(--ch-muted);font-size:12px}.contact-human .contact-success a{color:var(--ch-green);font-size:10px;font-weight:900}
.contact-human__other{padding:clamp(95px,11vw,150px) 0}.contact-human__other>.borsa-shell>div{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(60px,10vw,145px)}.contact-human__other h2{margin:0;font-size:clamp(38px,4.6vw,63px);line-height:1.5}.contact-human__other nav{margin-top:45px;border-top:1px solid rgba(24,35,31,.16)}.contact-human__other nav a{display:flex;align-items:center;justify-content:space-between;gap:25px;padding:25px 0;border-bottom:1px solid rgba(24,35,31,.16);color:inherit}.contact-human__other nav span{color:var(--ch-muted);font-size:11px}.contact-human__other nav b{color:var(--ch-green);font-size:13px}
@media(max-width:1050px){.contact-human__hero{grid-template-columns:1fr}.contact-human__hero-media{min-height:620px}.contact-human__section-head,.contact-human__process-grid,.contact-human__form-layout,.contact-human__other>.borsa-shell>div{grid-template-columns:1fr}.contact-human__route-grid{grid-template-columns:1fr 1fr}.contact-human__route-grid>a:nth-child(3){border:0}.contact-human__process-grid>div,.contact-human__form-intro{position:static}.contact-human__form-intro{max-width:680px}.contact-human__form-card{width:100%}}
@media(max-width:700px){.contact-human .borsa-shell{width:min(100% - 32px,1200px)}.contact-human__hero{padding-top:70px}.contact-human__hero-copy{padding:60px 24px 70px}.contact-human__hero h1{font-size:clamp(41px,12vw,56px)}.contact-human__hero-media{min-height:480px}.contact-human__route-grid{grid-template-columns:1fr}.contact-human__route-grid>a,.contact-human__route-grid>a:nth-child(3){min-height:265px;border:0;border-top:1px solid rgba(24,35,31,.16)}.contact-human__route-grid>a:first-child{border-top:0}.contact-human__process li{grid-template-columns:55px 1fr;min-height:210px}.contact-human__form-section{padding-bottom:0}.contact-human__form-layout{width:100%!important}.contact-human__form-intro{padding-inline:16px}.contact-human .form-grid.two,.contact-human .form-grid.three,.contact-human .department-options{grid-template-columns:1fr}.contact-human__submit{align-items:stretch;flex-direction:column}.contact-human__submit .focus-button{width:100%}.contact-human .contact-success{grid-template-columns:1fr}.contact-human__other nav a{align-items:flex-start;flex-direction:column}.contact-human__other nav b{align-self:stretch;display:flex;justify-content:space-between}}

/* Human application page */
.apply-human{--ap-ink:#18231f;--ap-muted:#66716c;--ap-paper:#fbf9f4;--ap-red:#bd2d38;--ap-green:#3f715c;--ap-amber:#d99b36;--ff-ink:var(--ap-ink);--ff-red:var(--ap-red);min-height:100vh;overflow:hidden;background:var(--ap-paper);color:var(--ap-ink)}.apply-human+.site-legal-nav{display:none}.apply-human .borsa-shell{width:min(1200px,calc(100% - 64px));margin-inline:auto}.apply-human h1,.apply-human h2,.apply-human h3,.apply-human p{text-wrap:pretty}.apply-human .borsa-site-header{background:rgba(251,249,244,.94)}
.apply-human__hero{display:grid;grid-template-columns:1.02fr .98fr;min-height:790px;padding-top:78px;background:#f4efe5}.apply-human__hero-copy{display:flex;align-items:flex-start;flex-direction:column;justify-content:center;padding:65px clamp(42px,7vw,105px)}.apply-human__hero h1{max-width:800px;margin:0;font-size:clamp(48px,6vw,82px);line-height:1.38}.apply-human__hero-copy>p:not(.focus-kicker){max-width:680px;margin:24px 0 30px;color:var(--ap-muted);font-size:18px;line-height:2.05}.apply-human__position{width:min(100%,620px);padding:24px 26px;border-right:3px solid var(--ap-green);background:rgba(255,255,255,.56)}.apply-human__position>span{display:block;color:var(--ap-green);font-size:10px;font-weight:900}.apply-human__position>strong{display:block;margin-top:7px;font-size:21px}.apply-human__position ul{display:flex;flex-wrap:wrap;gap:8px;margin:15px 0 0;padding:0;list-style:none}.apply-human__position li{padding:6px 10px;border-radius:20px;background:#e2e9e3;color:#53615a;font-size:9px;font-weight:850}.apply-human__hero-media{position:relative;min-height:712px;overflow:hidden}.apply-human__hero-media:after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 53%,rgba(18,29,24,.78));content:""}.apply-human__hero-media img{width:100%;height:100%;object-fit:cover}.apply-human__hero-media>div{position:absolute;z-index:1;right:clamp(25px,5vw,65px);bottom:48px;left:clamp(25px,5vw,65px);padding-top:20px;border-top:1px solid rgba(255,255,255,.5);color:#fff}.apply-human__hero-media strong{display:block;font-size:19px}.apply-human__hero-media span{display:block;margin-top:8px;color:rgba(255,255,255,.72);font-size:12px;line-height:1.9}
.apply-human__promise{border-block:1px solid rgba(24,35,31,.14)}.apply-human__promise>.borsa-shell{display:grid;grid-template-columns:repeat(3,1fr)}.apply-human__promise article{min-height:150px;padding:30px;border-inline-start:1px solid rgba(24,35,31,.14)}.apply-human__promise article:first-child{border:0}.apply-human__promise span{color:var(--ap-red);font-size:11px;font-weight:900}.apply-human__promise p{margin:10px 0 0;color:var(--ap-muted);font-size:12px;line-height:1.9}
.apply-human .career-message{margin-top:25px;padding:18px 20px;border:1px solid rgba(63,113,92,.22);background:#e5eee7;color:var(--ap-green);font-weight:850}.apply-human__workspace{padding:clamp(85px,10vw,135px) 0;background:#e9eee9}.apply-human__steps{position:relative;display:grid;grid-template-columns:repeat(5,1fr);margin-bottom:28px;border-block:1px solid rgba(24,35,31,.14);background:rgba(255,255,255,.5)}.apply-human__steps button{display:grid;grid-template-columns:34px 1fr;gap:10px;align-items:center;min-height:76px;padding:0 18px;border:0;border-inline-start:1px solid rgba(24,35,31,.11);background:transparent;color:#7a847f;font:inherit;text-align:right;cursor:pointer}.apply-human__steps button:first-child{border:0}.apply-human__steps button>span{display:grid;width:31px;height:31px;border:1px solid rgba(24,35,31,.2);border-radius:50%;place-items:center;font-size:10px}.apply-human__steps b{font-size:11px}.apply-human__steps button.is-active{background:#20312b;color:#fff}.apply-human__steps button.is-active>span{border-color:#edce78;color:#edce78}.apply-human__steps button.is-complete>span{border-color:var(--ap-green);background:var(--ap-green);color:#fff}
.apply-human__form{background:#fff;box-shadow:0 30px 90px rgba(32,49,43,.09)}.apply-human__panel{padding:clamp(35px,6vw,78px)}.apply-human__panel[hidden]{display:none}.apply-human__panel>header{display:grid;grid-template-columns:150px 1fr;gap:5px 45px;margin-bottom:55px;padding-bottom:32px;border-bottom:1px solid rgba(24,35,31,.14)}.apply-human__panel>header>span{grid-row:1/3;padding-top:9px;color:var(--ap-red);font-size:10px;font-weight:900}.apply-human__panel>header h2{margin:0;font-size:clamp(35px,4vw,55px);line-height:1.45}.apply-human__panel>header p{max-width:690px;margin:7px 0 0;color:var(--ap-muted);font-size:13px;line-height:2}.apply-human__grid{display:grid;gap:23px 18px}.apply-human__grid.two{grid-template-columns:1fr 1fr}.apply-human__grid .wide{grid-column:1/-1}.apply-human .career-field{position:relative;gap:9px;margin:0}.apply-human .career-field label{color:var(--ap-ink);font-size:12px;font-weight:850}.apply-human .career-field input,.apply-human .career-field select,.apply-human .career-field textarea{border:1px solid rgba(24,35,31,.19);border-radius:0;background:#fbfaf7;color:var(--ap-ink)}.apply-human .career-field input:focus,.apply-human .career-field select:focus,.apply-human .career-field textarea:focus{border-color:var(--ap-green);outline:3px solid rgba(63,113,92,.11)}.apply-human .career-field small{color:var(--ap-muted);line-height:1.8}.apply-human .errorlist{margin:0;padding:0;color:#a92531;font-size:11px;font-weight:800;list-style:none}.apply-human__panel>footer{display:flex;align-items:center;justify-content:space-between;gap:25px;margin-top:55px;padding-top:30px;border-top:1px solid rgba(24,35,31,.14)}.apply-human__panel>footer>button:not(.focus-button){padding:10px 0;border:0;background:transparent;color:var(--ap-muted);font:inherit;font-size:11px;font-weight:850;cursor:pointer}.apply-human__upload-simple{padding:24px;border:1px dashed rgba(63,113,92,.4);background:#f3f6f3}.apply-human__upload-simple input{padding:15px!important;background:#fff!important}
.apply-human__questions{display:grid;gap:0;border-top:1px solid rgba(24,35,31,.14)}.apply-human__questions .career-field{display:grid;grid-template-columns:50px 1fr;gap:9px 20px;padding:35px 0;border-bottom:1px solid rgba(24,35,31,.14)}.apply-human__questions .career-field>span{grid-row:1/4;color:var(--ap-red);font-size:11px;font-weight:900}.apply-human__questions textarea,.apply-human__questions .errorlist{grid-column:2}.apply-human__logistics{margin-top:50px;padding:35px;background:#f1f4f1}
.apply-human__media-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:18px}.apply-human__media-card{display:flex;min-width:0;align-items:flex-start;flex-direction:column;padding:clamp(27px,4vw,44px);border:1px solid rgba(24,35,31,.15);background:#fbfaf7}.apply-human__media-icon{display:grid;min-width:54px;height:54px;padding:0 9px;border-radius:50%;place-items:center;background:#e5ece6;color:var(--ap-green);font-size:11px;font-weight:900}.apply-human__media-card h3{margin:35px 0 10px;font-size:24px}.apply-human__media-card>p{margin:0 0 25px;color:var(--ap-muted);font-size:12px;line-height:2}.apply-human__file-button{display:inline-flex;min-height:48px;align-items:center;justify-content:center;padding:0 20px;background:var(--ap-green);color:#fff;font-size:11px;font-weight:900;cursor:pointer}.apply-human__media-card>input,.apply-human__video-file>input{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}.apply-human__media-card>small{margin-top:15px;color:var(--ap-muted);font-size:9px}.apply-human__current-photo{width:100%;max-height:360px;margin-top:20px;object-fit:cover}.apply-human__record{display:grid;width:100%;grid-template-columns:1fr 1fr auto;gap:7px;margin-bottom:12px}.apply-human__record button{min-height:48px;padding:0 13px;border:1px solid rgba(24,35,31,.16);background:#fff;color:var(--ap-ink);font:inherit;font-size:10px;font-weight:850;cursor:pointer}.apply-human__record button:first-child{background:var(--ap-red);color:#fff}.apply-human__record button:disabled{opacity:.4;cursor:not-allowed}.apply-human__record time{display:grid;min-width:63px;place-items:center;background:#20312b;color:#fff;font-size:11px;font-weight:900}.apply-human__video-file{width:100%}.apply-human__video-file label{width:100%}.apply-human__video-card video{width:100%;max-height:390px;margin-top:18px;background:#18231f}.apply-human__media-status{min-height:22px;margin:11px 0 0!important;color:var(--ap-green)!important;font-weight:800}
.apply-human__review{display:grid;grid-template-columns:repeat(3,1fr);border-block:1px solid rgba(24,35,31,.15)}.apply-human__review article{display:flex;min-height:180px;align-items:flex-start;flex-direction:column;padding:30px;border-inline-start:1px solid rgba(24,35,31,.15)}.apply-human__review article:first-child{border:0}.apply-human__review span{color:var(--ap-red);font-size:10px;font-weight:900}.apply-human__review strong{margin-top:35px;font-size:19px}.apply-human__review small{margin-top:8px;color:var(--ap-muted);font-size:10px}.apply-human__privacy{margin:45px 0 30px;padding:28px 30px;border-right:3px solid var(--ap-green);background:#e8eee9}.apply-human__privacy strong{font-size:15px}.apply-human__privacy p{margin:7px 0;color:var(--ap-muted);font-size:11px;line-height:2}.apply-human__privacy a{color:var(--ap-green);font-size:10px;font-weight:900}.apply-human__confirm{display:grid;grid-template-columns:22px 1fr;gap:12px;align-items:start;margin:14px 0;color:var(--ap-ink);font-size:12px;line-height:1.9;cursor:pointer}.apply-human__confirm input{width:19px;height:19px;margin-top:3px;accent-color:var(--ap-green)}
.apply-human__after{padding:clamp(95px,12vw,160px) 0}.apply-human__after>.borsa-shell>div{display:grid;grid-template-columns:.72fr 1.28fr;gap:clamp(60px,10vw,140px)}.apply-human__after h2{margin:0;font-size:clamp(39px,4.7vw,64px);line-height:1.48}.apply-human__after ol{margin:45px 0 0;padding:0;border-top:1px solid rgba(24,35,31,.16);list-style:none}.apply-human__after li{display:grid;grid-template-columns:50px 1fr;gap:18px;padding:26px 0;border-bottom:1px solid rgba(24,35,31,.16)}.apply-human__after li>span{color:var(--ap-red);font-size:11px;font-weight:900}.apply-human__after li p{display:grid;gap:5px;margin:0;color:var(--ap-muted);font-size:11px;line-height:1.9}.apply-human__after li strong{color:var(--ap-ink);font-size:16px}
@media(max-width:1000px){.apply-human__hero{grid-template-columns:1fr}.apply-human__hero-media{min-height:630px}.apply-human__promise>.borsa-shell{grid-template-columns:1fr}.apply-human__promise article{min-height:110px;border-top:1px solid rgba(24,35,31,.14);border-inline-start:0}.apply-human__promise article:first-child{border-top:0}.apply-human__steps{overflow-x:auto;grid-template-columns:repeat(5,minmax(135px,1fr))}.apply-human__panel>header,.apply-human__after>.borsa-shell>div{grid-template-columns:1fr}.apply-human__panel>header>span{grid-row:auto}.apply-human__media-grid{grid-template-columns:1fr}.apply-human__review{grid-template-columns:1fr}.apply-human__review article{min-height:140px;border-top:1px solid rgba(24,35,31,.15);border-inline-start:0}.apply-human__review article:first-child{border-top:0}}
@media(max-width:700px){.apply-human .borsa-shell{width:min(100% - 32px,1200px)}.apply-human__hero{padding-top:70px}.apply-human__hero-copy{padding:58px 24px 68px}.apply-human__hero h1{font-size:clamp(41px,12vw,56px)}.apply-human__hero-media{min-height:485px}.apply-human__workspace{padding:65px 0 0}.apply-human__workspace>.borsa-shell{width:100%}.apply-human__steps{margin:0}.apply-human__steps button{min-height:67px}.apply-human__panel{padding:45px 20px 55px}.apply-human__grid.two{grid-template-columns:1fr}.apply-human__grid .wide{grid-column:auto}.apply-human__questions .career-field{grid-template-columns:34px 1fr}.apply-human__questions textarea,.apply-human__questions .errorlist{grid-column:2}.apply-human__logistics{padding:25px 18px}.apply-human__panel>footer{align-items:stretch;flex-direction:column-reverse}.apply-human__panel>footer .focus-button{width:100%}.apply-human__panel>footer>span{display:none}.apply-human__record{grid-template-columns:1fr 1fr}.apply-human__record time{grid-column:1/-1;min-height:42px}.apply-human__after>.borsa-shell>div{gap:35px}}

/* Human careers landing */
.careers-human{--cr-ink:#18231f;--cr-muted:#66716c;--cr-paper:#fbf9f4;--cr-red:#bd2d38;--cr-green:#3f715c;--ff-ink:var(--cr-ink);--ff-red:var(--cr-red);min-height:100vh;overflow:hidden;background:var(--cr-paper);color:var(--cr-ink)}.careers-human+.site-legal-nav{display:none}.careers-human .borsa-shell{width:min(1200px,calc(100% - 64px));margin-inline:auto}.careers-human h1,.careers-human h2,.careers-human h3,.careers-human p{text-wrap:pretty}.careers-human .borsa-site-header{background:rgba(251,249,244,.94)}
.careers-human__hero{display:grid;grid-template-columns:1.03fr .97fr;min-height:790px;padding-top:78px;background:#f4efe5}.careers-human__hero-copy{display:flex;align-items:flex-start;flex-direction:column;justify-content:center;padding:65px clamp(42px,7vw,105px)}.careers-human__hero h1{max-width:820px;margin:0;font-size:clamp(48px,6vw,82px);line-height:1.38}.careers-human__hero-copy>p:not(.focus-kicker){max-width:690px;margin:24px 0 31px;color:var(--cr-muted);font-size:18px;line-height:2.05}.careers-human__hero-copy>div{display:flex;flex-wrap:wrap;align-items:center;gap:24px}.careers-human__hero-copy>div>a:not(.focus-button){color:var(--cr-green);font-size:11px;font-weight:900}.careers-human__hero-media{position:relative;min-height:712px;overflow:hidden}.careers-human__hero-media:after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 53%,rgba(18,29,24,.78));content:""}.careers-human__hero-media img{width:100%;height:100%;object-fit:cover}.careers-human__hero-media>div{position:absolute;z-index:1;right:clamp(25px,5vw,65px);bottom:48px;left:clamp(25px,5vw,65px);padding-top:20px;border-top:1px solid rgba(255,255,255,.5);color:#fff}.careers-human__hero-media strong{display:block;font-size:19px}.careers-human__hero-media span{display:block;margin-top:8px;color:rgba(255,255,255,.72);font-size:12px;line-height:1.9}
.careers-human__paths{padding:clamp(90px,11vw,145px) 0}.careers-human__paths>.borsa-shell{display:grid;grid-template-columns:1fr 1fr}.careers-human__paths article{display:flex;min-height:430px;align-items:flex-start;flex-direction:column;padding:clamp(35px,5vw,65px);border:1px solid rgba(24,35,31,.15)}.careers-human__paths article>span{color:var(--cr-red);font-size:11px;font-weight:900}.careers-human__paths h2{margin:65px 0 15px;font-size:clamp(30px,3.5vw,46px);line-height:1.55}.careers-human__paths p{max-width:500px;margin:0;color:var(--cr-muted);font-size:13px;line-height:2}.careers-human__paths article>a{margin-top:auto;color:var(--cr-green);font-size:11px;font-weight:900}.careers-human__paths-featured{border-color:#20312b!important;background:#20312b;color:#fff}.careers-human__paths-featured>span{color:#edce78!important}.careers-human__paths-featured p{color:rgba(255,255,255,.62)}.careers-human__paths-featured .focus-button{color:var(--cr-ink)}
.careers-human__values{padding:clamp(95px,12vw,160px) 0;background:#e9eee9}.careers-human__values>.borsa-shell>div:first-child{display:grid;grid-template-columns:.35fr 1.65fr;gap:60px;margin-bottom:60px}.careers-human__values h2{max-width:900px;margin:0;font-size:clamp(39px,4.7vw,64px);line-height:1.5}.careers-human__value-grid{display:grid;grid-template-columns:repeat(3,1fr);border-block:1px solid rgba(24,35,31,.15)}.careers-human__value-grid article{min-height:280px;padding:36px;border-inline-start:1px solid rgba(24,35,31,.15)}.careers-human__value-grid article:first-child{border:0}.careers-human__value-grid span{color:var(--cr-red);font-size:10px;font-weight:900}.careers-human__value-grid h3{margin:55px 0 12px;font-size:24px}.careers-human__value-grid p{color:var(--cr-muted);font-size:12px;line-height:2}
.careers-human__openings{padding:clamp(100px,12vw,165px) 0}.careers-human__section-head{display:grid;grid-template-columns:1.25fr .75fr;gap:70px;align-items:end;margin-bottom:55px}.careers-human__section-head h2{margin:0;font-size:clamp(39px,4.7vw,64px);line-height:1.45}.careers-human__section-head>p{margin:0;color:var(--cr-muted);line-height:2}.careers-human__job-list{border-top:1px solid rgba(24,35,31,.15)}.careers-human__job-list>a{display:grid;grid-template-columns:1fr 300px 150px;gap:35px;align-items:center;min-height:190px;padding:30px 12px;border-bottom:1px solid rgba(24,35,31,.15);color:inherit;transition:.25s}.careers-human__job-list>a:hover{padding-inline:25px;background:#edf1ed}.careers-human__job-list span{color:var(--cr-green);font-size:10px;font-weight:900}.careers-human__job-list h3{margin:8px 0;font-size:25px}.careers-human__job-list p{margin:0;color:var(--cr-muted);font-size:12px}.careers-human__job-list ul{display:flex;flex-wrap:wrap;gap:7px;margin:0;padding:0;list-style:none}.careers-human__job-list li{padding:7px 10px;border-radius:20px;background:#e4ebe5;font-size:9px}.careers-human__job-list b{color:var(--cr-green);font-size:11px}.careers-human__empty{display:flex;align-items:center;justify-content:space-between;gap:60px;min-height:330px;padding:clamp(35px,6vw,70px);background:#f4efe5}.careers-human__empty>div{max-width:760px}.careers-human__empty>div>span{color:var(--cr-red);font-size:10px;font-weight:900}.careers-human__empty h3{margin:17px 0 10px;font-size:clamp(28px,3.5vw,45px);line-height:1.55}.careers-human__empty p{color:var(--cr-muted);line-height:2}
.careers-human__process{padding:clamp(95px,12vw,160px) 0;background:#20312b;color:#fff}.careers-human__process>.borsa-shell{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(65px,10vw,140px)}.careers-human__process .focus-kicker{color:#edce78}.careers-human__process h2{margin:0;font-size:clamp(38px,4.5vw,61px);line-height:1.5}.careers-human__process ol{margin:0;padding:0;border-top:1px solid rgba(255,255,255,.16);list-style:none}.careers-human__process li{display:grid;grid-template-columns:55px 1fr;gap:20px;padding:28px 0;border-bottom:1px solid rgba(255,255,255,.16)}.careers-human__process li>span{color:#edce78;font-size:11px;font-weight:900}.careers-human__process li p{display:grid;gap:6px;margin:0;color:rgba(255,255,255,.58);font-size:11px;line-height:1.9}.careers-human__process strong{color:#fff;font-size:17px}.careers-human__invite{padding:90px 0;background:var(--cr-red);color:#fff}.careers-human__invite>.borsa-shell{display:flex;align-items:center;justify-content:space-between;gap:55px}.careers-human__invite .focus-kicker{color:#ffe69b}.careers-human__invite h2{margin:0;font-size:clamp(34px,4vw,55px);line-height:1.5}.careers-human__invite>.borsa-shell>div:last-child{display:flex;align-items:center;gap:25px}.careers-human__invite a:not(.focus-button){color:#fff;font-size:11px;font-weight:900}
@media(max-width:1000px){.careers-human__hero{grid-template-columns:1fr}.careers-human__hero-media{min-height:630px}.careers-human__paths>.borsa-shell,.careers-human__values>.borsa-shell>div:first-child,.careers-human__section-head,.careers-human__process>.borsa-shell{grid-template-columns:1fr}.careers-human__value-grid{grid-template-columns:1fr}.careers-human__value-grid article{min-height:210px;border-top:1px solid rgba(24,35,31,.15);border-inline-start:0}.careers-human__job-list>a{grid-template-columns:1fr}.careers-human__invite>.borsa-shell{align-items:flex-start;flex-direction:column}}
@media(max-width:700px){.careers-human .borsa-shell{width:min(100% - 32px,1200px)}.careers-human__hero{padding-top:70px}.careers-human__hero-copy{padding:58px 24px 68px}.careers-human__hero h1{font-size:clamp(41px,12vw,56px)}.careers-human__hero-copy>div{align-items:flex-start;flex-direction:column}.careers-human__hero-copy .focus-button{width:100%}.careers-human__hero-media{min-height:485px}.careers-human__paths{padding:0}.careers-human__paths>.borsa-shell{width:100%}.careers-human__paths article{min-height:390px;border-inline:0}.careers-human__empty{align-items:stretch;flex-direction:column}.careers-human__empty .focus-button{width:100%}.careers-human__invite>.borsa-shell>div:last-child{width:100%;align-items:flex-start;flex-direction:column}.careers-human__invite .focus-button{width:100%}}

.analytics-consent{position:fixed;z-index:1000;right:20px;bottom:20px;left:20px;display:flex;max-width:900px;align-items:center;justify-content:space-between;gap:24px;margin-inline:auto;padding:20px 22px;border:1px solid rgba(255,255,255,.16);background:#18231f;color:#fff;box-shadow:0 22px 70px rgba(0,0,0,.24)}.analytics-consent[hidden]{display:none}.analytics-consent strong{display:block;margin-bottom:5px;font-size:15px}.analytics-consent p{max-width:650px;margin:0;color:rgba(255,255,255,.7);font-size:12px;line-height:1.9}.analytics-consent__actions{display:flex;flex:0 0 auto;gap:8px}.analytics-consent button{min-height:42px;padding:0 17px;border:1px solid rgba(255,255,255,.35);background:transparent;color:#fff;font:inherit;font-size:11px;font-weight:850;cursor:pointer}.analytics-consent button[data-analytics-accept]{border-color:#bd2d38;background:#bd2d38}.analytics-consent button:focus-visible{outline:3px solid rgba(237,206,120,.65);outline-offset:2px}@media(max-width:700px){.analytics-consent{align-items:stretch;flex-direction:column;gap:16px}.analytics-consent__actions{display:grid;grid-template-columns:1fr 1fr}.analytics-consent button{width:100%}}

/* Renewed careers system */
.focus-button--outline{display:inline-flex;min-height:52px;align-items:center;justify-content:center;padding:0 22px;border:1px solid currentColor;color:#3f715c;font-size:11px;font-weight:900}
.job-human--renewed .job-human__breadcrumb{display:flex;width:min(1200px,calc(100% - 64px));align-items:center;gap:10px;margin:0 auto;padding-top:112px;color:#77817c;font-size:10px}.job-human__breadcrumb a{color:#3f715c;font-weight:850}.job-human__breadcrumb b{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.job-human--renewed .job-hero{min-height:540px;padding-block:55px 90px}.job-human--renewed .job-hero h1{font-size:clamp(52px,7vw,92px)}.job-human--renewed .job-hero aside .focus-button{width:100%;margin-top:24px}.job-human__facts{display:grid;width:min(1200px,calc(100% - 64px));grid-template-columns:repeat(4,1fr);margin:0 auto;border-block:1px solid rgba(24,35,31,.14)}.job-human__facts>div{min-height:125px;padding:28px;border-inline-start:1px solid rgba(24,35,31,.14)}.job-human__facts>div:first-child{border:0}.job-human__facts span{display:block;color:#68736e;font-size:10px}.job-human__facts strong{display:block;margin-top:15px;font-size:18px}.job-human--renewed .job-description section{padding-bottom:85px}.job-human--renewed .job-description h2{margin:10px 0 22px;font-size:clamp(32px,4vw,48px)}.job-human__fit{margin-bottom:80px;padding:45px!important;border-right:4px solid #3f715c;background:#e5ece7}.job-human__fit>p:not(.focus-kicker){color:#59645f}.job-human__numbered{margin:35px 0 0;padding:0;border-top:1px solid rgba(24,35,31,.14);list-style:none}.job-human__numbered li{display:grid;grid-template-columns:65px 1fr;gap:15px;padding:24px 0!important}.job-human__numbered li span{color:#bd2d38;font-size:10px;font-weight:900}.job-human__numbered li p{margin:0}.job-human--renewed .job-process h2{margin:10px 0 22px;font-size:26px}.job-human--renewed .job-process ol{padding:0;list-style:none}.job-human--renewed .job-process li{display:grid;grid-template-columns:38px 1fr;gap:10px;padding:15px 0;border-bottom:1px solid rgba(24,35,31,.1)}.job-human--renewed .job-process li span{color:#bd2d38;font-size:10px}.job-human--renewed .job-process li b{font-size:12px}.job-human--renewed .job-process .focus-button{width:100%;margin-top:22px}.job-human--renewed .job-cta{display:flex;align-items:center;justify-content:space-between;gap:45px}.job-human--renewed .job-cta h2{margin:5px 0;font-size:clamp(32px,4vw,48px)}.job-human--renewed .job-cta p{color:#59645f}
.candidate-human--renewed .candidate-header{min-height:310px;padding-top:125px;padding-bottom:55px}.candidate-human--renewed .candidate-header h1{font-size:clamp(48px,6vw,76px)}.candidate-human--renewed .candidate-header>div:first-child>p:last-child{max-width:650px;color:#68736e;line-height:2}.candidate-header__account{display:flex;align-items:flex-end;flex-direction:column;gap:13px}.candidate-header__account>span{color:#68736e;font-size:12px}.candidate-logout{padding:8px 0;border:0;border-bottom:1px solid #bd2d38;background:transparent;color:#9e2831;font:inherit;font-size:10px;font-weight:900;cursor:pointer}.candidate-summary{display:grid;width:min(1200px,calc(100% - 64px));grid-template-columns:1.1fr .9fr .9fr;margin:55px auto 0;background:#20312b;color:#fff}.candidate-summary>div{min-height:180px;padding:32px;border-inline-start:1px solid rgba(255,255,255,.14)}.candidate-summary>div:first-child{border:0}.candidate-summary span{display:block;color:#e8c46c;font-size:10px;font-weight:900}.candidate-summary strong{display:block;margin:22px 0 8px;font-size:27px}.candidate-summary small{color:rgba(255,255,255,.58);font-size:10px;line-height:1.8}.candidate-completion>div{height:5px;margin:10px 0 15px;background:rgba(255,255,255,.13)}.candidate-completion i{display:block;height:100%;background:#e8c46c}.candidate-human--renewed .candidate-layout{grid-template-columns:1.15fr .85fr;padding-top:45px}.candidate-human--renewed .candidate-form,.candidate-human--renewed .candidate-applications{padding:0;background:transparent;box-shadow:none}.candidate-form>header{display:grid;grid-template-columns:1fr 1fr;gap:30px;align-items:end;margin-bottom:30px}.candidate-form>header h2,.candidate-applications>header h2{margin:5px 0;font-size:36px}.candidate-form>header>p{margin:0;color:#68736e;font-size:11px;line-height:2}.candidate-form>form{padding:38px;background:#fff;box-shadow:0 20px 55px rgba(24,35,31,.06)}.candidate-human--renewed .candidate-applications>header{margin-bottom:30px}.candidate-human--renewed .candidate-applications>div>article{margin-bottom:16px;padding:27px;background:#fff;box-shadow:0 16px 45px rgba(24,35,31,.055)}.candidate-applications article>div{display:grid;gap:8px}.candidate-applications article>div>span{color:#3f715c;font-size:10px;font-weight:900}.candidate-applications article>div>a{color:#18231f;font-size:20px;font-weight:900}.candidate-applications article>div>small{color:#68736e;font-size:9px}.candidate-applications article>ol{display:grid;gap:0;margin:25px 0 0;padding:0;border-top:1px solid rgba(24,35,31,.12);list-style:none}.candidate-applications article>ol li{display:grid;grid-template-columns:18px 1fr;gap:8px;padding-top:12px;color:#9aa19e;font-size:9px}.candidate-applications article>ol i{width:8px;height:8px;margin-top:3px;border:1px solid #aeb5b1;border-radius:50%}.candidate-applications article>ol .is-complete{color:#3f715c;font-weight:850}.candidate-applications article>ol .is-complete i{border-color:#3f715c;background:#3f715c}.candidate-empty{padding:35px!important;background:#f4efe5!important;box-shadow:none!important}.candidate-empty>span{color:#bd2d38;font-size:10px;font-weight:900}.candidate-empty h3{margin:35px 0 12px;font-size:27px;line-height:1.6}.candidate-empty p{color:#68736e;font-size:11px;line-height:2}.candidate-empty .focus-button{margin-top:25px}
.auth-human__progress{display:grid;grid-template-columns:1fr 1fr;margin-bottom:55px;border-block:1px solid rgba(24,35,31,.13)}.auth-human__progress span{display:flex;min-height:64px;align-items:center;gap:10px;color:#929a96;font-size:10px;font-weight:850}.auth-human__progress span+span{border-right:1px solid rgba(24,35,31,.13);padding-right:20px}.auth-human__progress i{display:grid;width:28px;height:28px;place-items:center;border:1px solid currentColor;border-radius:50%;font-style:normal}.auth-human__progress .is-active{color:#bd2d38}.auth-human__progress .is-complete{color:#3f715c}.auth-human .focus-button{width:100%;justify-content:space-between}.auth-human__otp{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:18px}.auth-human__otp .auth-human__trust{margin:0}.career-auth--logged-out .focus-button{width:100%}.apply-human__save-state{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:12px;padding:13px 18px;background:#20312b;color:#fff;font-size:10px}.apply-human__save-state span{color:rgba(255,255,255,.72)}.apply-human__save-state b{color:#e8c46c}.apply-human__error-summary{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:12px;padding:17px 20px;border-right:4px solid #bd2d38;background:#fff0f0;color:#8e2029}.apply-human__error-summary strong{font-size:12px}.apply-human__error-summary span{font-size:10px}
@media(max-width:900px){.job-human__facts{grid-template-columns:1fr 1fr}.candidate-summary{grid-template-columns:1fr}.candidate-summary>div{min-height:140px;border-top:1px solid rgba(255,255,255,.14);border-inline-start:0}.candidate-summary>div:first-child{border-top:0}.candidate-form>header{grid-template-columns:1fr}.candidate-header__account{align-items:flex-start}.candidate-human--renewed .candidate-layout{grid-template-columns:1fr}.candidate-human--renewed .candidate-applications{order:-1}}
@media(max-width:650px){.job-human--renewed .job-human__breadcrumb,.job-human__facts,.candidate-summary{width:min(100% - 32px,1200px)}.job-human--renewed .job-human__breadcrumb{padding-top:95px}.job-human__facts{grid-template-columns:1fr}.job-human__facts>div{min-height:95px;border-top:1px solid rgba(24,35,31,.14);border-inline-start:0}.job-human__facts>div:first-child{border-top:0}.job-human__fit{padding:28px 22px!important}.job-human--renewed .job-cta{align-items:flex-start;flex-direction:column}.candidate-human--renewed .candidate-header{min-height:340px;padding-top:110px}.candidate-human--renewed .candidate-header h1{font-size:43px}.candidate-summary{margin-top:25px}.candidate-form>form{padding:27px 18px}.auth-human__progress{margin-bottom:38px}.apply-human__steps{display:none}.apply-human__save-state{position:sticky;z-index:4;top:68px;margin:0}.apply-human__error-summary{align-items:flex-start;flex-direction:column;margin:0}.career-auth__actions{grid-template-columns:1fr}}
.auth-human .focus-button--solid,.career-auth--logged-out .focus-button--solid{background:#bd2d38;color:#fff}.job-human--renewed .job-hero aside .focus-button--light{background:#fff;color:#18231f}.job-human--renewed .job-process .focus-button--solid,.job-human--renewed .job-cta .focus-button--solid,.candidate-human--renewed .focus-button--solid{background:#bd2d38;color:#fff}
