/* PRINSPORT - Static site
   Keep it simple: single CSS file, no build step.
*/

:root{
  --bg:#0b0f14;
  --bg2:#0f1720;
  --card:#111a24;
  --text:#e9f0f7;
  --muted:#a6b4c3;
  --line:rgba(255,255,255,.08);
  --brand:#00e58b;
  --brand2:#00b36b;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1100px 600px at 30% 10%, rgba(0,229,139,.20), transparent 60%),
              radial-gradient(900px 500px at 80% 30%, rgba(0,229,139,.12), transparent 60%),
              linear-gradient(180deg, var(--bg) 0%, #070a0e 100%);
  color:var(--text);
  line-height:1.45;
}

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

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.65);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brandImg{width:34px;height:34px;border-radius:50%;object-fit:cover;box-shadow:0 10px 30px rgba(0,229,139,.25)}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.6px}
.brandMark{
  width:18px; height:18px; border-radius:6px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%);
  box-shadow: 0 10px 30px rgba(0,229,139,.25);
}
.brandText{font-size:14px}
.navLinks{display:flex; gap:18px; color:var(--muted); font-weight:600}
.navLinks a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  transition: transform .08s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.16)}
.btn:active{transform: translateY(0)}
.btn-primary{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%);
  border-color: transparent;
  color:#06110b;
}
.btn-primary:hover{filter: brightness(1.02)}
.btn-ghost{
  background: rgba(255,255,255,.02);
}
.btn-small{padding:10px 12px; border-radius:12px; font-size:13px}

.hero{padding:56px 0 26px}
.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 920px){
  .heroGrid{grid-template-columns:1fr; }
  .navLinks{display:none}
}

.pill{
  display:inline-flex; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(0,229,139,.28);
  background: rgba(0,229,139,.08);
  color:#bdfde5;
  font-weight:700;
  font-size:13px;
}

h1{margin:14px 0 10px; font-size:44px; line-height:1.05}
@media (max-width: 520px){h1{font-size:36px}}
.lead{color:var(--muted); font-size:18px; margin:0 0 18px}

.heroCtas{display:flex; flex-wrap:wrap; gap:10px; margin:16px 0 18px}

.miniStats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top: 8px;
}
@media (max-width: 520px){.miniStats{grid-template-columns:1fr}}
.miniCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
  padding:12px 12px;
}
.miniLabel{color:var(--muted); font-size:12px; font-weight:700; letter-spacing:.4px}
.miniValue{font-weight:800; margin-top:4px}

.heroCard{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex; flex-direction:column;
}
.cardTop{
  padding:16px 16px 10px;
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:12px;
  border-bottom:1px solid var(--line);
}
.badge{
  padding:6px 10px;
  border-radius:999px;
  background: rgba(0,229,139,.12);
  border:1px solid rgba(0,229,139,.28);
  color:#bdfde5;
  font-weight:800;
  font-size:12px;
}
.cardBody{padding:16px}
.priceBox{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
  background: rgba(0,0,0,.16);
  margin-bottom:14px;
}
.priceLabel{color:var(--muted); font-weight:800; font-size:12px; letter-spacing:.4px}
.priceValue{font-size:28px; font-weight:900; margin-top:6px}
.priceHint{margin-top:6px}

.grid2{display:grid; grid-template-columns:1fr 1fr; gap:10px}
@media (max-width: 520px){.grid2{grid-template-columns:1fr}}
.info{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:12px;
  background: rgba(255,255,255,.02);
}
.infoLabel{color:var(--muted); font-size:12px; font-weight:800}
.infoValue{font-weight:800; margin-top:4px}

.cardFooter{
  padding:14px 16px;
  border-top:1px solid var(--line);
  display:flex; gap:10px; justify-content:flex-end;
}

.section{padding:42px 0}
.section.alt{background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,0) 100%)}
h2{font-size:28px; margin:0 0 10px}
.muted{color:var(--muted)}
.small{font-size:13px}

.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top: 14px;
}
@media (max-width: 920px){.cards3{grid-template-columns:1fr}}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius2);
  padding:16px;
}
.card h3{margin:0 0 8px}
.codeRow{
  display:flex; gap:10px; align-items:center;
  margin-top: 10px;
}
code{
  display:block;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  background: rgba(0,0,0,.18);
  overflow:auto;
  max-width:100%;
}
.copyBtn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  font-weight:800;
  cursor:pointer;
}

.twoCol{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  margin-top: 12px;
}
@media (max-width: 920px){.twoCol{grid-template-columns:1fr}}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}

.callout{
  border:1px solid rgba(0,229,139,.22);
  background: rgba(0,229,139,.06);
  border-radius: var(--radius2);
  padding:16px;
}

.note{
  margin-top:14px;
  border:1px dashed rgba(255,255,255,.18);
  border-radius: var(--radius2);
  padding:14px;
  background: rgba(255,255,255,.02);
  color: var(--muted);
}

.faq{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  padding:14px 16px;
  background: rgba(255,255,255,.02);
  margin-top: 10px;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
}
.faq p{margin:10px 0 0}

.footer{
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  background: rgba(0,0,0,.14);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap:16px;
  align-items:start;
}
@media (max-width: 920px){
  .footerGrid{grid-template-columns:1fr; gap:10px}
}
.brandFooter{display:flex; align-items:center; gap:10px; font-weight:900}
.footerLinks{display:flex; gap:14px; color:var(--muted); font-weight:700; justify-content:center}
.footerLinks a:hover{color:var(--text)}
.footerDisclaimer{text-align:right}
@media (max-width: 920px){.footerDisclaimer{text-align:left}}


/* PRIN logo */
.brandLogo{width:34px;height:34px;border-radius:50%;object-fit:cover;border:1px solid rgba(255,255,255,.18);background:#0b1220;}
