:root {
  /* RIK brand palette */
  --rik-blue: #004AAD;
  --rik-blue-2: #0a5fd1;
  --rik-blue-dark: #003888;
  --rik-blue-deep: #002a66;
  --rik-cream: #EAE1CE;
  --rik-cream-2: #f3ecdc;
  --rik-cream-soft: #f8f3e7;
  --rik-slate: #1a1b2e;
  --rik-slate-2: #33344B;
  --rik-gray: #73777F;

  /* Semantic */
  --bg: var(--rik-blue-dark);
  --bg-2: var(--rik-blue-deep);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(234, 225, 206, 0.15);
  --border-2: rgba(234, 225, 206, 0.28);
  --text: #ffffff;
  --text-2: rgba(255, 255, 255, 0.72);
  --text-3: rgba(255, 255, 255, 0.45);
  --accent: var(--rik-cream);
  --accent-2: #f5edd9;
  --accent-glow: rgba(234, 225, 206, 0.3);

  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1280px;
  --radius: 22px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.2,.8,.2,1);

  /* Klaring under fixed nav. Brukes som padding-top der hero/innhold starter på toppen.
     = nav top-offset (20px) + nav høyde + buffer. Justeres per breakpoint under. */
  --nav-h: 110px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ============================================================
   LOADING SCREEN — R = I − K (Resultat = Inntekt − Kostnad)
   Ren, rolig sekvens med ett delt easing-uttrykk (no bounce).
   Tynn aksentlinje under formelen tegnes opp som "tråd".
============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rik-blue-dark);
  transition: opacity 0.4s cubic-bezier(0.6, 0, 0.3, 1),
              visibility 0.4s cubic-bezier(0.6, 0, 0.3, 1);
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__sr {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.loader__equation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 32px);
  padding: 0 24px;
}
/* Tynn linje under hele formelen, tegnes opp først */
.loader__equation::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: 0;
  height: 1px;
  background: var(--rik-cream);
  opacity: 0.4;
  transform: translateX(-50%);
  animation: loader-line 0.55s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.loader__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.1vw, 14px);
  opacity: 0;
  transform: translateY(14px);
  animation: loader-reveal 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.loader__op {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  color: var(--rik-cream);
  line-height: 1;
  /* Skyves opp så de havner midt-i-bokstaven (kompenserer for etiketten under) */
  margin-bottom: calc(clamp(8px, 1.1vw, 14px) + clamp(10px, 1.2vw, 12px));
  opacity: 0;
  transform: translateY(14px);
  animation: loader-reveal 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.loader__letter {
  font-size: clamp(64px, 13vw, 152px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: var(--sans);
}
.loader__label {
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rik-cream);
  opacity: 0.6;
}

/* Snapp, jevn rytme — 0.07s mellom hver del (1 sek total) */
.loader__cell--r  { animation-delay: 0.05s; }
.loader__op--eq   { animation-delay: 0.12s; }
.loader__cell--i  { animation-delay: 0.19s; }
.loader__op--min  { animation-delay: 0.26s; }
.loader__cell--k  { animation-delay: 0.33s; }

@keyframes loader-reveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loader-line {
  to { width: min(360px, 70vw); opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
  .loader__cell, .loader__op, .loader__equation::after {
    opacity: 1;
    transform: none;
    animation: none;
    width: min(360px, 70vw);
  }
}
@media (max-width: 900px), (pointer: coarse) {
  body { cursor: auto; }
  .cursor { display: none !important; }
}

::selection { background: var(--rik-cream); color: var(--rik-blue-dark); }

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

/* ============ Custom cursor ============ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: absolute;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.cursor__ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease), border-color 0.25s, opacity 0.25s;
}
.cursor.is-hover .cursor__ring { transform: translate(-50%, -50%) scale(1.6); }
.cursor.is-hover .cursor__dot { opacity: 0; }

/* ============ Til toppen-knapp (floating) ============ */
.to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  background: var(--rik-blue);
  color: #fff;
  border: 1px solid var(--rik-blue);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 28px -10px rgba(0, 42, 102, 0.4);
  -webkit-tap-highlight-color: transparent;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0s, background 0.3s ease, box-shadow 0.3s ease;
}
.to-top:hover {
  background: var(--rik-blue-dark);
  box-shadow: 0 18px 36px -10px rgba(0, 42, 102, 0.5);
  transform: translateY(-2px);
}
.to-top svg { display: block; }
@media (max-width: 640px) {
  .to-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
}

/* ============ Progress bar ============ */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--rik-cream);
  z-index: 100;
  transition: width 0.1s linear;
}

