/* ==========================================================
   CYBER DRIFT — Topcasinodanmark
   Dark cyberpunk + BMW M motorsport aesthetic.
   Carbon void surfaces, electric cyan signal,
   tri-color M-stripe (sky / navy / red), HUD typography.
   ========================================================== */

/* ----------------------------------------------------------
   Tokens
   ---------------------------------------------------------- */
:root {
  /* Carbon void surfaces */
  --void:        #06080d;
  --carbon:      #0a0e16;
  --steel:       #11151f;
  --slate:       #161c28;
  --edge:        #1f2638;
  --rule:        #2a3245;
  --rule-soft:   #1a2030;
  --titanium:    #3b4660;

  /* Text */
  --silver:      #a3adc2;
  --silver-2:    #8390a8;
  --chrome:      #d8dfee;
  --paper:       #f4f6fa;

  /* Cyber signal */
  --cyan:        #00e5ff;
  --cyan-deep:   #0091a8;
  --cyan-soft:   rgba(0, 229, 255, .12);
  --cyan-glow:   rgba(0, 229, 255, .55);

  /* Accents */
  --magenta:     #ff2e6e;
  --signal:      #fbe44b;
  --emerald:     #00ff9c;

  /* BMW M-stripe — motorsport tri-color */
  --bmw-sky:     #1c9bd4;
  --bmw-navy:    #0e3a7a;
  --bmw-red:     #e1261c;

  /* Typography */
  --f-display: "Chakra Petch", "Eurostile", "Bahnschrift", "Helvetica Neue", sans-serif;
  --f-text:    "Rajdhani", "Chakra Petch", "Helvetica Neue", sans-serif;
  --f-mono:    "JetBrains Mono", "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  /* Spatial */
  --gutter:    25px;
  --col-max:   1280px;
  --measure:   62ch;

  /* Motion */
  --ease:      cubic-bezier(.2, .7, .2, 1);

  /* M-stripe gradient */
  --m-gradient: linear-gradient(90deg,
    var(--bmw-sky)  0%, var(--bmw-sky)  33.33%,
    var(--bmw-navy) 33.33%, var(--bmw-navy) 66.66%,
    var(--bmw-red)  66.66%, var(--bmw-red)  100%);
}

/* ----------------------------------------------------------
   Reset & base
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--void);
}

body {
  margin: 0;
  background: var(--carbon);
  color: var(--chrome);
  font-family: var(--f-text);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  /* Carbon grid + atmospheric glow */
  background-image:
    radial-gradient(ellipse 70% 50% at 12% 0%, rgba(28, 105, 212, .14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(0, 229, 255, .07), transparent 60%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(225, 38, 28, .05), transparent 60%),
    linear-gradient(rgba(31, 38, 56, .35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 38, 56, .35) 1px, transparent 1px);
  background-size: auto, auto, auto, 64px 64px, 64px 64px;
  background-position: 0 0, 0 0, 0 0, -1px -1px, -1px -1px;
  background-attachment: fixed, fixed, fixed, fixed, fixed;
}

body::before {
  /* Subtle scanlines overlay */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, .015) 0,
    rgba(255, 255, 255, .015) 1px,
    transparent 1px,
    transparent 3px
  );
  z-index: 1;
  mix-blend-mode: overlay;
}

body::after {
  /* Faint vignette */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, .55) 100%);
  z-index: 1;
}

main, header, footer, section { position: relative; z-index: 2; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cyan);
  text-decoration: none;
  background-image: linear-gradient(var(--cyan), var(--cyan));
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  padding-bottom: 1px;
  transition: background-size .25s var(--ease), color .15s var(--ease), text-shadow .25s var(--ease);
}

a:hover, a:focus {
  color: var(--paper);
  background-size: 100% 1px;
  text-shadow: 0 0 14px var(--cyan-glow);
}

a:focus-visible {
  outline: 1px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  background: var(--cyan);
  color: var(--void);
}

