/* ─── HERO PRICE ─── */
.hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.hero-price-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-price-value {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent-blue);
}
.hero-prices { margin-bottom: 6px; }
.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

/* ─── HERO CARD · report scheduler ─── */
.hc-sheet-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: -18px -20px 14px;
  padding: 10px 14px;
  background: rgba(5, 10, 27, 0.55);
  border-bottom: 1px solid var(--border-color);
}
.hc-sheet-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  min-width: 0;
}
.hc-sheet-icon {
  width: 14px;
  height: 14px;
  color: var(--accent-blue-soft);
  flex-shrink: 0;
}
.hc-sheet-fname {
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Report list — scheduled report rows */
.report-list {
  list-style: none;
  margin: 4px 0 14px;
  padding: 0;
  background: rgba(5, 10, 27, 0.40);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.report-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border-color);
  animation: rr-fade-in 0.55s ease-out both;
}
.report-row:last-child { border-bottom: none; }
.report-row:nth-child(1) { animation-delay: 0.25s; }
.report-row:nth-child(2) { animation-delay: 0.40s; }
.report-row:nth-child(3) { animation-delay: 0.55s; }
.report-row:nth-child(4) { animation-delay: 0.70s; }
@keyframes rr-fade-in {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

.rr-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(96, 160, 255, 0.10);
  border: 1px solid rgba(96, 160, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue-soft);
}
.rr-icon svg { width: 14px; height: 14px; }
.rr-info { min-width: 0; }
.rr-name {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.rr-meta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

/* Status badges — cobalt opacity scale, no red/amber/green */
.rr-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 3px;
  flex-shrink: 0;
}
.rr-badge--sent {
  background: rgba(96, 160, 255, 0.15);
  color: var(--accent-blue-soft);
  border: 1px solid rgba(96, 160, 255, 0.30);
}
.rr-badge--live {
  background: rgba(96, 160, 255, 0.22);
  color: var(--accent-blue-soft);
  border: 1px solid rgba(96, 160, 255, 0.45);
}
.rr-badge--sched {
  background: rgba(96, 160, 255, 0.05);
  color: rgba(96, 160, 255, 0.65);
  border: 1px solid rgba(96, 160, 255, 0.15);
}
.rr-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-blue-soft);
  box-shadow: 0 0 0 0 rgba(96, 160, 255, 0.55);
  animation: rr-pulse-anim 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes rr-pulse-anim {
  0%   { box-shadow: 0 0 0 0 rgba(96, 160, 255, 0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(96, 160, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(96, 160, 255, 0); }
}

.report-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.report-footer svg {
  width: 12px;
  height: 12px;
  color: var(--accent-blue-soft);
  flex-shrink: 0;
}
.report-footer strong {
  color: var(--accent-blue-soft);
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .report-row { animation: none; }
  .rr-pulse { animation: none; }
}

@media (max-width: 480px) {
  .report-row { grid-template-columns: 28px minmax(0, 1fr) auto; gap: 10px; padding: 10px 12px; }
  .rr-icon { width: 24px; height: 24px; }
  .rr-icon svg { width: 12px; height: 12px; }
  .rr-name { font-size: 0.8rem; }
  .rr-meta { font-size: 0.55rem; }
  .rr-badge { font-size: 0.5rem; padding: 3px 7px; }
}

/* ─── FEATURES · what you get ─── */
.features { padding: 100px 0 60px; }
.features-header { text-align: center; margin-bottom: 48px; }
.features-header .section-subtitle { margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(96, 160, 255, 0.12);
  border: 1px solid rgba(96, 160, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue-soft);
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; gap: 16px; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .features { padding: 56px 0 24px; }
  .features-header { margin-bottom: 32px; }
}

/* ─── SAMPLE CTA · in-content callout ─── */
.sample-cta { padding: 60px 0; }
.sample-cta-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.sample-cta-inner .section-label { display: inline-block; }
.sample-cta-inner .section-title { margin-bottom: 16px; }
.sample-cta-inner p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.sample-cta-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .sample-cta { padding: 40px 0; }
}

/* ─── OTHER SERVICES ─── */
.other-services { padding: 80px 0 60px; }
.os-header { text-align: center; margin-bottom: 48px; }
.os-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.os-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.os-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.os-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(96, 160, 255, 0.12);
  border: 1px solid rgba(96, 160, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue-soft);
  margin-bottom: 18px;
}
.os-card-icon svg { width: 22px; height: 22px; }
.os-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.os-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.os-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.os-card:hover .os-link .chevron {
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .os-grid { grid-template-columns: 1fr; gap: 16px; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .other-services { padding: 56px 0 24px; }
  .os-header { margin-bottom: 32px; }
}

/* ─── BOTTOM CTA ─── */
.bottom-cta { padding: 60px 0 100px; }
.bottom-cta-card {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.10), transparent 60%),
    linear-gradient(135deg, rgba(11,27,57,0.55) 0%, rgba(7,15,38,0.55) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.bottom-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta-card .section-label { display: inline-block; }
.bottom-cta-card .section-title {
  max-width: 720px;
  margin: 0 auto 16px;
}
.bottom-cta-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.bottom-cta-card .btn-primary {
  padding: 10px 28px 10px 46px;
}
.bottom-cta-card .price-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .bottom-cta { padding: 48px 0 64px; }
  .bottom-cta-card { padding: 40px 24px; }
}
