.tw-proof {
  background: #fff;
  padding: 60px 56px;
  font-family: "Poppins", sans-serif;
  color: #190750;
}
.tw-proof *, .tw-proof *::before, .tw-proof *::after {
  box-sizing: border-box;
}
.tw-proof .tw-proof-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.tw-proof .tw-proof-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.tw-proof .tw-proof-head .tw-eyebrow {
  font: 700 12px/1 "Poppins", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3E5EE2;
}
.tw-proof .tw-proof-head h2 {
  font: 600 44px/1.15 "Poppins", sans-serif;
  letter-spacing: -0.02em;
  color: #190750;
  margin: 12px 0 0;
}
.tw-proof .tw-proof-nav {
  display: flex;
  gap: 8px;
}
.tw-proof .tw-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #E5E7EA;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #190750;
  transition: all 0.15s;
}
.tw-proof .tw-arrow-btn:hover {
  background: #190750;
  color: #fff;
  border-color: #190750;
}
.tw-proof .tw-proof-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.tw-proof .tw-proof-cards {
  display: flex;
  flex-direction: column;
}
.tw-proof .tw-story-card {
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  animation: tw-fade-in 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  min-height: 340px;
  flex: 1;
}
@keyframes tw-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tw-proof .tw-story-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tw-proof .tw-story-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 600 18px/1 "Poppins";
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.tw-proof .tw-story-avatar.has-img {
  background: #fff;
}
.tw-proof .tw-story-avatar.has-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 50%;
}
.tw-proof .tw-story-name {
  font: 600 15px/1.2 "Poppins";
  color: #190750;
}
.tw-proof .tw-story-dept {
  display: inline-block;
  font: 500 13px/1.2 "Poppins";
  color: #3E5EE2;
  margin-top: 3px;
}
.tw-proof .tw-story-quote,
.tw-proof p.tw-story-quote {
  font: 600 22px/1.45 "Poppins";
  color: #190750;
  margin: 0;
  letter-spacing: -0.005em;
}
.tw-proof .tw-story-agents-cap {
  font: 700 10px/1 "Poppins";
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #190750;
  opacity: 0.55;
  margin-bottom: 8px;
}
.tw-proof .tw-story-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tw-proof .tw-story-pill {
  background: #fff;
  border: 1px solid rgba(25, 7, 80, 0.08);
  font: 500 12.5px/1 "Poppins";
  color: #3E5EE2;
  padding: 8px 13px;
  border-radius: 999px;
}
.tw-proof .tw-story-cta {
  margin-top: 4px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 600 14px/1 "Poppins";
  color: #3E5EE2;
  text-decoration: none;
  cursor: pointer;
}
.tw-proof .tw-story-cta .tw-arr {
  display: inline-block;
  transition: transform 0.18s ease;
}
.tw-proof .tw-story-cta:hover .tw-arr {
  transform: translateX(3px);
}
.tw-proof .tw-story-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}
.tw-proof .tw-story-metric {
  background: linear-gradient(160deg, #3E5EE2 0%, #7526C5 100%);
  border-radius: 24px;
  padding: 32px 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(57, 20, 103, 0.18);
}
.tw-proof .tw-story-metric::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}
.tw-proof .tw-story-metric-num {
  font: 600 56px/1 "Poppins";
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, #D4C7FA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.tw-proof .tw-story-metric-sub {
  font: 500 13px/1.5 "Poppins";
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
  position: relative;
  max-width: 220px;
}
.tw-proof .tw-story-list {
  background: #fff;
  border: 1px solid #E5E7EA;
  border-radius: 20px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-height: 0;
}
.tw-proof .tw-story-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
  position: relative;
  font-family: "Poppins", sans-serif;
  width: 100%;
}
.tw-proof .tw-story-row:hover {
  background: #F5EEFC;
}
.tw-proof .tw-story-row.active {
  background: linear-gradient(135deg, #EDF0FC 0%, #F5EEFC 100%);
}
.tw-proof .tw-story-row-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 600 13px/1 "Poppins";
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.tw-proof .tw-story-row-avatar.has-img {
  background: #fff;
}
.tw-proof .tw-story-row-avatar.has-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 50%;
}
.tw-proof .tw-story-row-meta {
  flex: 1;
  min-width: 0;
}
.tw-proof .tw-story-row-name {
  font: 600 13px/1.2 "Poppins";
  color: #190750;
}
.tw-proof .tw-story-row-dept {
  font: 400 11.5px/1.3 "Poppins";
  color: #190750;
  opacity: 0.65;
  margin-top: 2px;
}
.tw-proof .tw-story-row-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3E5EE2;
}

@media (max-width: 1080px) {
  .tw-proof .tw-proof-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .tw-proof {
    padding: 56px 24px;
  }
  .tw-proof .tw-proof-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .tw-proof .tw-proof-head h2 {
    font-size: 32px;
  }
  .tw-proof .tw-story-card {
    padding: 24px;
  }
  .tw-proof .tw-story-quote {
    font-size: 18px;
  }
  .tw-proof .tw-story-metric-num {
    font-size: 44px;
  }
}
