.platform-page {
  background: var(--surface);
}

.platform-page main {
  overflow: hidden;
}

.platform-subnav {
  height: 52px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}

.platform-subnav .container-xl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding-right: 63px;
}

.platform-subnav a {
  color: rgba(31, 36, 31, 0.6);
  font-size: 13px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.platform-subnav a:hover,
.platform-subnav a:focus-visible {
  color: var(--brand);
}

.platform-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(27, 67, 50, 0.7);
  font-size: 14px;
}

.platform-kicker i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--gold);
}

.platform-hero {
  height: 664px;
  background: var(--surface);
}

.platform-hero-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 638.4px 577.6px;
  grid-template-areas: "visual copy";
  gap: 64px;
  align-items: start;
  padding-block: 96px 88px;
  direction: ltr;
}

.platform-hero-copy {
  grid-area: copy;
  width: 100%;
  margin-top: 24px;
  direction: rtl;
  text-align: right;
}

.platform-hero-copy h1 {
  margin: 24px 0 0;
  color: var(--brand);
  font-size: 56px;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -1.5px;
}

.platform-hero-copy h1 span {
  color: var(--accent);
}

.platform-hero-copy > p {
  width: 480px;
  margin: 24px 0 0 auto;
  color: rgba(27, 67, 50, 0.8);
  font-size: 18px;
  line-height: 33px;
}

.platform-hero-actions {
  height: 72px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-top: 8px;
}

.platform-hero-actions .btn {
  min-width: 139px;
  box-shadow: none;
}

.text-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  border-bottom: 1px solid rgba(27, 67, 50, 0.38);
  font-size: 16px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.platform-hero-copy > small {
  display: block;
  margin-top: 24px;
  color: rgba(27, 67, 50, 0.58);
  font-size: 13px;
  line-height: 21px;
}

.platform-hero-visual {
  position: relative;
  grid-area: visual;
  width: 638.4px;
  height: 480px;
  direction: rtl;
}

.platform-photo-backdrop {
  position: absolute;
  top: 30px;
  left: 0;
  width: 300px;
  height: 440px;
  background: var(--canvas);
  border-radius: 32px;
}

.platform-hero-photo {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 407px;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
}

.hero-stage-list {
  position: absolute;
  top: 62px;
  right: 16px;
  width: 290px;
  height: 356px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0 0 0 10px;
  list-style: none;
}

.hero-stage-list::before {
  position: absolute;
  z-index: 0;
  top: 44px;
  right: 18px;
  width: 1px;
  height: 280px;
  content: "";
  background: rgba(27, 67, 50, 0.18);
}

.hero-stage-list li {
  position: relative;
  z-index: 1;
  height: 37px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--brand);
}

.hero-stage-list li span {
  width: 37px;
  height: 37px;
  display: grid;
  flex: 0 0 37px;
  place-items: center;
  color: var(--gold);
  background: var(--surface);
  border: 1px solid rgba(212, 134, 11, 0.58);
  border-radius: 50%;
  font-size: 12px;
}

.hero-stage-list li b {
  min-width: 72px;
  font-size: 18px;
  font-weight: 500;
}

.hero-stage-list li.is-active span {
  color: var(--surface);
  background: var(--brand);
  border-color: var(--brand);
}

.platform-section {
  position: relative;
}

.platform-split-heading {
  display: grid;
  grid-template-columns: 608px 608px;
  grid-template-areas: "copy title";
  gap: 64px;
  align-items: end;
  direction: ltr;
}

.platform-split-heading h2 {
  grid-area: title;
  margin: 0;
  color: var(--brand);
  font-size: 48px;
  font-weight: 600;
  line-height: 64px;
  letter-spacing: -1px;
  direction: rtl;
  text-align: right;
}

.platform-split-heading p {
  grid-area: copy;
  align-self: end;
  margin: 0;
  color: rgba(27, 67, 50, 0.72);
  font-size: 18px;
  line-height: 33px;
  direction: rtl;
  text-align: right;
}

.platform-why {
  height: 832px;
  padding-block: 112px;
  background: var(--canvas);
}

.why-grid {
  display: grid;
  grid-template-columns: 608px 608px;
  grid-template-areas: "card list";
  gap: 64px;
  margin-top: 64px;
  direction: ltr;
}

.why-list {
  grid-area: list;
  direction: rtl;
}

.why-list > div {
  height: 67.2px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(27, 67, 50, 0.14);
}

.why-list > div:first-child {
  border-top: 1px solid rgba(27, 67, 50, 0.14);
}

.why-list span {
  width: 27px;
  flex: 0 0 27px;
  color: var(--gold);
  font-size: 14px;
}

