/* Landing-style marketing & legal pages — match Disban home */
:root {
  color-scheme: dark;
  --bg: #06070b;
  --bg-deep: #05060a;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --muted-2: rgba(255, 255, 255, 0.4);
  --link: #c4b5fd;
  --border: rgba(255, 255, 255, 0.1);
  --violet: #8b5cf6;
  --violet-soft: rgba(139, 92, 246, 0.15);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family:
    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: #fff; }

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.site-shell::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% -10%, rgba(139, 92, 246, 0.18), transparent 55%),
    radial-gradient(ellipse 45% 35% at 90% 5%, rgba(14, 165, 233, 0.12), transparent 50%);
  z-index: 0;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 7, 11, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-weight: 650;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  object-fit: contain;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.site-nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 550;
  text-decoration: none;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.btn-ghost {
  border: 1px solid rgba(244, 63, 94, 0.4);
  background: rgba(244, 63, 94, 0.1);
  color: #fecdd3;
}
.btn-ghost:hover {
  background: rgba(244, 63, 94, 0.2);
  color: #fff;
}
.btn-primary {
  border: 1px solid transparent;
  background: #8b5cf6;
  color: #fff;
  box-shadow: 0 8px 24px -10px rgba(139, 92, 246, 0.55);
}
.btn-primary:hover {
  background: #a78bfa;
  color: #fff;
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

/* —— Main —— */
.site-main {
  position: relative;
  z-index: 1;
  flex: 1;
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  padding: 2.5rem 0 4rem;
}

.breadcrumbs {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  color: var(--muted-2);
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}
.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
}
.breadcrumbs a { color: var(--link); }
.breadcrumbs a:hover { color: #fff; }

.page-hero {
  margin-bottom: 2.5rem;
  max-width: 46rem;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 750;
}
.page-hero .lead {
  margin: 1.1rem 0 0;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--muted);
}
.page-hero .lead + .lead {
  margin-top: 0.75rem;
}

.content-grid {
  display: grid;
  gap: 1.25rem;
}

.content-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  padding: 1.5rem 1.6rem;
  box-shadow: 0 24px 60px -40px rgba(0, 0, 0, 0.8);
}
.content-card h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
  font-weight: 650;
}
.content-card p,
.content-card li {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.02rem;
  line-height: 1.65;
}
.content-card p { margin: 0 0 0.85rem; }
.content-card p:last-child { margin-bottom: 0; }
.content-card ul,
.content-card ol {
  margin: 0.25rem 0 0.5rem;
  padding-left: 1.2rem;
}
.content-card li { margin: 0.35rem 0; }

.note {
  border-left: 3px solid rgba(167, 139, 250, 0.55);
  padding: 0.75rem 1rem;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 0 14px 14px 0;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.95rem !important;
}

.cta-row { margin: 1rem 0 0.25rem; }
a.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(167, 139, 250, 0.45);
  background: rgba(139, 92, 246, 0.14);
  color: #c4b5fd;
  font-size: 0.92rem;
  font-weight: 550;
}
a.cta:hover {
  background: rgba(139, 92, 246, 0.25);
  color: #fff;
}

.related {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}
.related h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}
.related p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--muted);
}
.related a { color: var(--link); }
.related a:hover { color: #fff; }

.legal-meta {
  color: var(--muted-2);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

/* —— Footer —— */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-deep);
  padding: 3.5rem 0 2rem;
}
.site-footer__inner {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.site-footer h2 {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  font-weight: 650;
  color: #fff;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li { margin: 0.45rem 0; }
.site-footer a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}
.site-footer a:hover { color: #fff; }
.site-footer .brand { margin-bottom: 0.75rem; }
.site-footer .blurb {
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}
.site-footer .copy {
  margin: 1.5rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}
.site-footer__legal {
  width: min(1280px, calc(100% - 48px));
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
}
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__legal a:hover { color: #fff; }

@media (max-width: 960px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .site-header__inner {
    width: min(1280px, calc(100% - 32px));
    height: 80px;
  }
  .site-main,
  .site-footer__inner,
  .site-footer__legal {
    width: min(1280px, calc(100% - 32px));
  }
  .site-nav { display: none; }
  .btn-ghost { display: none; }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
@media (min-width: 900px) {
  .site-nav { display: flex; }
}
