/* =========================================================================
   LusoPeak — stylesheet
   Design language modelled on Sport Faction (onepagelove.com/sport-faction):
   near-black canvas with a fine film grain, ultra-condensed uppercase display
   type (Big Shoulders) against a geometric grotesque body face (Outfit),
   burnt-orange accent, square split buttons with a separate arrow cell,
   silver-gradient statement bands and oversized ghost watermarks.
   ========================================================================= */

/* ------------------------------------------------------------- tokens --- */
:root {
  --bg:            #060606;
  --bg-2:          #0b0b0b;
  --bg-3:          #121212;
  --card:          #161616;
  --card-2:        #1c1c1c;
  --line:          rgba(255, 255, 255, .09);
  --line-2:        rgba(255, 255, 255, .22);

  --fg:            #ffffff;
  --fg-2:          #d6d6d6;
  --muted:         #9b9b9b;
  --muted-2:       #6e6e6e;

  --accent:        #ee7325;
  --accent-2:      #ff8a3d;
  --accent-ink:    #0a0a0a;          /* text sitting on an orange fill */
  --accent-soft:   rgba(238, 115, 37, .12);
  --accent-line:   rgba(238, 115, 37, .42);
  --burnt:         #7a2e06;          /* deep orange feature panel */
  --info:          #61a5f7;

  /* Brushed-metal sweep used on the oversized statement headlines. */
  --silver:        linear-gradient(180deg, #ffffff 0%, #dcdcdc 30%, #9a9a9a 62%, #565656 100%);

  --ok:            #4ade80;
  --ok-soft:       rgba(74, 222, 128, .12);
  --ok-line:       rgba(74, 222, 128, .32);

  --warn:          #fbbf24;
  --warn-soft:     rgba(251, 191, 36, .13);
  --danger:        #ff6b5a;

  --brand-accent:  var(--accent);

  --radius-sm: 8px;
  --radius:    18px;
  --radius-lg: 26px;
  --radius-xl: 32px;
  --radius-btn: 4px;

  --wrap:        1220px;
  --wrap-narrow: 860px;

  --font-display: 'Big Shoulders Display', 'Arial Narrow', 'Haettenschweiler', Impact, sans-serif;
  --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --shadow: 0 30px 70px -34px rgba(0, 0, 0, .95);

  /* Split-button arrow glyphs (enter-right), one per ink colour. */
  --arw-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4v3.6a1.6 1.6 0 0 0 1.6 1.6H15'/%3E%3Cpath d='m11.6 5.8 3.4 3.4-3.4 3.4'/%3E%3C/svg%3E");
  --arw-dark:  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none' stroke='%230a0a0a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 4v3.6a1.6 1.6 0 0 0 1.6 1.6H15'/%3E%3Cpath d='m11.6 5.8 3.4 3.4-3.4 3.4'/%3E%3C/svg%3E");
  --arw-up:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 15V3'/%3E%3Cpath d='m4.4 7.6 4.6-4.6 4.6 4.6'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------- resets --- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Fine film grain laid over the whole page, as in the reference. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  opacity: .40;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.30'/%3E%3C/svg%3E");
}

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

a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: -.022em;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .86em;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: .12em .42em;
}

::selection { background: var(--accent); color: var(--accent-ink); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 500;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 12px 18px;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------ layout --- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 32px;
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: 104px; position: relative; }
.section--tight { padding-block: 62px; }
.section--alt { background: var(--bg-2); }

.center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 36px; }

/* Oversized ghost word bled behind a section, à la the reference "SPORTFAC". */
.watermark {
  position: absolute;
  top: -.16em;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(140px, 26vw, 340px);
  line-height: .78;
  letter-spacing: -.005em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #101010;
  user-select: none;
}
.watermark span { display: block; padding-inline: 32px; }
.section > .wrap { position: relative; z-index: 1; }

/* ------------------------------------------------------------- 18+ --- */
.agebadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 800;
  border-radius: 50%;
  border: 2px solid var(--danger);
  color: var(--danger);
  background: rgba(255, 107, 90, .08);
  letter-spacing: 0;
  line-height: 1;
}
.agebadge span { font-size: .72em; margin-left: 1px; }

.agebadge--sm { width: 30px; height: 30px; font-size: 16px; border-width: 1.5px; }
.agebadge--lg { width: 56px; height: 56px; font-size: 28px; }
.agebadge--xl { width: 96px; height: 96px; font-size: 46px; border-width: 3px; }

/* ------------------------------------------------------------ topbar --- */
.topbar {
  background: #0a0a0a;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding-block: 5px;
}
.topbar__text {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}
.topbar__link {
  margin-left: auto;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
}
.topbar__link:hover { color: var(--accent-2); }
.topbar .agebadge--sm { width: 22px; height: 22px; font-size: 11px; }

