/* oversigtsportalen.com — Nordic Portal design system */
:root {
  --bg: #0a1228;
  --bg-elevated: #101a33;
  --surface: #152038;
  --surface-2: #1b2945;
  --line: rgba(126, 184, 232, 0.16);
  --text: #e8eef8;
  --text-muted: #8fa3bf;
  --cyan: #3ecfcf;
  --cyan-bright: #5eeceb;
  --sky: #7eb8e8;
  --amber: #f0c75e;
  --danger: #e85a6b;
  --success: #3ecf9a;
  --font-display: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Avenir Next", "Segoe UI", sans-serif;
  --max: 1140px;
  --radius: 1.125rem;
  --radius-sm: 0.75rem;
  --nav-h: 4.25rem;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(900px 480px at 8% -8%, rgba(62, 207, 207, 0.14), transparent 55%),
    radial-gradient(700px 420px at 100% 0%, rgba(126, 184, 232, 0.1), transparent 50%),
    var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--cyan); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--cyan-bright); }
button, input { font: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container { padding: 0 1.75rem; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.4rem;
  border-radius: 0.75rem;
  border: 1.5px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn--primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #2bb8c4 100%);
  color: #0a1228;
  box-shadow: 0 10px 28px rgba(62, 207, 207, 0.28);
}

.btn--primary:hover {
  transform: translateY(-1px);
  color: #0a1228;
  box-shadow: 0 14px 34px rgba(62, 207, 207, 0.36);
}

.btn--outline {
  background: transparent;
  border-color: rgba(232, 238, 248, 0.28);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.btn--sky {
  background: linear-gradient(135deg, var(--sky) 0%, #5a9fd4 100%);
  color: #0a1228;
  box-shadow: 0 10px 28px rgba(126, 184, 232, 0.25);
}

.btn--sky:hover { color: #0a1228; transform: translateY(-1px); }

/* Age gate */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    linear-gradient(160deg, rgba(10, 18, 40, 0.92), rgba(16, 26, 51, 0.88)),
    url("../images/section-bg.webp") center/cover;
}

.age-gate.is-hidden { display: none; }

.age-gate__card {
  width: min(100%, 440px);
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: rise 0.55s var(--ease);
}

.age-gate__badge {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, var(--cyan), var(--sky));
  color: #0a1228;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.age-gate__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.age-gate__lead { color: var(--text-muted); margin-bottom: 0.85rem; font-size: 0.95rem; }
.age-gate__list { margin: 0 0 1rem 1.1rem; list-style: disc; color: var(--text-muted); font-size: 0.9rem; }
.age-gate__list li { margin-bottom: 0.35rem; }
.age-gate__warning { font-size: 0.9rem; margin-bottom: 0.75rem; }
.age-gate__help { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.1rem; }
.age-gate__actions { display: flex; flex-direction: column; gap: 0.65rem; }
.age-gate__note { margin-top: 0.85rem; font-size: 0.78rem; color: var(--text-muted); text-align: center; }

@keyframes rise {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

/* Cookie */
.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9000;
  max-width: 520px;
  margin: 0 auto;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cookie-bar[hidden] { display: none !important; }
.cookie-bar__inner { display: flex; flex-direction: column; gap: 0.75rem; }
.cookie-bar p { font-size: 0.88rem; color: var(--text-muted); }
.cookie-bar__actions { display: flex; gap: 0.5rem; }

/* Bars */
.compliance-bar {
  background: #070e1c;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
}

.compliance-bar__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.compliance-bar__badge {
  flex-shrink: 0;
  background: var(--cyan);
  color: #0a1228;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.72rem;
  padding: 0.2rem 0.45rem;
  border-radius: 0.35rem;
}

.compliance-bar p { color: var(--text-muted); }
.compliance-bar a { color: var(--sky); }

.aff-bar {
  background: rgba(62, 207, 207, 0.08);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.aff-bar .container { padding-top: 0.55rem; padding-bottom: 0.55rem; }
.aff-bar p { color: var(--text-muted); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  height: var(--nav-h);
  backdrop-filter: blur(14px);
  background: rgba(10, 18, 40, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.site-logo:hover { color: var(--text); }
.site-logo span { color: var(--cyan); }
.site-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(244, 247, 251, 0.35), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a:hover { color: var(--cyan); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle svg { width: 1.25rem; height: 1.25rem; }

.mobile-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 799;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: rgba(10, 18, 40, 0.97);
  border-bottom: 1px solid var(--line);
  overflow-y: auto;
}

.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 0.85rem 0.5rem;
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 18, 40, 0.35) 0%, rgba(10, 18, 40, 0.72) 48%, rgba(10, 18, 40, 0.96) 100%),
    linear-gradient(90deg, rgba(10, 18, 40, 0.55) 0%, transparent 55%);
}

.hero__content {
  padding: 5.5rem 0 3.5rem;
  max-width: 640px;
  animation: rise 0.7s var(--ease);
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
}

.hero__brand img {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  box-shadow: 0 0 0 2px rgba(244, 247, 251, 0.4), 0 8px 24px rgba(62, 207, 207, 0.28);
}

.hero__brand em {
  font-style: normal;
  color: var(--cyan);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.6vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero__lead {
  color: rgba(232, 238, 248, 0.82);
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  font-size: 0.88rem;
  color: rgba(232, 238, 248, 0.72);
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__meta i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-block;
}

@media (min-width: 768px) {
  .hero { align-items: center; }
  .hero__content { padding: 7rem 0 5rem; }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.section__head h2,
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.section__head p,
.section__subtitle {
  color: var(--text-muted);
}

/* Operator cards */
.toplist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.op-card {
  position: relative;
  padding: 1.15rem 1.2rem 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.op-card:hover {
  border-color: rgba(62, 207, 207, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.op-card--top {
  background:
    linear-gradient(135deg, rgba(62, 207, 207, 0.1), transparent 45%),
    var(--surface);
  border-color: rgba(62, 207, 207, 0.35);
}

.op-card__rank {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}

.op-card__main {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.op-card__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.op-card__logo {
  flex-shrink: 0;
  width: 132px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 0.55rem 0.65rem;
  border-radius: 0.75rem;
  background: #05080f;
  border: 1px solid rgba(126, 184, 232, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 14px rgba(0, 0, 0, 0.35);
}

.op-card__logo img {
  max-height: 40px;
  max-width: 100%;
  width: auto;
  margin: 0 auto;
  border-radius: 0.35rem;
}

.op-card__copy h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.op-card__copy p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.op-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(126, 184, 232, 0.12);
  color: var(--sky);
  border: 1px solid rgba(126, 184, 232, 0.22);
}

.op-card__score {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.op-card__score strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.03em;
}

.op-card__score strong span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.op-card__license {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dk-flag {
  width: 16px;
  height: 12px;
  background: linear-gradient(#c8102e 0 45%, #fff 45% 55%, #c8102e 55%);
  border-radius: 1px;
  position: relative;
  display: inline-block;
}

.dk-flag::after {
  content: "";
  position: absolute;
  left: 35%;
  top: 0;
  bottom: 0;
  width: 18%;
  background: #fff;
}

.op-card__cta .btn { width: 100%; min-width: 140px; }

.op-card__terms {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .op-card__main {
    grid-template-columns: 1.4fr 1fr auto auto;
    gap: 1.25rem;
  }
  .op-card__cta .btn { width: auto; }
}

@media (min-width: 960px) {
  .op-card { padding: 1.25rem 1.4rem 1.05rem; }
}

/* Features */
.features {
  background:
    linear-gradient(180deg, transparent, rgba(16, 26, 51, 0.6)),
    url("../images/section-bg.webp") center/cover;
}

.features__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .features__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

.feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(21, 32, 56, 0.85);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.feature:hover {
  transform: translateY(-2px);
  border-color: rgba(62, 207, 207, 0.35);
}

.feature img { width: 56px; height: 56px; flex-shrink: 0; }
.feature h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.feature p { font-size: 0.92rem; color: var(--text-muted); }

/* Featured month */
.spotlight {
  padding: 4rem 0;
}

.spotlight__panel {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 0.25rem);
  border: 1px solid rgba(62, 207, 207, 0.3);
  padding: 1.75rem 1.4rem;
  background:
    linear-gradient(135deg, rgba(10, 18, 40, 0.72), rgba(16, 26, 51, 0.85)),
    url("../images/featured-panel.webp") center/cover;
}

.spotlight__panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.spotlight__panel > p {
  color: rgba(232, 238, 248, 0.8);
  max-width: 42rem;
  margin-bottom: 1.35rem;
}

.spotlight__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.spotlight__logo {
  width: 160px;
  height: 68px;
  display: grid;
  place-items: center;
  background: #05080f;
  border: 1px solid rgba(126, 184, 232, 0.22);
  border-radius: 0.75rem;
  padding: 0.55rem 0.7rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 14px rgba(0, 0, 0, 0.35);
}

.spotlight__logo img {
  max-height: 44px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.35rem;
}

.spotlight__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
}

.spotlight__chip {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(62, 207, 207, 0.14);
  border: 1px solid rgba(62, 207, 207, 0.28);
  color: var(--cyan-bright);
}

.spotlight__terms {
  margin-top: 1.1rem;
  font-size: 0.75rem;
  color: rgba(232, 238, 248, 0.6);
}

/* Newsletter */
.newsletter {
  padding: 4rem 0;
}

.newsletter__box {
  border-radius: calc(var(--radius) + 0.15rem);
  padding: 1.75rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.newsletter__box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.newsletter__box > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.newsletter__inputs {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .newsletter__inputs { grid-template-columns: 1fr 1fr; }
}

.newsletter__field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.7rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.newsletter__field:focus-within { border-color: var(--cyan); }
.newsletter__field svg { flex-shrink: 0; color: var(--text-muted); }
.newsletter__input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
}

.newsletter__consent-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.newsletter__consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
}

.newsletter__consent input {
  margin-top: 0.2rem;
  accent-color: var(--cyan);
}

.newsletter__message {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.newsletter__message.is-success { color: var(--success); }
.newsletter__message.is-error { color: var(--danger); }

/* FAQ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 780px;
}

.faq__item {
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.faq__summary::-webkit-details-marker { display: none; }

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
  color: var(--cyan);
}

.faq__item[open] .faq__chevron { transform: rotate(180deg); }

.faq__answer {
  padding: 0 1.15rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq__answer p + p { margin-top: 0.65rem; }

/* Contact */
.contact-block {
  padding: 0 0 4rem;
}

.contact-block__card {
  padding: 1.75rem 1.35rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}

.contact-block__card h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.contact-block__card p {
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #070e1c;
}

.footer-cert {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 1.5rem;
  }
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer__logo span { color: var(--cyan); }
.footer__logo img { width: 28px; height: 28px; border-radius: 7px; }

.footer__copyright { font-size: 0.88rem; margin-bottom: 0.4rem; }
.footer__disclaimer { font-size: 0.8rem; color: var(--text-muted); }
.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--sky);
}

.footer__links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer__links a { color: var(--text-muted); font-size: 0.9rem; }
.footer__links a:hover { color: var(--cyan); }

.footer__compliance-heading {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.footer__compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.footer__compliance img {
  height: 40px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  padding: 0.25rem;
}

.footer__help { font-size: 0.82rem; color: var(--text-muted); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Inner pages */
.page-hero {
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(600px 280px at 20% 0%, rgba(62, 207, 207, 0.12), transparent 60%),
    var(--bg-elevated);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.prose {
  padding: 2.5rem 0 4rem;
  max-width: 720px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.6rem;
  letter-spacing: -0.02em;
}

.prose p { color: var(--text-muted); margin-bottom: 0.9rem; }
.prose ul { list-style: disc; margin: 0 0 1rem 1.25rem; color: var(--text-muted); }
.prose li { margin-bottom: 0.35rem; }

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.65s var(--ease) forwards;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
