/* ================================================================
   TESLA QUOTE
   ================================================================ */
#tesla-quote {
  background: var(--charcoal);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tesla-quote-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 300px;
  color: var(--olive);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.tesla-bird {
  position: absolute;
  top: 18%;
  left: -160px;
  width: 120px;
  height: auto;
  opacity: 0.18;
  animation: birdDrift 24s linear infinite;
  pointer-events: none;
}

.tesla-quote-inner { max-width: 700px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

.tesla-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.55;
  color: white;
  margin-bottom: 28px;
  min-height: 3em;
}
.tesla-quote-text::after { content: '|'; animation: cursorBlink 600ms step-end infinite; opacity: 0; }
.tesla-quote-text.typing::after { opacity: 1; }
.tesla-quote-text.done::after { display: none; }

.tesla-quote-attr {
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  opacity: 0;
  transition: opacity 700ms ease 0.3s;
}
.tesla-quote-attr.visible { opacity: 1; }

/* Responsive */
@media (max-width: 640px) {
  #tesla-quote { padding: 40px 0; }
}
