/* =========================================================
   IPC — Editorial Dark Theme (FULL style.css)
   ========================================================= */

:root{
  --bg:#0b0b0e;
  --bg2:#0f1014;
  --panel: rgba(255,255,255,.035);
  --panel2: rgba(255,255,255,.06);
  --text:#f5f5f7;
  --muted:rgba(245,245,247,.72);
  --muted2:rgba(245,245,247,.55);
  --gold:#c9a96d;
  --gold2:rgba(201,169,109,.22);
  --border:rgba(255,255,255,.10);
  --border2:rgba(255,255,255,.14);
  --shadow:0 18px 70px rgba(0,0,0,.55);
  --ok:#8bd49c;
  --bad:#ffb4b4;

  --max:1200px;
  --radius:18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:
    radial-gradient(1100px 550px at 50% -120px, rgba(201,169,109,.12), transparent 55%),
    radial-gradient(850px 420px at 80% 0px, rgba(245,245,247,.06), transparent 55%),
    var(--bg);
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.skip{
  position:absolute;
  left:-999px; top:auto;
  width:1px; height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  border-radius:12px;
  background:#fff;
  color:#000;
  z-index:9999;
}

/* Scroll progress */
#scroll-progress{
  position:fixed;
  top:0; left:0;
  height:2px;
  width:0%;
  background:linear-gradient(90deg, rgba(201,169,109,.0), rgba(201,169,109,.95));
  z-index:999;
}

/* =========================================================
   NAV (locked layout: left / center / right)
   ========================================================= */
nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  backdrop-filter: blur(14px);
  background: rgba(11,11,14,.70);
  border-bottom:1px solid var(--border);
}

.nav-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
}

.brand-mark{
  width:34px; height:34px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.02);
  display:flex;
  align-items:center;
  justify-content:center;
}

.brand-title{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-title b{
  letter-spacing:.3px;
  font-weight:600;
}
.brand-title span{
  font-size:12px;
  color:var(--muted2);
  margin-top:3px;
}

/* Desktop links centered, cannot push icons */
.nav-links{
  display:flex;
  align-items:center;
  gap:14px;

  margin-left:auto;
  margin-right:auto;

  min-width:0;
  max-width:calc(var(--max) - 360px);
  overflow:hidden;
}

.nav-links a{
  color:rgba(245,245,247,.78);
  font-size:13px;
  padding:9px 10px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.15s ease;
  white-space:nowrap;
}
.nav-links a:hover{
  color:rgba(245,245,247,.95);
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.06);
}
.nav-links a.active{
  background:rgba(201,169,109,.14);
  border-color:rgba(201,169,109,.28);
  color:rgba(245,245,247,.95);
}

/* Right side pinned */
.nav-right{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}

.icon-link,
.hamburger{
  width:44px; height:44px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.15s ease;
}

.icon-link:hover,
.hamburger:hover{
  background:rgba(255,255,255,.06);
  border-color:var(--border2);
}

.hamburger{ cursor:pointer; }

.bars span{
  display:block;
  width:18px; height:2px;
  background:rgba(245,245,247,.92);
  margin:4px 0;
}

/* Mobile menu overlay */
.mobile-menu{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.62);
  opacity:0;
  pointer-events:none;
  transition:.18s ease;
  z-index:999;
}
.mobile-menu.open{
  opacity:1;
  pointer-events:auto;
}

.menu-card{
  position:absolute;
  top:80px;
  right:16px;
  width:min(420px, 92vw);
  padding:10px;
  border-radius:18px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(17,17,20,.96), rgba(11,11,14,.96));
  box-shadow:var(--shadow);
}

.menu-card a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 12px;
  border-radius:14px;
  color:rgba(245,245,247,.86);
  border:1px solid transparent;
  transition:.12s ease;
}
.menu-card a:hover{
  background:rgba(255,255,255,.05);
}
.menu-card a.active{
  background:rgba(201,169,109,.12);
  border-color:rgba(201,169,109,.25);
}

.menu-meta{
  margin-top:10px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:var(--muted2);
  font-size:12px;
  line-height:1.5;
}

