/* ==========================================================================
   Comparison Page Bundle
   Auto-generated by bin/bundle-css — do not edit manually.
   ========================================================================== */

/* --- Source: components/landings/hero.css --- */

.hero {
  padding: 0 var(--space-4, 16px);
}

.hero__title {
  line-height: normal;
  font-size: 36px;

  .emphasis--selected {
    line-height: 44px;
  }
}

.hero__title-icon {
  display: inline-block;
  vertical-align: baseline;

  width: 29px;
  height: 29px;
}

.hero__column {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: var(--space-8, 32px) 0;

  &:last-child {
    padding-bottom: 0;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5, 20px);
}

.hero__features {
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: var(--space-3, 12px);

  list-style: none;

  line-height: var(--line-height-md, 24px);
}

.hero__features-item {
  display: flex;
  align-items: center;
  gap: var(--space-2, 8px);
}

.hero__features-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--color-active, #28cdd9);

  .square-icon__img {
    width: 24px;
    height: 24px;
  }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2, 8px);
}

.hero__actions-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2, 8px);
  color: var(--color-white);
  height: 38px;
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-sm, 4px);
  font-weight: 500;
  font-size: var(--text-lg, 16px);
  white-space: nowrap;
  cursor: pointer;
}

.hero__note {
  margin: 0;
  font-size: var(--text-md, 14px);
  line-height: var(--line-height-sm, 20px);
  color: var(--color-text-secondary, #676d72);
}

.hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 396px;
}

.hero__visual-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-4, 16px);
}

.hero__visual .video-embed {
  width: 100%;
}

.hero__illustration {
  width: 598px;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero--equal,
.hero--one-third {
  .hero__column:first-child {
    max-width: 100%;
    border-bottom: 1px solid var(--color-stroke, #1c363f);
  }
}

@media (min-width: 1024px) {
  .hero__column:first-child {
    max-width: 72%;
    padding: var(--space-8, 32px);
  }

  .hero__title {
    font-size: var(--text-h1, 40px);
  }

  .hero__actions {
    flex-direction: row;
    gap: var(--space-4, 16px);
    margin-top: var(--space-4, 16px);
  }

  .hero__actions-btn {
    min-width: 220px;
  }

  .hero__actions-link {
    border: 0;
    padding: 0;
    height: auto;
    color: var(--color-active, #28cdd9);
    font-size: var(--text-md, 14px);
    line-height: var(--line-height-sm, 20px);

    &:hover {
      color: var(--color-white, #ffffff);
    }
  }

  .hero__features-icon {
    width: 28px;
    height: 28px;

    .square-icon__img {
      width: 16px;
      height: 16px;
    }
  }

  .hero--equal {
    display: flex;
    padding: 0;

    .hero__column {
      flex: 0 0 50%;
      max-width: none;
      justify-content: center;
    }

    .hero__column:first-child {
      border: 1px solid var(--color-stroke, #1c363f);
      border-width: 0 1px 0 0;
    }

    .hero__illustration {
      position: static;
      transform: none;
    }

    .hero__visual-stack {
      position: absolute;
      top: 50%;
      width: 100%;

      transform: translateY(-50%);
      padding: 0 var(--space-8, 32px);
    }
  }

  .hero--one-third {
    display: flex;
    padding: 0;

    .hero__column:first-child {
      flex: 0 0 35.5%;
      max-width: none;
      justify-content: center;
      border: 1px solid var(--color-stroke, #1c363f);
      border-width: 0 1px 0 0;
    }

    .hero__column:last-child {
      flex: 0 0 64.5%;
      justify-content: center;
    }

    .hero__illustration {
      position: static;
      transform: none;
    }

    .hero__visual-stack {
      position: absolute;
      top: 50%;
      width: 100%;

      transform: translateY(-50%);
      padding: 0 var(--space-8, 32px);
    }
  }
}


/* --- Source: pages/comparison/comparison-hero.css --- */

.comparison-hero {
  padding: var(--space-15) 0;
  border-bottom: 1px solid var(--color-stroke);

  .hero {
    position: relative;
    z-index: 1;
  }

  .hero__column {
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .comparison-hero {
    .hero {
      padding: 0 var(--space-8);
    }
  }
}


/* --- Source: components/landings/comparison-table.css --- */

.comparison-table__container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 1140px;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: var(--text-md);
  line-height: var(--line-height-md);

  th,
  td {
    width: 21%;
    padding: var(--space-4) var(--space-5);

    text-align: left;
    vertical-align: middle;

    border-bottom: 1px solid var(--color-stroke);

    &:first-child,
    &:first-child {
      width: 16%;
      padding-left: var(--space-8);
      padding-right: var(--space-2);
    }
  }

  thead th {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-h3);
    color: var(--color-white);

    padding: var(--space-6) var(--space-5);

    background: var(--color-bg);
    border: 1px solid var(--color-stroke);
    border-width: 1px 0;

    &:not(:first-child) {
      padding: var(--space-4) var(--space-5);
    }
  }

  tbody td,
  tbody th.comparison-table__row-header {
    font-size: var(--text-md);
    line-height: 16px;
    color: var(--color-text);
    font-weight: 400;
  }

  td.comparison-table__highlight-col,
  th.comparison-table__highlight-col {
    color: var(--color-active);
    font-weight: 500;
    background: var(--color-active-10);

    .comparison-table__icon {
      border-color: var(--color-active-30);
      color: var(--color-active);
    }
  }

  th.comparison-table__highlight-col {
    background: var(--color-bg);
  }

  tbody tr {
    &:hover {
      td,
      th.comparison-table__row-header {
        background: var(--color-row-hover);
      }

      .comparison-table__highlight-col {
        background: var(--color-active-30);
      }
    }
  }

  tbody tr.comparison-table__row--highlighted {
    td,
    th.comparison-table__row-header {
      background: rgba(40, 205, 217, 0.06);
    }

    .comparison-table__row-header {
      font-weight: 700;
      color: var(--color-active);
    }

    &:hover {
      td,
      th.comparison-table__row-header {
        background: rgba(40, 205, 217, 0.15);
      }

      .comparison-table__highlight-col {
        background: var(--color-active-30);
      }
    }
  }
}

.comparison-table__col-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.comparison-table__col-label {
  display: block;
}

.comparison-table__col-note {
  display: block;
  margin-top: var(--space-1);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: var(--line-height-sm);
  color: var(--color-text-secondary);
}

.comparison-table
  thead
  th:not(:first-child)
  .comparison-table__col-title:has(.comparison-table__col-note) {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1);

  .comparison-table__col-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-h3);
    line-height: normal;
    color: var(--color-white);
  }

  .comparison-table__col-note {
    margin-top: 0;
    font-size: var(--text-md);
  }
}

.comparison-table thead th:not(:first-child):has(.comparison-table__col-note) {
  vertical-align: top;
}

.comparison-table__feature-col-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);

  color: var(--color-white);
  font-size: var(--text-h3);

  white-space: nowrap;
}

