/* =========================================================
   TIDAL INTELLIGENCE — Dark Editorial Brutalism
   Video: The AI Tsunami is Here & Society Isn't Ready
   ========================================================= */

/* ---- CSS Custom Properties ---- */
:root {
  --bg: #06080E;
  --surface: #0D1117;
  --card: #111620;
  --text: #F0EEE4;
  --muted: #7A8096;
  --teal: #00D4B4;
  --teal-dim: rgba(0, 212, 180, 0.15);
  --teal-glow: rgba(0, 212, 180, 0.3);
  --orange: #FF4D00;
  --orange-dim: rgba(255, 77, 0, 0.15);
  --border: rgba(240, 238, 228, 0.08);
  --border-strong: rgba(240, 238, 228, 0.15);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Newsreader', serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-w: 1280px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --radius: 4px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Noise Texture SVG Filter ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* =========================================================
   STICKY HEADER
   ========================================================= */
#flecto-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 48px;
  background: rgba(6, 8, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

#flecto-header a {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  text-decoration: none;
}

#flecto-header a:hover {
  color: var(--teal);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3rem);
  gap: 3rem;
  overflow: hidden;
}

/* Diagonal bottom separator */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--bg);
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 2;
}

/* Background image layer */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
  filter: blur(2px) saturate(0.5);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg) 45%, rgba(6, 8, 14, 0.7) 100%);
}

/* Orange diagonal accent line */
.hero__accent-line {
  position: absolute;
  bottom: 118px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, transparent 60%);
  z-index: 3;
  transform: skewY(-1.5deg);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--teal);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero__title .accent-teal {
  color: var(--teal);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero__badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  background: rgba(240, 238, 228, 0.06);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  letter-spacing: 0.08em;
}

.hero__watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bg);
  background: var(--orange);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
  text-decoration: none;
}

.hero__watch-btn:hover {
  background: #ff6a2a;
  box-shadow: 0 0 32px rgba(255, 77, 0, 0.5);
  transform: translateY(-2px);
}

.hero__image {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeLeft 0.8s ease 0.4s forwards;
}

.hero__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 212, 180, 0.1);
}

/* =========================================================
   SECTION SHARED STYLES
   ========================================================= */
.section {
  padding: var(--section-pad) clamp(1.5rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0.5;
}

/* =========================================================
   KEY TAKEAWAYS
   ========================================================= */
.takeaways {
  background: var(--surface);
}

.takeaways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.takeaway-card {
  background: var(--card);
  padding: 2rem 2rem 2rem 1.75rem;
  border-left: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color 0.3s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.takeaway-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal-dim);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.takeaway-card:hover {
  border-left-color: var(--teal);
  background: #141b27;
}

.takeaway-card:hover::before {
  opacity: 1;
}

.takeaway-card.reveal-done {
  border-left-color: var(--teal);
}

.takeaway__index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--teal);
  opacity: 0.6;
  line-height: 1;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.takeaway__text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.takeaway__timestamp {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

/* =========================================================
   CONVERSATION ARC / TIMELINE
   ========================================================= */
.arc {
  background: var(--bg);
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange) 0%, rgba(255, 77, 0, 0.2) 100%);
}

.timeline-item {
  position: relative;
  padding: 0 0 3rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/* Orange dot on the connector line */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--orange);
  transform: translateX(-4px);
  transition: box-shadow 0.3s ease;
}

.timeline-item:hover::before {
  box-shadow: 0 0 16px rgba(255, 77, 0, 0.6);
}

.timeline-item.highlight {
  background: rgba(255, 77, 0, 0.04);
  margin-left: -2.5rem;
  padding-left: 5rem;
  border-left: 2px solid rgba(255, 77, 0, 0.3);
  border-radius: 0 4px 4px 0;
}

.timeline-item.highlight::before {
  left: -0.5px;
  transform: translateX(-5px);
  width: 12px;
  height: 12px;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 77, 0, 0.7);
}

.timeline__body {
  flex: 1;
}

.timeline__ts {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.timeline__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.timeline__summary {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.timeline__thumb {
  width: 120px;
  flex-shrink: 0;
}

.timeline__thumb img {
  width: 120px;
  height: 68px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid var(--border);
  opacity: 0.7;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.timeline-item:hover .timeline__thumb img {
  opacity: 1;
  border-color: var(--border-strong);
}

/* =========================================================
   VISUAL HIGHLIGHTS
   ========================================================= */
.highlights {
  background: var(--surface);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.highlight-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  background: var(--card);
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: brightness(0.85) saturate(0.9);
}

.highlight-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.65) saturate(1.1);
}

/* Orange border on hover */
.highlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

.highlight-card:hover::after {
  border-color: var(--orange);
}

/* Caption overlay */
.highlight__caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 14, 0.95) 0%, rgba(6, 8, 14, 0.5) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight-card:hover .highlight__caption {
  opacity: 1;
}

