/* marketing/templates/theme-coach.css
   Brand theme: near-black, one electric accent, big bold voice-first type. */

:root {
  --bg: #0a0b0d;
  --fg: #f3f4f2;
  --fg-soft: #a3a8a6;
  --line: #24272a;
  --accent: #f07f2e;
  --accent-contrast: #05100d;
  --card-bg: #131518;
  --input-bg: #131518;
  --header-bg: rgba(10, 11, 13, 0.85);
  --ok: #3ecf6e;
  --err: #ff6b6b;
  --radius: 12px;
  --font-heading: 'Sora', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  /* Slab-system accents shared with the Trackformance theme (issue #129,
     owner pick 2026-08-22) so the two sites read as siblings: the blue half
     of the two-tone, and the cadence-divider palette (see .cadence in
     base.css). Light harmonization only — Coach keeps its own look. */
  --blue: #4aa3df;
  --accent-hi: #ff9a52;
  --accent-deep: #8f4a18;
  --cadence-track: #14161a;
  --cadence-rest: linear-gradient(90deg, rgba(74, 163, 223, 0.16), rgba(74, 163, 223, 0.05));
  --cadence-tick: rgba(10, 11, 13, 0.85);
}

body { background: var(--bg); }


.hero-copy p.lead { color: var(--fg-soft); }

.btn-secondary { border-color: var(--line); color: var(--fg); }
.btn-secondary:hover { border-color: var(--accent); }

/* --- CSS/SVG waveform motif --- */
.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 140px;
}
.waveform span {
  display: block;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(240, 127, 46, 0.25));
  animation: wave 1.6s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}

.hero-visual {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: radial-gradient(120% 140% at 50% 0%, rgba(240, 127, 46, 0.12), transparent 60%), var(--card-bg);
  padding: 2.5rem 1.5rem;
}
.hero-visual .listening-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 auto 1rem;
  justify-content: center;
}
.hero-visual .listening-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(240, 127, 46, 0.2);
}

/* Demo video placeholder — designed frame, explicitly "coming soon" */
.video-slot {
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: var(--card-bg);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--fg-soft);
}
.video-slot .play-glyph {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-slot .play-glyph::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--fg-soft);
  margin-left: 4px;
}
.video-slot .video-label {
  font-weight: 600;
  color: var(--fg);
}
.video-slot .video-sub {
  font-size: 0.85rem;
}

.section-alt {
  background: var(--card-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.badge-row span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35em 0.9em;
}

/* The offer, stated once in the hero and never repeated as a banner. Uses the
   accent only as a left rule so it reads as a fact about the product rather
   than a promotional sticker — the page already spends its colour on the CTA. */
.offer-flag {
  margin-top: 1.25rem;
  padding: 0.75rem 0 0.75rem 0.9rem;
  border-left: 3px solid var(--accent);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--fg-soft);
  max-width: 46ch;
}
.offer-flag strong { color: var(--fg); }
