:root {
  /* Brand */
  --pink-100: #fef0ff;
  --pink-200: #fde6ff;
  --pink-500: #dd5afc;
  --pink-600: #d327fb;
  --pink-800: #450255;
  --pink-900: #1c0123;
  --pink-accent: #e26fff;

  /* Neutrals */
  --black: #000000;
  --white: #ffffff;
  --grey-50: #fafafa;
  --grey-100: #fafafa;
  --grey-200: #ededed;
  --grey-300: #dddddd;
  --grey-400: #d6d6d6;
  --grey-500: #a09fa1;
  --grey-600: #4f4d59;
  --grey-650: #524d59;
  --grey-700: #3a363f;

  /* Semantic */
  --green-50: #f3fbf7;
  --green-700: #1b7b35;
  --trustpilot: #00b67a;

  /* Typography */
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;

  /* Layout */
  --container: 1180px;
  --container-pad: 130px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 54px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 280ms;
}

@media (max-width: 1200px) {
  :root {
    --container-pad: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --container-pad: 16px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--container-pad));
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  transition:
    background-color var(--duration) var(--ease),
    color var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--pink-600);
  color: var(--white);
}

.btn--primary:hover {
  background: #c01ee4;
}

.btn--secondary {
  background: var(--grey-50);
  color: var(--pink-900);
  border: 1px solid var(--pink-800);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn--secondary:hover {
  background: var(--pink-100);
}

.btn--block {
  width: 100%;
}

/* Typography helpers */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.display .dot {
  color: var(--pink-accent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.section-lead {
  color: var(--grey-650);
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .section-lead {
    font-size: 18px;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  transition: color var(--duration) var(--ease);
}

.link-arrow:hover {
  color: var(--pink-600);
}

.link-arrow img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.trust-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--trustpilot);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
  padding-bottom: 1px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-row__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 18px;
}

.stats-row__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.stats-row__item span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.stats-row__divider {
  width: 1px;
  height: 38px;
  background: var(--grey-300);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .stats-row {
    flex-direction: column;
    gap: 24px;
  }

  .stats-row__divider {
    display: none;
  }

  .stats-row__item {
    align-items: center;
    text-align: center;
    padding: 0;
  }
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--grey-650);
  font-size: 16px;
}

.check-list li > span {
  margin-top: 4px;
  flex-shrink: 0;
}


.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border: 1px solid var(--grey-300);
  border-radius: 999px;
  font-size: 12px;
  color: var(--grey-600);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app {
  min-height: 100vh;
  overflow-x: clip;
}

main > section {
  position: relative;
}

/* === header === */
.header__header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-300);
}

.header__inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 68px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 1024px) {
  .header__inner {
    padding: 0;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  width: 103px;
  height: 24px;
}

.header__nav {
  display: none;
  align-items: center;
  height: 100%;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
}

.header__nav-link,
.header__nav-link-active {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 15px 20px 17px;
  border-radius: 32px;
  font-size: 16px;
  color: var(--grey-600);
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--duration) var(--ease);
}

.header__nav-link:hover {
  color: var(--black);
}

.header__nav-link-active {
  font-weight: 700;
  color: var(--black);
}

.header__actions {
  display: none;
  align-items: center;
  gap: 20px;
}

@media (min-width: 1024px) {
  .header__actions {
    display: flex;
  }
}

.header__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--black);
  vertical-align: middle;
}

.header__login:hover {
  color: var(--pink-600);
}

.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: -8px;
}

@media (min-width: 1024px) {
  .header__menu-btn {
    display: none;
  }
}

.header__menu-btn img {
  width: 18px;
  height: 12px;
}

.header__menu-btn[aria-expanded="true"] img {
  opacity: 0.35;
}

/* === lang-switch === */
.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-switch__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--black);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  white-space: nowrap;
}

.lang-switch__flag {
  width: 19.4px;
  height: 19.4px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.lang-switch__code {
  display: block;
  line-height: 24px;
}

.lang-switch__chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
  transition: transform 180ms var(--ease);
}

.lang-switch.is-open .lang-switch__chevron {
  transform: rotate(180deg);
}

.lang-switch__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 154px;
  min-width: 154px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  box-shadow:
    0 10px 15px 0 rgba(0, 0, 0, 0.1),
    0 4px 6px 0 rgba(0, 0, 0, 0.05);
  text-align: left;
}

.lang-switch.is-open .lang-switch__menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.lang-switch:not(.lang-switch--mobile) .lang-switch__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: auto;
  right: 0;
  z-index: 120;
  max-height: min(320px, calc(100vh - 88px));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.lang-switch__menu > li {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid var(--grey-200);
}

.lang-switch__menu > li:last-child {
  border-bottom: 0;
}

.lang-switch__option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  width: 100%;
  min-height: 40px;
  margin: 0;
  padding: 8px 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--black);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
  text-align: left;
}

.lang-switch__option:hover,
.lang-switch__option.is-active {
  background: var(--grey-50);
}

.lang-switch__option img {
  width: 19.4px;
  height: 19.4px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.lang-switch--mobile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lang-switch--mobile .lang-switch__menu {
  position: static;
  width: 100%;
  max-width: 154px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  text-align: center;
}

.lang-switch--mobile.is-open .lang-switch__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.lang-switch--mobile .lang-switch__menu > li {
  border-bottom: 0;
  width: auto;
}

.lang-switch--mobile .lang-switch__option {
  justify-content: center;
  text-align: center;
  min-height: 40px;
  padding: 8px 16px;
  width: auto;
}

.lang-switch--mobile .lang-switch__option:hover,
.lang-switch--mobile .lang-switch__option.is-active {
  background: transparent;
}

.lang-switch--mobile .lang-switch__option.is-active {
  font-weight: 500;
}

/* === mobile-nav === */
.mobile-nav__root {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 0;
  animation: fade-in 200ms var(--ease);
}

.mobile-nav__panel {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border-radius: 0 0 24px 24px;
  padding: 93px 16px 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  animation: slide-down 320ms var(--ease);
}

.mobile-nav__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

.mobile-nav__nav .btn--block {
max-width: 154px;
}

.mobile-nav__link {
  font-size: 16px;
  font-weight: 400;
  color: var(--grey-600);
  text-align: center;
  transition: color var(--duration) var(--ease);
}

.mobile-nav__link:hover {
  color: var(--pink-600);
}

.mobile-nav__link.is-active {
  font-weight: 700;
  color: var(--black);
}

.mobile-nav__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-top: 8px;
}