/* ----------------------------------------------------------
   Type scale — display & body
   ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--paper);
  margin: 0 0 .5em;
}

h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: .98;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.4rem, 4.8vw, 2.7rem);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.05;
  text-transform: uppercase;
  word-break: break-word;
  overflow-wrap: anywhere;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--paper);
}

h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1em;
  max-width: var(--measure);
  font-family: var(--f-text);
  font-size: 1.075rem;
  line-height: 1.62;
  color: var(--silver);
  font-weight: 400;
}

em, i {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  color: var(--cyan);
  text-shadow: 0 0 22px var(--cyan-glow);
}

strong, b { font-weight: 700; color: var(--paper); }

ul, ol { padding-left: 1.25em; margin: 0 0 1em; }
ul li, ol li { margin-bottom: .35em; line-height: 1.55; color: var(--silver); }

code {
  font-family: var(--f-mono);
  font-size: .85em;
  background: var(--steel);
  color: var(--cyan);
  padding: 1px 6px;
  border: 1px solid var(--rule);
}

/* ----------------------------------------------------------
   Layout primitives
   ---------------------------------------------------------- */
.container {
  max-width: var(--col-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 64px var(--gutter);
  border-top: 1px solid var(--edge);
  position: relative;
}

.section::before {
  /* Tiny BMW M-stripe accent at the top of each section */
  content: "";
  position: absolute;
  top: -1px;
  left: var(--gutter);
  width: 96px;
  height: 2px;
  background: var(--m-gradient);
}

.section + .section { border-top: 0; padding-top: 24px; }
.section + .section::before { display: none; }

/* Eyebrow / kicker label — HUD coordinate marker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--cyan);
  margin-bottom: 18px;
  padding: 6px 12px;
  background: var(--cyan-soft);
  border: 1px solid rgba(0, 229, 255, .35);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.kicker::before {
  content: "//";
  color: var(--bmw-red);
  font-weight: 700;
  letter-spacing: 0;
}

/* ----------------------------------------------------------
   Header — masthead
   ---------------------------------------------------------- */
.site-header {
  background: linear-gradient(180deg, rgba(6, 8, 13, .96), rgba(10, 14, 22, .9));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--edge);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header::after {
  /* BMW M-stripe under masthead */
  content: "";
  display: block;
  height: 2px;
  background: var(--m-gradient);
}

.site-header .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 16px;
  padding-bottom: 14px;
}

.masthead-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--silver-2);
  border-bottom: 1px dashed var(--edge);
  padding-bottom: 10px;
}

.masthead-meta span:first-child::before {
  content: "● ";
  color: var(--emerald);
  text-shadow: 0 0 8px var(--emerald);
  margin-right: 4px;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}

.masthead-meta span + span::before {
  content: "·";
  margin: 0 10px;
  color: var(--titanium);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 4.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--paper);
  background: none;
  padding: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark-icon {
  display: block;
  width: auto;
  height: 1.7em;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, .35));
  transition: filter .3s var(--ease), transform .4s var(--ease);
}

@media (min-width: 768px) {
  .brand-mark { gap: 14px; }
  .brand-mark-icon { height: 1.9em; }
}

.brand-mark:hover .brand-mark-icon {
  filter: drop-shadow(0 0 20px var(--cyan-glow));
  transform: rotate(-2deg);
}

.brand-mark-text {
  display: inline;
  font-style: normal;
  color: var(--paper);
}

.brand-mark-text i {
  font-style: italic;
  color: var(--cyan);
  font-weight: 600;
  margin-left: -0.04em;
  text-shadow: 0 0 18px var(--cyan-glow);
}

.brand-mark:hover, .brand-mark:focus {
  color: var(--paper);
  background: none;
}

.site-nav {
  display: flex;
  gap: 12px 14px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
}

.site-nav a {
  color: var(--silver);
  background: none;
  padding: 6px 0 8px;
  position: relative;
  border-bottom: 1px solid transparent;
  transition: color .15s var(--ease), border-color .25s var(--ease), text-shadow .25s var(--ease);
}

.site-nav a:hover, .site-nav a:focus {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
  background: none;
  text-shadow: 0 0 14px var(--cyan-glow);
}

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero {
  background:
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(28, 155, 212, .12), transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(225, 38, 28, .08), transparent 70%),
    var(--carbon);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--edge);
}

