/* Editorial article */

.reading-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto;
  height: 4px;
  pointer-events: none;
}

.reading-progress i {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.article-page .site-header {
  background: var(--paper);
}

.article-page .site-header.is-fixed {
  background: rgba(243, 240, 232, 0.94);
}

.article-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 205px 0 105px;
  color: var(--white);
  background: var(--blue);
}

.article-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to right, #000, transparent 58%);
}

.article-hero::after {
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.article-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(400px, 0.75fr);
  align-items: end;
  gap: clamp(55px, 8vw, 120px);
}

.article-hero__copy {
  max-width: 830px;
}

.article-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 55px;
  color: #c9d2ff;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.article-breadcrumb:hover {
  color: var(--white);
}

.article-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: #d9dfff;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-kicker i {
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
}

.article-hero h1 {
  max-width: 850px;
  margin-bottom: 50px;
  font-size: clamp(56px, 6.1vw, 92px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.article-hero h1 span {
  display: block;
  max-width: 650px;
  margin-top: 28px;
  margin-bottom: 0;
  color: #d6dcff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: #b8c3ff;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-hero__meta span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-hero__meta span:not(:first-child)::before {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.launch-chart {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-bottom: 12px;
  color: var(--paper);
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: 14px 14px 0 var(--orange), 14px 14px 0 1px var(--ink);
}

.launch-chart__top,
.launch-chart__legend {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 17px;
  color: #96958c;
  border-bottom: 1px solid #41413b;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.launch-chart__top span:last-child {
  color: var(--lime);
}

.launch-chart svg {
  width: 100%;
  height: auto;
}

.launch-chart__grid path {
  fill: none;
  stroke: #40403a;
  stroke-width: 1;
}

.launch-chart__spike,
.launch-chart__evergreen {
  fill: none;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.launch-chart__spike {
  stroke: var(--orange);
}

.launch-chart__evergreen {
  stroke: var(--lime);
}

.launch-chart__point--spike {
  fill: var(--orange);
}

.launch-chart__point--evergreen {
  fill: var(--lime);
}

.launch-chart text {
  fill: #98978f;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
}

.launch-chart__legend {
  justify-content: flex-start;
  gap: 24px;
  border-top: 1px solid #41413b;
  border-bottom: 0;
}

.launch-chart__legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.launch-chart__legend i {
  width: 14px;
  height: 2px;
}

.launch-chart__legend .is-orange {
  background: var(--orange);
}

.launch-chart__legend .is-lime {
  background: var(--lime);
}

.article-intro {
  border-bottom: 1px solid var(--ink);
  background: var(--paper-bright);
}

.article-intro__inner {
  min-height: 335px;
  display: grid;
  grid-template-columns: 220px minmax(0, 900px);
  gap: 50px;
  align-items: start;
  padding-top: 85px;
  padding-bottom: 85px;
}

.article-intro__label,
.article-aside__sticky > p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-intro__label {
  padding-top: 7px;
}

.article-intro p {
  max-width: 870px;
  margin: 0;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.4;
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.article-aside {
  align-self: stretch;
  padding-top: 92px;
}

.article-aside__sticky {
  position: sticky;
  top: 115px;
  padding-bottom: 70px;
}

.article-aside__sticky > p {
  margin-bottom: 23px;
}

.article-aside nav {
  border-top: 1px solid var(--line);
}

.article-aside nav a {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 8px;
  padding: 13px 0;
  color: #55544c;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  transition: color 0.2s ease, padding-left 0.25s var(--ease);
}

.article-aside nav a:hover {
  padding-left: 5px;
  color: var(--orange-dark);
}

.article-aside nav a[aria-current="true"] {
  padding-left: 5px;
  color: var(--blue);
}

.article-aside nav a[aria-current="true"] span {
  color: var(--orange-dark);
}

.article-aside nav span {
  color: #97968c;
  font-family: var(--mono);
  font-size: 7px;
}

.article-aside__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 25px;
  padding: 14px 15px;
  color: var(--white);
  background: var(--blue);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.article-aside__cta:hover {
  transform: translate(-3px, -3px);
  box-shadow: 4px 4px 0 var(--orange);
}

.article-body {
  min-width: 0;
}

.article-section {
  width: min(100%, 840px);
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}

.article-section--wide {
  width: 100%;
}

.article-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-section__eyebrow span {
  display: inline-flex;
  min-width: 25px;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  padding: 2px 5px;
  color: var(--white);
  background: var(--blue);
}

.article-section h2,
.article-conclusion h2 {
  margin-bottom: 32px;
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.article-section > p,
.article-disclosure p {
  margin-bottom: 30px;
  color: #363630;
  font-size: 18px;
  line-height: 1.78;
}

.article-section > p:last-child {
  margin-bottom: 0;
}

.article-section .article-lede {
  margin-top: -14px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 17px;
}

.fact-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.fact-list li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  align-items: start;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list li > span {
  padding-top: 5px;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 9px;
}

.fact-list p {
  margin: 0;
  color: #3d3c36;
  font-size: 17px;
  line-height: 1.72;
}

.fact-list strong {
  color: var(--ink);
  font-weight: 700;
}

.can-cannot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 45px;
}

.can-cannot__card {
  padding: 0 27px 28px;
  border: 1px solid var(--ink);
}

.can-cannot__card--can {
  background: var(--paper-bright);
  box-shadow: 7px 7px 0 var(--blue);
}

.can-cannot__card--cannot {
  background: #ece8df;
}

.can-cannot__top {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.can-cannot__top i {
  font-family: var(--sans);
  font-size: 23px;
  font-style: normal;
}

.can-cannot__card--can .can-cannot__top i {
  color: var(--blue);
}

.can-cannot__card--cannot .can-cannot__top i {
  color: var(--orange-dark);
}

.can-cannot ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.can-cannot li {
  position: relative;
  padding: 14px 0 14px 20px;
  color: #3f3e38;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.55;
}

.can-cannot li:last-child {
  border-bottom: 0;
}

.can-cannot li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.can-cannot__card--can li::before {
  background: var(--blue);
}

.platform-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 48px;
  border: 1px solid var(--ink);
}

.platform-type {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  padding: 35px 32px 28px;
}

.platform-type--spike {
  border-right: 1px solid var(--ink);
  background: var(--orange);
}

.platform-type--evergreen {
  color: var(--white);
  background: var(--blue);
}

.platform-type__number {
  margin-bottom: 70px;
  font-family: var(--mono);
  font-size: 10px;
}

.platform-type h3 {
  margin: 0 0 18px;
  font-size: 26px;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.platform-type p {
  margin: 0 0 30px;
  font-size: 14px;
  line-height: 1.65;
}

.platform-type--evergreen p {
  color: #dce2ff;
}

.platform-type > span {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-section blockquote {
  position: relative;
  margin: 0;
  padding: 36px 40px 38px 78px;
  color: var(--white);
  background: var(--ink);
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.4;
}

.article-section blockquote::before {
  position: absolute;
  top: 37px;
  left: 30px;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
  content: "“";
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
  box-shadow: 9px 9px 0 var(--ink);
  scrollbar-color: var(--orange) var(--paper);
}

.comparison-table-wrap:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.comparison-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  font-size: 12px;
  line-height: 1.55;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table tr > *:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table thead th {
  color: var(--paper);
  border-color: #41413b;
  background: var(--ink);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table thead th:nth-child(1) { width: 15%; }
.comparison-table thead th:nth-child(2) { width: 13%; }
.comparison-table thead th:nth-child(3) { width: 22%; }
.comparison-table thead th:nth-child(4) { width: 16%; }

.comparison-table tbody th {
  font-size: 13px;
  font-weight: 700;
}

.comparison-table tbody td {
  color: #494840;
}

.comparison-table__featured > * {
  background: #e5e9ff;
}

.comparison-table__featured th {
  color: var(--blue);
}

.platform-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.type-pill {
  display: inline-flex;
  padding: 5px 7px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.type-pill--evergreen {
  color: var(--blue);
}

.type-pill--spike {
  color: var(--orange-dark);
}

.type-pill--pre {
  color: var(--green);
}

.table-hint {
  display: none;
  margin-top: 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.matter-list {
  border-top: 1px solid var(--ink);
}

.matter-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 28px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.matter-item > span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
}

.matter-item h3 {
  margin: 2px 0 15px;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.matter-item p {
  margin: 0;
  color: #48473f;
  font-size: 16px;
  line-height: 1.75;
}

.launch-plan {
  margin: 0;
  padding: 0;
  counter-reset: launch-plan;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.launch-plan li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 28px;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.launch-plan li > span {
  padding-top: 4px;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 9px;
}

.launch-plan h3 {
  margin: 0 0 9px;
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.launch-plan p {
  margin: 0;
  color: #4d4c45;
  font-size: 15px;
  line-height: 1.72;
}

.article-conclusion {
  width: min(100%, 840px);
  margin-top: 95px;
  padding: 60px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 13px 13px 0 var(--orange), 13px 13px 0 1px var(--ink);
  scroll-margin-top: 110px;
}

.article-conclusion .article-section__eyebrow {
  color: #c6cfff;
}

.article-conclusion .article-section__eyebrow span {
  color: var(--ink);
  background: var(--lime);
}

.article-conclusion p {
  margin: 0;
  color: #e2e6ff;
  font-size: 18px;
  line-height: 1.75;
}

.article-disclosure {
  width: min(100%, 840px);
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 30px;
  margin: 75px 0 100px;
  padding-top: 27px;
  border-top: 1px solid var(--ink);
}

.article-disclosure > span {
  padding-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-disclosure p {
  margin: 0;
  color: #5f5e56;
  font-size: 13px;
  font-style: italic;
  line-height: 1.7;
}

.article-cta {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--orange);
}

.article-cta__inner {
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.article-cta__inner > div > span {
  display: block;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-cta h2 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(45px, 5.5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.article-cta .button--primary {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--ink);
}

h1 a {
  color: #ff5b35;
}

@media (max-width: 1160px) {
  .article-hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.75fr);
    gap: 55px;
  }

  .article-layout,
  .article-intro__inner {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 38px;
  }
}

@media (max-width: 980px) {
  .article-hero {
    padding-bottom: 100px;
  }

  .article-hero__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .article-hero__copy {
    max-width: 850px;
  }

  .article-hero h1 {
    font-size: clamp(62px, 10vw, 90px);
  }

  .launch-chart {
    width: min(100%, 600px);
  }

  .article-intro__inner {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .article-layout {
    display: block;
  }

  .article-aside {
    display: none;
  }

  .article-section,
  .article-conclusion,
  .article-disclosure {
    width: min(100%, 900px);
  }

  .table-hint {
    display: block;
  }
}

@media (max-width: 760px) {
  .article-hero {
    min-height: 0;
    padding: 165px 0 85px;
  }

  .article-hero::after {
    display: none;
  }

  .article-breadcrumb {
    margin-bottom: 42px;
  }

  .article-hero h1 {
    font-size: clamp(49px, 13vw, 72px);
  }

  .article-hero h1 {
    margin-bottom: 35px;
  }

  .article-hero__meta {
    gap: 9px 17px;
  }

  .article-hero__meta span:nth-child(3) {
    display: none;
  }

  .launch-chart {
    width: calc(100% - 11px);
    box-shadow: 10px 10px 0 var(--orange), 10px 10px 0 1px var(--ink);
  }

  .launch-chart__top,
  .launch-chart__legend {
    padding-inline: 12px;
  }

  .article-intro__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .article-intro p {
    font-size: 22px;
  }

  .article-section {
    padding: 75px 0;
  }

  .article-section h2,
  .article-conclusion h2 {
    font-size: clamp(39px, 10.5vw, 56px);
  }

  .article-section > p,
  .article-conclusion p {
    font-size: 16px;
  }

  .fact-list li,
  .matter-item,
  .launch-plan li {
    grid-template-columns: 48px 1fr;
    gap: 17px;
  }

  .fact-list p,
  .matter-item p {
    font-size: 15px;
  }

  .matter-item > span {
    width: 42px;
    height: 42px;
  }

  .can-cannot,
  .platform-types {
    grid-template-columns: 1fr;
  }

  .can-cannot {
    gap: 24px;
  }

  .can-cannot__card--can {
    box-shadow: 6px 6px 0 var(--blue);
  }

  .platform-type {
    min-height: 355px;
  }

  .platform-type--spike {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .article-section blockquote {
    padding: 32px 25px 34px 60px;
  }

  .article-section blockquote::before {
    top: 33px;
    left: 22px;
  }

  .article-conclusion {
    margin-top: 75px;
    padding: 42px 28px;
    box-shadow: 9px 9px 0 var(--orange), 9px 9px 0 1px var(--ink);
  }

  .article-disclosure {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 80px;
  }

  .article-cta__inner {
    min-height: 390px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 45px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .article-cta .button--primary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .article-kicker span:last-child {
    display: none;
  }

  .launch-chart__top span:last-child {
    display: none;
  }

  .launch-chart__legend {
    gap: 13px;
    font-size: 6px;
  }

  .article-section h2,
  .article-conclusion h2 {
    font-size: 39px;
  }

  .fact-list li,
  .matter-item,
  .launch-plan li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .matter-item > span {
    width: 35px;
    height: 35px;
  }

  .platform-type {
    padding-inline: 24px;
  }

  .article-conclusion {
    padding-inline: 23px;
  }
}
