/* =============================================
   ALPHABOT — FEATURES PAGE CSS
   ============================================= */

/* ---- FEATURE CARDS ---- */
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.feat-card:hover::after {
  opacity: 1;
}

.feat-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.feat-card:hover .feat-icon-wrap {
  background: var(--accent);
  color: #020804;
  box-shadow: 0 0 20px var(--accent-glow);
}

.feat-card h5 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.feat-card>p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 20px;
}

.feat-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feat-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.feat-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ---- STRATEGY TABLE SECTION ---- */
.strategy-table-section {
  background: var(--bg-surface);
}

/* ---- INFRA DIAGRAM ---- */
.infra-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.infra-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.infra-item i {
  flex-shrink: 0;
  font-size: 1rem;
}

/* Infrastructure Diagram */
.infra-diagram {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.infra-node {
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 10px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-primary);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

.center-node {
  background: var(--accent);
  color: #020804 !important;
  border-color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 0 30px var(--accent-glow);
  z-index: 3;
  white-space: nowrap;
}

.infra-ring {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.infra-ring .small-node {
  position: absolute;
  font-size: 0.7rem;
  padding: 7px 12px;
  animation: orbitPulse 3s ease-in-out infinite;
}

.infra-ring .small-node:nth-child(1) {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.infra-ring .small-node:nth-child(2) {
  top: 60px;
  right: 20px;
  animation-delay: 0.5s;
}

.infra-ring .small-node:nth-child(3) {
  bottom: 60px;
  right: 20px;
  animation-delay: 1s;
}

.infra-ring .small-node:nth-child(4) {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.5s;
}

.infra-ring .small-node:nth-child(5) {
  bottom: 60px;
  left: 20px;
  animation-delay: 2s;
}

.infra-ring .small-node:nth-child(6) {
  top: 60px;
  left: 20px;
  animation-delay: 2.5s;
}

@keyframes orbitPulse {

  0%,
  100% {
    border-color: var(--border);
    box-shadow: none;
  }

  50% {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
  }
}

/* Connecting lines via SVG-like background */
.infra-diagram::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px dashed var(--border-accent);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .infra-diagram {
    width: 280px;
    height: 280px;
  }

  .infra-ring .small-node:nth-child(2) {
    right: 4px;
  }

  .infra-ring .small-node:nth-child(3) {
    right: 4px;
  }

  .infra-ring .small-node:nth-child(5) {
    left: 4px;
  }

  .infra-ring .small-node:nth-child(6) {
    left: 4px;
  }
}



/* =============================================
   ALPHABOT — PRICING PAGE CSS
   ============================================= */

/* ---- BILLING TOGGLE ---- */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.toggle-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s;
}

.toggle-label.active {
  color: var(--text-primary);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  display: none;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--text-muted);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: all 0.3s;
}

.toggle-switch input:checked+.toggle-slider {
  background: var(--accent-dim);
  border-color: var(--border-accent);
}

.toggle-switch input:checked+.toggle-slider::before {
  background: var(--accent);
  transform: translateX(22px);
  box-shadow: 0 0 10px var(--accent-glow);
}

.save-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  padding: 2px 8px;
  font-size: 0.68rem;
  font-family: 'Space Mono', monospace;
  margin-left: 6px;
}

/* ---- PRICING CARDS ---- */
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
  position: relative;
}

.price-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.featured-plan {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, var(--bg-card), rgba(0, 255, 136, 0.04));
  box-shadow: var(--shadow-glow), 0 0 60px rgba(0, 255, 136, 0.06);
}

.popular-tag {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--accent);
  color: #020804;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 0 0 10px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-name {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
}

