/* =========================================================================
   THE SCORE — assessment app styles. Builds on ../css/styles.css tokens
   (--red, --black, --off, fonts, --ease). Dark, athletic, kinetic.
   ========================================================================= */

.score-body { background: var(--black); min-height: 100vh; --red-darkest: #7a0410; }
/* No red haze around any button anywhere in the Score (Matt). */
.score-body .btn--red, .score-body .btn--red:hover { box-shadow: none; }

/* Faint F logomark watermark — fixed behind every screen (above screen bg, below content). */
.score-watermark {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: url('../assets/foss-symbol-red.png') no-repeat center 56%;
  background-size: min(44vh, 340px);
  opacity: .24;
}

/* Screen-reader-only (visible to assistive tech, hidden visually). */
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Keyboard focus — never remove the outline without a visible replacement. */
.score-body :focus-visible {
  outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px;
}
.opt:focus-visible, .btn:focus-visible { outline-offset: 2px; }

/* Required-answer prompt (announced via role="alert"). */
.qneed { color: var(--red); font-size: .95rem; margin-top: 14px; }

/* ---------- Top chrome ---------- */
.score-top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  /* Matches the main-site nav top state EXACTLY (Matt 2026-07-10): same padding, logo
     height, gap, and tagline metrics as .nav/.nav__logo/.nav__tagline in css/styles.css,
     so the lockup never moves or resizes crossing between the site and the Score. */
  padding: 20px clamp(20px, 4vw, 44px);
  background: linear-gradient(180deg, rgba(14,14,20,.92), rgba(14,14,20,0));
  pointer-events: none;
}
.score-top__brand { display: inline-flex; align-items: center; gap: 13px; pointer-events: auto; flex-shrink: 0; }
.score-top__logo { height: 26px; width: auto; display: block; }
.score-top__tagline { font-family: var(--font-display); font-weight: 900; font-stretch: 75%; font-size: 12px; line-height: .92; letter-spacing: .02em; text-transform: uppercase; color: var(--off); border-left: 1px solid var(--line); padding-left: 13px; }
.score-top__tagline .rf { color: var(--red); }
@media (max-width: 880px) { .score-top__tagline { font-size: 10px; padding-left: 10px; } }
.score-progress { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 5px; width: min(320px, 52vw); pointer-events: none; }
.score-progress[hidden] { display: none; }
.score-progress__bar { width: 100%; max-width: 300px; height: 3px; border-radius: 3px; background: rgba(247,244,241,.12); overflow: hidden; }
.score-progress__bar i { display: block; height: 100%; width: 0%; background: var(--red); border-radius: 3px; box-shadow: none; transition: width .5s var(--ease); }
.score-progress__label { font-family: var(--font-mono); font-size: 14px; letter-spacing: .1em; color: var(--muted); white-space: nowrap; }

/* ---------- Stage / screen transitions ---------- */
.score-stage { min-height: 100vh; }
/* Entrance uses a CSS animation (auto-plays on insert) — never gates content
   visibility on requestAnimationFrame, which background tabs throttle. */
@keyframes screenIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.screen-anim { animation: screenIn .5s var(--ease) both; }
@media (prefers-reduced-motion: reduce) { .screen-anim { animation: none; } }

/* ---------- Shared screen frame ---------- */
.welcome, .qscreen, .results { width: 100%; }
.welcome, .qscreen {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 110px clamp(20px, 5vw, 32px) 60px; position: relative; overflow: hidden;
}
.welcome__inner, .qscreen__inner { width: 100%; max-width: 720px; position: relative; z-index: 2; }