/* Responsive */
@media (max-width: 980px){
  .nav-links{ display:none; }
}

/* =========================================================
   LAYOUT + HERO
   ========================================================= */
.header{
  padding:120px 16px 36px;
}
.wrap{
  max-width:var(--max);
  margin:0 auto;
}
.hero{
  padding:26px 0 10px;
  position:relative;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:rgba(245,245,247,.78);
  font-size:13px;
}
.kicker em{
  font-style:normal;
  color:rgba(201,169,109,.95);
  opacity:.9;
}
h1{
  font-family: "Playfair Display", serif;
  font-weight:600;
  letter-spacing:.2px;
  margin:18px 0 10px;
  font-size:clamp(34px, 5.8vw, 60px);
}
.lede{
  max-width:820px;
  color:var(--muted);
  line-height:1.75;
  font-size:15px;
  margin:0;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section{
  padding:46px 16px;
}
.section h2{
  font-size:20px;
  margin:0 0 6px;
  letter-spacing:.2px;
}
.sub{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.7;
  max-width:900px;
}

.hr{
  height:1px;
  background:rgba(255,255,255,.08);
  margin:28px 0 0;
}

.grid-2{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:14px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 980px){
  .grid-2{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns:1fr; }
}

/* Cards */
.card, .note{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--panel);
  box-shadow:var(--shadow);
  padding:16px;
}
.card h3{
  margin:8px 0 6px;
  font-size:16px;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}
.label{
  display:inline-block;
  font-size:12px;
  color:rgba(201,169,109,.92);
  letter-spacing:.3px;
  text-transform:uppercase;
  border:1px solid rgba(201,169,109,.25);
  background:rgba(201,169,109,.10);
  padding:6px 10px;
  border-radius:999px;
}

.note strong{ font-size:14px; }
.muted{ color:var(--muted2); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:rgba(245,245,247,.88);
  font-size:13px;
  transition:.15s ease;
}
.btn:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.18);
}
.btn.primary{
  background:#fff;
  color:#000;
  border-color:#fff;
}
.btn.primary:hover{ filter:brightness(.95); }

/* Lists */
.list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.li{
  display:flex;
  gap:12px;
  padding:14px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.tick{
  width:28px; height:28px;
  border-radius:999px;
  background:rgba(201,169,109,.14);
  border:1px solid rgba(201,169,109,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(201,169,109,.95);
  font-weight:700;
}

/* FAQ */
.faq details{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  padding:12px 14px;
}
.faq details + details{ margin-top:10px; }
.faq summary{
  cursor:pointer;
  font-weight:600;
  color:rgba(245,245,247,.90);
}
.faq p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.7;
}

/* Verification helpers */
.verify-row{
  display:flex;
  gap:10px;
  align-items:center;
  margin-top:10px;
}
.verify-row input{ flex:1; }

.input{
  width:100%;
  padding:14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.02);
  color:#fff;
  font-size:16px;
  outline:none;
}
.input:focus{
  border-color:rgba(201,169,109,.35);
  box-shadow:0 0 0 3px rgba(201,169,109,.10);
}
.result{
  margin-top:16px;
  display:none;
}
.result.show{ display:block; }

.status-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.status-pill.ok{
  border-color:rgba(139,212,156,.25);
  background:rgba(139,212,156,.10);
}
.status-pill.bad{
  border-color:rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}

.kvgrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:14px;
}
@media (max-width: 980px){
  .kvgrid{ grid-template-columns:1fr; }
}
.kv{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:14px;
  padding:12px;
}
.k{
  font-size:12px;
  color:var(--muted2);
}
.v{
  margin-top:4px;
  font-size:14px;
  color:rgba(245,245,247,.92);
}

/* Footer */
footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:34px 16px;
  color:var(--muted2);
}
.footer-row{
  margin-top:12px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.footer-pill{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  padding:10px 12px;
  border-radius:999px;
  font-size:12px;
  color:rgba(245,245,247,.75);
}

/* Simple reveal (subtle) */
.reveal{ opacity:1; transform:none; }