/* ============ Navigation ============ */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 10px 12px 10px 22px;
  background: rgba(0, 42, 102, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 100px;
  z-index: 90;
  transition: transform 0.5s var(--ease), opacity 0.4s ease;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.3);
}
.nav.is-hidden {
  transform: translateX(-50%) translateY(-150%);
  opacity: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  padding: 2px 4px;
}
.nav__logo-img {
  height: 34px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
              opacity 0.25s ease;
}
.nav__logo:hover .nav__logo-img {
  transform: scale(1.08);
  opacity: 0.95;
}
.nav__logo:active .nav__logo-img {
  transform: scale(1.02);
  transition-duration: 0.1s;
}
.nav__logo-text {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.nav__logo-text .dot {
  color: var(--rik-cream);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  margin-left: 1px;
}

.nav__links { display: flex; gap: 2px; }
.nav__links a {
  position: relative;
  display: block;
  padding: 9px 16px;
  font-size: 13.5px;
  color: var(--text-2);
  border-radius: 100px;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav__links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::before, .nav__links a.is-active::before { opacity: 1; transform: scale(1); }
.nav__links a.is-active { color: var(--rik-cream); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 10px 18px;
  background: var(--rik-cream);
  color: var(--rik-blue-dark);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.3s var(--ease);
}
.nav__cta svg {
  background: var(--rik-blue-dark);
  color: var(--rik-cream);
  padding: 5px;
  border-radius: 100px;
  width: 24px; height: 24px;
  transition: transform 0.3s var(--ease);
}
.nav__cta:hover { background: #fff; }
.nav__cta:hover svg { transform: translateX(2px); }

/* Hamburger button — hidden on desktop */
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav__burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--rik-cream);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s ease, width 0.3s ease;
}
.nav__burger:hover { background: rgba(255,255,255,0.1); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--rik-blue-dark);
  background-image: radial-gradient(ellipse at top, rgba(234, 225, 206, 0.08), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  padding: 90px 36px 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s linear 0.4s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0s linear 0s;
}
.mobile-menu a {
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  padding: 8px 0;
  transition: color 0.25s ease, transform 0.4s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.is-open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open a:nth-child(1) { transition-delay: 0.10s; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 0.34s; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: 0.40s; }
.mobile-menu.is-open a:nth-child(7) { transition-delay: 0.46s; }
.mobile-menu a:active { color: var(--rik-cream); }
.mobile-menu__cta {
  margin-top: 16px;
  padding: 14px 24px !important;
  background: var(--rik-cream);
  color: var(--rik-blue-dark) !important;
  border-radius: 100px;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}
.mobile-menu__back {
  font-size: 15px !important;
  color: var(--text-2) !important;
  font-weight: 500 !important;
  margin-top: 8px;
}
body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta span { display: inline; }
  .nav { gap: 10px; padding: 8px 10px 8px 16px; }
}
@media (max-width: 560px) {
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .nav__logo-mark { width: 28px; height: 28px; font-size: 17px; }
  .nav__logo-text { font-size: 14px; }
}

/* ============ Slide base ============ */
.slide {
  display: flex;
  align-items: center;
  position: relative;
  padding: 96px 0 96px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.slide:last-child { border-bottom: 0; }

.section-head { margin-bottom: 72px; max-width: 880px; }
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: none;
}

.section-num {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rik-cream);
  font-weight: 500;
}

.section-title {
  font-family: var(--sans);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: #fff;
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--rik-cream);
}

.section-lede {
  margin-top: 22px;
  font-size: 18px;
  color: var(--text-2);
  max-width: 620px;
  line-height: 1.55;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 24px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 0.3s var(--ease), color 0.3s, transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.btn > span { white-space: nowrap; }
.btn > span:first-child { padding-right: 6px; }
.btn__arrow {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}

.btn--primary {
  background: var(--rik-cream);
  color: var(--rik-blue-dark);
  border: 1px solid var(--rik-cream);
}
.btn--primary .btn__arrow { background: var(--rik-blue-dark); color: var(--rik-cream); }
.btn--primary:hover { background: #fff; box-shadow: 0 20px 50px -15px var(--accent-glow); }
.btn--primary:hover .btn__arrow { transform: rotate(-45deg); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-2);
  padding: 8px 22px;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Sekundær CTA — speiler primær (samme høyde + arrow-style) men i mørk transparent stil */
.btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--secondary .btn__arrow--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--secondary:hover .btn__arrow--ghost {
  background: var(--rik-cream);
  color: var(--rik-blue-dark);
  border-color: var(--rik-cream);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 14.5px;
  transition: color 0.2s, gap 0.3s var(--ease);
}
.link-arrow:hover { color: var(--rik-cream); gap: 14px; }

/* ============ HERO ============ */
.slide--hero {
  border-bottom: 1px solid var(--border);
  /* Topp-padding så nav (fixed på top:20px) ikke dekker eyebrow.
     Bunn-padding så hero__strip ikke overlapper actions.
     Bruker --nav-h som justeres per breakpoint. */
  padding: var(--nav-h) 0 110px;
  align-items: center;
  min-height: 100vh;
  background: var(--rik-blue-dark);
}

.aurora {
  position: absolute;
  inset: -20% -10% -10% -10%;
  z-index: 0;
  background:
    radial-gradient(ellipse 38% 28% at 12% 18%, rgba(234, 225, 206, 0.28), transparent 65%),
    radial-gradient(ellipse 32% 26% at 88% 14%, rgba(10, 95, 209, 0.55), transparent 65%),
    radial-gradient(ellipse 28% 22% at 72% 58%, rgba(245, 213, 71, 0.18), transparent 70%),
    radial-gradient(ellipse 45% 35% at 22% 75%, rgba(0, 42, 102, 0.75), transparent 65%),
    radial-gradient(ellipse 50% 38% at 88% 92%, rgba(10, 95, 209, 0.35), transparent 65%),
    radial-gradient(ellipse 60% 45% at 50% 50%, rgba(0, 56, 136, 0.4), transparent 70%);
  filter: blur(60px);
  animation: aurora-drift 28s ease-in-out infinite alternate;
  will-change: transform;
}

/* Floating orbs — myke, fargede sirkler som driver sakte */
.grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.grid-bg::before,
.grid-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.grid-bg::before {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(234, 225, 206, 0.35), rgba(234, 225, 206, 0) 70%);
  animation: orb-float-a 18s ease-in-out infinite alternate;
}
.grid-bg::after {
  width: 640px;
  height: 640px;
  bottom: -180px;
  left: -100px;
  background: radial-gradient(circle, rgba(10, 95, 209, 0.55), rgba(10, 95, 209, 0) 70%);
  animation: orb-float-b 24s ease-in-out infinite alternate;
}

/* Topografi-linjer — subtile bølger som gir dybde */
.slide--hero::before,
.slide--b-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(234, 225, 206, 0.12) 1px, transparent 0);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  opacity: 0.6;
}