/* ---------- Welcome ---------- */
.welcome { background: radial-gradient(120% 80% at 50% 0%, #1d1d28 0%, var(--black) 55%, var(--black-2) 100%); text-align: center; }
.welcome__inner { max-width: 940px; }
.welcome__glow { display: none; } /* removed the soft red glow — sharp/edgy per Matt */
@media (prefers-reduced-motion: reduce) { .welcome__glow { animation: none; } }
.welcome .eyebrow { justify-content: center; }
.welcome__title {
  font-family: var(--font-display); font-weight: 900; font-stretch: 75%; text-transform: uppercase;
  font-size: clamp(2.4rem, 7.4vw, 5.8rem); line-height: .94; letter-spacing: .01em; margin: 14px 0 26px;
  display: inline-block; max-width: 100%; border: 2px solid rgba(247,244,241,.18); border-radius: 5px;
  padding: clamp(14px, 2.6vw, 28px) clamp(22px, 4.5vw, 48px); background: rgba(13,13,18,.35);
}
.welcome__title .line { display: block; }
.welcome__title .line--red { color: var(--red); }
.welcome__sub { font-size: clamp(1.05rem, 1.9vw, 1.4rem); color: #D8D5D0; max-width: 620px; margin: 0 auto 40px; line-height: 1.55; }
.welcome__sub strong { color: var(--off); }
.welcome__cta { letter-spacing: .06em; margin-top: 6px; }

/* ---------- Question screens ---------- */
.qscreen__prompt {
  font-family: var(--font-display); font-weight: 900; font-stretch: 75%; letter-spacing: -.01em;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem); line-height: 1.18; margin-bottom: 14px;
}
.qscreen--scored .qscreen__prompt { font-size: clamp(1.6rem, 4vw, 2.6rem); }
.qscreen__help { color: var(--muted); font-size: 1.02rem; margin-bottom: 30px; line-height: 1.5; max-width: 600px; }
.qscreen__prompt + .opts, .qscreen__help + .opts { margin-top: 12px; }

/* options */
.opts { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.opts.needs { animation: shake .4s; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-6px)} 75%{transform:translateX(6px)} }
.opt {
  display: flex; align-items: flex-start; gap: 16px; text-align: left; width: 100%;
  padding: 18px 20px; border-radius: 12px; cursor: pointer;
  background: var(--panel); border: 1px solid var(--line); color: #E4E1DC;
  font-family: var(--font-body); font-size: 1.04rem; line-height: 1.4;
  transition: border-color .25s, background .25s, transform .2s var(--ease);
}
.opt:hover { border-color: rgba(223,6,24,.45); background: var(--panel-2); transform: translateX(3px); }
.opt--on { border-color: var(--red); background: linear-gradient(90deg, rgba(223,6,24,.14), var(--panel)); }
.opt__key {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 6px; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  border: 1px solid var(--line); background: rgba(0,0,0,.2);
}
.opt--on .opt__key, .opt:hover .opt__key { color: #fff; border-color: var(--red); background: var(--red); }
.opt__label { padding-top: 2px; }

/* dropdown + text */
.dropdown, .textinput {
  width: 100%; padding: 16px 18px; border-radius: 12px; font-size: 1.05rem;
  background: var(--panel); border: 1px solid var(--line); color: var(--off); font-family: var(--font-body);
}
.dropdown:focus, .textinput:focus { outline: none; border-color: var(--red); }
.opts.needs .dropdown, .opts.needs .textinput { border-color: var(--red); animation: shake .4s; }

/* question nav */
.qscreen__nav { display: flex; align-items: center; justify-content: space-between; margin-top: 30px; gap: 14px; flex-wrap: wrap; }
.qnav__back { background: none; border: 0; color: var(--muted); font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: .04em; cursor: pointer; padding: 8px 0; transition: color .25s; }
.qnav__back:hover { color: var(--off); }
.qnav__continue { margin-top: 6px; }
.qnav__skip { padding: 11px 22px; font-size: 13px; }

/* ---------- Email gate ---------- */
.email__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0 8px; }
.efield { display: flex; flex-direction: column; gap: 7px; }
.email__fields .efield:nth-child(n+3) { grid-column: 1 / -1; }

/* blurred-score teaser (the real number, one field away) */
.gate__teaser { display: flex; align-items: flex-start; justify-content: flex-start; gap: 6px; margin: 18px 0 4px; user-select: none; pointer-events: none; }
.gate__num { font-family: var(--font-display); font-weight: 900; font-stretch: 75%; font-size: clamp(3.2rem, 10vw, 5.5rem); line-height: .85; color: var(--off); filter: blur(14px); opacity: .85; }
.gate__outof { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--muted); margin-top: 8px; }
.qscreen__help--sub { margin-top: 6px; }
.efield__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.email__err { color: var(--red); font-size: .95rem; margin: 10px 0 0; }
.email__submit { margin-top: 22px; width: 100%; }
.email__priv { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--muted); }