/* ------------------------------------------------------------ header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(6, 6, 6, .78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 74px;
}

.brandmark { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brandmark__glyph {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 5px;
  color: var(--fg);
  background: #171717;
  border: 1px solid var(--line-2);
}
.brandmark:hover .brandmark__glyph { border-color: var(--accent); color: var(--accent); }
.brandmark__text { display: flex; flex-direction: column; line-height: 1; }
.brandmark__text strong {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.brandmark__text strong i { font-style: normal; color: var(--accent); }
.brandmark__text em {
  font-style: normal;
  margin-top: 3px;
  font-size: 9px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
}
.brandmark--footer { margin-bottom: 18px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.site-nav__list a {
  display: block;
  position: relative;
  padding-block: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fg-2);
  transition: color .15s ease;
}
.site-nav__list a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right .22s ease;
}
.site-nav__list a:hover { color: var(--fg); }
.site-nav__list a:hover::after { right: 0; }
.site-nav__list a[aria-current="page"] { color: var(--accent); }
.site-nav__list a[aria-current="page"]::after { right: 0; }

.site-nav__tail { display: flex; align-items: center; gap: 18px; }

.langswitch { display: flex; align-items: center; gap: 8px; }
.langswitch__opt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color .15s ease;
}
.langswitch__opt + .langswitch__opt { border-left: 1px solid var(--line); padding-left: 8px; }
.langswitch__opt:hover { color: var(--fg); }
.langswitch__opt.is-active { color: var(--fg); }
.langswitch__flag { display: none; }

.navtoggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-btn);
  cursor: pointer;
  padding: 0;
  place-items: center;
  gap: 4px;
}
.navtoggle span {
  display: block;
  width: 16px; height: 1.6px;
  background: var(--fg);
  transition: transform .2s ease, opacity .2s ease;
}
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

/* -------------------------------------------------------- breadcrumbs --- */
.breadcrumbs { border-bottom: 1px solid var(--line); font-size: 11px; }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding-block: 13px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.breadcrumbs li + li::before { content: '/'; margin-right: 8px; color: #333; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs [aria-current] { color: var(--fg-2); }

/* ------------------------------------------------------------ eyebrow --- */
/* ◉ SMALL CAPS LABEL — the reference's section marker. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--fg);
}
.eyebrow__dot {
  width: 12px; height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #74340f;
}

/* -------------------------------------------------------------- hero --- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: min(92vh, 880px);
  padding-block: 140px 56px;
}
/* Warm key light from the top-right, cool rim light from the left. */
.hero__glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 130%;
  background:
    radial-gradient(ellipse 46% 52% at 74% 18%, rgba(238, 115, 37, .30), transparent 68%),
    radial-gradient(ellipse 40% 46% at 16% 26%, rgba(58, 132, 128, .22), transparent 70%),
    radial-gradient(ellipse 70% 46% at 50% 96%, rgba(0, 0, 0, .9), transparent 72%);
  filter: blur(30px);
  pointer-events: none;
}
/* Locker-room slats: faint vertical rhythm behind the type. */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 92px);
  mask-image: radial-gradient(ellipse 74% 70% at 50% 34%, #000 10%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 74% 70% at 50% 34%, #000 10%, transparent 78%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 240px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: .84;
  max-width: none;
}
.hero__title-grad {
  display: block;
  font-size: clamp(66px, 13.5vw, 196px);
  color: var(--fg);
}
.hero__title-main {
  display: block;
  margin-top: .04em;
  font-size: clamp(34px, 6.6vw, 96px);
}
/* Skewed orange tag block over the second line — the "COLLECT & PLAY" device. */
.hero__tag {
  display: inline-block;
  padding: .12em .42em .16em;
  background: var(--accent);
  color: var(--accent-ink);
  transform: rotate(-1.6deg);
  box-shadow: 0 18px 40px -18px rgba(238, 115, 37, .9);
}

.hero__sub {
  margin: 30px 0 0;
  max-width: 52ch;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.62;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted-2);
}

.hero__licences {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  list-style: none;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero__licences li { display: inline-flex; align-items: center; gap: 11px; }
.hero__licences img { max-height: 22px; width: auto; opacity: .95; }
.hero__licences span {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}
.hero__licences__reg a {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero__licences__reg a:hover { color: var(--accent-2); }

/* ---------------------------------------------------------- pagehead --- */
.pagehead {
  position: relative;
  overflow: hidden;
  padding-block: 96px 56px;
  background:
    radial-gradient(ellipse 58% 120% at 82% 0%, rgba(238, 115, 37, .16), transparent 66%),
    var(--bg);
}
.pagehead > .wrap { position: relative; z-index: 1; }
.pagehead--center { text-align: center; padding-block: 120px 90px; }
.pagehead--center .eyebrow { justify-content: center; }
.pagehead__title {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 400;
  letter-spacing: -.028em;
  line-height: 1.08;
  max-width: 22ch;
}
.pagehead--center .pagehead__title { margin-inline: auto; }
.pagehead__title--sm { font-size: clamp(30px, 3.8vw, 46px); }
.pagehead__sub {
  margin-top: 22px;
  max-width: 66ch;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.68;
}
.pagehead--center .pagehead__sub { margin-inline: auto; }
.pagehead__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--muted-2);
}
.pagehead__meta strong { color: var(--fg); }

