/* assets/css/privacy.css?v=1.0 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

html,body{height:100%;width:100%;margin:0;padding:0}
*,*::before,*::after{box-sizing:border-box}
img,video{max-width:100%;height:auto;display:block}
a{color:inherit}
:root{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility}

body.page-privacy{
  margin:0;
  background:#0f1f23; /* prevents white edges behind your layout on large screens */
}

/* MAIN WRAPPER */
.privacy-v1{
  --wrap: 1160px;
  --px: clamp(16px, 3vw, 28px);
  --gap: clamp(14px, 2vw, 18px);
  --r: 18px;
  --r2: 14px;
  --top: 92px; /* sticky offset under your nav */

  --ink: rgba(2,6,23,.92);
  --muted: rgba(2,6,23,.66);

  --deep:#1d2b2d;
  --cyan:#2bc4e3;

  --y1:#ffe6a6;
  --y2:#ffc86a;
  --y3:#ffb347;

  --line: rgba(15,23,42,.12);
  --line2: rgba(15,23,42,.16);

  --paper: rgba(255,255,255,.90);
  --paper2: rgba(255,255,255,.96);

  --shadow: 0 22px 70px rgba(2,6,23,.12);
  --shadow2: 0 14px 40px rgba(2,6,23,.10);
  --ease: cubic-bezier(.2,.9,.2,1);

  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);

  background:
    radial-gradient(900px 520px at 10% 12%, rgba(255,179,71,.12), transparent 62%),
    radial-gradient(760px 480px at 92% 18%, rgba(43,196,227,.10), transparent 58%),
    linear-gradient(180deg,#ffffff 0%, #fbfbfc 60%, #ffffff 100%);
}

/* Shared container */
.privacy-v1__wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* HERO */
.privacy-v1__hero{
  padding: clamp(52px, 7vw, 92px) 0 18px;
}

.privacy-v1__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 12px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color: rgba(2,6,23,.70);
}
.privacy-v1__kicker::before{
  content:"";
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(180deg, var(--y2), var(--y3));
  box-shadow: 0 14px 34px rgba(255,179,71,.24);
}

.privacy-v1__title{
  margin:0 0 10px;
  font-family:"Playfair Display", ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.3vw, 56px);
  line-height:1.04;
  letter-spacing:-.03em;
  font-weight:800;
}

.privacy-v1__sub{
  margin:0;
  max-width: 78ch;
  color: var(--muted);
  font-weight:650;
  line-height:1.72;
}

/* Meta pills */
.privacy-v1__meta{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pmeta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
  font-size:12px;
  font-weight:850;
  color: rgba(2,6,23,.78);
}
.pmeta a{
  text-decoration:none;
  font-weight:900;
}
.pmeta a:hover{ text-decoration: underline; }

/* BODY */
.privacy-v1__body{
  padding: 18px 0 clamp(64px, 7vw, 96px);
}

/* Grid container (wrap + grid on same node in your HTML) */
.privacy-v1__grid{
  display:grid;
  grid-template-columns: minmax(280px, .36fr) minmax(0, .64fr);
  gap: var(--gap);
  align-items:start;
}

/* Sidebar */
.privacy-v1__side{ min-width: 0; }

.pbox{
  position: sticky;
  top: var(--top);
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper2), var(--paper));
  box-shadow: var(--shadow2);
  overflow:hidden;
}

.pbox__title{
  padding: 14px 14px 10px;
  margin:0;
  font-size:12px;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(2,6,23,.70);
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.pbox__nav{
  padding: 12px;
  display:grid;
  gap: 10px;
}

/* Accordion-like rows (match your screenshot) */
.pbox__nav a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;

  padding: 11px 12px;
  border-radius: 14px;

  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
  color: rgba(2,6,23,.92);

  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 22px rgba(2,6,23,.06);

  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}

.pbox__nav a::after{
  content:"";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(2,6,23,.16);
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.95), rgba(255,255,255,.35));
  opacity:.85;
  flex: 0 0 auto;
}

.pbox__nav a:hover{
  transform: translateY(-1px);
  border-color: rgba(15,23,42,.16);
  box-shadow: 0 16px 36px rgba(2,6,23,.10);
}

.pbox__nav a:focus-visible{
  outline: 3px solid rgba(43,196,227,.35);
  outline-offset: 2px;
}

/* Optional: highlight current section (privacy.js can toggle .is-active) */
.pbox__nav a.is-active{
  border-color: rgba(255,179,71,.35);
  box-shadow: 0 18px 44px rgba(255,179,71,.12);
}

/* CTA bottom pill */
.pbox__cta{
  margin: 0 12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;

  padding: 12px 14px;
  border-radius: 999px;

  text-decoration:none;
  font-weight: 950;
  color: rgba(2,6,23,.92);

  background: linear-gradient(90deg, var(--y2), var(--y3));
  box-shadow: 0 22px 50px rgba(255,179,71,.24);

  transition: transform .18s var(--ease), box-shadow .18s var(--ease), filter .18s var(--ease);
}

.pbox__cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 28px 64px rgba(255,179,71,.28);
  filter: saturate(1.04);
}
.pbox__cta span{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 900;
}
.pbox__cta span::after{
  content:"→";
  font-weight: 900;
}
.pbox__cta strong{
  font-weight: 1000;
  letter-spacing: .02em;
}

/* CONTENT CARD */
.privacy-v1__content{
  min-width: 0;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper2), var(--paper));
  box-shadow: var(--shadow);
  padding: clamp(16px, 2.2vw, 22px);
}

/* Sections */
.psec{
  padding: 16px 0;
  border-bottom: 1px dashed rgba(15,23,42,.16);
}
.psec:last-child{ border-bottom: 0; }

.psec h2{
  margin:0 0 10px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.01em;
  line-height: 1.25;
}

.psec p{
  margin:0 0 10px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.75;
}
.psec p:last-child{ margin-bottom: 0; }

.psec ul{
  margin:10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.75;
}
.psec li{ margin: 6px 0; }

/* Links inside content */
.privacy-v1__content a{
  color: rgba(2,6,23,.92);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(43,196,227,.45);
}
.privacy-v1__content a:hover{
  text-decoration-color: rgba(255,179,71,.75);
}

/* Updated pill */
.privacy-v1__updated{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(15,23,42,.14);
}

.pupdated{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.78);
  color: rgba(2,6,23,.74);
  font-weight: 900;
  font-size: 12px;
}

/* Anchor offset under sticky nav */
.privacy-v1 [id]{ scroll-margin-top: calc(var(--top) + 18px); }

/* RESPONSIVE */
@media (max-width: 1020px){
  .privacy-v1{ --top: 74px; }
  .privacy-v1__grid{ grid-template-columns: 1fr; }
  .pbox{ position: relative; top: 0; }
}

@media (max-width: 560px){
  .privacy-v1__hero{ padding: 44px 0 16px; }
  .privacy-v1__title{ font-size: clamp(30px, 8vw, 40px); }
  .privacy-v1__content{ padding: 16px; }
  .pbox__nav{ gap: 9px; }
  .pbox__nav a{ padding: 10px 11px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .pbox__nav a, .pbox__cta{ transition:none; }
}

/* Print */
@media print{
  body.page-privacy{ background:#fff !important; }
  .privacy-v1{ background:#fff !important; }
  .pbox{ position: static !important; box-shadow:none !important; }
  .privacy-v1__content{ box-shadow:none !important; }
}