/* ===========================================================================
   Garra landing: dark brand theme
   Brand tokens mirror src/constants/theme.ts (red #E11D2A on near-black #0B0B0F).
   =========================================================================== */

:root {
  --red: #E11D2A;
  --red-bright: #FF3B49;
  --bg: #0B0B0F;
  --bg-elev: #17181C;
  --bg-2: #26282E;
  --border: #26282E;
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #FFFFFF;
  --text-2: #9BA1AD;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --pill: 999px;

  --maxw: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: 'Spline Sans', Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

.muted { color: var(--text-2); }

.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 3px; border-radius: 4px; }

/* ----------------------------------------------------------------- brand mark */
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.brand__word { font-size: 1.25rem; letter-spacing: -0.01em; }

.brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(160deg, var(--red-bright), var(--red));
  box-shadow: 0 6px 18px -6px rgba(225, 29, 42, 0.6);
}
.brand-mark .flame { width: 60%; height: 60%; fill: #fff; }
.brand-mark--sm { width: 26px; height: 26px; border-radius: 8px; }

/* ----------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 0.98rem; line-height: 1;
  padding: 13px 22px; border-radius: var(--pill); border: 1px solid transparent;
  cursor: pointer; transition: transform 0.15s var(--ease), background 0.2s var(--ease),
    border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); white-space: nowrap;
}
.btn--sm { padding: 9px 16px; font-size: 0.9rem; }
.btn--lg { padding: 16px 28px; font-size: 1.05rem; }

.btn--primary {
  background: linear-gradient(160deg, var(--red-bright), var(--red));
  color: #fff; box-shadow: 0 10px 30px -10px rgba(225, 29, 42, 0.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -10px rgba(225, 29, 42, 0.85); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.04); color: var(--text); border-color: var(--border-soft);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

.btn:active { transform: translateY(0); }

/* ----------------------------------------------------------------- nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), backdrop-filter 0.25s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 11, 15, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links > a:not(.btn) { color: var(--text-2); font-weight: 500; font-size: 0.96rem; transition: color 0.18s; }
.nav__links > a:not(.btn):hover { color: var(--text); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: none; border: 0; cursor: pointer;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 6px; padding: 12px 24px 22px;
  background: rgba(11, 11, 15, 0.96); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.nav__mobile:not([hidden]) { display: flex; }
.nav__mobile > a:not(.btn) { color: var(--text-2); padding: 12px 4px; font-weight: 500; border-bottom: 1px solid var(--border-soft); }
.nav__mobile > .btn { margin-top: 12px; }

/* ----------------------------------------------------------------- hero */
.hero { position: relative; padding: 72px 0 90px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% -10% auto; height: 720px; pointer-events: none;
  background:
    radial-gradient(60% 60% at 70% 18%, rgba(255, 59, 73, 0.30), transparent 60%),
    radial-gradient(48% 48% at 18% 8%, rgba(225, 29, 42, 0.20), transparent 62%);
  filter: blur(10px);
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}

.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.78rem; font-weight: 700; color: var(--red-bright); margin-bottom: 18px;
}
.hero__title { font-size: clamp(2.4rem, 5.6vw, 4rem); font-weight: 700; }
.hero__sub { margin-top: 22px; font-size: 1.12rem; color: var(--text-2); max-width: 36em; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.stores { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-soft);
  border-radius: var(--r-md); padding: 9px 16px; color: var(--text-2);
}
.store-badge svg { width: 22px; height: 22px; fill: currentColor; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.15; font-weight: 600; font-size: 0.98rem; color: var(--text); }
.store-badge small { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-2); font-weight: 700; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.chips li {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; color: var(--text-2);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-soft);
  padding: 6px 13px; border-radius: var(--pill);
}