@keyframes orb-float-a {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, 80px) scale(1.15); }
}
@keyframes orb-float-b {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(120px, -100px) scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .aurora,
  .grid-bg::before,
  .grid-bg::after { animation: none; }
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

/* ============ HERO SPLIT LAYOUT (tekst + illustrasjon) ============ */
.hero__inner--split {
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 48px;
  text-align: left;
}
.hero__inner--split .hero__title { text-align: left; }
.hero__inner--split .hero__lede {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 560px;
}
.hero__inner--split .hero__actions {
  justify-content: center;
  margin-top: 16px;
}
.hero__inner--split .eyebrow { display: inline-flex; }

/* Høyrekolonne — illustrasjon + knapper stablet vertikalt */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero__visual .hero__illustration { width: 100%; }
.hero__actions--under-img {
  justify-content: center;
  margin: 0;
}

.hero__illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroFloat 6s ease-in-out infinite;
}
.hero__illustration img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero__illustration:hover img {
  transform: translateY(-6px) scale(1.02);
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__illustration { animation: none; }
}

@media (max-width: 980px) {
  .hero__inner--split {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero__inner--split .hero__title,
  .hero__inner--split .hero__lede { text-align: center; }
  .hero__inner--split .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__inner--split .hero__actions { justify-content: center; }
  .hero__illustration img { max-width: 360px; }
}

@media (max-width: 640px) {
  .hero__illustration img { max-width: 280px; }
}

/* ============ HERO BENTO (Audi F1-inspirert) ============ */
.hero__bento {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
}

.hero__main {
  grid-column: 1;
  grid-row: 1 / 4;
  padding-right: 24px;
}
.hero__main .eyebrow {
  display: inline-flex;
  margin-bottom: 24px;
}
.hero__main .hero__title {
  font-size: clamp(44px, 7.5vw, 120px);
  text-align: left;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}
.hero__main .hero__lede {
  text-align: left;
  margin: 0 0 32px;
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 560px;
}
.hero__main .hero__actions {
  justify-content: flex-start;
}
.hero__dot {
  color: var(--rik-cream);
  font-family: var(--serif);
  font-style: italic;
}

/* Bento-tiles til høyre — klikkbare lenker */
.hero__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 26px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.5s var(--ease), background 0.4s, border-color 0.4s;
  min-height: 130px;
}
.hero__tile:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
  border-color: var(--rik-cream);
}
.hero__tile--1 { grid-column: 2; grid-row: 1; background: linear-gradient(135deg, rgba(0, 74, 173, 0.35), rgba(0, 42, 102, 0.55)); }
.hero__tile--2 { grid-column: 2; grid-row: 2; background: linear-gradient(135deg, rgba(51, 52, 75, 0.55), rgba(0, 74, 173, 0.35)); }
.hero__tile--3 { grid-column: 2; grid-row: 3; }

.hero__tile--accent {
  background: var(--rik-cream);
  color: var(--rik-blue-dark);
  border-color: var(--rik-cream);
}
.hero__tile--accent:hover {
  background: #f5edd9;
  border-color: #f5edd9;
}

.hero__tile-label {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rik-cream);
  font-weight: 500;
}
.hero__tile--accent .hero__tile-label {
  color: var(--rik-blue);
}

.hero__tile h3 {
  font-family: var(--sans);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: inherit;
  margin: 0;
  max-width: 280px;
}

.hero__tile-arrow {
  position: absolute;
  top: 22px; right: 22px;
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--rik-cream);
  transition: transform 0.4s var(--ease), background 0.3s;
}
.hero__tile--accent .hero__tile-arrow {
  background: var(--rik-blue);
  color: #fff;
}
.hero__tile:hover .hero__tile-arrow {
  transform: rotate(-45deg);
}

@media (max-width: 980px) {
  .hero__bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero__main { grid-column: 1; grid-row: auto; padding-right: 0; margin-bottom: 8px; }
  .hero__tile--1, .hero__tile--2, .hero__tile--3 { grid-column: 1; grid-row: auto; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  margin-bottom: 36px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(10px);
}
.dot-live {
  width: 6px; height: 6px;
  background: var(--rik-cream);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(54px, 9.5vw, 132px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin-bottom: 36px;
  color: #fff;
}
.hero__title em,
.hero__title .accent {
  font-style: normal;
  font-weight: 600;
  color: var(--rik-cream);
}
/* padding-bottom gir descender-plass for g/j/p/q/y siden overflow er hidden for reveal-animasjonen */
.reveal-line { display: block; overflow: hidden; padding-bottom: 0.18em; }
.reveal-line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.reveal-line.is-in > span { transform: translateY(0); }
.reveal-line:nth-child(1) > span { transition-delay: 0.1s; }
.reveal-line:nth-child(2) > span { transition-delay: 0.25s; }
.reveal-line:nth-child(3) > span { transition-delay: 0.4s; }

.hero__lede {
  max-width: 620px;
  margin: 0 auto 44px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-2);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero strip */
.hero__strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  background: var(--rik-cream);
  color: var(--rik-blue-dark);
  overflow: hidden;
  z-index: 2;
}
.strip__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.scroll-hint {
  position: absolute;
  bottom: 90px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  z-index: 2;
}
/* Skjul scroll-hint på trange viewports der den vil overlappe tekst */
@media (max-width: 1200px) {
  .scroll-hint { display: none; }
}
.scroll-hint__line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--text-3), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-hint__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--rik-cream), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* ============ ABOUT — BENTO (blue with cream cards) ============ */
.slide--about { background: var(--rik-blue-dark); }
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}
.bento__cell {
  position: relative;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px 26px 20px 28px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s, box-shadow 0.5s var(--ease);
}
.bento__cell:hover {
  transform: translateY(-6px) rotate(0);
  border-color: var(--border-2);
  background: var(--surface-2);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.5);
}

