/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-alt: #0f0f0f;
  --fg: #f2ede6;
  --fg-muted: #8a8680;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(242, 237, 230, 0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 60px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Eyebrow */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

/* Subhead */
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

/* Hero actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}
.hero-cta:hover { background: #fbbf24; transform: translateY(-1px); }
.hero-cta-secondary {
  font-size: 0.95rem;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.hero-cta-secondary:hover {
  color: var(--fg);
  border-bottom-color: var(--accent);
}

/* Meta tags */
.hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.meta-tag {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 5px 12px;
  border-radius: 2px;
}
.meta-tag-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.meta-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Status badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--fg);
  background: var(--accent-dim);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Live alerts strip */
.hero-alerts-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 24px;
}
.hero-alerts-strip-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.hero-alerts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-alert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
}
.hero-alert-type {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.06);
  padding: 3px 8px;
  border-radius: 2px;
}
.hero-alert-type-competitor {
  color: var(--accent);
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.06);
}
.hero-alert-type-hire,
.hero-alert-type-launch,
.hero-alert-type-partnership {
  color: rgba(245, 158, 11, 0.75);
  border-color: rgba(245, 158, 11, 0.2);
  background: rgba(245, 158, 11, 0.04);
}
.hero-alert-name {
  color: var(--fg);
  font-weight: 500;
}
.hero-alert-time {
  color: var(--fg-muted);
  font-size: 0.68rem;
}

/* ===== EMAIL PREVIEW ===== */
.email-preview {
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,158,11,0.05);
}

.email-preview-header {
  background: #1a1a1a;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.email-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.email-preview-label {
  margin-left: 8px;
  font-size: 0.7rem;
  color: var(--fg-muted);
  font-family: var(--font-body);
}

.email-body {
  padding: 20px;
}

.email-from {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
.email-avatar {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.email-sender {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg);
}
.email-subject-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 2px;
}
.email-subject {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg);
}
.email-date {
  font-size: 0.65rem;
  color: var(--fg-muted);
}

.email-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

/* Brief sections */
.brief-section {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.brief-section.last {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.brief-label {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.brief-headline {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 6px;
  line-height: 1.4;
}
.brief-body-text {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.email-footer-bar {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.65rem;
  color: var(--fg-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(4px); }
}

/* ===== SECTION SHARED ===== */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}
.howitworks .section-headline {
  margin-bottom: 64px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.step-card {
  background: var(--bg-card);
  padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(245,158,11,0.08);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.step-icon {
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--fg);
}
.step-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.step-detail {
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ===== WHY ===== */
.why {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.why-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.why-quote {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 2px solid var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--fg);
  line-height: 1.5;
}

/* Comparison blocks */
.comparison-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px 28px 0;
  margin-bottom: 16px;
}
.comparison-block.accent {
  border-color: rgba(245,158,11,0.2);
  background: rgba(245,158,11,0.04);
}
.comparison-header {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.comparison-row {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.comparison-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.comparison-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.comparison-value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--fg);
}
.comparison-value.crossed {
  text-decoration: line-through;
  color: var(--fg-muted);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-body {
  margin-bottom: 40px;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 20px;
}
.manifesto-text:last-child { margin-bottom: 0; }
.manifesto-pillars {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}
.closing-accent {
  color: var(--accent);
}
.closing-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  text-align: left;
}
.closing-detail {
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.detail-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.detail-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 60px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 2px;
}
.footer-links {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 60px 28px 48px; }
  .briefing-banner { padding: 14px 28px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .email-preview { max-width: 460px; margin: 0 auto; }
  .hero-actions { margin-bottom: 24px; }
  .hero-badge { margin-bottom: 20px; }
  .hero-cta { width: 100%; text-align: center; }
  .hero-cta-secondary { width: 100%; text-align: center; padding-top: 8px; }
  .steps-grid { grid-template-columns: 1fr; gap: 2px; }
  .why { grid-template-columns: 1fr; gap: 48px; padding: 60px 28px; }
  .manifesto { padding: 60px 28px; }
  .closing { padding: 60px 28px; }
  .closing-meta { grid-template-columns: 1fr; }
  .howitworks { padding: 60px 28px; }
  .site-footer { padding: 32px 28px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .pricing { padding: 60px 28px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .closing-detail { padding: 20px 24px; }
}

/* ===== SAMPLE BRIEFING MODAL ===== */
.hero-cta-tertiary {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--accent);
  background: transparent;
  border: 1px solid rgba(245, 158, 11, 0.45);
  padding: 12px 22px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.hero-cta-tertiary:hover {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
  transform: translateY(-1px);
}
.sample-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10, 10, 10, 0.78);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 60px 20px; overflow-y: auto;
}
.sample-modal[hidden] { display: none; }
.sample-modal-box {
  width: 100%; max-width: 720px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  overflow: hidden;
  color: var(--fg);
  font-family: var(--font-body);
}
.sample-modal-header {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.sample-modal-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px; font-weight: 500;
}
.sample-modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600; margin: 0; color: var(--fg);
  letter-spacing: -0.01em;
}
.sample-modal-close {
  background: transparent; border: 1px solid var(--border); color: var(--fg-muted);
  width: 32px; height: 32px; border-radius: 4px; font-size: 1.2rem;
  cursor: pointer; line-height: 1; transition: color 0.15s, border-color 0.15s;
}
.sample-modal-close:hover { color: var(--accent); border-color: var(--accent); }
.sample-modal-body {
  padding: 0;
  max-height: 70vh; overflow-y: auto;
  background: #ffffff;
  color: #1a1a1a;
}
.sample-modal-body .sample-briefing-frame { padding: 0; }
.sample-modal-loading {
  padding: 60px 28px; text-align: center; color: var(--fg-muted); font-size: 0.95rem;
}
.sample-modal-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  text-align: center;
}
.sample-modal-cta {
  display: inline-block; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: #0a0a0a; background: var(--accent); padding: 12px 22px; border-radius: 4px;
  text-decoration: none; transition: background 0.15s ease, transform 0.15s ease;
}
.sample-modal-cta:hover { background: #fbbf24; transform: translateY(-1px); }

@media (max-width: 900px) {
  .sample-modal { padding: 24px 12px; }
  .sample-modal-box { max-width: 100%; }
  .sample-modal-body { max-height: 75vh; }
  .hero-cta-tertiary { width: 100%; text-align: center; }
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 60px;
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pricing .section-headline {
  margin-bottom: 56px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border: 1px solid rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.25), 0 24px 48px rgba(245, 158, 11, 0.08);
  transform: translateY(-12px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 24px;
}
.pricing-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--fg-muted);
  margin-left: 4px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.pricing-features li {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  margin-top: auto;
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.45);
}
.pricing-cta:hover {
  color: #0a0a0a;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.pricing-card.featured .pricing-cta {
  background: var(--accent);
  color: #0a0a0a;
  border: 1px solid var(--accent);
}
.pricing-card.featured .pricing-cta:hover {
  background: #fbbf24;
  border-color: #fbbf24;
}

/* ===== CONFIRMATION BRIEFING BANNER ===== */
.briefing-banner {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 14px 60px;
  display: flex;
  justify-content: center;
}
.briefing-banner-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.briefing-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.briefing-banner-copy {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  margin: 0;
}
.briefing-banner-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  margin-left: 8px;
  transition: border-color 0.15s ease;
}
.briefing-banner-link:hover { border-bottom-color: var(--accent); }