/* ----------------------------------------------------------------- phone mock */
.hero__art { display: flex; justify-content: center; }
.phone {
  position: relative; width: 300px; max-width: 78vw; aspect-ratio: 300 / 624;
  border-radius: 46px; padding: 12px;
  background: linear-gradient(160deg, #2a2c33, #121317 60%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(0,0,0,0.4);
}
.phone__notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 7px; border-radius: var(--pill); background: rgba(0, 0, 0, 0.55); z-index: 2;
}
.phone__screen {
  height: 100%; border-radius: 34px; background: radial-gradient(120% 80% at 80% -10%, rgba(225,29,42,0.18), transparent 55%), var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 38px 16px 18px; display: flex; flex-direction: column; gap: 13px; overflow: hidden;
}
.appbar { display: flex; align-items: center; gap: 8px; }
.appbar__word { font-weight: 600; font-size: 0.95rem; }
.appbar__avatar { margin-left: auto; width: 26px; height: 26px; border-radius: var(--pill); background: linear-gradient(135deg, #3C87F7, #8B5CF6); }

.streak-card {
  background: linear-gradient(150deg, var(--red-bright), var(--red));
  border-radius: var(--r-lg); padding: 16px 18px; box-shadow: 0 14px 30px -16px rgba(225,29,42,0.8);
}
.streak-card__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; opacity: 0.85; }
.streak-card__value { font-size: 2.3rem; font-weight: 700; line-height: 1; margin-top: 6px; }
.streak-card__value span { font-size: 0.9rem; font-weight: 600; opacity: 0.85; }
.streak-card__foot { font-size: 0.78rem; margin-top: 10px; opacity: 0.9; }

.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mini-stats > div {
  background: var(--bg-elev); border: 1px solid var(--border-soft); border-radius: var(--r-md);
  padding: 10px 6px; display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.mini-stats__n { font-weight: 700; font-size: 1rem; }
.mini-stats__l { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-2); }

.feed { display: flex; flex-direction: column; gap: 6px; margin-top: 2px; }
.feed li {
  display: flex; align-items: center; gap: 10px; background: var(--bg-elev);
  border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 10px 12px;
}
.feed__t { font-size: 0.82rem; font-weight: 600; }
.feed__m { margin-left: auto; font-size: 0.7rem; color: var(--text-2); }
.dot { width: 9px; height: 9px; border-radius: var(--pill); flex: none; }
.dot--amber { background: #E0890B; } .dot--blue { background: #3C87F7; }
.dot--green { background: #1E9E5A; } .dot--red { background: var(--red); }

/* ----------------------------------------------------------------- sections */
.section { padding: 92px 0; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.018) 30%, transparent); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.section__head { max-width: 40rem; margin-bottom: 48px; }
.section__title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 700; }
.section__lede { margin-top: 16px; font-size: 1.1rem; color: var(--text-2); }

.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ----------------------------------------------------------------- cards */
.card {
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 28px; transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.16); background: #1b1c21; }
.card--plain:hover { transform: none; }
.card__icon {
  display: grid; place-items: center; width: 50px; height: 50px; border-radius: var(--r-md);
  margin-bottom: 18px; color: var(--accent, var(--red));
  background: color-mix(in srgb, var(--accent, var(--red)) 16%, transparent);
}
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card__title { font-size: 1.22rem; font-weight: 600; margin-bottom: 10px; }
.card__body { color: var(--text-2); font-size: 1rem; }

/* ----------------------------------------------------------------- why */
.why { padding: 26px 28px; border-left: 2px solid var(--red); background: rgba(255,255,255,0.02); border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.why__title { font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
.why__body { color: var(--text-2); }

/* ----------------------------------------------------------------- split (coaches) */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.split__copy .btn { margin-top: 26px; }
.split__list { display: flex; flex-direction: column; gap: 14px; }
.split__list li {
  display: flex; align-items: flex-start; gap: 14px; font-size: 1.05rem; font-weight: 500;
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px 18px;
}
.check { flex: none; width: 22px; height: 22px; border-radius: var(--pill); background: rgba(30,158,90,0.16); position: relative; margin-top: 1px; }
.check::after { content: ""; position: absolute; left: 7px; top: 4px; width: 5px; height: 9px; border: solid #2FBE74; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ----------------------------------------------------------------- investor CTA */
.cta-inline {
  margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 26px 30px;
}
.cta-inline p { color: var(--text-2); max-width: 34em; }

/* ----------------------------------------------------------------- join */
.join { position: relative; padding: 100px 0; text-align: center; overflow: hidden; }
.join__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 80% at 50% 120%, rgba(225, 29, 42, 0.4), transparent 60%);
}
.join__inner { position: relative; max-width: 40rem; margin: 0 auto; }
.join__title { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; }
.join__sub { margin: 18px auto 30px; font-size: 1.12rem; color: var(--text-2); max-width: 32em; }
.join__note { margin-top: 18px; font-size: 0.9rem; color: var(--text-2); }
.join__note code { background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 5px; font-size: 0.85em; }
.ms-form { width: 100%; max-width: 640px; height: 560px; border: 0; border-radius: var(--r-lg); margin: 24px auto 0; background: #fff; }

/* ----------------------------------------------------------------- footer */
.footer { border-top: 1px solid var(--border); padding: 56px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer__tag { margin-top: 16px; color: var(--text-2); font-size: 0.95rem; max-width: 26em; }
.footer__tag strong { color: var(--text); }
.footer__col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-2); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--text-2); padding: 6px 0; transition: color 0.18s; }
.footer__col a:hover { color: var(--text); }
.footer__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border-soft);
  font-size: 0.88rem; color: var(--text-2);
}

