/* =====================================================
   TOK FAST — BLOG ARTICLE STYLES
   ADHD Moving Planner Cluster Pages
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #f5f5f7;
  --surface:     #ffffff;
  --surface2:    #f0f0f3;
  --border:      #e2e2ea;
  --border2:     #ccccda;
  --text:        #111118;
  --muted:       #55556a;
  --dim:         #888899;
  --primary:     #cc0000;
  --primary-dk:  #aa0000;
  --primary-bg:  rgba(204,0,0,0.07);
  --green:       #16a34a;
  --green-bg:    rgba(22,163,74,0.08);
  --yellow:      #ca8a04;
  --orange:      #ea580c;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07);
  --shadow:      0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.13);
  --font-head:   'Outfit', sans-serif;
  --font-body:   'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── TOPBAR ── */
.topbar {
  background: var(--primary);
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar a {
  color: white;
  background: rgba(255,255,255,0.2);
  padding: 2px 12px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 12px;
  transition: background 0.2s;
}
.topbar a:hover { background: rgba(255,255,255,0.35); }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { background: #15803d !important; box-shadow: 0 4px 12px rgba(22,163,74,0.3); }

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 860px;
  margin: 0 auto;
  padding: 14px 24px 0;
  font-size: 13px;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--dim); }

/* ── ARTICLE HERO ── */
.article-hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px 24px 0;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary-bg);
  color: var(--primary);
  border: 1px solid rgba(204,0,0,0.2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 99px;
}
.article-date {
  font-size: 13px;
  color: var(--dim);
}
.read-time {
  font-size: 13px;
  color: var(--dim);
}
.article-h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.article-lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  border-left: 4px solid var(--primary);
  padding-left: 18px;
}
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}
.hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ── ARTICLE LAYOUT ── */
.article-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.article-content {
  min-width: 0;
}

/* ── ARTICLE BODY ── */
.article-body h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  margin: 40px 0 16px;
  color: var(--text);
}
.article-body h3 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text);
}
.article-body h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--text);
}
.article-body p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.article-body strong { color: var(--text); font-weight: 700; }
.article-body ul, .article-body ol {
  margin: 0 0 20px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.article-body li strong { color: var(--text); }

/* ── CALLOUT BOXES ── */
.callout {
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 28px 0;
  border-left: 4px solid;
}
.callout-tip {
  background: var(--green-bg);
  border-color: var(--green);
}
.callout-tip .callout-label { color: var(--green); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
.callout-warn {
  background: rgba(234,88,12,0.07);
  border-color: var(--orange);
}
.callout-warn .callout-label { color: var(--orange); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
.callout-brain {
  background: rgba(139,92,246,0.07);
  border-color: #8b5cf6;
}
.callout-brain .callout-label { color: #8b5cf6; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
.callout p { margin: 0; font-size: 15px; }

/* ── STEP CARDS ── */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 28px;
}
.step-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h4 { margin: 0 0 4px; font-size: 15px; font-weight: 700; }
.step-body p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── CHECKLIST ── */
.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.checklist li::before {
  content: "☐";
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1.3;
}
.checklist li strong { color: var(--text); display: block; }

/* ── TABLE ── */
.table-wrap { overflow-x: auto; margin: 20px 0 28px; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th {
  background: var(--surface2);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border2);
  font-family: var(--font-head);
}
td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  vertical-align: top;
}
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: rgba(0,0,0,0.015); }

/* ── ARTICLE IMAGE ── */
.article-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 28px 0;
}
.article-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.img-caption {
  text-align: center;
  font-size: 13px;
  color: var(--dim);
  margin-top: 8px;
  font-style: italic;
}

/* ── CTA BLOCK (inline) ── */
.cta-inline {
  background: linear-gradient(135deg, #0d1117 0%, #1a1f2e 100%);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 36px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-inline::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(204,0,0,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inline .cta-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.cta-inline h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: white;
}
.cta-inline p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  line-height: 1.6;
}
.cta-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.cta-price-now {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: white;
}
.cta-price-was {
  font-size: 20px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.cta-discount {
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-head);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-cta-main:hover {
  background: #15803d;
  box-shadow: 0 6px 24px rgba(22,163,74,0.4);
  transform: translateY(-2px);
}
.cta-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  margin-bottom: 0 !important;
}

/* ── SIDEBAR ── */
.article-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Buy Box Sidebar */
.sidebar-buybox {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.sb-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dim);
  margin-bottom: 12px;
}
.sb-product-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}
.sb-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.sb-price-now {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
}
.sb-price-was {
  font-size: 18px;
  color: var(--dim);
  text-decoration: line-through;
}
.sb-savings {
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 16px;
}
.sb-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sb-features li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sb-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.btn-sb-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--green);
  color: white;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--font-head);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  margin-bottom: 8px;
}
.btn-sb-buy:hover {
  background: #15803d;
  box-shadow: 0 6px 20px rgba(22,163,74,0.35);
  transform: translateY(-1px);
}
.sb-secure {
  text-align: center;
  font-size: 12px;
  color: var(--dim);
}

/* TOC Sidebar */
.sidebar-toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}
.toc-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.toc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.toc-list a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}
.toc-list li:last-child a { border-bottom: none; }
.toc-list a:hover { color: var(--primary); }
.toc-list a::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--dim);
  flex-shrink: 0;
}

/* Related Articles sidebar */
.sidebar-related {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}
.related-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.related-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
}
.related-list li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: color 0.2s;
}
.related-list li a:hover { color: var(--primary); }
.related-arrow {
  flex-shrink: 0;
  color: var(--primary);
  font-size: 16px;
  line-height: 1.3;
}

/* ── BOTTOM CTA BANNER ── */
.bottom-cta {
  background: linear-gradient(135deg, #0d1117 0%, #1a2035 100%);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(204,0,0,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta-inner { position: relative; max-width: 680px; margin: 0 auto; }
.bottom-cta .cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.bottom-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.bottom-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-price-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.cta-now-price {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: white;
}
.cta-was-price {
  font-size: 24px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.cta-save-badge {
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 99px;
  text-transform: uppercase;
}
.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  padding: 17px 42px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-head);
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-cta-hero:hover {
  background: #15803d;
  box-shadow: 0 8px 32px rgba(22,163,74,0.45);
  transform: translateY(-3px);
}
.cta-fine {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 14px;
}

/* ── FOOTER ── */
.site-footer {
  background: #0d1117;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 48px 24px 32px;
  color: rgba(255,255,255,0.55);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-tagline { font-size: 14px; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .article-wrapper {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
  }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .article-h1 { font-size: 26px; }
  .hero-img-wrap img { height: 240px; }
  .cta-now-price { font-size: 36px; }
  .btn-cta-hero { padding: 14px 28px; font-size: 16px; }
}