/* ---------- Results ---------- */
.results { max-width: 860px; margin: 0 auto; padding: 110px clamp(20px, 5vw, 32px) 100px; position: relative; z-index: 2; }
.results .reveal { opacity: 0; transform: translateY(20px); }
.results .reveal.in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
@media (prefers-reduced-motion: reduce) { .results .reveal { opacity: 1; transform: none; } }

/* score hero */
.rhero { text-align: center; padding: 30px 0 18px; position: relative; }
.rhero .eyebrow { justify-content: center; }
.rhero__score { display: inline-flex; align-items: flex-start; gap: 8px; margin: 8px 0 6px; }
.rhero__num { font-family: var(--font-display); font-weight: 900; font-stretch: 75%; font-size: clamp(5rem, 18vw, 11rem); line-height: .85; color: var(--off); }
.rhero__outof { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.2rem, 3vw, 1.8rem); color: var(--muted); margin-top: 14px; }
.rhero__label { font-family: var(--font-display); font-weight: 900; font-stretch: 75%; text-transform: uppercase; letter-spacing: .06em; font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: var(--red); margin-bottom: 22px; }
.rhero__pct { font-size: clamp(1.1rem, 2.2vw, 1.4rem); line-height: 1.5; max-width: 620px; margin: 0 auto 14px; color: #E4E1DC; }
.rhero__pct strong { color: var(--off); }
.rhero__cohort { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.5; }

/* drift */
.rdrift { margin: 56px 0; padding: 30px 32px; border-radius: 16px; border: 1px solid rgba(223,6,24,.28);
  background: linear-gradient(120deg, rgba(223,6,24,.10), var(--panel)); }
.rdrift__body { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.15rem, 2.3vw, 1.5rem); line-height: 1.5; color: var(--off); }

/* breakdown / gap-to-ceiling */
.rbreak { margin: 56px 0; }
.dims { display: flex; flex-direction: column; gap: 20px; }
.dim__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.dim__name { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; letter-spacing: .01em; display: inline-flex; align-items: center; gap: 10px; }
.dim__flag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--red); border: 1px solid rgba(223,6,24,.4); border-radius: 4px; padding: 2px 7px; }
.dim__pct { font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: var(--muted); }
.dim__bar { position: relative; height: 12px; border-radius: 7px; background: rgba(247,244,241,.07); overflow: hidden; border: 1px solid var(--line-2); }
.dim__fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 7px; background: linear-gradient(90deg, var(--red-deep), var(--red)); transition: width 1s var(--ease); }
.dim__median { position: absolute; top: -2px; bottom: -2px; width: 2px; background: rgba(247,244,241,.75); border-radius: 1px; }
.rbreak__legend { font-family: var(--font-mono); font-size: 11px; letter-spacing: .05em; color: var(--muted); margin-top: 14px; }
.dim--low .dim__fill { background: linear-gradient(90deg, var(--red-darkest), var(--red)); }
.dim__foot { display: flex; justify-content: space-between; margin-top: 8px; font-size: .86rem; color: var(--muted); font-family: var(--font-mono); letter-spacing: .03em; }
.dim__gap { color: var(--muted); }
.dim--low .dim__name { color: var(--off); }

/* dollar */
.rdollar { margin: 56px 0; padding: 34px 34px; border-radius: 16px; border: 1px solid var(--line); background: var(--panel); text-align: center; }
.rdollar__line { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.3rem, 3vw, 2rem); line-height: 1.35; color: var(--off); }
.rdollar__line .hl { color: var(--red); }
.rdollar__how { margin-top: 18px; font-size: .95rem; color: var(--muted); }
.rdollar__how summary { cursor: pointer; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.rdollar__how summary:hover { color: var(--off); }
.rdollar__how p { margin-top: 12px; line-height: 1.55; max-width: 600px; margin-left: auto; margin-right: auto; }

/* pattern */
.rpattern { margin: 64px 0 0; }
.rpattern__hero { text-align: center; margin-bottom: 30px; }
.rpattern__hero .eyebrow { justify-content: center; }
.rpattern__name { font-family: var(--font-display); font-weight: 900; font-stretch: 75%; text-transform: uppercase; font-size: clamp(2.4rem, 7vw, 5rem); line-height: .95; margin: 6px 0 14px; }
.rpattern__tag { font-family: var(--font-head); font-weight: 600; font-style: italic; color: var(--red); font-size: clamp(1.05rem, 2.2vw, 1.4rem); }
.rpattern__anchor { text-align: center; font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; color: var(--muted); border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); padding: 16px 0; margin: 8px auto 40px; max-width: 620px; }
.rsection { margin: 34px 0; }
.rsection__body { font-size: 1.1rem; line-height: 1.6; color: #D8D5D0; }
.rpattern__why { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.15rem, 2.4vw, 1.5rem); line-height: 1.45; color: var(--off); border-left: 3px solid var(--red); padding-left: 22px; margin: 40px 0; }

