/* ===========================================================================
   Sweet BEAD — recruitment site
   Visual DNA from the Sweet BEAD Design System: navy + peach moon, cream paper,
   sage/mint dusk, Fredoka (display) + Nunito (body), very rounded, soft navy
   shadows, dashed "stitch" lines, moon-bubble numbers, circular cream wells.
   =========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  --navy:        #003579;
  --navy-700:    #0a3d7a;
  --navy-600:    #15539c;
  --navy-050:    #e8eff8;
  --peach:       #ffbe70;
  --peach-700:   #f0961f;
  --peach-100:   #ffeed4;
  --cream:       #fef1da;
  --cream-50:    #fff8ec;
  --sage:        #90aeb0;
  --sage-100:    #dde8e7;
  --mint:        #8ccdb0;
  --mint-100:    #e3f2ea;
  --mint-strong: #3f9e74;

  --ink:         #1f3243;
  --ink-muted:   #5a6b78;
  --line:        #e7e1d2;
  --line-cool:   #d8e0e6;
  --white:       #ffffff;

  --font-display: 'Fredoka', 'Baloo 2', 'Segoe UI Rounded', system-ui, sans-serif;
  --font-body:    'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --shadow-sm:  0 4px 14px rgba(0,53,121,.08);
  --shadow-md:  0 8px 24px rgba(0,53,121,.10);
  --shadow-lg:  0 18px 48px rgba(0,53,121,.16);

  --r-card: 28px;
  --r-lg:   24px;
  --r-pill: 999px;

  --maxw: 1080px;
  --pad:  clamp(20px, 5vw, 48px);
}

/* --- Reset / base --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); color: var(--navy); line-height: 1.15; margin: 0; font-weight: 600; overflow-wrap: break-word; }
p { margin: 0 0 1em; text-wrap: pretty; }
a { color: var(--navy-600); }
strong { font-weight: 700; }

/* Skip link */
.skip-link {
  position: absolute; left: 16px; top: -56px;
  background: var(--navy); color: #fff; padding: 12px 18px;
  border-radius: 0 0 14px 14px; z-index: 100; font-weight: 700;
  transition: top .18s cubic-bezier(.33,0,.2,1);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid rgba(21,83,156,.55);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--peach-700);
  margin: 0 0 .5rem;
}

/* =========================================================================
   Co-brand strip (top)
   ========================================================================= */
.cobrand {
  background: var(--white);
  border-bottom: 1px solid var(--line-cool);
}
.cobrand {
  padding: 0 12px;
}
.cobrand .wrap {
  display: flex; align-items: center; gap: 14px;
  padding-block: 12px;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 640px) {
  .cobrand {
    padding: 0 16px;
  }
  .cobrand .wrap {
    flex-direction: column; gap: 10px; text-align: center;
  }
  .cobrand img { height: 32px; }
  .cobrand span { margin-left: 0; text-align: center; font-size: .95rem; }
}
.cobrand img { height: 38px; width: auto; }
.cobrand span {
  font-size: .88rem; color: var(--ink); font-weight: 600;
  margin-left: auto; text-align: right;
}
.cobrand span a {
  color: var(--navy); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
}
.cobrand span a:hover { color: var(--navy-600); }

/* =========================================================================
   Hero — night sky
   ========================================================================= */
.hero {
  position: relative;
  overflow: hidden;

  color: var(--cream-50);
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(255,190,112,.42), rgba(255,190,112,0) 46%),
    radial-gradient(90% 70% at 12% 110%, rgba(140,205,176,.30), rgba(140,205,176,0) 55%),
    linear-gradient(168deg, #00254f 0%, #003579 46%, #0c4488 100%);
}
.hero__stars {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .9;
}
.hero .wrap {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding-block: clamp(48px, 8vw, 88px);
}
.hero__intro { max-width: 720px; }