/* Menneskelig touch — hver boks lener seg litt forskjellig, som lapper festet på en oppslagstavle */
.bento__cell:nth-child(1) {
  transform: rotate(-0.4deg);
  border-radius: 28px 18px 24px 22px;
}
.bento__cell:nth-child(2) {
  transform: rotate(0.6deg);
  border-radius: 18px 26px 20px 28px;
}
.bento__cell:nth-child(3) {
  transform: rotate(-0.3deg);
  border-radius: 24px 22px 28px 18px;
}
.bento__cell:nth-child(4) {
  transform: rotate(0.4deg);
  border-radius: 20px 28px 22px 24px;
}

/* Fjernet washi-tape — for tung visuelt. Bruker subtilere markering i stedet */

.bento__cell--lg { grid-column: span 2; grid-row: span 2; padding: 48px 40px 44px; }

.bento__cell--accent {
  background: var(--rik-cream);
  color: var(--rik-blue-dark);
  border-color: transparent;
}
.bento__cell--accent:hover { background: #f5edd9; }
/* Bruk dobbel-class for å vinne specificity-konflikt med .bento__cell h3/p senere i fila */
.bento__cell.bento__cell--accent .bento__num { color: var(--rik-blue-dark); border-color: rgba(0, 42, 102, 0.2); }
.bento__cell.bento__cell--accent p { color: var(--rik-slate-2); }
.bento__cell.bento__cell--accent h3 { color: var(--rik-blue-dark); }

.bento__cell--dark {
  background: var(--rik-slate);
  color: #fff;
  border-color: transparent;
  grid-column: span 2;
}
.bento__cell.bento__cell--dark p { color: rgba(255,255,255,0.7); }

.bento__glow {
  position: absolute;
  top: -50%; right: -30%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(234, 225, 206, 0.15), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.bento__cell--lg:hover .bento__glow { opacity: 1; }

.bento__num {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1.5px solid var(--border-2);
  border-radius: 47% 53% 51% 49% / 50% 48% 52% 50%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--rik-cream);
  margin-bottom: 24px;
  transform: rotate(-4deg);
}
.bento__cell h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
  display: inline-block;
}
/* Hånd-tegnet understrekning under viktige ord — tynn, skissete strek (ikke fyllt markør) */
.bento__cell h3 em,
.bento__cell h3 .ink {
  position: relative;
  font-style: normal;
  z-index: 1;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' preserveAspectRatio='none'%3E%3Cpath d='M2 5 Q 30 1, 60 4 T 118 3' stroke='%23EAE1CE' stroke-width='2' fill='none' stroke-linecap='round' opacity='0.85'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.22em;
  padding-bottom: 0.05em;
}
.bento__cell p {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 480px;
}
.bento__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bento__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text-2);
}
.bento__list li span { color: var(--rik-cream); font-weight: 600; }

