:root{
  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #5a6477;
  --line: rgba(0,0,0,0.08);
  --primary: #ff7a59;
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; }

.wrap{
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 16px 56px;
}

.top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.brand{
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: transparent;
}
.logo-row{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-logo{
  width: 84px;
  height: 84px;
  object-fit: contain;
}
.brand-title{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand h1{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .2px;
}
.brand p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.nav{
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--card);
  border: 1px dashed rgba(255, 122, 89, 0.65);
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.pill:hover{ background: rgba(255, 122, 89, 0.06); }
.pill[aria-current="page"]{
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
}
.pill[aria-current="page"]:hover{
  background: #ff6a43;
  border-color: #ff6a43;
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
  padding: 18px 18px;
}

.card-illu{
  display: block;
  height: auto;
  object-fit: contain;
}
.card--cookies{
  position: relative;
  padding-right: 140px;
}
.card--cookies .card-illu--cookies{
  position: absolute;
  top: 12px;
  right: 0px;
  width: 358px;
}
.card--privacy{
  padding-right: 18px;
}
.card--privacy .card-illu--privacy{
  float: right;
  position: static;
  margin: 0 0 12px 18px;
  width: 358px;
}
.card--privacy::after{
  content: "";
  display: block;
  clear: both;
}
.card--terms{
  position: relative;
  padding-right: 390px;
}
.card--terms .card-illu--terms{
  position: absolute;
  top: 20px;
  right: 60px;
  width: 250px;
}
@media (max-width: 560px){
  .card--cookies{ padding-right: 18px; padding-top: 108px; }
  .card--cookies .card-illu--cookies{ width: 84px; top: 12px; right: 12px; }
  .card--privacy{ padding-right: 18px; padding-top: 18px; }
  .card--privacy .card-illu--privacy{
    float: none;
    display: block;
    width: min(180px, 60%);
    margin: 0 auto 12px;
  }
  .card--terms{ padding-right: 18px; padding-top: 210px; }
  .card--terms .card-illu--terms{ width: 180px; top: 12px; right: 12px; }
}

.card h2{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
}

.card h3{
  margin: 18px 0 8px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #374151;
}

.card p, .card li{
  color: #1f2937;
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.card p{ margin: 10px 0; }
.card ul{ margin: 8px 0 0; padding-left: 18px; }

.hint{
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.muted{
  color: var(--muted);
}

.k{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
  background: rgba(0,0,0,0.04);
  padding: 2px 6px;
  border-radius: 8px;
}