.mobile-nav__login {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

@media (min-width: 1024px) {
  .mobile-nav__root {
    display: none;
  }
}

/* === footer === */
.footer__footer {
  background: #f6f6f6;
  padding: 64px 0 36px;
}

@media (min-width: 1024px) {
  .footer__footer {
    padding: 86px 0 48px;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer__top {
  display: grid;
  gap: 36px;
}

@media (min-width: 900px) {
  .footer__top {
    grid-template-columns: 1.1fr 1.4fr;
    gap: 64px;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
}

.footer__brand img {
  width: 103px;
  height: 24px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--grey-650);
}

.footer__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .footer__columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__column h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 8px;
}

.footer__column ul {
  display: flex;
  flex-direction: column;
}

.footer__column a {
  display: block;
  padding: 7px 0;
  font-size: 14px;
  color: var(--grey-650);
  transition: color var(--duration) var(--ease);
}

.footer__column a:hover {
  color: var(--pink-600);
}

.footer__bottom {
  border-top: 1px solid var(--grey-300);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__bottom p {
  max-width: 720px;
  font-size: 12px;
  color: var(--grey-500);
  line-height: 1.5;
}

.footer__copy {
  color: var(--grey-600) !important;
}

/* === hero === */
.hero__hero {
  padding: 36px 0 64px;
}

@media (min-width: 1024px) {
  .hero__hero {
    padding: 88px 0 96px;
  }
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 640px;
  animation: fade-up 600ms var(--ease);
}

.hero__title {
  font-size: clamp(40px, 8vw, 48px);
  letter-spacing: -0.64px;
}

.hero__lead {
  max-width: 419px;
  color: var(--grey-700);
  font-size: 16px;
}

@media (min-width: 1024px) {
  .hero__lead {
    font-size: 18px;
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 409px;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }

  .hero__actions .hero__btn {
    flex: 1;
  }
}

.hero__stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: fade-up 700ms var(--ease);
}

@media (min-width: 768px) {
  .hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}

.hero__stat-wrap {
  display: contents;
}

@media (min-width: 768px) {
  .hero__stat-wrap {
    display: flex;
    align-items: center;
  }
}

.hero__stat-wrap-desktop {
  display: none !important;
}

@media (min-width: 1024px) {
  .hero__stat-wrap-desktop {
    display: flex !important;
  }
}

.hero__divider {
  display: none;
}

@media (min-width: 768px) {
  .hero__divider {
    display: block;
    width: 1px;
    height: 38px;
    background: var(--grey-300);
    margin: 0 18px;
  }
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 98px;
}

@media (min-width: 768px) {
  .hero__stat {
    align-items: flex-start;
    text-align: left;
  }
}

.hero__stat strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.hero__stat span {
  font-size: 14px;
  color: var(--black);
}

.hero__trust {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero__trust-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
}

.hero__trust strong,
.hero__trust span {
  display: block;
  text-align: left;
}

.hero__visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  animation: fade-up 800ms var(--ease);
}

@media (min-width: 900px) {
  .hero__visuals {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 19px;
  }
}

.hero__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--grey-200);
  height: 209px;
}

@media (min-width: 900px) {
  .hero__card {
    height: 383px;
  }
}

.hero__card-woman {
  display: none;
}

@media (min-width: 900px) {
  .hero__card-woman {
    display: block;
  }
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__card-profit {
  background: #ededed;
}

.hero__card-profit .hero__photo {
  object-fit: cover;
  object-position: center;
}

/* === calc === */
.calc__section {
  padding: 64px 0;
  padding-top:10px;
}

@media (min-width: 1024px) {
  .calc__section {
    padding: 96px 0;
    padding-top:20px;
  }
}

.calc__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.calc__intro {
  max-width: 556px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .calc__intro {
    margin-bottom: 84px;
  }
}

.calc__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.36px;
  line-height: 1.1;
}

.calc__lead {
  color: var(--grey-700);
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .calc__lead {
    font-size: 18px;
  }
}

.calc__layout {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}

@media (min-width: 1024px) {
  .calc__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
}

.calc__controls {
  background: var(--grey-50);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

@media (min-width: 1024px) {
  .calc__controls {
    width: 481px;
    flex-shrink: 0;
  }
}

.calc__control {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.calc__control:has(.calc__horizons) {
  gap: 8px;
}

.calc__control-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--black);
}

.calc__control-top strong {
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-body);
}

.calc__horizon-label {
  font-size: 16px;
  color: var(--black);
}

.calc__slider {
  --thumb: 21px;
  position: relative;
  display: block;
  height: var(--thumb);
  width: 100%;
}

.calc__slider-track,
.calc__slider-fill {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 8px;
  border-radius: 20px;
  pointer-events: none;
}

.calc__slider-track {
  right: 0;
  background: var(--grey-400);
}

.calc__slider-fill {
  /* Keep pink fill centered under the thumb */
  width: calc(
    (var(--thumb) / 2) + (100% - var(--thumb)) * var(--pct, 0) / 100
  );
  background: var(--pink-600);
}

.calc__slider input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: var(--thumb);
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.calc__slider input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: var(--thumb);
  height: var(--thumb);
  border-radius: 10.5px;
  background: var(--white);
  border: 1px solid var(--grey-600);
  box-shadow: none;
  margin-top: -6.5px;
}

.calc__slider input[type="range"]::-moz-range-thumb {
  width: var(--thumb);
  height: var(--thumb);
  border-radius: 10.5px;
  background: var(--white);
  border: 1px solid var(--grey-600);
  box-sizing: border-box;
}

.calc__slider input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  background: transparent;
  border-radius: 20px;
}

.calc__slider input[type="range"]::-moz-range-track {
  height: 8px;
  background: transparent;
  border-radius: 20px;
}

.calc__horizons {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.calc__horizon,
.calc__horizon-active {
  flex: 1 1 0;
  min-width: 40px;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--grey-600);
  line-height: 1.5;
  text-align: center;
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease);
}

.calc__horizon:hover {
  background: var(--pink-100);
}

.calc__horizon-active {
  background: var(--pink-600);
  color: var(--white);
}

.calc__horizon-active:hover {
  background: var(--pink-600);
  color: var(--white);
}

.calc__results {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.calc__summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.calc__summary-right {
  text-align: right;
}

.calc__summary-label {
  font-size: 16px;
  color: var(--black);
  line-height: 1.5;
}

.calc__summary-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
}

.calc__chart-wrap {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px;
  min-height: 260px;
}

.calc__y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 12.8px;
  color: var(--grey-500);
  padding-bottom: 28px;
}

.calc__chart {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.calc__plot {
  position: relative;
  width: 100%;
  height: 240px;
}

.calc__svg {
  width: 100%;
  height: 100%;
  display: block;
  cursor: crosshair;
}

.calc__tip {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, calc(-100% - 14px));
  padding: 10px 14px;
  border-radius: 8px;
  background: #1a1a1a;
  color: #fff;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.calc__tip strong {
  display: block;
  font-family: var(--font-display, Georgia, serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.calc__tip span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.62);
}

.calc__tip-dot {
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: #d327fb;
  box-shadow: 0 0 0 8px rgba(211, 39, 251, 0.22);
  pointer-events: none;
}

.calc__grid-line,
.calc__grid-base {
  fill: none;
  stroke: var(--grey-400);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.calc__grid-line {
  stroke-dasharray: 1.2 1.2;
}

.calc__grid-base {
  stroke-dasharray: none;
}

.calc__x-axis {
  display: flex;
  justify-content: space-between;
  font-size: 12.8px;
  color: var(--grey-500);
  overflow: hidden;
}

.calc__disclaimer {
  font-size: 14px;
  color: var(--grey-500);
  max-width: 1200px;
  width: 100%;
  line-height: 1.5;
  margin-top: 36px;
}

/* === map === */
.map__section {
  padding: 64px 0 0;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(246, 246, 246, 0.2), #f6f6f6);
  position: relative;
}

@media (min-width: 1024px) {
  .map__section {
    padding: 0;
    min-height: 742px;
  }
}

.map__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .map__inner {
    display: block;
    min-height: 742px;
    position: static;
  }
}

.map__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .map__copy {
    padding-block: 130px;
  }
}

.map__pink {
  color: var(--pink-accent);
}

.map__map {
  width: 100%;
  position: relative;
}

