@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

.tsv-editorial-content {
  width: 100%;
  color: #172033;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.tsv-editorial-content,
.tsv-editorial-content div,
.tsv-editorial-content section,
.tsv-editorial-content article {
  box-sizing: border-box;
}

.tsv-editorial-content .tsv-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.tsv-editorial-content .tsv-section-white {
  background: #ffffff;
}

.tsv-editorial-content .tsv-section-soft {
  background:
    radial-gradient(circle at top left, rgba(37, 244, 238, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(254, 44, 85, 0.1), transparent 30%),
    #f7f9fc;
}

.tsv-editorial-content .tsv-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tsv-editorial-content .tsv-section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tsv-editorial-content .tsv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #0f766e;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tsv-editorial-content .tsv-kicker::before,
.tsv-editorial-content .tsv-kicker::after {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
}

.tsv-editorial-content h2 {
  margin: 0;
  color: #101827;
  font-weight: 850;
  line-height: 1.14;
  letter-spacing: 0;
}

.tsv-editorial-content .tsv-section-head p {
  margin: 14px auto 0;
  max-width: 680px;
  color: #5b6577;
  font-weight: 450;
}

.tsv-editorial-content .tsv-card-grid {
  display: grid;
  align-items: stretch;
}

.tsv-editorial-content .tsv-info-card,
.tsv-editorial-content .tsv-use-card,
.tsv-editorial-content .tsv-trust-card,
.tsv-editorial-content .tsv-step-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.tsv-editorial-content .tsv-info-card,
.tsv-editorial-content .tsv-use-card,
.tsv-editorial-content .tsv-trust-card {
  height: 100%;
  border-radius: 22px;
}

.tsv-editorial-content .tsv-info-card::before,
.tsv-editorial-content .tsv-use-card::before,
.tsv-editorial-content .tsv-trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.55), rgba(254, 44, 85, 0.45), transparent 55%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.tsv-editorial-content .tsv-info-card:hover,
.tsv-editorial-content .tsv-use-card:hover,
.tsv-editorial-content .tsv-trust-card:hover,
.tsv-editorial-content .tsv-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 244, 238, 0.32);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}

.tsv-editorial-content .tsv-info-card:hover::before,
.tsv-editorial-content .tsv-use-card:hover::before,
.tsv-editorial-content .tsv-trust-card:hover::before {
  opacity: 1;
}

.tsv-editorial-content h3 {
  margin: 0;
  color: #131b2d;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.tsv-editorial-content .tsv-info-card p,
.tsv-editorial-content .tsv-use-card p,
.tsv-editorial-content .tsv-trust-card p,
.tsv-editorial-content .tsv-step-card p,
.tsv-editorial-content .tsv-responsible-note p {
  margin: 10px 0 0;
  color: #5c6678;
  font-weight: 430;
}

.tsv-editorial-content .tsv-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  border-radius: 15px;
  margin-bottom: 18px;
  position: relative;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.18), rgba(254, 44, 85, 0.16));
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.tsv-editorial-content .tsv-icon::before,
.tsv-editorial-content .tsv-icon::after {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #12c8c1, #fe2c55);
  transition: transform 260ms ease;
}

.tsv-editorial-content .tsv-info-card:hover .tsv-icon::before,
.tsv-editorial-content .tsv-info-card:hover .tsv-icon::after {
  transform: translateY(-2px);
}

.tsv-editorial-content .tsv-icon-chart::before {
  width: 6px;
  height: 20px;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
}

.tsv-editorial-content .tsv-icon-chart::after {
  width: 18px;
  height: 6px;
  right: 11px;
  top: 14px;
  border-radius: 999px;
}

.tsv-editorial-content .tsv-icon-speed::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 12px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, #12c8c1, #fe2c55, transparent 70%);
}

.tsv-editorial-content .tsv-icon-speed::after {
  width: 13px;
  height: 3px;
  left: 23px;
  top: 22px;
  border-radius: 999px;
  transform-origin: left center;
  transform: rotate(-24deg);
}

.tsv-editorial-content .tsv-icon-preview::before {
  width: 24px;
  height: 16px;
  left: 11px;
  top: 15px;
  border-radius: 7px;
}

.tsv-editorial-content .tsv-icon-preview::after {
  width: 8px;
  height: 8px;
  left: 19px;
  top: 19px;
  border-radius: 50%;
  background: #ffffff;
}

.tsv-editorial-content .tsv-icon-path::before {
  width: 24px;
  height: 4px;
  left: 11px;
  top: 21px;
  border-radius: 999px;
}

.tsv-editorial-content .tsv-icon-path::after {
  width: 9px;
  height: 9px;
  right: 11px;
  top: 18px;
  border-radius: 2px;
  transform: rotate(45deg);
}

