:root{
  --bg: #f4f5f7;
  --panel: #ffffff;
  --panel2:#f7f7f8;
  --text: #111827;
  --muted:#4b5563;
  --brand:#facc15;   /* yellow */
  --brand2:#f59e0b;  /* amber */
  --ok:#16a34a;
  --warn:#f59e0b;
  --danger:#ef4444;
  --border: rgba(17,24,39,.12);
  --shadow: 0 10px 26px rgba(17,24,39,.10);
  --radius: 16px;
  --max: 1120px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding: 24px;}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-inner{
  display:flex; gap:16px; align-items:center; justify-content:space-between;
  padding:14px 24px; max-width:var(--max); margin:0 auto;
}
.brand{display:flex; align-items:center; gap:12px; font-weight:800; letter-spacing:.2px;}
.logo{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, rgba(250,204,21,.95), rgba(245,158,11,.95));
  box-shadow: 0 10px 22px rgba(245,158,11,.22);
  position:relative;
}
.logo:after{
  content:"";
  position:absolute; inset:10px;
  border-radius:10px;
  background: rgba(17,24,39,.12);
  box-shadow: inset 0 0 0 1px rgba(17,24,39,.12);
}

.nav-links{display:flex; gap:8px; align-items:center; flex-wrap:wrap}
.nav-links a{
  color: var(--muted);
  padding:8px 10px;
  border-radius:10px;
}
.nav-links a:hover{
  background: rgba(17,24,39,.06);
  color: var(--text);
}
.nav-links a[aria-current="page"]{
  background: rgba(17,24,39,.06);
  color: var(--text);
  font-weight:700;
}

/* BUTTONS */
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  background: linear-gradient(180deg, rgba(250,204,21,.98), rgba(245,158,11,.98));
  color:#111827; font-weight:900;
  box-shadow: 0 10px 20px rgba(245,158,11,.20);
  border: 1px solid rgba(245,158,11,.35);
}
.cta:hover{filter:saturate(1.05) brightness(1.02)}

.btn{
  width:100%;
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-weight:800;
  cursor:pointer;
  box-shadow: 0 8px 18px rgba(17,24,39,.06);
}
.btn:hover{background: rgba(17,24,39,.03)}

/* FORMS */
.label{font-size:13px; font-weight:800; color: var(--muted);}
.input{
  width:100%;
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-weight:700;
  box-shadow: 0 8px 18px rgba(17,24,39,.04);
}
.input:focus{outline:none; box-shadow: 0 0 0 4px rgba(245,158,11,.18)}

/* HERO */
.hero{padding: 44px 0 18px;}
.grid-hero{
  display:grid; grid-template-columns: 1.15fr .85fr;
  gap:22px; align-items:stretch
}
@media (max-width: 960px){.grid-hero{grid-template-columns:1fr}}

.h1{
  font-size: clamp(34px, 4.1vw, 56px);
  line-height:1.05;
  margin: 0 0 14px;
  letter-spacing: -.6px;
}
.sub{
  color: var(--muted);
  font-size: 16.5px;
  max-width: 62ch;
}

/* BADGES */
.badges{display:flex; flex-wrap:wrap; gap:10px; margin: 18px 0 22px}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 10px; border-radius:999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  box-shadow: 0 8px 16px rgba(17,24,39,.05);
}

/* CARDS */
.card{
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-pad{padding:18px}

.notice{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(245,158,11,.35);
  background: rgba(250,204,21,.18);
  color: rgba(17,24,39,.92);
}
hr.sep{border:0; border-top: 1px solid rgba(17,24,39,.10); margin: 14px 0}

/* KPI */
.kpis{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top: 14px}
@media (max-width: 620px){.kpis{grid-template-columns:1fr}}
.kpi{
  padding:14px;
  border-radius:14px;
  background:#ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 18px rgba(17,24,39,.06);
}
.kpi b{display:block; font-size:18px}
.kpi span{color:var(--muted); font-size:13px}

/* SECTIONS */
.section{padding: 22px 0}
.section h2{margin:0 0 10px; font-size: 26px}
.section p{margin:0 0 12px; color:var(--muted)}

/* FEATURES */
.features{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
@media (max-width: 960px){.features{grid-template-columns:1fr}}
.feature{padding:16px}

.icon{
  width:38px; height:38px; border-radius:14px;
  background: rgba(250,204,21,.20);
  border:1px solid rgba(245,158,11,.35);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:10px;
  font-family: var(--mono);
  color: rgba(17,24,39,.85);
}

/* STEPS */
.steps{display:grid; grid-template-columns: repeat(3,1fr); gap:14px}
@media (max-width: 960px){.steps{grid-template-columns:1fr}}
.step{padding:16px}
.step .num{
  width:34px; height:34px; border-radius:12px;
  background: rgba(250,204,21,.22);
  border: 1px solid rgba(245,158,11,.35);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:10px;
  font-weight:900;
  color: rgba(17,24,39,.88);
}

.split{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
@media (max-width: 960px){.split{grid-template-columns:1fr}}

/* PRICING */
.pricing{display:grid; grid-template-columns: repeat(3,1fr); gap:14px}
@media (max-width: 960px){.pricing{grid-template-columns:1fr}}
.price{padding:18px; position:relative; overflow:hidden;}
.price .tag{
  position:absolute; top:14px; right:14px;
  font-size:12px; color:#111827; font-weight:900;
  padding:6px 10px; border-radius:999px;
  background: rgba(250,204,21,.95);
  border:1px solid rgba(245,158,11,.35);
}
.price h3{margin:0 0 6px}
.amount{font-size:34px; font-weight:900; letter-spacing:-.6px}
.amount small{font-size:14px; color:var(--muted); font-weight:700}
.ul{margin:12px 0 14px; padding-left:18px; color:var(--muted)}
.ul li{margin:6px 0}

/* VIDEO */
.video-wrap{
  aspect-ratio:16/9;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background: #f3f4f6;
}
.video-wrap iframe{width:100%; height:100%; border:0}

/* FOOTER */
.footer{
  margin-top: 28px;
  border-top: 1px solid var(--border);
  background: #ffffff;
}
.footer-inner{
  max-width:var(--max);
  margin:0 auto;
  padding: 22px 24px;
  display:flex; gap:16px;
  justify-content:space-between;
  flex-wrap:wrap;
  color: var(--muted);
  font-size:13px
}
small.code{font-family:var(--mono); color:rgba(17,24,39,.65)}

/* PPB OVERRIDES: logo */
.logo{display:none !important;}
.brand{gap:10px !important;}
/* END PPB OVERRIDES */

/* PPB OVERRIDES: features */
.features .icon{
  display:none !important; /* remove 01/02/03 */
}
/* END PPB OVERRIDES */