.hero::before {
  /* Diagonal cyan slash + corner brackets HUD */
  content: "";
  position: absolute;
  right: 6%;
  top: 50%;
  width: 220px;
  height: 220px;
  transform: translateY(-50%) rotate(-8deg);
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(0, 229, 255, .35) 49.5%, rgba(0, 229, 255, .35) 50.5%, transparent 50.5%),
    linear-gradient(135deg, transparent 47%, rgba(0, 229, 255, .12) 47%, rgba(0, 229, 255, .12) 53%, transparent 53%);
  opacity: .8;
  pointer-events: none;
  filter: blur(.5px);
}

.hero::after {
  /* HUD coordinates label */
  content: "TCD-12 · 55.4°N · 10.4°E";
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .25em;
  color: var(--cyan);
  opacity: .5;
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 18px 0 24px;
  max-width: 16ch;
}

.hero h1 em {
  color: var(--cyan);
  font-weight: 700;
  font-style: italic;
  text-shadow: 0 0 32px var(--cyan-glow);
}

.hero p {
  font-family: var(--f-text);
  font-size: 1.18rem;
  line-height: 1.55;
  max-width: 60ch;
  color: var(--chrome);
  font-weight: 400;
}

.hero p + p {
  color: var(--silver);
  font-size: 1.02rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  background: var(--bmw-red);
  color: var(--paper);
  padding: 6px 11px;
  text-transform: uppercase;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  box-shadow: 0 0 18px rgba(225, 38, 28, .35);
}

/* Author / byline strip below hero copy */
.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--silver-2);
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--edge);
  max-width: 60ch;
  position: relative;
}

.byline::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 64px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

.byline em {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--paper);
  text-shadow: none;
}

/* ----------------------------------------------------------
   Toplist — ranked carbon panels
   ---------------------------------------------------------- */
.toplist-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
  padding: 64px 0 32px;
  position: relative;
}

.toplist-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 2px;
  background: var(--m-gradient);
}

.toplist-intro h2 {
  margin: 0;
  max-width: 16ch;
}

.toplist-intro p {
  margin: 0;
  font-family: var(--f-text);
  font-size: 1.06rem;
  color: var(--silver);
  max-width: 50ch;
}

.toplist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0 0 80px;
}

.brand-card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, .05), transparent 35%),
    var(--steel);
  padding: 36px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--edge);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.brand-card::before {
  /* HUD corner brackets */
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--cyan);
  border-left: 1px solid var(--cyan);
  opacity: .5;
  transition: opacity .25s var(--ease), top .25s var(--ease), left .25s var(--ease);
}

.brand-card::after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 18px;
  height: 18px;
  border-bottom: 1px solid var(--cyan);
  border-right: 1px solid var(--cyan);
  opacity: .5;
  transition: opacity .25s var(--ease), bottom .25s var(--ease), right .25s var(--ease);
}

.brand-card:hover {
  background:
    linear-gradient(135deg, rgba(0, 229, 255, .1), transparent 35%),
    var(--slate);
  transform: translateY(-2px);
}

.brand-card:hover::before {
  opacity: 1;
  top: 10px;
  left: 10px;
}

.brand-card:hover::after {
  opacity: 1;
  bottom: 10px;
  right: 10px;
}

/* Top-1 marker — Editor's pick badge */
.toplist .brand-card:first-child {
  border-color: var(--cyan);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, .15),
    0 0 32px rgba(0, 229, 255, .12);
}

.toplist .brand-card:first-child > * {
  position: relative;
}

/* Editor's pick ribbon */
.toplist .brand-card:first-child > .brand-info::before {
  content: "REDAKTIONENS VALG";
  position: absolute;
  top: -50px;
  right: 0;
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .28em;
  font-weight: 700;
  color: var(--void);
  background: var(--cyan);
  padding: 5px 12px;
  text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: 0 0 22px var(--cyan-glow);
}

.brand-rank {
  font-family: var(--f-display);
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: .85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
  text-stroke: 1.5px var(--cyan);
  letter-spacing: -0.04em;
  display: inline-block;
  transition: color .25s var(--ease), text-shadow .25s var(--ease);
  position: relative;
}

.brand-rank::before {
  content: "№ ";
  font-size: .3em;
  font-style: italic;
  vertical-align: top;
  margin-right: 6px;
  color: var(--silver-2);
  -webkit-text-stroke: 0;
  font-weight: 400;
  font-family: var(--f-mono);
  letter-spacing: .1em;
}

