/* =========================================================
   Cloud Security Pros — Threat Advisory Landing Page
   Uses the site's existing dark/blue palette (see solutions.css)
   ========================================================= */

.ta-page {
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.02);
  --border: rgba(255, 255, 255, 0.08);
  --heading: rgb(234, 235, 239);
  --body: #94a3b8;
  --body-light: #cbd5e1;
  --faint: #475569;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --accent-glow: rgba(59, 130, 246, 0.1);
  --danger: #ef4444;
  --danger-soft: rgba(239, 68, 68, 0.08);
  --success: #22c55e;

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.ta-page section {
  padding: 5rem 1.5rem;
}

.ta-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ── HERO ── */
.ta-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.ta-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 70%, rgba(239, 68, 68, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.ta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-bottom: 1.8rem;
  background: var(--accent-glow);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(59, 130, 246, 0.25);
  position: relative;
}

.ta-eyebrow .ta-dot {
  width: 7px; height: 7px;
  background: var(--danger);
  border-radius: 50%;
  animation: ta-pulse 2s ease-in-out infinite;
}

@keyframes ta-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.ta-hero h1 {
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: var(--heading);
  max-width: 780px;
  margin-bottom: 1.6rem;
  letter-spacing: -0.025em;
  position: relative;
}

.ta-hero h1 em {
  font-style: normal;
  color: var(--accent-light);
}

.ta-hero-sub {
  font-size: 1.1rem;
  color: var(--body);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  position: relative;
}

.ta-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  position: relative;
}

.ta-cta-btn:hover {
  transform: translateY(-1px);
  background: #2563eb;
}

.ta-cta-btn svg {
  width: 18px;
  height: 18px;
}

/* ── EVIDENCE BAR ── */
.ta-evidence-bar {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 1.5rem;
}

.ta-evidence-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ta-evidence-stat {
  text-align: center;
  padding: 0 1rem;
}

.ta-evidence-stat .ta-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.ta-evidence-stat .ta-label {
  font-size: 0.85rem;
  color: var(--body-light);
  line-height: 1.5;
}

.ta-evidence-stat .ta-source {
  font-size: 0.7rem;
  color: var(--faint);
  margin-top: 0.4rem;
  font-style: italic;
}

/* ── SECTION HEADINGS ── */
.ta-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.ta-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.ta-lead {
  font-size: 1.05rem;
  color: var(--body);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ── TIMELINE ── */
.ta-timeline {
  display: flex;
  flex-direction: column;
}

.ta-timeline-event {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.ta-timeline-event:last-child {
  border-bottom: none;
}

.ta-timeline-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-light);
  padding-top: 0.15rem;
  letter-spacing: 0.02em;
}

.ta-timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.ta-timeline-content p {
  font-size: 0.92rem;
  color: var(--body-light);
  line-height: 1.7;
}

.ta-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  margin-top: 0.8rem;
  background: var(--danger-soft);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* ── QUOTE STRIP ── */
.ta-quote-strip {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 1.5rem;
  text-align: center;
}

.ta-quote-strip blockquote {
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  font-style: italic;
  font-weight: 500;
  color: var(--heading);
  max-width: 750px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

.ta-quote-strip cite {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--faint);
  letter-spacing: 0.02em;
}

/* ── GAP GRID ── */
.ta-gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1rem;
}

.ta-gap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.6rem;
}

.ta-gap-card .ta-icon {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  display: block;
}

.ta-gap-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.55rem;
}

.ta-gap-card p {
  font-size: 0.85rem;
  color: var(--body);
  line-height: 1.65;
}

/* ── SERVICES ── */
.ta-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 0.5rem;
  border: 1px solid var(--border);
}

.ta-service-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--surface-2);
  transition: background 0.2s;
}

.ta-service-row:hover {
  background: var(--surface);
}

.ta-service-name {
  padding: 1.5rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-light);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.ta-service-desc {
  padding: 1.5rem 1.6rem;
  font-size: 0.88rem;
  color: var(--body-light);
  line-height: 1.65;
}

/* ── FINAL CTA ── */
.ta-final-cta {
  text-align: center;
  position: relative;
  background: var(--accent-glow);
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.ta-final-cta h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ta-final-cta p {
  font-size: 1.05rem;
  color: var(--body);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.ta-final-details {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.ta-final-detail {
  font-size: 0.8rem;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ta-final-detail svg {
  width: 14px;
  height: 14px;
  color: var(--success);
}

.ta-sources {
  text-align: center;
  padding: 2rem 1.5rem 0.5rem;
  font-size: 0.72rem;
  color: var(--faint);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ta-evidence-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .ta-gap-grid { grid-template-columns: 1fr; }
  .ta-service-row { grid-template-columns: 1fr; }
  .ta-service-name { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 0.8rem; }
  .ta-service-desc { padding-top: 0.8rem; }
  .ta-timeline-event { grid-template-columns: 80px 1fr; gap: 1rem; }
  .ta-final-details { flex-direction: column; gap: 0.8rem; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  .ta-eyebrow .ta-dot { animation: none; }
}
