*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --black: #0a0a0a;
  --white: #f5f0eb;
  --orange: #e8451e;
  --orange-hover: #ff5a30;
  --nav-bg: rgba(18, 18, 18, 0.55);
  --lime: #c5f135;
}
html,
body {
  min-height: 100%;
  background: var(--black);
  color: var(--white);
  font-family:
    Radio Canada Big,
    sans-serif;
  overflow-x: hidden;
}
.eastbank-inner {
  background: var(--white);
  color: #0a0a0a;
}
.eb-inner-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 2rem 6rem;
  color: var(--black);
  font-family:
    Radio Canada Big,
    sans-serif;
}
.color-flood {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  pointer-events: none;
  background-color: #f5f0eb;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}
nav {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 14px 20px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 60px;
  box-shadow: 0 8px 40px #00000080;
  transition: box-shadow 0.3s ease;
  animation: fadeIn 0.6s ease both;
  animation-delay: 0.1s;
}
nav:hover {
  box-shadow: 0 12px 60px #000000b3;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon,
.nav-logo-icon img {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-text {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links li {
  position: relative;
}
.nav-links li:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 18px;
  height: 9px;
  background: var(--orange);
  border-radius: 0 0 9px 9px;
  translate: -50% -150%;
  scale: 1 0;
  transform-origin: bottom center;
  transition:
    scale 0.25s ease,
    opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
}
.nav-links li.active:before {
  scale: 1 1;
  opacity: 1;
}
.nav-links a {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #f5f0ebb3;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 30px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--white);
  background: #ffffff12;
}
.nav-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--orange);
  color: #fff !important;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 40px;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--orange-hover) !important;
  transform: translate(2px);
}
.nav-cta svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
  position: relative;
  overflow: hidden;
}
.hero .color-flood {
  background-color: var(--white);
}
.hero-watermark {
  position: absolute;
  bottom: -8.5%;
  left: -2%;
  right: -2%;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(120px, 25vw, 460px);
  color: #f5f0eb06;
  white-space: nowrap;
  letter-spacing: -0.02em;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  line-height: 1;
  animation: fadeIn 1.4s ease both;
  animation-delay: 0.8s;
}
.hero-divider {
  position: relative;
  height: 1px;
  margin: 25px 0 35px;
  background: #f5f0eb2e;
}
.hero-headline {
  margin-top: auto;
  padding-top: 140px;
  padding-bottom: 32px;
  line-height: 0.9;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 2;
  visibility: visible;
}
.hero-headline span,
.hero-divider,
.hero-bottom {
  visibility: hidden;
}
.headline-line-plain {
  display: block;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(44px, 9.5vw, 114px);
  color: var(--white);
}
.headline-line-accent {
  display: block;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 9.5vw, 114px);
  color: var(--orange);
  position: relative;
  width: fit-content;
}
.headline-line-accent:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 12px;
  background-image: url(/img/marker_1.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.85;
}
.hero-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 160px;
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 520px;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: #f5f0eb8c;
}
.hero-scroll-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease;
}
.hero-scroll-link:hover {
  gap: 16px;
}
.hero-scroll-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.problem {
  min-height: 100vh;
  background: var(--white);
  color: #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px;
  position: relative;
}
.problem .color-flood {
  background-color: var(--black);
}
.problem-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.problem-eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}
.problem-eyebrow-label {
  font-family:
    DM Mono,
    monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.problem-headline {
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
  width: 55vw;
  max-width: 900px;
}
.problem-headline-line {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 7.5vw, 114px);
  color: #0a0a0a;
}
.problem-headline-accent {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(52px, 7.5vw, 118px);
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.problem-headline-accent:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 12px;
  background-image: url(/img/marker_2.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.problem-cards {
  display: flex;
  gap: 24px;
}
.problem-card {
  background: #ede9e1;
  border-radius: 20px;
  padding: 36px 32px 40px;
  position: relative;
  transform-origin: center bottom;
  will-change: transform, opacity;
}
.card-number {
  font-family:
    DM Mono,
    monospace;
  font-size: 11px;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  display: block;
}
.card-headline {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.6vw, 24px);
  color: #0a0a0a;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.card-body {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.45;
  color: #0a0a0a80;
}
.solutions {
  background: var(--black);
  color: var(--white);
  padding: 120px 80px 80px;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  margin-bottom: -1px;
}
.solutions .color-flood {
  background-color: var(--orange);
}
.solutions-header-wrapper {
  text-align: center;
  width: 100%;
  z-index: 2;
}
.solutions-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  justify-content: center;
}
.solutions-eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}
.solutions-eyebrow-label {
  font-family:
    DM Mono,
    monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.solutions-headline {
  text-align: center;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 100px;
}
.solutions-headline-row {
  display: block;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 7.5vw, 114px);
  color: var(--white);
}
.solutions-headline-accent {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.solutions-headline-accent:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 12px;
  background-image: url(/img/marker_3.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.solutions-cards {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.solutions-card {
  width: 380px;
  background: #12121280;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 36px 32px 40px;
  will-change: transform;
}
.sc-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-icon svg {
  width: 100%;
  height: 100%;
}
.sc-title {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.sc-body {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.45;
  color: #f5f0eb73;
  margin-bottom: 32px;
}
.solutions-statement {
  width: 100%;
  max-width: 960px;
  text-align: center;
  margin: 150px auto 50px;
}
.solutions-statement-headline {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}
.solutions-statement-sub {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 48px);
  color: var(--orange);
  letter-spacing: -0.01em;
}
.sc-tags {
  display: inline-block;
  font-family:
    DM Mono,
    monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(232, 69, 30, 0.4);
  border-radius: 40px;
  padding: 6px 14px;
}
.transparency-wrapper {
  position: relative;
  z-index: 10;
}
.transparency {
  background: var(--orange);
  color: #0a0a0a;
  padding: 120px 80px 160px;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  z-index: 10;
  margin-bottom: -1px;
}
.transparency .color-flood {
  background-color: var(--white);
}
.transparency-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 140px;
  width: 100%;
}
.transparency-right {
  padding-top: 50px;
}
.transparency-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.transparency-eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: #0a0a0a;
  flex-shrink: 0;
}
.transparency-eyebrow-label {
  font-family:
    DM Mono,
    monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a0a0a;
}
.transparency-headline {
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.transparency-headline-plain {
  display: block;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 7.5vw, 136px);
  color: #0a0a0a;
}
.transparency-headline-accent {
  display: block;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 7.5vw, 136px);
  color: #0a0a0a;
  position: relative;
  width: fit-content;
}
.transparency-headline-accent:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 15px;
  background-image: url(/img/marker_4.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.transparency-body {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--black);
  max-width: 480px;
  margin-bottom: 40px;
}
.transparency-quote {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 1.4vw, 24px);
  line-height: 1.55;
  color: var(--black);
  max-width: 480px;
}
.transparency-breakdown-label {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #0a0a0a;
  margin-bottom: 18px;
}
.transparency-bar {
  display: flex;
  height: 52px;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 0;
}
.tbar-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tbar-segment span {
  font-family:
    DM Mono,
    monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tbar-media {
  flex: 4;
  background: #1e3a2e;
}
.tbar-media span {
  color: #ffffffbf;
}
.tbar-platform {
  flex: 2;
  background: #1a1a1a;
}
.tbar-platform span {
  color: #ffffffa6;
}
.tbar-fee {
  flex: 1.4;
  background: #f0ece3;
}
.tbar-fee span {
  color: #0a0a0aa6;
}
.tbar-margin {
  flex: 1.2;
  background: var(--lime);
}
.tbar-margin span {
  color: #0a0a0abf;
}
.transparency-list {
  list-style: none;
  margin-top: 0;
}
.tlist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
  background-color: transparent;
}
.tlist-item:first-child {
  border-top: 1px solid rgba(10, 10, 10, 0.15);
  margin-top: 32px;
}
.tlist-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}
.dot-media {
  background: #1e3a2e;
}
.dot-platform {
  background: #1a1a1a;
}
.dot-fee {
  background: #f0ece3;
}
.dot-margin {
  background: var(--lime);
}
.tlist-title {
  display: block;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #0a0a0a;
  margin-bottom: 5px;
}
.tlist-body {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--black);
}
.transparency-statement {
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: auto;
}
.transparency-statement-line {
  display: block;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0a0a0a;
}
.transparency-statement-accent {
  display: block;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--lime);
}
.retail {
  min-height: 100vh;
  background: var(--white);
  color: #0a0a0a;
  padding: 120px 80px;
  position: relative;
}
.retail .color-flood {
  background-color: var(--black);
}
.retail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.retail-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.retail-eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}
.retail-eyebrow-label {
  font-family:
    DM Mono,
    monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.retail-headline {
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.retail-headline-plain {
  display: block;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 7.5vw, 114px);
  color: #0a0a0a;
}
.retail-headline-accent {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.retail-headline-accent:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 18px;
  background-image: url(/img/marker_3.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.retail-body {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: #0a0a0a99;
  max-width: 860px;
}
.retail-right {
  padding-top: 50px;
}
.retail-right-body {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.7;
  color: #0a0a0a73;
}
.retail-logos-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 80%;
}
.retail-logos-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.experience {
  background: var(--black);
  color: var(--white);
  padding: 120px 80px 140px;
  position: relative;
  overflow: hidden;
}
.experience-watermark {
  position: absolute;
  top: -4%;
  right: 9%;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(660px, 65vw, 1660px);
  color: #f5f0eb06;
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.experience-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.experience-eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}
.experience-eyebrow-label {
  font-family:
    DM Mono,
    monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.experience-headline {
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.experience-headline-accent {
  display: block;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(44px, 5.5vw, 114px);
  color: var(--orange);
}
.experience-headline-plain {
  display: block;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 8.5vw, 114px);
  color: var(--white);
}
.experience-body {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: #f5f0eb80;
  max-width: 680px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.experience-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
.experience-stat {
  background: #121212bf;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat-number {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-white {
  color: var(--white);
}
.stat-orange,
.stat-white span {
  color: var(--orange);
}
.stat-dim {
  color: #f5f0eb33;
}
.stat-lime {
  color: var(--lime);
}
.stat-label {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: #f5f0eb66;
}
.experience-timeline {
  position: relative;
  z-index: 2;
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-bottom: 32px;
}
.timeline-track:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--orange);
  opacity: 0.35;
  transform: translateY(-50%);
}
.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: var(--black);
  position: relative;
  z-index: 1;
}
.timeline-entries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.timeline-date {
  display: block;
  font-family:
    DM Mono,
    monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f0eb59;
  margin-bottom: 14px;
}
.timeline-headline {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.3;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.timeline-body {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #f5f0eb66;
}
.cta-section {
  background: #f8f5ef;
  color: #0a0a0a;
  padding: 120px 80px;
}
.cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.cta-eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}
.cta-eyebrow-label {
  font-family:
    DM Mono,
    monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.cta-headline {
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 80px;
}
.cta-headline-plain {
  display: block;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(50px, 8vw, 114px);
  color: #0a0a0a;
}
.cta-headline-accent {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.cta-headline-accent:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 18px;
  background-image: url(/img/marker_3.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cta-card {
  background: #ebe7de;
  border-radius: 24px;
  padding: 44px 44px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cta-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.cta-card-eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}
.cta-card-eyebrow-label {
  font-family:
    DM Mono,
    monospace;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.cta-card-headline {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(25px, 1.7vw, 32px);
  color: #0a0a0a;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-card-body {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: #0a0a0a8c;
  margin-bottom: 14px;
}
.cta-card-body:last-of-type {
  margin-bottom: 40px;
}
.cta-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--orange);
  color: #fff;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 40px;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
  align-self: flex-start;
  margin-top: auto;
}
.cta-card-btn:hover {
  background: var(--orange-hover);
  transform: translate(2px);
}
.cta-card-btn svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.final-cta {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 80px;
}
.final-cta-inner {
  text-align: center;
  max-width: 980px;
  width: 100%;
}
.final-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.final-eyebrow-line {
  width: 32px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}
.final-eyebrow-label {
  font-family:
    DM Mono,
    monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.final-headline {
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
}
.final-headline-row,
.final-headline-plain {
  display: block;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 700;
  font-size: clamp(50px, 9vw, 114px);
  color: var(--white);
}
.final-headline-accent {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.final-headline-accent:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12px;
  background-image: url(/img/marker_1.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.final-subtext {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #f5f0eb73;
  margin-bottom: 48px;
}
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--orange);
  color: #fff;
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 50px;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
}
.final-cta-btn:hover {
  background: var(--orange-hover);
  transform: translate(2px);
}
.final-cta-btn svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(245, 240, 235, 0.08);
  padding: 28px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #f5f0eb66;
  white-space: nowrap;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-link {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #f5f0eb66;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #f5f0eb33;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: var(--white);
}
.footer-copy {
  font-family:
    Radio Canada Big,
    sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #f5f0eb66;
  white-space: nowrap;
}

.pum-theme-glass {
  font-family: "Radio Canada Big", sans-serif;
}

.pum-theme-glass .pum-close {
  font-weight: 700 !important;
}

.pum-theme-glass .pum-container {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 25%;
  border-radius: 30px !important;
}

.pum-theme-glass .pum-container #wpforms-submit-54 {
  background-color: #e8451e !important;
  border-radius: 30px;
  padding: 12px 24px;
  font-weight: 600;
}

.pum-theme-glass .pum-container input,
.pum-theme-glass .pum-container textarea {
  border-radius: 20px !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border: none !important;
  color: #f5f0eb !important;
}

.pum-theme-glass .pum-container label,
.pum-theme-glass .pum-container legend {
  color: #f5f0eb !important;
}

.pum-theme-glass .pum-container input::placeholder,
.pum-theme-glass .pum-container textarea::placeholder {
  color: #f5f0eb;
  opacity: 0.8 !important;
}

.pum-theme-glass .pum-container input::-webkit-input-placeholder,
.pum-theme-glass .pum-container textarea::-webkit-input-placeholder {
  color: #f5f0eb !important;
  opacity: 0.8 !important;
}

.pum-theme-glass .pum-container input::-moz-placeholder,
.pum-theme-glass .pum-container textarea::-moz-placeholder {
  color: #f5f0eb;
  opacity: 0.8 !important;
}

.pum-theme-glass .pum-container input:-ms-input-placeholder,
.pum-theme-glass .pum-container textarea:-ms-input-placeholder {
  color: #f5f0eb;
  opacity: 0.8 !important;
}

@media (max-width: 768px) {
  nav {
    position: relative;
    left: 0;
    margin: 0 20px -50px;
    background: transparent;
    border: none;
    background-filter: none;
    box-shadow: none;
  }
  nav:hover {
    box-shadow: none;
  }
  .hero {
    padding: 0 28px;
  }
  .hero-headline span,
  .hero-divider,
  .hero-bottom {
    visibility: visible;
  }
  .hero-headline,
  .hero-copy {
    text-align: center;
  }
  .headline-line-accent {
    margin: auto;
  }
  .hero-watermark {
    bottom: -20px;
  }
  .nav-links {
    display: none;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 10px;
  }
  .hero-copy {
    font-size: 15px;
  }
  .problem {
    padding: 80px 28px;
  }
  .problem-headline {
    max-width: 400px;
  }
  .problem-cards {
    flex-direction: column;
  }
  .card-body {
    font-size: 15px;
  }
  .problem-card:nth-child(1),
  .problem-card:nth-child(2),
  .problem-card:nth-child(3) {
    transform: none;
  }
  .solutions {
    padding: 80px 28px 60px;
  }
  .solutions-cards {
    flex-direction: column;
    gap: 48px;
  }
  .solutions-card {
    width: 100%;
    background: #121212f2;
  }
  .sc-body {
    font-size: 15px;
  }
  .sc-1,
  .sc-2,
  .sc-3 {
    margin-left: 0;
    margin-right: 0;
  }
  .transparency {
    padding: 80px 28px 100px;
  }
  .transparency-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  .transparency-headline-plain {
    display: inline-block;
  }
  .transparency-body,
  .transparency-quote {
    max-width: 100%;
  }
  .transparency-body,
  .tlist-body {
    font-size: 15px;
  }
  .transparency-quote {
    text-align: center;
  }
  .transparency-right {
    border-top: 1px solid;
  }
  .transparency-breakdown-label,
  .tlist-title {
    font-size: 20px;
  }
  .tbar-segment span {
    display: none;
  }
  .retail {
    padding: 80px 28px;
  }
  .retail-eyebrow {
    justify-content: center;
  }
  .retail-headline {
    text-align: center;
  }
  .retail-grid {
    grid-template-columns: 1fr;
  }
  .retail-right {
    padding-top: 0;
  }
  .retail-body {
    max-width: 100%;
    font-size: 15px;
  }
  .experience {
    padding: 80px 28px 100px;
  }
  .experience-watermark {
    top: -4%;
    right: -19%;
  }
  .experience-body {
    font-size: 15px;
  }
  .experience-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-label {
    font-size: 15px;
  }
  .timeline-track,
  .timeline-entries {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
  .timeline-track {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 165px;
  }
  .timeline-track:before {
    transform: rotate(90deg) translate(70px, 330px);
    width: 670px;
  }
  .timeline-entries {
    padding-left: 20px;
  }
  .timeline-body {
    font-size: 15px;
  }
  .cta-section {
    padding: 80px 28px;
  }
  .cta-eyebrow {
    justify-content: center;
  }
  .cta-headline {
    text-align: center;
  }
  .cta-cards {
    grid-template-columns: 1fr;
  }
  .cta-card {
    padding: 36px 32px 40px;
  }
  .cta-card-body {
    font-size: 15px;
  }
  .final-cta {
    padding: 80px 28px;
  }
  .site-footer {
    padding: 24px 28px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-copy {
    width: 100%;
    text-align: center;
  }
}
