/* from page-tumblr.php */
/* ═══════════════════════════════════════════════════════
   TUMBLR MONITORING PAGE  —  tb- prefix
   Design tokens: --acc #235de6 | --navy #0d1f30
   Font: DM Sans (body) + Bricolage Grotesque (headings)
   Tumblr accent: #35465c (Tumblr navy-blue brand colour)
═══════════════════════════════════════════════════════ */
:root {
  --tb-acc:    #235de6;
  --tb-acc2:   #1d4ed8;
  --tb-tmblr:  #35465c;
  --tb-navy:   #0d1f30;
  --tb-txt:    #1a2e3d;
  --tb-txt2:   #456070;
  --tb-bg:     #f3f7ff;
  --tb-bg2:    #e8f0fe;
  --tb-card:   #ffffff;
  --tb-bdr:    #dce8ff;
  --tb-r:      14px;
  --tb-shadow: 0 4px 24px rgba(35,93,230,.10);
}

/* ── HERO ─────────────────────────────────────── */
.tb-hero-section { background: #fff; padding: 0 0 72px; }
.tb-hero-wrap {
  max-width: 1180px; margin: 0 auto; padding: 64px 32px 0;
  display: grid; grid-template-columns: 1fr 420px;
  align-items: center; gap: 64px;
}
.tb-hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--tb-bg); border: 1px solid var(--tb-bdr);
  border-radius: 50px; padding: 5px 16px;
  font-size: .72rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--tb-acc); margin-bottom: 18px;
}
.tb-hero-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800; line-height: 1.15;
  color: var(--tb-navy); margin: 0 0 18px;
}
.tb-hero-h1 em { font-style: normal; color: var(--tb-acc); }
.tb-hero-desc {
  font-size: 1.05rem; color: var(--tb-txt2);
  line-height: 1.75; margin: 0 0 28px; max-width: 500px;
}
.tb-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.tb-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--tb-acc), var(--tb-acc2));
  color: #fff; font-weight: 700; font-size: .9rem;
  padding: 13px 26px; border-radius: 10px; text-decoration: none;
  box-shadow: 0 4px 18px rgba(35,93,230,.32);
  transition: transform .2s, box-shadow .2s;
}
.tb-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(35,93,230,.42); color: #fff; }
.tb-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid #c8d8f8; color: var(--tb-acc);
  font-weight: 600; font-size: .9rem;
  padding: 12px 22px; border-radius: 10px; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.tb-btn-ghost:hover { border-color: var(--tb-acc); background: var(--tb-bg); color: var(--tb-acc); }
.tb-hero-trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid #eef2fb;
}
.tb-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--tb-txt2);
}

