/* RaceOpine — editorial layout, white canvas, single accent */

:root {
  --ro-paper: #ffffff;
  --ro-ink: #111111;
  --ro-accent: #c81e28;
  --ro-line: #e2e2e2;
  --ro-muted: #5c5c5c;
  --ro-fog: #f6f6f4;

  --ro-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ro-text: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ro-shell-max: 1200px;
  --ro-shell-pad: clamp(18px, 5vw, 48px);
  --ro-band: clamp(56px, 8vw, 86px);
  --ro-radius-tile: 16px;
  --ro-radius-small: 10px;
  --ro-radius-pill: 200px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ro-paper);
  color: var(--ro-ink);
  font-family: var(--ro-text);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -0.003em;
  font-synthesis-weight: none;
}

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

a { color: var(--ro-ink); }

h1, h2, h3, h4 {
  font-family: var(--ro-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--ro-accent);
  outline-offset: 3px;
}

.ro-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ro-ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 60;
}
.ro-skip:focus { left: 8px; top: 8px; }

.ro-shell {
  width: 100%;
  max-width: var(--ro-shell-max);
  margin-inline: auto;
  padding-inline: var(--ro-shell-pad);
}

.ro-band {
  padding-block: var(--ro-band);
  border-top: 1px solid var(--ro-line);
}

.ro-prose { max-width: 62ch; }

/* ---------- Eyebrow / section head ---------- */

.ro-eyebrow {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--ro-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ro-muted);
  margin-bottom: 18px;
}
.ro-eyebrow__num {
  font-family: var(--ro-display);
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--ro-accent);
}
.ro-eyebrow__num::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: var(--ro-accent);
}

.ro-headline {
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: -0.042em;
  max-width: 18ch;
}
.ro-headline--wide { max-width: 24ch; }
.ro-headline em {
  font-style: normal;
  color: var(--ro-accent);
}

.ro-deck {
  margin-top: 20px;
  max-width: 60ch;
  color: var(--ro-muted);
  font-size: 17px;
}

/* ---------- Buttons ---------- */

.ro-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--ro-radius-pill);
  padding: 13px 26px;
  font-family: var(--ro-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 1.5px solid var(--ro-ink);
  background: var(--ro-paper);
  color: var(--ro-ink);
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.ro-pill--solid {
  background: var(--ro-accent);
  border-color: var(--ro-accent);
  color: #fff;
}
.ro-pill--solid:hover { background: #a91820; border-color: #a91820; }
.ro-pill--ghost:hover { background: var(--ro-fog); }
.ro-pill--small { padding: 10px 20px; font-size: 14px; }
.ro-pill--full { width: 100%; }

/* ---------- 01 Topbar ---------- */

.ro-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ro-paper);
  border-bottom: 1px solid var(--ro-line);
}
.ro-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
}
.ro-logo {
  font-family: var(--ro-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ro-ink);
  white-space: nowrap;
}
.ro-logo__mark { color: var(--ro-accent); }

.ro-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ro-nav__link {
  display: inline-block;
  padding: 9px 14px;
  border-radius: var(--ro-radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--ro-ink);
  text-decoration: none;
}
.ro-nav__link:hover { background: var(--ro-fog); }

.ro-topbar__cta { display: inline-flex; }

.ro-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ro-ink);
  border-radius: var(--ro-radius-pill);
  background: var(--ro-paper);
  color: var(--ro-ink);
  cursor: pointer;
}

/* ---------- 02 Lede (hero) ---------- */

.ro-lede {
  padding-block: clamp(44px, 7vw, 78px) var(--ro-band);
  text-align: center;
}
.ro-lede__tag {
  display: inline-block;
  border: 1px solid var(--ro-accent);
  border-radius: var(--ro-radius-pill);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ro-accent);
}
.ro-lede__title {
  margin-top: 26px;
  font-size: clamp(38px, 8.4vw, 84px);
  letter-spacing: -0.052em;
  line-height: 0.98;
}
.ro-lede__title em { font-style: normal; color: var(--ro-accent); }
.ro-lede__text {
  margin: 26px auto 0;
  max-width: 58ch;
  color: var(--ro-muted);
  font-size: clamp(16px, 2vw, 19px);
}
.ro-lede__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.ro-lede__figure {
  margin: clamp(34px, 5vw, 56px) 0 0;
}
.ro-lede__showcase {
  display: grid;
  grid-template-columns: 3.4fr 1fr;
  gap: 14px;
  aspect-ratio: 21 / 9;
}
.ro-lede__shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--ro-radius-tile);
  border: 1px solid var(--ro-line);
}
.ro-lede__shot--narrow { object-position: center 42%; }
.ro-lede__caption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ro-muted);
  letter-spacing: 0.01em;
}