/* cost grid */
.rcost { margin: 34px 0; }
.rcost__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.rcost__col { padding: 24px 24px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line); }
.rcost__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 12px; }
.rcost__col p { font-size: 1.02rem; line-height: 1.5; color: #D8D5D0; }

/* move */
.rmove { margin: 40px 0; padding: 32px 32px; border-radius: 16px; background: linear-gradient(120deg, rgba(223,6,24,.10), var(--panel)); border: 1px solid rgba(223,6,24,.28); }
.rmove__body { font-size: 1.12rem; line-height: 1.6; color: var(--off); }
.rmove__time { font-style: italic; color: var(--muted); font-size: .96rem; margin-top: 16px; }
.rmove__sheet { margin-top: 18px; font-size: 1rem; line-height: 1.6; color: var(--off); font-weight: 600; }
.rmove__sheetlink { color: #fff; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.rmove__sheetlink:hover { color: var(--red); }

/* bio */
.rbio { display: grid; grid-template-columns: 150px 1fr; gap: 28px; align-items: center; margin: 60px 0; padding: 30px; border-radius: 16px; background: var(--black-2); border: 1px solid var(--line-2); }
.rbio__photo img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; object-position: center 20%; border: 2px solid rgba(223,6,24,.35); }
.rbio__copy h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; margin: 4px 0 12px; }
.rbio__copy p { font-size: 1rem; line-height: 1.55; color: var(--muted); margin-bottom: 10px; }
.rbio__em { color: var(--off) !important; font-weight: 600; }

/* The Tell (2.1): the screenshot-sized opener built from their own answer */
.rtell { text-align: center; max-width: 720px; margin: 8px auto 40px; }
.rtell__line { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.25rem, 3vw, 1.8rem); line-height: 1.35; color: var(--off); }
.rtell__line strong { color: var(--red-text); }

/* Q10 tension + ownership payoff lines (2.1) */
.rtension { text-align: center; max-width: 620px; margin: 28px auto 8px; }
.rtension__line { font-size: 1.02rem; line-height: 1.6; color: var(--off); margin-bottom: 10px; }
.rtension__own { font-size: .95rem; line-height: 1.55; color: var(--muted); }

