:root{
  --bg:#0b0b0f;
  --card:rgba(255,255,255,.06);
  --border:rgba(255,255,255,.12);
  --text:#ffffff;
  --muted:rgba(255,255,255,.82);
  --muted2:rgba(255,255,255,.68);
  --accent:#ff8a00;
  --shadow:0 18px 40px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
}
a{
  color:var(--accent);
  text-decoration:none;
  font-weight:800;
}
a:hover{text-decoration:underline}
.wrap{
  max-width:980px;
  margin:0 auto;
  padding:32px 18px 64px;
}
.top{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  flex-wrap:wrap;
}
.lang-switcher{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 18px;
}
.lang-pill{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.88);
  font-weight:800;
  font-size:13px;
}
.lang-pill.active{
  background:rgba(255,138,0,.12);
  border-color:rgba(255,138,0,.32);
  color:#ffd6a3;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow);
}
.grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.hero h1{
  margin:0 0 8px;
  font-size:30px;
  letter-spacing:.2px;
}
.hero p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}
.pill{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  margin:0 0 10px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(255,138,0,.24);
  background:rgba(255,138,0,.10);
  color:#ffd6a3;
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
  text-transform:uppercase;
}
.sub{
  margin:0 0 12px;
  color:var(--muted2);
  font-weight:800;
  line-height:1.55;
}
.lead{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.8;
}
.note{
  color:var(--muted2);
  font-size:12.5px;
  line-height:1.65;
}
.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  border-radius:12px;
  border:1px solid var(--accent);
  background:var(--accent);
  color:#151515;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(255,138,0,.18);
}
.btn:hover{
  text-decoration:none;
  filter:brightness(1.03);
}
.btn.secondary{
  background:transparent;
  color:var(--accent);
  box-shadow:none;
}
.info-box{
  margin-top:12px;
  padding:12px 14px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.92);
  word-break:break-word;
}
.section{
  margin-top:16px;
}
.delete-section h2{
  margin:0 0 10px;
  font-size:18px;
}
.delete-section p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.75;
}
.delete-section ul,.delete-section ol{
  margin:10px 0 0;
  padding-left:18px;
}
.delete-section li{
  margin:7px 0;
  color:var(--muted);
  line-height:1.75;
}
.doc-card h2{
  margin:0 0 8px;
  font-size:18px;
}
.doc-card p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.7;
}
.doc-card .cta{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid var(--accent);
  background:rgba(255,138,0,.1);
}
.doc{
  background:transparent;
  border:none;
  box-shadow:none;
  padding:0;
}
.doc h1{
  margin:0 0 8px;
  font-size:28px;
  letter-spacing:.2px;
}
.doc h2{
  margin:24px 0 10px;
  font-size:19px;
}
.doc h3{
  margin:16px 0 8px;
  font-size:15px;
  color:rgba(255,255,255,.92);
}
.doc p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.75;
}
.doc ul,.doc ol{
  margin:10px 0 14px;
  padding-left:18px;
}
.doc li{
  margin:7px 0;
  color:var(--muted);
  line-height:1.75;
}
.doc code{
  padding:1px 6px;
  border-radius:8px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
}
.divider{
  height:1px;
  background:rgba(255,255,255,.10);
  margin:18px 0;
  border:0;
}
.locale-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:12px;
}
.locale-card{
  display:block;
  min-height:72px;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background:var(--card);
  box-shadow:var(--shadow);
}
.locale-card strong{
  display:block;
  color:#fff;
  margin-bottom:4px;
}
.locale-card span{
  color:var(--muted2);
  font-size:13px;
}
.hero-copy{
  max-width:720px;
}
.kicker{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  margin:0 0 12px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(255,138,0,.24);
  background:rgba(255,138,0,.10);
  color:#ffd6a3;
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
  text-transform:uppercase;
}
.home-subtitle{
  margin:0 0 10px;
  color:#fff;
  font-size:18px;
  font-weight:800;
  line-height:1.55;
}
.home-blurb{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}
.action-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.home-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}
.home-card h2{
  margin:0 0 8px;
  font-size:18px;
}
.home-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}
.footer-note{
  margin-top:18px;
  color:var(--muted2);
  font-size:12.5px;
  line-height:1.65;
}
@media (max-width:760px){
  .grid{grid-template-columns:1fr}
  .home-grid{grid-template-columns:1fr}
  .hero h1,.doc h1{font-size:26px}
}