:root {
  --og-bg: #111318;
  --og-panel: #1b1f27;
  --og-panel-raised: #202530;
  --og-text: #f4f5f6;
  --og-muted: #aeb5c1;
  --og-line: #303642;
  --og-purple: #9c7cff;
  --og-mint: #2fd9a6;
  --og-red: #ff6f7d;
  --og-yellow: #ffd166;
  --og-blue: #7dd3fc;
}

* { box-sizing: border-box; }

body.og-page {
  margin: 0;
  background: radial-gradient(circle at 75% -10%, #27203e 0, transparent 31rem), var(--og-bg);
  color: var(--og-text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.og-page-shell {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.og-header {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 76px !important;
  height: 76px !important;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.og-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: .5px;
  background: rgba(255, 255, 255, .04);
}

.og-brand {
  display: flex;
  height: 48px;
  min-width: 0;
  align-items: center;
}

.og-brand img {
  display: block;
  height: auto;
}

.og-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.og-nav a,
.og-drop button {
  padding: 8px 0;
  border: 0;
  background: none;
  color: #d8dbe2;
  font: 400 16px/1.2 "Segoe UI", system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.og-nav a:hover,
.og-drop button:hover { color: #fff; }

.og-nav a[aria-current="page"] {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.og-drop { position: relative; }

.og-drop-menu {
  display: none;
  position: absolute;
  z-index: 40;
  top: 100%;
  right: 0;
  min-width: 220px;
  padding: 9px;
  border: 1px solid var(--og-line);
  border-radius: 12px;
  background: var(--og-panel-raised);
  box-shadow: 0 18px 45px #0008;
}

.og-drop:hover .og-drop-menu,
.og-drop:focus-within .og-drop-menu { display: grid; }

.og-drop-menu a {
  padding: 11px 12px;
  border-radius: 8px;
}

.og-drop-menu a:hover { background: #2a303c; }

.og-hero.og-hero-photo {
  width: min(100%, 1120px);
  max-width: 1120px;
  margin: 54px auto 72px;
  display: grid;
  grid-template-columns: minmax(350px, .82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  text-align: left;
}

.og-hero-photo .og-hero-copy { min-width: 0; }

.og-hero.og-hero-photo .og-hero-copy .og-eyebrow {
  margin: 0 0 15px !important;
  text-align: left;
}

.og-hero.og-hero-photo .og-hero-copy h1 {
  margin: 0 0 24px !important;
  font-size: var(--ookgaaf-page-h1-size-desktop, 74px) !important;
  font-family: var(--ookgaaf-page-h1-font) !important;
  line-height: .96 !important;
  letter-spacing: -.065em !important;
}

.og-hero.og-hero-photo .og-hero-copy > p:not(.og-eyebrow) {
  max-width: 520px;
  margin: 0;
  color: var(--og-muted);
  font-size: 18px !important;
  line-height: 1.6;
}

.og-hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.og-hero-actions a {
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease;
}

.og-hero-primary {
  border: 1px solid var(--og-purple);
  background: var(--og-purple);
  color: #17131f !important;
}

.og-hero-secondary {
  border: 1px solid var(--og-line);
  background: rgba(20, 23, 30, .62);
}

.og-hero-actions a:hover { transform: translateY(-1px); }
.og-hero-primary:hover { background: #b09aff; }
.og-hero-secondary:hover { border-color: #697386; background: #202530; }
.og-hero-actions a:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.og-hero-visual {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 24px;
  background: #1b1f27;
  box-shadow: 0 32px 85px rgba(0, 0, 0, .44);
}

.og-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(17, 19, 24, .2), transparent 32%), linear-gradient(180deg, transparent 66%, rgba(9, 11, 15, .32));
  pointer-events: none;
}

.og-hero-photo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.og-home-page .og-hub {
  min-height: 100vh;
  padding: 0 24px;
}

.og-home-page .og-header {
  width: calc(100% + 48px);
  margin-right: -24px;
  margin-left: -24px;
}

.og-section,
.og-home-benefits,
.og-home-score,
.og-home-cta,
.og-footer {
  width: min(100%, 1120px);
  margin-right: auto;
  margin-left: auto;
}

.og-section-title {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 40px;
}

.og-section-kicker {
  margin: 0 0 10px !important;
  color: var(--og-purple);
  font-family: var(--ookgaaf-eyebrow-font) !important;
  font-size: var(--ookgaaf-eyebrow-size, 12px) !important;
  font-weight: var(--ookgaaf-eyebrow-weight, 600) !important;
  line-height: 1.3 !important;
  letter-spacing: .13em !important;
  text-transform: uppercase !important;
}

.og-section-title h2,
.og-home-benefits h2,
.og-home-score h2,
.og-home-cta h2 {
  margin: 0;
  color: #fff;
  font-family: var(--ookgaaf-page-h2-font);
  font-weight: var(--ookgaaf-page-h2-weight, 500);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.og-section-title h2 { font-size: var(--ookgaaf-page-h2-size-desktop, 40px); }

.og-section-title > p {
  margin: 0;
  color: var(--og-muted);
  font-size: 16px !important;
  line-height: 1.6;
}

.og-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.og-card {
  --card-accent: var(--og-purple);
  position: relative;
  min-height: 224px;
  padding: 23px;
  overflow: hidden;
  border: 1px solid var(--og-line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(32, 37, 48, .96), rgba(24, 28, 35, .96));
  color: #fff;
  text-decoration: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.og-card::before {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  top: -90px;
  right: -70px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--card-accent) 16%, transparent);
  filter: blur(4px);
  pointer-events: none;
}

.og-card::after {
  content: "↗";
  position: absolute;
  top: 22px;
  right: 22px;
  color: #7e8795;
  font-size: 20px;
  line-height: 1;
  transition: color .18s ease, transform .18s ease;
}

.og-card:hover {
  z-index: 1;
  border-color: color-mix(in srgb, var(--card-accent) 72%, var(--og-line));
  background: linear-gradient(145deg, #242a35, #1b1f27);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
  transform: translateY(-4px);
}

.og-card:hover::after { color: var(--card-accent); transform: translate(2px, -2px); }
.og-card:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.og-card.cijfers { --card-accent: var(--og-mint); }
.og-card.snellezen { --card-accent: #42c8ff; }
.og-card.rekenen { --card-accent: var(--og-red); }
.og-card.focus { --card-accent: var(--og-yellow); }
.og-card.kleurstrijd { --card-accent: #e879f9; }
.og-card.nback { --card-accent: var(--og-blue); }

.og-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 27px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--card-accent);
  color: #17191e;
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
}

.og-card small {
  display: block;
  color: var(--card-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
}

.og-card h3 {
  margin: 7px 0 8px;
  color: #fff;
  font-size: 20px;
  letter-spacing: -.035em;
}

.og-card p {
  margin: 0;
  color: var(--og-muted);
  font-size: 14px !important;
  line-height: 1.48;
}

.og-music-icon,
.og-focus-icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #17191e;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.og-focus-icon { stroke-width: 2.5; }
.og-focus-icon circle:last-child { fill: #17191e; stroke: none; }

.og-home-benefits {
  margin-top: 108px;
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid var(--og-line);
  border-radius: 28px;
  background: radial-gradient(circle at 95% 0, rgba(156, 124, 255, .17), transparent 34rem), rgba(24, 28, 35, .78);
}

.og-benefits-intro { max-width: 780px; }
.og-home-benefits h2 { font-size: var(--ookgaaf-page-h2-size-desktop, 40px); }
.og-home-benefits h2 span,
.og-home-score h2 span { color: var(--og-purple); }

.og-benefit-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.og-benefit-grid article {
  padding: 4px 30px 2px;
  border-left: 1px solid var(--og-line);
}

.og-benefit-grid article:first-child { padding-left: 0; border-left: 0; }
.og-benefit-grid article:last-child { padding-right: 0; }
.og-benefit-grid article > span { color: var(--og-purple); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.og-benefit-grid h3 { margin: 15px 0 9px; color: #fff; font-size: 20px; }
.og-benefit-grid p { margin: 0; color: var(--og-muted); font-size: 15px !important; line-height: 1.62; }

.og-home-score {
  margin-top: 112px;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.og-home-score h2 { font-size: var(--ookgaaf-page-h2-size-desktop, 40px); }
.og-home-score-copy > p:not(.og-section-kicker) { max-width: 520px; margin: 23px 0 0; color: var(--og-muted); font-size: 17px !important; line-height: 1.65; }
.og-home-score-copy > a { margin-top: 25px; display: inline-flex; gap: 9px; color: #fff; font-weight: 700; text-decoration: none; }
.og-home-score-copy > a span { color: var(--og-purple); transition: transform .16s ease; }
.og-home-score-copy > a:hover span { transform: translateX(4px); }

.og-score-preview {
  padding: 20px;
  border: 1px solid var(--og-line);
  border-radius: 24px;
  background: linear-gradient(145deg, #202530, #181c23);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
}

.og-score-preview-head { padding: 3px 4px 17px; display: flex; align-items: center; justify-content: space-between; }
.og-score-preview-head span { color: #fff; font-size: 17px; font-weight: 700; }
.og-score-preview-head small { color: var(--og-muted); font-size: 12px; }

.og-score-preview-row {
  --preview-accent: var(--og-purple);
  min-height: 74px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--og-line);
}

.og-score-preview-row.cijfers { --preview-accent: var(--og-mint); }
.og-score-preview-row.rekenen { --preview-accent: var(--og-red); }
.og-score-preview-row.focus { --preview-accent: var(--og-yellow); }
.og-score-preview-row.kleurstrijd { --preview-accent: #e879f9; }
.og-score-preview-row.nback { --preview-accent: var(--og-blue); }
.og-score-preview-row i { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: var(--preview-accent); color: #17191e; font-size: 14px; font-style: normal; font-weight: 900; }
.og-score-preview-row strong,
.og-score-preview-row span { display: block; }
.og-score-preview-row strong { color: #fff; font-size: 16px; }
.og-score-preview-row span { margin-top: 3px; color: var(--og-muted); font-size: 12px; }
.og-score-preview-row b { color: #747d8b; font-size: 18px; font-weight: 400; }

.og-home-cta {
  position: relative;
  margin-top: 112px;
  padding: clamp(42px, 6vw, 72px) 24px;
  overflow: hidden;
  border: 1px solid rgba(156, 124, 255, .33);
  border-radius: 28px;
  background: radial-gradient(circle at 50% -45%, rgba(156, 124, 255, .4), transparent 55%), linear-gradient(145deg, #202331, #171a21);
  text-align: center;
}

.og-home-cta h2 { font-size: var(--ookgaaf-page-h2-size-desktop, 40px); }
.og-home-cta > p:not(.og-section-kicker) { max-width: 600px; margin: 18px auto 0; color: var(--og-muted); font-size: 17px !important; line-height: 1.6; }
.og-home-cta-actions { margin-top: 28px; display: flex; justify-content: center; gap: 11px; }
.og-home-cta-actions a { min-height: 50px; padding: 0 19px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; color: #fff; font-size: 15px; font-weight: 700; text-decoration: none; }

.og-footer {
  margin-top: 70px;
  margin-bottom: 70px;
  min-height: 36px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #747d8b;
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
}

.og-home-page .og-copyright-bar {
  margin-right: -24px;
  margin-left: -24px;
}

.og-page-main {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 70px 24px 84px;
}

.og-page-intro { max-width: 760px; }

.og-page-eyebrow {
  margin: 0 0 15px !important;
  color: var(--og-purple) !important;
}

.og-page-main h1 {
  max-width: 820px;
  margin: 0 0 22px;
  color: #fff;
  font-size: var(--ookgaaf-page-h1-size-desktop, 74px);
  font-family: var(--ookgaaf-page-h1-font);
  font-weight: var(--ookgaaf-page-h1-weight, 500);
  line-height: 1;
  letter-spacing: -.055em;
}

.og-page-main h1 span { color: var(--og-purple); }

.og-page-lead {
  max-width: 710px;
  margin: 0;
  color: var(--og-muted);
  font-size: 19px;
  line-height: 1.65;
}

.og-profile-card,
.og-story,
.og-empty-state {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--og-line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--og-panel) 94%, transparent);
}

.og-profile-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.og-profile-identity { display: flex; min-width: 0; align-items: center; gap: 14px; }
.og-profile-avatar { display: grid; width: 50px; height: 50px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--og-purple); color: #17131f; font-weight: 800; }
.og-profile-copy { min-width: 0; }
.og-profile-copy strong { display: block; overflow: hidden; font-size: 20px; text-overflow: ellipsis; white-space: nowrap; }
.og-profile-copy span { display: block; margin-top: 3px; color: var(--og-muted); font-size: 13px; }

.og-small-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--og-line);
  border-radius: 10px;
  background: transparent;
  color: var(--og-text);
  font: inherit;
  cursor: pointer;
}

.og-small-button:hover { border-color: var(--og-purple); color: #fff; }

.og-score-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.og-score-summary article,
.og-score-card {
  border: 1px solid var(--og-line);
  background: linear-gradient(145deg, #202530, #191c23);
}

.og-score-summary article {
  padding: 20px;
  border-radius: 15px;
}

.og-score-summary strong,
.og-score-summary span { display: block; }
.og-score-summary strong { color: #fff; font-size: 30px; font-variant-numeric: tabular-nums; }
.og-score-summary span { margin-top: 4px; color: var(--og-muted); font-size: 13px; }

.og-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.og-score-card {
  padding: 22px;
  border-radius: 18px;
}

.og-score-card[data-game="cijfers"] { --card-accent: var(--og-mint); }
.og-score-card[data-game="rekenen"] { --card-accent: var(--og-red); }
.og-score-card[data-game="focus"] { --card-accent: var(--og-yellow); }
.og-score-card[data-game="kleurstrijd"] { --card-accent: #e879f9; }
.og-score-card[data-game="nback"] { --card-accent: var(--og-blue); }
.og-score-card h2 { margin: 0; color: var(--card-accent); font-size: 21px; }
.og-score-card dl { display: grid; grid-template-columns: 1fr auto; gap: 9px 16px; margin: 22px 0; }
.og-score-card dt { color: var(--og-muted); }
.og-score-card dd { margin: 0; color: #fff; font-weight: 700; font-variant-numeric: tabular-nums; }
.og-score-card a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

.og-story { margin-top: 42px; }
.og-story h2 { margin: 0 0 13px; color: #fff; font-size: var(--ookgaaf-page-h2-size-desktop, 40px); font-weight: var(--ookgaaf-page-h2-weight, 500); }
.og-story p { margin: 0; color: var(--og-muted); font-size: 17px; line-height: 1.7; }
.og-story p + p { margin-top: 13px; }
.og-story a { color: #fff; text-underline-offset: 4px; }

.og-faq-groups { display: grid; gap: 36px; margin-top: 44px; }
.og-faq-group h2 { margin: 0 0 13px; color: #fff; font-size: var(--ookgaaf-page-h2-size-desktop, 40px); font-weight: var(--ookgaaf-page-h2-weight, 500); }
.og-faq-list { display: grid; gap: 10px; }
.og-faq-list details { border: 1px solid var(--og-line); border-radius: 14px; background: rgba(27, 31, 39, .88); }
.og-faq-list summary { padding: 18px 20px; color: #fff; font-size: 17px; font-weight: 700; cursor: pointer; }
.og-faq-list details[open] summary { color: var(--og-purple); }
.og-faq-answer { padding: 0 20px 20px; color: var(--og-muted); line-height: 1.65; }
.og-faq-answer p { margin: 0; }
.og-faq-answer p + p { margin-top: 10px; }
.og-faq-answer a { color: #fff; }

.og-copyright-bar {
  min-height: 66px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: .5px solid rgba(255, 255, 255, .04);
  background: rgba(7, 10, 17, .32);
  color: #7e8795;
  font-size: 13px;
}

.og-initiative { display: flex; align-items: center; gap: 6px; }
.og-initiative a { display: inline-flex; align-items: center; }
.og-initiative img { display: block; width: auto; opacity: .88; }
.og-initiative .og-ywp { width: 94px; }
.og-initiative .og-ooknodig { width: 152px; max-height: 34px; }

@media (max-width: 800px) {
  .og-nav { gap: 14px; }
  .og-nav a, .og-drop button { font-size: 14px; }

  .og-hero.og-hero-photo {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .og-hero.og-hero-photo .og-hero-copy > p:not(.og-eyebrow) { max-width: 620px; }

  .og-section-title { grid-template-columns: 1fr; gap: 14px; }
  .og-section-title > p { max-width: 620px; }
  .og-benefit-grid { grid-template-columns: 1fr; gap: 24px; }
  .og-benefit-grid article,
  .og-benefit-grid article:first-child,
  .og-benefit-grid article:last-child { padding: 0 0 24px; border: 0; border-bottom: 1px solid var(--og-line); }
  .og-benefit-grid article:last-child { padding-bottom: 0; border-bottom: 0; }
  .og-home-score { grid-template-columns: 1fr; gap: 36px; }
  .og-home-score-copy > p:not(.og-section-kicker) { max-width: 650px; }
}

@media (max-width: 640px) {
  .og-header { min-height: 63px !important; height: 63px !important; padding: 0 18px; }
  .og-header::after { right: 0; left: 0; }
  .og-brand { height: 44px; }
  .og-home-page .og-hub { padding: 0 18px; }
  .og-home-page .og-header {
    width: calc(100% + 36px);
    margin-right: -18px;
    margin-left: -18px;
  }
  .og-hero.og-hero-photo {
    width: 100%;
    margin: 28px 0 46px;
    gap: 24px;
  }
  .og-hero.og-hero-photo .og-hero-copy .og-eyebrow { margin-bottom: 12px !important; }
  .og-hero.og-hero-photo .og-hero-copy h1 {
    margin-bottom: 17px !important;
    font-size: 48px !important;
  }
  .og-hero.og-hero-photo .og-hero-copy > p:not(.og-eyebrow) {
    font-size: 16px !important;
    line-height: 1.5;
  }
  .og-hero-actions {
    margin-top: 21px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .og-hero-actions a { min-height: 46px; padding: 0 10px; font-size: 13px; }
  .og-hero-visual { border-radius: 18px; box-shadow: 0 22px 55px rgba(0, 0, 0, .4); }
  .og-section-title { margin-bottom: 20px; }
  .og-section-title h2 { font-size: 34px; }
  .og-section-title > p { font-size: 15px !important; }
  .og-cards { grid-template-columns: 1fr; gap: 10px; }
  .og-card {
    min-height: 0;
    padding: 19px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-areas: "icon label" "icon title" "copy copy";
    align-items: start;
    column-gap: 14px;
    border-radius: 17px;
  }
  .og-card::after { top: 19px; right: 19px; }
  .og-icon { grid-area: icon; width: 38px; height: 38px; margin: 0; border-radius: 10px; }
  .og-card small { grid-area: label; padding-right: 28px; }
  .og-card h3 { grid-area: title; margin: 5px 0 0; font-size: 19px; }
  .og-card p { grid-area: copy; max-width: 94%; margin-top: 14px; font-size: 14px !important; }
  .og-home-benefits { margin-top: 76px; padding: 28px 22px; border-radius: 22px; }
  .og-home-benefits h2 { font-size: 38px; }
  .og-benefit-grid { margin-top: 32px; gap: 20px; }
  .og-benefit-grid article,
  .og-benefit-grid article:first-child,
  .og-benefit-grid article:last-child { padding-bottom: 20px; }
  .og-benefit-grid article:last-child { padding-bottom: 0; }
  .og-home-score { margin-top: 78px; gap: 30px; }
  .og-home-score h2 { font-size: 39px; }
  .og-home-score-copy > p:not(.og-section-kicker) { margin-top: 17px; font-size: 16px !important; }
  .og-score-preview { padding: 14px; border-radius: 19px; }
  .og-score-preview-row { min-height: 68px; padding: 10px 7px; grid-template-columns: 40px 1fr auto; gap: 11px; }
  .og-home-cta { margin-top: 78px; padding: 42px 20px; border-radius: 22px; }
  .og-home-cta h2 { font-size: 39px; }
  .og-home-cta > p:not(.og-section-kicker) { font-size: 16px !important; }
  .og-home-cta-actions { display: grid; grid-template-columns: 1fr; }
  .og-home-cta-actions a { min-height: 48px; font-size: 14px; }
  .og-footer { margin-top: 50px; margin-bottom: 50px; }
  .og-home-page .og-copyright-bar { margin-right: -18px; margin-left: -18px; }
  .og-page-main { padding: 42px 18px 58px; }
  .og-page-main h1 { font-size: 48px; }
  .og-page-lead { font-size: 17px; }
  .og-profile-card { align-items: stretch; flex-direction: column; }
  .og-score-summary, .og-score-grid { grid-template-columns: 1fr; }
  .og-score-summary { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .og-score-summary article { padding: 15px 12px; }
  .og-score-summary strong { font-size: 23px; }
  .og-score-summary span { font-size: 11px; }
  .og-copyright-bar { min-height: 60px; flex-direction: column; gap: 3px; font-size: 11px; }
  .og-copyright { font-size: 10px; }
  .og-initiative .og-ywp { width: 78px; }
  .og-initiative .og-ooknodig { width: 120px; }
}

@media (max-width: 369px) {
  .og-score-summary { grid-template-columns: 1fr; }
  .og-initiative .og-ooknodig { width: 104px; }
}
