:root {
  --text: #f8fbff;
  --muted: rgba(248, 251, 255, .9);
  --accent: #e6f5ff;
  --panel: rgba(18, 42, 62, .72);
  --border: rgba(255,255,255,.2);
  --heading: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body { background: #173049; color: var(--text); font-family: Inter, Arial, Helvetica, sans-serif; }
.background {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(20,43,62,.26) 0%, rgba(20,43,62,.6) 58%, rgba(20,43,62,.78) 100%),
    url('assets/images/hero-occasia-home.webp') center / cover no-repeat;
  transform: scale(1.01);
}
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(24px, 5vw, 72px);
}
.portal-card {
  width: min(980px, 100%);
  margin: auto;
  padding: clamp(34px, 6vw, 76px);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 32px;
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}
.portal-header { text-align: center; }
.brand {
  margin: 0 0 24px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow {
  margin: 0 0 18px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
h1 {
  margin: 0 auto;
  max-width: 860px;
  color: var(--heading);
  font-size: clamp(2.55rem, 6.4vw, 5.6rem);
  line-height: .99;
  letter-spacing: -.04em;
}
.lead {
  max-width: 810px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.76;
}
.article-body {
  max-width: 800px;
  margin: clamp(44px, 7vw, 72px) auto 0;
  padding-top: clamp(38px, 5vw, 56px);
  border-top: 1px solid var(--border);
  text-align: left;
}
.article-body h2 {
  margin: 2.2em 0 .65em;
  color: var(--heading);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.22;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.86;
}
@media (max-width: 700px) {
  .page { padding: 14px; }
  .portal-card { padding: 30px 22px 38px; border-radius: 22px; }
  .brand { margin-bottom: 20px; }
  .lead { line-height: 1.66; }
  .article-body { margin-top: 38px; padding-top: 32px; }
  .article-body p { line-height: 1.72; }
}
