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

.tsv-editorial-content {
  width: 100%;
  overflow-x: hidden;
  color: #151827;
  font-family: inherit;
  background: #ffffff;
}

.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;
  isolation: isolate;
}

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

.tsv-editorial-content .tsv-section-soft {
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 242, 234, 0.12), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(255, 0, 80, 0.10), transparent 28%),
    #f8fafc;
}

.tsv-editorial-content .tsv-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.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: 0 0 14px;
  padding: 8px 13px;
  border: 1px solid rgba(18, 24, 39, 0.08);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.12), rgba(255, 0, 80, 0.10));
  color: #222638;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}

.tsv-editorial-content .tsv-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00d6d0, #ff2d68);
  box-shadow: 0 0 0 5px rgba(0, 214, 208, 0.10);
}

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

.tsv-editorial-content .tsv-section-head p {
  margin: 16px auto 0;
  color: #596174;
  line-height: 1.75;
}

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

.tsv-editorial-content .tsv-card,
.tsv-editorial-content .tsv-trust-card {
  position: relative;
  min-width: 0;
  height: 100%;
  border: 1px solid rgba(18, 24, 39, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(0, 242, 234, 0.34), rgba(255, 0, 80, 0.28), rgba(18, 24, 39, 0.08)) border-box;
  box-shadow: 0 18px 45px rgba(16, 19, 34, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.tsv-editorial-content .tsv-card::after,
.tsv-editorial-content .tsv-trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.08), transparent 34%, rgba(255, 0, 80, 0.07));
  opacity: 0;
  transition: opacity 260ms ease;
}

.tsv-editorial-content .tsv-card:hover,
.tsv-editorial-content .tsv-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 214, 208, 0.28);
  box-shadow: 0 24px 62px rgba(16, 19, 34, 0.12);
}

.tsv-editorial-content .tsv-card:hover::after,
.tsv-editorial-content .tsv-trust-card:hover::after {
  opacity: 1;
}

.tsv-editorial-content .tsv-card h3,
.tsv-editorial-content .tsv-step-card h3,
.tsv-editorial-content .tsv-trust-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #111524;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.tsv-editorial-content .tsv-card p,
.tsv-editorial-content .tsv-step-card p,
.tsv-editorial-content .tsv-trust-card p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: #5a6375;
  line-height: 1.7;
}

.tsv-editorial-content .tsv-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin: 0 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.16), rgba(255, 0, 80, 0.14));
  box-shadow: inset 0 0 0 1px rgba(18, 24, 39, 0.08);
}

.tsv-editorial-content .tsv-icon::before,
.tsv-editorial-content .tsv-icon::after {
  content: "";
  position: absolute;
  transition: transform 260ms ease;
}

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

.tsv-editorial-content .tsv-icon-ring::before {
  inset: 12px;
  border: 3px solid #111524;
  border-radius: 50%;
}

.tsv-editorial-content .tsv-icon-ring::after {
  width: 12px;
  height: 3px;
  right: 10px;
  bottom: 12px;
  border-radius: 999px;
  background: #ff2d68;
  transform: rotate(45deg);
}