/* ----------------------------------------------------------- sechead --- */
/* Left-aligned, sentence-case, light weight — the reference's section lead. */
.sechead { margin: 0 0 52px; }
.sechead--left { text-align: left; }
/* `ch` is resolved against the heading's own font-size, so the measure has to
   live on the heading — not on .sechead, whose font-size is the 16px body. */
.sechead__title {
  max-width: 17ch;
  font-size: clamp(28px, 3.9vw, 50px);
  font-weight: 400;
  letter-spacing: -.028em;
  line-height: 1.1;
}
.sechead__sub {
  margin-top: 18px;
  max-width: 56ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

/* Section head with the reference's vertical rule + right-hand lead. */
.splithead {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: 0;
  margin-bottom: 64px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}
.splithead__left { padding-right: 40px; }
.splithead__right { padding-left: 56px; border-left: 1px solid var(--line); }
.splithead__right .sechead { margin-bottom: 0; }
.splithead__right .sechead__sub { max-width: 52ch; }

/* Oversized brushed-metal statement band.
   `background-clip: text` paints only inside the background box, so the block
   needs headroom or acute accents on capitals (Á, Ó…) drop out entirely. */
.bandhead {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(44px, 9vw, 132px);
  padding-top: .16em;
  line-height: .86;
  letter-spacing: .005em;
  text-align: center;
  background: var(--silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}

/* ----------------------------------------------------------- buttons --- */
/* Square split button: label cell + hairline divider + arrow cell. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  height: 56px;
  padding: 0 0 0 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .12s ease;
}
.btn::after {
  content: '';
  flex: 0 0 56px;
  align-self: stretch;
  margin-left: auto;
  background-image: var(--arw-light);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  transition: background-color .16s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.btn--primary::after { background-color: #0d0d0d; background-image: var(--arw-light); }
.btn--primary:hover { background: var(--accent-2); border-color: var(--accent-2); }

.btn--ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--fg);
}
.btn--ghost::after { box-shadow: inset 1px 0 0 var(--line-2); }
.btn--ghost:hover { border-color: var(--fg); background: rgba(255, 255, 255, .04); }

.btn--plain {
  height: auto;
  padding: 0;
  gap: 0;
  background: none;
  border: 0;
  color: var(--fg-2);
  font-weight: 500;
}
.btn--plain::after { display: none; }
.btn--plain:hover { color: var(--accent); }

.btn--sm { height: 44px; padding-left: 18px; gap: 16px; font-size: 13px; }
.btn--sm::after { flex-basis: 44px; background-size: 15px 15px; }
.btn--lg { height: 64px; padding-left: 32px; font-size: 15.5px; }
.btn--lg::after { flex-basis: 64px; }
.btn--block { width: 100%; }

/* Arrow pointing up (footer "back to top"). */
.btn--up::after { background-image: var(--arw-up); }

.linkbtn {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.linkbtn:hover { color: var(--accent); }

/* ------------------------------------------------------------- stats --- */
.statgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  margin-top: 62px;
  border-top: 1px solid var(--line);
}
.statgrid__item {
  padding: 34px 28px 8px;
  border-right: 1px solid var(--line);
}
.statgrid__item:last-child { border-right: 0; }
.statgrid__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 800;
  padding-top: .14em;
  line-height: .84;
  letter-spacing: .005em;
  background: var(--silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.statgrid__label {
  display: block;
  margin-top: 16px;
  max-width: 22ch;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------------------------------------------------- horizontal rail --- */
.railhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}
.railhead .sechead { margin-bottom: 0; }
.railnav { display: flex; gap: 0; flex: 0 0 auto; }
.railnav button {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--fg);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, opacity .15s ease;
}
.railnav button + button { border-left: 0; }
.railnav button:hover { background: rgba(255, 255, 255, .07); }
.railnav button[disabled] { opacity: .3; cursor: default; }
.railnav[hidden] { display: none; }

/* ------------------------------------------------------- brand cards --- */
.bgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 20px;
}

.bcard {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--card);
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: border-color .2s ease, background .2s ease;
}
.bcard:hover { border-color: var(--line-2); background: var(--card-2); }

/* Media-style header block, echoing the reference's game cards. */
.bcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 26px 24px;
  background:
    radial-gradient(ellipse 80% 140% at 20% 0%, color-mix(in srgb, var(--brand-accent) 26%, transparent), transparent 68%),
    #101010;
  border-bottom: 1px solid var(--line);
}
.bcard__logo {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}
.bcard__logo img { max-height: 38px; width: auto; object-fit: contain; }

.bcard__score { text-align: right; flex: 0 0 auto; }
.bcard__scorenum {
  display: block;
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 800;
  line-height: .82;
  letter-spacing: .01em;
  color: var(--fg);
}

.stars { position: relative; display: inline-block; font-size: 13px; letter-spacing: 2px; line-height: 1; }
.stars__track { color: rgba(255, 255, 255, .16); }
.stars__fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--accent);
}