@media (min-width: 1024px) {
  .map__map {
    position: absolute;
    top: -160px;
    /*
      Wide screens: Figma offset (50% - 210px).
      Narrower desktop: pull left under the copy so the map isn't clipped on the right.
    */
    left: clamp(-120px, calc(50% - 210px), calc(100% - 980px));
    width: 1079px;
    height: auto;
    max-width: none;
    pointer-events: none;
    z-index: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .map__map {
    margin-inline: -24px;
    width: calc(100% + 48px);
  }
}

@media (max-width: 767px) {
  .map__map {
    margin-inline: -16px;
    width: calc(100% + 32px);
  }
}

.map__map img,
.map__map picture,
.map__map svg {
  width: 100%;
  height: auto;
  display: block;
}

/* iOS Safari: sharper SVG when filters/scaling would otherwise soft-rasterize */
.map__map img {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Keep copy readable when the map slides underneath on mid desktop */
@media (min-width: 1024px) {
  .map__copy {
    padding-right: 24px;
    margin-right: -24px;
  }
}

/* === protection === */
.protection__section {
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .protection__section {
    padding: 96px 0;
  }
}

.protection__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .protection__inner {
    gap: 72px;
  }
}

.protection__intro {
  max-width: 556px;
  margin-inline: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

@media (min-width: 1024px) {
  .protection__intro {
    margin-inline: auto;
    text-align: center;
    align-items: center;
  }
}

.protection__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.36px;
  line-height: 1.1;
}

.protection__lead {
  color: var(--grey-650);
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .protection__lead {
    font-size: 18px;
  }
}

.protection__row {
  display: grid;
  gap: 36px;
  align-items: center;
  max-width: 959px;
  margin-inline: auto;
  width: 100%;
}

.protection__row .protection__copy {
  order: 2;
}

.protection__row .protection__visual {
  order: 1;
}

@media (min-width: 1024px) {
  .protection__row {
    grid-template-columns: 0.9fr 469px;
    gap: 40px;
    justify-content: space-between;
  }

  .protection__row .protection__copy {
    order: 0;
  }

  .protection__row .protection__visual {
    order: 0;
  }

  .protection__row-reverse {
    grid-template-columns: 404px 0.9fr;
  }

  .protection__row-reverse .protection__copy {
    order: 2;
    margin-left: auto;
    max-width: 440px;
    width: 100%;
  }

  .protection__row-reverse .protection__visual {
    order: 1;
  }
}

.protection__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  max-width: 440px;
}

.protection__subtitle {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.28px;
  line-height: 1.3;
}

.protection__body {
  color: var(--grey-650);
  font-size: 16px;
  line-height: 1.5;
}

.protection__checks {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 10px;
  width: 100%;
}

.protection__checks li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #3a363f;
  font-size: 14px;
  line-height: 1.5;
}

.protection__link-pink {
  margin-top: 12px;
  color: var(--pink-600) !important;
}

.protection__visual {
  position: relative;
  width: 100%;
  height: 459px;
  max-width: 469px;
  margin-inline: auto;
}

.protection__visual-repay {
  height: 350px;
  max-width: 404px;
}

.protection__photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 379px;
  max-width: 81%;
  height: 386px;
  overflow: hidden;
  background: var(--grey-200);
  border-radius: 8px;
}

.protection__photo-repay {
  left: 0;
  right: auto;
  width: 301px;
  max-width: 74%;
}

.protection__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.protection__photo-repay img {
  object-position: center;
}

.protection__card-buyback {
  left: 0;
  top: 220px;
  width: 287px;
}

.protection__card-repay {
  left: 170px;
  right: auto;
  top: 156px;
  width: 234px;
  padding: 18px;
}

@media (max-width: 1023px) {
  .protection__visual,
  .protection__visual-repay {
    height: auto;
    min-height: 360px;
    max-width: 100%;
    padding-bottom: 48px;
  }

  .protection__photo,
  .protection__photo-repay {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 300px;
    margin: 0;
  }

  .protection__photo img {
    object-position: center;
  }

  .protection__photo-repay img {
    object-position: center;
  }

  .protection__card-buyback,
  .protection__card-repay {
    left: 0;
    right: auto;
    top: auto;
    bottom: 8px;
    width: min(287px, calc(100% - 16px));
  }

  .protection__card-repay {
    left: auto;
    right: 0;
    width: min(234px, calc(100% - 16px));
  }
}

/* === originators === */
.originators__section {
  padding: 64px 0;
  background: var(--grey-50);
}

@media (min-width: 1024px) {
  .originators__section {
    padding: 96px 0;
  }
}

.originators__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.originators__intro {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.originators__grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 900px) {
  .originators__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.originators__card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: 14px;
  padding: 25px 29px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
  min-height: 100%;
}

.originators__card-top {
  display: flex;
  flex-direction: column;
}

.originators__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  padding-bottom: 20px;
}

.originators__logo-wrap {
  height: 45px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.originators__logo {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}

.originators__tagline {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--black);
  margin: 0 0 8px;
}

.originators__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--grey-600);
  margin: 0 0 16px;
}

.originators__card-bottom {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.originators__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--grey-300);
  font-size: 12px;
}

.originators__row span {
  color: var(--grey-600);
  font-weight: 400;
}

.originators__row strong {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  color: var(--black);
}

.originators__rate {
  color: var(--pink-600) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.originators__cta {
  margin-top: 20px;
  padding-top: 0;
}

.originators__foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.originators__foot-notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

@media (min-width: 900px) {
  .originators__foot-notes {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.originators__foot-notes p {
  font-size: 12px;
  font-weight: 500;
  color: #6d6774;
  margin: 0;
}

.originators__foot-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.originators__foot-cta .btn {
  width: 392px;
  max-width: 100%;
  min-width: min(392px, 100%);
}

/* === liquidity === */
.liquidity__section {
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .liquidity__section {
    padding: 96px 0;
  }
}

.liquidity__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .liquidity__inner {
    gap: 72px;
  }
}

.liquidity__intro {
  max-width: 556px;
  margin-inline: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

@media (min-width: 1024px) {
  .liquidity__intro {
    margin-inline: auto;
    text-align: center;
    align-items: center;
  }
}

.liquidity__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.36px;
  line-height: 1.1;
}

.liquidity__lead {
  color: var(--grey-650);
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .liquidity__lead {
    font-size: 18px;
  }
}

.liquidity__row {
  display: grid;
  gap: 36px;
  align-items: center;
  max-width: 959px;
  margin-inline: auto;
  width: 100%;
}

.liquidity__row .liquidity__copy {
  order: 2;
}

.liquidity__row .liquidity__visual {
  order: 1;
}

@media (min-width: 1024px) {
  .liquidity__row {
    grid-template-columns: 426px 448px;
    gap: 48px;
    justify-content: space-between;
  }

  .liquidity__row .liquidity__copy {
    order: 0;
  }

  .liquidity__row .liquidity__visual {
    order: 0;
  }

  .liquidity__row-reverse {
    grid-template-columns: 420px 410px;
  }

  .liquidity__row-reverse .liquidity__copy {
    order: 2;
  }

  .liquidity__row-reverse .liquidity__visual {
    order: 1;
  }
}

.liquidity__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.liquidity__subtitle {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.28px;
  line-height: 1.3;
}

.liquidity__body {
  color: var(--grey-650);
  font-size: 16px;
  line-height: 1.5;
}

.liquidity__checks {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 10px;
  width: 100%;
}

.liquidity__checks li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--grey-650);
  font-size: 14px;
  line-height: 1.5;
}

.liquidity__copy .liquidity__link-arrow {
  margin-top: 12px;
}

.liquidity__visual {
  position: relative;
  width: 100%;
  height: 448px;
  max-width: 448px;
  margin-inline: auto;
}

.liquidity__visual-buy {
  height: 393px;
  max-width: 420px;
}

.liquidity__photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 379px;
  max-width: 85%;
  height: 386px;
  overflow: hidden;
  background: var(--grey-200);
  border-radius: 8px;
}

.liquidity__photo-buy {
  left: 0;
  right: auto;
  width: 304px;
  max-width: 90%;
  height: 304px;
}

.liquidity__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.liquidity__photo-buy img {
  object-position: center;
}

.liquidity__card-sell {
  left: 0;
  top: 193px;
  width: 257px;
  box-shadow: 0 18px 45px -24px rgba(23, 20, 26, 0.18);
}

.liquidity__card-buy {
  left: 151px;
  right: auto;
  top: 175px;
  width: 269px;
  padding: 20px;
  box-shadow: 0 19px 48px -25px rgba(23, 20, 26, 0.18);
}

@media (max-width: 1023px) {
  .liquidity__visual,
  .liquidity__visual-buy {
    height: auto;
    min-height: 360px;
    max-width: 100%;
    padding-bottom: 36px;
  }

  .liquidity__photo,
  .liquidity__photo-buy {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 300px;
  }

  .liquidity__card-sell,
  .liquidity__card-buy {
    left: 12px;
    right: auto;
    top: auto;
    bottom: 0;
    width: min(270px, calc(100% - 24px));
  }
}

