/* ============================================================
   field-log-cta.css — Takumi Senpai · Field Log (Substack) CTA
   Path: /css/field-log-cta.css
   Load on: all pages, after next-target.css
   ============================================================ */

#field-log-section {
  position: relative;
  background:
    repeating-linear-gradient(
      0deg,
      transparent            0px,
      transparent            47px,
      rgba(201,168,76,0.028) 47px,
      rgba(201,168,76,0.028) 48px
    ),
    #0a0806;
  border-top:    1px solid rgba(201,168,76,0.10);
  border-bottom: 1px solid rgba(201,168,76,0.10);
  padding: 72px 24px 64px;
  overflow: hidden;
  text-align: center;
}

#field-log-section::after {
  content: 'CLASSIFIED';
  position: absolute;
  bottom: 24px;
  right: 30px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  color: rgba(201,168,76,0.06);
  pointer-events: none;
}

.fl-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Eyebrow (with live pulse dot) ─────────────────────────── */
.fl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.48rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a84c;
  opacity: 0.8;
  margin-bottom: 24px;
}

.fl-eyebrow::before,
.fl-eyebrow::after {
  content: '';
  width: 22px;
  height: 1px;
  background: rgba(201,168,76,0.35);
}

.fl-eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(160,196,120,0.9);
  box-shadow: 0 0 6px rgba(160,196,120,0.6);
  animation: fl-pulse 2.2s ease-in-out infinite;
}

@keyframes fl-pulse {
  0%, 100% { opacity: 1;    transform: scale(1);    }
  50%      { opacity: 0.35; transform: scale(0.75); }
}

/* ── Headline: the Archive / Field Log split, in one sentence ── */
.fl-headline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 3.6vw, 1.9rem);
  line-height: 1.4;
  color: #f0ece4;
  margin: 0 0 20px;
}

/* ── Body copy ──────────────────────────────────────────────── */
.fl-body {
  font-family: 'Courier Prime', monospace;
  font-size: 0.70rem;
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #C4C4C4;
  margin: 0 0 22px;
}

/* ── Personal line — a small break into Takumi's own voice ──── */
.fl-personal {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #D6D6D6;
  margin: 0 0 28px;
}

/* ── Live field-note ticker ────────────────────────────────── */
.fl-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Special Elite', cursive;
  font-size: 0.72rem;
  line-height: 1.75;
  color: rgba(240,236,228,0.65);
  border: 1px solid rgba(201,168,76,0.20);
  background: rgba(255,255,255,0.015);
  padding: 14px 18px;
  margin: 0 0 30px;
  text-align: left;
}

.fl-note-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: rgba(224,163,60,0.9);
  box-shadow: 0 0 6px rgba(224,163,60,0.6);
  animation: fl-pulse 2.2s ease-in-out infinite;
}

.fl-note-status {
  display: inline-flex;
  align-items: center;
  font-family: 'Courier Prime', monospace;
  font-size: 0.46rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(224,163,60,0.9);
  border: 1px solid rgba(224,163,60,0.35);
  padding: 4px 8px;
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
}

/* ── CTA ────────────────────────────────────────────────────── */
.fl-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  font-family: 'Courier Prime', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  margin-bottom: 16px;
  transition: background 0.18s ease, color 0.18s ease;
}

.fl-cta:hover {
  background: rgba(201,168,76,0.10);
  color: #e0be62;
}

/* ── Fine print ─────────────────────────────────────────────── */
.fl-fine {
  font-family: 'Courier Prime', monospace;
  font-size: 0.48rem;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.42);
  margin-bottom: 28px;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 540px) {
  #field-log-section {
    padding: 56px 20px 52px;
  }

  .fl-headline {
    font-size: 1.3rem;
  }

  .fl-body {
    font-size: 0.66rem;
  }

  .fl-personal {
    font-size: 0.86rem;
  }

  .fl-note {
    font-size: 0.68rem;
    padding: 12px 14px;
  }

  .fl-note-status {
    display: inline-flex;
    width: fit-content;
    margin: 6px 0 0;
  }

  .fl-fine {
    margin-bottom: 36px;
  }
}