.bcard__name {
  padding: 24px 26px 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: .9;
  text-transform: uppercase;
}
.bcard__name a:hover { color: var(--accent); }

.licencechip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 18px 26px 0;
  padding: 14px 16px;
  background: #101010;
  border-left: 2px solid var(--ok);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 12.5px;
}
.licencechip__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ok);
  text-transform: uppercase;
  font-size: 10.5px;
}
.licencechip__nums { color: var(--muted); font-size: 12px; }
.licencechip__nums strong {
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .03em;
}
.licencechip__holder { width: 100%; color: var(--muted-2); font-size: 11.5px; line-height: 1.5; }
.licencechip__verify {
  color: var(--ok);
  font-weight: 600;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.licencechip__verify:hover { text-decoration: underline; }

.bcard__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 18px 26px 0;
}
.bcard__highlights li {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
}

.bcard__summary {
  margin: 18px 26px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.66;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bcard__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 22px 0 0;
  border-top: 1px solid var(--line);
}
.bcard__facts li {
  padding: 14px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--line);
}
.bcard__facts li:nth-child(odd) { border-right: 1px solid var(--line); }
.bcard__facts span { font-size: 9.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-2); }
.bcard__facts strong { font-size: 14px; font-weight: 500; }

.bcard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 18px 26px 0;
}
.bcard__tags li {
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted-2);
}

.bcard__actions {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 10px;
  margin: auto 26px 0;
  padding-top: 24px;
}

.bcard__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 18px 0 0;
  padding: 14px 26px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted-2);
  line-height: 1.6;
}
.sponsortag {
  padding: 3px 8px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ------------------------------------------------------------- steps --- */
/* Numbered rows separated by hairlines rather than boxed cards. */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.step {
  padding: 34px 34px 38px 0;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.step:hover { background: rgba(255, 255, 255, .02); }
.step__n {
  display: block;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  line-height: .9;
  letter-spacing: .01em;
  color: var(--accent);
  margin-bottom: 18px;
}
.step__h { font-size: 21px; font-weight: 500; letter-spacing: -.02em; }
.step__p { margin-top: 12px; max-width: 40ch; font-size: 14px; color: var(--muted); line-height: 1.66; }

/* -------------------------------------------------------- feature duo --- */
/* The reference's burnt-orange panel paired with a dark one. */
.duo {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 18px;
}
.duopanel {
  position: relative;
  overflow: hidden;
  padding: 44px 40px;
  border-radius: var(--radius-xl);
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.duopanel--orange {
  padding-bottom: 168px;
  background: var(--burnt);
  background-image:
    radial-gradient(ellipse 90% 80% at 20% 0%, rgba(255, 160, 80, .30), transparent 70%),
    radial-gradient(rgba(0, 0, 0, .16) 1px, transparent 1px);
  background-size: auto, 4px 4px;
}
.duopanel--orange .eyebrow { color: rgba(255, 255, 255, .82); }
.duopanel--orange .eyebrow__dot { background: #fff; border-color: rgba(0, 0, 0, .35); }
.duopanel--dark { background: var(--card); padding-top: 178px; }
.duopanel__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 800;
  line-height: .86;
  letter-spacing: .01em;
  text-transform: uppercase;
  max-width: 12ch;
}
.duopanel__text {
  margin-top: 20px;
  max-width: 44ch;
  font-size: 14px;
  line-height: 1.66;
  color: rgba(255, 255, 255, .72);
}
.duopanel--orange .duopanel__text { color: rgba(255, 255, 255, .88); }

/* Diagonal marquee ribbon crossing the panel, as in the reference. */
.duopanel__ribbon {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: 108px;
  padding: 12px 0;
  transform: rotate(-5deg);
  background: #f2f2f0;
  overflow: hidden;
}
.duopanel--dark .duopanel__ribbon { top: 78px; bottom: auto; background: var(--burnt); }
.duopanel__ribbon ul {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  white-space: nowrap;
  justify-content: center;
}
.duopanel__ribbon li {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #101010;
}
.duopanel--dark .duopanel__ribbon li { color: #fff; }
/* The badge artwork is drawn in white for dark backgrounds — invert it so it
   reads against the light ribbon. */
.duopanel__ribbon img { height: 26px; width: auto; opacity: .8; filter: grayscale(1) invert(1); }

.duolist { list-style: none; display: grid; gap: 0; margin-top: auto; }
.duolist li { padding: 16px 0; border-top: 1px solid rgba(255, 255, 255, .12); }
.duolist h3 { font-size: 16px; font-weight: 500; letter-spacing: -.015em; }
.duolist p { margin-top: 5px; font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ---------------------------------------------------------- minicard --- */
.cardgrid { display: grid; gap: 0; }
.cardgrid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); border-top: 1px solid var(--line); }

.minicard {
  padding: 30px 30px 34px 0;
  border-bottom: 1px solid var(--line);
}
.minicard__tick {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  margin-bottom: 20px;
}
.minicard__h { font-size: 18px; font-weight: 500; letter-spacing: -.02em; }
.minicard__p { margin-top: 10px; max-width: 34ch; font-size: 13.5px; color: var(--muted); line-height: 1.62; }

/* --------------------------------------------------------- accordion --- */
.accordion { display: flex; flex-direction: column; border-top: 1px solid var(--line); }

.accordion__item { border-bottom: 1px solid var(--line); }

.accordion__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.32;
  color: var(--fg);
  transition: color .16s ease;
}
.accordion__q::-webkit-details-marker { display: none; }
.accordion__q svg { flex: 0 0 auto; color: var(--muted-2); transition: transform .22s ease, color .22s ease; }
.accordion__item[open] .accordion__q svg { transform: rotate(45deg); color: var(--accent); }
.accordion__q:hover { color: var(--accent); }

.accordion__a { padding: 0 4px 26px; }
.accordion__a p { font-size: 14.5px; color: var(--muted); line-height: 1.72; max-width: 72ch; }

.faqgroup { margin-bottom: 52px; }
.faqgroup__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--fg);
  margin-bottom: 6px;
}