.bento__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--rik-cream);
  letter-spacing: 0.01em;
  transition: gap 0.3s var(--ease), color 0.2s;
  align-self: flex-start;
}
.bento__cta:hover { gap: 12px; color: #fff; }
.bento__cell--accent .bento__cta { color: var(--rik-blue-dark); border-top-color: rgba(255,255,255,0.4); }
.bento__cell--accent .bento__cta:hover { color: #fff; }

.bento__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
  height: 100%;
}
.bento__stats--3 { grid-template-columns: repeat(3, 1fr); }
.bento__stats > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bento__stats strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  color: var(--rik-cream);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.bento__stats span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell--lg, .bento__cell--dark { grid-column: span 1; }
  .bento__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============ NEWS — light section (palate cleanser) ============ */
.slide--news { background: var(--rik-cream-soft); }
.slide--news .section-title { color: var(--rik-slate-2); }
.slide--news .section-title em { color: var(--rik-blue); }
.slide--news .section-num { color: var(--rik-blue); }
.slide--news .link-arrow { color: var(--rik-slate-2); }
.slide--news .link-arrow:hover { color: var(--rik-blue); }

.news {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.news__featured,
.news__item {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(51, 52, 75, 0.08);
  border-radius: 22px 26px 20px 28px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.news__featured { transform: rotate(-0.3deg); border-radius: 26px 20px 24px 22px; }
.news__item:nth-child(1) { transform: rotate(0.4deg); border-radius: 18px 26px 22px 24px; }
.news__item:nth-child(2) { transform: rotate(-0.5deg); border-radius: 24px 18px 28px 20px; }
.news__item:nth-child(3) { transform: rotate(0.3deg); border-radius: 22px 24px 18px 28px; }
.news__featured:hover, .news__item:hover {
  transform: translateY(-6px) rotate(0);
  border-color: rgba(0, 74, 173, 0.3);
  box-shadow: 0 26px 56px -22px rgba(0, 42, 102, 0.3);
}
.news__featured { display: flex; flex-direction: column; }

.news__art {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.news__art--1 { background: linear-gradient(135deg, var(--rik-blue) 0%, var(--rik-blue-dark) 100%); }
.news__art--2 { background: linear-gradient(135deg, var(--rik-cream) 0%, #d4c8a5 100%); }
.news__art--3 { background: linear-gradient(135deg, var(--rik-slate-2) 0%, var(--rik-blue) 100%); }
.news__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.news__chip {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  color: var(--rik-blue-dark);
  border-radius: 100px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  z-index: 1;
}
.news__art--2 .news__chip { background: var(--rik-blue); color: #fff; }

/* "Kommer snart"-merke — shared mellom news (index) og event-cards (nyheter) */
.event-card__soon {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px 9px 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--rik-blue-dark);
  border-radius: 100px;
  font-size: 11.5px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px -2px rgba(0, 42, 102, 0.18);
}
.event-card__soon::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rik-blue);
  box-shadow: 0 0 0 0 rgba(0, 74, 173, 0.5);
  animation: soon-pulse 2.2s ease-in-out infinite;
}
@keyframes soon-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 74, 173, 0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(0, 74, 173, 0); }
}

.news__body { padding: 32px 36px 36px; }
.news__body time {
  display: block;
  font-size: 13px;
  color: var(--rik-gray);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.news__body h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.15;
  color: var(--rik-slate-2);
}
.news__body p {
  color: var(--rik-gray);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.news__link {
  display: inline-flex;
  color: var(--rik-blue);
  font-size: 14.5px;
  font-weight: 500;
}

.news__list { display: grid; gap: 20px; }
.news__item { display: grid; grid-template-columns: 160px 1fr; }
.news__item .news__art { aspect-ratio: auto; height: 100%; }
.news__item > div:last-child { padding: 24px 28px; }
.news__item time { font-size: 12.5px; color: var(--rik-gray); margin-bottom: 8px; }
.news__item h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.015em; color: var(--rik-slate-2); }
.news__item p { font-size: 14px; color: var(--rik-gray); line-height: 1.55; }

@media (max-width: 900px) {
  .news { grid-template-columns: 1fr; }
  .news__item { grid-template-columns: 1fr; }
  .news__item .news__art { aspect-ratio: 16/9; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
}

/* ============ BOARD / ROSTER — blue ============ */
.slide--board { background: var(--rik-blue-dark); }
.roster {
  position: relative;
  border-top: 1px solid var(--border-2);
}
.roster__row {
  display: grid;
  grid-template-columns: 80px 1.4fr 1fr 40px;
  align-items: center;
  gap: 20px;
  padding: 32px 12px;
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s var(--ease), background 0.4s;
  position: relative;
}
.roster__row:hover { padding-left: 28px; padding-right: 28px; background: rgba(234, 225, 206, 0.05); }
.roster__row::before {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0%;
  height: 1px;
  background: var(--rik-cream);
  transition: width 0.5s var(--ease);
}
.roster__row:hover::before { width: 100%; }

.roster__idx {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--text-3);
}
.roster__name {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  transition: color 0.3s ease;
}
.roster__row:hover .roster__name { color: var(--rik-cream); }
.roster__role {
  font-size: 14.5px;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.roster__arrow {
  font-size: 24px;
  color: var(--text-3);
  text-align: right;
  transition: transform 0.4s var(--ease), color 0.3s;
}
.roster__row:hover .roster__arrow { color: var(--rik-cream); transform: translateX(8px); }

.roster__preview {
  position: fixed;
  pointer-events: none;
  width: 280px;
  height: 360px;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.roster__preview.is-visible { opacity: 1; }
.roster__photo {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s var(--ease), transform 0.5s var(--ease);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}
.roster__photo::after {
  content: attr(data-photo);
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  color: rgba(255,255,255,0.85);
}
.roster__photo.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 700px) {
  .roster__row { grid-template-columns: 50px 1fr 40px; }
  .roster__role { display: none; }
  .roster__preview { display: none; }
}

/* ============ PARTNERS — deepest navy for max contrast ============ */
.slide--partners {
  background: var(--rik-blue-deep);
  padding-bottom: 120px;
  display: block; /* override .slide flex so container + marquees stack vertically */
}
.slide--partners > .container { display: block; }

/* Current-partners grid: 2 real + 1 empty-state ("Din bedrift?") */
.partners-now {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 64px;
}
.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 28px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #fff;
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
  overflow: hidden;
}
.partner-card:hover {
  transform: translateY(-6px);
  border-color: var(--rik-cream);
  background: rgba(255, 255, 255, 0.07);
}
.partner-card__label {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rik-cream);
  background: rgba(234, 225, 206, 0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-bottom: 18px;
  font-weight: 500;
}
.partner-card strong {
  display: block;
  font-family: var(--sans);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.partner-card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.partner-card__link {
  font-size: 13.5px;
  color: var(--rik-cream);
  letter-spacing: 0.02em;
  transition: gap 0.3s var(--ease), color 0.2s;
  align-self: flex-start;
}
.partner-card:hover .partner-card__link { color: #fff; }

/* Empty-state — invitation card */
.partner-card--empty {
  background: transparent;
  border: 1.5px dashed rgba(234, 225, 206, 0.32);
}
.partner-card--empty:hover {
  background: rgba(234, 225, 206, 0.04);
  border-color: var(--rik-cream);
  border-style: dashed;
}
.partner-card--empty .partner-card__label {
  background: var(--rik-cream);
  color: var(--rik-blue-dark);
  border-color: var(--rik-cream);
  font-weight: 600;
}
.partner-card--empty strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--rik-cream);
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .partners-now { grid-template-columns: 1fr; gap: 12px; margin-bottom: 48px; }
}

/* Value-prop strip (numbers above tiers) */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.value-item {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.value-item:last-child { border-right: 0; }
.value-item strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  color: var(--rik-cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.value-item span {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.45;
  max-width: 220px;
}
@media (max-width: 900px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(1), .value-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* Tiers — partnership packages */
.tiers { margin-bottom: 80px; }
.tiers__head { margin-bottom: 48px; max-width: 720px; }
.tiers__head .section-num { color: var(--rik-cream); }
.tiers__head h3 {
  font-family: var(--sans);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.05;
}
.tiers__head p {
  font-size: 16px;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.55;
}

.tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s, box-shadow 0.4s;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.tier::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(234, 225, 206, 0.08), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.tier:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 225, 206, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(234, 225, 206, 0.06);
}
.tier:hover::before { opacity: 1; }
.tier > * { position: relative; z-index: 1; }

.tier__head { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.tier__badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rik-cream);
  background: rgba(234, 225, 206, 0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-bottom: 18px;
  font-weight: 500;
}
.tier__head h4 {
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.05;
}
.tier__head p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.5;
}

.tier__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.tier__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.tier__list li span {
  color: var(--rik-cream);
  font-weight: 700;
  flex-shrink: 0;
}
.tier__list li em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rik-cream);
  font-weight: 400;
}

.tier__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s var(--ease), gap 0.3s var(--ease), border-color 0.3s;
  align-self: flex-start;
}
.tier__cta:hover {
  background: var(--rik-cream);
  color: var(--rik-blue-dark);
  border-color: var(--rik-cream);
  gap: 14px;
}

