/* ============================================================
   STATIC PAGES — Gen-Z Dark Version
   About / Mission / Terms / Privacy / Support
   Drop-in replacement
   ============================================================ */

/* ---------- Wrapper ---------- */
.oe-page{
  padding: 28px 0 70px;
}

.oe-page-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 14px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.oe-page-hero{
  position: relative;
  border-radius: calc(var(--oe-radius,22px) + 8px);
  padding: 28px 24px;
  overflow: hidden;

  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}

/* Glow background */
.oe-page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(720px 260px at 18% 20%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(720px 300px at 85% 0%, rgba(124,58,237,.20), transparent 60%);
  opacity:.9;
  mix-blend-mode: screen;
}
.oe-page-hero > *{
  position:relative;
  z-index:1;
}

/* Hero title */
.oe-page-hero h1{
  margin: 0 0 10px;
  font-family: var(--font-head, Syne, sans-serif);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 950;
  color: rgba(255,255,255,.95);
  letter-spacing: -0.02em;
}

/* Hero subtitle */
.oe-page-hero p{
  margin:0;
  color: rgba(255,255,255,.72);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ============================================================
   CONTENT CARD
   ============================================================ */
.oe-page-card{
  margin-top: 16px;
  border-radius: calc(var(--oe-radius,22px) + 8px);
  padding: 24px;
  position: relative;
  overflow:hidden;

  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0,0,0,.50);
}

/* subtle glow */
.oe-page-card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(720px 260px at 15% 15%, rgba(124,58,237,.14), transparent 60%),
    radial-gradient(720px 300px at 85% 80%, rgba(34,211,238,.12), transparent 60%);
  opacity:.85;
  mix-blend-mode: screen;
}
.oe-page-card > *{
  position:relative;
  z-index:1;
}

/* Headings */
.oe-page-card h2{
  font-size: 18px;
  font-weight: 950;
  margin: 20px 0 10px;
  font-family: var(--font-head, Syne, sans-serif);
  color: rgba(255,255,255,.94);
}
.oe-page-card h2:first-child{ margin-top: 0; }

/* Text */
.oe-page-card p,
.oe-page-card li{
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.85;
}

/* Lists */
.oe-page-card ul{
  margin: 10px 0 0 18px;
}
.oe-page-card li{
  margin: 6px 0;
}

/* ============================================================
   HINT / SMALL LINK
   ============================================================ */
.oe-modal-hint{
  margin-top: 14px;
  font-size: 12.8px;
  color: rgba(255,255,255,.65);
}

.oe-modal-hint a{
  font-weight: 900;
  color: var(--oe-cyan, #22D3EE);
}
.oe-modal-hint a:hover{
  text-decoration: underline;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 575px){
  .oe-page-hero{
    padding: 22px 18px;
  }

  .oe-page-hero h1{
    font-size: 22px;
  }

  .oe-page-card{
    padding: 20px 18px;
  }
}