.ro-rail {
  margin-top: clamp(30px, 4vw, 46px);
  border-top: 1px solid var(--ro-line);
  padding-top: 22px;
}
.ro-rail__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ro-muted);
}
.ro-rail__items {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.ro-rail__icon {
  width: 66px;
  height: 66px;
  border-radius: var(--ro-radius-small);
  border: 1px solid var(--ro-line);
}

/* ---------- 03 Figures (Kennzahlen) ---------- */

.ro-figures__row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ro-line);
}
.ro-figures__cell {
  padding: 26px 22px 6px 0;
  border-right: 1px solid var(--ro-line);
}
.ro-figures__cell:last-child { border-right: 0; }
.ro-figures__value {
  font-family: var(--ro-display);
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ro-accent);
}
.ro-figures__name {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ro-ink);
  font-weight: 600;
}
.ro-figures__hint {
  margin-top: 4px;
  font-size: 14px;
  color: var(--ro-muted);
  line-height: 1.5;
}

/* ---------- 04 Spiele (tiles) ---------- */

.ro-tiles {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}
.ro-tile {
  grid-column: span 3;
  position: relative;
  border: 1px solid var(--ro-line);
  border-radius: var(--ro-radius-tile);
  padding: 24px;
  background: var(--ro-paper);
  display: flex;
  flex-direction: column;
}
.ro-tile--spread {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 26px;
  align-items: start;
}
.ro-tile--slim { grid-column: span 2; }
.ro-tile__rank {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--ro-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--ro-accent);
}
.ro-tile--spread .ro-tile__rank { top: 18px; right: 24px; font-size: 52px; }
.ro-tile__head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-right: 58px;
}
.ro-tile__icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  border: 1px solid var(--ro-line);
  flex: none;
}
.ro-tile__name {
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.ro-tile--spread .ro-tile__name { font-size: clamp(24px, 3vw, 32px); }
.ro-tile__dev {
  margin-top: 5px;
  font-size: 13px;
  color: var(--ro-muted);
}
.ro-tile__score {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--ro-line);
  border-bottom: 1px solid var(--ro-line);
  padding-block: 12px;
}
.ro-tile__value {
  font-family: var(--ro-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.03em;
}
.ro-tile__votes {
  font-size: 12.5px;
  color: var(--ro-muted);
  margin-left: auto;
  text-align: right;
}
.ro-tile__text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ro-ink);
}
.ro-tile__meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ro-chip {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--ro-line);
  border-radius: var(--ro-radius-pill);
  padding: 5px 12px;
  color: var(--ro-muted);
}
.ro-chip--accent {
  border-color: var(--ro-accent);
  color: var(--ro-accent);
}
.ro-tile__figure { margin: 18px 0 0; }
.ro-tile--spread .ro-tile__figure { margin-top: 0; }
.ro-tile__shot {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--ro-radius-small);
  border: 1px solid var(--ro-line);
}
.ro-tile--spread .ro-tile__shot { aspect-ratio: 16 / 9; }
.ro-tile__cap {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ro-muted);
}
.ro-tile__foot { margin-top: auto; padding-top: 18px; }
.ro-tile__stack { display: flex; flex-direction: column; }

/* stars — fractional fill without gradients */
.ro-stars {
  position: relative;
  display: inline-block;
  line-height: 0;
  white-space: nowrap;
}
.ro-stars__row { display: inline-flex; gap: 2px; }
.ro-stars__row svg { width: 16px; height: 16px; display: block; }
.ro-stars__base { color: var(--ro-line); }
.ro-stars__fill {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: var(--ro-accent);
}
.ro-stars__fill--w92 { width: 92%; }
.ro-stars__fill--w90 { width: 90%; }
.ro-stars__fill--w88 { width: 88%; }
.ro-stars__fill--w82 { width: 82%; }

/* ---------- 05 Redaktionsauswahl ---------- */