/* === reviews === */
.reviews__section {
  padding: 64px 0;
  background: linear-gradient(
    90deg,
    rgba(226, 111, 255, 0.02) 40%,
    rgba(226, 111, 255, 0.08)
  );
  overflow: clip;
}

@media (min-width: 1024px) {
  .reviews__section {
    padding: 48px 32px;
  }
}

.reviews__inner {
  width: min(1301px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.reviews__intro {
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.reviews__widget {
  width: 100%;
}

.reviews__widget .trustpilot-widget {
  width: 100%;
}

.reviews__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.36px;
  line-height: 1.1;
}

.reviews__lead {
  color: var(--grey-650);
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .reviews__lead {
    font-size: 18px;
  }
}

.reviews__lead strong {
  font-weight: 700;
  color: var(--black);
}

.reviews__carousel {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  gap: 20px;
  align-items: center;
  width: 100%;
}

.reviews__arrow {
  width: 32px;
  height: 32px;
  padding: 4px;
  border-radius: 50px;
  background: var(--pink-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease);
}

.reviews__arrow:hover:not(:disabled) {
  background: #f8d4ff;
}

.reviews__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.reviews__viewport {
  --gap: 20px;
  --visible: 3;
  --index: 0;
  overflow: hidden;
  width: 100%;
  container-type: inline-size;
}

.reviews__track {
  display: flex;
  gap: var(--gap);
  transition: transform 360ms var(--ease);
  will-change: transform;
  transform: translateX(
    calc(-1 * var(--index) * ((100cqi - (var(--visible) - 1) * var(--gap)) / var(--visible) + var(--gap)))
  );
}

.reviews__card {
  flex: 0 0 calc((100cqi - (var(--visible) - 1) * var(--gap)) / var(--visible));
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: 14px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 160px;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition:
    background var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

a.reviews__card:focus-visible {
  outline: 2px solid var(--pink, #e26fff);
  outline-offset: 2px;
}

.reviews__card:hover {
  background: var(--grey-50);
  box-shadow: 0 10px 28px rgba(23, 20, 26, 0.08);
  transform: translateY(-2px);
}

.reviews__stars {
  display: flex;
  gap: 2.9px;
}

.reviews__star {
  width: 23px;
  height: 23px;
  object-fit: contain;
  display: block;
}

.reviews__card h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.reviews__card p {
  font-size: 14px;
  color: #6d6774;
  padding-top: 4px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .reviews__inner {
    width: calc(100% - 32px);
  }

  .reviews__carousel {
    gap: 8px;
  }

  .reviews__viewport {
    --gap: 0px;
  }
}

/* === faq === */
.faq__section {
  padding: 64px 0;
}

#faq {
  scroll-margin-top: 84px;
}

@media (min-width: 1024px) {
  .faq__section {
    padding: 96px 0;
  }
}

.faq__inner {
  display: grid;
  gap: 36px;
}

@media (min-width: 900px) {
  .faq__inner {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: start;
  }
}

.faq__intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid var(--grey-200);
}

.faq__item:last-child {
  border-bottom: 0;
}

.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
}

.faq__q,
.faq__q-open {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

.faq__q-open {
  color: var(--pink-600);
}

.faq__icon,
.faq__icon-open {
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}

.faq__icon-open {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 40px 24px 0;
  color: var(--grey-650);
  font-size: 16px;
  animation: fade-up 220ms var(--ease);
}

/* === final-cta === */
.final-cta__section {
  padding: 64px 0;
  background: linear-gradient(90deg, rgba(246, 246, 246, 0.2), #f6f6f6);
}

@media (min-width: 1024px) {
  .final-cta__section {
    padding: 86px 0;
  }
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.48px;
  line-height: 1.1;
}

.final-cta__lead {
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-650);
}

@media (min-width: 1024px) {
  .final-cta__lead {
    font-size: 18px;
  }
}

.final-cta__inner > .btn {
  width: 392px;
  max-width: 100%;
  min-width: min(392px, 100%);
}

.final-cta__stats {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 12px 4px;
  max-width: 100%;
  overflow-x: auto;
}

.final-cta__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-align: left;
  padding: 0 12px;
  flex-shrink: 0;
}

.final-cta__trust-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}

.final-cta__stat-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 12px;
  min-width: 0;
  flex-shrink: 0;
}

.final-cta__stat strong,
.final-cta__stat-col strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.final-cta__stat span,
.final-cta__stat-col span {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}

.final-cta__divider {
  width: 1px;
  height: 32px;
  background: var(--grey-300);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .final-cta__stats {
    padding: 12px 8px;
  }

  .final-cta__stat,
  .final-cta__stat-col {
    padding: 0 18px;
  }

  .final-cta__trust-icon {
    width: 38px;
    height: 38px;
  }

  .final-cta__stat strong,
  .final-cta__stat-col strong {
    font-size: 14px;
  }

  .final-cta__stat span,
  .final-cta__stat-col span {
    font-size: 14px;
  }

  .final-cta__divider {
    height: 38px;
  }
}

.final-cta__risk {
  max-width: 520px;
  font-size: 14px;
  color: var(--grey-500);
}

/* === modal === */
.modal__root {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fade-in 200ms var(--ease);
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 54, 63, 0.55);
  border: 0;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(562px, 100%);
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: var(--white);
  border-radius: 8px;
  padding: 36px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: fade-up 280ms var(--ease);
}

@media (min-width: 768px) {
  .modal__dialog {
    padding: 36px;
  }
}

.modal__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.28px;
  line-height: 1.3;
  text-align: center;
}

.modal__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--grey-700);
  font-size: 16px;
  line-height: 1.5;
}

/* === overlay-card === */
/* Shared illustrative overlay cards — Figma compact UI scale */

.overlay-card__shell {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 16px 41px -22px rgba(23, 20, 26, 0.16);
  padding: 18px;
  width: 287px;
  max-width: calc(100% - 24px);
  box-sizing: border-box;
}

.overlay-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.overlay-card__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}

.overlay-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  border-radius: 999px;
  background: #f3fbf7;
  color: #1b7b35;
  font-size: 8px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}

.overlay-card__badge-sold {
  background: #e7f6ef;
  color: #0e7a4e;
}

.overlay-card__timeline {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  padding-bottom: 10px;
}

.overlay-card__step {
  display: grid;
  grid-template-columns: 7px 1fr;
  column-gap: 10px;
  align-items: start;
}

.overlay-card__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding-top: 3px;
}

.overlay-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 3.5px;
  background: #ededed;
  flex-shrink: 0;
}

.overlay-card__dot-muted {
  background: #d9d5de;
}

.overlay-card__dot-active {
  background: #e5117f;
}

.overlay-card__dot-pink {
  background: #dd5afc;
  width: 8px;
  height: 8px;
  border-radius: 4px;
}

.overlay-card__connector {
  flex: 1;
  width: 1px;
  min-height: 18px;
  background: #ededed;
  margin: 2px 0;
}

.overlay-card__step-body {
  padding-bottom: 10px;
}

.overlay-card__step:last-child .overlay-card__step-body {
  padding-bottom: 0;
}

.overlay-card__step-title {
  margin: 0;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.6;
  color: #000;
}

.overlay-card__step-meta {
  margin: 0;
  font-size: 8px;
  font-weight: 400;
  line-height: 1.6;
  color: #4f4d59;
}

.overlay-card__step-meta-alt {
  color: #6d6774;
}

.overlay-card__rows {
  display: flex;
  flex-direction: column;
}

.overlay-card__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid #ededed;
  font-size: 9px;
  line-height: 1.6;
}

.overlay-card__row-first {
  border-top: none;
  padding-top: 20px;
  padding-bottom: 8px;
}

.overlay-card__row-label {
  color: #4f4d59;
  font-weight: 400;
}

