/* === Terms & Conditions page === */

/* Hero */
.tc-hero {
  padding: 64px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(60% 60% at 50% 0%, rgba(64,204,191,0.07), transparent 70%);
}
.tc-hero .eyebrow { margin: 0 auto 20px; }
.tc-hero h1 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.03em; line-height: 1.08; }
.tc-hero-meta { margin-top: 16px; font-size: 14px; color: var(--muted); }

/* Layout */
.tc-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
  padding: 56px 0 80px;
}

/* Sidebar TOC */
.tc-toc {
  position: sticky;
  top: 88px;
}
.tc-toc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}
.tc-toc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.tc-toc-list li a {
  display: block;
  font-size: 13px;
  color: var(--ink-2);
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s, color .15s;
  line-height: 1.4;
}
.tc-toc-list li a:hover { background: var(--surface); color: var(--ink); }
.tc-toc-list li a.active { background: var(--teal-50); color: var(--teal-700); font-weight: 600; }

/* Intro alert */
.tc-alert {
  background: var(--teal-50);
  border: 1px solid var(--teal-100, rgba(64,204,191,0.3));
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 32px;
}
.tc-alert p { font-size: 14px; color: var(--ink-2); line-height: 1.65; margin: 0; }

/* Content */
.tc-content { min-width: 0; }
.tc-section { padding-bottom: 40px; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.tc-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.tc-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 800;
  color: var(--teal-600);
  background: var(--teal-50);
  border-radius: 8px;
  margin-bottom: 12px;
}
.tc-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 16px;
}
.tc-section p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.tc-section p:last-child { margin-bottom: 0; }
.tc-section ul {
  margin: 12px 0 12px 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}
.tc-section ul li {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
}
.tc-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 20px 0 8px;
}
.tc-section h3:first-child { margin-top: 0; }

/* Responsive */
@media (max-width: 860px) {
  .tc-layout { grid-template-columns: 1fr; }
  .tc-toc { display: none; }
}
