/* ============================================================
   DISCLAIMER.CSS — Disclaimer page styles
   Exium Classes · exium.in
   ============================================================ */

/* ── PAGE HEADER ── */
.page-header {
  position: relative;
  z-index: 1;
  padding: 9rem 4rem 5rem;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 100% at 85% 50%, rgba(74, 111, 199, 0.06), transparent 70%);
}

.page-header::after {
  content: '//';
  position: absolute;
  right: 4rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 20rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(74, 111, 199, 0.055);
  pointer-events: none;
  user-select: none;
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

/* ── HEADER TYPOGRAPHY ── */
.header-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f07070;
  margin-bottom: 1rem;
  display: block;
}

.header-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}

.header-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(200, 210, 232, 0.6);
  line-height: 1.75;
  max-width: 50ch;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.meta-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(74, 111, 199, 0.1);
  border: 1px solid rgba(74, 111, 199, 0.25);
  color: var(--blue-light);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
}

.meta-site {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  margin: 0 4rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(200, 210, 232, 0.18), transparent);
}

/* ── CONTENT AREA ── */
.disclaimer-content {
  position: relative;
  z-index: 1;
  padding: 5rem 4rem 6rem;
  max-width: 820px;
}

.disclaimer-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── CLAUSE BLOCKS ── */
.clause {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 0 2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.clause.visible {
  opacity: 1;
  transform: translateY(0);
}

.clause-bar {
  background: linear-gradient(180deg, var(--blue-acc), transparent);
  border-radius: 2px;
  min-height: 100%;
}

.clause-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.6rem;
  display: block;
}

.clause-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--white);
}

.clause-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.88;
}

.clause-text a {
  color: var(--blue-light);
  text-decoration: none;
}

.clause-text a:hover { text-decoration: underline; }

/* ── CALLOUT VARIANTS ── */
.clause-warn {
  background: rgba(204, 31, 31, 0.07);
  border: 1px solid rgba(204, 31, 31, 0.2);
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(240, 112, 112, 0.85);
  line-height: 1.75;
}

.clause-note {
  background: rgba(74, 111, 199, 0.07);
  border: 1px solid rgba(74, 111, 199, 0.2);
  border-left: 3px solid var(--blue-acc);
  border-radius: 0 4px 4px 0;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(200, 210, 232, 0.75);
  line-height: 1.75;
}

.clause-note a {
  color: var(--blue-light);
  text-decoration: none;
}

.clause-note a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .page-header        { padding: 8rem 1.5rem 4rem; }
  .page-header::after { display: none; }
  .divider            { margin: 0 1.5rem; }
  .disclaimer-content { padding: 3.5rem 1.5rem 5rem; }
  .clause             { grid-template-columns: 2px 1fr; gap: 0 1.25rem; }
}