.overlay-card__row-label-dark {
  color: #3a363f;
}

.overlay-card__row-value {
  color: #000;
  font-weight: 600;
  text-align: right;
}

.overlay-card__row-value-green {
  color: #1b7b35;
  font-weight: 600;
  text-align: right;
}

.overlay-card__listing-rows {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.overlay-card__listing-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid #ededed;
}

.overlay-card__listing-type {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}

.overlay-card__listing-meta {
  margin: 0;
  font-size: 9px;
  line-height: 1.6;
  color: #6d6774;
}

.overlay-card__listing-rate {
  font-size: 10px;
  font-weight: 700;
  color: #1b7b35;
}

.overlay-card__listing-amount {
  font-size: 10px;
  font-weight: 400;
  color: #000;
  text-align: right;
  min-width: 44px;
}

/* === blog-hero === */
.blog-hero__hero {
  display: grid;
  gap: 24px;
  padding: 40px 0 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .blog-hero__hero {
    grid-template-columns: 500px 1fr;
    gap: 32px;
    padding: 56px 0 32px;
  }
}

.blog-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.blog-hero__eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-600);
  line-height: 1.5;
}

.blog-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.48px;
  line-height: 1.1;
}

.blog-hero__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-700);
  max-width: 460px;
}

@media (min-width: 1024px) {
  .blog-hero__lead {
    font-size: 18px;
  }
}

.blog-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pink-600);
}

.blog-hero__link img {
  width: 10px;
  height: 10px;
}

.blog-hero__media {
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--pink-200);
  border: 1px solid var(--grey-200);
}

@media (min-width: 1024px) {
  .blog-hero__media {
    height: 320px;
  }
}

.blog-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* === media-bar === */
.media-bar__bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  background: var(--white);
}

@media (min-width: 1024px) {
  .media-bar__bar {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    height: 82px;
    padding: 24px 32px;
  }
}

.media-bar__label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.96px;
  color: var(--grey-700);
  white-space: nowrap;
}

.media-bar__divider,
.media-bar__divider-desktop {
  display: none;
  width: 1px;
  height: 34px;
  background: var(--grey-200);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .media-bar__divider,
  .media-bar__divider-desktop {
    display: block;
  }
}

.media-bar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  width: 100%;
  justify-content: center;
}

@media (min-width: 1024px) {
  .media-bar__logos {
    flex: 1;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
  }
}

.media-bar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.media-bar__fintech-top {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.9px;
  color: #6d28a8;
}

.media-bar__fintech-bottom {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.9px;
  color: #0d1117;
}

.media-bar__p2p-top {
  font-size: 20px;
  font-weight: 800;
  color: #12327a;
}

.media-bar__p2p-bottom {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.28px;
  color: #12327a;
}

.media-bar__crowdfund {
  display: flex;
  align-items: center;
  gap: 6px;
}

.media-bar__crowdfund img {
  width: 20px;
  height: 20px;
}

.media-bar__cf-top {
  font-size: 12px;
  font-weight: 800;
  color: #1b7b35;
}

.media-bar__cf-bottom {
  font-size: 12px;
  font-weight: 800;
  color: #0d1117;
}

.media-bar__altfi {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 18px;
  font-weight: 800;
  color: #0d1117;
}

.media-bar__fi {
  background: #1d4ed8;
  color: var(--white);
  border-radius: 3px;
  padding: 2px 5px;
}

.media-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pink-600);
  white-space: nowrap;
}

.media-bar__link img {
  width: 10px;
  height: 10px;
}

/* === blog-filters === */
.blog-filters__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  border-bottom: 1px solid var(--grey-200);
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .blog-filters__row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }
}

.blog-filters__tabs {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  min-height: 53px;
  align-items: stretch;
}

.blog-filters__tabs::-webkit-scrollbar {
  display: none;
}

.blog-filters__tab,
.blog-filters__tab-active {
  position: relative;
  flex-shrink: 0;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-600);
  white-space: nowrap;
  background: transparent;
}

.blog-filters__tab-active {
  color: var(--black);
}

.blog-filters__tab-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--pink-600);
}

.blog-filters__search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 300px;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--grey-500);
  border-radius: 4px;
  background: var(--white);
  margin-bottom: 13px;
}

.blog-filters__search img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.blog-filters__search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: var(--black);
  font-family: var(--font-body);
}

.blog-filters__search input::placeholder {
  color: var(--grey-600);
}

@media (max-width: 767px) {
  .blog-filters__search {
    max-width: 100%;
    margin-bottom: 16px;
  }
}

/* === blog-card === */
.blog-card__card {
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  background: var(--white);
  height: 100%;
  transition:
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.blog-card__card:hover {
  box-shadow: 0 12px 28px rgba(23, 20, 26, 0.08);
  transform: translateY(-2px);
}

.blog-card__image {
  display: block;
  height: 200px;
  background: #fff9eb;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__graphic {
  width: 100%;
  height: 100%;
  background: #f9b3fe;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
  color: #450255;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
}

.blog-card__graphic p {
  margin: 0;
  font-size: 11px;
}

.blog-card__graphic-title {
  font-size: 18px !important;
  letter-spacing: -0.2px;
  max-width: 240px;
}

.blog-card__graphic img {
  width: 64px;
  height: 15px;
  object-fit: contain;
}

.blog-card__title a {
  color: inherit;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px 16px;
  flex: 1 1 auto;
}

.blog-card__meta {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink-600);
  line-height: 1.5;
}

.blog-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black);
}

.blog-card__excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-650);
}

.blog-card__link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pink-600);
}

.blog-card__link:hover {
  text-decoration: underline;
}

/* === pagination === */
.pagination__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination__arrow,
.pagination__page,
.pagination__page-active {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--grey-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-600);
  transition:
    border-color var(--duration) var(--ease),
    color var(--duration) var(--ease),
    background var(--duration) var(--ease);
}

.pagination__page:hover,
.pagination__arrow:hover:not(:disabled) {
  border-color: var(--pink-600);
  color: var(--pink-600);
}

.pagination__page-active {
  border-color: var(--pink-600);
  color: var(--pink-600);
}

.pagination__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.pagination__ellipsis {
  width: 24px;
  text-align: center;
  color: var(--grey-500);
}

/* === empty-state === */
.empty-state__root {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  width: min(414px, 100%);
  margin: 64px auto;
  padding: 24px 16px 96px;
}

.empty-state__icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.empty-state__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.36px;
  line-height: 1.1;
}

.empty-state__lead {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-700);
}

@media (min-width: 1024px) {
  .empty-state__lead {
    font-size: 18px;
  }
}

/* === article-cta === */
.article-cta__section {
  padding: 64px 0;
  background: linear-gradient(90deg, rgba(246, 246, 246, 0.2), #f6f6f6);
}

@media (min-width: 1024px) {
  .article-cta__section {
    padding: 80px 0;
  }
}

.article-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
}

.article-cta__inner .btn {
  width: 100%;
  max-width: none;
}

@media (min-width: 1024px) {
  .article-cta__inner {
    gap: 36px;
  }

  .article-cta__inner .btn {
    width: 272px;
  }
}

.article-cta__title {
  margin: 0;
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.48px;
  line-height: 1.1;
}

.article-cta__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-650);
}

@media (min-width: 1024px) {
  .article-cta__lead {
    font-size: 18px;
  }
}

.article-cta__risk {
  margin: 0;
  max-width: 560px;
  font-size: 14px;
  color: var(--grey-500);
  line-height: 1.5;
}

/* === blog-page === */
.blog-page__page {
  background: var(--white);
  min-height: 60vh;
}

.blog-page__top {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-page__content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 36px;
  padding-bottom: 64px;
}

@media (min-width: 1024px) {
  .blog-page__content {
    padding-top: 48px;
    padding-bottom: 96px;
  }
}

.blog-page__search-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-page__search-header form {
  max-width: 599px;
  margin-bottom: 0;
}