/* ----------------------------------------------------------------- reveal anim */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn:hover, .card:hover { transform: none; }
}

/* ----------------------------------------------------------------- responsive */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__copy { order: 1; }
  .hero__art { order: 2; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .section { padding: 68px 0; }
  .hero { padding: 48px 0 70px; text-align: center; }
  .eyebrow { margin-bottom: 14px; }
  .hero__cta, .stores, .chips { justify-content: center; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .cta-inline { flex-direction: column; align-items: flex-start; text-align: left; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; gap: 8px; }
}

/* ----------------------------------------------------------------- legal page */
.legal-top {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 11, 15, 0.82); backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--border);
}
.legal-top__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.legal-top .back { color: var(--text-2); font-weight: 500; font-size: 0.95rem; }
.legal-top .back:hover { color: var(--text); }

.legal { max-width: 760px; margin: 0 auto; padding: 56px 24px 88px; }
.legal h1 { font-size: clamp(2rem, 4.4vw, 2.7rem); font-weight: 700; }
.legal .updated { color: var(--text-2); margin-top: 12px; font-size: 0.92rem; }
.legal .lead { margin-top: 22px; font-size: 1.12rem; color: var(--text-2); }
.legal h2 { font-size: 1.4rem; font-weight: 600; margin: 42px 0 12px; }
.legal h3 { font-size: 1.08rem; font-weight: 600; margin: 26px 0 8px; color: #E6E9EF; }
.legal p { margin: 12px 0; color: #C7CCD6; font-size: 1.02rem; line-height: 1.7; }
.legal ul { margin: 12px 0; padding-left: 22px; list-style: disc; }
.legal li { margin: 7px 0; color: #C7CCD6; font-size: 1.02rem; line-height: 1.65; }
.legal a { color: var(--red-bright); text-decoration: underline; }
.legal strong { color: var(--text); font-weight: 600; }
.legal hr { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }
.legal address { font-style: normal; color: #C7CCD6; line-height: 1.7; }
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }

/* ----------------------------------------------------------------- screens gallery */
.shots {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 10px 0 14px;
  padding-inline: max(24px, calc((100% - var(--maxw)) / 2));
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.shots::-webkit-scrollbar { display: none; }
.shot {
  flex: 0 0 auto; width: 232px; margin: 0; text-align: center; scroll-snap-align: center;
}
.shot img { width: 100%; height: auto; display: block; filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.55)); }
.shot figcaption { margin-top: 18px; color: var(--text-2); font-weight: 600; font-size: 0.95rem; }

/* ----------------------------------------------------------------- hero alt link */
.hero__alt { margin-top: 18px; font-size: 0.98rem; }
.hero__alt a { color: var(--red-bright); font-weight: 600; }
.hero__alt a:hover { text-decoration: underline; }

/* ----------------------------------------------------------------- coach "and more" line */
.coach-more { margin: 30px auto 0; max-width: 48rem; text-align: center; color: var(--text-2); font-size: 1rem; }

/* ----------------------------------------------------------------- everything matrix */
.matrix { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 26px; }
.matrix__group h3 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--red-bright); font-weight: 700; margin-bottom: 14px;
}
.matrix__list { display: flex; flex-direction: column; gap: 10px; }
.matrix__list li { position: relative; padding-left: 28px; color: var(--text-2); font-size: 0.95rem; line-height: 1.4; }
.matrix__list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 17px; height: 17px;
  border-radius: 5px; background: rgba(30, 158, 90, 0.16);
}
.matrix__list li::after {
  content: ""; position: absolute; left: 6px; top: 5px; width: 5px; height: 9px;
  border: solid #2FBE74; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
@media (max-width: 920px) { .matrix { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; } }
@media (max-width: 540px) { .matrix { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------- compare table */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.compare-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border); border-radius: var(--r-xl); background: var(--bg-elev);
}
.compare-scroll:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 2px; }