/* Hero trust card */
.hero__trust { justify-self: center; width: 100%; max-width: 400px; }
@media (max-width: 880px) {
  .hero__trust { margin-inline: auto; }
}
.trust-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.trust-card img {
  height: auto; max-height: 60px; width: auto; margin: 0 auto 20px;
}
.trust-card p {
  margin: 0; color: var(--ink); font-size: 1.08rem; line-height: 1.55;
}
.trust-card strong { color: var(--navy); }
.logo-badge {
  display: inline-flex;
  background: var(--cream-50);
  border-radius: 26px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.hero__logo {
  display: block;
  width: clamp(96px, 12vw, 124px);
  height: auto;
}
.hero__logo-wrap { display: flex; width: fit-content; margin-bottom: 24px; }
.hero .eyebrow { color: var(--peach); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: .35em;
}
.hero h1 .accent { color: var(--peach); }
.hero__lead {
  font-size: clamp(1.05rem, 1.9vw, 1.25rem);
  color: #dfeaf8;
  max-width: 30ch;
  margin-bottom: 1.6em;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note {
  margin-top: 1.4em; margin-bottom: 0;
  font-size: .95rem; color: #b9cce4;
  display: flex; align-items: center; gap: 9px;
}
.hero__note::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--mint); flex: none;
  box-shadow: 0 0 0 4px rgba(140,205,176,.22);
}

/* Illustration well */
.hero__art { justify-self: center; }
.well {
  position: relative;
  background: var(--cream);
  border-radius: 50%;
  padding: 14px;
  box-shadow: var(--shadow-lg), inset 0 0 0 6px var(--cream-50);
  width: clamp(220px, 32vw, 340px);
  aspect-ratio: 1;
}
.well img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* Wave divider under hero */
header.hero, main { display: block; margin: 0; padding: 0; }
.hero__wave { position: relative; z-index: 2; display: block; width: 100%; height: auto; margin-top: -1px; margin-bottom: -2px; line-height: 0; }

/* =========================================================================
   Section rhythm
   ========================================================================= */
section.band { padding-block: clamp(48px, 8vw, 80px); }
section.band:first-of-type { margin-top: -8px; position: relative; z-index: 1; }
.band--cream { background: var(--cream-50); }
.band--white { background: var(--white); }
.band--mint  { background: linear-gradient(180deg, var(--mint-100), var(--cream-50)); }

.section-head { max-width: 60ch; margin-bottom: clamp(22px, 4vw, 38px); }
.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  margin-bottom: .35em;
}
.section-head p { color: var(--ink-muted); font-size: 1.12rem; margin: 0; }

/* About layout */
.about {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.about__text p:last-child { margin-bottom: 0; }

/* Download card */
.download {
  margin-top: clamp(24px, 4vw, 36px);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.download .doc-ico {
  flex: none; width: 54px; height: 54px; border-radius: 15px;
  background: var(--navy-050); color: var(--navy-600);
  display: grid; place-items: center;
}
.download .doc-ico svg { width: 27px; height: 27px; }
.download .meta { flex: 1; min-width: 220px; }
.download .meta strong {
  display: block; color: var(--navy);
  font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; line-height: 1.25;
}
.download .meta span { font-size: .94rem; color: var(--ink-muted); }
.download .btn { margin-left: auto; }
@media (max-width: 560px) {
  .download .btn { margin-left: 0; width: 100%; justify-content: center; }
}

/* Stat callout */
.stat {
  background: var(--navy);
  color: var(--cream-50);
  border-radius: var(--r-card);
  padding: 32px 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.stat::after {
  content: ""; position: absolute; right: -36px; top: -36px;
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,190,112,.5), rgba(255,190,112,0) 70%);
}
.stat__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 3.4rem); line-height: 1; color: var(--peach);
  display: block; margin-bottom: 6px;
}
.stat p { margin: 0; color: #d7e3f5; font-size: 1.02rem; }

/* =========================================================================
   "Hvem kan deltage" — criteria
   ========================================================================= */
.criteria {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 14px;
}
.criteria li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.check {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--mint-100); color: var(--mint-strong);
  display: grid; place-items: center; margin-top: 1px;
}
.check svg { width: 17px; height: 17px; }
.criteria li span { font-weight: 600; color: var(--ink); }