/* Hero visual — mock Tumblr dashboard */
.tb-hero-visual {
  background: linear-gradient(145deg, #f0f7ff, #e4eeff);
  border: 1.5px solid #c8d8f8; border-radius: 20px;
  padding: 24px; position: relative; overflow: hidden;
}
.tb-mock-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 16px; border-bottom: 1px solid #d8e6ff; margin-bottom: 16px;
}
.tb-mock-logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--tb-tmblr);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tb-mock-info { flex: 1; }
.tb-mock-title { font-size: .88rem; font-weight: 700; color: var(--tb-navy); }
.tb-mock-sub   { font-size: .72rem; color: var(--tb-txt2); margin-top: 1px; }
.tb-monitor-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(35,93,230,.12); border: 1px solid rgba(35,93,230,.25);
  color: var(--tb-acc); border-radius: 50px; padding: 4px 10px;
  font-size: .7rem; font-weight: 700;
}
.tb-monitor-badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--tb-acc); animation:tb-pulse 1.5s infinite; }
@keyframes tb-pulse{ 0%,100%{opacity:1} 50%{opacity:.3} }
.tb-post-card {
  background: #fff; border: 1.5px solid #e0eaff;
  border-radius: 10px; padding: 12px 14px; margin-bottom: 8px;
}
.tb-post-top   { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.tb-post-avatar {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; color: #fff;
}
.tb-post-user  { font-size: .78rem; font-weight: 700; color: var(--tb-navy); }
.tb-post-time  { font-size: .68rem; color: var(--tb-txt2); margin-left: auto; }
.tb-post-text  { font-size: .78rem; color: var(--tb-txt); line-height: 1.55; margin-bottom: 8px; }
.tb-post-tags  { display: flex; gap: 5px; flex-wrap: wrap; }
.tb-post-tag   {
  background: var(--tb-bg); border: 1px solid var(--tb-bdr);
  border-radius: 4px; padding: 2px 6px;
  font-size: .65rem; font-weight: 600; color: var(--tb-acc);
}
.tb-msg-card {
  background: #fff; border: 1.5px solid #e0eaff;
  border-radius: 10px; padding: 10px 14px; margin-bottom: 8px;
  display: flex; gap: 10px; align-items: flex-start;
}
.tb-msg-ico {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.tb-msg-body { flex: 1; }
.tb-msg-title { font-size: .78rem; font-weight: 700; color: var(--tb-navy); }
.tb-msg-text  { font-size: .72rem; color: var(--tb-txt2); margin-top: 2px; line-height: 1.4; }
.tb-msg-badge {
  font-size: .65rem; font-weight: 700; padding: 3px 7px;
  border-radius: 50px; align-self: flex-start;
}
.tb-badge-blue   { background: rgba(35,93,230,.12);  color: var(--tb-acc); }
.tb-badge-purple { background: rgba(168,85,247,.12); color: #9333ea; }

/* ── STATS BAR ────────────────────────────────── */
.tb-stats-bar {
  background: var(--tb-bg);
  border-top: 1px solid #e0eaff; border-bottom: 1px solid #e0eaff;
  padding: 28px 0;
}
.tb-stats-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-around;
  gap: 24px; flex-wrap: wrap;
}
.tb-stat { text-align: center; }
.tb-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: var(--tb-navy); line-height: 1;
}
.tb-stat-num span { color: var(--tb-acc); }
.tb-stat-lbl { font-size: .78rem; color: var(--tb-txt2); margin-top: 4px; font-weight: 500; }
.tb-stat-div { width: 1px; height: 40px; background: #d4e0f5; }

/* ── SHARED SECTION STYLES ────────────────────── */
.tb-container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.tb-section-hdr { text-align: center; margin-bottom: 52px; }
.tb-section-tag {
  display: inline-block; font-size: .7rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--tb-acc); background: var(--tb-bg);
  border: 1px solid var(--tb-bdr); border-radius: 50px;
  padding: 5px 14px; margin-bottom: 12px;
}
.tb-section-hdr h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 800;
  color: var(--tb-navy); margin: 0 0 10px;
}
.tb-section-hdr p { font-size: .97rem; color: var(--tb-txt2); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ── FEATURES GRID ─────────────────────────────── */
.tb-features { padding: 80px 0; background: #fff; }
.tb-feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tb-feat-card {
  background: #fff; border: 1.5px solid #e0eaff;
  border-radius: var(--tb-r); padding: 28px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.tb-feat-card:hover { border-color: #a8c0f0; box-shadow: var(--tb-shadow); transform: translateY(-3px); }
.tb-feat-ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.tb-feat-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--tb-navy); margin: 0 0 8px;
}
.tb-feat-card p { font-size: .87rem; color: var(--tb-txt2); line-height: 1.7; margin: 0; }

/* ── WHAT YOU CAN SEE (content + sidebar) ──────── */
.tb-content { padding: 80px 0; background: var(--tb-bg); }
.tb-content-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 64px; align-items: start;
}
.tb-content-body h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2rem); font-weight: 800;
  color: var(--tb-navy); margin: 0 0 18px;
}
.tb-content-body p { font-size: .95rem; color: var(--tb-txt2); line-height: 1.8; margin: 0 0 16px; }
.tb-check-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 10px; }
.tb-check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--tb-txt); line-height: 1.6;
}
.tb-check-list li::before {
  content: ''; flex-shrink: 0; width: 20px; height: 20px;
  border-radius: 50%; margin-top: 1px;
  background: var(--tb-acc) url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center/12px no-repeat;
}
.tb-sidebar-card {
  background: #fff; border: 1.5px solid #dce8ff;
  border-radius: 18px; padding: 28px;
  position: sticky; top: 100px;
  box-shadow: 0 4px 20px rgba(35,93,230,.07);
}
.tb-sidebar-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem; font-weight: 800; color: var(--tb-navy); margin: 0 0 6px;
}
.tb-sidebar-card > p { font-size: .85rem; color: var(--tb-txt2); margin: 0 0 20px; line-height: 1.6; }
.tb-data-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.tb-data-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--tb-bg); border: 1px solid var(--tb-bdr);
  border-radius: 10px; padding: 11px 14px;
}
.tb-data-item svg { flex-shrink: 0; }
.tb-data-item span { font-size: .86rem; font-weight: 600; color: var(--tb-navy); }
.tb-sidebar-cta {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--tb-acc), var(--tb-acc2));
  color: #fff; font-weight: 700; font-size: .9rem;
  padding: 13px; border-radius: 10px; text-decoration: none;
  transition: opacity .2s;
}
.tb-sidebar-cta:hover { opacity: .9; color: #fff; }

/* ── USE CASES ─────────────────────────────────── */
.tb-usecases { padding: 80px 0; background: #fff; }
.tb-uc-grid  { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.tb-uc-card  {
  background: #fff; border: 1.5px solid #e0eaff;
  border-radius: var(--tb-r); padding: 34px;
  transition: border-color .2s, box-shadow .2s;
}
.tb-uc-card:hover { border-color: #a8c0f0; box-shadow: var(--tb-shadow); }
.tb-uc-ico   {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.tb-uc-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem; font-weight: 800; color: var(--tb-navy); margin: 0 0 10px;
}
.tb-uc-card p  { font-size: .88rem; color: var(--tb-txt2); line-height: 1.72; margin: 0 0 16px; }
.tb-uc-checks  { display: flex; flex-direction: column; gap: 7px; }
.tb-uc-check   {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .83rem; color: var(--tb-txt);
}
.tb-uc-check::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px;
  border-radius: 50%;
  background: var(--tb-acc) url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ── FAQ ────────────────────────────────────────── */
.tb-faq { padding: 80px 0; background: var(--tb-bg); }
.tb-faq-list {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 780px; margin: 48px auto 0;
}
.tb-faq-item {
  background: #fff; border: 1.5px solid #e0eaff;
  border-radius: var(--tb-r); overflow: hidden;
  transition: border-color .2s;
}
.tb-faq-item.open { border-color: var(--tb-acc); box-shadow: 0 4px 18px rgba(35,93,230,.10); }
.tb-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  text-align: left; gap: 14px; transition: background .2s;
}
.tb-faq-q:hover { background: var(--tb-bg); }
.tb-faq-q-text { font-size: .93rem; font-weight: 700; color: var(--tb-navy); }
.tb-faq-arr {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--tb-bg); color: var(--tb-acc);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .2s;
}
.tb-faq-item.open .tb-faq-arr { transform: rotate(180deg); background: var(--tb-acc); color: #fff; }
.tb-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; padding: 0 22px; }
.tb-faq-item.open .tb-faq-a { max-height: 400px; padding: 0 22px 18px; }
.tb-faq-a p { font-size: .9rem; color: var(--tb-txt2); line-height: 1.78; margin: 0; }

/* ── CTA ────────────────────────────────────────── */
.tb-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, #0a1628 0%, #102240 50%, #1a3a6e 100%);
  position: relative; overflow: hidden;
}
.tb-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 350px at 50% 110%, rgba(35,93,230,.22) 0%, transparent 70%);
  pointer-events: none;
}
.tb-cta-inner { text-align: center; position: relative; z-index: 1; }
.tb-cta-inner h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 800;
  color: #fff; margin: 0 0 12px;
}
.tb-cta-inner p { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }
.tb-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.tb-btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--tb-navy);
  font-weight: 700; font-size: .9rem;
  padding: 13px 28px; border-radius: 10px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.tb-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); color: var(--tb-navy); }