.ro-pick__plate {
  margin-top: 34px;
  background: var(--ro-accent);
  border-radius: var(--ro-radius-tile);
  padding: clamp(24px, 3.4vw, 38px);
  color: #fff;
}
.ro-pick__plate-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  opacity: .82;
}
.ro-pick__plate-list {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.ro-pick__plate-list li {
  border-top: 1px solid #fff;
  padding-top: 16px;
}
.ro-pick__plate-list b {
  display: block;
  font-family: var(--ro-display);
  font-size: clamp(19px, 2.2vw, 23px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.ro-pick__plate-list span {
  display: block;
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.5;
}
.ro-pick__list { margin-top: 34px; }
.ro-pick__item {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 28px;
  align-items: center;
  padding-block: 26px;
  border-top: 1px solid var(--ro-line);
}
.ro-pick__item:last-child { border-bottom: 1px solid var(--ro-line); }
.ro-pick__shot {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--ro-radius-small);
  border: 1px solid var(--ro-line);
}
.ro-pick__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ro-accent);
}
.ro-pick__title {
  margin-top: 8px;
  font-size: clamp(21px, 2.6vw, 27px);
  letter-spacing: -0.035em;
}
.ro-pick__text {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ro-muted);
  max-width: 58ch;
}
.ro-pick__side { text-align: right; }
.ro-pick__side .ro-tile__value { font-size: 26px; }

/* ---------- 06 Methode ---------- */

.ro-method__body {
  margin-top: 38px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.ro-method__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ro-line);
  border: 1px solid var(--ro-line);
  border-radius: var(--ro-radius-tile);
  overflow: hidden;
}
.ro-method__step {
  background: var(--ro-paper);
  padding: 24px;
}
.ro-method__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ro-accent);
  border-radius: var(--ro-radius-small);
  color: var(--ro-accent);
}
.ro-method__icon svg { width: 22px; height: 22px; }
.ro-method__title {
  margin-top: 16px;
  font-size: 19px;
  letter-spacing: -0.03em;
}
.ro-method__text {
  margin-top: 8px;
  font-size: 15px;
  color: var(--ro-muted);
}
.ro-method__panel {
  background: var(--ro-fog);
  border: 1px solid var(--ro-line);
  border-radius: var(--ro-radius-tile);
  padding: 26px;
}
.ro-method__panel-title {
  font-family: var(--ro-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.ro-method__panel-list {
  margin-top: 18px;
  display: grid;
  gap: 11px;
}
.ro-method__panel-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ro-muted);
}
.ro-method__panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 1.5px;
  background: var(--ro-accent);
}
.ro-method__panel-note {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--ro-line);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ro-muted);
}
.ro-method__panel-icons {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ro-method__ic {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  border: 1px solid var(--ro-line);
}

/* ---------- 07 Premium ---------- */

.ro-plans {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ro-plan {
  border: 1px solid var(--ro-line);
  border-radius: var(--ro-radius-tile);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.ro-plan--marked { border: 2px solid var(--ro-accent); }
.ro-plan__badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ro-accent);
  margin-bottom: 10px;
}
.ro-plan__name {
  font-size: 23px;
  letter-spacing: -0.03em;
}
.ro-plan__price {
  margin-top: 14px;
  font-family: var(--ro-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}
.ro-plan__cycle {
  font-family: var(--ro-text);
  font-size: 14px;
  font-weight: 500;
  color: var(--ro-muted);
  letter-spacing: 0;
}
.ro-plan__list {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--ro-line);
  display: grid;
  gap: 10px;
}
.ro-plan__list li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.ro-plan__list svg {
  width: 17px;
  height: 17px;
  flex: none;
  margin-top: 4px;
  color: var(--ro-accent);
}
.ro-plan__foot { margin-top: auto; padding-top: 22px; }

.ro-note {
  margin-top: 26px;
  border: 1px solid var(--ro-line);
  border-left: 4px solid var(--ro-accent);
  border-radius: var(--ro-radius-small);
  padding: 18px 22px;
  font-size: 14.5px;
  color: var(--ro-ink);
  background: var(--ro-fog);
}
.ro-note strong { font-weight: 600; }

/* ---------- 08 Newsletter ---------- */

.ro-signup__body {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.ro-signup__points {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.ro-signup__points li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--ro-muted);
}
.ro-signup__points svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--ro-accent); }

.ro-form {
  border: 1px solid var(--ro-line);
  border-radius: var(--ro-radius-tile);
  padding: 26px;
}
.ro-form__field { margin-bottom: 16px; }
.ro-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}
.ro-form__input {
  width: 100%;
  border: 1px solid var(--ro-line);
  border-radius: var(--ro-radius-small);
  background: var(--ro-paper);
  padding: 13px 14px;
  font-family: var(--ro-text);
  font-size: 15px;
  color: var(--ro-ink);
}
.ro-form__input:focus {
  outline: none;
  border-color: var(--ro-accent);
  box-shadow: inset 0 0 0 1px var(--ro-accent);
}
.ro-form__consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ro-muted);
  line-height: 1.5;
}
.ro-form__consent input {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--ro-accent);
  flex: none;
}
.ro-form__consent a { color: var(--ro-accent); }
.ro-form__foot { margin-top: 20px; }
.ro-form__hint {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--ro-muted);
}
.ro-form__ok {
  display: none;
  margin-top: 16px;
  border: 1px solid var(--ro-accent);
  border-radius: var(--ro-radius-small);
  padding: 14px 16px;
  font-size: 14.5px;
  color: var(--ro-accent);
  font-weight: 600;
}
.ro-form__ok.is-shown { display: block; }
.ro-form__error {
  display: none;
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--ro-accent);
}
.ro-form__error.is-shown { display: block; }

