/* ============================================================
   TEXT PAGES  (text-page.css)  —  Legal / Privacy / Terms
   Header & footer styles intentionally excluded.
   ============================================================ */

/* --- Base tokens — DELETE this block if header.css already defines them --- */
:root {
  --ink: #0E0E0E;
  --accent: #6FBEF0;
  --accent-soft: rgba(111, 190, 240, .12);
  --muted: #5b5b62;
  --line: rgba(14, 14, 14, .08);
  --shadow: 0 30px 80px -30px rgba(14, 14, 14, .2);
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
/* --- end deletable base block --- */


/* --- Section shell --- */
section {
  padding: 90px 0;
}


/* --- Hero (dark band) --- */
.text-hero {
  position: relative;
  background: #0E0E0E;
  color: #fff;
  overflow: hidden;
  padding: 170px 0 90px;
}

.text-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 190, 240, .22), transparent 70%);
  filter: blur(50px);
  animation: float 14s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(50px, 40px); }
}

.text-hero .eyebrow {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  border-radius: 40px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}

.text-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  max-width: 860px;
  position: relative;
  z-index: 2;
}

.text-hero h1 .a {
  color: var(--accent);
  font-style: italic;
}

.text-hero .hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, .75);
  max-width: 620px;
  position: relative;
  z-index: 2;
}


/* --- Important note (below hero, left border) --- */
.note {
  width: min(820px, 100%);
  margin: 0 auto 50px;
  padding: 22px 26px;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
}

.note-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.note p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: #2a2a2e;
}


/* --- Body --- */
.text-body {
  width: min(820px, 100%);
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.8;
  color: #2a2a2e;
}

.text-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 14px;
}

.text-body h2:first-child {
  margin-top: 0;
}

.text-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 10px;
}

.text-body p {
  margin-bottom: 18px;
}

.text-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-body strong {
  color: var(--ink);
  font-weight: 600;
}

.text-body ul,
.text-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.text-body li {
  margin-bottom: 10px;
}

.text-body li::marker {
  color: var(--accent);
}


/* --- Info callout (i) --- */
.callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 30px 0;
  padding: 20px 22px;
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.callout-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.callout-icon svg {
  width: 22px;
  height: 22px;
}

.callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a40;
}


/* --- Last updated --- */
.last-updated {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  letter-spacing: .04em;
  color: var(--muted);
  font-style: italic;
}


/* --- Reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }


/* --- Responsive --- */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .text-hero {
    padding: 140px 0 70px;
  }

  .text-body {
    font-size: 16px;
  }
}