.chipnav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.chipnav__item {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--fg-2);
  transition: all .15s ease;
}
.chipnav__item:hover { border-color: var(--accent); color: var(--accent); }

/* ---------------------------------------------------------- ctapanel --- */
.ctapanel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 52px;
  border-radius: var(--radius-xl);
  background: var(--card);
  overflow: hidden;
}
.ctapanel--compact { padding: 38px; }
.ctapanel__body { flex: 1 1 auto; }
.ctapanel__title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 400;
  letter-spacing: -.028em;
  line-height: 1.12;
  max-width: 20ch;
}
.ctapanel__title--sm { font-size: clamp(23px, 2.6vw, 30px); }
.ctapanel__text { margin-top: 18px; max-width: 62ch; color: var(--muted); font-size: 15px; line-height: 1.68; }
.ctapanel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.ctapanel__age { flex: 0 0 auto; }
p.ctapanel__age {
  width: auto; height: auto;
  border: 0; background: none;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted-2);
}

/* Slim launch-strip variant (reference: "Packs launching soon"). */
.ctastrip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 32px 38px;
  background: var(--card);
  border-radius: var(--radius-lg);
}
.ctastrip__title { font-size: 19px; font-weight: 500; letter-spacing: -.02em; }
.ctastrip__text { margin-top: 8px; max-width: 56ch; font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.ctastrip__text a { color: var(--accent); }
.ctastrip__text a:hover { text-decoration: underline; }

/* ------------------------------------------------- oversized closing CTA - */
.megacta {
  position: relative;
  padding-block: 132px 118px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 90% at 50% 120%, rgba(238, 115, 37, .16), transparent 70%);
}
.megacta__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(46px, 9.6vw, 140px);
  padding-top: .16em;
  line-height: .84;
  letter-spacing: .005em;
  background: var(--silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  max-width: 15ch;
  margin-inline: auto;
  text-wrap: balance;
}
/* Button overlaps the last line of type, exactly as in the reference. */
.megacta__btn {
  margin-top: -34px;
  display: inline-flex;
  transform: rotate(-2.4deg);
  box-shadow: 0 26px 50px -22px rgba(0, 0, 0, .9);
}
.megacta__note {
  margin-top: 42px;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted-2);
}

/* ------------------------------------------------------------ review --- */
.reviewhead {
  display: grid;
  grid-template-columns: auto 1fr minmax(240px, 300px);
  align-items: center;
  gap: 30px;
  margin-top: 10px;
}
.reviewhead__logo {
  display: grid;
  place-items: center;
  min-width: 158px;
  min-height: 88px;
  padding: 16px 20px;
  border-radius: var(--radius);
}
.reviewhead__logo img { max-height: 52px; width: auto; object-fit: contain; }

/* ------------------------------------------------------- logo plates --- */
/* Supplied brand artwork differs in polarity: Bacanaplay ships a dark,
   coloured mark that needs a white plate behind it, while GoldenPark ships a
   white mark that needs a dark one. `brand.logoPlate` selects the backing. */
.logoplate--light { background: #fff; border: 1px solid rgba(0, 0, 0, .10); }
.logoplate--dark  { background: #1c1c1c; border: 1px solid var(--line-2); }

.logoplate--xs {
  display: inline-grid;
  place-items: center;
  padding: 5px 9px;
  border-radius: 5px;
}
.logoplate--xs img { max-height: 18px; width: auto; object-fit: contain; }

.reviewhead__rating { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.reviewhead__num {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  line-height: .82;
  color: var(--accent);
}
.reviewhead__out { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); }
.reviewhead__lic { margin-top: 14px; font-size: 13px; color: var(--muted); }
.reviewhead__ctanote {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted-2);
  line-height: 1.6;
}

/* --------------------------------------------------------- licencebox -- */
.licencebox {
  padding: 40px;
  background: var(--card);
  border-radius: var(--radius-xl);
}
.licencebox__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--fg);
  margin-bottom: 26px;
}
.licencebox__title svg { color: var(--ok); }
.licencebox__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.licencebox__grid > div { padding: 18px 20px 18px 0; border-bottom: 1px solid var(--line); }
.licencebox__grid dt {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.licencebox__grid dd { margin: 0; font-size: 14px; color: var(--fg); line-height: 1.55; }
.licencebox__granted {
  margin-top: 24px;
  padding: 14px 18px;
  border-left: 2px solid var(--ok);
  background: var(--ok-soft);
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.6;
}
.licencebox__note { margin: 24px 0 20px; font-size: 12px; color: var(--muted-2); line-height: 1.6; }

.numchip {
  display: inline-block;
  padding: 2px 9px;
  margin-right: 5px;
  border-radius: 3px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent-2);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .06em;
}
.numchip--lg { font-size: 22px; padding: 2px 12px; }