/* small print note card */
.note-card {
  margin-top: 22px;
  background: var(--peach-100);
  border: 1px solid #f3d9a8;
  border-radius: var(--r-lg);
  padding: 18px 22px;
  color: #6a4d18;
  display: flex; gap: 14px; align-items: flex-start;
}
.note-card svg { flex: none; width: 22px; height: 22px; color: var(--peach-700); margin-top: 2px; }
.note-card p { margin: 0; font-size: .98rem; }
.note-card strong { color: #5a3f12; }

/* =========================================================================
   "Hvad indebærer" — steps (text list w/ moon bubbles)
   ========================================================================= */
.involve {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.steps { list-style: none; margin: 0; padding: 0; position: relative; }
.steps::before {
  content: ""; position: absolute; left: 21px; top: 22px; bottom: 22px;
  width: 0; border-left: 2px dashed var(--navy-600); opacity: .35;
}
.steps li {
  position: relative;
  display: grid; grid-template-columns: 44px 1fr; gap: 18px;
  align-items: start;
  padding-bottom: 26px;
}
.steps li:last-child { padding-bottom: 0; }
.bubble {
  z-index: 1;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(0,53,121,.28);
}
.steps li:nth-child(4) .bubble { background: var(--peach); color: var(--navy); }
.steps .step-title { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.18rem; margin: 4px 0 3px; }
.steps p { margin: 0; color: var(--ink); }
.steps li p:last-child { font-size: 1rem; line-height: 1.5; }
@media (max-width: 768px) {
  .involve {
    grid-template-columns: 1fr;
  }
  .steps li {
    gap: 16px;
  }
  .steps .step-title { font-size: 1.25rem; }
  .steps li p:last-child { font-size: 1.1rem; line-height: 1.6; }
}
@media (max-width: 560px) {
  .steps .step-title { font-size: 1.15rem; }
  .steps li p:last-child { font-size: 1rem; }
}

.involve__aside {
  position: sticky; top: 24px;
  display: grid; gap: 22px;
}
.facts {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.facts h3 { font-size: 1.2rem; margin-bottom: 14px; }
.facts dl { margin: 0; display: grid; gap: 14px; }
.facts .row { display: flex; gap: 14px; align-items: baseline; padding-bottom: 14px; border-bottom: 1px dashed var(--line); }
.facts .row:last-child { border-bottom: 0; padding-bottom: 0; }
.facts dt { flex: none; }
.facts dd {
  margin: 0; font-family: var(--font-display); font-weight: 600; color: var(--navy);
  font-size: 1.5rem; line-height: 1; width: 92px; flex: none;
}
.facts dt { color: var(--ink-muted); font-size: .98rem; }

.involve__art { display: none; }

/* =========================================================================
   CTA — tilmeld
   ========================================================================= */
.signup { position: relative; }
.signup__card {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(255,190,112,.32), rgba(255,190,112,0) 50%),
    linear-gradient(160deg, #00295a, #003579 60%, #0c4488);
  color: var(--cream-50);
  border-radius: var(--r-card);
  padding: clamp(30px, 5vw, 56px);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.signup__card h2 { color: #fff; font-size: clamp(1.7rem, 3.8vw, 2.4rem); margin-bottom: .4em; }
@media (max-width: 560px) {
  .signup__card {
    padding: 24px;
    gap: 20px;
  }
}
.signup__card .eyebrow { color: var(--peach); }
.signup__card p { color: #d7e3f5; margin-bottom: 0; max-width: 38ch; }

.contact-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg);
  padding: 26px;
  backdrop-filter: blur(2px);
}
@media (max-width: 560px) {
  .contact-box {
    padding: 20px;
  }
}
.contact-box .who { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-box .avatar {
  width: 50px; height: 50px; border-radius: 50%; flex: none;
  background: var(--peach); color: var(--navy);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
}
.contact-box .who .name { font-weight: 700; color: #fff; }
.contact-box .who .role { font-size: .9rem; color: #b9cce4; }
.contact-list { display: grid; gap: 12px; }
.contact-list a, .contact-list .inst {
  display: flex; align-items: center; gap: 12px;
  color: #eaf1fb; text-decoration: none; font-weight: 600;
  font-size: 1.02rem; word-break: break-word;
}
.contact-list a:hover { color: #fff; }
.contact-list .ico {
  flex: none; width: 38px; height: 38px; border-radius: 12px;
  background: rgba(255,255,255,.12); display: grid; place-items: center; color: var(--peach);
}
.contact-list .ico svg { width: 19px; height: 19px; }
.contact-list .inst { font-weight: 400; color: #b9cce4; font-size: .92rem; align-items: flex-start; }
.contact-list .inst .ico { color: #cde0d6; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.05rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  min-height: 48px;
  transition: transform .14s cubic-bezier(.33,0,.2,1), filter .14s, background .14s;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--peach); color: var(--navy); box-shadow: 0 6px 18px rgba(240,150,31,.35); }
.btn--primary:hover { filter: brightness(1.05); }
.btn--primary:active { transform: scale(.97); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--ghost:active { transform: scale(.97); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-md); }
.btn--navy:hover { background: var(--navy-700); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { font-size: 1.12rem; padding: 17px 30px; }
.criteria-cta { position: relative; display: flex; justify-content: center; align-items: flex-start; margin-top: 24px; padding-top: 8px; min-height: 430px; }
.guy-pointer { position: absolute; right: 24px; bottom: 130px; margin: 0; }
.guy-pointer img { display: block; width: 270px; height: auto; }
.speech-bubble {
  position: absolute;
  top: 18px;
  left: 244px;
  width: 240px;
  background: var(--cream, #FEF1DA);
  border: 1.5px solid #E7E1D2;
  color: var(--navy, #003579);
  border-radius: 20px;
  padding: 18px 22px;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,53,121,.10);
}
.speech-bubble::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 34px;
  border-width: 9px 14px 9px 0;
  border-style: solid;
  border-color: transparent var(--cream, #FEF1DA) transparent transparent;
  filter: drop-shadow(-1.5px 0 0 #E7E1D2);
}
@media (max-width: 960px) {
  .criteria-cta { position: static; flex-direction: column; min-height: 0; gap: 24px; }
  .guy-pointer { position: static; width: 100%; }
  .guy-pointer img { width: 220px; margin-left: auto; margin-right: 0; }
  .speech-bubble { position: static; width: auto; max-width: 320px; margin: 16px auto 0; }
  .speech-bubble::before { display: none; }
}

/* =========================================================================
   Formelt (small print)
   ========================================================================= */
.formal {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-bottom: 26px;
}
.formal .item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.formal .item h3 { font-size: 1.08rem; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.formal .item h3 svg { width: 20px; height: 20px; color: var(--navy-600); flex: none; }
.formal .item p { margin: 0; font-size: .98rem; color: var(--ink-muted); }
.formal-foot { font-size: .92rem; color: var(--ink-muted); max-width: 70ch; }

/* =========================================================================
   Footer
   ========================================================================= */
footer.site {
  background: var(--navy);
  color: #c6d6ec;
  position: relative;
  overflow: hidden;
}
footer.site .stars { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
footer.site .wrap { position: relative; z-index: 2; padding-block: clamp(44px, 6vw, 64px); }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 5vw, 48px);
}
footer.site h4 {
  font-family: var(--font-display); color: #fff; font-weight: 600;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  margin: 0 0 16px;
}
footer.site .brand-logo { display: block; width: 84px; }
footer.site .logo-badge { margin-bottom: 18px; padding: 12px; border-radius: 22px; }
footer.site p { font-size: .96rem; line-height: 1.6; margin: 0 0 .5em; }
footer.site a { color: #cfe0f6; }
.team { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: .94rem; }
.team .lead { color: #fff; font-weight: 700; }
.team span { color: #91a9cc; font-weight: 400; }

.foot-logos { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.foot-logos .chip {
  background: #fff; border-radius: 12px; padding: 9px 12px;
  display: grid; place-items: center; box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.foot-logos .chip img { height: 30px; width: auto; }
.foot-logos .chip--sd img { height: 40px; border-radius: 6px; }

/* Clickable Sweet Dreams chip */
.foot-logos .chip--link {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  padding-right: 30px;
  transition: transform .14s cubic-bezier(.33,0,.2,1), box-shadow .14s;
}
.foot-logos .chip--link::after {
  content: "";
  position: absolute; right: 11px; top: 50%;
  width: 11px; height: 11px;
  transform: translateY(-50%);
  background: no-repeat center/contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23003579' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7M9 7h8v8'/%3E%3C/svg%3E");
}
.foot-logos .chip--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.26);
}
.foot-logos .chip--link:focus-visible {
  outline: 3px solid var(--peach);
  outline-offset: 3px;
}

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: clamp(30px, 5vw, 44px); padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
  font-size: .88rem; color: #91a9cc;
}
.foot-bottom .tag { margin-left: auto; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; padding-block: clamp(40px, 9vw, 56px); }
  .hero__trust { grid-row: 2; max-width: 360px; margin: 4px auto 0; }
  .hero__lead { max-width: none; }
  .about { grid-template-columns: 1fr; }
  .involve { grid-template-columns: 1fr; }
  .involve__aside { position: static; }
  .signup__card { grid-template-columns: 1fr; }
  .formal { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .cobrand .wrap { flex-wrap: wrap; }
  .cobrand span { margin-left: 0; width: 100%; text-align: center; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom .tag { margin-left: 0; width: 100%; }
  .facts dd { font-size: 1.3rem; width: 78px; }
  /* Slightly tighter large buttons + full-width primary CTA for easy tapping */
  .btn--lg { padding: 15px 22px; }
  .criteria-cta .btn--primary { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