.blog-page__search-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.36px;
  line-height: 1.1;
}

.blog-page__section-title {
  margin: 0 0 40px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.36px;
  line-height: 1.1;
}

.blog-page__grid {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 700px) {
  .blog-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (min-width: 1024px) {
  .blog-page__section-title {
    margin-bottom: 48px;
  }

  .blog-page__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 64px;
  }
}

/* === article === */
.article__page {
  background: var(--white);
}

.article__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 24px;
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .article__header {
    padding-top: 40px;
    padding-bottom: 0;
  }
}

.article__cover {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--pink-100);
}

.article__cover img {
  object-fit: cover;
    height: 100%;
    width: 100%;
}

@media (min-width: 1024px) {
  .article__cover {
    height: 560px;
  }
}

.article__cover-graphic {
  width: 100%;
  height: 100%;
  background: #f9b3fe;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 16px;
  text-align: center;
  color: var(--pink-800);
}

@media (min-width: 1024px) {
  .article__cover-graphic {
    gap: 64px;
    padding: 40px;
  }
}

.article__cover-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 860px;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
}

.article__cover-eyebrow {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: -0.28px;
}

.article__cover-title {
  margin: 0;
  font-size: clamp(28px, 5vw, 64px);
  letter-spacing: -0.64px;
}

.article__cover-logo {
  width: 77px;
  height: 18px;
  display: block;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .article__cover-logo {
    width: 206px;
    height: 48px;
  }
}

.article__cover-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article__header-column {
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--grey-500);
}

.article__meta-cat {
  color: var(--pink-600);
}

.article__meta-sep {
  color: var(--grey-500);
}

.article__h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 38px);
  letter-spacing: -0.38px;
  line-height: 1.1;
  color: var(--black);
}

.article__body-wrap {
  display: flex;
  justify-content: center;
  padding-top: 28px;
  padding-bottom: 48px;
}

@media (min-width: 1024px) {
  .article__body-wrap {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.article__reading {
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.article__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article__h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.36px;
  line-height: 1.1;
  color: var(--black);
}

.article__h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.28px;
  line-height: 1.3;
  color: var(--black);
}

.article__paras {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article__body-text,
.article__paras p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-700);
}

@media (min-width: 1024px) {
  .article__body-text,
  .article__paras p {
    font-size: 18px;
  }
}

.article__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article__figure-media {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--pink-100);
}

.article__figure-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article__figure figcaption {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-500);
  text-align: center;
}

.article__bullets,
.article__numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article__bullets li,
.article__numbers li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-700);
}

@media (min-width: 1024px) {
  .article__bullets li,
  .article__numbers li {
    font-size: 18px;
  }
}

.article__bullets li::before {
  content: "•";
  color: var(--pink-600);
}

.article__numbers {
  counter-reset: article-ol;
}

.article__numbers li {
  counter-increment: article-ol;
}

.article__numbers li::before {
  content: counter(article-ol) ".";
  color: var(--pink-600);
}

.article__split {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .article__split {
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }
}

.article__split-figure {
  margin: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .article__split-figure {
    width: 394px;
    flex-shrink: 0;
  }
}

.article__pull-quote {
  margin: 0;
  display: flex;
  gap: 16px;
  align-items: stretch;
  padding: 16px 0;
}

@media (min-width: 1024px) {
  .article__pull-quote {
    gap: 24px;
    padding: 16px 0;
    flex: 1;
  }
}

.article__pull-bar {
  width: 4px;
  border-radius: 2px;
  background: var(--pink-600);
  flex-shrink: 0;
}

.article__pull-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: var(--black);
}

.article__pull-text p {
  margin: 0;
}

.article__stats {
  background: var(--pink-100);
  border-radius: 12px;
  padding: 8px 24px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .article__stats {
    flex-direction: row;
    align-items: center;
    padding: 28px 32px;
  }
}

.article__stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--pink-200);
}

.article__stat:last-child {
  border-bottom: none;
}

@media (min-width: 1024px) {
  .article__stat {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding: 0;
    border-bottom: none;
  }
}

.article__stat-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.3;
  color: var(--black);
  order: 2;
}

.article__stat-label {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-600);
  order: 1;
}

@media (min-width: 1024px) {
  .article__stat-value {
    order: 0;
  }

  .article__stat-label {
    order: 0;
  }
}

.article__divider {
  display: block;
  width: 100%;
  height: 1px;
  border: 0;
  margin: 0;
  background: var(--grey-200);
}

@media (min-width: 1024px) {
  .article__divider {
    display: none;
  }
}

.article__inline-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--pink-600);
  text-decoration: underline;
}

.article__related {
  border-top: 1px solid var(--grey-200);
  padding: 36px 0;
}

@media (min-width: 1024px) {
  .article__related {
    padding: 64px 0;
  }
}

.article__related-title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.28px;
  line-height: 1.3;
  color: var(--black);
}

.article__related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 768px) {
  .article__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .article__related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}



/* === about === */
.about__page {
  background: var(--white);
}

.about__hero {
  padding: 48px 0 64px;
}

@media (min-width: 1024px) {
  .about__hero {
    padding: 72px 0 0;
  }
}

.about__hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .about__hero-inner {
    gap: 72px;
    align-items: center;
  }
}

.about__hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 940px;
}

@media (min-width: 1024px) {
  .about__hero-copy {
    text-align: center;
    align-items: center;
  }
}

.about__hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.64px;
  line-height: 1.1;
  color: var(--black);
}

.about__hero-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-600);
  max-width: 580px;
}

@media (min-width: 1024px) {
  .about__hero-lead {
    font-size: 18px;
  }
}

.about__hero-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media (min-width: 1024px) {
  .about__hero-media {
    flex-direction: row;
    gap: 19px;
    align-items: stretch;
  }
}

.about__hero-photo {
  flex: 1;
  min-width: 0;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--grey-200);
}

@media (min-width: 1024px) {
  .about__hero-photo {
    height: 383px;
  }
}

.about__hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__hero-panel {
  display: none;
}

@media (min-width: 1024px) {
  .about__hero-panel {
    display: block;
    position: relative;
    width: 408px;
    height: 383px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--grey-200);
    flex-shrink: 0;
  }
}

.about__hero-panel-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__is-section {
  background: var(--grey-50);
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .about__is-section {
    padding: 115px 0;
  }
}

.about__is-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .about__is-inner {
    gap: 56px;
  }
}

.about__is-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1024px) {
  .about__is-split {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
  }
}

.about__is-title {
  margin: 0;
  flex: 1;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.36px;
  line-height: 1.1;
  color: var(--black);
  text-align: left;
}

.about__is-title em {
  font-style: italic;
  font-weight: 400;
}

.about__is-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.about__is-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-700);
}

.about__is-panels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .about__is-panels {
    flex-direction: row;
    gap: 20px;
  }
}

.about__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  min-width: 0;
}

@media (min-width: 1024px) {
  .about__panel {
    padding: 30px;
  }
}

.about__panel--is {
  background: var(--white);
}

.about__panel--is-not {
  background: var(--grey-50);
}

@media (min-width: 1024px) {
  .about__panel--is-not {
    background: var(--grey-200);
  }
}

.about__panel-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black);
}

.about__panel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about__panel-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-700);
}

.about__panel-list li img {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 6px;
}

.about__panel--is .about__panel-list li img {
  width: 14px;
  height: 11px;
}

.about__callout {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.about__callout-bar {
  width: 2px;
  flex-shrink: 0;
  background: var(--pink-600);
}

.about__callout p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-700);
  max-width: 860px;
}

.about__inline-link {
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

.about__numbers {
  padding: 64px 0;
  background: linear-gradient(90deg, rgba(226, 111, 255, 0.02) 40%, rgba(226, 111, 255, 0.08));
}

@media (min-width: 1024px) {
  .about__numbers {
    padding: 115px 0;
    background: transparent;
  }
}

.about__numbers-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

@media (min-width: 1024px) {
  .about__numbers-inner {
    gap: 42px;
  }
}

.about__numbers-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.about__section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.36px;
  line-height: 1.1;
  color: var(--black);
}

