/* /assets/css/pages/cookies.css */

/* ===== Page layout ===== */
.page{
  min-height: 70vh;
  position: relative;
  overflow: clip; /* prevents glow seams on some GPUs */
}

/* Soft glow background layers (fixes “band/seam” and adds depth) */
.page::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 18% 20%, rgba(142,153,251,.16), transparent 65%),
    radial-gradient(820px 520px at 82% 62%, rgba(166,255,181,.12), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.18) 55%, rgba(0,0,0,.0));
}

/* Make sure sections don’t introduce a hard background edge */
.hero,
.content{
  background: transparent;
}

/* ===== Hero ===== */
.hero{
  padding: clamp(44px, 6vw, 86px) 0 26px;
}

.eyebrow{
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .88;
  margin: 0 0 12px;
  font-size: .85rem;
}

.hero h1{
  margin: 0 0 16px;
  line-height: 1.05;
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
}

.lead{
  margin: 0;
  max-width: 74ch;
  font-size: 1.08rem;
  opacity: .93;
}

/* Punchline gets a little glow and depth */
.punchline{
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--tile-grad, rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 14px 40px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.04) inset;
  width: fit-content;
}

.punchline-line{
  font-size: 1.12rem;
  opacity: .92;
}

.punchline-line.strong{
  font-weight: 850;
  letter-spacing: .02em;
}

/* ===== Content grid ===== */
.content{
  padding: 22px 0 82px;
}

.content-grid{
  display: grid;
  grid-template-columns: 1.55fr .9fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: start;
}

@media (max-width: 980px){
  .content-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== Main card ===== */
.card{
  border-radius: 20px;
  background: var(--tile-grad, rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.12);
  padding: clamp(20px, 3vw, 30px);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(0,0,0,.32);
}

.card h2{
  margin: 18px 0 10px;
  font-size: 1.38rem;
  letter-spacing: .01em;
}

/* first h2 tight to top */
.card h2:first-child{ margin-top: 0; }

.card p{
  margin: 0 0 14px;
  line-height: 1.7;
}

.card ul{
  margin: 0 0 16px;
  padding-left: 1.12rem;
  line-height: 1.75;
}

.card li{ margin: 6px 0; }

.rule{
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  margin: 22px 0;
}

/* “No” list gets more visual hierarchy */
.big-no{
  list-style: none;
  padding-left: 0;
  margin: 6px 0 12px;
}

.big-no li{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  margin: 10px 0;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}

.note{
  opacity: .88;
}

.promise{
  font-size: 1.12rem;
  font-weight: 680;
}

/* ===== Sidebar ===== */
.side-card{
  border-radius: 20px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}

.side-card + .side-card{
  margin-top: 14px;
}

.side-card h3{
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.side-card ul{
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.65;
}

.toplink{
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.35);
}

.side-card.subtle{
  opacity: .92;
}

/* ===== Easter egg ===== */
.easter{
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
}

.ps{
  margin: 0 0 12px;
  opacity: .92;
}

.monster-mark{
  display: flex;
  align-items: center;
  gap: 12px;
}

.monster-mark svg{
  width: 120px;
  height: 48px;
  opacity: .92;
}

.monster-mark circle,
.monster-mark path{
  fill: none;
  stroke: rgba(255,255,255,.78);
  stroke-width: 2.2;
}

.monster-mark .chip{
  fill: rgba(255,255,255,.78);
  stroke: none;
}

.monster-caption{
  font-size: .92rem;
  opacity: .82;
  white-space: nowrap;
}

@media (max-width: 520px){
  .monster-caption{ white-space: normal; }
}

/* ===== Smooth load-in (no libraries) ===== */
.js .reveal{
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
  transition:
    opacity .6s ease,
    transform .7s ease,
    filter .7s ease;
  will-change: opacity, transform, filter;
}

.js.is-loaded .reveal{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .js .reveal,
  .js.is-loaded .reveal{
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