.comparison-table__icon {
  flex-shrink: 0;
  color: var(--color-white);
  border: 1px solid var(--color-stroke-light);
  background: var(--color-bg);
}

.comparison-table__best {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-warning);
}

.comparison-table__best-value {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-warning);
}

.comparison-table__icon-star {
  flex-shrink: 0;
  color: var(--color-warning);
}

.comparison-table__warn {
  color: var(--color-warning);
}

.comparison-table__icon-check {
  display: inline-block;
  vertical-align: middle;
  margin-right: var(--space-1);
  color: var(--color-active);
}

@media (min-width: 1024px) {
  .comparison-table {
    th,
    td {
      padding: var(--space-4) var(--space-5);
    }
  }
}


/* --- Source: components/landings/ordinary-section.css --- */

.ordinary-section {
  padding: 0 0 var(--space-15);
  border-bottom: 1px solid var(--color-stroke);
}

.ordinary-section__heading {
  padding: 0 var(--space-4);
  margin-bottom: var(--space-4);
}

.ordinary-section__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: 0 var(--space-4);

  a:not(.btn):not(.cards-links__card) {
    color: var(--color-active);
    font-weight: 500;
    text-decoration: underline;
  }

  h2 {
    color: var(--color-white);
  }

  h3 {
    color: var(--color-white);
  }

  h4 {
    font-weight: 600;
    font-size: var(--text-h3);
  }

  ul {
    list-style: disc;
    padding-left: var(--space-4);
    margin: 0;
  }

  .btn {
    width: 100%;
  }
}

.ordinary-section__note {
  position: relative;
  overflow: hidden;
  padding: var(--space-6) var(--space-8);
  border: 1px solid var(--color-active-30);
  border-radius: var(--radius-lg);
  color: var(--color-text);

  &::before,
  &::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 100px;
    background: var(--color-active-80);
    filter: blur(100px);
    pointer-events: none;
  }

  &::before {
    top: -91px;
    right: -61px;
  }

  &::after {
    top: 116px;
    left: -11px;
  }

  p {
    position: relative;
    z-index: 1;
    margin: 0;
  }

  strong {
    color: var(--color-white);
  }
}