/* Always-visible caption on mobile */
@media (hover: none) {
  .highlight__caption {
    opacity: 1;
  }
}

.highlight__caption-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.4;
}

/* Type badge — top left */
.highlight__type {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  text-transform: uppercase;
}

.highlight__type.type-diagram {
  background: rgba(0, 212, 180, 0.25);
  color: var(--teal);
  border: 1px solid rgba(0, 212, 180, 0.4);
}

.highlight__type.type-evidence {
  background: rgba(255, 77, 0, 0.2);
  color: #ff8c5a;
  border: 1px solid rgba(255, 77, 0, 0.35);
}

.highlight__type.type-context {
  background: rgba(122, 128, 150, 0.2);
  color: var(--muted);
  border: 1px solid rgba(122, 128, 150, 0.35);
}

/* Timestamp badge — bottom right */
.highlight__ts {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(240, 238, 228, 0.6);
  letter-spacing: 0.08em;
  background: rgba(6, 8, 14, 0.7);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

/* =========================================================
   FULL TRANSCRIPT
   ========================================================= */
.transcript {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.transcript__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  background: transparent;
  border: 1px solid rgba(0, 212, 180, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  margin-bottom: 2rem;
}

.transcript__toggle:hover {
  background: var(--teal-dim);
  border-color: var(--teal);
  box-shadow: 0 0 20px var(--teal-glow);
}

.transcript__toggle-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.transcript__toggle.is-open .transcript__toggle-icon {
  transform: rotate(180deg);
}

.transcript__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.transcript__body.is-open {
  max-height: 600px;
  overflow-y: auto;
}

.transcript__body::-webkit-scrollbar {
  width: 4px;
}

.transcript__body::-webkit-scrollbar-track {
  background: var(--surface);
}

.transcript__body::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 2px;
}

.transcript__source {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.transcript__placeholder {
  background: var(--card);
  border: 1px dashed rgba(0, 212, 180, 0.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
}

.transcript__placeholder p {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.transcript__placeholder .file-ref {
  color: var(--teal);
  opacity: 0.8;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__credit {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.footer__credit a {
  color: var(--teal);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__credit a:hover {
  opacity: 0.8;
}

/* =========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* =========================================================
   PAGE LOAD ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding-top: 5rem;
  }

  .hero__image {
    order: -1;
    max-width: 640px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 4rem 1.25rem 5rem;
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .takeaways-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    aspect-ratio: 16 / 9;
  }

  .highlight__caption {
    opacity: 1;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline__thumb {
    width: 100%;
    max-width: 200px;
  }

  .timeline__thumb img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 1.25rem;
  }

  .hero__meta {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__eyebrow,
  .hero__title,
  .hero__subtitle,
  .hero__meta,
  .hero__watch-btn,
  .hero__image {
    opacity: 1;
    animation: none;
  }

  .reveal,
  .reveal-left {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   HIGHLIGHT CARDS — click-to-YouTube
   ========================================================= */
.highlight-card[data-yt-ts] {
  cursor: pointer;
}

/* Play button overlay via ::before (::after is reserved for orange border) */
.highlight-card[data-yt-ts]::before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  font-size: 2.2rem;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.8);
  pointer-events: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
  opacity: 0;
  z-index: 4;
}

.highlight-card[data-yt-ts]:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.95;
}

.highlight-card[data-yt-ts]:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* =========================================================
   AI SUMMARY BLOCKS (Step 9b: transcript-driven expansion)
   ========================================================= */
.flecto-note,
.flecto-callout,
.flecto-card,
.flecto-panel {
  margin: 1.25rem 0 0.5rem;
  padding: 1.25rem 1.5rem 1.25rem 1.25rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--teal-dim);
  border-left: 3px solid var(--teal);
}

.flecto-note::before,
.flecto-callout::before,
.flecto-card::before,
.flecto-panel::before {
  content: "🤖 AI SUMMARY";
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}

.flecto-card h4,
.flecto-panel h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.flecto-card ul,
.flecto-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.flecto-card li,
.flecto-panel li {
  padding-left: 1.1rem;
  position: relative;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
}

.flecto-card li::before,
.flecto-panel li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.7rem;
  top: 0.3em;
}

.flecto-callout p,
.flecto-note p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

.flecto-card strong,
.flecto-panel strong {
  color: var(--teal);
  font-weight: 600;
}