/* Scorecard + challenge hook (2.1): one screenshot-perfect frame */
.rcard { margin: 56px auto 8px; max-width: 460px; text-align: center; }
.rcard__frame { border: 1px solid var(--line); border-radius: 18px; padding: 30px 24px 26px; background: radial-gradient(120% 120% at 50% 0%, #191924, var(--black-2)); }
.rcard__brand { font-size: .72rem; letter-spacing: .22em; color: var(--muted); margin-bottom: 10px; }
.rcard__name { font-size: .95rem; color: var(--off); margin-bottom: 2px; }
.rcard__score { font-family: var(--font-display); font-weight: 900; font-stretch: 75%; font-size: 3.4rem; line-height: 1; color: var(--off); }
.rcard__outof { font-size: 1.1rem; color: var(--muted); margin-left: 4px; }
.rcard__label { color: var(--red-text); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; margin: 6px 0 12px; }
.rcard__pattern { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--off); margin-bottom: 4px; }
.rcard__tag { font-size: .92rem; color: var(--muted); line-height: 1.5; }
.rcard__row { margin-top: 16px; }
.rcard__btn { font-size: .95rem; }
.rcard__note { font-size: .88rem; color: var(--muted); margin-top: 10px; line-height: 1.5; }

/* Reps bridge under the move (2.1) */
.rmove__reps { margin-top: 16px; font-size: .95rem; line-height: 1.6; color: var(--muted); }
.rmove__repslink { color: var(--off); text-decoration: underline; text-underline-offset: 3px; }
.rmove__repslink:hover { color: #fff; }

/* Level suggestion (quiet on-ramp into the CTA; no card, no red, no button) */
.rlvl { text-align: center; max-width: 560px; margin: 56px auto 8px; }
.rlvl__eyebrow { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.rlvl__line { font-size: 1.05rem; line-height: 1.6; color: var(--off); margin-bottom: 12px; }
.rlvl__line strong { font-weight: 700; }
.rlvl__honest { font-size: .92rem; line-height: 1.55; color: var(--muted); margin-bottom: 10px; }
.rlvl__more { margin-top: 22px; }
.rlvl__more .btn { font-size: .95rem; }

/* CTA */
.rcta { text-align: center; margin: 64px 0 20px; padding: 44px 30px; border-radius: 18px; background: radial-gradient(100% 100% at 50% 0%, #1c1c28, var(--black-2)); border: 1px solid var(--line); }
.rcta__title { font-family: var(--font-display); font-weight: 900; font-stretch: 75%; text-transform: uppercase; font-size: clamp(1.6rem, 4vw, 2.6rem); line-height: 1; margin-bottom: 26px; }
.rcta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.rcta__assure { list-style: none; margin: 20px auto 0; padding: 0; max-width: 480px; text-align: center; display: flex; flex-direction: column; gap: 6px; }
.rcta__assure li { font-size: .98rem; color: var(--muted); line-height: 1.5; }
.rcta__alt { margin-top: 22px; font-size: .95rem; color: var(--muted); }
.rcta__mail { color: var(--off); text-decoration: underline; text-underline-offset: 3px; }
.rcta__mail:hover { color: var(--red); }

/* second CTA inside the dollar block */
.rdollar__cta { margin-top: 24px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.rdollar__ctaline { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--off); }

/* saved-report banner (?r= views) */
.rsaved { margin: 0 0 26px; padding: 12px 18px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel); text-align: center; }
.rsaved__line { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--muted); line-height: 1.6; }
.rsaved__cta { color: var(--off); text-decoration: underline; text-underline-offset: 3px; }
.rsaved__cta:hover { color: var(--red); }

/* personal-link row */
.rlink { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 6px 0 0; }
.rlink__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .05em; color: var(--muted); }
.rlink__btn { background: none; border: 1px solid var(--line); border-radius: 8px; color: var(--off); font-family: var(--font-mono); font-size: 12px; letter-spacing: .05em; padding: 8px 14px; cursor: pointer; transition: border-color .25s, color .25s; }
.rlink__btn:hover { border-color: var(--red); color: var(--red); }

/* welcome resume link */
.welcome__resume { margin-top: 16px; }
.welcome__resume-btn { background: none; border: 0; color: var(--muted); font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; padding: 6px 0; }
.welcome__resume-btn:hover { color: var(--off); }
/* Long CTA ("Book a call to design your first handoff") must wrap on narrow screens, not force horizontal scroll. */
.rcta__btns .btn { white-space: normal; text-align: center; }
.results__restart { text-align: center; margin-top: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  /* Stack the header so the logo + tagline lockup sits above the progress (no overlap), and the tagline still shows. */
  .score-top { flex-direction: column; align-items: center; gap: 9px; }
  .score-progress { position: static; transform: none; }
}
@media (max-width: 600px) {
  .email__fields { grid-template-columns: 1fr; }
  .rcost__grid { grid-template-columns: 1fr; }
  .rbio { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 18px; }
  .rbio__photo img { width: 120px; height: 120px; }
  .rcta__btns .btn { width: 100%; }
  .opt { font-size: .98rem; padding: 16px 16px; }
  .rhero__score { gap: 5px; }
}

/* compliance footer (legal links + address on the data-capture page) */
.score-foot{border-top:1px solid var(--line,rgba(247,244,241,.1));padding:30px 24px;text-align:center;background:var(--black-2,#0E0E14);position:relative;z-index:3}
.score-foot__in{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:10px;align-items:center}
.score-foot__home{font-family:var(--font-head);font-weight:700;letter-spacing:.04em;text-transform:uppercase;font-size:13px;color:var(--off,#F7F4F1)}
.score-foot__links{display:flex;gap:18px;flex-wrap:wrap;justify-content:center}
.score-foot__links a{font-size:13px;color:var(--muted,#9A9AA6);text-decoration:underline}
.score-foot__addr{font-size:12px;color:var(--muted-2,#8A8A96);line-height:1.6;margin:0}