.why-list b {
  color: var(--brand);
  font-size: 18px;
  font-weight: 500;
}

.why-card {
  grid-area: card;
  height: 399px;
  padding: 32px;
  direction: rtl;
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.why-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.why-card small {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 13px;
}

.why-card p {
  margin: 8px 0 0;
  color: rgba(27, 67, 50, 0.78);
  font-size: 16px;
  line-height: 31px;
}

.training-process {
  height: 521px;
  padding-top: 112px;
  background: var(--surface);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
  direction: rtl;
}

.process-steps::before {
  position: absolute;
  top: 23px;
  right: 23.5px;
  left: calc(20% - 23.5px);
  height: 1px;
  content: "";
  background: rgba(27, 67, 50, 0.16);
}

.process-steps li {
  position: relative;
  z-index: 1;
  min-height: 157px;
  padding-left: 16px;
  color: var(--brand);
  text-align: right;
}

.process-steps span {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: 0;
  color: var(--brand);
  background: var(--surface);
  border: 1px solid rgba(27, 67, 50, 0.18);
  border-radius: 50%;
  font-size: 14px;
}

.process-steps li:first-child span {
  color: var(--surface);
  background: var(--brand);
  border-color: var(--brand);
}

.process-steps b {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 43px;
}

.process-steps p {
  margin: 0;
  color: rgba(27, 67, 50, 0.68);
  font-size: 14px;
  line-height: 26px;
}

.platform-tools {
  height: 841px;
  padding-block: 112px;
  background: var(--canvas);
}

.platform-tools-panel {
  height: 448px;
  display: grid;
  grid-template-columns: 1000px 280px;
  margin-top: 56px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 24px;
  direction: ltr;
}

.tool-tab-content {
  display: grid;
  grid-template-columns: 385px 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 48px 20px;
  direction: ltr;
}

.tool-preview {
  height: 316px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  direction: rtl;
  color: var(--brand);
  background: var(--canvas);
  border-radius: 20px;
  text-align: right;
}

.tool-preview small {
  color: var(--gold);
  font-size: 12px;
}

.tool-preview b {
  margin-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.tool-preview span {
  margin-top: 16px;
  color: rgba(27, 67, 50, 0.7);
  font-size: 14px;
}

.tool-description {
  height: 298px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  direction: rtl;
  text-align: right;
}

.tool-description h3 {
  margin: 0 0 24px;
  color: var(--brand);
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
}

.tool-description > div {
  width: 100%;
  margin-bottom: 18px;
}

.tool-description small {
  display: block;
  color: var(--gold);
  font-size: 13px;
}

.tool-description p {
  margin: 8px 0 0;
  color: rgba(27, 67, 50, 0.78);
  font-size: 17px;
  line-height: 31px;
}

.tool-description .btn {
  min-width: 160px;
  margin-top: auto;
}

.tool-tabs {
  padding: 16px;
  border-left: 1px solid rgba(27, 67, 50, 0.1);
  direction: rtl;
}

.tool-tabs button {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 0 16px;
  color: rgba(27, 67, 50, 0.64);
  background: transparent;
  border: 0;
  border-radius: 12px;
  font-size: 16px;
  text-align: right;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.tool-tabs button:hover,
.tool-tabs button.active {
  color: var(--brand);
  background: var(--canvas);
}

.tool-tabs button i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  background: var(--accent);
  border-radius: 50%;
}

.session-results {
  height: 886px;
  padding-block: 112px;
  background: var(--surface);
}

.session-results .platform-split-heading {
  min-height: 144px;
  align-items: start;
}

.session-results .platform-split-heading h2 {
  max-width: 442px;
  margin-left: auto;
  font-size: 52px;
  line-height: 72px;
}

.session-card {
  height: 462px;
  margin-top: 56px;
  padding: 48px;
  color: var(--brand);
  border: 1px solid rgba(27, 67, 50, 0.14);
  border-radius: 24px;
}

.session-label {
  color: var(--gold);
  font-size: 13px;
}

.session-summary {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 31px;
}

.session-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.session-metrics > div {
  height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: var(--canvas);
  border-radius: 14px;
}

.session-metrics small,
.session-feedback small {
  color: rgba(27, 67, 50, 0.62);
  font-size: 13px;
}

.session-metrics b {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 500;
}

.session-metrics .needs-work {
  color: var(--accent);
}

.session-feedback {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}

.session-feedback > div {
  padding-block: 16px;
}

.session-feedback p {
  margin: 5px 0 0;
  font-size: 15px;
  line-height: 29px;
}

.session-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: rgba(27, 67, 50, 0.72);
  font-size: 13px;
}

.session-footer a {
  color: var(--brand);
  border-bottom: 1px solid rgba(27, 67, 50, 0.4);
  font-size: 14px;
  font-weight: 600;
}

.platform-principles {
  height: 786px;
  padding-block: 112px;
  color: rgba(247, 242, 236, 0.72);
  background: var(--brand);
}

.platform-principles h2 {
  margin: 0;
  color: var(--surface);
  font-size: 48px;
  font-weight: 600;
  line-height: 72px;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  margin-top: 72px;
  direction: rtl;
}

.principles-grid article {
  min-height: 104px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding-block: 24px;
  border-bottom: 1px solid rgba(247, 242, 236, 0.14);
}

.principles-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.principles-grid span {
  color: var(--gold);
  font-size: 32px;
  font-weight: 300;
  line-height: 48px;
}

.principles-grid h3 {
  margin: 0;
  color: var(--surface);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.principles-grid p {
  margin: 2px 0 0;
  color: rgba(247, 242, 236, 0.72);
  font-size: 14px;
  line-height: 24px;
}

.platform-about {
  height: 744px;
  padding-block: 112px;
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 668.8px 547.2px;
  grid-template-areas: "copy image";
  gap: 64px;
  align-items: center;
  direction: ltr;
}

.about-copy {
  grid-area: copy;
  direction: rtl;
  text-align: right;
}

.about-copy h2 {
  margin: 16px 0 0;
  color: var(--brand);
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
}

.about-copy > p {
  margin: 16px 0 0;
  color: rgba(27, 67, 50, 0.8);
  font-size: 18px;
  line-height: 31px;
}

.about-goals {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(27, 67, 50, 0.14);
}

.about-goals small {
  color: var(--gold);
  font-size: 14px;
}

.about-goals p {
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 17px;
  line-height: 31px;
}

.about-photo {
  grid-area: image;
  width: 547.2px;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.responsible-use {
  height: 430px;
  padding-bottom: 112px;
  background: var(--surface);
}

.responsible-card {
  height: 318px;
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
  padding: 48px;
  color: var(--brand);
  background: var(--canvas);
  border: 1px solid rgba(27, 67, 50, 0.14);
  border-radius: 24px;
}

.responsible-card > div {
  flex: 1;
  min-width: 0;
  direction: rtl;
  text-align: right;
}

.responsible-card > div > small {
  color: var(--accent);
  font-size: 13px;
}

.responsible-card h2 {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.responsible-card p {
  max-width: 820px;
  margin: 8px 0 0 auto;
  color: rgba(27, 67, 50, 0.8);
  font-size: 16px;
  line-height: 30px;
}

.responsible-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.responsible-card li {
  position: relative;
  padding-right: 13px;
  font-size: 15px;
}

.responsible-card li::before {
  position: absolute;
  top: 10px;
  right: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--gold);
}

.responsible-icon {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 52px;
  place-items: center;
  background: var(--surface);
  border-radius: 14px;
}

.responsible-icon img {
  width: 24px;
  height: 24px;
}

.platform-cta-wrap {
  height: 497px;
  padding-block: 48px;
  background: var(--surface);
}

.platform-cta-wrap .cta-panel {
  height: 393px;
}

.platform-footer-logo {
  width: 120px;
  height: 55px;
  object-fit: contain;
}

.platform-page .socials img {
  width: 16px;
  height: 16px;
}

@media (max-width: 1319.98px) {
  .platform-hero-grid,
  .platform-split-heading,
  .why-grid,
  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .platform-hero-visual,
  .about-photo {
    width: 100%;
  }

  .platform-tools-panel {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

  .tool-tab-content {
    grid-template-columns: minmax(280px, 385px) minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 991.98px) {
  .platform-subnav {
    height: auto;
    overflow-x: auto;
  }

  .platform-subnav .container-xl {
    width: max-content;
    min-width: 100%;
    justify-content: center;
    gap: 28px;
    padding: 14px 20px;
  }

  .platform-hero,
  .platform-why,
  .training-process,
  .platform-tools,
  .session-results,
  .platform-principles,
  .platform-about,
  .responsible-use,
  .platform-cta-wrap {
    height: auto;
  }

  .platform-hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "visual";
    gap: 56px;
    padding-block: 72px;
  }

  .platform-hero-copy {
    margin-top: 0;
    text-align: center;
  }

  .platform-hero-copy > p {
    margin-inline: auto;
  }

  .platform-hero-actions {
    justify-content: center;
  }

  .platform-hero-visual {
    max-width: 638px;
    margin-inline: auto;
  }

  .platform-why,
  .training-process,
  .platform-tools,
  .session-results,
  .platform-principles,
  .platform-about {
    padding-block: 80px;
  }

  .platform-split-heading {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "copy";
    gap: 16px;
  }

  .platform-split-heading h2,
  .platform-split-heading p,
  .session-results .platform-split-heading h2 {
    max-width: none;
    margin: 0;
    text-align: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "list" "card";
    gap: 40px;
  }

  .why-card {
    width: min(608px, 100%);
    margin-inline: auto;
  }

  .training-process {
    padding-bottom: 64px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
  }

  .process-steps::before {
    display: none;
  }

  .process-steps li {
    min-height: 170px;
    padding: 24px;
    background: var(--canvas);
    border-radius: 18px;
  }

  .platform-tools-panel {
    height: auto;
    grid-template-columns: 1fr;
  }

  .tool-tabs {
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 0;
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
  }

  .tool-tab-content {
    grid-template-columns: 1fr 1fr;
  }

  .session-results .platform-split-heading {
    min-height: 0;
  }

  .session-card {
    height: auto;
  }

  .session-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .session-metrics > div:last-child {
    grid-column: 1 / 3;
  }

  .principles-grid {
    margin-top: 48px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "copy";
    gap: 48px;
  }

  .about-photo {
    max-width: 547px;
    margin-inline: auto;
  }

  .about-copy {
    text-align: center;
  }

  .responsible-use {
    padding-bottom: 80px;
  }

  .responsible-card {
    height: auto;
  }

  .platform-cta-wrap {
    padding-bottom: 80px;
  }
}

@media (max-width: 575.98px) {
  .platform-subnav .container-xl {
    justify-content: flex-start;
    gap: 22px;
  }

  .platform-hero-grid {
    gap: 40px;
    padding-block: 56px;
  }

  .platform-hero-copy h1 {
    font-size: 38px;
    line-height: 52px;
    letter-spacing: -0.6px;
  }

  .platform-hero-copy > p {
    width: 100%;
    font-size: 15px;
    line-height: 29px;
  }

  .platform-hero-actions {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }

  .platform-hero-actions .btn,
  .platform-hero-actions .text-link {
    width: 100%;
  }

  .platform-hero-visual {
    height: 390px;
  }

  .platform-photo-backdrop {
    top: 22px;
    width: 230px;
    height: 340px;
  }

  .platform-hero-photo {
    top: 0;
    left: 12px;
    width: 300px;
    height: 350px;
  }

  .hero-stage-list {
    top: 27px;
    right: -4px;
    width: 176px;
    height: 310px;
    gap: 26px;
  }

  .hero-stage-list::before {
    top: 38px;
    height: 235px;
  }

  .hero-stage-list li b {
    min-width: 58px;
    font-size: 14px;
  }

  .platform-why,
  .training-process,
  .platform-tools,
  .session-results,
  .platform-principles,
  .platform-about {
    padding-block: 64px;
  }

  .platform-split-heading h2,
  .session-results .platform-split-heading h2,
  .platform-principles h2,
  .about-copy h2 {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -0.4px;
  }

  .platform-split-heading p {
    font-size: 15px;
    line-height: 29px;
  }

  .why-grid {
    margin-top: 40px;
  }

  .why-list > div {
    height: auto;
    min-height: 62px;
  }

  .why-list b {
    font-size: 15px;
  }

  .why-card {
    height: auto;
    padding: 18px;
  }

  .why-card p {
    font-size: 14px;
    line-height: 27px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    min-height: 0;
  }

  .platform-tools-panel {
    margin-top: 40px;
  }

  .tool-tabs {
    grid-template-columns: 1fr;
  }

  .tool-tab-content {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .tool-preview {
    height: 230px;
  }

  .tool-description {
    height: auto;
    min-height: 330px;
  }

  .tool-description h3 {
    font-size: 26px;
  }

  .session-card {
    margin-top: 40px;
    padding: 22px;
  }

  .session-metrics,
  .session-feedback {
    grid-template-columns: 1fr;
  }

  .session-metrics > div:last-child {
    grid-column: auto;
  }

  .session-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid article:nth-last-child(2) {
    border-bottom: 1px solid rgba(247, 242, 236, 0.14);
  }

  .about-photo {
    height: 390px;
  }

  .about-copy > p,
  .about-goals p {
    font-size: 15px;
    line-height: 29px;
  }

  .responsible-use {
    padding-bottom: 64px;
  }

  .responsible-card {
    flex-direction: column-reverse;
    padding: 24px;
  }

  .responsible-card p {
    font-size: 14px;
    line-height: 27px;
  }

  .responsible-card ul {
    grid-template-columns: 1fr;
  }

  .responsible-icon {
    align-self: flex-end;
  }

  .platform-cta-wrap {
    padding-bottom: 64px;
  }

  .platform-cta-wrap .cta-panel {
    height: auto;
  }
}