.brand-card:hover .brand-rank {
  color: var(--cyan);
  text-shadow: 0 0 28px var(--cyan-glow);
}

.brand-logo {
  background: var(--paper);
  border: 1px solid var(--edge);
  padding: 18px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.brand-logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.brand-logo--invert img {
  filter: invert(1) brightness(.92);
}

.brand-info h3 {
  margin: 0 0 8px;
  font-size: 1.85rem;
  font-weight: 700;
  font-family: var(--f-display);
  letter-spacing: 0;
  color: var(--paper);
  text-transform: uppercase;
}

.brand-bonus {
  font-family: var(--f-text);
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--chrome);
  margin: 0 0 12px;
  max-width: 40ch;
  font-weight: 500;
}

.brand-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--silver-2);
  margin: 0;
}

.brand-rating strong {
  font-family: var(--f-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: -0.02em;
  text-shadow: 0 0 18px var(--cyan-glow);
}

/* Stars — neon bar gauge */
.stars {
  --rating: 0%;
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 3px;
  line-height: 1;
  background: linear-gradient(90deg,
    var(--cyan) 0%,
    var(--cyan) var(--rating),
    rgba(120, 132, 156, .25) var(--rating)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, .4));
}

.brand-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ----------------------------------------------------------
   Buttons — beveled cyber CTAs
   ---------------------------------------------------------- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  text-decoration: none;
  border: 0;
  padding: 16px 24px;
  background: none;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  position: relative;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.btn-primary {
  background: var(--cyan);
  color: var(--void);
  background-image: none;
  box-shadow: 0 0 0 1px var(--cyan), 0 0 20px rgba(0, 229, 255, .25);
}

.btn-primary::after {
  content: "→";
  font-family: var(--f-display);
  font-size: 1.1em;
  letter-spacing: 0;
  font-weight: 700;
  transition: transform .25s var(--ease);
}

.btn-primary:hover, .btn-primary:focus {
  background: var(--paper);
  color: var(--void);
  box-shadow: 0 0 0 1px var(--paper), 0 0 28px rgba(255, 255, 255, .35);
}

.btn-primary:hover::after, .btn-primary:focus::after {
  transform: translateX(5px);
}

.btn-secondary {
  background: transparent;
  color: var(--chrome);
  background-image: none;
  box-shadow: inset 0 0 0 1px var(--titanium);
}

.btn-secondary:hover, .btn-secondary:focus {
  background: rgba(0, 229, 255, .08);
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px var(--cyan), 0 0 20px rgba(0, 229, 255, .15);
}

/* On dark hero — cyan ghost button */
.brand-hero .btn-secondary {
  color: var(--chrome);
  box-shadow: inset 0 0 0 1px var(--titanium);
}

.brand-hero .btn-secondary:hover {
  background: rgba(0, 229, 255, .08);
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px var(--cyan), 0 0 20px rgba(0, 229, 255, .15);
}

/* Primary CTA inside brand-hero — signal yellow for ultra contrast */
.brand-hero .btn-primary {
  background: var(--signal);
  color: var(--void);
  box-shadow: 0 0 0 1px var(--signal), 0 0 24px rgba(251, 228, 75, .3);
}

.brand-hero .btn-primary:hover,
.brand-hero .btn-primary:focus {
  background: var(--paper);
  color: var(--void);
  box-shadow: 0 0 0 1px var(--paper), 0 0 30px rgba(255, 255, 255, .35);
}

/* ----------------------------------------------------------
   Brand review hero — circuit-board panel
   ---------------------------------------------------------- */
.brand-hero {
  background:
    radial-gradient(ellipse 60% 70% at 90% 20%, rgba(28, 155, 212, .18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 100%, rgba(225, 38, 28, .12), transparent 60%),
    var(--carbon);
  color: var(--chrome);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--edge);
}

.brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, .06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}

.brand-hero::after {
  /* M-stripe vertical accent */
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--m-gradient);
  background-size: 4px 100%;
  background: linear-gradient(180deg,
    var(--bmw-sky)  0%, var(--bmw-sky)  33.33%,
    var(--bmw-navy) 33.33%, var(--bmw-navy) 66.66%,
    var(--bmw-red)  66.66%, var(--bmw-red)  100%);
  pointer-events: none;
  box-shadow: 0 0 24px rgba(28, 155, 212, .35);
}