/* ---------- 09 FAQ ---------- */

.ro-ask__list {
  margin-top: 34px;
  border-top: 1px solid var(--ro-line);
}
.ro-ask__item { border-bottom: 1px solid var(--ro-line); }
.ro-ask__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--ro-display);
  font-size: clamp(18px, 2.3vw, 24px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ro-ink);
}
.ro-ask__sign {
  flex: none;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--ro-accent);
  border-radius: var(--ro-radius-pill);
  color: var(--ro-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s ease;
}
.ro-ask__sign svg { width: 15px; height: 15px; }
.ro-ask__item.is-open .ro-ask__sign { transform: rotate(45deg); }
.ro-ask__panel {
  display: none;
  padding: 0 0 24px;
  max-width: 78ch;
  color: var(--ro-muted);
  font-size: 15.5px;
}
.ro-ask__item.is-open .ro-ask__panel { display: block; }

/* ---------- 10 Über ---------- */

.ro-about__body {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: start;
}
.ro-about__text p + p { margin-top: 16px; }
.ro-about__text p { color: var(--ro-muted); font-size: 16px; max-width: 62ch; }
.ro-about__lead {
  font-family: var(--ro-display);
  font-size: clamp(20px, 2.6vw, 26px);
  letter-spacing: -0.032em;
  line-height: 1.28;
  color: var(--ro-ink) !important;
  max-width: 34ch !important;
  margin-bottom: 18px;
}
.ro-about__pillars {
  margin-top: 26px;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--ro-line);
  padding-top: 22px;
}
.ro-about__pillars li { font-size: 15px; display: flex; gap: 12px; }
.ro-about__pillars b {
  font-family: var(--ro-display);
  color: var(--ro-accent);
  font-size: 15px;
  letter-spacing: -0.02em;
  flex: none;
}
.ro-about__panel {
  border: 1px solid var(--ro-line);
  border-radius: var(--ro-radius-tile);
  padding: 26px;
}
.ro-about__panel-title {
  font-family: var(--ro-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.ro-about__panel-list {
  margin-top: 20px;
  display: grid;
  gap: 1px;
  background: var(--ro-line);
  border-block: 1px solid var(--ro-line);
}
.ro-about__panel-list li {
  background: var(--ro-paper);
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 13px;
}
.ro-about__panel-list img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--ro-line);
  flex: none;
}
.ro-about__panel-name {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ro-ink);
}
.ro-about__panel-name b {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ro-muted);
}
.ro-about__panel-score {
  margin-left: auto;
  font-family: var(--ro-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ro-accent);
}
.ro-about__panel-foot {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ro-muted);
}

/* ---------- 11 Footer ---------- */

.ro-baseboard {
  border-top: 1px solid var(--ro-line);
  padding-block: clamp(40px, 6vw, 62px) 28px;
}
.ro-baseboard__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 34px;
}
.ro-baseboard__about {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--ro-muted);
  max-width: 40ch;
}
.ro-baseboard__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ro-muted);
  margin-bottom: 14px;
}
.ro-baseboard__links { display: grid; gap: 9px; }
.ro-baseboard__links a {
  font-size: 14.5px;
  color: var(--ro-ink);
  text-decoration: none;
}
.ro-baseboard__links a:hover { color: var(--ro-accent); }
.ro-baseboard__mail {
  font-size: 14.5px;
  color: var(--ro-accent);
  text-decoration: none;
  word-break: break-word;
}
.ro-baseboard__bar {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--ro-line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ro-muted);
}

/* ---------- Cookie bar / up button ---------- */

.ro-cookiebar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 55;
  display: none;
  background: var(--ro-paper);
  border: 1px solid var(--ro-ink);
  border-radius: var(--ro-radius-tile);
  padding: 18px 20px;
}
.ro-cookiebar.is-shown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  justify-content: space-between;
}
.ro-cookiebar__text {
  font-size: 14px;
  color: var(--ro-ink);
  max-width: 74ch;
}
.ro-cookiebar__text a { color: var(--ro-accent); }
.ro-cookiebar__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.ro-uptop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 46px;
  height: 46px;
  border-radius: var(--ro-radius-pill);
  border: 1.5px solid var(--ro-ink);
  background: var(--ro-paper);
  color: var(--ro-ink);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ro-uptop.is-shown { display: flex; }