.tsv-editorial-content .tsv-icon-mobile::before {
  width: 18px;
  height: 26px;
  left: 14px;
  top: 10px;
  border-radius: 7px;
}

.tsv-editorial-content .tsv-icon-mobile::after {
  width: 6px;
  height: 2px;
  left: 20px;
  bottom: 14px;
  border-radius: 999px;
  background: #ffffff;
}

.tsv-editorial-content .tsv-icon-daily::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 12px;
  border-radius: 8px;
}

.tsv-editorial-content .tsv-icon-daily::after {
  width: 12px;
  height: 4px;
  left: 17px;
  top: 21px;
  border-radius: 999px;
  background: #ffffff;
}

.tsv-editorial-content .tsv-steps {
  display: grid;
  grid-template-columns: 1fr;
}

.tsv-editorial-content .tsv-step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    linear-gradient(135deg, rgba(37, 244, 238, 0.2), rgba(254, 44, 85, 0.16));
}

.tsv-editorial-content .tsv-step-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 44, 85, 0.14), transparent 68%);
  pointer-events: none;
}

.tsv-editorial-content .tsv-step-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #111827 0%, #0f766e 45%, #fe2c55 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.tsv-editorial-content .tsv-step-content {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.tsv-editorial-content .tsv-use-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.98));
}

.tsv-editorial-content .tsv-badge-dot {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 36%, #ffffff 0 12%, transparent 13%),
    linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 10px 28px rgba(18, 200, 193, 0.22);
}

.tsv-editorial-content .tsv-trust-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
}

.tsv-editorial-content .tsv-trust-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  position: relative;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.2), rgba(254, 44, 85, 0.16));
}

.tsv-editorial-content .tsv-trust-mark::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 15px;
  height: 22px;
  border-right: 4px solid #0f766e;
  border-bottom: 4px solid #0f766e;
  transform: rotate(42deg);
  border-radius: 2px;
}