.brand-hero > .container {
  position: relative;
  z-index: 1;
}

.brand-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.brand-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin: 18px 0 22px;
  color: var(--paper);
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.brand-hero .brand-bonus {
  font-family: var(--f-text);
  font-style: normal;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--chrome);
  margin: 0 0 22px;
  max-width: 48ch;
  line-height: 1.4;
}

.brand-hero .brand-rating {
  color: var(--silver);
}

.brand-hero .brand-rating strong {
  color: var(--signal);
  font-size: 2rem;
  text-shadow: 0 0 24px rgba(251, 228, 75, .45);
}

.brand-hero .stars {
  background: linear-gradient(90deg,
    var(--signal) 0%,
    var(--signal) var(--rating),
    rgba(255, 255, 255, .12) var(--rating)
  );
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(251, 228, 75, .35));
}

.brand-hero .brand-logo {
  background: var(--paper);
  border-color: var(--paper);
  min-height: 140px;
  padding: 28px;
}

.brand-hero .brand-logo img {
  max-height: 80px;
}

.brand-hero a {
  color: var(--cyan);
}

/* ----------------------------------------------------------
   Section headings — HUD divider
   ---------------------------------------------------------- */
.section h2 {
  position: relative;
  margin: 0 0 32px;
  padding-bottom: 0;
  border: 0;
  display: block;
}

.section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: -16px;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan-glow);
}

@media (min-width: 768px) {
  .section h2::before {
    width: 42px;
    top: -20px;
  }
}

/* ----------------------------------------------------------
   Pros / cons — emerald + magenta dual columns
   ---------------------------------------------------------- */
.proscons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 28px;
}

.pros, .cons {
  background: var(--steel);
  border: 1px solid var(--edge);
  padding: 28px 28px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.pros { border-left: 2px solid var(--emerald); }
.cons { border-left: 2px solid var(--magenta); }

.pros h3, .cons h3 {
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .26em;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--edge);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pros h3 { color: var(--emerald); }
.pros h3::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--emerald);
  color: var(--void);
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0 14px rgba(0, 255, 156, .35);
}

.cons h3 { color: var(--magenta); }
.cons h3::before {
  content: "−";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--magenta);
  color: var(--void);
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 14px rgba(255, 46, 110, .35);
}

.pros ul, .cons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros li, .cons li {
  position: relative;
  padding: 12px 0 12px 26px;
  margin: 0;
  font-family: var(--f-text);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--chrome);
  border-bottom: 1px dashed var(--edge);
}

.pros li:last-child, .cons li:last-child { border-bottom: 0; }

.pros li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 12px;
  font-family: var(--f-mono);
  color: var(--emerald);
  font-weight: 700;
}

.cons li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 12px;
  font-family: var(--f-mono);
  color: var(--magenta);
  font-weight: 700;
}

/* ----------------------------------------------------------
   Fact table — terminal register
   ---------------------------------------------------------- */
.fact-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-text);
  font-size: 1.02rem;
  border-top: 2px solid var(--cyan);
  border-bottom: 2px solid var(--edge);
  background: var(--steel);
}

.fact-table th, .fact-table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--edge);
  vertical-align: top;
  line-height: 1.45;
}

.fact-table tr:last-child th, .fact-table tr:last-child td {
  border-bottom: 0;
}

.fact-table th {
  width: 38%;
  color: var(--silver-2);
  font-family: var(--f-mono);
  font-weight: 600;
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .22em;
  background: var(--carbon);
  border-right: 1px solid var(--edge);
}

.fact-table td {
  color: var(--chrome);
  font-family: var(--f-text);
  font-weight: 500;
}

.fact-table thead th, .fact-table thead td {
  border-bottom: 2px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--f-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
}

/* ----------------------------------------------------------
   Payment chips — beveled tags
   ---------------------------------------------------------- */
.payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment-list li {
  background: var(--steel);
  color: var(--chrome);
  padding: 11px 18px;
  font-family: var(--f-mono);
  font-size: .76rem;
  letter-spacing: .12em;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--edge);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.payment-list li:hover {
  background: var(--cyan);
  color: var(--void);
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 229, 255, .3);
}