.liclist { display: grid; gap: 0; margin-top: 26px; }
.liccard {
  padding: 24px 24px 24px 22px;
  background: #101010;
  border-left: 2px solid var(--ok);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.liclist .liccard + .liccard { margin-top: 12px; }
.liccard.is-suspended { border-left-color: var(--warn); }
.liccard__head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.liccard__type { font-weight: 500; font-size: 14.5px; }
.liccard__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 18px 0 0;
}
.liccard__grid dt {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.liccard__grid dd { margin: 0; font-size: 13.5px; color: var(--fg-2); line-height: 1.55; }
.liccard__docs { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 18px; }
.liccard__docs a {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
}
.liccard__docs a:hover { text-decoration: underline; }

.statuspill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.statuspill--ok { background: var(--ok-soft); border: 1px solid var(--ok-line); color: var(--ok); }
.statuspill--warn { background: var(--warn-soft); border: 1px solid rgba(251, 191, 36, .32); color: var(--warn); }

/* ------------------------------------------------------------ panels --- */
.splitcols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.splitcols--form { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }

.panel {
  padding: 36px;
  background: var(--card);
  border-radius: var(--radius-xl);
}
.panel__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.panel__note { margin-top: 20px; font-size: 12.5px; color: var(--muted-2); line-height: 1.62; }

.factlist { display: grid; gap: 0; margin: 0; border-top: 1px solid var(--line); }
.factlist > div {
  display: grid;
  grid-template-columns: minmax(120px, 38%) 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.factlist dt { font-size: 10px; text-transform: uppercase; letter-spacing: .13em; color: var(--muted-2); padding-top: 3px; }
.factlist dd { margin: 0; font-size: 13.5px; color: var(--fg); line-height: 1.55; }
.factlist a { color: var(--accent); }
.factlist a:hover { text-decoration: underline; }

.scorelist { list-style: none; display: grid; gap: 14px; }
.scorerow { display: grid; grid-template-columns: minmax(88px, 26%) 1fr auto; align-items: center; gap: 16px; }
.scorerow__label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); }
.scorerow__bar { height: 4px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.scorerow__bar span { display: block; height: 100%; background: var(--accent); }
.scorerow__val { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--fg); }

.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.proscons__col h3 { font-size: 10.5px; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 14px; font-weight: 700; }
.proscons__col--pro h3 { color: var(--accent); }
.proscons__col--con h3 { color: var(--danger); }
.proscons__col ul { list-style: none; display: grid; gap: 10px; }
.proscons__col li { position: relative; padding-left: 20px; font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.proscons__col li::before { position: absolute; left: 0; top: -1px; font-weight: 700; }
.proscons__col--pro li::before { content: '+'; color: var(--accent); }
.proscons__col--con li::before { content: '−'; color: var(--danger); }

.helplist { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: 22px; }
.helplist li { padding: 16px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; border-bottom: 1px solid var(--line); }
.helplist strong { font-size: 14px; font-weight: 500; }
.helplist span { font-size: 13px; color: var(--muted); }
.helplist a { color: var(--accent); }
.helplist a:hover { text-decoration: underline; }

/* ------------------------------------------------------------- prose --- */
.prose { max-width: 72ch; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .96;
  margin-top: 54px;
  margin-bottom: 18px;
  scroll-margin-top: 110px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 17px; font-size: 15.5px; color: var(--fg-2); line-height: 1.76; }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 20px; }
.prose li { margin-bottom: 10px; font-size: 15px; color: var(--fg-2); line-height: 1.7; }
.prose li::marker { color: var(--accent); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.prose--legal h2 { font-size: clamp(22px, 2.4vw, 30px); margin-top: 44px; }
.prose--legal p, .prose--legal li { font-size: 14.5px; color: var(--muted); }

.toc {
  padding: 28px 0 4px;
  border-top: 1px solid var(--line);
  margin-bottom: 52px;
}
.toc__title { font-size: 10.5px; text-transform: uppercase; letter-spacing: .16em; color: var(--muted-2); margin-bottom: 18px; }
.toc ol { padding-left: 20px; display: grid; gap: 9px; }
.toc li { font-size: 13.5px; color: var(--muted); }
.toc li::marker { color: var(--muted-2); }
.toc a:hover { color: var(--accent); }

.legalnav { display: flex; flex-wrap: wrap; gap: 8px; }
.legalnav__item {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--fg-2);
}
.legalnav__item:hover { border-color: var(--accent); color: var(--accent); }
.legalnav__item.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