.tsv-editorial-content .tsv-icon-bolt::before {
  left: 17px;
  top: 9px;
  width: 10px;
  height: 26px;
  background: linear-gradient(180deg, #00d6d0, #ff2d68);
  clip-path: polygon(48% 0, 100% 0, 64% 42%, 100% 42%, 30% 100%, 48% 55%, 12% 55%);
}

.tsv-editorial-content .tsv-icon-frame::before {
  inset: 11px 9px;
  border: 3px solid #111524;
  border-radius: 8px;
}

.tsv-editorial-content .tsv-icon-frame::after {
  width: 8px;
  height: 8px;
  left: 18px;
  top: 18px;
  border-radius: 50%;
  background: #00d6d0;
}

.tsv-editorial-content .tsv-icon-path::before {
  left: 10px;
  top: 13px;
  width: 24px;
  height: 18px;
  border: 3px solid #111524;
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 10px 0;
}

.tsv-editorial-content .tsv-icon-path::after {
  right: 8px;
  top: 11px;
  width: 9px;
  height: 9px;
  border-top: 3px solid #ff2d68;
  border-right: 3px solid #ff2d68;
  transform: rotate(45deg);
}

.tsv-editorial-content .tsv-icon-mobile::before {
  left: 15px;
  top: 8px;
  width: 14px;
  height: 28px;
  border: 3px solid #111524;
  border-radius: 7px;
}

.tsv-editorial-content .tsv-icon-mobile::after {
  left: 20px;
  bottom: 11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #00d6d0;
}

.tsv-editorial-content .tsv-icon-daily::before {
  left: 11px;
  top: 12px;
  width: 22px;
  height: 20px;
  border: 3px solid #111524;
  border-radius: 8px;
}

.tsv-editorial-content .tsv-icon-daily::after {
  left: 17px;
  top: 19px;
  width: 10px;
  height: 7px;
  border-left: 3px solid #ff2d68;
  border-bottom: 3px solid #ff2d68;
  transform: rotate(-45deg);
}

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

.tsv-editorial-content .tsv-step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(18, 24, 39, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(16, 19, 34, 0.075);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.tsv-editorial-content .tsv-step-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #00d6d0, #ff2d68);
}

.tsv-editorial-content .tsv-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(16, 19, 34, 0.11);
}

.tsv-editorial-content .tsv-step-number {
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #111524;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 30px rgba(17, 21, 36, 0.18);
}

.tsv-editorial-content .tsv-badge-dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00d6d0, #ff2d68);
  box-shadow: 0 12px 28px rgba(255, 45, 104, 0.18);
}

.tsv-editorial-content .tsv-badge-dot::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background: #ffffff;
}

.tsv-editorial-content .tsv-trust-card {
  text-align: left;
}

.tsv-editorial-content .tsv-trust-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin: 0 0 18px;
  border-radius: 15px;
  background: #111524;
}

.tsv-editorial-content .tsv-trust-mark::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 13px;
  height: 18px;
  border-right: 3px solid #00d6d0;
  border-bottom: 3px solid #00d6d0;
  transform: rotate(40deg);
}

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

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

@media (min-width: 320px) and (max-width: 374px) {
  .tsv-editorial-content .tsv-section {
    padding: 50px 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: 16px;
    margin-top: 30px;
  }

  .tsv-editorial-content .tsv-card,
  .tsv-editorial-content .tsv-trust-card {
    padding: 22px;
    border-radius: 18px;
  }

  .tsv-editorial-content .tsv-card h3,
  .tsv-editorial-content .tsv-step-card h3,
  .tsv-editorial-content .tsv-trust-card h3 {
    font-size: 18px;
  }

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

  .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: 54px;
    height: 54px;
    font-size: 17px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .tsv-editorial-content .tsv-section {
    padding: 56px 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: 18px;
    margin-top: 34px;
  }

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

  .tsv-editorial-content .tsv-card h3,
  .tsv-editorial-content .tsv-step-card h3,
  .tsv-editorial-content .tsv-trust-card h3 {
    font-size: 19px;
  }

  .tsv-editorial-content .tsv-card p,
  .tsv-editorial-content .tsv-step-card p,
  .tsv-editorial-content .tsv-trust-card 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: 16px;
    padding: 24px;
  }

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

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

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

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

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

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

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

  .tsv-editorial-content .tsv-card h3,
  .tsv-editorial-content .tsv-step-card h3,
  .tsv-editorial-content .tsv-trust-card h3 {
    font-size: 20px;
  }

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

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

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

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

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

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

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

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

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

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

  .tsv-editorial-content .tsv-card h3,
  .tsv-editorial-content .tsv-step-card h3,
  .tsv-editorial-content .tsv-trust-card h3 {
    font-size: 21px;
  }

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

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

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

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

@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: 48px;
  }

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

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

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

  .tsv-editorial-content .tsv-card,
  .tsv-editorial-content .tsv-trust-card {
    padding: 32px;
  }

  .tsv-editorial-content .tsv-card h3,
  .tsv-editorial-content .tsv-step-card h3,
  .tsv-editorial-content .tsv-trust-card h3 {
    font-size: 22px;
  }

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

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

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

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