/* ----------------------------------------------------------
   Review long-form text — neon drop cap
   ---------------------------------------------------------- */
/* Review section — same container width as everything else. */
.review-text p {
  font-family: var(--f-text);
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--chrome);
  margin: 0 0 1.2em;
  max-width: var(--measure);
}

/* ----------------------------------------------------------
   Callout (informative aside)
   ---------------------------------------------------------- */
.callout {
  background: var(--steel);
  border: 1px solid var(--edge);
  border-left: 3px solid var(--signal);
  padding: 22px 26px;
  margin: 28px 0;
  max-width: var(--measure);
  position: relative;
}

.callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--signal), transparent);
}

.callout h3 {
  margin: 0 0 8px;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--signal);
}

.callout p {
  margin: 0;
  font-family: var(--f-text);
  font-size: 1.05rem;
  color: var(--chrome);
}

/* ----------------------------------------------------------
   Regulator strip — control panel
   ---------------------------------------------------------- */
.regulator-strip {
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(0, 229, 255, .08), transparent 70%),
    var(--void);
  color: var(--chrome);
  padding: 64px 0 72px;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  position: relative;
}

.regulator-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--m-gradient);
}

.regulator-strip h2 {
  font-family: var(--f-mono);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--cyan);
  margin: 0 0 32px;
  display: block;
  border: 0;
  padding: 0;
  text-align: center;
}

.regulator-strip h2::before {
  content: "[ ";
  color: var(--silver-2);
  margin-right: 4px;
}

.regulator-strip h2::after {
  content: " ]";
  color: var(--silver-2);
  margin-left: 4px;
}

.regulator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--edge);
  background: var(--steel);
}

.regulator-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  background: transparent;
  color: var(--chrome);
  text-decoration: none;
  font-family: var(--f-mono);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  min-height: 140px;
  gap: 14px;
  border-right: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  background-image: none;
  transition: background .25s var(--ease), color .25s var(--ease);
  position: relative;
}

.regulator-badge:nth-child(2n) { border-right: 0; }

.regulator-badge:hover, .regulator-badge:focus {
  background: rgba(0, 229, 255, .06);
  color: var(--cyan);
}

.regulator-badge img {
  max-height: 44px;
  max-width: 80%;
  object-fit: contain;
  filter: invert(1) brightness(.95) contrast(1.05);
  transition: filter .25s var(--ease);
}

.regulator-badge:hover img {
  filter: invert(1) brightness(1) contrast(1.05) drop-shadow(0 0 12px var(--cyan-glow));
}

.regulator-badge--light {
  background: var(--paper);
  color: var(--void);
}

.regulator-badge--light img {
  filter: none;
}

.regulator-badge--light:hover {
  background: var(--cyan);
  color: var(--void);
}

.regulator-badge--light:hover img {
  filter: none;
}

.regulator-badge--light small {
  color: var(--silver-2);
}

.regulator-badge small {
  display: block;
  font-family: var(--f-mono);
  font-weight: 500;
  color: var(--silver-2);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.regulator-badge--age {
  background: var(--bmw-red);
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 700;
  cursor: default;
  letter-spacing: -0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
}

.regulator-badge--age:hover {
  background: var(--bmw-red);
  color: var(--paper);
}

.regulator-badge--age small {
  color: var(--paper);
  opacity: .85;
  font-size: .6rem;
  letter-spacing: .18em;
}

.regulator-badge--rofus img,
.regulator-badge--stopspillet img {
  filter: invert(1) brightness(.95);
}

.regulator-badge--rofus:hover img,
.regulator-badge--stopspillet:hover img {
  filter: invert(1) brightness(1) drop-shadow(0 0 10px var(--cyan-glow));
}

/* ----------------------------------------------------------
   Responsible-gambling warning panel — alert console
   ---------------------------------------------------------- */
.rg-warning {
  background:
    linear-gradient(135deg, rgba(225, 38, 28, .08), transparent 50%),
    var(--steel);
  border: 1px solid var(--edge);
  border-left: 4px solid var(--bmw-red);
  padding: 32px 36px;
  margin: 56px 0;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.rg-warning--strong {
  background:
    linear-gradient(135deg, rgba(225, 38, 28, .12), transparent 50%),
    var(--steel);
}

.rg-warning::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 2px;
  background: var(--bmw-red);
}

.rg-warning-head {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--bmw-red);
  margin-bottom: 14px;
  font-weight: 700;
}

