/* Practice — decoy landing styles.
   Painted on first byte; replaced by the real home once JS clones the
   <template id="real-home"> into the live DOM. Designed to read as a
   conventional academic-coaching landing page so static-HTML filter
   scanners index legitimate tutoring content instead of proxy markers. */

#decoy {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(180deg, #faf6ee 0%, #f3ecdf 50%, #ece2cf 100%);
  color: #1f2a27;
  font-family: 'Cormorant Garamond', 'Manrope', 'Segoe UI', system-ui, sans-serif;
  z-index: 1;
}

#decoy .decoy-hero {
  max-width: 56ch;
  text-align: center;
}

#decoy .decoy-pill {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: rgba(178, 78, 40, 0.12);
  color: #a3501e;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

#decoy .decoy-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: #18221f;
}

#decoy .decoy-lede {
  margin: 0;
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #4d5b56;
}

#decoy .decoy-seo { display: none; }
