 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --navy:  #0a0820;
    --navy2: #0e0b2e;
    --green: #a9d039;
    --gold:  #c8a96e;
    --cream: #f4f2ef;
    --white: #ffffff;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
  }

  /* ══ SECTION ══ */
  .tsm-section {
    padding: 100px 0 110px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  /* grid bg */
  .tsm-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(169,208,57,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(169,208,57,0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
  }

  /* ambient glows */
  .tsm-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    opacity: 0.13;
  }
  .tsm-glow--1 { width: 500px; height: 500px; background: #a9d039; top: -100px; right: -80px; }
  .tsm-glow--2 { width: 380px; height: 380px; background: #1a3a8c; bottom: 0; left: -60px; }

  /* ══ HEADER ══ */
  .tsm-header {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 56px 64px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 2;
  }

  .tsm-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
  }

  .tsm-eyebrow-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-t 2s ease-in-out infinite;
  }

  @keyframes pulse-t {
    0%,100% { box-shadow: 0 0 0 0 rgba(169,208,57,0.5); }
    50%      { box-shadow: 0 0 0 7px rgba(169,208,57,0); }
  }

  .tsm-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--white);
  }

  .tsm-title em { font-style: italic; color: var(--green); }

  .tsm-subtitle {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 320px;
    text-align: right;
  }

  /* ══ FEATURED CARD (large, top) ══ */
  .tsm-featured-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 56px 40px;
    position: relative;
    z-index: 2;
  }

  .tsm-featured {
    background: linear-gradient(135deg, rgba(169,208,57,0.12) 0%, rgba(255,255,255,0.04) 100%);
    border: 1px solid rgba(169,208,57,0.2);
    border-radius: 28px;
    padding: 52px 56px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .tsm-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  }

  /* quote mark decoration */
  .tsm-featured::before {
    content: '"';
    position: absolute;
    top: -20px; left: 44px;
    font-family: 'Playfair Display', serif;
    font-size: 200px;
    font-weight: 900;
    color: rgba(169,208,57,0.08);
    line-height: 1;
    pointer-events: none;
  }

  .tsm-featured-avatar {
    position: relative;
    flex-shrink: 0;
  }

  .tsm-featured-img {
    width: 100px; height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(169,208,57,0.4);
    display: block;
  }

  .tsm-featured-badge {
    position: absolute;
    bottom: -2px; right: -2px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--green);
    border: 2px solid var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
  }

  .tsm-featured-body { position: relative; z-index: 1; }

  .tsm-featured-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
  }

  .tsm-star { color: var(--gold); font-size: 16px; }

  .tsm-featured-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
    margin-bottom: 0;
  }

  .tsm-featured-info { text-align: right; flex-shrink: 0; }

  .tsm-featured-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }

  .tsm-featured-role {
    font-size: 12px;
    font-weight: 300;
    color: var(--green);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .tsm-featured-company {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
  }

  /* ══ CARDS GRID ══ */
  .tsm-grid-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 56px;
    position: relative;
    z-index: 2;
  }

  .tsm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* ── CARD ── */
  .tsm-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2),
                background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .tsm-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .tsm-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(169,208,57,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  }

  .tsm-card:hover::after { transform: scaleX(1); }

  /* quote icon */
  .tsm-card-quote-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(169,208,57,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .tsm-card-quote-icon svg {
    width: 18px; height: 18px;
    fill: var(--green);
  }

  .tsm-card-stars {
    display: flex;
    gap: 3px;
  }

  .tsm-card-stars .tsm-star { font-size: 13px; }

  .tsm-card-text {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.68);
    line-height: 1.8;
    flex: 1;
    text-align: justify;
  }

  /* person row */
  .tsm-card-person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  .tsm-card-avatar-wrap {
    position: relative;
    flex-shrink: 0;
  }

  .tsm-card-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(169,208,57,0.3);
    display: block;
    background: rgba(255,255,255,0.1);
  }

  /* initials fallback */
  .tsm-card-avatar--init {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    background: rgba(169,208,57,0.12);
  }

  .tsm-card-avatar-online {
    position: absolute;
    bottom: 1px; right: 1px;
    width: 11px; height: 11px;
    border-radius: 50%;
    background: var(--green);
    border: 2px solid var(--navy);
  }

  .tsm-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
    line-height: 1.2;
  }

  .tsm-card-role {
    font-size: 11px;
    font-weight: 300;
    color: var(--green);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1px;
  }

  .tsm-card-company {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
  }

  /* ══ STATS BAR ══ */
  .tsm-stats {
    max-width: 1320px;
    margin: 48px auto 0;
    padding: 0 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 2;
  }

  .tsm-stat {
    background: rgba(255,255,255,0.03);
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: background 0.25s;
  }

  .tsm-stat:hover { background: rgba(169,208,57,0.07); }

  .tsm-stat strong {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
  }

  .tsm-stat strong em {
    font-style: normal;
    color: var(--green);
    font-size: 28px;
  }

  .tsm-stat span {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 1024px) {
    .tsm-grid { grid-template-columns: repeat(2, 1fr); }
    .tsm-featured { grid-template-columns: auto 1fr; gap: 32px; }
    .tsm-featured-info { grid-column: 1 / -1; text-align: left; }
    .tsm-stats { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .tsm-header { padding: 0 24px 48px; flex-direction: column; align-items: flex-start; }
    .tsm-subtitle { text-align: left; }
    .tsm-featured-wrap, .tsm-grid-wrap, .tsm-stats { padding: 0 24px; }
    .tsm-featured { padding: 36px 28px; gap: 24px; }
    .tsm-grid { grid-template-columns: 1fr; }
    .tsm-stats { grid-template-columns: 1fr 1fr; margin: 36px auto 0; }
  }

  @media (max-width: 480px) {
    .tsm-section { padding: 72px 0 80px; }
    .tsm-featured { grid-template-columns: 1fr; }
    .tsm-featured-avatar { display: flex; align-items: center; gap: 16px; }
    .tsm-stats { grid-template-columns: 1fr 1fr; }
  }