/* ── Design tokens (match homepage) ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #F97316;
  --orange-dark:  #EA580C;
  --orange-light: #FB923C;
  --orange-glow:  rgba(249,115,22,0.35);
  --bg:           #0A0A0A;
  --bg-card:      #111111;
  --bg-card2:     #161616;
  --border:       rgba(249,115,22,0.18);
  --text:         #F5F5F5;
  --muted:        #9CA3AF;
  --max-w:        960px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── NAV ──────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 600; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }
.btn { display: inline-block; text-decoration: none; cursor: pointer; border: none; font-family: inherit; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; border-radius: 8px;
  padding: 0.6rem 1.25rem; font-size: 0.875rem; font-weight: 700;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(249,115,22,0.3); text-decoration: none; }
.btn-large { padding: 0.85rem 2rem; font-size: 1rem; border-radius: 10px; }
.nav-cta { font-size: 0.85rem; padding: 0.55rem 1.1rem; }

/* ── LAYOUT ───────────────────────────────────────────────────────── */
main { padding-top: 68px; }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── BREADCRUMB ───────────────────────────────────────────────────── */
.breadcrumb {
  font-size: 0.8rem; color: var(--muted);
  margin-bottom: 1.5rem; padding-top: 2rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }

/* ── HERO SECTION ─────────────────────────────────────────────────── */
.hero-section {
  padding: 3.5rem 0 3rem;
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 1rem;
}
.hero-section h1 strong { color: var(--orange); }
.hero-lead {
  font-size: 1.05rem; color: var(--muted);
  margin-bottom: 1.75rem; max-width: 640px; line-height: 1.6;
}

/* ── ANSWER / TL;DR BOX ───────────────────────────────────────────── */
.answer-box {
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.28);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem auto 2rem;
}
.answer-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange); margin-bottom: 0.6rem;
}
.answer-box p { font-size: 0.95rem; color: var(--text); line-height: 1.65; margin-bottom: 0.5rem; }
.answer-box p:last-child { margin-bottom: 0; }
.answer-box ol, .answer-box ul {
  padding-left: 1.25rem; margin-top: 0.5rem;
}
.answer-box li { font-size: 0.9rem; color: var(--text); margin-bottom: 0.35rem; line-height: 1.5; }
.answer-pain { color: var(--orange) !important; font-weight: 600; font-style: italic; }
.tldr-list { padding-left: 0; list-style: none; }
.tldr-list li { padding: 0.35rem 0; border-bottom: 1px solid rgba(249,115,22,0.1); }
.tldr-list li:last-child { border-bottom: none; }
.tldr-list li strong { color: var(--orange); }

/* ── SECTION COMMON ───────────────────────────────────────────────── */
section { padding: 3.5rem 0; }
section + section { padding-top: 0; }
.section-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange); margin-bottom: 0.5rem;
}
section h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 1.25rem; line-height: 1.2;
}
section h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.4rem; color: var(--text);
}
section p { color: var(--muted); line-height: 1.65; margin-bottom: 0.75rem; }
section p:last-child { margin-bottom: 0; }

/* ── CARDS & GRIDS ────────────────────────────────────────────────── */
.content-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-top: 1rem;
}
.content-type-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.content-type-card:hover { border-color: var(--orange-light); transform: translateY(-2px); }
.content-type-card h3 {
  font-size: 0.875rem; font-weight: 700;
  color: var(--orange); margin-bottom: 0.4rem;
}
.content-type-card p { font-size: 0.8rem; color: var(--muted); }

.platform-grid {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1rem;
}
.platform-pill {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.45rem 1rem;
  font-size: 0.85rem; font-weight: 600;
  transition: border-color 0.2s;
}
.platform-pill:hover { border-color: var(--orange); }

.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin: 1.5rem 0;
}
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem;
  text-align: center;
}
.stat-card strong { display: block; font-size: 1.1rem; color: var(--orange); font-weight: 800; margin-bottom: 0.35rem; }
.stat-card span { font-size: 0.78rem; color: var(--muted); }

.industry-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-top: 1rem;
}
.industry-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem;
  text-decoration: none; color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}
.industry-card:hover { border-color: var(--orange); transform: translateY(-2px); text-decoration: none; }
.industry-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--orange); margin-bottom: 0.3rem; }
.industry-card p { font-size: 0.78rem; color: var(--muted); margin: 0; }

.reason-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin-top: 1rem;
}
.reason-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem;
}
.reason-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.reason-card p { font-size: 0.8rem; color: var(--muted); margin: 0; }

