@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/onest-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/onest-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2190-21FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-greek.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-vietnamese.woff2") format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2190-21FF;
}

:root {
  --ink: #121013;
  --paper: #f8f7fa;
  --white: #ffffff;
  --purple: #4b0059;
  --purple-bright: #7b158d;
  --lilac: #eee7f2;
  --line: #dcd6df;
  --muted: #6d6870;
  --green: #25a775;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Onest", Arial, sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.82fr);
  gap: 18px;
  min-height: 100vh;
  padding: 20px 2vw 2vw;
}

html.is-embedded .hero {
  min-height: 0;
}

.hero-copy,
.hero-visual {
  border-radius: 28px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 110px);
  background: var(--white);
}

.eyebrow,
.section-kicker,
.closing-label,
.note-label {
  color: var(--purple);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 28px 0;
  font-size: clamp(58px, 7.2vw, 116px);
  font-weight: 450;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero h1 span {
  color: var(--purple);
}

.hero-lead {
  max-width: 720px;
  margin: 0;
  color: #444047;
  font-size: clamp(19px, 1.65vw, 28px);
  line-height: 1.38;
}

.scroll-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(430px, 100%);
  margin-top: 54px;
  padding: 18px 24px;
  color: var(--white);
  font-weight: 700;
  background: var(--purple);
  border-radius: 999px;
}

.scroll-link span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--purple);
  background: var(--white);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: clamp(38px, 4.5vw, 76px);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(232, 113, 255, 0.5), transparent 24%),
    radial-gradient(circle at 16% 90%, rgba(145, 48, 173, 0.65), transparent 32%),
    linear-gradient(145deg, #2d0036 0%, #580064 58%, #25002b 100%);
}

.visual-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.leader-number {
  position: relative;
  z-index: 2;
  margin-top: 8vh;
  font-family: "Manrope", sans-serif;
  font-size: clamp(90px, 11vw, 178px);
  font-weight: 500;
  letter-spacing: -.08em;
  line-height: .9;
}

html.is-embedded .leader-number {
  margin-top: 48px;
}

.leader-label {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
}

.ranking {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,.3);
}

.ranking-row {
  display: grid;
  grid-template-columns: 30px 145px 1fr 56px;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-size: 12px;
}

.rank { color: rgba(255,255,255,.45); }
.bank { font-weight: 650; }
.ranking-row strong { text-align: right; }

.bar {
  position: relative;
  display: block;
  height: 3px;
  background: rgba(255,255,255,.18);
}

.bar::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--bar) * 3.5);
  content: "";
  background: #f2b7ff;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
}

.orbit-one {
  right: -180px;
  bottom: -120px;
  width: 560px;
  height: 560px;
}

.orbit-two {
  right: -95px;
  bottom: -35px;
  width: 390px;
  height: 390px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 2vw;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}

.metrics div {
  padding: clamp(32px, 4vw, 66px);
}

.metrics div + div {
  border-left: 1px solid var(--line);
}

.metrics span {
  color: var(--purple);
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 450;
  letter-spacing: -.065em;
}

.metrics p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section,
.article-intro {
  padding: clamp(90px, 12vw, 180px) 6vw;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(150px, .32fr) minmax(0, 1fr);
  gap: 6vw;
  max-width: 1440px;
  margin: 0 auto;
}

.article-intro {
  min-height: 75vh;
  align-items: start;
}

html.is-embedded .article-intro {
  min-height: 0;
}

.lead-paragraph {
  max-width: 1050px;
  margin: 0 0 64px;
  font-size: clamp(38px, 5vw, 76px);
  letter-spacing: -.05em;
  line-height: 1.06;
}

.two-columns,
.body-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4vw;
}

.two-columns p,
.body-copy p {
  margin: 0;
  color: #454047;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.62;
}

h2 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 450;
  letter-spacing: -.06em;
  line-height: .98;
}

.section-deck {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 22px;
  line-height: 1.5;
}

.purple-section {
  color: var(--white);
  background: var(--purple);
}

.light {
  color: #dab7e2;
}

.wide-figure {
  max-width: 1440px;
  margin: 86px auto 0;
}

.wide-figure img {
  width: 100%;
  border-radius: 24px;
}

.wide-figure figcaption {
  margin-top: 13px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.callout-grid {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 6vw;
  align-items: end;
  max-width: 1240px;
  margin: 90px auto 0;
}

.big-callout {
  font-family: "Manrope", sans-serif;
  font-size: clamp(100px, 16vw, 240px);
  letter-spacing: -.09em;
  line-height: .78;
}

.callout-grid p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 20px;
  line-height: 1.55;
}

.image-gallery {
  display: grid;
  gap: 18px;
  max-width: 1440px;
  margin: 80px auto 0;
}

.image-gallery.four {
  grid-template-columns: repeat(2, 1fr);
}

.image-gallery.two {
  grid-template-columns: repeat(2, 1fr);
}

.image-gallery figure {
  margin: 0;
}

.image-gallery img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 16px 50px rgba(49, 21, 56, .08);
}

