.pft {
  --pft-accent: #ffcd02;
  --pft-accent-2: #f59e0b;
  --pft-ink: #0f172a;
  --pft-muted: #475569;
  --pft-border: color-mix(in srgb, var(--pft-accent-2) 22%, transparent);
  --pft-chip-border: color-mix(in srgb, var(--pft-accent) 24%, transparent);
  --pft-chip-bg: color-mix(in srgb, var(--pft-accent) 10%, white);
  --pft-chip-text: color-mix(in srgb, var(--pft-accent) 70%, #111827);
  --pft-chip-more-border: color-mix(in srgb, var(--pft-accent-2) 28%, transparent);
  --pft-chip-more-bg: color-mix(in srgb, var(--pft-accent-2) 18%, white);
  --pft-card: #ffffff;
  --pft-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--pft-accent) 6%, white),
      color-mix(in srgb, var(--pft-accent-2) 4%, white)
    ),
    #ffffff;
  position: relative;
  overflow: hidden;
}

.pft::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 320px at 15% 0%, color-mix(in srgb, var(--pft-accent) 18%, transparent), transparent 65%),
    radial-gradient(480px 320px at 90% 15%, color-mix(in srgb, var(--pft-accent-2) 14%, transparent), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.pft__container {
  position: relative;
  z-index: 1;
}

.pft--divider {
  border-top: 10px solid var(--pft-accent);
  border-bottom: 3px solid var(--pft-accent-2);
}

.pft__container {
  display: grid;
  gap: 28px;
}


.pft__header {
  display: grid;
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.pft__content {
  display: grid;
  gap: 14px;
  min-width: 0;
  overflow-x: hidden;
}

.pft__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--pft-accent) 20%, white);
  color: var(--pft-ink);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pft__title {
  font-size: clamp(2rem, 1.3rem + 2.2vw, 3rem);
  color: var(--pft-ink);
  max-width: 22ch;
  margin: 0 0 12px;
}

.pft__subheadline {
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
  color: var(--pft-muted);
  max-width: 58ch;
  line-height: 1.6;
  margin: 0 0 18px;
}

.pft__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.pft__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pft__cta--soft {
  background: var(--color-primary);
  color: #111827;
  box-shadow: none;
}

.pft__cta--link {
  color: var(--pft-ink);
  border: 1px solid var(--pft-border);
  background: rgba(255, 255, 255, 0.9);
}

.pft__ctaSecondary--ghost {
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.16);
  box-shadow: none;
}

.pft__ctaSecondary--ghost:hover,
.pft__ctaSecondary--ghost:focus-visible {
  box-shadow: none;
}

.pft__cta:hover,
.pft__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
  outline: none;
}

.pft__cta--soft:hover,
.pft__cta--soft:focus-visible {
  color: #111827;
  box-shadow: none;
}

.pft__chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  margin-bottom: 10px;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
}

.pft__chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--pft-chip-border);
  background: var(--pft-chip-bg);
  color: var(--pft-chip-text);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  flex: 0 0 auto;
}

.pft__chip--hidden {
  display: none;
}

.pft__chip--more {
  background: var(--pft-chip-more-bg);
  border: 1px solid var(--pft-chip-more-border);
  cursor: pointer;
  width: 34px;
  height: 34px;
  min-width: 34px;
  padding: 0;
  justify-content: center;
  align-items: center;
  line-height: 1;
  border-radius: 999px;
}

.pft__message {
  border-radius: 16px;
  padding: 14px 16px;
  border-left: 4px solid var(--pft-accent);
  background: color-mix(in srgb, var(--pft-accent) 6%, white);
  box-shadow: none;
}

.pft__message h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--pft-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pft__message p {
  margin: 0;
  color: var(--pft-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pft__trust {
  display: grid;
  gap: 32px;
  min-width: 0;
}

.pft__partnerCard {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(240px 180px at 20% 10%, rgba(255, 255, 255, 0.95), transparent 70%),
    radial-gradient(260px 200px at 85% 20%, rgba(255, 255, 255, 0.8), transparent 65%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), #ffffff 55%, rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 26px 58px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.pft__partnerCard::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.04);
  pointer-events: none;
}

.pft__partnerCard::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.65), transparent 35%),
    linear-gradient(300deg, rgba(255, 255, 255, 0.4), transparent 45%);
  opacity: 0.7;
  pointer-events: none;
}