/* ── HOW IT WORKS STEPS ───────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem; margin-top: 1rem;
}
.step {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
  position: relative; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover { border-color: var(--orange); transform: translateY(-3px); }
.step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.3);
  font-size: 0.8rem; font-weight: 800; color: var(--orange);
  margin-bottom: 0.75rem;
}
.step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.step p { font-size: 0.82rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ── PAIN LIST ────────────────────────────────────────────────────── */
.pain-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
  margin: 1rem 0;
}
.pain-list li {
  font-size: 0.9rem; color: var(--muted);
  padding-left: 1.4rem; position: relative; line-height: 1.5;
}
.pain-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}

/* ── LISTICLE ITEMS ───────────────────────────────────────────────── */
.list-item-section {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.list-item-section:hover { border-color: rgba(249,115,22,0.3); }
.list-item-section h2 {
  font-size: 1.1rem; font-weight: 800;
  margin-bottom: 0.6rem; color: var(--text);
}
.list-item-section p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.5rem; }
.inline-cta {
  display: inline-block;
  color: var(--orange); font-weight: 700; font-size: 0.85rem;
  text-decoration: none; margin-top: 0.25rem;
}
.inline-cta:hover { text-decoration: underline; }

/* ── FAQ SECTION ──────────────────────────────────────────────────── */
.faq-list {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: 1rem;
}
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(249,115,22,0.35); }
.faq-item h3 {
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 0.6rem; color: var(--text);
}
.faq-item p { font-size: 0.875rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── GLOSSARY RELATED TERMS ───────────────────────────────────────── */
.related-terms-list {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  padding: 0; list-style: none; margin: 0.75rem 0 1.5rem;
}
.related-terms-list li {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 999px; padding: 0.3rem 0.85rem;
  font-size: 0.8rem; color: var(--muted);
}

/* ── ARTICLE HEADER ───────────────────────────────────────────────── */
.article-header { padding-top: 2rem; padding-bottom: 0; }
.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 0.75rem;
}
.article-meta {
  display: flex; gap: 1rem; align-items: center;
  font-size: 0.8rem; color: var(--muted); margin-bottom: 0;
  flex-wrap: wrap;
}
.article-body { padding-top: 2rem; }
.article-body h2 { margin-top: 2rem; }
.article-body h2:first-child { margin-top: 0; }

/* ── CTA SECTION ──────────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 4rem 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.cta-section p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.cta-section .btn-primary { display: inline-block; width: auto; min-width: 220px; }

/* ── COMPARISON TABLE ─────────────────────────────────────────────── */
.comparison-table {
  width: 100%; border-collapse: collapse; margin: 1.5rem 0;
  font-size: 0.88rem;
}
.comparison-table th {
  background: var(--bg-card2); color: var(--orange);
  font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border);
}
.comparison-table td {
  padding: 0.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--muted); vertical-align: top;
}
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
.comparison-table .highlight { color: var(--text); font-weight: 600; }
.comparison-table .yes { color: #4ade80; }
.comparison-table .no { color: #f87171; }

/* ── FOOTER ───────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 1.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand img { height: 32px; width: auto; margin-bottom: 0.75rem; display: block; }
.footer-brand p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
.footer-nav h3 {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin-bottom: 0.75rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0; }
.footer-nav a {
  font-size: 0.82rem; color: var(--muted);
  text-decoration: none; padding: 0.2rem 0;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange); text-decoration: none; }
.footer-copy {
  text-align: center; font-size: 0.75rem; color: #444;
  margin-top: 2.5rem; padding: 0 1.5rem;
}

/* ── FLOATING CTA ─────────────────────────────────────────────────── */
.floating-cta {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 200;
  display: flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; text-decoration: none;
  padding: 0.75rem 1.4rem; border-radius: 999px;
  font-size: 0.875rem; font-weight: 700;
  box-shadow: 0 4px 24px rgba(249,115,22,0.45);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,0.55);
  text-decoration: none; color: #fff;
}
.floating-cta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; opacity: 0.8;
  animation: float-pulse 2s infinite;
}
@keyframes float-pulse { 0%,100% { opacity:0.8; transform:scale(1); } 50% { opacity:1; transform:scale(1.25); } }

/* ── BADGES ───────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25);
  border-radius: 999px; padding: 0.25rem 0.75rem;
  font-size: 0.72rem; font-weight: 700;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 1rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-bar { padding: 0.85rem 1rem; }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; }
  .floating-cta { bottom: 1rem; right: 1rem; padding: 0.65rem 1.1rem; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .hero-section h1 { font-size: 1.9rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .content-type-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
}
