/* Shared foundation and page sections. Component-specific rules live alongside this file. */
:root {
  --bg: #ffffff;
  --navy: #071a35;
  --navy-2: #0b2345;
  --navy-3: #122d52;
  --accent: #ff5b59;
  --accent-dark: #ef4e4c;
  --green: #43d184;
  --text: #081b39;
  --muted: #5f708c;
  --border: #dce3ec;
  --light: #f7f9fb;
  --white: #ffffff;
  --container: 1280px;
  --radius: 8px;
  --shadow: 0 10px 27px rgba(9, 27, 54, .07);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
p { color: var(--muted); line-height: 1.62; }
button, input, textarea, select { font: inherit; }
svg { display: block; }

.container {
  width: min(var(--container), calc(100% - 72px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  white-space: nowrap;
}

.eyebrow {
  margin-bottom: 19px;
  color: var(--accent);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: .86rem;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover { transform: translateY(-1px); }
.button--accent { background: var(--accent); color: #fff; }
.button--accent:hover { background: var(--accent-dark); }
.button--ghost { border-color: rgba(255, 255, 255, .72); color: #fff; }
.button--ghost svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.solutions { padding: 0 0 30px; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  min-height: 360px;
  padding: 30px 32px 25px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.hex {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  clip-path: polygon(50% 0%, 92% 24%, 92% 76%, 50% 100%, 8% 76%, 8% 24%);
  background: var(--navy);
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
}

.hex--candles { gap: 5px; }
.hex--candles i {
  width: 5px;
  height: 29px;
  background: #79b9ed;
}
.hex--candles i:nth-child(2) { height: 41px; background: #41c68a; }
.hex--candles i:nth-child(3) { height: 22px; background: #a9d8ff; }
.hex--person::before { content: "♙"; font-size: 2.1rem; font-weight: 400; }

.solution-card h2 {
  display: inline-block;
  max-width: calc(100% - 74px);
  margin: 7px 0 23px 13px;
  vertical-align: top;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -.04em;
}

.solution-card p { min-height: 69px; margin-bottom: 15px; font-size: .8rem; }

.solution-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--muted);
  font-size: .74rem;
  list-style: none;
}

.solution-card li::before {
  content: "✓";
  display: inline-grid;
  width: 15px;
  height: 15px;
  place-items: center;
  margin-right: 9px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: .58rem;
}

.solution-card > a,
.section-header a,
.post a {
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
}

.solution-card a span,
.section-header a span,
.post a span { margin-left: 10px; color: var(--accent); font-size: 1.1rem; }

.performance { padding: 0 0 42px; }

.performance__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, 1fr);
  gap: 30px;
  padding: 38px 32px 28px;
  border: 1px solid rgba(39, 151, 248, .55);
  border-radius: 9px;
  background: linear-gradient(112deg, #0b2345, #071a35);
  color: #fff;
}

.performance h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.54rem;
  letter-spacing: -.045em;
}

.performance__tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 15px;
}

.performance__tabs button {
  padding: 12px 18px;
  border: 1px solid #233b5c;
  border-radius: 4px;
  background: transparent;
  color: #d3deed;
  cursor: pointer;
  font-size: .7rem;
  font-family: inherit;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
}

.performance__tabs .selected { border-color: var(--accent); background: var(--accent); color: #fff; box-shadow: 0 0 22px rgba(255, 82, 90, .2); }
.report-equity .chart-primary { stroke: #31b8ff; transition: d .7s ease, opacity .25s ease; }
.report-equity .chart-fill { transition: d .7s ease, opacity .25s ease; }
.report-equity .chart-benchmark { fill: none; stroke: #f7a30c; stroke-width: 2.4; stroke-dasharray: 6 5; }
.report-equity.is-switching .chart-primary,
.report-equity.is-switching .chart-fill { opacity: .45; }

.legend {
  display: flex;
  gap: 46px;
  padding: 9px 54px 0;
  color: #d1dcec;
  font-size: .68rem;
}

.legend span::before {
  content: "";
  display: inline-block;
  width: 25px;
  margin-right: 12px;
  vertical-align: middle;
  border-top: 2px solid #31b8ff;
}

.legend .bench::before { border-top: 2px dashed #f7a30c; }

.performance__note {
  margin: 18px 0 0 54px;
  color: #8ea5c1;
  font-size: .68rem;
}

.performance__metrics {
  padding-left: 23px;
  border-left: 1px solid #223b5c;
}

.performance__headers {
  display: grid;
  grid-template-columns: minmax(122px, 1fr) repeat(2, minmax(104px, .92fr));
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-align: center;
}

.performance__headers strong {
  display: flex;
  min-height: 81px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border: 1px solid #1859af;
  border-radius: 7px;
  background: rgba(14, 57, 126, .75);
  color: #eef5ff;
  cursor: default;
  font-size: 1.35rem;
  font-family: inherit;
  font-weight: 800;
  line-height: 1.25;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.performance__headers strong.selected {
  border-color: #31b8ff;
  background: rgba(22, 92, 180, .92);
  box-shadow: 0 0 28px rgba(49, 184, 255, .18), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.performance__headers strong:last-child {
  border-color: #9f6913;
  background: rgba(111, 71, 8, .72);
}

.performance__headers small { margin-top: 10px; font-size: .62rem; font-weight: 500; }

.performance__metrics article {
  display: grid;
  grid-template-columns: minmax(122px, 1fr) repeat(2, minmax(104px, .92fr));
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #1b3555;
}
.performance__metrics article,
.performance__metrics [data-report-download],
.legend [data-report-legend],
.performance [data-benchmark-title] { transition: opacity .25s ease; }
.performance__panel.is-switching .performance__metrics article,
.performance__panel.is-switching .performance__metrics [data-report-download],
.performance__panel.is-switching .legend [data-report-legend],
.performance__panel.is-switching [data-benchmark-title] { opacity: .45; }

.performance__metrics span { color: #e1eafa; font-size: .76rem; }
.performance__metrics .metric-name small { display: block; margin-top: 5px; color: #92a8c1; }
.performance__metrics strong {
  display: block;
  text-align: center;
  color: #fff;
  font-size: clamp(1.08rem, 2vw, 1.5rem);
  letter-spacing: -.05em;
}
.performance__metrics small { color: #aabacf; font-size: .66rem; }
.performance__metrics .positive { color: var(--green); }
.performance__metrics .negative { color: var(--accent); }
.performance__metrics .strategy-value { color: #34b6f8; }
.performance__metrics .benchmark-positive { color: #f4a320; }
.performance__metrics .button { width: 100%; margin-top: 20px; font-size: .73rem; }

.process { padding: 0 0 54px; }

.center-title {
  margin: 0 0 33px;
  text-align: center;
  font-size: 1.62rem;
  letter-spacing: -.05em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
  max-width: 1050px;
  margin: 0 auto;
}

.steps article {
  position: relative;
  text-align: center;
}

.steps article:not(:last-child)::after {
  position: absolute;
  top: 39px;
  left: calc(50% + 48px);
  width: calc(100% - 50px);
  border-top: 1px dashed #bac8db;
  content: "";
}

.steps article:not(:last-child)::before {
  position: absolute;
  top: 35px;
  right: -27px;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.step-icon {
  display: inline-grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid #bccce0;
  border-radius: 50%;
  color: var(--navy);
}

.step-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.steps h3 { margin-bottom: 10px; font-size: .94rem; }
.steps p { font-size: .68rem; line-height: 1.6; }

.articles { padding: 0 0 43px; }

.section-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 23px;
}

.section-header h2 { font-size: 1.58rem; letter-spacing: -.05em; }

.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.post {
  display: grid;
  grid-template-columns: 143px 1fr;
  min-height: 204px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
}

.post > div:last-child { padding: 22px 18px 15px; }
.post h3 { margin-bottom: 15px; font-size: .84rem; line-height: 1.45; }
.post p { margin-bottom: 12px; font-size: .67rem; line-height: 1.65; }
.post a { font-size: .7rem; }

.post-chart {
  position: relative;
  background-color: var(--navy);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.post-chart::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 24, 49, .64) 0%, transparent 45%, rgba(7, 24, 49, .18) 100%);
}

.post-chart b {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 17px;
  padding: 7px 9px 6px;
  border: 1px solid rgba(133, 191, 230, .2);
  border-radius: 6px;
  background: rgba(8, 27, 55, .48);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.25;
  backdrop-filter: blur(5px);
}
.post-chart small { font-size: .58rem; }

.post-chart--risk {
  background-image: url("../assets/articles/risk-management.jpg");
}
.post-chart--bars {
  background-image: url("../assets/articles/strategy-diversification.jpg");
}
.post-chart--candle {
  background-image: url("../assets/articles/futures-vs-cfd.jpg");
}

.cta {
  padding: 41px 0;
  background: var(--navy-2);
  color: #fff;
}

.cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 45px;
}

.cta h2 { margin-bottom: 11px; color: #fff; font-size: 1.52rem; letter-spacing: -.04em; }
.cta p { max-width: 580px; color: #dde5f0; font-size: .84rem; }
.cta__actions { display: flex; gap: 20px; }

.footer {
  padding: 42px 0 20px;
  background: var(--navy);
  color: #fff;
  border-top: 1px solid #344966;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.1fr .82fr 1fr 1.08fr 1.12fr;
  gap: 47px;
  padding-bottom: 39px;
}

.footer__brand img { display: block; width: 132px; height: auto; object-fit: contain; }
.footer__brand p { max-width: 190px; margin-top: 15px; color: #bbc8d9; font-size: .7rem; }
.footer__column h2 { margin: 9px 0 24px; color: #fff; font-size: .82rem; }
.footer__column > a { display: block; margin-bottom: 9px; color: #c1cddd; font-size: .7rem; }
.footer__column p { color: #c1cddd; font-size: .7rem; }

.social { display: flex; gap: 13px; margin-top: 20px; }
.social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #233c5d;
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
}

.subscribe form {
  display: flex;
  height: 45px;
  margin-top: 24px;
}
.subscribe input {
  min-width: 0;
  width: 100%;
  padding-left: 14px;
  border: 0;
  border-radius: 4px 0 0 4px;
  font-size: .72rem;
}
.subscribe button {
  width: 45px;
  border: 0;
  border-radius: 0 4px 4px 0;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid #213a59;
}
.footer__bottom p,
.footer__bottom a { color: #95a7bd; font-size: .66rem; }
.footer__bottom div { display: flex; gap: 41px; }

/* Contacts */
.contacts-hero {
  padding: 66px 0;
  background:
    radial-gradient(circle at 80% 48%, rgba(41, 103, 163, .22), transparent 32%),
    linear-gradient(112deg, #07162e, #071c38);
  color: #fff;
}

.contacts-hero__grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 76px;
  align-items: center;
}

.contacts-hero h1 {
  color: #fff;
  font-size: clamp(2.45rem, 3.6vw, 3.35rem);
  line-height: 1.15;
  letter-spacing: -.055em;
}
.contacts-hero p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 22px;
  color: #cfdae9;
}

.contacts-hero__cards { display: grid; gap: 15px; }
.contacts-hero__cards article {
  display: grid;
  gap: 9px;
  padding: 24px 28px;
  border: 1px solid #29405f;
  border-radius: 7px;
  background: rgba(19, 42, 71, .65);
}
.contacts-hero__cards span { color: #8fa4be; font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contacts-hero__cards a { color: #fff; font-size: 1.05rem; font-weight: 700; }

.contacts-content { padding: 58px 0 64px; }
.contacts-content__grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 70px;
}
.contacts-copy h2 {
  margin-bottom: 17px;
  font-size: 2rem;
  letter-spacing: -.055em;
}
.contacts-copy > p:not(.eyebrow) { max-width: 430px; }
.contacts-points { display: grid; gap: 22px; margin-top: 46px; }
.contacts-points article { display: grid; grid-template-columns: 53px 1fr; column-gap: 17px; }
.contacts-points b {
  grid-row: span 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #fff2f1;
  color: var(--accent);
  font-family: "Roboto Mono", monospace;
}
.contacts-points h3 { margin: 2px 0 5px; font-size: .93rem; }
.contacts-points p { font-size: .77rem; }

.contacts-page__panel {
  padding: 39px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.feedback-form .form-honey {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.form-status { margin: 0 0 15px; font-size: .85rem; font-weight: 700; }
.form-status--success { color: var(--green); }
.form-status--error { color: var(--accent); }
.feedback-form { display: grid; gap: 18px; }
.feedback-form label { display: grid; gap: 8px; color: var(--text); font-size: .75rem; font-weight: 700; }
.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  padding: 0 17px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  font-size: .84rem;
}
.feedback-form input,
.feedback-form select { height: 53px; }
.feedback-form textarea { min-height: 126px; padding-top: 15px; resize: vertical; }
.feedback-form input::placeholder,
.feedback-form textarea::placeholder { color: #8997aa; }
.feedback-form button { width: 100%; border: 0; margin-top: 4px; cursor: pointer; }

/* Shop page */
.shop-page { background: var(--light); }
.shop-hero {
  overflow: hidden;
  padding: 82px 0 76px;
  background:
    radial-gradient(circle at 82% 22%, rgba(34, 197, 94, .18), transparent 32%),
    radial-gradient(circle at 18% 12%, rgba(29, 78, 216, .2), transparent 30%),
    linear-gradient(116deg, #06152c, #071d49 62%, #0b2a63);
  color: #fff;
}
.shop-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  max-width: none;
}
.shop-hero__copy { min-width: 0; }
.shop-hero h1 {
  margin: 8px 0 18px;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.075em;
}
.shop-hero p:not(.eyebrow) {
  max-width: 660px;
  color: #d7e2f1;
  font-size: 1rem;
  line-height: 1.75;
}
.shop-hero__visual {
  position: relative;
  min-width: 0;
  margin: 0;
  isolation: isolate;
}
.shop-hero__visual::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background:
    radial-gradient(circle at 58% 48%, rgba(29, 78, 216, .2), transparent 55%),
    radial-gradient(circle at 76% 34%, rgba(34, 197, 94, .13), transparent 42%);
  filter: blur(14px);
}
.shop-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
}
.shop-products { padding: 64px 0 76px; }
.shop-products__head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}
.shop-products__head h2 {
  margin-top: 7px;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -.065em;
}
.shop-products__head > p {
  max-width: 390px;
  color: var(--muted);
  font-size: .86rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.shop-card {
  display: grid;
  min-height: 500px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 29, 73, .08);
}
.shop-card__top span {
  color: var(--blue);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.shop-card h3 {
  margin: 12px 0 10px;
  color: var(--text);
  font-size: 1.8rem;
  letter-spacing: -.045em;
}
.shop-card__top p {
  max-width: 440px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
}
.shop-card__price {
  align-self: center;
  margin: 30px 0 18px;
  color: var(--navy);
  font-family: "Roboto Mono", monospace;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -.08em;
}
.shop-card__license {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 22px;
}
.shop-card__license-label {
  display: block;
  margin: 0 0 9px;
  color: #64748b;
  font-family: "Roboto Mono", monospace;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.shop-card__license-option {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #dbe4f0;
  border-radius: 7px;
  background: #f8fafc;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.shop-card__license-option:hover,
.shop-card__license-option:focus-visible {
  border-color: rgba(29, 78, 216, .55);
  color: var(--blue);
  outline: none;
}
.shop-card__license-option.is-active {
  border-color: rgba(34, 197, 94, .45);
  background: linear-gradient(135deg, rgba(29, 78, 216, .1), rgba(34, 197, 94, .12));
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, .18);
}
.shop-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}
.shop-card__meta div {
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 7px;
  background: #f8fafc;
}
.shop-card__meta dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.shop-card__meta dd {
  color: var(--text);
  font-weight: 800;
}
.shop-card__wallet {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}
.shop-card__wallet span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.shop-card__wallet code {
  overflow-wrap: anywhere;
  padding: 12px 13px;
  border-radius: 7px;
  background: #eef4ff;
  color: var(--navy);
  font-family: "Roboto Mono", monospace;
  font-size: .76rem;
  line-height: 1.55;
}
.shop-card__buy {
  align-self: end;
  width: 100%;
  border: 0;
  cursor: pointer;
}
.shop-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}

/* Quantix portfolio */
.quantix-hero {
  padding: 72px 0;
  background:
    radial-gradient(circle at 78% 39%, rgba(37, 137, 208, .18), transparent 35%),
    linear-gradient(112deg, #06152c, #071c38 61%, #092343);
  color: #fff;
}

.quantix-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
}

.quantix-hero-title {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.6rem, 4.2vw, 4.05rem);
  line-height: 1.05;
  letter-spacing: -.07em;
}

.quantix-hero-subtitle {
  max-width: 610px;
  color: #d1dceb;
  font-size: 1rem;
  line-height: 1.72;
}

.quantix-hero-image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(80, 150, 215, .28);
  border-radius: 9px;
  background: rgba(7, 25, 50, .45);
  box-shadow: 0 28px 70px rgba(2, 12, 30, .3);
}

.quantix-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.quantix-product {
  padding: 28px 0;
  background: #fff;
}

.quantix-product__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.quantix-product article {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
}

.quantix-product span,
.quantix-metric-card span {
  display: block;
  margin-bottom: 8px;
  color: #7588a2;
  font-size: .68rem;
}

.quantix-product strong {
  color: var(--navy);
  font-size: .86rem;
}

.quantix-product small {
  display: block;
  margin-top: 6px;
  color: #7588a2;
  font-size: .64rem;
  line-height: 1.45;
}

.quantix-metrics-section {
  padding: 66px 0 72px;
  background:
    radial-gradient(circle at 85% 10%, rgba(46, 196, 151, .16), transparent 32%),
    linear-gradient(112deg, #071a35, #0b2445);
  color: #fff;
}

.quantix-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.quantix-section-head h2,
.quantix-comparison h2,
.quantix-cta h2 {
  margin-bottom: 20px;
  color: inherit;
  font-size: clamp(1.72rem, 2.7vw, 2.15rem);
  line-height: 1.25;
  letter-spacing: -.05em;
}

.quantix-section-head p:not(.eyebrow),
.quantix-comparison p,
.quantix-cta p {
  max-width: 760px;
  color: inherit;
  font-size: .84rem;
  line-height: 1.75;
  opacity: .82;
}

.quantix-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quantix-metric-card {
  min-height: 134px;
  padding: 24px 22px;
  border: 1px solid rgba(87, 165, 226, .25);
  border-radius: 7px;
  background: rgba(8, 30, 58, .72);
  box-shadow: 0 18px 42px rgba(0, 10, 25, .18), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.quantix-metric-card strong {
  display: block;
  color: #39e196;
  font-size: clamp(1.65rem, 2.7vw, 2.2rem);
  letter-spacing: -.055em;
}

.quantix-metric-card:nth-child(2n) strong,
.quantix-metric-card:nth-child(3n) strong {
  color: #45bdff;
}

.quantix-investor-thesis {
  padding: 68px 0;
}

.quantix-investor-thesis .quantix-section-head {
  color: var(--navy);
}

.quantix-thesis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quantix-thesis-grid article {
  min-height: 236px;
  padding: 25px 23px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(12, 32, 60, .05);
}

.quantix-thesis-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-family: "Roboto Mono", monospace;
  font-size: .74rem;
  font-weight: 700;
}

.quantix-thesis-grid h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1rem;
}

.quantix-thesis-grid p {
  font-size: .73rem;
}

.quantix-comparison {
  padding: 68px 0;
  background: var(--light);
}

.quantix-comparison__panel {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  border: 1px solid #dfe8f4;
  border-radius: 9px;
  background: #fff;
}

.quantix-comparison__copy {
  color: var(--navy);
}

.quantix-comparison__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.quantix-comparison__card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #f8fafc;
}

.quantix-comparison__card--featured {
  border-color: rgba(50, 188, 255, .45);
  background:
    radial-gradient(circle at 88% 0%, rgba(46, 196, 151, .16), transparent 35%),
    #071a35;
  color: #fff;
}

.quantix-comparison__card h3 {
  margin-bottom: 18px;
  color: inherit;
  font-size: 1.18rem;
}

.quantix-comparison__card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quantix-comparison__card li {
  position: relative;
  padding-left: 24px;
  color: inherit;
  font-size: .76rem;
  line-height: 1.55;
}

.quantix-comparison__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.quantix-comparison__card--featured li::before {
  background: var(--green);
}

.quantix-cta {
  padding: 66px 0;
  background: #071a35;
}

.quantix-cta__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 40px 42px;
  border: 1px solid rgba(70, 165, 230, .34);
  border-radius: 9px;
  background:
    radial-gradient(circle at 85% 25%, rgba(46, 196, 151, .16), transparent 30%),
    linear-gradient(112deg, #0b2345, #071a35);
  color: #fff;
}

.quantix-cta__actions {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
}

.quantix-risk-disclaimer {
  padding: 0 0 54px;
  background: #071a35;
}

.quantix-risk-disclaimer p {
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 7px;
  color: #aabacf;
  font-size: .75rem;
}

/* Aurix portfolio */
.aurix-hero {
  padding: 72px 0;
  background:
    radial-gradient(circle at 77% 38%, rgba(45, 196, 151, .16), transparent 34%),
    linear-gradient(112deg, #06152c, #071c38 60%, #08233f);
  color: #fff;
}

.aurix-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
}

.aurix-hero-title {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.6rem, 4.2vw, 4.05rem);
  line-height: 1.05;
  letter-spacing: -.07em;
}

.aurix-hero-subtitle {
  max-width: 650px;
  color: #d1dceb;
  font-size: 1rem;
  line-height: 1.72;
}

.aurix-hero-image {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(80, 180, 190, .3);
  border-radius: 9px;
  background: rgba(7, 25, 50, .45);
  box-shadow: 0 28px 70px rgba(2, 12, 30, .3);
}

.aurix-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.aurix-quick-stats {
  padding: 28px 0;
  background: #fff;
}

.aurix-quick-stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.aurix-quick-stats article {
  padding: 18px 18px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
}

.aurix-quick-stats span,
.aurix-metric-card span {
  display: block;
  margin-bottom: 8px;
  color: #7588a2;
  font-size: .68rem;
}

.aurix-quick-stats strong {
  color: var(--navy);
  font-size: .86rem;
}

.aurix-metrics-section {
  padding: 66px 0 72px;
  background:
    radial-gradient(circle at 84% 10%, rgba(46, 196, 151, .16), transparent 32%),
    linear-gradient(112deg, #071a35, #0b2445);
  color: #fff;
}

.aurix-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.aurix-section-head h2,
.aurix-cta h2 {
  margin-bottom: 20px;
  color: inherit;
  font-size: clamp(1.72rem, 2.7vw, 2.15rem);
  line-height: 1.25;
  letter-spacing: -.05em;
}

.aurix-section-head p:not(.eyebrow),
.aurix-cta p {
  max-width: 760px;
  color: inherit;
  font-size: .84rem;
  line-height: 1.75;
  opacity: .82;
}

.aurix-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.aurix-metric-card {
  min-height: 134px;
  padding: 24px 22px;
  border: 1px solid rgba(87, 165, 226, .25);
  border-radius: 7px;
  background: rgba(8, 30, 58, .72);
  box-shadow: 0 18px 42px rgba(0, 10, 25, .18), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.aurix-metric-card strong {
  display: block;
  color: #39e196;
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  letter-spacing: -.055em;
}

.aurix-metric-card:nth-child(2n) strong,
.aurix-metric-card:nth-child(4n) strong {
  color: #45bdff;
}

.aurix-metric-card:nth-child(4) strong {
  color: #ffb03a;
}

.aurix-equity-section {
  padding: 68px 0;
  background: var(--light);
}

.aurix-equity__panel {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background:
    radial-gradient(circle at 82% 8%, rgba(49, 184, 255, .12), transparent 32%),
    #fff;
}

.aurix-equity__panel .aurix-section-head {
  color: var(--navy);
}

.aurix-equity-chart {
  width: 100%;
  overflow: visible;
}

.aurix-equity-grid {
  fill: none;
  stroke: rgba(83, 112, 148, .16);
  stroke-width: 1;
}

.aurix-equity-area {
  fill: url(#aurixEquityArea);
}

.aurix-equity-line {
  fill: none;
  stroke: #31b8ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(49, 184, 255, .22));
}

.aurix-equity-years text {
  fill: #647993;
  font-size: .72rem;
}

.aurix-equity-annual {
  margin-top: 36px;
  padding-top: 34px;
  border-top: 1px solid rgba(83, 112, 148, .16);
}

.aurix-yearly-performance {
  padding: 68px 0;
  background: var(--light);
}

.aurix-equity-annual .aurix-section-head,
.aurix-yearly-performance .aurix-section-head,
.aurix-investor-thesis .aurix-section-head {
  color: var(--navy);
}

.aurix-yearly__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: stretch;
}

.aurix-year-bars {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
}

.aurix-year-bars article {
  display: grid;
  grid-template-columns: 74px 110px 1fr;
  gap: 14px;
  align-items: center;
}

.aurix-year-bars span {
  color: var(--navy);
  font-size: .72rem;
  font-weight: 800;
}

.aurix-year-bars b {
  color: #526783;
  font-size: .72rem;
}

.aurix-year-bars i {
  display: block;
  width: var(--value);
  height: 10px;
  border-radius: 20px;
  background: linear-gradient(90deg, #2bb7f2, #46d58a);
  box-shadow: 0 0 10px rgba(70, 213, 138, .18);
}

.aurix-year-bars .is-negative i {
  background: linear-gradient(90deg, #ff6864, #f1a343);
}

.aurix-year-bars .is-best b {
  color: var(--navy);
}

.aurix-yearly__summary {
  display: grid;
  gap: 12px;
}

.aurix-yearly__summary article {
  padding: 20px;
  border: 1px solid #dfe8f4;
  border-radius: 7px;
  background: #fff;
}

.aurix-yearly__summary span {
  display: block;
  margin-bottom: 8px;
  color: #7588a2;
  font-size: .68rem;
}

.aurix-yearly__summary strong {
  color: var(--navy);
  font-size: .88rem;
}

.aurix-investor-thesis {
  padding: 68px 0;
}

.aurix-thesis-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.aurix-thesis-grid article {
  min-height: 252px;
  padding: 25px 22px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(12, 32, 60, .05);
}

.aurix-thesis-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-family: "Roboto Mono", monospace;
  font-size: .74rem;
  font-weight: 700;
}

.aurix-thesis-grid h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: .95rem;
}

.aurix-thesis-grid p {
  font-size: .72rem;
}

.aurix-cta {
  padding: 66px 0;
  background: #071a35;
}

.aurix-cta__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 40px 42px;
  border: 1px solid rgba(70, 165, 230, .34);
  border-radius: 9px;
  background:
    radial-gradient(circle at 85% 25%, rgba(46, 196, 151, .16), transparent 30%),
    linear-gradient(112deg, #0b2345, #071a35);
  color: #fff;
}

.aurix-cta__actions {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
}

.aurix-risk-disclaimer {
  padding: 0 0 54px;
  background: #071a35;
}

.aurix-risk-disclaimer p {
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 7px;
  color: #aabacf;
  font-size: .75rem;
}

/* About */
.about-hero {
  padding: 68px 0;
  background:
    radial-gradient(circle at 80% 43%, rgba(33, 124, 193, .2), transparent 34%),
    linear-gradient(112deg, #06152c, #071c38 61%, #092343);
  color: #fff;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 74px;
  align-items: center;
}

.about-hero h1 {
  margin-bottom: 23px;
  color: #fff;
  font-size: clamp(2.6rem, 4.2vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -.06em;
}

.about-hero__lead {
  max-width: 555px;
  color: #cfdae9;
  font-size: .92rem;
}

.about-thesis {
  display: grid;
  gap: 12px;
}

.about-thesis article {
  display: grid;
  grid-template-columns: 51px 1fr;
  column-gap: 17px;
  padding: 19px 22px;
  border: 1px solid #294260;
  border-radius: 7px;
  background: rgba(18, 42, 71, .58);
}

.about-thesis span {
  grid-row: span 2;
  color: var(--accent);
  font-family: "Roboto Mono", monospace;
  font-size: .72rem;
  font-weight: 700;
}

.about-thesis h2 {
  margin-bottom: 5px;
  color: #fff;
  font-size: .92rem;
}

.about-thesis p {
  color: #bac9da;
  font-size: .71rem;
}

.about-story {
  padding: 66px 0;
}

.about-story__grid {
  display: grid;
  grid-template-columns: .83fr 1fr;
  gap: 76px;
}

.about-story h2,
.about-values h2,
.about-platform h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
  line-height: 1.28;
  letter-spacing: -.052em;
}

.about-story__copy p {
  margin-bottom: 19px;
  font-size: .86rem;
}

.about-values {
  padding: 57px 0 65px;
  background: var(--light);
}

.about-values h2 {
  margin-bottom: 37px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-values__grid article {
  min-height: 191px;
  padding: 25px 22px;
  border: 1px solid #e0e7ef;
  border-radius: 7px;
  background: #fff;
}

.about-values__grid b {
  display: block;
  margin-bottom: 21px;
  color: var(--accent);
  font-family: "Roboto Mono", monospace;
  font-size: .75rem;
}

.about-values__grid h3 {
  margin-bottom: 11px;
  color: var(--navy);
  font-size: .92rem;
}

.about-values__grid p {
  font-size: .7rem;
}

.about-platform {
  padding: 63px 0 66px;
}

.about-platform__panel {
  display: grid;
  grid-template-columns: .87fr 1fr;
  gap: 62px;
  padding: 41px 43px;
  border-radius: 9px;
  background:
    radial-gradient(circle at 86% 38%, rgba(38, 173, 233, .12), transparent 35%),
    var(--navy);
}

.about-platform h2 {
  margin-bottom: 17px;
  color: #fff;
}

.about-platform p:not(.eyebrow) {
  color: #b2c2d6;
  font-size: .79rem;
}

.about-platform__map {
  display: grid;
  gap: 13px;
}

.about-platform__map article {
  padding: 20px 21px;
  border: 1px solid #294260;
  border-radius: 6px;
  background: rgba(17, 40, 69, .48);
}

.about-platform__map span {
  display: block;
  margin-bottom: 9px;
  color: #7e99b7;
  font-family: "Roboto Mono", monospace;
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-platform__map strong {
  display: block;
  margin-bottom: 6px;
  color: #41c9ff;
  font-size: .98rem;
}

.about-platform__map article:last-child strong {
  color: var(--green);
}

.about-platform__map p {
  font-size: .69rem;
}

/* Research catalog */
.research-page {
  background: #fff;
}

.research-hero {
  padding: 64px 0 58px;
  border-bottom: 1px solid rgba(132, 162, 198, .16);
  background:
    radial-gradient(circle at 80% 43%, rgba(33, 124, 193, .2), transparent 34%),
    linear-gradient(112deg, #06152c, #071c38 61%, #092343);
  color: #fff;
}

.research-hero__grid {
  display: grid;
  grid-template-columns: .95fr .9fr;
  gap: 69px;
  align-items: center;
}

.research-hero h1 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(2.75rem, 4.2vw, 3.65rem);
  line-height: 1.1;
  letter-spacing: -.065em;
}

.research-hero__lead {
  max-width: 540px;
  margin-bottom: 17px;
  color: #cfdae9;
  font-size: 1rem;
  line-height: 1.7;
}

.research-hero__note {
  color: #92a8c3;
  font-size: .79rem;
}

.research-graphic {
  margin: 0;
  padding: 23px 23px 17px;
  border: 1px solid rgba(128, 165, 205, .2);
  border-radius: 10px;
  background: rgba(7, 26, 51, .64);
  box-shadow: 0 18px 42px rgba(0, 8, 22, .2);
}

.research-graphic figcaption {
  margin-bottom: 10px;
  color: #8ea9c9;
  font-family: "Roboto Mono", monospace;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.research-graphic svg {
  display: block;
  width: 100%;
}

.research-graphic--image {
  padding: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.research-graphic--image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.research-center-visual {
  position: relative;
  width: 100%;
  min-height: 300px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 9px;
  background:
    radial-gradient(circle at 56% 34%, rgba(9, 51, 93, .42) 0 23%, rgba(7, 28, 56, .16) 46%, rgba(7, 28, 56, 0) 72%);
}

.research-center-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(44, 133, 205, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 133, 205, .08) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  opacity: .34;
}

.research-center-visual__rings {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(70%, 360px);
  height: 78%;
  aspect-ratio: 1;
  border: 2px solid rgba(24, 189, 244, .72);
  border-bottom-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(24, 189, 244, .34));
  overflow: hidden;
  transform: translateX(-50%);
}

.research-center-visual__rings::before,
.research-center-visual__rings::after {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(36, 135, 223, .54);
  border-bottom-color: transparent;
  border-radius: 50%;
  content: "";
}

.research-center-visual__rings::after {
  inset: 17%;
  border-color: rgba(107, 205, 255, .36);
  border-bottom-color: transparent;
}

.research-center-visual__content {
  position: absolute;
  top: 12%;
  left: 50%;
  width: min(72%, 390px);
  color: #f6fbff;
  text-align: center;
  text-shadow: 0 6px 14px rgba(0, 8, 18, .55);
  transform: translateX(-50%);
}

.research-center-visual__content strong,
.research-center-visual__content span {
  display: block;
  font-weight: 800;
  line-height: .98;
}

.research-center-visual__content strong {
  font-size: 3rem;
}

.research-center-visual__content span {
  color: #2ca8f6;
  font-size: 1.82rem;
}

.research-center-visual__content i {
  display: block;
  width: 40px;
  height: 2px;
  margin: 8px auto 9px;
  background: var(--accent);
}

.research-center-visual__content p {
  margin: 0;
  color: rgba(240, 247, 255, .88);
  font-size: .58rem;
  line-height: 1.38;
}

.research-center-visual__features {
  position: absolute;
  right: 8%;
  bottom: 2%;
  left: 8%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.research-center-visual__features article {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #eef6ff;
  font-size: .58rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0 3px 9px rgba(0, 7, 16, .78);
}

.research-center-visual__features svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #18bdf4;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 620px) {
  .research-center-visual {
    min-height: 0;
  }

  .research-center-visual__rings {
    top: 7%;
    width: 80%;
  }

  .research-center-visual__content {
    top: 17%;
    width: 82%;
  }

  .research-center-visual__content strong {
    font-size: 2.25rem;
  }

  .research-center-visual__content span {
    font-size: 1.3rem;
  }

  .research-center-visual__content i {
    margin: 6px auto 7px;
  }

  .research-center-visual__content p {
    font-size: .48rem;
  }

  .research-center-visual__features {
    right: 5%;
    bottom: 5%;
    left: 5%;
    gap: 6px;
  }

  .research-center-visual__features article {
    font-size: .44rem;
  }

  .research-center-visual__features svg {
    width: 22px;
    height: 22px;
  }
}

.research-graphic__grid {
  fill: none;
  stroke: rgba(138, 169, 204, .15);
  stroke-width: 1;
}

.research-graphic__area {
  fill: rgba(56, 182, 236, .13);
}

.research-graphic__line {
  fill: none;
  stroke: #42c1f0;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.research-graphic__point {
  fill: #071c38;
  stroke: #42c1f0;
  stroke-width: 2.4;
}

.research-graphic__metrics {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  color: #87a0be;
  font-size: .64rem;
}

.research-graphic__metrics strong {
  color: #eaf2fb;
}

.research-library {
  padding: 40px 0 68px;
  background: #fff;
}

.research-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 54px;
}

.research-filters a,
.research-filters button {
  padding: 11px 19px;
  border: 1px solid #d4dfeb;
  border-radius: 24px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: .74rem;
  font-weight: 600;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.research-filters a:hover,
.research-filters button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.research-filters .selected {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.research-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

.research-heading h2 {
  color: var(--navy);
  font-size: 2rem;
  letter-spacing: -.055em;
}

.research-heading > p {
  max-width: 350px;
  color: #6e809a;
  font-size: .76rem;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.research-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 438px;
  border: 1px solid #dde5ee;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(9, 27, 54, .025);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.research-card:hover {
  border-color: #d4dfeb;
  box-shadow: 0 17px 35px rgba(9, 27, 54, .085);
  transform: translateY(-3px);
}

.research-card__thumb,
.research-card__visual {
  display: block;
  width: 100%;
  height: 188px;
  object-fit: cover;
}

.research-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 21px;
}

.research-card__meta {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 19px;
  color: #8091a8;
  font-family: "Roboto Mono", monospace;
  font-size: .58rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.research-card__meta span {
  padding: 6px 8px;
  border-radius: 16px;
  background: #f1f5fa;
  color: #536a86;
}

.research-card__meta small {
  color: #96a6ba;
  font-size: inherit;
}

.research-card h2 {
  margin-bottom: 13px;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.38;
  letter-spacing: -.035em;
}

.research-card p {
  margin-bottom: 25px;
  color: #677991;
  font-size: .75rem;
}

.research-card a {
  position: relative;
  align-self: flex-start;
  margin-top: auto;
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
}

.research-card a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transition: width .2s ease;
}

.research-card:hover a::after {
  width: 100%;
}

.research-card a span {
  margin-left: 9px;
  color: var(--accent);
}

.research-card[hidden] {
  display: none;
}

.research-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.research-pagination button {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #d4dfeb;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: .76rem;
  font-weight: 700;
}

.research-pagination button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.research-pagination button[aria-current="page"] {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.research-card--pending a {
  color: #8999ac;
  pointer-events: none;
}

.research-card__visual {
  position: relative;
  background-color: #0a2342;
  background-repeat: no-repeat;
}

.research-card__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(107, 157, 204, .12) 37px),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(107, 157, 204, .09) 53px);
}

.research-card__visual--drawdown {
  background-image:
    linear-gradient(167deg, transparent 0 20%, rgba(38, 187, 244, .92) 21% 23%, transparent 24% 40%, rgba(255, 99, 98, .86) 41% 43%, transparent 44% 55%, rgba(39, 186, 242, .9) 56% 58%, transparent 59%),
    linear-gradient(180deg, transparent, rgba(255, 91, 89, .16));
}

.research-card__visual--portfolio {
  background-image:
    linear-gradient(154deg, transparent 14%, rgba(55, 192, 245, .72) 15% 16%, transparent 17%),
    linear-gradient(168deg, transparent 20%, rgba(67, 209, 132, .6) 21% 22%, transparent 23%),
    linear-gradient(141deg, transparent 33%, rgba(255, 99, 98, .58) 34% 35%, transparent 36%),
    linear-gradient(158deg, transparent 34%, rgba(49, 194, 244, .92) 35% 37%, transparent 38%);
}

.research-card__visual--stability {
  background-image:
    radial-gradient(circle at 76% 41%, rgba(67, 209, 132, .55) 0 5px, transparent 6px),
    linear-gradient(170deg, transparent 20%, rgba(255, 91, 89, .55) 21% 22%, transparent 23%),
    linear-gradient(158deg, transparent 32%, rgba(45, 191, 242, .92) 33% 35%, transparent 36%),
    linear-gradient(180deg, transparent, rgba(45, 191, 242, .08));
}

.research-cta {
  padding: 0 0 67px;
  background: #fff;
}

.research-cta__panel {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 25px;
  align-items: center;
  padding: 36px 39px;
  border: 1px solid #dfe7f0;
  border-radius: 10px;
  background:
    radial-gradient(circle at 10% 50%, rgba(53, 186, 241, .08), transparent 21%),
    #f7f9fc;
}

.research-cta__icon {
  display: block;
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--navy);
}

.research-cta__icon::after {
  position: absolute;
  inset: 16px 13px;
  border-bottom: 2px solid #38c4f6;
  border-left: 2px solid #38c4f6;
  content: "";
  transform: skew(-28deg);
}

.research-cta__icon--portfolio-analytics {
  padding: 0;
  background: var(--navy);
  color: #38c4f6;
}

.research-cta__icon--portfolio-analytics::after {
  content: none;
}

.research-cta__icon--portfolio-analytics rect,
.research-cta__icon--portfolio-analytics path,
.research-cta__icon--portfolio-analytics circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.research-cta__icon--portfolio-analytics path:nth-of-type(4),
.research-cta__icon--portfolio-analytics path:nth-of-type(5) {
  stroke: #43d184;
}

.research-cta__icon--portfolio-analytics circle {
  fill: var(--navy);
}

.research-cta h2 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.38rem;
  letter-spacing: -.04em;
}

.research-cta p {
  font-size: .78rem;
}

.research-cta__actions {
  display: flex;
  gap: 14px;
}

.research-button--outline {
  border-color: #9fb1c7;
  color: var(--navy);
}

.portfolio-catalog-hero .research-graphic__line,
.portfolio-catalog-hero .research-graphic__point {
  stroke: #43d184;
}

.portfolio-catalog__grid .research-card__thumb {
  object-position: center;
}

.portfolio-catalog-page .portfolio-cta-icon {
  background: transparent;
}

.portfolio-catalog-page .portfolio-cta-icon::after {
  content: none;
}

.portfolio-card .research-card__meta {
  margin-bottom: 15px;
}

.portfolio-card h2 {
  font-size: 1.12rem;
}

.portfolio-card .research-card__body {
  min-height: 260px;
}

/* Article */
.article-page {
  background: #fff;
}

.article-hero {
  padding: 69px 0 170px;
  background:
    radial-gradient(circle at 72% 47%, rgba(31, 112, 182, .19), transparent 37%),
    radial-gradient(circle at 17% 76%, rgba(255, 91, 89, .07), transparent 27%),
    linear-gradient(112deg, #06152c 0%, #071c38 64%, #092343 100%);
  color: #fff;
}

.article-hero__inner {
  max-width: 1000px;
}

.article-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 27px;
  color: #8298b3;
  font-family: "Roboto Mono", monospace;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-meta span::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 15px 2px 0;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.article-hero h1 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.65rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.065em;
}

.article-lead {
  max-width: 630px;
  color: #cfdae9;
  font-size: 1.07rem;
  line-height: 1.65;
}

.article-shell {
  padding: 62px 0 80px;
}

.article-cover {
  float: left;
  overflow: hidden;
  width: 400px;
  height: 300px;
  margin: 7px 29px 18px 0;
  border: 1px solid rgba(89, 142, 198, .32);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(7, 26, 53, .17), 0 0 27px rgba(35, 150, 239, .08);
}

.article-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: 268px minmax(0, 760px);
  gap: 72px;
  justify-content: center;
}

.article-aside,
.article-content {
  min-width: 0;
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 28px;
}

.article-aside__label {
  margin-bottom: 15px;
  color: var(--accent);
  font-family: "Roboto Mono", monospace;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.risk-card {
  margin-bottom: 12px;
  padding: 19px 19px 21px;
  border: 1px solid #e1e7f0;
  border-radius: 7px;
  background: #fff;
}

.risk-card__value {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-family: "Roboto Mono", monospace;
  font-size: .76rem;
  font-weight: 700;
}

.risk-card h2 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: .89rem;
}

.risk-card p {
  font-size: .71rem;
  line-height: 1.58;
}

.article-content section {
  margin-bottom: 48px;
}

.article-content section:last-child {
  margin-bottom: 0;
}

.article-content h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(1.42rem, 2vw, 1.72rem);
  line-height: 1.28;
  letter-spacing: -.045em;
}

.article-content h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: .85rem;
}

.article-content p {
  margin-bottom: 18px;
  color: #51637f;
  font-size: .9rem;
  line-height: 1.78;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content strong {
  color: var(--navy);
  font-weight: 700;
}

.article-intro {
  display: flow-root;
  padding-bottom: 41px;
  border-bottom: 1px solid var(--border);
}

.article-intro p:first-child::first-letter {
  float: left;
  margin: 8px 8px 0 0;
  color: var(--navy);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: .76;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 29px;
}

.metric-strip div {
  padding: 18px 16px;
  border: 1px solid #dce4ee;
  border-radius: 6px;
  background: #f7f9fb;
}

.metric-strip span,
.metric-strip small {
  display: block;
  color: #72839c;
  font-size: .65rem;
}

.metric-strip strong {
  display: block;
  margin: 7px 0 6px;
  font-family: "Roboto Mono", monospace;
  font-size: 1.28rem;
}

.metric-strip .metric-strip__loss {
  color: var(--accent);
}

.metric-strip--portfolio strong {
  color: var(--green);
  font-size: .98rem;
}

.instrument-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 27px 0 24px;
  padding: 18px;
  border: 1px solid #203c60;
  border-radius: 7px;
  background: var(--navy);
}

.instrument-flow span {
  flex: 1;
  padding: 11px 7px;
  border: 1px solid rgba(43, 174, 234, .28);
  border-radius: 4px;
  color: #d6e5f4;
  font-family: "Roboto Mono", monospace;
  font-size: .62rem;
  text-align: center;
  text-transform: uppercase;
}

.instrument-flow i {
  width: 20px;
  height: 1px;
  position: relative;
  background: #28bbf7;
}

.instrument-flow i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #28bbf7;
  border-right: 1px solid #28bbf7;
  content: "";
  transform: rotate(45deg);
}

.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.control-grid article {
  min-height: 188px;
  padding: 21px 20px;
  border: 1px solid #1e395b;
  border-radius: 7px;
  background:
    linear-gradient(130deg, rgba(19, 46, 79, .84), rgba(7, 24, 49, .96)),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(105, 152, 197, .06) 33px);
}

.control-grid p {
  color: #aebccf;
  font-size: .72rem;
  line-height: 1.64;
}

.control-icon {
  display: block;
  position: relative;
  width: 42px;
  height: 35px;
  margin-bottom: 18px;
}

.control-icon::before,
.control-icon::after {
  position: absolute;
  content: "";
}

.control-icon--stop::before {
  inset: 2px 7px 2px 0;
  border: 1px solid rgba(41, 177, 244, .75);
  clip-path: polygon(50% 0%, 93% 25%, 93% 70%, 50% 100%, 7% 70%, 7% 25%);
}

.control-icon--stop::after {
  top: 14px;
  right: 0;
  width: 19px;
  height: 1px;
  background: var(--accent);
}

.control-icon--size::before {
  bottom: 3px;
  left: 1px;
  width: 35px;
  height: 28px;
  background:
    linear-gradient(to top, rgba(49, 182, 242, .8) 0 42%, transparent 43%) 0 100% / 8px 100% no-repeat,
    linear-gradient(to top, rgba(49, 182, 242, .65) 0 72%, transparent 73%) 13px 100% / 8px 100% no-repeat,
    linear-gradient(to top, rgba(255, 91, 89, .75) 0 95%, transparent 96%) 26px 100% / 8px 100% no-repeat;
}

.control-icon--vol::before {
  top: 15px;
  left: 0;
  width: 41px;
  height: 2px;
  background: #173a60;
}

.control-icon--vol::after {
  top: 4px;
  left: 0;
  width: 39px;
  height: 25px;
  border-top: 2px solid #28bbf7;
  clip-path: polygon(0 57%, 26% 57%, 42% 5%, 61% 84%, 78% 40%, 100% 40%, 100% 55%, 79% 55%, 60% 100%, 41% 25%, 27% 73%, 0 73%);
  background: #28bbf7;
}

.control-icon--balance::before {
  inset: 2px;
  border: 1px solid rgba(43, 184, 246, .55);
  border-radius: 50%;
}

.control-icon--balance::after {
  top: 11px;
  left: 11px;
  width: 20px;
  height: 14px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: skew(-30deg);
}

.visual-section {
  display: grid;
  gap: 25px;
}

.mini-chart {
  margin: 6px 0 0;
  padding: 20px 20px 14px;
  border: 1px solid #203c60;
  border-radius: 7px;
  background: var(--navy);
}

.mini-chart figcaption,
.drawdown-panel__label {
  margin-bottom: 14px;
  color: #7e96b4;
  font-family: "Roboto Mono", monospace;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.mini-chart svg {
  width: 100%;
  height: auto;
}

.mini-chart__grid,
.drawdown-panel__grid {
  fill: none;
  stroke: rgba(106, 145, 188, .18);
  stroke-width: 1;
}

.mini-chart__muted,
.mini-chart__red,
.mini-chart__primary {
  fill: none;
  stroke-width: 2;
}

.mini-chart__muted { stroke: rgba(39, 173, 234, .44); }
.mini-chart__red { stroke: rgba(255, 91, 89, .48); }
.mini-chart__primary { stroke: #34c6ff; stroke-width: 3; filter: drop-shadow(0 0 5px rgba(52, 198, 255, .48)); }

.chart-legend {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  color: #8298b3;
  font-size: .65rem;
}

.chart-legend span::before,
.chart-legend strong::before {
  display: inline-block;
  width: 19px;
  height: 2px;
  margin: 0 8px 3px 0;
  content: "";
  background: rgba(255, 91, 89, .6);
}

.chart-legend strong {
  color: #c4d5e8;
  font-weight: 500;
}

.chart-legend strong::before { background: #34c6ff; }

.correlation-panel {
  margin: 6px 0 0;
  padding: 21px;
  border: 1px solid #203c60;
  border-radius: 7px;
  background:
    radial-gradient(circle at 78% 40%, rgba(36, 189, 242, .1), transparent 39%),
    var(--navy);
}

.correlation-panel figcaption {
  margin-bottom: 22px;
  color: #7e96b4;
  font-family: "Roboto Mono", monospace;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.correlation-panel__content {
  display: grid;
  grid-template-columns: 1fr 147px;
  gap: 31px;
  align-items: center;
}

.allocation-bars {
  display: grid;
  gap: 16px;
}

.allocation-bars span {
  display: block;
  position: relative;
  height: 12px;
  border-radius: 8px;
  background: rgba(35, 64, 97, .68);
}

.allocation-bars span::after {
  display: block;
  width: var(--share);
  height: 100%;
  border-radius: inherit;
  content: "";
  background: linear-gradient(90deg, #168bca, #35cee4);
  box-shadow: 0 0 10px rgba(53, 206, 228, .2);
}

.allocation-bars span:nth-child(2)::after { background: linear-gradient(90deg, #1c8582, #45d390); }
.allocation-bars span:nth-child(3)::after { background: linear-gradient(90deg, #1f84bb, #31b7ef); }
.allocation-bars span:nth-child(4)::after { background: linear-gradient(90deg, #8b4e58, #ff746b); }

.allocation-bars b {
  position: absolute;
  bottom: calc(100% + 5px);
  left: 0;
  color: #91a6bf;
  font-size: .59rem;
  font-weight: 500;
}

.correlation-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(58, 126, 180, .35);
}

.correlation-matrix i {
  display: block;
  aspect-ratio: 1;
  background: rgba(21, 53, 84, .68);
}

.correlation-matrix i.strong { background: rgba(44, 198, 220, .76); box-shadow: 0 0 10px rgba(44, 198, 220, .25); }
.correlation-matrix i.soft { background: rgba(34, 135, 175, .55); }
.correlation-matrix i.low { background: rgba(34, 94, 126, .5); }
.correlation-matrix i.negative { background: rgba(247, 102, 95, .62); }

.comparison-table {
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid #dde5ee;
  border-radius: 7px;
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 155px 1fr 1fr;
  border-bottom: 1px solid #e3e9f1;
}

.comparison-table > div:last-child {
  border-bottom: 0;
}

.comparison-table span,
.comparison-table p,
.comparison-table strong {
  padding: 14px 15px;
  margin: 0;
  border-right: 1px solid #e3e9f1;
  font-size: .72rem;
  line-height: 1.55;
}

.comparison-table p:last-child,
.comparison-table strong:last-child {
  border-right: 0;
}

.comparison-table span {
  color: #667a97;
  font-weight: 700;
}

.comparison-table p {
  color: #455b79;
}

.comparison-table__head {
  background: var(--navy);
}

.comparison-table__head span,
.comparison-table__head strong {
  border-color: #203c60;
  color: #fff;
  font-family: "Roboto Mono", monospace;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.comparison-table__head strong:first-of-type {
  color: #46c9ff;
}

.comparison-table__head strong:last-child {
  color: #52d79b;
}

.comparison-table--wide > div {
  grid-template-columns: 138px repeat(3, minmax(0, 1fr));
}

.article-risk-table > div {
  grid-template-columns: 155px 1fr;
}

.article-data-table {
  overflow-x: auto;
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.article-data-table > div {
  display: grid;
  min-width: 760px;
  grid-template-columns: 150px repeat(3, minmax(180px, 1fr));
  border-bottom: 1px solid #e3e9f1;
}

.article-data-table > div:last-child {
  border-bottom: 0;
}

.article-data-table span,
.article-data-table p,
.article-data-table strong {
  padding: 14px 15px;
  margin: 0;
  border-right: 1px solid #e3e9f1;
  color: #455b79;
  font-size: .78rem;
  line-height: 1.55;
}

.article-data-table span {
  color: var(--navy);
  font-weight: 800;
}

.article-data-table strong {
  color: #fff;
  font-weight: 800;
}

.article-data-table > div:first-child {
  background: var(--navy);
}

.article-data-table > div:first-child span {
  color: #fff;
}

.article-data-table p:last-child,
.article-data-table strong:last-child {
  border-right: 0;
}

.wf-timeline {
  display: grid;
  grid-template-columns: 1.35fr 1fr .8fr;
  gap: 10px;
  margin: 30px 0 24px;
}

.wf-timeline__segment {
  position: relative;
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
}

.wf-timeline__segment::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-top: 2px solid #8ea3bf;
  border-right: 2px solid #8ea3bf;
  transform: translateY(-50%) rotate(45deg);
}

.wf-timeline__segment:last-child::after {
  display: none;
}

.wf-timeline__segment span,
.wf-timeline__segment small {
  display: block;
  color: #667a97;
  font-size: .72rem;
  font-weight: 700;
}

.wf-timeline__segment strong {
  display: block;
  margin: 8px 0;
  color: var(--navy);
  font-size: .98rem;
}

.wf-timeline__segment--train {
  border-top: 3px solid var(--blue);
}

.wf-timeline__segment--test {
  border-top: 3px solid var(--accent);
}

.wf-timeline__segment--forward {
  border-top: 3px solid #22c55e;
}

.wf-cycle {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 24px;
}

.wf-cycle div {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.wf-cycle span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: "Roboto Mono", monospace;
  font-size: .8rem;
  font-weight: 800;
}

.wf-cycle strong {
  display: block;
  margin-bottom: 9px;
  color: var(--navy);
}

.wf-cycle p {
  margin: 0;
  font-size: .78rem;
}

.wf-window-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 24px;
}

.wf-window-compare > div {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
}

.wf-window-compare h3 {
  color: var(--navy);
}

.wf-window-compare p {
  display: grid;
  grid-template-columns: 1fr 24px .72fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.wf-window-compare span {
  padding: 9px 10px;
  border-radius: 6px;
  background: #fff;
  color: #455b79;
  font-size: .7rem;
  font-weight: 800;
  text-align: center;
}

.wf-window-compare i {
  height: 2px;
  background: #9fb1c9;
}

.wf-equity {
  position: relative;
  overflow: hidden;
  margin: 28px 0 24px;
  padding: 24px 24px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.wf-equity span {
  display: inline-block;
  margin: 0 8px 14px 0;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(34, 197, 94, .12);
  color: #14743a;
  font-size: .7rem;
  font-weight: 800;
}

.wf-equity svg {
  display: block;
  width: 100%;
  height: auto;
}

.wf-matrix {
  overflow-x: auto;
  margin: 26px 0 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.wf-matrix > div {
  display: grid;
  min-width: 620px;
  grid-template-columns: 130px repeat(4, minmax(90px, 1fr));
  border-bottom: 1px solid #e3e9f1;
}

.wf-matrix > div:first-child {
  background: var(--navy);
}

.wf-matrix > div:last-child {
  border-bottom: 0;
}

.wf-matrix span,
.wf-matrix strong,
.wf-matrix p {
  padding: 14px 12px;
  margin: 0;
  border-right: 1px solid #e3e9f1;
  text-align: center;
  font-size: .78rem;
}

.wf-matrix strong,
.wf-matrix > div:first-child span {
  color: #fff;
}

.wf-matrix p {
  color: var(--navy);
  font-family: "Roboto Mono", monospace;
  font-weight: 800;
}

.wf-matrix div:nth-child(3) p:nth-child(3),
.wf-matrix div:nth-child(3) p:nth-child(4),
.wf-matrix div:nth-child(4) p:nth-child(3),
.wf-matrix div:nth-child(4) p:nth-child(4) {
  background: rgba(34, 197, 94, .14);
  color: #14743a;
}

.martingale-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 28px 0 24px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.martingale-chain span {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-family: "Roboto Mono", monospace;
  font-size: .78rem;
  font-weight: 800;
}

.martingale-chain span:nth-of-type(n+4) {
  background: #b91c1c;
}

.martingale-chain i {
  width: 24px;
  height: 2px;
  background: #93a8c3;
}

.risk-compare,
.equity-curves {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 24px;
}

.risk-compare > div,
.equity-curves > div {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
}

.risk-compare h3,
.equity-curves strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
}

.risk-compare p {
  margin-bottom: 14px;
  color: #51637f;
  font-size: .82rem;
}

.risk-compare span {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(29, 78, 216, .11);
  color: var(--blue);
  font-size: .7rem;
  font-weight: 800;
}

.equity-curves svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background:
    linear-gradient(#dfe7f2 1px, transparent 1px),
    linear-gradient(90deg, #dfe7f2 1px, transparent 1px),
    #fff;
  background-size: 42px 30px;
}

.cost-cycle,
.bidask-panel {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  gap: 10px;
  align-items: center;
  margin: 28px 0 24px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.cost-cycle div,
.bidask-panel div {
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e3e9f1;
  text-align: center;
}

.cost-cycle span,
.cost-cycle small,
.bidask-panel small {
  display: block;
  color: #667a97;
  font-size: .7rem;
  font-weight: 800;
}

.cost-cycle strong,
.bidask-panel span {
  display: block;
  margin: 8px 0;
  color: var(--navy);
  font-family: "Roboto Mono", monospace;
  font-size: 1rem;
  font-weight: 800;
}

.cost-cycle i {
  height: 2px;
  background: #93a8c3;
}

.bidask-panel {
  grid-template-columns: 1fr minmax(110px, .7fr) 1fr;
}

.bidask-panel i {
  display: block;
  padding: 10px;
  border-radius: 999px;
  background: rgba(29, 78, 216, .1);
  color: var(--blue);
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 24px;
}

.order-grid article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
}

.order-grid h3 {
  color: var(--navy);
}

.order-grid p {
  margin: 0;
  font-size: .8rem;
}

.strategy-tree {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 24px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.strategy-tree div {
  padding: 15px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
}

.strategy-tree .strategy-tree__root {
  grid-column: 1 / -1;
  background: var(--navy);
  color: #fff;
}

.strategy-card-grid,
.market-regime-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 24px;
}

.strategy-card-grid article,
.market-regime-grid div,
.future-article-map div {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
}

.strategy-card-grid h3,
.market-regime-grid strong,
.future-article-map strong {
  display: block;
  margin-bottom: 9px;
  color: var(--navy);
}

.strategy-card-grid p {
  margin-bottom: 14px;
  font-size: .8rem;
}

.strategy-card-grid span,
.future-article-map small {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(29, 78, 216, .1);
  color: var(--blue);
  font-size: .68rem;
  font-weight: 800;
}

.market-regime-grid span {
  color: #51637f;
  font-size: .78rem;
  line-height: 1.55;
}

.strategy-intersection {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 24px;
  padding: 22px;
  border: 1px solid #203c60;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(34, 197, 94, .16), transparent 36%),
    linear-gradient(135deg, #071d49, #0b2a63);
}

.strategy-intersection div {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
}

.strategy-intersection strong {
  grid-column: 1 / -1;
  color: #b8f4d3;
  font-size: .78rem;
  text-align: center;
}

.future-article-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 24px;
}

.future-article-map span {
  display: block;
  margin-bottom: 10px;
  color: #64748b;
  font-family: "Roboto Mono", monospace;
  font-size: .68rem;
  overflow-wrap: anywhere;
}

.strategy-table > div {
  min-width: 820px;
}

.article-toc {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 42px;
  padding: 22px;
  border: 1px solid #dde5ee;
  border-radius: 7px;
  background: #f7f9fb;
}

.article-toc h2 {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.article-toc a {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.5;
}

.formula-panel {
  margin: 28px 0 22px;
  padding: 22px;
  border: 1px solid #203c60;
  border-radius: 7px;
  background:
    radial-gradient(circle at 86% 24%, rgba(34, 197, 94, .12), transparent 35%),
    linear-gradient(130deg, rgba(19, 46, 79, .86), rgba(7, 24, 49, .98));
}

.formula-panel p,
.formula-panel li {
  color: #c9d7e7;
}

.formula-panel strong {
  color: #fff;
  font-family: "Roboto Mono", monospace;
}

.article-checklist,
.formula-panel ul,
.control-grid ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.article-checklist li,
.formula-panel li,
.control-grid li {
  position: relative;
  padding-left: 22px;
  color: #4f627d;
  font-size: .84rem;
  line-height: 1.65;
}

.article-checklist li::before,
.formula-panel li::before,
.control-grid li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--green);
  border-radius: 50%;
  content: "";
}

.article-checklist--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-steps {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 24px;
  color: #4f627d;
  font-size: .84rem;
  line-height: 1.65;
}

.article-warning,
.article-faq article,
.article-disclaimer {
  margin: 24px 0 0;
  padding: 22px;
  border: 1px solid #dce4ee;
  border-radius: 7px;
  background: #f7f9fb;
}

.article-warning--red {
  border-left: 3px solid #ff5b59;
}

.article-warning h3,
.article-faq h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.article-warning ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.article-warning li {
  color: #4f627d;
  font-size: .82rem;
  line-height: 1.6;
}

.article-faq {
  display: grid;
  gap: 12px;
}

.article-faq article {
  margin: 0;
}

.article-inline-button {
  margin-top: 18px;
}

.article-related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.article-related-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 15px 17px;
  border: 1px solid #dce4ee;
  border-left: 3px solid var(--accent);
  border-radius: 7px;
  background: #f7f9fb;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.article-related-links a::after {
  flex: 0 0 auto;
  margin-left: 14px;
  color: var(--accent);
  content: "→";
  font-size: 1.05rem;
}

.article-related-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 91, 89, .45);
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 29, 73, .08);
}

.article-disclaimer {
  border-left: 3px solid var(--accent);
}

.article-disclaimer p {
  margin: 0;
  font-size: .8rem;
}

.control-grid--light {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.control-grid--light article {
  min-height: 0;
  border-color: #dce4ee;
  background: #f7f9fb;
}

.control-grid--light h3 {
  color: var(--navy);
}

.control-grid--light li {
  color: #536783;
  font-size: .74rem;
}

.execution-panel {
  margin: 6px 0 0;
  padding: 22px;
  border: 1px solid #203c60;
  border-radius: 7px;
  background:
    radial-gradient(circle at 84% 40%, rgba(40, 183, 240, .11), transparent 36%),
    var(--navy);
}

.execution-panel figcaption {
  margin-bottom: 24px;
  color: #7e96b4;
  font-family: "Roboto Mono", monospace;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.execution-panel__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.execution-panel h3 {
  margin-bottom: 17px;
  color: #40c7ff;
  font-family: "Roboto Mono", monospace;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.execution-panel__cfd h3 {
  color: var(--green);
}

.execution-panel span {
  display: block;
  margin-bottom: 15px;
}

.execution-panel span b {
  display: block;
  width: var(--meter);
  height: 7px;
  margin-bottom: 7px;
  border-radius: 20px;
  background: linear-gradient(90deg, #168bca, #35cee4);
  box-shadow: 0 0 8px rgba(53, 206, 228, .18);
}

.execution-panel__cfd span b {
  background: linear-gradient(90deg, #117b8c, #45d390);
}

.execution-panel small {
  color: #91a6bf;
  font-size: .61rem;
}

.drawdown-panel {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 21px;
  align-items: center;
  margin-top: 28px;
  padding: 24px 22px;
  border-radius: 7px;
  background: #f4f7fa;
}

.drawdown-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: .89rem;
  line-height: 1.48;
}

.drawdown-panel p:not(.drawdown-panel__label) {
  font-size: .7rem;
  line-height: 1.6;
}

.drawdown-panel__area {
  fill: rgba(255, 91, 89, .13);
}

.drawdown-panel__line {
  fill: none;
  stroke: #1b91d1;
  stroke-width: 2.8;
}

.drawdown-panel__limit {
  fill: none;
  stroke: rgba(255, 91, 89, .65);
  stroke-width: 1;
  stroke-dasharray: 5 5;
}

.drawdown-panel__single {
  fill: none;
  stroke: rgba(255, 91, 89, .7);
  stroke-width: 2;
  stroke-dasharray: 5 4;
}

.drawdown-panel__portfolio {
  fill: none;
  stroke: #25bde6;
  stroke-width: 3;
  filter: drop-shadow(0 0 4px rgba(37, 189, 230, .3));
}

.article-conclusion {
  padding: 31px 33px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
}

.article-cta .eyebrow {
  margin-bottom: 12px;
}

@media (max-width: 1100px) {
  .container { width: min(var(--container), calc(100% - 40px)); }
  .footer__top { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .subscribe { grid-column: 2 / 4; }
  .article-layout { grid-template-columns: 235px minmax(0, 700px); gap: 40px; }
}

@media (max-width: 900px) {
  .contacts-hero__grid,
  .contacts-content__grid { grid-template-columns: 1fr; }
  .solution-grid,
  .shop-grid,
  .articles__grid { grid-template-columns: 1fr 1fr; }
  .solution-card:last-child,
  .post:last-child { grid-column: 1 / -1; }
  .performance__panel { grid-template-columns: 1fr; }
  .performance__metrics { padding: 26px 0 0; border-top: 1px solid #223b5c; border-left: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps article::after,
  .steps article::before { display: none; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .quantix-hero__grid,
  .quantix-comparison__panel,
  .aurix-hero__grid,
  .aurix-yearly__grid,
  .shop-hero__inner,
  .about-hero__grid,
  .about-story__grid,
  .about-platform__panel,
  .research-hero__grid { grid-template-columns: 1fr; gap: 42px; }
  .quantix-product__grid,
  .quantix-metrics-grid,
  .quantix-thesis-grid,
  .quantix-comparison__cards,
  .aurix-quick-stats__grid,
  .aurix-metrics-grid,
  .aurix-thesis-grid,
  .about-values__grid,
  .research-grid { grid-template-columns: 1fr 1fr; }
  .quantix-cta__panel,
  .aurix-cta__panel { flex-direction: column; align-items: flex-start; }
  .research-cta__panel { grid-template-columns: 68px 1fr; }
  .research-cta__actions { grid-column: 2; }
  .article-hero { padding: 56px 0; }
  .article-shell { padding-top: 45px; }
  .article-cover {
    width: min(400px, 52%);
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 6px 25px 16px 0;
  }
  .article-layout { grid-template-columns: 1fr; gap: 39px; }
  .article-aside {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: static;
  }
  .article-aside__label { grid-column: 1 / -1; }
  .risk-card { margin-bottom: 0; }
  .shop-products__head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 30px); }
  .cta__actions { flex-direction: column; width: 100%; }
  .button { width: 100%; }
  .solution-grid,
  .shop-grid,
  .articles__grid,
  .steps { grid-template-columns: 1fr; }
  .post:last-child,
  .solution-card:last-child { grid-column: auto; }
  .post { grid-template-columns: 110px 1fr; }
  .performance__panel { padding: 24px 17px; }
  .performance h2 { font-size: 1.2rem; }
  .performance__tabs { flex-wrap: wrap; }
  .performance__tabs button { padding: 9px; }
  .legend { flex-direction: column; gap: 10px; padding: 8px 0 0; }
  .performance__note { margin-left: 0; }
  .performance__headers,
  .performance__metrics article {
    grid-template-columns: minmax(94px, 1.05fr) repeat(2, minmax(78px, .95fr));
    gap: 6px;
  }
  .performance__headers strong { min-height: 65px; padding: 8px 4px; font-size: .96rem; }
  .performance__metrics span { font-size: .68rem; }
  .performance__metrics strong { font-size: .96rem; }
  .steps article { margin-bottom: 19px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .footer__brand,
  .subscribe { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 18px; }
  .footer__bottom div { flex-direction: column; gap: 10px; }
  .contacts-page__panel { padding: 25px 18px; }
  .shop-hero { padding: 50px 0; }
  .shop-hero__inner { gap: 26px; }
  .shop-hero__visual img {
    width: min(100%, 430px);
    margin: 0 auto;
  }
  .shop-products { padding: 42px 0 50px; }
  .shop-card { min-height: 0; padding: 24px 18px; }
  .shop-card__meta { grid-template-columns: 1fr; }
  .quantix-hero { padding: 46px 0; }
  .quantix-hero-title { font-size: 2.4rem; }
  .quantix-hero-image,
  .quantix-hero-image img { min-height: 260px; }
  .aurix-hero { padding: 46px 0; }
  .aurix-hero-title { font-size: 2.4rem; }
  .aurix-hero-image,
  .aurix-hero-image img { min-height: 260px; }
  .quantix-product__grid,
  .quantix-metrics-grid,
  .quantix-thesis-grid,
  .quantix-comparison__cards,
  .aurix-quick-stats__grid,
  .aurix-metrics-grid,
  .aurix-thesis-grid { grid-template-columns: 1fr; }
  .quantix-metrics-section,
  .quantix-investor-thesis,
  .quantix-comparison,
  .quantix-cta,
  .aurix-metrics-section,
  .aurix-equity-section,
  .aurix-yearly-performance,
  .aurix-investor-thesis,
  .aurix-cta { padding: 43px 0; }
  .quantix-comparison__panel,
  .quantix-cta__panel,
  .aurix-equity__panel,
  .aurix-cta__panel { padding: 28px 20px; }
  .quantix-cta__actions,
  .aurix-cta__actions { flex-direction: column; width: 100%; }
  .aurix-year-bars { padding: 22px 18px; }
  .aurix-year-bars article { grid-template-columns: 72px 98px 1fr; gap: 10px; }
  .about-hero { padding: 46px 0; }
  .about-hero h1 { font-size: 2.35rem; }
  .about-story,
  .about-values,
  .about-platform { padding: 43px 0; }
  .about-values__grid { grid-template-columns: 1fr; }
  .about-platform__panel { padding: 27px 20px; }
  .research-hero { padding: 44px 0; }
  .research-library { padding: 33px 0 43px; }
  .research-filters { margin-bottom: 38px; }
  .research-heading { flex-direction: column; align-items: flex-start; gap: 16px; }
  .research-grid { grid-template-columns: 1fr; }
  .research-card { min-height: 0; }
  .research-cta { padding-bottom: 44px; }
  .research-cta__panel { grid-template-columns: 1fr; padding: 28px 20px; }
  .research-cta__actions { grid-column: auto; flex-direction: column; }
  .desktop-break { display: none; }
  .article-hero { padding: 44px 0; }
  .article-meta { flex-wrap: wrap; gap: 8px 13px; margin-bottom: 21px; }
  .article-meta span::before { margin-right: 13px; }
  .article-lead { font-size: .9rem; }
  .article-shell { padding: 35px 0 49px; }
  .article-cover {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 23px;
    aspect-ratio: 4 / 3;
    border-radius: 7px;
  }
  .article-aside,
  .metric-strip,
  .control-grid,
  .drawdown-panel,
  .article-toc,
  .article-checklist--columns,
  .article-related-links,
  .wf-timeline,
  .wf-cycle,
  .wf-window-compare { grid-template-columns: 1fr; }
  .wf-timeline__segment::after {
    top: auto;
    right: 50%;
    bottom: -13px;
    transform: translateX(50%) rotate(135deg);
  }
  .wf-window-compare p { grid-template-columns: 1fr; }
  .wf-window-compare i { width: 2px; height: 12px; margin: 0 auto; }
  .cost-cycle,
  .bidask-panel,
  .order-grid,
  .strategy-tree,
  .strategy-card-grid,
  .market-regime-grid,
  .strategy-intersection,
  .future-article-map { grid-template-columns: 1fr; }
  .cost-cycle i { width: 2px; height: 12px; margin: 0 auto; }
  .article-data-table > div,
  .wf-matrix > div { min-width: 640px; }
  .correlation-panel__content { grid-template-columns: 1fr; gap: 30px; }
  .instrument-flow {
    display: grid;
    grid-template-columns: 1fr;
  }
  .instrument-flow i {
    width: 1px;
    height: 17px;
    margin: 0 auto;
  }
  .instrument-flow i::after {
    top: auto;
    right: -3px;
    bottom: 0;
    transform: rotate(135deg);
  }
  .comparison-table > div {
    grid-template-columns: 1fr;
  }
  .comparison-table span,
  .comparison-table p,
  .comparison-table strong {
    border-right: 0;
    border-bottom: 1px solid #e3e9f1;
  }
  .comparison-table p:last-child,
  .comparison-table strong:last-child {
    border-bottom: 0;
  }
  .comparison-table__head span,
  .comparison-table__head strong {
    border-color: #203c60;
  }
  .execution-panel__columns { grid-template-columns: 1fr; }
  .article-content section { margin-bottom: 38px; }
  .article-content p { font-size: .84rem; }
  .article-intro { padding-bottom: 33px; }
  .control-grid article { min-height: 0; }
  .article-conclusion { padding: 25px 21px; }
}
