/* PGT1 shared styles (generated) */
:root{
  --bg0:#050816;
  --bg1:#071026;
  --card:rgba(14,24,51,.70);
  --card2:rgba(14,24,51,.55);
  --line:rgba(234,240,255,.18);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --muted2:rgba(234,240,255,.55);
  --accent:#7c5cff;
  --accent2:#00e5ff;
  --good:#00d07a;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:22px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Rubik", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(800px 500px at 20% 10%, rgba(124,92,255,.22), transparent 55%),
    radial-gradient(800px 500px at 80% 20%, rgba(0,229,255,.16), transparent 55%),
    radial-gradient(900px 600px at 50% 90%, rgba(0,208,122,.10), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{color:inherit; text-decoration:none}
a:focus{outline:2px solid rgba(124,92,255,.55); outline-offset:3px; border-radius:10px}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:saturate(1.2) blur(10px);
  background: rgba(5,8,22,.75);
  border-bottom:1px solid rgba(234,240,255,.10);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand strong{
  display:block;
  font-size:16px;
  line-height:1.1;
}
.brand span{
  display:block;
  font-size:12px;
  color:var(--muted2);
  margin-top:2px;
}

.logo{
  width:38px; height:38px;
  border-radius:14px;
  background:
    radial-gradient(10px 10px at 30% 30%, rgba(255,255,255,.85), transparent 55%),
    radial-gradient(14px 14px at 70% 60%, rgba(0,229,255,.75), transparent 60%),
    radial-gradient(24px 24px at 40% 70%, rgba(124,92,255,.85), transparent 60%),
    linear-gradient(135deg, rgba(124,92,255,.65), rgba(0,229,255,.35));
  border:1px solid rgba(234,240,255,.18);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}

.site-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}
.site-nav a{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(234,240,255,.14);
  background: rgba(14,24,51,.35);
  font-size:13px;
  color:var(--muted);
}
.site-nav a:hover{
  border-color:rgba(124,92,255,.35);
  background: rgba(124,92,255,.10);
}

.hero{
  padding:28px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 7fr 5fr;
  gap:16px;
}
.hero-card{
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background: var(--card2);
  box-shadow: var(--shadow);
  padding:18px;
}
.hero-main h1{
  margin:10px 0 8px;
  font-size:36px;
  letter-spacing:-.02em;
}
.hero-main p{color:var(--muted); margin:0 0 10px; line-height:1.55}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(234,240,255,.14);
  background: rgba(14,24,51,.45);
  color:var(--muted);
  font-size:12px;
}
.dot{
  width:9px; height:9px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.2));
  box-shadow: 0 0 0 4px rgba(124,92,255,.12), 0 0 20px rgba(124,92,255,.30);
}
.kicker{letter-spacing:.03em}

.divider{
  height:1px;
  background: rgba(234,240,255,.10);
  margin:14px 0;
}

.small{font-size:14px; color:var(--muted); line-height:1.6}
.small h1,.small h2,.small h3{margin:0 0 8px}
.small p{margin:0 0 10px}

.notice{
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(0,229,255,.18);
  background: rgba(0,229,255,.07);
  color:var(--muted);
  font-size:13px;
}

.stat{
  border-radius:16px;
  border:1px solid rgba(234,240,255,.12);
  background: rgba(14,24,51,.42);
  padding:12px;
  margin-bottom:12px;
}
.stat strong{display:block; margin-bottom:4px}
.stat p{margin:0; color:var(--muted); font-size:13px; line-height:1.45}

.section{padding:18px 0}
.section-title{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.section-title h2{margin:0; font-size:20px}
.section-title .small{margin:0}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.col-4{grid-column: span 4}
.col-5{grid-column: span 5}
.col-6{grid-column: span 6}
.col-7{grid-column: span 7}
.col-8{grid-column: span 8}
.col-12{grid-column: span 12}

.card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background: var(--card);
  padding:16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.55}
.icon{
  width:42px; height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  margin-bottom:10px;
  border:1px solid rgba(234,240,255,.14);
  background: rgba(124,92,255,.12);
  color: var(--text);
}
.icon svg{width:22px; height:22px}

.list{display:flex; flex-direction:column; gap:10px}
.item{display:flex; gap:10px; align-items:flex-start}
.check{
  width:18px; height:18px;
  border-radius:8px;
  margin-top:2px;
  background: rgba(0,208,122,.14);
  border:1px solid rgba(0,208,122,.22);
  position:relative;
}
.check:after{
  content:"";
  position:absolute;
  width:8px; height:4px;
  border-left:2px solid rgba(234,240,255,.9);
  border-bottom:2px solid rgba(234,240,255,.9);
  transform: rotate(-45deg);
  top:5px; left:4px;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(234,240,255,.16);
  background: rgba(14,24,51,.45);
  color:var(--text);
  font-weight:700;
  font-size:13px;
}
.btn:hover{border-color:rgba(124,92,255,.35); background: rgba(124,92,255,.12)}
.btn-primary{
  border-color:rgba(124,92,255,.45);
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,229,255,.45));
}
.btn-primary:hover{filter:brightness(1.02)}
.btn-ghost{background: rgba(14,24,51,.28)}

.page{padding:22px 0}
.page-hero{margin:6px 0 14px}
.page-hero h1{margin:10px 0 0; font-size:28px}
.prose h2,.prose h3{margin-top:16px}
.prose p, .prose{color:var(--muted); line-height:1.65}
.prose strong{color:var(--text)}

.footer{
  margin-top:26px;
  padding:18px 0 22px;
  border-top:1px solid rgba(234,240,255,.10);
  background: rgba(5,8,22,.65);
}
.footer-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer .muted{color:var(--muted2); font-size:12px}
.footer .links{display:flex; gap:12px; flex-wrap:wrap}
.footer .links a{color:var(--muted); font-size:12px}
.footer .links a:hover{color:var(--text)}

@media (max-width: 940px){
  .hero-grid{grid-template-columns: 1fr}
  .hero-main h1{font-size:30px}
}
@media (max-width: 720px){
  .col-4,.col-5,.col-6,.col-7,.col-8{grid-column: span 12}
  .header-row{flex-direction:column; align-items:flex-start}
  .site-nav{justify-content:flex-start}
}