.ro-uptop svg { width: 18px; height: 18px; }

/* ---------- Legal pages ---------- */

.ro-slab { padding-block: clamp(38px, 6vw, 64px); }
.ro-slab__title {
  font-size: clamp(32px, 5.6vw, 56px);
  letter-spacing: -0.045em;
  max-width: 20ch;
}
.ro-slab__meta {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ro-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
}
.ro-slab__back { margin-top: 26px; }
.ro-slab__body {
  margin-top: 34px;
  border-top: 1px solid var(--ro-line);
  padding-top: 30px;
}
.ro-slab__body h2 {
  margin-top: 34px;
  font-size: clamp(21px, 2.8vw, 27px);
  letter-spacing: -0.035em;
}
.ro-slab__body h2:first-child { margin-top: 0; }
.ro-slab__body h3 {
  margin-top: 22px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.ro-slab__body p,
.ro-slab__body li {
  font-size: 16px;
  color: var(--ro-muted);
  max-width: 78ch;
}
.ro-slab__body p { margin-top: 12px; }
.ro-slab__body ul { margin-top: 12px; display: grid; gap: 8px; }
.ro-slab__body li { padding-left: 18px; position: relative; }
.ro-slab__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 1.5px;
  background: var(--ro-accent);
}
.ro-slab__body a { color: var(--ro-accent); }
.ro-slab__body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  border: 1px solid var(--ro-line);
  border-radius: 6px;
  padding: 1px 6px;
  color: var(--ro-ink);
}
.ro-slab__table {
  margin-top: 16px;
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.ro-slab__table th,
.ro-slab__table td {
  border: 1px solid var(--ro-line);
  padding: 11px 13px;
  text-align: left;
  vertical-align: top;
  color: var(--ro-muted);
}
.ro-slab__table th { color: var(--ro-ink); font-weight: 600; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .ro-tiles { grid-template-columns: repeat(2, 1fr); }
  .ro-tile { grid-column: span 1; }
  .ro-tile--slim { grid-column: span 1; }
  .ro-tile--spread { grid-column: span 2; grid-template-columns: 1fr; }
  .ro-method__body { grid-template-columns: 1fr; }
  .ro-about__body { grid-template-columns: 1fr; }
  .ro-signup__body { grid-template-columns: 1fr; gap: 30px; }
  .ro-baseboard__cols { grid-template-columns: 1fr 1fr; }
  .ro-plans { grid-template-columns: 1fr; }
  .ro-pick__item { grid-template-columns: 200px 1fr; }
  .ro-pick__side { grid-column: 2; text-align: left; }
}

@media (max-width: 1100px) {
  .ro-nav__link { padding: 9px 10px; font-size: 13.5px; }
}

@media (max-width: 940px) {
  .ro-topbar__cta { display: none; }
}

@media (max-width: 860px) {
  .ro-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    background: var(--ro-paper);
    border-bottom: 1px solid var(--ro-line);
    padding: 14px var(--ro-shell-pad) 24px;
    display: none;
  }
  .ro-nav.is-open { display: block; }
  .ro-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .ro-nav__link { padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--ro-line); border-radius: 0; }
  .ro-nav__link:hover { background: none; color: var(--ro-accent); }
  .ro-burger { display: inline-flex; }
  .ro-topbar__cta { display: none; }
  .ro-figures__row { grid-template-columns: repeat(2, 1fr); }
  .ro-figures__cell:nth-child(2) { border-right: 0; }
  .ro-figures__cell { padding-right: 16px; }
  .ro-method__steps { grid-template-columns: 1fr; }
  .ro-pick__plate-list { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .ro-tiles { grid-template-columns: 1fr; }
  .ro-tile,
  .ro-tile--slim,
  .ro-tile--spread { grid-column: span 1; }
  .ro-pick__item { grid-template-columns: 1fr; gap: 16px; }
  .ro-pick__side { grid-column: 1; }
  .ro-baseboard__cols { grid-template-columns: 1fr; gap: 26px; }
  .ro-lede__showcase { grid-template-columns: 1fr; aspect-ratio: auto; gap: 12px; }
  .ro-lede__shot { height: auto; aspect-ratio: 16 / 10; }
  .ro-lede__shot--narrow { aspect-ratio: 4 / 3; }
  .ro-rail__icon { width: 54px; height: 54px; }
  .ro-about__panel-name { font-size: 14px; }
  .ro-cookiebar.is-shown { flex-direction: column; align-items: flex-start; }
}

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