@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;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17202f;
  background: #ffffff;
}

.tsv-editorial-content,
.tsv-editorial-content section,
.tsv-editorial-content div,
.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 12% 12%, rgba(37, 244, 238, 0.09), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(254, 44, 85, 0.08), transparent 30%),
    #f8fafc;
}

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

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

.tsv-editorial-content .tsv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(254, 44, 85, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.12), rgba(254, 44, 85, 0.10));
  color: #334155;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.tsv-editorial-content .tsv-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 0 18px rgba(254, 44, 85, 0.35);
}

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

.tsv-editorial-content .tsv-section-header p {
  margin: 16px auto 0;
  color: #5b6677;
  line-height: 1.75;
  font-weight: 450;
}

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

.tsv-editorial-content .tsv-card,
.tsv-editorial-content .tsv-trust-card,
.tsv-editorial-content .tsv-step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.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(37, 244, 238, 0.10), transparent 34%, rgba(254, 44, 85, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
}

.tsv-editorial-content .tsv-card:hover,
.tsv-editorial-content .tsv-trust-card:hover,
.tsv-editorial-content .tsv-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(254, 44, 85, 0.24);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.11);
}

.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-trust-card h3,
.tsv-editorial-content .tsv-step-content h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #111827;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.tsv-editorial-content .tsv-card p,
.tsv-editorial-content .tsv-trust-card p,
.tsv-editorial-content .tsv-step-content p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #647084;
  line-height: 1.7;
  font-weight: 430;
}

.tsv-editorial-content .tsv-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.22), rgba(254, 44, 85, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 12px 30px rgba(37, 244, 238, 0.16);
}

.tsv-editorial-content .tsv-icon::before,
.tsv-editorial-content .tsv-icon::after {
  content: "";
  position: absolute;
  transition: transform 220ms 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-search::before {
  width: 15px;
  height: 15px;
  left: 13px;
  top: 12px;
  border: 3px solid #111827;
  border-radius: 50%;
}

.tsv-editorial-content .tsv-icon-search::after {
  width: 12px;
  height: 3px;
  left: 27px;
  top: 29px;
  border-radius: 4px;
  background: #fe2c55;
  transform: rotate(45deg);
}

.tsv-editorial-content .tsv-icon-speed::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 13px;
  border: 3px solid #111827;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.tsv-editorial-content .tsv-icon-speed::after {
  width: 14px;
  height: 3px;
  left: 22px;
  top: 22px;
  border-radius: 4px;
  background: #fe2c55;
  transform: rotate(-28deg);
}

.tsv-editorial-content .tsv-icon-preview::before {
  width: 24px;
  height: 16px;
  left: 11px;
  top: 15px;
  border: 3px solid #111827;
  border-radius: 10px;
}

.tsv-editorial-content .tsv-icon-preview::after {
  width: 7px;
  height: 7px;
  left: 20px;
  top: 20px;
  border-radius: 50%;
  background: #25f4ee;
}

.tsv-editorial-content .tsv-icon-steps::before {
  width: 6px;
  height: 6px;
  left: 13px;
  top: 12px;
  border-radius: 50%;
  background: #fe2c55;
  box-shadow: 0 10px 0 #111827, 0 20px 0 #25f4ee;
}

.tsv-editorial-content .tsv-icon-steps::after {
  width: 17px;
  height: 3px;
  left: 24px;
  top: 14px;
  border-radius: 4px;
  background: #111827;
  box-shadow: 0 10px 0 rgba(17, 24, 39, 0.55), 0 20px 0 rgba(17, 24, 39, 0.38);
}

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

.tsv-editorial-content .tsv-icon-mobile::after {
  width: 6px;
  height: 3px;
  left: 21px;
  top: 31px;
  border-radius: 4px;
  background: #fe2c55;
}

.tsv-editorial-content .tsv-icon-daily::before {
  width: 24px;
  height: 24px;
  left: 11px;
  top: 11px;
  border: 3px solid #111827;
  border-radius: 9px;
}

.tsv-editorial-content .tsv-icon-daily::after {
  width: 14px;
  height: 3px;
  left: 16px;
  top: 22px;
  border-radius: 4px;
  background: #25f4ee;
  box-shadow: 0 7px 0 #fe2c55;
}

.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;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at 8% 0%, rgba(37, 244, 238, 0.18), transparent 42%);
}

.tsv-editorial-content .tsv-step-number {
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 20px;
  background: linear-gradient(135deg, #111827, #263143);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.18);
}

.tsv-editorial-content .tsv-step-number::after {
  content: "";
  position: absolute;
}

.tsv-editorial-content .tsv-mini-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(37, 244, 238, 0.12);
  color: #334155;
  border: 1px solid rgba(37, 244, 238, 0.24);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.tsv-editorial-content .tsv-trust-card {
  padding-top: 34px;
}

.tsv-editorial-content .tsv-trust-dot {
  display: block;
  position: relative;
  z-index: 1;
  width: 42px;
  height: 8px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55);
  box-shadow: 0 10px 24px rgba(254, 44, 85, 0.18);
}

.tsv-editorial-content .tsv-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

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

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

  .tsv-editorial-content .tsv-section-header 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;
  }

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

  .tsv-editorial-content .tsv-card p,
  .tsv-editorial-content .tsv-trust-card p,
  .tsv-editorial-content .tsv-step-content 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: 56px;
    height: 56px;
    font-size: 16px;
  }
}

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

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

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

  .tsv-editorial-content .tsv-section-header 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-trust-card h3,
  .tsv-editorial-content .tsv-step-content h3 {
    font-size: 19px;
  }

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

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

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

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

  .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: 26px;
  }

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

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

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

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

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

  .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: 28px;
  }

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

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

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

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

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

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

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

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

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

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

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

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