.tsv-editorial-content .tsv-responsible-note {
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.tsv-editorial-content .tsv-responsible-note p {
  margin: 0 auto;
  max-width: 850px;
  color: #334155;
}

.tsv-editorial-content .tsv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.tsv-editorial-content .tsv-reveal.tsv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

@media (min-width: 320px) and (max-width: 374px) {
  .tsv-editorial-content .tsv-section {
    padding: 46px 0;
  }

  .tsv-editorial-content .tsv-container {
    padding: 0 14px;
  }

  .tsv-editorial-content h2 {
    font-size: 26px;
  }

  .tsv-editorial-content .tsv-section-head p {
    font-size: 14px;
  }

  .tsv-editorial-content .tsv-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .tsv-editorial-content .tsv-info-card,
  .tsv-editorial-content .tsv-use-card,
  .tsv-editorial-content .tsv-trust-card {
    padding: 20px;
  }

  .tsv-editorial-content h3 {
    font-size: 18px;
  }

  .tsv-editorial-content .tsv-info-card p,
  .tsv-editorial-content .tsv-use-card p,
  .tsv-editorial-content .tsv-trust-card p,
  .tsv-editorial-content .tsv-step-card p,
  .tsv-editorial-content .tsv-responsible-note p {
    font-size: 14px;
  }

  .tsv-editorial-content .tsv-steps {
    gap: 14px;
    margin-top: 28px;
  }

  .tsv-editorial-content .tsv-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .tsv-editorial-content .tsv-step-number {
    width: 56px;
    height: 56px;
    font-size: 17px;
  }

  .tsv-editorial-content .tsv-responsible-note {
    margin-top: 22px;
    padding: 20px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .tsv-editorial-content .tsv-section {
    padding: 52px 0;
  }

  .tsv-editorial-content .tsv-container {
    padding: 0 18px;
  }

  .tsv-editorial-content h2 {
    font-size: 29px;
  }

  .tsv-editorial-content .tsv-section-head p {
    font-size: 15px;
  }

  .tsv-editorial-content .tsv-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .tsv-editorial-content .tsv-info-card,
  .tsv-editorial-content .tsv-use-card,
  .tsv-editorial-content .tsv-trust-card {
    padding: 22px;
  }

  .tsv-editorial-content h3 {
    font-size: 19px;
  }

  .tsv-editorial-content .tsv-info-card p,
  .tsv-editorial-content .tsv-use-card p,
  .tsv-editorial-content .tsv-trust-card p,
  .tsv-editorial-content .tsv-step-card p,
  .tsv-editorial-content .tsv-responsible-note p {
    font-size: 14.5px;
  }

  .tsv-editorial-content .tsv-steps {
    gap: 16px;
    margin-top: 30px;
  }

  .tsv-editorial-content .tsv-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .tsv-editorial-content .tsv-step-number {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .tsv-editorial-content .tsv-responsible-note {
    margin-top: 24px;
    padding: 22px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .tsv-editorial-content .tsv-section {
    padding: 60px 0;
  }

  .tsv-editorial-content .tsv-container {
    padding: 0 22px;
  }

  .tsv-editorial-content h2 {
    font-size: 32px;
  }

  .tsv-editorial-content .tsv-section-head p {
    font-size: 15.5px;
  }

  .tsv-editorial-content .tsv-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .tsv-editorial-content .tsv-info-card,
  .tsv-editorial-content .tsv-use-card,
  .tsv-editorial-content .tsv-trust-card {
    padding: 24px;
  }

  .tsv-editorial-content h3 {
    font-size: 20px;
  }

  .tsv-editorial-content .tsv-info-card p,
  .tsv-editorial-content .tsv-use-card p,
  .tsv-editorial-content .tsv-trust-card p,
  .tsv-editorial-content .tsv-step-card p,
  .tsv-editorial-content .tsv-responsible-note p {
    font-size: 15px;
  }

  .tsv-editorial-content .tsv-steps {
    gap: 18px;
    margin-top: 34px;
  }

  .tsv-editorial-content .tsv-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .tsv-editorial-content .tsv-step-number {
    width: 62px;
    height: 62px;
    font-size: 19px;
  }

  .tsv-editorial-content .tsv-responsible-note {
    margin-top: 26px;
    padding: 24px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tsv-editorial-content .tsv-section {
    padding: 76px 0;
  }

  .tsv-editorial-content .tsv-container {
    padding: 0 30px;
  }

  .tsv-editorial-content h2 {
    font-size: 40px;
  }

  .tsv-editorial-content .tsv-section-head p {
    font-size: 16.5px;
  }

  .tsv-editorial-content .tsv-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
  }

  .tsv-editorial-content .tsv-info-card,
  .tsv-editorial-content .tsv-use-card,
  .tsv-editorial-content .tsv-trust-card {
    padding: 28px;
  }

  .tsv-editorial-content h3 {
    font-size: 21px;
  }

  .tsv-editorial-content .tsv-info-card p,
  .tsv-editorial-content .tsv-use-card p,
  .tsv-editorial-content .tsv-trust-card p,
  .tsv-editorial-content .tsv-step-card p,
  .tsv-editorial-content .tsv-responsible-note p {
    font-size: 15.5px;
  }

  .tsv-editorial-content .tsv-steps {
    gap: 20px;
    margin-top: 42px;
  }

  .tsv-editorial-content .tsv-step-card {
    gap: 24px;
    padding: 28px;
  }

  .tsv-editorial-content .tsv-step-number {
    width: 68px;
    height: 68px;
    font-size: 20px;
  }

  .tsv-editorial-content .tsv-responsible-note {
    margin-top: 30px;
    padding: 26px;
  }
}

@media (min-width: 1024px) {
  .tsv-editorial-content .tsv-section {
    padding: 92px 0;
  }

  .tsv-editorial-content .tsv-container {
    padding: 0 32px;
  }

  .tsv-editorial-content h2 {
    font-size: 46px;
  }

  .tsv-editorial-content .tsv-section-head p {
    font-size: 17px;
  }

  .tsv-editorial-content .tsv-grid-six,
  .tsv-editorial-content .tsv-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tsv-editorial-content .tsv-card-grid {
    gap: 24px;
    margin-top: 48px;
  }

  .tsv-editorial-content .tsv-info-card,
  .tsv-editorial-content .tsv-use-card,
  .tsv-editorial-content .tsv-trust-card {
    padding: 30px;
  }

  .tsv-editorial-content h3 {
    font-size: 22px;
  }

  .tsv-editorial-content .tsv-info-card p,
  .tsv-editorial-content .tsv-use-card p,
  .tsv-editorial-content .tsv-trust-card p,
  .tsv-editorial-content .tsv-step-card p,
  .tsv-editorial-content .tsv-responsible-note p {
    font-size: 16px;
  }

  .tsv-editorial-content .tsv-steps {
    gap: 22px;
    margin-top: 48px;
  }

  .tsv-editorial-content .tsv-step-card {
    gap: 28px;
    padding: 32px;
  }

  .tsv-editorial-content .tsv-step-number {
    width: 76px;
    height: 76px;
    font-size: 22px;
  }

  .tsv-editorial-content .tsv-responsible-note {
    margin-top: 34px;
    padding: 28px;
  }
}