.compare-table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 0.96rem; }
.compare-table th, .compare-table td {
  padding: 14px 16px; text-align: center; vertical-align: middle;
  border-bottom: 1px solid var(--border-soft);
}
.compare-table thead th, .compare-table thead td { background: var(--bg-2); border-bottom: 1px solid var(--border); }
.compare-table thead th {
  font-size: 0.84rem; font-weight: 600; color: var(--text-2); line-height: 1.3; letter-spacing: 0.01em;
}
.compare-table thead .ct-corner { position: sticky; left: 0; background: var(--bg-2); z-index: 3; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:hover td, .compare-table tbody tr:hover th { background: rgba(255, 255, 255, 0.02); }

/* row header (capability), kept visible while the table scrolls sideways */
.compare-table th[scope="row"] {
  text-align: left; font-weight: 500; color: var(--text); line-height: 1.35;
  position: sticky; left: 0; background: var(--bg-elev); z-index: 1;
  min-width: 232px; max-width: 300px;
}

/* highlighted Garra column */
.compare-table .ct-garra { background: rgba(225, 29, 42, 0.07); }
.compare-table thead th.ct-garra { background: rgba(225, 29, 42, 0.16); }
.compare-table tbody tr:hover .ct-garra { background: rgba(225, 29, 42, 0.12); }
.ct-garra__mark { display: inline-block; color: #fff; font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em; }

/* yes / partial / no glyphs */
.c { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: var(--pill); position: relative; }
.c-yes { background: rgba(30, 158, 90, 0.16); }
.c-yes::after {
  content: ""; width: 6px; height: 11px; margin-top: -2px;
  border: solid #2FBE74; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.c-partial { background: rgba(224, 137, 11, 0.16); }
.c-partial::after {
  content: ""; width: 12px; height: 12px; border-radius: var(--pill); border: 1.5px solid #E0A60B;
  background: linear-gradient(90deg, #E0A60B 0 50%, transparent 50% 100%);
}
.c-no { background: rgba(255, 255, 255, 0.05); }
.c-no::after { content: ""; width: 10px; height: 2px; border-radius: 2px; background: var(--text-2); opacity: 0.5; }

/* legend + footnote */
.compare-legend {
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: center;
  margin-top: 22px; color: var(--text-2); font-size: 0.92rem;
}
.compare-legend li { display: inline-flex; align-items: center; gap: 9px; }
.compare-legend .c { width: 22px; height: 22px; }
.compare-note { margin: 14px auto 0; max-width: 44rem; text-align: center; color: var(--text-2); font-size: 0.92rem; }
