:root{
  --bg: #f6f5f2;
  --card: #ffffff;
  --text: #1f2328;
  --muted: #5a646e;
  --line: rgba(31,35,40,.12);
  --shadow: 0 18px 55px rgba(31,35,40,.10);
  --badge: #fbfaf7;
  --badge2: #f1efe9;
}

*{ 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;
  color: var(--text);
  background:
    radial-gradient(1100px 650px at 20% 10%, rgba(31,35,40,.06), transparent 55%),
    radial-gradient(900px 500px at 90% 30%, rgba(31,35,40,.05), transparent 55%),
    var(--bg);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px;
}

.wrap{ width:min(980px, 100%); }

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 0;
}

.logo-badge{
  width: 72px;
  height: 72px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 30% 25%, var(--badge), var(--badge2));
  box-shadow: 0 10px 25px rgba(31,35,40,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex: 0 0 auto;
}

.logo-badge img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.brandtext{ line-height: 1.1; min-width:0; }
.brandname{
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 16px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.brandsub{
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.right{
  display:flex;
  align-items:center;
  gap: 10px;
}

.pill{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(250,250,250,.9);
  white-space: nowrap;
  flex: 0 0 auto;
}

.lang-toggle{
  display:inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow:hidden;
  background: rgba(250,250,250,.9);
}

.lang-toggle button{
  border: 0;
  background: transparent;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}

.lang-toggle button[aria-pressed="true"]{
  background: rgba(31,35,40,.06);
  color: var(--text);
  font-weight: 650;
}

.content{
  padding: 28px 22px 22px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}
@media (max-width: 820px){
  .content{ grid-template-columns: 1fr; }
  .pill{ display:none; }
}

h1{
  margin: 0 0 10px 0;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: -0.6px;
}
p{
  margin: 0 0 14px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.panel{
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(246,245,242,.55);
  padding: 18px;
}
.panel h2{
  margin: 0 0 12px 0;
  font-size: 14px;
  letter-spacing: .2px;
  text-transform: uppercase;
  color: var(--muted);
}
.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.cta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.btn{
  appearance:none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.9);
  color: var(--text);
  padding: 11px 14px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 650;
  display:inline-flex;
  align-items:center;
  gap: 10px;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

.footer{
  padding: 16px 22px 20px;
  border-top: 1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
}
.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
}