/* ------------------------------------------------------------ tables --- */
.tablewrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  background: var(--card);
  -webkit-overflow-scrolling: touch;
}
.dtable { width: 100%; border-collapse: collapse; min-width: 660px; font-size: 13.5px; }
.dtable th, .dtable td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.dtable thead th {
  background: #101010;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted-2);
  white-space: nowrap;
}
.dtable tbody th { font-weight: 500; color: var(--fg); }
.dtable tbody td { color: var(--muted); }
.dtable tbody tr:last-child th, .dtable tbody tr:last-child td { border-bottom: 0; }
.dtable a { color: var(--accent); }
.dtable a:hover { text-decoration: underline; }

/* -------------------------------------------------------------- form --- */
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; color: var(--muted); }
.field label span { color: var(--danger); }

.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: #101010;
  border: 1px solid var(--line);
  border-radius: var(--radius-btn);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color .15s ease;
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field [aria-invalid="true"] { border-color: var(--danger); }
.field__err { font-size: 12.5px; color: var(--danger); }

.field--check { grid-template-columns: auto 1fr; align-items: start; gap: 12px; }
.field--check input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--accent); }
.field--check label { font-size: 12.5px; text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--muted); line-height: 1.6; }
.field--check a { color: var(--accent); text-decoration: underline; }
.field--check .field__err { grid-column: 1 / -1; }

.form__note { font-size: 11.5px; color: var(--muted-2); line-height: 1.6; }

.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; }
.alert strong { display: block; font-size: 14.5px; margin-bottom: 4px; }
.alert p { font-size: 13.5px; line-height: 1.6; }
.alert--ok { background: var(--ok-soft); border: 1px solid var(--ok-line); color: var(--ok); }
.alert--err { background: rgba(255, 107, 90, .1); border: 1px solid rgba(255, 107, 90, .32); color: var(--danger); }

/* ------------------------------------------------------------ footer --- */
.site-footer {
  padding-block: 72px 30px;
  background: #101010;
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 44px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--line);
}
.footer-age__line { font-size: 14px; font-weight: 500; color: var(--fg); line-height: 1.55; }
.footer-age__sub { margin-top: 8px; max-width: 88ch; font-size: 12.5px; color: var(--muted-2); line-height: 1.6; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, .82fr)) minmax(0, .9fr);
  gap: 40px;
  padding-bottom: 52px;
}
.footer-about { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 40ch; }
.footer-about--muted { margin-top: 16px; font-size: 11.5px; color: var(--muted-2); }

.footer-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: var(--muted-2);
  margin-bottom: 20px;
}
.footer-title--center { text-align: center; }

.footer-list { list-style: none; display: grid; gap: 13px; }
.footer-list a, .footer-list button { font-size: 14px; font-weight: 500; color: var(--fg-2); transition: color .15s ease; }
.footer-list a:hover, .footer-list button:hover { color: var(--accent); }

/* social row + back-to-top rail */
.footer-col--rail { display: flex; flex-direction: column; align-items: flex-start; gap: 34px; }
.socials { display: flex; align-items: center; gap: 20px; list-style: none; }
.socials a { color: var(--fg); opacity: .85; transition: opacity .15s ease, color .15s ease; }
.socials a:hover { opacity: 1; color: var(--accent); }

/* logos row */
.footer-badges { padding-block: 44px; border-block: 1px solid var(--line); }
.badgerow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 26px;
  list-style: none;
}
.badgerow img {
  height: 38px;
  width: auto;
  opacity: .48;
  filter: grayscale(1);
  transition: opacity .18s ease, filter .18s ease;
}
.badgerow a:hover img { opacity: 1; filter: grayscale(0); }
.badgerow__age img { height: 38px; opacity: .85; filter: none; }

.footer-legalrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 30px;
}
.footer-legalnav { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.footer-legalnav a { color: var(--muted-2); }
.footer-legalnav a:hover { color: var(--fg); }
.footer-legalnav span { color: #2c2c2c; }
.footer-copy { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); }

/* ------------------------------------------------------- cookie bar --- */
.cookiebar {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(140%);
  z-index: 120;
  width: min(900px, calc(100vw - 32px));
  background: #131313;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform .34s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
  opacity: 0;
}
.cookiebar.is-open { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookiebar[hidden] { display: none; }

.cookiebar__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 24px 28px;
}
.cookiebar__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--fg);
}
.cookiebar__title svg { color: var(--accent); flex: 0 0 auto; }
.cookiebar__body { margin-top: 8px; font-size: 13px; color: var(--muted); line-height: 1.62; }
.cookiebar__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cookiebar__actions { display: flex; gap: 10px; flex: 0 0 auto; }