.about__section-lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-700);
}

.about__section-lead--center {
  max-width: 702px;
}

@media (min-width: 1024px) {
  .about__section-lead--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.about__tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 1024px) {
  .about__tiles {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

.about__tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
}

@media (min-width: 1024px) {
  .about__tile {
    gap: 4px;
    padding: 26px 22px;
  }
}

.about__tile--accent {
  background: var(--pink-100);
  border-color: var(--pink-600);
}

.about__tile-value {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.28px;
  line-height: 1.3;
  color: var(--black);
}

@media (min-width: 1024px) {
  .about__tile-value {
    font-size: 28px;
  }
}

.about__tile--accent .about__tile-value {
  color: #9704b9;
}

.about__tile-label {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-700);
}

@media (min-width: 1024px) {
  .about__tile-label {
    font-size: 12px;
  }
}

.about__numbers-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .about__numbers-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.about__text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black);
}

@media (min-width: 1024px) {
  .about__text-link {
    font-size: 16px;
  }
}

.about__text-link img {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.about__numbers-meta {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--grey-500);
}

.about__vision {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pink-900);
}

@media (min-width: 1024px) {
  .about__vision {
    min-height: 517px;
  }
}

.about__vision-media {
  position: absolute;
  inset: 0;
}

.about__vision-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__vision-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(226, 111, 255, 0.4) 0%, #9704b9 100%),
    rgba(151, 4, 185, 0.4);
  opacity: 0.85;
  mix-blend-mode: normal;
}

.about__vision-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 64px;
  padding-bottom: 64px;
  text-align: left;
}

@media (min-width: 1024px) {
  .about__vision-content {
    gap: 26px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.about__vision-label {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
}

.about__vision-quote {
  margin: 0;
  max-width: 1000px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.48px;
  line-height: 1.1;
  color: var(--white);
}

.about__group {
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .about__group {
    padding: 115px 0;
  }
}

.about__group-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

@media (min-width: 1024px) {
  .about__group-inner {
    gap: 115px;
  }
}

.about__group-header,
.about__facts-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

@media (min-width: 1024px) {
  .about__group-header,
  .about__facts-header {
    text-align: center;
    align-items: center;
  }
}

.about__org-viewport {
  width: 100%;
  margin-inline: calc(-1 * var(--container-pad));
  padding-inline: var(--container-pad);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.about__org-viewport::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .about__org-viewport {
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
}

.about__org {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 848px;
  min-width: 848px;
  /* 1px pad so overflow-y:hidden on the viewport does not clip box borders. */
  padding: 1px 1px 5px;
  box-sizing: content-box;
  --org-line: var(--grey-300);
  --org-line-w: 1px;
  --org-stub: 20px;
  --org-stem: 22px;
  --org-gap-top: 16px;
  --org-gap-bottom: 16px;
}

@media (min-width: 1024px) {
  .about__org {
    width: 100%;
    min-width: 0;
    padding: 0;
    box-sizing: border-box;
    --org-gap-bottom: 36px;
  }
}

.about__org-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--org-gap-top);
  width: max-content;
  position: relative;
}

.about__org-row--bottom {
  gap: var(--org-gap-bottom);
}

@media (min-width: 1024px) {
  .about__org-row {
    width: 100%;
  }

  .about__org-row--top {
    max-width: 876px;
  }

  .about__org-row--bottom {
    justify-content: center;
    width: auto;
  }
}

/*
 * Tree connectors drawn from each row so width always matches box centers:
 * left = center of first box, width = distance between the two centers.
 */
.about__org-row--top {
  margin-bottom: calc(var(--org-stub) + var(--org-stem));
}

.about__org-row--top::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc((100% - var(--org-gap-top)) / 4);
  width: calc((100% + var(--org-gap-top)) / 2);
  top: 100%;
  height: calc(var(--org-stub) + var(--org-stem));
  pointer-events: none;
  background:
    /* left stub down from first box */
    linear-gradient(var(--org-line), var(--org-line)) 0 0 / var(--org-line-w) var(--org-stub) no-repeat,
    /* right stub down from second box */
    linear-gradient(var(--org-line), var(--org-line)) 100% 0 / var(--org-line-w) var(--org-stub) no-repeat,
    /* horizontal bar */
    linear-gradient(var(--org-line), var(--org-line)) 0 var(--org-stub) / 100% var(--org-line-w) no-repeat,
    /* stem down to parent */
    linear-gradient(var(--org-line), var(--org-line)) 50% var(--org-stub) / var(--org-line-w) var(--org-stem) no-repeat;
}

.about__org-row--bottom {
  margin-top: calc(var(--org-stub) + var(--org-stem));
}

.about__org-row--bottom::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc((100% - var(--org-gap-bottom)) / 4);
  width: calc((100% + var(--org-gap-bottom)) / 2);
  bottom: 100%;
  height: calc(var(--org-stub) + var(--org-stem));
  pointer-events: none;
  background:
    /* stem down from parent */
    linear-gradient(var(--org-line), var(--org-line)) 50% 0 / var(--org-line-w) var(--org-stem) no-repeat,
    /* horizontal bar */
    linear-gradient(var(--org-line), var(--org-line)) 0 var(--org-stem) / 100% var(--org-line-w) no-repeat,
    /* left stub to first bottom box */
    linear-gradient(var(--org-line), var(--org-line)) 0 var(--org-stem) / var(--org-line-w) var(--org-stub) no-repeat,
    /* right stub to second bottom box */
    linear-gradient(var(--org-line), var(--org-line)) 100% var(--org-stem) / var(--org-line-w) var(--org-stub) no-repeat;
}

.about__org-box {
  flex: 0 0 350px;
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  min-width: 0;
  scroll-snap-align: start;
  position: relative;
  z-index: 1;
}

.about__org-box--parent {
  /* Parent sits in a column flex (.about__org) — do NOT use flex-basis here
     or it becomes height (was 263px tall empty box on mobile). */
  flex: none;
  width: 263px;
  background: var(--grey-50);
  border-color: var(--black);
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
}

.about__org-row--bottom .about__org-box {
  flex: 0 0 406px;
  width: 406px;
}

@media (min-width: 1024px) {
  .about__org-box {
    flex: 1;
    width: auto;
    scroll-snap-align: none;
  }

  .about__org-box--parent {
    flex: none;
    width: 380px;
  }

  .about__org-row--bottom .about__org-box {
    flex: 0 0 430px;
    width: 430px;
  }
}

.about__org-box--accent {
  background: var(--pink-100);
  border-color: var(--pink-600);
}

.about__org-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--grey-500);
}

.about__org-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: #121212;
}

@media (min-width: 1024px) {
  .about__org-name {
    font-size: 24px;
  }
}

.about__org-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey-600);
}

@media (min-width: 1024px) {
  .about__org-desc {
    font-size: 14px;
  }
}

.about__facts-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .about__facts-block {
    gap: 56px;
  }
}

.about__facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .about__facts {
    flex-direction: row;
    gap: 20px;
  }
}

.about__fact {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  text-align: left;
}

@media (min-width: 1024px) {
  .about__fact {
    padding: 30px;
  }
}

.about__fact-value {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.36px;
  line-height: 1.1;
  color: var(--pink-600);
}

.about__fact-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black);
}

.about__fact-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-700);
}

.about__shareholder {
  background: linear-gradient(90deg, rgba(246, 246, 246, 0.2) 0%, #f6f6f6 100%);
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .about__shareholder {
    padding: 115px 0;
  }
}

.about__shareholder-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .about__shareholder-inner {
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
  }
}

.about__shareholder-portrait {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .about__shareholder-portrait {
    width: 420px;
  }
}

.about__portrait {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pink-100);
}

@media (min-width: 1024px) {
  .about__portrait {
    height: 525px;
  }
}