.pft__logoMedallion {
  width: 235px;
  height: 235px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pft__logoMedallion--lg {
  width: 235px;
  height: 235px;
}

.pft__logoRing {
  --pft-ring-width: 14px;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  padding: var(--pft-ring-width);
  border: var(--pft-ring-width) solid var(--pft-accent);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 22px 40px rgba(15, 23, 42, 0.2),
    inset 0 0 0 2px rgba(255, 255, 255, 0.65);
  position: relative;
}

.pft__logoRing--thick {
  --pft-ring-width: 16px;
}

.pft__logoRing--thin {
  --pft-ring-width: 10px;
}

.pft__logoInner {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.pft__logoInner--soft {
  background: transparent;
}

.pft__logoInner--shadow-soft {
  box-shadow: none;
}

.pft__logoInner img {
  max-width: 88%;
  max-height: 70%;
  object-fit: contain;
}

.pft__trustGrid {
  display: grid;
  gap: 12px 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pft__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--pft-accent) 4%, white);
  border: 1px solid color-mix(in srgb, var(--pft-accent) 14%, transparent);
  color: var(--pft-ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.pft__badgeIcon .pft__icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.pft__tabs {
  display: inline-flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--pft-border);
  padding: 6px;
  border-radius: 999px;
  width: fit-content;
}

.pft__tab {
  border: none;
  background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--pft-muted);
  cursor: pointer;
}

.pft__tab.is-active {
  background: color-mix(in srgb, var(--pft-accent) 18%, white);
  color: var(--pft-ink);
}

.pft__tab:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--pft-accent) 50%, white);
  outline-offset: 2px;
}

.pft__panel {
  display: none;
}

.pft__panel.is-active {
  display: block;
}

.pft__grid {
  display: grid;
  gap: 16px;
}

.pft-card {
  padding: 16px 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--pft-border);
  box-shadow: var(--pft-shadow);
}

.pft-card h4 {
  margin: 10px 0 6px;
  font-size: 1rem;
  color: var(--pft-ink);
}

.pft-card p {
  margin: 0;
  color: var(--pft-muted);
  font-size: 0.95rem;
}

.pft-card__icon .pft__icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  color: var(--pft-ink);
}

@media (min-width: 960px) {
  .pft__header {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .pft__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .pft__trustGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pft__logoMedallion {
    width: 177px;
    height: 177px;
  }

  .pft__logoMedallion--lg {
    width: 192px;
    height: 192px;
  }
}

@media (max-width: 720px) {
  .pft__container {
    gap: 22px;
  }

  .pft__header {
    gap: 20px;
  }

  .pft__title {
    max-width: 100%;
  }

  .pft__subheadline {
    max-width: 100%;
  }

  .pft__trustGrid {
    grid-template-columns: 1fr;
  }

  .pft__logoMedallion,
  .pft__logoMedallion--lg {
    width: clamp(160px, 62vw, 200px);
    height: clamp(160px, 62vw, 200px);
  }

  .pft__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pft__cta {
    width: 100%;
  }

  .pft__message p {
    display: block;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
    overflow: visible;
  }

  .pft__message {
    min-width: 0;
    padding-right: 0;
  }

  .pft__message h3 {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    overflow-wrap: anywhere;
  }

  .pft__message p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .pft__chips {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .pft__chips::-webkit-scrollbar {
    display: none;
  }

  .pft__logoMedallion,
  .pft__logoMedallion--lg {
    width: clamp(150px, 64vw, 180px);
    height: clamp(150px, 64vw, 180px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pft__cta {
    transition: none;
  }
}

.pft__cta.pft__ctaSecondary--ghost:hover,
.pft__cta.pft__ctaSecondary--ghost:focus-visible {
  box-shadow: none;
  transform: translateY(-2px);
}