.rg-warning-head::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--bmw-red);
  color: var(--paper);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  box-shadow: 0 0 14px rgba(225, 38, 28, .45);
}

.rg-warning h2 {
  font-size: 1.7rem;
  margin: 0 0 16px;
  color: var(--paper);
  font-weight: 700;
  letter-spacing: 0;
  border: 0;
  padding: 0;
  text-transform: uppercase;
}

.rg-warning h2::before { display: none; }

.rg-warning p {
  margin: 0 0 12px;
  color: var(--chrome);
  font-family: var(--f-text);
  font-size: 1.04rem;
  max-width: 70ch;
}

.rg-warning p:last-child { margin-bottom: 0; }

.rg-warning a {
  color: var(--cyan);
  font-weight: 600;
}

.rg-warning a:hover {
  color: var(--paper);
}

/* ----------------------------------------------------------
   Cookie banner — terminal HUD
   ---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 8, 13, .96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--chrome);
  padding: 24px 32px;
  box-shadow: 0 -10px 60px rgba(0, 0, 0, .8);
  z-index: 9999;
  display: none;
  border-top: 1px solid var(--cyan);
}

.cookie-banner::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--m-gradient);
}

.cookie-banner.is-visible {
  display: block;
  animation: slideUp .4s var(--ease) both;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner > * {
  max-width: var(--col-max);
  margin-left: auto;
  margin-right: auto;
}

.cookie-banner h3 {
  margin: 0 0 8px;
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.cookie-banner h3::before {
  content: "» ";
  color: var(--cyan);
}

.cookie-banner p {
  margin: 0 0 14px;
  font-family: var(--f-text);
  font-size: .98rem;
  color: var(--silver);
  max-width: 60ch;
}

.cookie-banner a {
  color: var(--cyan);
}

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: var(--col-max);
  margin-left: auto;
  margin-right: auto;
}

.cookie-banner-actions button {
  border: 0;
  padding: 14px 22px;
  font-family: var(--f-mono);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease), box-shadow .25s var(--ease);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.btn-cookie-accept {
  background: var(--cyan);
  color: var(--void);
  box-shadow: 0 0 0 1px var(--cyan), 0 0 18px rgba(0, 229, 255, .25);
}

.btn-cookie-accept:hover {
  background: var(--paper);
  color: var(--void);
  box-shadow: 0 0 0 1px var(--paper), 0 0 24px rgba(255, 255, 255, .35);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--chrome);
  box-shadow: inset 0 0 0 1px var(--titanium);
}

.btn-cookie-reject:hover {
  background: rgba(0, 229, 255, .06);
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px var(--cyan);
}

/* ----------------------------------------------------------
   Footer — system colophon
   ---------------------------------------------------------- */
.site-footer {
  background: var(--void);
  color: var(--silver);
  padding: 72px 0 60px;
  border-top: 1px solid var(--edge);
  font-size: .94rem;
  line-height: 1.55;
  font-family: var(--f-text);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 50%;
  height: 2px;
  background: var(--m-gradient);
}

.site-footer h4 {
  color: var(--paper);
  margin: 0 0 20px;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .26em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--edge);
  position: relative;
}

.site-footer h4::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
}

.site-footer p {
  color: var(--silver);
}

.site-footer a {
  color: var(--silver);
  background-image: linear-gradient(var(--cyan), var(--cyan));
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.footer-licence-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-licence-list li {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--edge);
  line-height: 1.45;
  color: var(--silver);
}

.footer-licence-list li:last-child {
  border-bottom: 0;
}

