/* Comflicated — Vice-inspired layout (original implementation)
   Yellow strip + black text. Small logo. Modern grotesk alternative. */

:root{
  --saul:#FFCC00;
  --ink:#0a0a0a;
  --bg:#ffffff;
  --line:rgba(0,0,0,.12);
  --muted:rgba(0,0,0,.65);
  --shadow: 0 14px 35px rgba(0,0,0,.12);
  --radius:18px;
  --max:1120px;
  --font:'Space Grotesk', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{box-sizing:border-box}
html,body{margin:0; padding:0}
body{font-family:var(--font); background:var(--bg); color:var(--ink)}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* Top strip */
.topstrip{
  background:var(--saul);
  border-bottom:1px solid rgba(0,0,0,.18);
}
.strip-inner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:10px 0;
}
.strip-left{display:flex; align-items:center; gap:10px; min-width:0}
.strip-pill{
  font-weight:700;
  border:1px solid rgba(0,0,0,.25);
  padding:4px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.28);
}
.strip-text{
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.strip-right{display:flex; gap:12px; align-items:center}
.strip-link{font-weight:700}
.strip-link:hover{text-decoration:underline}

/* Header */
.header{
  position:sticky; top:0; z-index:30;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:12px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.logo{
  width:24px; height:24px;
  border-radius:6px;
  object-fit:cover;
}
.brandname{
  font-weight:800;
  letter-spacing:.06em;
  font-size:16px;
}
.nav{display:flex; gap:16px; align-items:center}
.nav a{font-weight:700; color:rgba(0,0,0,.78)}
.nav a:hover{color:#000; text-decoration:underline}

.lang{position:relative}
.lang-btn{
  border:1px solid var(--line);
  background:transparent;
  padding:8px 10px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
}
.lang-menu{
  position:absolute; right:0; top:44px;
  display:none;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  box-shadow:var(--shadow);
  min-width:180px;
}
.lang.open .lang-menu{display:block}
.lang-menu button{
  width:100%;
  text-align:left;
  padding:10px 12px;
  border:0;
  background:transparent;
  font-weight:700;
  cursor:pointer;
}
.lang-menu button:hover{background:rgba(0,0,0,.04)}

/* Hero */
.hero{
  padding:34px 0 10px;
  border-bottom:1px solid var(--line);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
}
.kicker{
  font-weight:700;
  color:rgba(0,0,0,.72);
  margin-bottom:10px;
}
h1{
  margin:0 0 10px;
  font-size:44px;
  line-height:1.05;
}
.lead{
  margin:0 0 16px;
  color:rgba(0,0,0,.75);
  font-weight:600;
  line-height:1.6;
}
.cta{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  border:1px solid var(--line);
}
.btn-black{background:#000; color:#fff; border-color:#000}
.btn-black:hover{opacity:.92}
.btn-outline{background:transparent}
.btn-outline:hover{background:rgba(0,0,0,.03)}
.btn-block{width:100%}

.fineprint{margin:14px 0 0; font-size:12px; color:rgba(0,0,0,.62); font-weight:600}

.feature-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  background:linear-gradient(180deg, rgba(255,204,0,.22), rgba(255,255,255,1));
}
.tagrow{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px}
.tag{
  font-size:12px;
  font-weight:800;
  padding:4px 8px;
  border-radius:999px;
  background:#000;
  color:#fff;
}
.tag.ghost{
  background:transparent;
  color:#000;
  border:1px solid rgba(0,0,0,.2);
}
.feature-title{margin:0 0 8px; font-size:22px; line-height:1.15}
.feature-excerpt{margin:0 0 10px; color:rgba(0,0,0,.75); font-weight:600; line-height:1.55}
.meta{color:rgba(0,0,0,.62); font-weight:700; font-size:12px; display:flex; gap:8px; flex-wrap:wrap}

/* Sections */
.section{padding:26px 0}
.section.alt{background:rgba(255,204,0,.16); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:14px}
.section-head h2{margin:0; font-size:22px}
.muted{color:var(--muted)}
.small{font-size:12px}

.section-actions{display:flex; gap:8px; flex-wrap:wrap}
.chip{
  border:1px solid rgba(0,0,0,.18);
  background:#fff;
  border-radius:999px;
  padding:7px 10px;
  font-weight:800;
  cursor:pointer;
}
.chip.is-active{background:#000; color:#fff; border-color:#000}

/* Article grid */
.grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}
.card{
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  background:#fff;
  box-shadow:var(--shadow);
}
.card-top{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px}
.card h3{margin:0 0 8px; font-size:16px; line-height:1.25}
.card p{margin:0 0 10px; color:rgba(0,0,0,.72); font-weight:600; line-height:1.55}

/* News */
.newsgrid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.newsitem{
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  background:#fff;
  box-shadow:var(--shadow);
}
.newstitle{font-weight:800; margin-bottom:6px}

/* Simulator */
.sim-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.form{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  padding:14px;
  box-shadow:var(--shadow);
}
.row2{display:grid; grid-template-columns:1fr 1fr; gap:12px}
label{display:flex; flex-direction:column; gap:8px; font-weight:800; font-size:13px; margin-bottom:12px}
input, select, textarea{
  border:1px solid rgba(0,0,0,.18);
  border-radius:14px;
  padding:10px 12px;
  font:inherit;
}
fieldset{
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  padding:12px;
  margin:0 0 12px;
}
legend{font-weight:900; padding:0 6px}
.checks{display:grid; grid-template-columns:1fr 1fr; gap:8px}
.checks label{flex-direction:row; align-items:center; gap:8px; margin:0; font-weight:700}
.other{margin-top:10px}

.form-note{margin-top:10px; font-weight:800; font-size:13px}
.form-note.ok{color:rgba(0,128,0,.95)}
.form-note.bad{color:rgba(170,0,0,.95)}
.legal-note{margin-top:10px; font-size:12px; color:rgba(0,0,0,.62); font-weight:650}

.preview{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  padding:14px;
  box-shadow:var(--shadow);
}
.preview-head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; border-bottom:1px solid var(--line); padding-bottom:10px; margin-bottom:10px}
.preview-title{font-weight:900}
.mini-badges{display:flex; gap:6px; flex-wrap:wrap}
.badge{
  font-size:12px;
  font-weight:900;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.18);
  background:rgba(255,204,0,.22);
}
.preview-body{
  font-weight:650;
  color:rgba(0,0,0,.75);
  line-height:1.55;
  white-space:pre-wrap;
}

/* Pricing */
.prices{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.price{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  padding:14px;
  box-shadow:var(--shadow);
}
.price-top{display:flex; justify-content:space-between; align-items:baseline; margin-bottom:10px}
.price-name{font-weight:900; font-size:18px}
.price-amt{font-weight:900}
.price ul{margin:0 0 12px; padding-left:18px; color:rgba(0,0,0,.74); font-weight:650}
.price li{margin:8px 0}
.price.featured{border-color:#000}
.footerline{margin-top:18px; display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.credo{font-weight:900}

/* Responsive */
@media (max-width: 980px){
  .grid{grid-template-columns:repeat(2, 1fr)}
  .newsgrid{grid-template-columns:1fr}
  .hero-grid{grid-template-columns:1fr}
  .sim-grid{grid-template-columns:1fr}
  .nav{display:none}
}
@media (max-width: 520px){
  h1{font-size:34px}
  .row2{grid-template-columns:1fr}
  .checks{grid-template-columns:1fr}
}