.ordinary-section__actions {
  margin: var(--space-4) 0 0;
}

@media (min-width: 1024px) {
  .ordinary-section {
    padding: var(--space-15) 0;
  }

  .ordinary-section__heading,
  .ordinary-section__content {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }

  .ordinary-section__content {
    .btn {
      width: auto;
      min-width: 240px;
    }
  }
}


/* --- Source: components/landings/major-section.css --- */

.major-section {
  padding: 0 0 var(--space-15);
  border-bottom: 1px solid var(--color-stroke);
}

.major-section__header {
  padding: var(--space-15) 0;

  .section-heading {
    position: relative;
    z-index: 1;
  }

  .section-heading__title {
    font-size: var(--text-h1);
  }
}

.major-section__heading {
  padding: 0 var(--space-4);
}

.major-section__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-15) var(--space-4) 0;
  border-top: 1px solid var(--color-stroke);

  h2 {
    color: var(--color-white);
  }

  h3 {
    color: var(--color-white);
  }

  ul {
    list-style: disc;
    padding-left: var(--space-4);
  }
}

@media (min-width: 1024px) {
  .major-section__heading,
  .major-section__content {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
}


/* --- Source: pages/comparison/comparison-section.css --- */

.comparison-section {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;

  .ordinary-section__heading {
    padding: 0 var(--space-4);
    margin-bottom: var(--space-6);
  }

  .ordinary-section__content {
    padding: 0 !important;
  }
}

.comparison-section__footnote {
  padding: 0 var(--space-4);
  margin: 0;

  font-size: var(--text-lg);
  line-height: var(--line-height-xl);
  color: var(--color-text);
}

.comparison-section__table {
  min-width: 1200px;

  th,
  td {
    width: 20%;
  }

  th:first-child,
  td:first-child {
    width: 20%;
  }
}

@media (min-width: 1024px) {
  .comparison-section {
    padding: var(--space-15) 0 0 !important;

    .ordinary-section__heading {
      padding: 0 var(--space-8);
    }
  }

  .comparison-section__footnote {
    padding: var(--space-2) var(--space-8) 0;
  }

  .comparison-section__table {
    min-width: 0;
  }
}


/* --- Source: components/landings/diagram-bar.css --- */

.diagram-bar {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.diagram-bar__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.diagram-bar__label {
  font-size: var(--text-lg);
  line-height: var(--line-height-md);
}

.diagram-bar__value {
  font-size: var(--text-lg);
  line-height: var(--line-height-md);
}

.diagram-bar--highlighted {
  color: var(--color-active);

  .diagram-bar__value {
    color: var(--color-active);
  }

  .diagram-bar__scale-inner {
    background-color: var(--color-active);
    border-right-color: var(--color-active);
  }
}

.diagram-bar__scale {
  display: flex;
  height: 20px;
  border: 1px solid var(--color-stroke);
  border-radius: var(--radius-xs);
  background-color: var(--color-bg);
}

.diagram-bar__scale-inner {
  width: 2%;
  height: 100%;
  border-radius: var(--radius-xs) 0 0 var(--radius-xs);
  border-right: 1px solid var(--color-stroke);
  background-color: var(--color-bg);
  transition: width 280ms ease;
}


/* --- Source: pages/comparison/charts-section.css --- */

.charts-section {
  padding: 0 0 var(--space-15);
  border-bottom: 1px solid var(--color-stroke);
}

.charts-section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-15);
}

