.tm-root {
  background: #080f2e;
  padding: 72px 0 80px;
  overflow: hidden;
  position: relative;
}
.tm-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(27,154,214,0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Header */
.tm-header {
  text-align: center; max-width: 560px;
  margin: 0 auto 56px; padding: 0 32px;
  position: relative; z-index: 1;
}
.tm-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-space); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: #1b9ad6;
  border: 1px solid rgba(27,154,214,0.3); padding: 6px 20px;
  border-radius: 100px; margin-bottom: 24px;
}
.tm-eye-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #1b9ad6; box-shadow: 0 0 8px #1b9ad6;
  animation: tm-blink 2s ease-in-out infinite;
}
@keyframes tm-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.tm-h2 {
  font-family: var(--font-space);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.12; margin: 0;
}
.tm-grad {
  background: linear-gradient(100deg, #1b9ad6, #c0f43c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stage */
.tm-stage {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}

/* Big quote mark */
.tm-bigquote {
  font-family: Georgia, serif;
  font-size: 72px; line-height: 0.7;
  opacity: 0.35;
  user-select: none;
  transition: color 0.35s ease;
}

/* Quote text */
.tm-quote {
  font-family: var(--font-inter);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin: 0;
}

/* Company logo */
.tm-company {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.tm-logo-wrap {
  position: relative; width: 140px; height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid; border-radius: 10px;
  padding: 8px 16px;
}
.tm-logo-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
}

/* Fade transitions */
.tm-fade-in  { animation: tm-in  0.35s ease forwards; }
.tm-fade-out { animation: tm-out 0.35s ease forwards; }
@keyframes tm-in  { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes tm-out { from { opacity: 1; transform: translateY(0);    } to { opacity: 0; transform: translateY(-8px); } }

/* Dots */
.tm-dots {
  display: flex; gap: 8px; align-items: center; margin-top: 8px;
}
.tm-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.2s, width 0.3s;
}
.tm-dot:hover { background: rgba(255,255,255,0.45); transform: scale(1.2); }
.tm-dot-active {
  width: 24px; border-radius: 4px;
  transform: none;
}

/* Reveal */
.tm-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tm-in { opacity: 1; transform: none; }

@media (max-width: 640px) {
  .tm-stage { padding: 0 24px; }
  .tm-bigquote { font-size: 80px; }
}