.footer-licence-list strong {
  font-family: var(--f-display);
  font-style: normal;
  color: var(--chrome);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.legal-entity {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: .74rem;
  line-height: 1.6;
  letter-spacing: .06em;
  color: var(--silver-2);
  margin: 22px 0;
  padding: 16px 0 16px 18px;
  border-left: 2px solid var(--cyan);
  background: linear-gradient(90deg, rgba(0, 229, 255, .04), transparent);
  text-transform: uppercase;
}

.legal-entity strong {
  display: block;
  color: var(--paper);
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 700;
  font-size: .98rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.footer-age {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--edge);
  color: var(--silver-2);
  font-family: var(--f-mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.contact-mail {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-style: normal;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: -0.005em;
  background-image: linear-gradient(var(--cyan), var(--cyan));
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  word-break: break-word;
  text-transform: lowercase;
  text-shadow: 0 0 24px var(--cyan-glow);
}

.contact-mail:hover {
  background-size: 100% 2px;
  color: var(--paper);
}

/* ----------------------------------------------------------
   Page-load reveal animations
   ---------------------------------------------------------- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 1px var(--cyan), 0 0 20px rgba(0, 229, 255, .25); }
  50%      { box-shadow: 0 0 0 1px var(--cyan), 0 0 32px rgba(0, 229, 255, .55); }
}

.hero h1, .hero p, .hero .age-badge, .hero .kicker, .hero .byline,
.brand-hero h1, .brand-hero .brand-bonus, .brand-hero .brand-rating,
.brand-hero .brand-logo, .brand-hero .brand-cta, .brand-hero .age-badge {
  animation: riseIn .8s var(--ease) both;
}

.hero .kicker     { animation-delay: .05s; }
.hero .age-badge  { animation-delay: .12s; }
.hero h1          { animation-delay: .22s; }
.hero p           { animation-delay: .38s; }
.hero p + p       { animation-delay: .52s; }
.hero .byline     { animation-delay: .68s; }

.brand-hero .brand-logo     { animation-delay: .12s; }
.brand-hero .age-badge      { animation-delay: .18s; }
.brand-hero h1              { animation-delay: .28s; }
.brand-hero .brand-bonus    { animation-delay: .42s; }
.brand-hero .brand-rating   { animation-delay: .54s; }
.brand-hero .brand-cta      { animation-delay: .64s; }

.toplist .brand-card {
  animation: riseIn .7s var(--ease) both;
}
.toplist .brand-card:nth-child(1) { animation-delay: .12s; }
.toplist .brand-card:nth-child(2) { animation-delay: .24s; }
.toplist .brand-card:nth-child(3) { animation-delay: .36s; }
.toplist .brand-card:nth-child(4) { animation-delay: .48s; }

.brand-hero .btn-primary {
  animation: riseIn .7s var(--ease) both, glowPulse 3.6s ease-in-out 2s infinite;
  animation-delay: .64s, 2s;
}

/* ----------------------------------------------------------
   Responsive — 768px
   ---------------------------------------------------------- */
@media (min-width: 768px) {
  :root { --gutter: 40px; }

  .site-header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 18px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }

  .masthead-meta {
    flex-basis: 100%;
    margin-bottom: 4px;
  }

  .site-nav { gap: 28px; font-size: .7rem; letter-spacing: .2em; }

  .hero { padding: 120px 0 100px; }

  .toplist-intro {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0 36px;
  }

  .brand-card {
    grid-template-columns: 130px 200px 1fr 220px;
    gap: 36px;
    padding: 40px 36px;
  }

  .toplist .brand-card:first-child > .brand-info::before {
    top: -22px;
    right: -10px;
  }

  .brand-hero {
    padding: 130px 0 110px;
  }

  .brand-hero-grid {
    grid-template-columns: 240px 1fr 220px;
    gap: 48px;
  }

  .proscons {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-top: 32px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
  }

  .regulator-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .regulator-badge:nth-child(2n) {
    border-right: 1px solid var(--edge);
  }

  .regulator-badge:nth-child(3n) {
    border-right: 0;
  }

  .cookie-banner-actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .cookie-banner-actions button { min-width: 200px; }

  .section { padding: 88px 0; }
}

@media (min-width: 1080px) {
  .regulator-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .regulator-badge { border-right: 1px solid var(--edge) !important; }
  .regulator-badge:nth-child(3n) { border-right: 0 !important; }
}

@media (min-width: 1280px) {
  .hero { padding: 150px 0 120px; }
}

/* ----------------------------------------------------------
   Reduced motion
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
}