.tb-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.92); color: rgba(255,255,255,.9);
  font-weight: 600; font-size: .9rem;
  padding: 12px 24px; border-radius: 10px; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.tb-btn-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.07); color: #fff; }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .tb-hero-wrap     { grid-template-columns: 1fr; }
  .tb-hero-visual   { display: none; }
  .tb-content-grid  { grid-template-columns: 1fr; }
  .tb-sidebar-card  { position: static; }
  .tb-feat-grid     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .tb-feat-grid     { grid-template-columns: 1fr; }
  .tb-uc-grid       { grid-template-columns: 1fr; }
  .tb-container     { padding: 0 20px; }
  .tb-hero-wrap     { padding: 48px 20px 0; }
}

/* ── Breadcrumb bar ── */
.tos-bc-bar { background:#fff; border-bottom:1px solid #f1f5f9; padding:10px 0; }
.tos-bc-bar nav { max-width:1080px; margin:0 auto; padding:0 32px; }
.tos-bc-bar ol { display:inline-flex; align-items:center; gap:6px; font-size:.78rem; color:#94a3b8; list-style:none; padding:0; margin:0; flex-wrap:wrap; }
.tos-bc-bar ol li a { color:#2563eb; text-decoration:none; font-weight:500; transition:color .15s; }
.tos-bc-bar ol li a:hover { color:#1d4ed8; }
.tos-bc-bar ol li.bc-sep { color:#cbd5e1; }
.tos-bc-bar ol li.bc-cur { color:#0f172a; font-weight:600; }
@media(max-width:640px){ .tos-bc-bar nav { padding:0 20px; } .tos-bc-bar ol { font-size:.73rem; } }
