/* ── EARNINGS TEA PAGE ── */

.et-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  color: white;
}

.et-main {
  flex: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
  width: 100%;
}

/* Hero */
.et-hero {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.et-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.et-bg-circle.et1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(247,197,208,0.08) 0%, transparent 70%);
  top: -120px; left: 50%;
  transform: translateX(-50%);
}
.et-bg-circle.et2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: 80px; right: -60px;
}

.et-hero .hero-kicker { color: var(--rose); }

.et-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 1rem;
}
.et-headline em { color: var(--blush); font-style: italic; }

.et-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* Search */
.et-search-wrap { max-width: 560px; margin: 0 auto; }

.et-search-box {
  display: flex;
  gap: 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 3rem;
  padding: 0.4rem 0.4rem 0.4rem 1.4rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: border-color 0.2s;
}
.et-search-box:focus-within { border-color: var(--rose); }

.et-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background: transparent;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.et-input::placeholder { text-transform: none; font-weight: 300; letter-spacing: 0; color: rgba(255,255,255,0.3); }

.et-btn {
  background: var(--rose);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(232,132,154,0.3);
}
.et-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,132,154,0.4); }
.et-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.et-btn-sm {
  background: transparent;
  color: var(--rose);
  border: 1.5px solid rgba(232,132,154,0.4);
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s;
}
.et-btn-sm:hover { border-color: var(--rose); }

.et-suggestions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.et-suggest-label { font-size: 0.75rem; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; }

.et-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: border-color 0.2s, color 0.2s;
}
.et-chip:hover { border-color: var(--rose); color: var(--blush); }

/* Loading */
.et-loading { text-align: center; padding: 4rem 2rem; }

.et-spinner {
  border-color: rgba(255,255,255,0.1);
  border-top-color: var(--rose);
}

.et-loading-text { font-size: 1rem; color: rgba(255,255,255,0.5); font-style: italic; }

/* Error */
.et-error {
  text-align: center;
  padding: 3rem;
  background: rgba(255,255,255,0.04);
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.et-error p { color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; }

/* Results */
.et-results { animation: fadeUp 0.5s forwards; }

.et-result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.et-result-id { display: flex; align-items: baseline; gap: 0.7rem; flex-wrap: wrap; }

.et-result-symbol {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
}

.et-result-company { font-size: 0.9rem; color: rgba(255,255,255,0.4); }

.et-verdict-pill {
  background: rgba(232,132,154,0.15);
  border: 1.5px solid rgba(232,132,154,0.3);
  color: var(--blush);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  white-space: nowrap;
}

/* Headline card */
.et-headline-card {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 700;
  font-style: italic;
  color: white;
  line-height: 1.25;
  margin-bottom: 1.2rem;
  padding: 1.5rem 2rem;
  background: rgba(232,132,154,0.08);
  border-left: 3px solid var(--rose);
  border-radius: 0 1rem 1rem 0;
}

/* Opening */
.et-opening-card {
  display: flex;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.et-opening-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 0.1rem; }

.et-opening-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

/* Quarter cards */
.et-quarters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.et-quarter-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.2rem;
  transition: background 0.2s;
}
.et-quarter-card:hover { background: rgba(255,255,255,0.07); }

.et-quarter-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.5rem;
}

.et-quarter-verdict {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--blush);
  margin-bottom: 0.8rem;
}

.et-quarter-tea {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

/* Pattern */
.et-pattern-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.et-pattern-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.8rem;
}

.et-pattern-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

/* Watch for */
.et-watchfor-card {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.et-watchfor-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.et-watchfor-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

/* Nav overrides for dark page */
.et-body nav {
  background: rgba(26,26,46,0.9);
  border-bottom-color: rgba(255,255,255,0.06);
}
.et-body .nav-links a { color: rgba(255,255,255,0.5); }
.et-body .nav-links a:hover { color: var(--blush); }
.et-body .nav-badge {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}

@media (max-width: 600px) {
  .et-quarters { grid-template-columns: 1fr 1fr; }
  .et-search-box { flex-direction: column; border-radius: 1rem; padding: 0.8rem; }
  .et-btn { border-radius: 0.75rem; width: 100%; }
  .et-result-header { flex-direction: column; }
}