.source {
  max-width: 1440px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.feature-note {
  max-width: 1280px;
  margin: 100px auto 0;
  padding: clamp(32px, 5vw, 78px);
  background: var(--lilac);
  border-radius: 28px;
}

.feature-note > p {
  max-width: 1050px;
  margin: 24px 0 0;
  font-size: clamp(24px, 3vw, 44px);
  letter-spacing: -.035em;
  line-height: 1.25;
}

.image-gallery.compact {
  margin-top: 54px;
}

.pale-section {
  background: var(--lilac);
}

.pullquote {
  margin: 90px 0 0;
  padding: 36px 0 0;
  color: var(--purple);
  font-size: clamp(34px, 5vw, 68px);
  letter-spacing: -.05em;
  line-height: 1.08;
  border-top: 2px solid var(--purple);
}

.section-head {
  max-width: 1440px;
  margin: 0 auto 76px;
}

.section-head .section-kicker {
  margin-bottom: 30px;
}

.compare-table {
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}

.compare-row {
  display: grid;
  grid-template-columns: .9fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.compare-row > div {
  min-width: 0;
  padding: 25px 20px;
  font-size: 17px;
  line-height: 1.45;
}

.compare-row > div:first-child {
  padding-left: 0;
  font-weight: 650;
}

.compare-row > div + div {
  border-left: 1px solid var(--line);
}

.compare-header > div {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.table-summary {
  max-width: 850px;
  margin: 58px auto 0;
  color: var(--purple);
  font-size: clamp(24px, 3vw, 42px);
  text-align: center;
  line-height: 1.25;
}

.dark-section {
  color: var(--white);
  background: #141015;
}

.stat-story {
  display: grid;
  grid-template-columns: .62fr 1fr;
  gap: 4vw;
  align-items: end;
  margin: 70px 0;
}

.stat-story strong {
  color: #e6b9ef;
  font-family: "Manrope", sans-serif;
  font-size: clamp(96px, 14vw, 220px);
  font-weight: 450;
  letter-spacing: -.09em;
  line-height: .8;
}

.stat-story span {
  padding-bottom: 12px;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.45;
}

.body-copy.single {
  display: block;
}

.dark-section .body-copy p {
  color: rgba(255,255,255,.76);
}

.finance-intro {
  max-width: 1440px;
  margin: 0 auto 66px;
}

.data-table-wrap {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

th,
td {
  padding: 22px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

td {
  font-size: 15px;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody td:first-child {
  font-weight: 700;
}

.growth {
  color: var(--green);
  font-weight: 700;
}

.source-note {
  max-width: 920px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.takeaways {
  background: var(--white);
}

.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.takeaway-grid article {
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.takeaway-grid article > span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
}

.takeaway-grid h3 {
  max-width: 320px;
  margin: 74px 0 18px;
  font-size: 28px;
  font-weight: 550;
  letter-spacing: -.03em;
  line-height: 1.12;
}

.takeaway-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.closing {
  padding: clamp(80px, 12vw, 170px) 8vw;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 117, 238, .46), transparent 24%),
    linear-gradient(145deg, #33003d, #5a0067);
}

.closing > p {
  max-width: 980px;
  margin: 36px 0 80px;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.55;
}

.closing h2 {
  max-width: 1220px;
}

.closing-label {
  color: #e6b9ef;
}

.closing-actions {
  display: flex;
  gap: 14px;
  margin-top: 76px;
}

.closing-actions a {
  padding: 17px 25px;
  color: var(--purple);
  font-weight: 700;
  background: var(--white);
  border-radius: 999px;
}

.closing-actions a.secondary {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,.5);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 720px;
  }
  .content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stat-story {
    grid-template-columns: 1fr;
  }
  .takeaway-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding: 10px;
  }
  .hero-copy {
    min-height: 100svh;
    padding: 42px 24px;
  }
  html.is-embedded .hero-copy {
    min-height: 0;
  }
  .hero h1 {
    font-size: clamp(49px, 15vw, 72px);
  }
  .hero-visual {
    min-height: 650px;
    padding: 30px 22px;
  }
  .ranking-row {
    grid-template-columns: 25px 110px 1fr 45px;
    gap: 7px;
    font-size: 10px;
  }
  .metrics {
    grid-template-columns: 1fr;
    margin: 0 10px;
  }
  .metrics div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .section,
  .article-intro {
    padding: 82px 22px;
  }
  .two-columns,
  .body-copy {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .lead-paragraph {
    font-size: 40px;
  }
  h2 {
    font-size: 48px;
  }
  .callout-grid {
    grid-template-columns: 1fr;
  }
  .image-gallery.four,
  .image-gallery.two {
    grid-template-columns: 1fr;
  }
  .feature-note {
    padding: 28px 20px;
  }
  .compare-header {
    display: none;
  }
  .compare-row {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
  .compare-row > div {
    padding: 10px 0;
    border: 0 !important;
  }
  .compare-row > div[data-label]::before {
    display: block;
    margin-bottom: 4px;
    color: var(--purple);
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .takeaway-grid {
    grid-template-columns: 1fr;
  }
  .takeaway-grid article {
    min-height: 280px;
  }
  .closing {
    padding: 90px 24px;
  }
  .closing-actions {
    flex-direction: column;
  }
  .closing-actions a {
    text-align: center;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-visual {
    animation: reveal 750ms ease both;
  }
  .hero-copy {
    animation: reveal 650ms ease both;
  }
  @keyframes reveal {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