/* -------------------------------------------------------------- toast -- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  z-index: 130;
  padding: 13px 22px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius-btn);
  font-size: 12.5px;
  font-weight: 600;
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
.toast.is-open { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast[hidden] { display: none; }

/* -------------------------------------------------------- responsive --- */
@media (max-width: 1180px) {
  .footer-grid { grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr)); }
  .footer-col--rail { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (max-width: 1080px) {
  .reviewhead { grid-template-columns: auto 1fr; }
  .reviewhead__cta { grid-column: 1 / -1; }
  .duo { grid-template-columns: 1fr; }
  .duopanel { min-height: 400px; }
}

@media (max-width: 980px) {
  .navtoggle { display: grid; }

  .site-nav {
    position: fixed;
    inset: 116px 16px auto 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 26px;
    background: #131313;
    border: 1px solid var(--line-2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__list li + li { border-top: 1px solid var(--line); }
  .site-nav__list a { padding: 14px 2px; font-size: 22px; }
  .site-nav__list a::after { display: none; }
  .site-nav__tail { flex-direction: column; align-items: stretch; gap: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
  .langswitch { justify-content: center; }

  .statgrid { grid-template-columns: 1fr 1fr; }
  .statgrid__item:nth-child(2n) { border-right: 0; }
  .statgrid__item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .splitcols, .splitcols--form { grid-template-columns: 1fr; }
  .splithead { grid-template-columns: 1fr; gap: 32px; }
  .splithead__left { padding-right: 0; }
  .splithead__right { padding-left: 0; border-left: 0; }

  .section { padding-block: 76px; }
  .hero { min-height: auto; padding-block: 96px 52px; }
  .megacta { padding-block: 96px 88px; }
  .steps, .cardgrid--4 { grid-template-columns: 1fr 1fr; }
  .step, .minicard { padding-right: 24px; }
}

@media (max-width: 720px) {
  .wrap { padding-inline: 20px; }
  .watermark span { padding-inline: 20px; }

  .topbar__inner { flex-wrap: wrap; row-gap: 4px; }
  .topbar__text { font-size: 10px; flex: 1 1 auto; }
  .topbar__link { margin-left: 0; font-size: 10px; }

  .bgrid { grid-template-columns: 1fr; }
  .bcard__actions { grid-template-columns: 1fr; }
  .proscons { grid-template-columns: 1fr; }
  .steps, .cardgrid--4 { grid-template-columns: 1fr; }
  .step, .minicard { padding-right: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-col--about { grid-column: 1 / -1; }
  .footer-age { flex-direction: column; align-items: flex-start; gap: 16px; }

  .ctapanel { flex-direction: column; align-items: flex-start; gap: 28px; padding: 32px 26px; }
  .ctastrip { flex-direction: column; align-items: flex-start; gap: 24px; padding: 28px 24px; }
  .ctastrip .btn { width: 100%; }

  .cookiebar__inner { flex-direction: column; align-items: stretch; gap: 18px; }
  .cookiebar__actions { flex-direction: column-reverse; }
  .cookiebar__actions .btn { width: 100%; }

  .reviewhead { grid-template-columns: 1fr; gap: 20px; }
  .reviewhead__logo { justify-self: start; }

  .licencebox, .panel { padding: 26px 22px; }

  /* Keep the diagonal ribbon clear of the copy on narrow panels. */
  .duopanel { padding: 32px 26px; min-height: 340px; }
  .duopanel--orange { padding-bottom: 152px; }
  .duopanel--dark { padding-top: 168px; }
  .duopanel__ribbon { bottom: 72px; padding: 9px 0; }
  .duopanel--dark .duopanel__ribbon { top: 64px; }
  .duopanel__ribbon ul { gap: 22px; }
  .duopanel__ribbon li { font-size: 17px; }
  .duopanel__ribbon img { height: 20px; }
  .badgerow img { height: 32px; }
  .megacta__btn { margin-top: -6px; }
  .railhead { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 480px) {
  .statgrid { grid-template-columns: 1fr; }
  .statgrid__item { border-right: 0; }
  .statgrid__item + .statgrid__item { border-top: 1px solid var(--line); }
  .bcard__facts { grid-template-columns: 1fr; }
  .bcard__facts li:nth-child(odd) { border-right: 0; }
  .factlist > div { grid-template-columns: 1fr; gap: 5px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col--rail { flex-direction: column; align-items: flex-start; gap: 24px; }
  .btn { width: 100%; }
  .btn--plain { width: auto; }
}

/* ------------------------------------------------------------- print --- */
@media print {
  .topbar, .site-header, .cookiebar, .toast, .hero__glow, .hero__grid,
  .bcard__actions, .megacta, .watermark, .railnav { display: none !important; }
  body { background: #fff; color: #000; }
  body::after { display: none; }
}

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

/* ------------------------------------------------- structural wrappers --- */
/* Containers that only need to behave inside their flex/grid parent. */
.cookiebar__text { flex: 1 1 auto; min-width: 0; }
.reviewhead__main { min-width: 0; }
.footer-col { min-width: 0; }
.pagehead--review { padding-bottom: 40px; }
.review { display: block; }