.charts-section__item {
  padding: 0 var(--space-4) var(--space-15);

  border-bottom: 1px solid var(--color-stroke);

  &:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.charts-section__title {
  margin: 0 0 var(--space-5);
  color: var(--color-white);

  font-size: var(--text-h2);
}

.charts-section__diagrams {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (min-width: 1024px) {
  .charts-section__item {
    padding: 0 var(--space-8) var(--space-15);
  }
}


/* --- Source: pages/comparison/methodology-section.css --- */

.s3-methodology-section__table {
  min-width: 1200px;

  th,
  td,
  th:first-child,
  td:first-child {
    width: 33.33%;
  }
}

@media (min-width: 1024px) {
  .s3-methodology-section__table {
    min-width: 0;
  }
}


/* --- Source: pages/comparison/feature-section.css --- */

.feature-section {
  padding: var(--space-15) 0 0;
  border-top: 1px solid var(--color-stroke);
}

.feature-section__content {
  display: flex;
  flex-direction: column;
  padding: 0 var(--space-4);
}

.feature-section__title {
  margin: var(--space-3) 0 0;

  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: normal;
  color: var(--color-white);
}

.feature-section__content > .bullet-list {
  margin: var(--space-4) 0 0;
  line-height: var(--line-height-md);
}

.feature-section__bar {
  position: relative;
  overflow: hidden;

  padding: var(--space-4);
  margin: var(--space-6) 0 0;
  min-height: var(--space-15);

  border: 1px solid var(--color-stroke);
  border-width: 1px 0;

  &::before,
  &::after {
    content: "";
    position: absolute;
    border-radius: 100px;
    background: var(--color-active-70);
    filter: blur(50px);
    pointer-events: none;
    width: 132px;
    height: 132px;
  }

  &::before {
    left: 179px;
    bottom: -124px;
  }

  &::after {
    top: -125px;
    right: 219px;
  }

  .bullet-list {
    gap: var(--space-3);
  }
}

@media (min-width: 1024px) {
  .feature-section__content {
    padding: 0 var(--space-8);
  }

  .feature-section__bar {
    padding: var(--space-4) var(--space-8);

    .bullet-list {
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: space-around;
      gap: var(--space-6);
    }
  }
}


/* --- Source: pages/comparison/switch-section.css --- */

.switch-section {
  border-top: 0;
  padding-top: 0;

  .feature-section__bar {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);

    padding: var(--space-6) var(--space-4);
  }

  .feature-section__bar-title {
    color: var(--color-white);
  }
}

@media (min-width: 1024px) {
  .switch-section {
    .feature-section__bar {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-6);
      padding: var(--space-3) var(--space-8);
    }
  }
}


/* --- Source: components/landings/faq-list.css --- */

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-stroke);
}

.faq-list__column {
  display: contents;
}

.faq-list__item {
  position: relative;
  overflow: hidden;
  order: var(--faq-order);
  border-bottom: 1px solid var(--color-stroke);
}

.faq-list__item--open {
  &::after {
    content: "";
    position: absolute;
    bottom: -153px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background: var(--color-active-80);
    filter: blur(130px);
    pointer-events: none;
  }
}

.faq-list__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-6) var(--space-4);
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--color-white);
  z-index: var(--z-base);
}

.faq-list__question {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: var(--line-height-lg);
}

.faq-list__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--color-white);
  transition: transform 0.3s ease;
}

.faq-list__item--open .faq-list__icon {
  transform: rotate(45deg);
}

.faq-list__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  z-index: var(--z-base);
}

.faq-list__item--open .faq-list__answer {
  grid-template-rows: 1fr;
}

.faq-list__answer-inner {
  overflow: hidden;
}

.faq-list__answer-inner p {
  margin: 0;
  padding: 0 var(--space-4) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: var(--line-height-lg);
  color: var(--color-text);
}

.faq-list__answer-inner a {
  color: var(--color-active);
  border-bottom: 1px solid var(--color-active-30);
  transition: border-color var(--transition);
}

.faq-list__answer-inner a:hover {
  border-color: var(--color-active);
}

@media (min-width: 1024px) {
  .faq-list {
    flex-direction: row;
  }

  .faq-list__column {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
  }

  .faq-list__column:first-child {
    border-right: 1px solid var(--color-stroke);
  }

  .faq-list__item {
    order: unset;
  }

  .faq-list__trigger {
    padding: var(--space-8);
  }

  .faq-list__answer-inner p {
    padding: 0 var(--space-8) var(--space-8);
  }
}


/* --- Source: components/landings/cards-links.css --- */

.cards-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.cards-links__card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  gap: var(--space-2);

  padding: var(--space-6);

  border: 1px solid var(--color-active-30);
  border-radius: var(--radius-lg);

  text-decoration: none;

  transition: border-color var(--transition);

  &::before {
    content: "";
    position: absolute;
    left: -21px;
    bottom: -30px;
    width: 120px;
    height: 120px;
    border-radius: 100px;
    background: var(--color-active-80);
    filter: blur(100px);
    pointer-events: none;
  }

  &:hover {
    border-color: var(--color-active);
  }
}

.cards-links__title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-white);
  font-size: var(--text-h2);
}

.cards-links__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .cards-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cards-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-links__title {
    font-size: var(--text-h3);
  }
}


/* --- Source: components/landings/banner-section.css --- */

.banner-section {
  padding: 0 var(--space-4, 16px) var(--space-20, 80px);
}

@media (min-width: 1024px) {
  .banner-section {
    padding: var(--space-25, 100px) 0;
  }
}