.plan-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 24px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.currency {
  font-family: 'Space Mono', monospace;
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.amount {
  font-family: 'Space Mono', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  transition: all 0.3s;
}

.period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.plan-features {
  list-style: none;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.plan-features li i {
  flex-shrink: 0;
  font-size: 0.9rem;
}

.plan-features li:not(.inactive) i {
  color: var(--accent);
}

.plan-features li.inactive {
  color: var(--text-muted);
}

.plan-features li.inactive i {
  color: var(--text-muted);
}

/* ---- COMPARISON TABLE ---- */
.comparison-section {
  background: var(--bg-surface);
}

.comparison-table th.featured-col,
.comparison-table td.featured-col {
  background: var(--accent-dim);
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
  color: var(--accent);
}

.comparison-table th.featured-col {
  color: var(--accent);
  font-weight: 700;
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--bg-base);
}

.ab-acc-item {
  background: var(--bg-card);
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.ab-acc-btn {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: none !important;
  border: none;
  padding: 18px 20px;
}

.ab-acc-btn:not(.collapsed) {
  color: var(--accent) !important;
  background: var(--accent-dim) !important;
}

.ab-acc-btn::after {
  filter: var(--accent) !important;
}

[data-theme="dark"] .ab-acc-btn::after {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(100deg);
}

.ab-acc-body {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .price-card {
    padding: 28px 22px;
  }

  .amount {
    font-size: 2.4rem;
  }

  .popular-tag {
    right: 18px;
  }
}

/* about css files */


/* =============================================
   ALPHABOT — ABOUT & CAREERS CSS
   ============================================= */

/* ---- MISSION STATS GRID ---- */
.mission-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mstat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}

.mstat-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.mstat-val {
  font-family: 'Space Mono', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.mstat-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- VALUES ---- */
.values-section {
  background: var(--bg-surface);
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.value-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.value-card h5 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ---- TEAM CARDS ---- */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.team-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.team-avatar {
  width: 70px;
  height: 70px;
  background: var(--accent-dim);
  border: 2px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  margin: 0 auto 16px;
}

.team-card h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.team-role {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.team-card>p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 16px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-socials a {
  width: 32px;
  height: 32px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}

.team-socials a:hover {
  background: var(--accent-dim);
  border-color: var(--border-accent);
  color: var(--accent);
}

/* ---- TIMELINE ---- */
.timeline-section {
  background: var(--bg-surface);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0.4;
}

.tl-item {
  display: grid;
  grid-template-columns: 80px 20px 1fr;
  gap: 0 24px;
  align-items: start;
  margin-bottom: 36px;
  position: relative;
}

.tl-item:last-child {
  margin-bottom: 0;
}

.tl-year {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  text-align: right;
  padding-top: 2px;
}

.tl-dot {
  width: 14px;
  height: 14px;
  background: var(--bg-card);
  border: 2px solid var(--border-accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  justify-self: center;
  position: relative;
  z-index: 1;
}

.tl-dot.active {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.tl-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 0.3s;
}

.tl-content:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.tl-content h6 {
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.tl-content p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

/* ---- PERKS (Careers) ---- */
.perk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.3s;
}

.perk-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.perk-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.perk-card h5 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.perk-card p {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ---- JOB FILTERS ---- */
.job-filter {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-family: 'Space Mono', monospace;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.job-filter:hover,
.job-filter.active {
  background: var(--accent-dim);
  border-color: var(--border-accent);
  color: var(--accent);
}

/* ---- JOB LIST ---- */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  transition: all 0.2s;
}

.job-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.job-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.job-meta i {
  margin-right: 4px;
}

.job-dept {
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-family: 'Space Mono', monospace;
}

.job-dept.eng {
  background: rgba(0, 255, 136, 0.1);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}

.job-dept.research {
  background: rgba(68, 153, 255, 0.1);
  color: #4499ff;
  border: 1px solid rgba(68, 153, 255, 0.3);
}

.job-dept.product {
  background: rgba(255, 196, 0, 0.1);
  color: #ffcc00;
  border: 1px solid rgba(255, 196, 0, 0.3);
}

.job-dept.ops {
  background: rgba(153, 68, 255, 0.1);
  color: #9944ff;
  border: 1px solid rgba(153, 68, 255, 0.3);
}

.job-card[style*="display: none"] {
  display: none !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .timeline::before {
    left: 60px;
  }

  .tl-item {
    grid-template-columns: 60px 16px 1fr;
    gap: 0 16px;
  }

  .mission-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =============================================
   ALPHABOT — LEGAL PAGES CSS
   Privacy, Terms, Risk Disclosure
   ============================================= */

/* ---- COMPACT PAGE HERO ---- */
.page-hero-sm {
  padding: 120px 0 50px !important;
}

.page-hero-sm h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

/* ---- RISK WARNING BANNER ---- */
.risk-warning-banner {
  background: rgba(255, 68, 102, 0.08);
  border-top: 1px solid rgba(255, 68, 102, 0.3);
  border-bottom: 1px solid rgba(255, 68, 102, 0.3);
  padding: 20px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.risk-warn-icon {
  color: #ff4466;
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---- TABLE OF CONTENTS (sticky sidebar) ---- */
.legal-toc {
  position: sticky;
  top: 90px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.toc-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.legal-toc ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-toc a {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 8px;
  transition: all 0.2s;
  line-height: 1.4;
}

.legal-toc a:hover,
.legal-toc a.active {
  background: var(--accent-dim);
  color: var(--accent);
}

/* ---- LEGAL BODY ---- */
.legal-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.legal-intro {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 40px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.legal-section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.legal-section h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.legal-section h5 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin: 20px 0 8px;
}

.legal-section p {
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.legal-section ul {
  margin: 12px 0 16px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section ul li {
  color: var(--text-secondary);
}

.legal-section ul li strong {
  color: var(--text-primary);
}

/* ---- SPECIAL BOXES ---- */
.disclaimer-box {
  background: rgba(255, 68, 102, 0.06);
  border: 1px solid rgba(255, 68, 102, 0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 16px 0;
}

.disclaimer-box p,
.disclaimer-box ul li {
  color: var(--text-secondary);
}

.contact-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-box p {
  margin: 0;
  color: var(--text-secondary);
}

.contact-box strong {
  color: var(--text-primary);
}

/* ---- ACCENT LINK ---- */
.accent-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--border-accent);
  transition: border-color 0.2s;
}

.accent-link:hover {
  color: var(--accent);
  border-bottom-style: solid;
}

/* ---- FOOTER LEGAL LINKS ---- */
.footer-link-sm {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link-sm:hover,
.footer-link-sm.active {
  color: var(--accent);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .legal-toc {
    display: none;
  }
}