.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__portrait-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about__portrait-name {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #121212;
}

.about__portrait-role {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-600);
}

.about__shareholder-bio {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  text-align: left;
}

.about__shareholder-bio > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey-700);
}

.about__shareholder-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  width: 100%;
}

@media (min-width: 1024px) {
  .about__shareholder-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 0;
    padding-top: 16px;
  }
}

.about__shareholder-fact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}

.about__shareholder-fact:first-child {
  padding-top: 0;
}

.about__shareholder-fact:last-child {
  padding-bottom: 0;
}

.about__shareholder-fact-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--grey-300);
  flex-shrink: 0;
}

.about__shareholder-fact-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 1024px) {
  .about__shareholder-fact {
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 0;
    border-top: 1px solid var(--grey-300);
  }

  .about__shareholder-fact:first-child {
    padding-top: 12px;
  }

  .about__shareholder-fact-rule {
    display: none;
  }
}

.about__shareholder-fact-value {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.28px;
  line-height: 1.3;
  color: #121212;
}

@media (min-width: 1024px) {
  .about__shareholder-fact-value {
    font-size: 28px;
  }
}

.about__shareholder-fact-label {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-700);
}

@media (min-width: 1024px) {
  .about__shareholder-fact-label {
    font-size: 12px;
  }
}

.about__oversight {
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .about__oversight {
    padding: 115px 0;
  }
}

.about__oversight-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 1024px) {
  .about__oversight-inner {
    gap: 56px;
  }
}

.about__oversight-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

@media (min-width: 1024px) {
  .about__oversight-header {
    text-align: center;
    align-items: center;
  }

  .about__oversight-header .about__section-title {
    max-width: 760px;
  }

  .about__oversight-header .about__section-lead {
    max-width: 660px;
    color: var(--grey-600);
  }
}

.about__table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about__table-rule {
  height: 1px;
  background: var(--grey-200);
  width: 100%;
}

.about__table-rule--dark {
  height: 1.5px;
  background: #121212;
}

.about__table-head {
  display: none;
}

@media (min-width: 1024px) {
  .about__table-head {
    display: grid;
    grid-template-columns: 397px 1fr 210px;
    gap: 48px;
    padding: 14px 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--grey-500);
  }

  .about__table-head span:last-child {
    text-align: right;
  }
}

.about__table-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 0;
}

@media (min-width: 1024px) {
  .about__table-row {
    display: grid;
    grid-template-columns: 397px 1fr 210px;
    gap: 48px;
    align-items: flex-start;
    padding: 32px 0;
  }
}

.about__table-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
  color: #121212;
}

@media (min-width: 1024px) {
  .about__table-title {
    font-size: 24px;
  }
}

.about__table-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about__table-subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #121212;
}

.about__table-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-600);
}

.about__table-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #121212;
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .about__table-link {
    justify-content: flex-end;
  }
}

.about__table-link img {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.about__table-foot {
  margin: 0;
  padding-top: 24px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-600);
}

.about__people {
  background: var(--grey-50);
  padding: 64px 0;
}

@media (min-width: 1024px) {
  .about__people {
    padding: 115px 0;
  }
}

.about__people-inner {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.about__people-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.about__people-intro .about__section-lead {
  max-width: 484px;
  color: var(--grey-600);
}

.about__people-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about__people-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  text-align: left;
}

@media (min-width: 1024px) {
  .about__people-label {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.about__people-heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #121212;
}

.about__people-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-600);
}

.about__people-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

@media (min-width: 1024px) {
  .about__people-grid {
    flex-direction: row;
    gap: 28px;
  }
}

.about__person {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__person-photo {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--pink-100);
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .about__person-photo {
    height: 365px;
  }
}

.about__person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__person-name-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.about__person-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #121212;
}

.about__person-linkedin {
  display: inline-flex;
  margin-top: 2px;
  flex-shrink: 0;
}

.about__person-linkedin img {
  width: 22px;
  height: 22px;
  display: block;
}

.about__person-role {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pink-600);
}

.about__person-bio {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-600);
}

.about__people-rule {
  width: 100%;
  height: 1px;
  background: var(--grey-300);
}

/* === media-page === */
.media-page__section {
  background: var(--white);
}

.media-page__inner {
  padding-top: 24px;
  padding-bottom: 36px;
}

@media (min-width: 1024px) {
  .media-page__inner {
    padding-top: 32px;
    padding-bottom: 80px;
  }
}

.media-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-600);
}

.media-page__breadcrumb a {
  color: var(--grey-600);
  text-decoration: none;
}

.media-page__breadcrumb a:hover {
  color: var(--pink-600);
}

.media-page__crumb-sep {
  color: var(--grey-400);
}

.media-page__intro {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}

@media (min-width: 1024px) {
  .media-page__intro {
    margin-bottom: 40px;
  }
}

.media-page__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.36px;
  color: var(--black);
}

@media (min-width: 1024px) {
  .media-page__title {
    font-size: 48px;
    letter-spacing: -0.48px;
  }
}

.media-page__lead {
  margin: 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--grey-700);
}

.media-page__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.media-page__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--grey-200);
  text-decoration: none;
  color: inherit;
}

@media (min-width: 1024px) {
  .media-page__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
}

.media-page__outlet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

@media (min-width: 1024px) {
  .media-page__outlet {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    width: 200px;
    flex-shrink: 0;
  }
}

.media-page__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.media-page__brand--logo {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.media-page__brand--logo img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.media-page__brand-name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--grey-700);
}

.media-page__brand--fintech {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.6px;
}

.media-page__fintech-top {
  color: #5b2d8e;
}

.media-page__fintech-bottom {
  color: var(--grey-700);
  letter-spacing: 3.2px;
}

.media-page__brand--p2pmd {
  color: #0d2c6b;
  font-weight: 800;
}

.media-page__p2p-top {
  font-size: 19px;
  line-height: 1.1;
}

.media-page__p2p-bottom {
  font-size: 8px;
  line-height: 1.1;
  letter-spacing: 1.28px;
}

.media-page__brand--crowdfund {
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.media-page__brand--crowdfund img {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.media-page__cf-text {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 12px;
  line-height: 1.15;
}

.media-page__cf-top {
  color: var(--green-700);
}

.media-page__cf-bottom {
  color: var(--grey-700);
}

.media-page__brand--altfi {
  flex-direction: row;
  align-items: center;
  gap: 3px;
  font-weight: 800;
  font-size: 18px;
  line-height: normal;
  color: #1d4ed8;
}

.media-page__fi {
  background: #1d4ed8;
  color: var(--white);
  border-radius: 3px;
  padding: 1px 5px;
}

.media-page__brand--empire {
  font-weight: 700;
  letter-spacing: 0.64px;
}

.media-page__empire-top {
  font-size: 16px;
  line-height: 1.18;
  color: var(--grey-700);
}

.media-page__empire-bottom {
  font-size: 10px;
  line-height: 1.18;
  letter-spacing: 1.8px;
  color: var(--grey-500);
}

.media-page__date {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.72px;
  color: var(--grey-500);
  white-space: nowrap;
}

.media-page__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 1024px) {
  .media-page__body {
    gap: 6px;
  }
}

.media-page__bodies {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

@media (min-width: 1024px) {
  .media-page__bodies {
    gap: 32px;
  }

  .media-page__item--group {
    align-items: flex-start;
  }
}

.media-page__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: var(--black);
  transition: color var(--duration) var(--ease);
}

.media-page__item:not(.media-page__item--group):hover .media-page__headline,
.media-page__item:not(.media-page__item--group):focus-visible .media-page__headline,
.media-page__body:hover .media-page__headline,
.media-page__body:focus-visible .media-page__headline {
  color: var(--pink-600);
}

.media-page__summary {
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey-600);
}

@media (min-width: 1024px) {
  .media-page__summary {
    max-width: 800px;
  }
}

.media-page__title .dot { color: var(--pink-accent, #d327fb); }