/* Featured tier (Premium) — premium cream + animated gradient border */
.tier--featured {
  background: linear-gradient(180deg, #faf3e0 0%, var(--rik-cream) 100%);
  border-color: transparent;
  transform: scale(1.04) translateY(-4px);
  box-shadow:
    0 30px 70px -20px rgba(0, 42, 102, 0.4),
    0 0 0 1px rgba(245, 213, 71, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.tier--featured::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(245, 213, 71, 0.6), rgba(10, 95, 209, 0.5), rgba(245, 213, 71, 0.6));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: shimmer-border 6s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes shimmer-border {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.tier--featured:hover {
  background: linear-gradient(180deg, #fffaee 0%, #f5edd9 100%);
  border-color: transparent;
  transform: scale(1.04) translateY(-10px);
  box-shadow:
    0 50px 100px -30px rgba(0, 42, 102, 0.55),
    0 0 0 1px rgba(245, 213, 71, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.tier--featured::before { display: none; }
@media (prefers-reduced-motion: reduce) {
  .tier--featured::after { animation: none; }
}
.tier--featured .tier__head { border-bottom-color: rgba(0, 42, 102, 0.12); }
.tier--featured .tier__badge {
  background: var(--rik-blue);
  color: #fff;
  border-color: var(--rik-blue);
}
.tier--featured .tier__head h4,
.tier--featured .tier__head p { color: var(--rik-blue-dark); }
.tier--featured .tier__head p { color: var(--rik-slate-2); }
.tier--featured .tier__list li { color: var(--rik-slate-2); }
.tier--featured .tier__list li span { color: var(--rik-blue); }
.tier--featured .tier__list li em { color: var(--rik-blue); }
.tier--featured .tier__cta {
  background: var(--rik-blue);
  color: #fff;
  border-color: var(--rik-blue);
}
.tier--featured .tier__cta:hover {
  background: var(--rik-blue-dark);
  border-color: var(--rik-blue-dark);
}

.tier__flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 16px;
  background: linear-gradient(135deg, var(--rik-blue) 0%, var(--rik-blue-dark) 100%);
  color: #fff;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 8px 24px -4px rgba(0, 42, 102, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  z-index: 2;
}
.tier__flag::before {
  content: "★";
  margin-right: 6px;
  color: rgba(245, 213, 71, 0.9);
  font-size: 11px;
  letter-spacing: 0;
}

/* Gold tier — eksklusiv "presidential" stil med gull-aksent */
.tier--gold {
  background: linear-gradient(180deg, rgba(20, 25, 45, 0.6) 0%, rgba(0, 20, 50, 0.4) 100%);
  border-color: rgba(234, 225, 206, 0.35);
  box-shadow: inset 0 1px 0 rgba(234, 225, 206, 0.08);
}
.tier--gold::before {
  background: radial-gradient(circle at top right, rgba(245, 213, 71, 0.12), transparent 60%);
  opacity: 0.6;
}
.tier--gold:hover {
  border-color: var(--rik-cream);
  background: linear-gradient(180deg, rgba(25, 30, 55, 0.7) 0%, rgba(0, 30, 70, 0.5) 100%);
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(245, 213, 71, 0.2),
    inset 0 1px 0 rgba(234, 225, 206, 0.12);
}
.tier--gold .tier__badge {
  background: var(--rik-cream);
  color: var(--rik-blue-dark);
  border-color: var(--rik-cream);
  font-weight: 600;
}

@media (max-width: 900px) {
  .tiers__grid { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-6px); }
}

.marquee {
  overflow: hidden;
  padding: 24px 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee--top { border-top: 1px solid var(--border); margin-top: 40px; }
.marquee--bottom { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 60px; }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(36px, 5.5vw, 76px);
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.02em;
}
.marquee__track--reverse { animation: marquee-reverse 50s linear infinite; }
.marquee__track span { transition: color 0.3s ease; }
.marquee__track span:hover { color: var(--rik-cream); }
.marquee__track i {
  font-style: normal;
  font-size: 0.4em;
  color: rgba(255,255,255,0.3);
}

.partners-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 44px 48px;
  background: var(--rik-cream);
  border: 1px solid var(--rik-cream);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  color: var(--rik-blue-dark);
}
.partners-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 74, 173, 0.08), transparent 60%);
  pointer-events: none;
}
.partners-cta h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  line-height: 1.2;
  position: relative;
  color: var(--rik-blue-dark);
}
.partners-cta p { color: var(--rik-slate-2); font-size: 15.5px; max-width: 540px; position: relative; }
.partners-cta .btn { position: relative; }
.partners-cta .btn--primary { background: var(--rik-blue); color: #fff; border-color: var(--rik-blue); }
.partners-cta .btn--primary .btn__arrow { background: #fff; color: var(--rik-blue); }
.partners-cta .btn--primary:hover { background: var(--rik-blue-dark); }

@media (max-width: 900px) {
  .partners-cta { grid-template-columns: 1fr; padding: 32px; }
}

/* ============ FOOTER-containing slides — tilpass høyden til innholdet
   (uten dette arver de min-height: 100vh fra .slide og lager tom plass) ============ */
.slide--footer,
.slide--b-final,
.slide--s-join,
.slide--a-cta,
.slide--k-form {
  min-height: auto;
}

.slide--footer {
  background: var(--rik-cream-soft);
  display: block;
  padding: 80px 0 50px;
  overflow: clip;
}
.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 36px 44px;
  background: #ffffff;
  border: 1px solid rgba(51, 52, 75, 0.08);
  border-radius: var(--radius);
  margin-bottom: 60px;
  box-shadow: 0 24px 60px -28px rgba(0, 42, 102, 0.12);
}
.footer-cta h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--rik-slate-2);
  line-height: 1.15;
  margin-bottom: 6px;
}
.footer-cta p {
  font-size: 15.5px;
  color: var(--rik-gray);
  line-height: 1.5;
}
.footer-cta .btn--primary {
  background: var(--rik-blue);
  color: #fff;
  border-color: var(--rik-blue);
}
.footer-cta .btn--primary .btn__arrow { background: #fff; color: var(--rik-blue); }
.footer-cta .btn--primary:hover { background: var(--rik-blue-dark); }
@media (max-width: 700px) {
  .footer-cta { grid-template-columns: 1fr; padding: 28px 26px; gap: 24px; }
  .slide--footer { padding: 60px 0 40px; }
}

/* ============ CONTACT — cream for warmth at the end ============ */
.slide--contact { background: var(--rik-cream-soft); }
.slide--contact .section-title { color: var(--rik-slate-2); }
.slide--contact .section-title em { color: var(--rik-blue); }
.slide--contact .section-num { color: var(--rik-blue); }
.slide--contact .section-lede { color: var(--rik-gray); }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
}
.contact__details {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__details > div {
  padding-top: 20px;
  border-top: 1px solid rgba(51, 52, 75, 0.12);
}
.contact__details span {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rik-gray);
  margin-bottom: 10px;
}
.contact__details a, .contact__details p {
  font-size: 17px;
  color: var(--rik-slate-2);
  letter-spacing: -0.01em;
  line-height: 1.5;
}
.contact__details a { transition: color 0.2s ease; }
.contact__details a:hover { color: var(--rik-blue); }
.contact__social { display: flex; gap: 20px; flex-wrap: wrap; }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px;
  background: #ffffff;
  border: 1px solid rgba(51, 52, 75, 0.08);
  border-radius: var(--radius);
  height: fit-content;
  box-shadow: 0 24px 60px -28px rgba(0, 42, 102, 0.18);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__form span {
  font-size: 11.5px;
  color: var(--rik-gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.contact__form input,
.contact__form textarea,
.contact__form select {
  padding: 14px 16px;
  background: var(--rik-cream-soft);
  border: 1px solid rgba(51, 52, 75, 0.1);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--rik-slate-2);
  transition: border-color 0.25s, background 0.25s;
  font-family: var(--sans);
  resize: none;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: var(--rik-gray); }
.contact__form input:focus,
.contact__form textarea:focus,
.contact__form select:focus {
  outline: none;
  border-color: var(--rik-blue);
  background: #fff;
}
.contact__form .btn--primary { background: var(--rik-blue); color: #fff; border-color: var(--rik-blue); margin-top: 12px; align-self: flex-start; }
.contact__form .btn--primary .btn__arrow { background: #fff; color: var(--rik-blue); }
.contact__form .btn--primary:hover { background: var(--rik-blue-dark); }

.footer {
  padding-top: 40px;
  border-top: 1px solid rgba(51, 52, 75, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px 40px;
  color: var(--rik-gray);
  font-size: 13px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--rik-slate-2);
  flex-shrink: 0;
}
.footer__brand .nav__logo-img {
  height: 28px;
  filter: brightness(0) saturate(100%) invert(11%) sepia(96%) saturate(2780%) hue-rotate(212deg) brightness(94%) contrast(106%);
}
.footer__brand .nav__logo-text { color: var(--rik-blue-dark); }
.footer__brand .nav__logo-text .dot { color: var(--rik-blue); }

/* Hvit logo + lys tekst når footer ligger på blå bakgrunn (bedrifter, styret) */
.slide--b-final .footer__brand .nav__logo-img,
.slide--s-join .footer__brand .nav__logo-img {
  filter: brightness(0) invert(1);
}
.slide--b-final .footer__brand,
.slide--s-join .footer__brand { color: rgba(255, 255, 255, 0.75); }
.slide--b-final .footer__brand .nav__logo-text,
.slide--s-join .footer__brand .nav__logo-text { color: #fff; }
.slide--b-final .footer__brand .nav__logo-text .dot,
.slide--s-join .footer__brand .nav__logo-text .dot { color: var(--rik-cream); }
.footer__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__social a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--rik-blue-dark);
  border: 1px solid rgba(0, 42, 102, 0.18);
  background: rgba(0, 42, 102, 0.02);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.3s ease;
}
.footer__social a:hover {
  color: #fff;
  background: var(--rik-blue);
  border-color: var(--rik-blue);
  transform: translateY(-2px);
}
.footer__social svg { width: 18px; height: 18px; display: block; }

/* Hvit-tema social-ikoner på blå footer */
.slide--b-final .footer__social a,
.slide--s-join .footer__social a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}
.slide--b-final .footer__social a:hover,
.slide--s-join .footer__social a:hover {
  color: var(--rik-blue-dark);
  background: var(--rik-cream);
  border-color: var(--rik-cream);
}
.footer__copy {
  text-align: right;
  line-height: 1.6;
  flex-shrink: 0;
  /* Mørkere enn --rik-gray for å bestå WCAG AA-kontrast (≥ 4.5:1) på cream-bakgrunn */
  color: #4f5560;
}
.footer__copy a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(79, 85, 96, 0.5);
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.footer__copy a:hover {
  color: var(--rik-blue);
  text-decoration-color: var(--rik-blue);
}
.footer__credit {
  display: inline-block;
  margin-top: 8px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  opacity: 0.75;
}


@media (max-width: 700px) {
  .footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-top: 32px;
  }
  .footer__brand, .footer__social, .footer__copy {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .slide { padding: 120px 0 80px; }
  .scroll-hint { display: none; }
}

/* =============================================================
   GLOBAL RESPONSIVE PASS — fix iOS zoom, padding, typography,
   touch-targets, and viewport units across all screen sizes.
============================================================= */

/* Use dynamic viewport units so hero doesn't get cut by mobile address bars */
.slide--hero { min-height: 100vh; min-height: 100dvh; }

/* Prevent any horizontal overflow caused by marquees, aurora etc.
   Use `clip` instead of `hidden` so position: sticky still works
   on descendants (sticky breaks when an ancestor has overflow: hidden). */
html, body { overflow-x: clip; max-width: 100%; }

/* iOS Safari: prevent zoom-on-focus by enforcing 16px on inputs */
input, textarea, select {
  font-size: 16px !important;
  -webkit-appearance: none;
  appearance: none;
}

/* Tablet (≤1100px): tighter grids and spacing */
@media (max-width: 1100px) {
  .container { padding: 0 28px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell--lg { grid-column: span 2; grid-row: span 1; }
  .bento__cell--dark { grid-column: span 2; }
  .bento__stats { grid-template-columns: repeat(4, 1fr); }
  .section-head { margin-bottom: 56px; }
}

/* Tablet (≤900px): single-column for most grids */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .slide { padding: 110px 0 70px; }
  .section-head { margin-bottom: 44px; }
  .section-title { font-size: clamp(32px, 6vw, 52px); }
  .section-lede { font-size: 16.5px; }
  .hero__title { font-size: clamp(44px, 11vw, 96px); margin-bottom: 28px; }
  .hero__lede { font-size: 16px; margin-bottom: 32px; }
  .hero__actions { gap: 10px; }
  .btn { font-size: 14px; padding: 7px 7px 7px 18px; }
  .btn--ghost { padding: 7px 18px; }
  .btn__arrow { width: 28px; height: 28px; }
}

/* Phone (≤640px): compact paddings + stack everything */
@media (max-width: 640px) {
  /* Mindre nav på mobil (kompakt nav + burger) → mindre klaring */
  :root { --nav-h: 92px; }
  .container { padding: 0 20px; }
  .slide { padding: 96px 0 60px; }
  /* Hero beholder --nav-h som padding-top så nav ikke dekker eyebrow.
     Tidligere `padding: 0` forårsaket overlapp på mobil. */
  .slide--hero { padding-top: var(--nav-h); padding-bottom: 70px; }
  .section-head { margin-bottom: 36px; }
  .section-title { font-size: clamp(28px, 8vw, 40px); letter-spacing: -0.03em; }
  .section-lede { font-size: 15.5px; margin-top: 18px; }
  .section-num { margin-bottom: 16px; font-size: 11px; }

  /* Hero */
  .hero__title { font-size: clamp(40px, 13vw, 64px); margin-bottom: 24px; padding: 0 4px; }
  .hero__lede { font-size: 15px; padding: 0 8px; margin-bottom: 28px; }
  .hero__actions { gap: 10px; padding: 0 4px; }
  .eyebrow { font-size: 10.5px; padding: 6px 14px; margin-bottom: 24px; letter-spacing: 0.14em; }
  .hero__strip { padding: 14px 0; }
  .strip__track { font-size: 12px; gap: 24px; }

  /* Bento */
  .bento { grid-template-columns: 1fr; gap: 12px; }
  .bento__cell, .bento__cell--lg { grid-column: span 1; padding: 28px 24px; }
  .bento__cell h3 { font-size: 22px; }
  .bento__cell--dark { grid-column: span 1; }
  .bento__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .bento__stats strong { font-size: clamp(36px, 10vw, 48px); }
  .bento__list { margin-top: 20px; }
  .bento__list li { padding: 12px 0; font-size: 14px; }

  /* News */
  .news { grid-template-columns: 1fr; gap: 16px; }
  .news__body { padding: 24px 24px 28px; }
  .news__body h3 { font-size: 22px; }
  .news__item { grid-template-columns: 1fr; }
  .news__item .news__art { aspect-ratio: 16/9; height: auto; }
  .news__item > div:last-child { padding: 20px 24px 24px; }

  /* Roster */
  .roster__row { grid-template-columns: 40px 1fr 28px; gap: 14px; padding: 22px 8px; }
  .roster__row:hover { padding-left: 14px; padding-right: 14px; }
  .roster__role { display: none; }
  .roster__name { font-size: 21px; }
  .roster__idx { font-size: 17px; }
  .roster__arrow { font-size: 18px; }

  /* Partners + tiers */
  .marquee__track { font-size: clamp(28px, 9vw, 44px); gap: 28px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); margin-bottom: 56px; }
  .value-item { padding: 24px 16px; }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(1), .value-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .tiers__grid { grid-template-columns: 1fr; gap: 12px; }
  .tier { padding: 28px 24px 24px; }
  .tier--featured { transform: none; }
  .tier--featured:hover { transform: translateY(-4px); }
  .tier__head h4 { font-size: 26px; }
  .partners-cta { grid-template-columns: 1fr; padding: 28px 24px; gap: 24px; }
  .partners-cta h3 { font-size: 22px; }

  /* Contact */
  .contact { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .contact__form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  .contact__details { gap: 20px; margin-top: 32px; }
  .contact__details > div { padding-top: 18px; }
  .contact__details a, .contact__details p { font-size: 16px; }
  .contact__social { gap: 14px; }

  /* Footer */
  .footer { padding-top: 28px; flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Very small phones (≤380px) */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 38px; }
  .section-title { font-size: 26px; }
  .nav { padding: 6px 8px 6px 14px; gap: 8px; }
}

/* Touch device — disable hover-based animations that feel sticky */
@media (hover: none) and (pointer: coarse) {
  .scroll-hint { display: none; }
  .grid-bg { opacity: 0.6; }
  /* Disable transform-based hovers; tap should feel direct */
  .bento__cell:hover,
  .news__featured:hover,
  .news__item:hover,
  .tier:hover,
  .why-card:hover { transform: none; }
  .roster__row:hover { padding-left: 12px; padding-right: 12px; }
}

/* Larger screens (≥1600px): cap line lengths */
@media (min-width: 1600px) {
  :root { --max: 1360px; }
}

