/* ============================================
   Tribu Landing Page - Core Styles
   ============================================
   Structure:
   1. Reset & Base
   2. Typography
   3. Layout & Grid
   4. Header & Navigation
   5. Hero Section
   6. Sections (shared)
   7. Social Proof / Stats
   8. Radars / How It Works
   9. Benefits
   10. Pricing
   11. FAQ
   12. Footer / CTA
   13. Components (buttons, forms, cards)
   14. A/B Testing
   15. Animations
   16. Responsive
   ============================================ */

/* --- 1. Reset & Base --- */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- 2. Typography --- */

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1B9AAA;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #555;
  max-width: 640px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

/* --- 3. Layout & Grid --- */

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.text-center { text-align: center; }

/* --- 4. Header & Navigation --- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  border-bottom-color: #e8e8ef;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  transition: color 0.2s;
}

.nav-menu a:hover { color: #1B9AAA; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a2e;
  margin: 5px 0;
  transition: transform 0.3s;
}

/* --- 5. Hero Section --- */

.hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, #E6F5F7 0%, #ffffff 100%);
}

.hero h1 {
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: #555;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-tagline {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1B9AAA;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

/* --- Pulse Card (Slack-style) --- */

.pulse-card {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  background: #fff;
  border: 1px solid #dde3e5;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: left;
  overflow: hidden;
}

.pulse-step {
  display: none;
  padding: 1.75rem 2rem;
  animation: pulseFadeIn 0.4s ease;
}

.pulse-step.pulse-active {
  display: block;
}

@keyframes pulseFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pulse-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.pulse-avatar {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.pulse-meta {
  display: flex;
  flex-direction: column;
}

.pulse-bot-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #1a1a2e;
}

.pulse-timestamp {
  font-size: 0.72rem;
  color: #999;
}

.pulse-quote {
  font-size: 0.88rem;
  color: #555;
  font-style: italic;
  line-height: 1.6;
  padding: 0.75rem 1rem;
  background: #f5fafb;
  border-left: 3px solid #1B9AAA;
  border-radius: 0 6px 6px 0;
  margin-bottom: 1.25rem;
}

.pulse-cite {
  font-size: 0.78rem;
  color: #999;
  font-style: normal;
}

.pulse-question {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.pulse-answers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pulse-answer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 2px solid #d6e8ea;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1a1a2e;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-align: left;
  font-family: inherit;
}

.pulse-answer:hover {
  border-color: #1B9AAA;
  background: #f0fafb;
  transform: translateX(3px);
}

.pulse-answer.selected {
  border-color: #1B9AAA;
  background: #E6F5F7;
}

.pulse-answer-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pulse-footer-note {
  font-size: 0.75rem;
  color: #bbb;
  margin-top: 1rem;
}

.pulse-insight {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.6;
  padding: 0.75rem 1rem;
  background: #f0fafb;
  border-left: 3px solid #1B9AAA;
  border-radius: 0 6px 6px 0;
  margin-bottom: 1.25rem;
}

.pulse-result-content {
  text-align: center;
  padding: 0.5rem 0;
}

.pulse-result-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.pulse-result-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* --- Pulse Radar Preview --- */

.pulse-radar-preview {
  max-width: 180px;
  margin: 0 auto 1.25rem;
}

.pulse-radar-preview svg {
  width: 100%;
  height: auto;
}

.pulse-radar-preview .radar-bg {
  fill: none;
  stroke: #c5e5ea;
  stroke-width: 1;
}

.pulse-radar-data {
  fill: rgba(27, 154, 170, 0.15);
  stroke: #1B9AAA;
  stroke-width: 2;
  animation: radarGrow 0.8s ease-out forwards;
}

.pulse-radar-label {
  font-size: 0.72rem;
  color: #999;
  text-align: center;
  margin-top: 0.5rem;
}

/* --- Pulse Email Capture --- */

.pulse-email-capture {
  border-top: 1px solid #e8e8ef;
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.pulse-email-headline {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 0.75rem;
}

.pulse-email-perks {
  margin-bottom: 1rem;
  padding-left: 0;
}

.pulse-email-perks li {
  font-size: 0.82rem;
  color: #555;
  padding: 0.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pulse-email-perks li::before {
  content: '\2713';
  color: #1B9AAA;
  font-weight: 700;
  flex-shrink: 0;
}

.pulse-email-form {
  margin: 0;
  max-width: 100%;
}

/* --- Pulse Slack CTA --- */

.pulse-slack-cta {
  text-align: center;
  margin-top: 1rem;
}

.pulse-divider-text {
  display: block;
  font-size: 0.78rem;
  color: #bbb;
  margin-bottom: 0.75rem;
  position: relative;
}

.pulse-divider-text::before,
.pulse-divider-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #e8e8ef;
}

.pulse-divider-text::before { left: 0; }
.pulse-divider-text::after { right: 0; }

.pulse-slack-btn {
  font-size: 0.88rem;
  padding: 0.6rem 1.4rem;
}

.pulse-slack-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* --- Page Personalization --- */

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 300px;
  max-width: 360px;
  order: 0;
  transition: order 0s, box-shadow 0.3s, border-color 0.3s;
}

/* Segment-based reordering: matched card comes first and gets highlighted */
body.segment-me .benefit-card[data-segment="me"],
body.segment-team .benefit-card[data-segment="team"],
body.segment-company .benefit-card[data-segment="company"] {
  order: -1;
  border-color: #1B9AAA;
  box-shadow: 0 4px 20px rgba(27, 154, 170, 0.12);
}

/* Pricing card highlight for matched segment */
body.segment-me .pricing-card[data-segment="me"],
body.segment-team .pricing-card[data-segment="team"],
body.segment-company .pricing-card[data-segment="company"] {
  border-color: #1B9AAA;
  box-shadow: 0 8px 32px rgba(27, 154, 170, 0.15);
}


/* Hero CTAs — Add to Slack + community */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  margin: 1.75rem 0 2rem;
  flex-wrap: wrap;
}

.add-to-slack-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.add-to-slack-btn:hover { opacity: 0.88; }
.add-to-slack-btn svg { flex-shrink: 0; }

.community-link {
  color: #1B9AAA;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.community-link:hover { color: #157a87; }

.hero-proof {
  font-size: 0.88rem;
  color: #888;
  margin-top: 1rem;
}

.hero-proof strong {
  color: #1a1a2e;
}

.hero-framework {
  font-size: 0.82rem;
  color: #999;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.hero-framework strong {
  color: #1B9AAA;
  font-weight: 600;
}

/* --- 6. Sections (shared) --- */

.section-dark {
  background: #1a1a2e;
  color: #ffffff;
}

.section-dark .section-label { color: #5DC8D6; }
.section-dark .section-subtitle { color: #aab; }

.section-light {
  background: #E6F5F7;
}

/* --- 7. Social Proof / Stats --- */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1B9AAA;
  line-height: 1;
}

.stat-label {
  font-size: 0.92rem;
  color: #666;
  margin-top: 0.5rem;
}

.stat-source {
  font-size: 0.72rem;
  color: #999;
  margin-top: 0.35rem;
  font-style: italic;
}

.logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  opacity: 0.5;
  filter: grayscale(1);
}

.logos-strip span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- 8. Radars / How It Works --- */

.radars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.radar-card {
  background: #fff;
  border: 1px solid #e8e8ef;
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.radar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 154, 170, 0.1);
}

.radar-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.radar-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.radar-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
}

.radar-visual {
  max-width: 420px;
  margin: 3rem auto 0;
}

.radar-visual svg {
  width: 100%;
  height: auto;
}

/* Pentagon radar visualization */
.radar-visual .radar-bg { fill: none; stroke: #c5e5ea; stroke-width: 1; }
.radar-visual .radar-data { fill: rgba(27, 154, 170, 0.15); stroke: #1B9AAA; stroke-width: 2.5; }
.radar-visual .radar-dot { fill: #1B9AAA; }
.radar-visual .radar-label { font-size: 11px; fill: #555; font-weight: 500; }

/* --- Report Preview Cards --- */

.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.report-card {
  background: #fff;
  border: 1px solid #e8e8ef;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27, 154, 170, 0.1);
}

.report-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.report-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.report-card > p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.report-highlights {
  margin-bottom: 1.25rem;
}

.report-highlights li {
  font-size: 0.82rem;
  color: #555;
  padding: 0.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  list-style: none;
}

.report-highlights li::before {
  content: '\2713';
  color: #1B9AAA;
  font-weight: 700;
  flex-shrink: 0;
}

.radar-coming-soon {
  font-size: 0.88rem;
  color: #666;
  margin-top: 2rem;
  padding: 0.75rem 1.25rem;
  background: rgba(27, 154, 170, 0.06);
  border: 1px dashed #1B9AAA;
  border-radius: 8px;
  display: inline-block;
}

.radar-coming-soon strong {
  color: #1B9AAA;
}

/* Steps */
/* ========================
   HOW IT WORKS STEPPER
   ======================== */
.tribu-stepper { margin-top: 2.5rem; }

.how-tabs { display: flex; align-items: center; }

.how-tab {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  background: none; border: none; cursor: pointer; padding: 0 0.6rem; flex-shrink: 0;
}

.how-tab-num {
  width: 34px; height: 34px; border-radius: 50%; background: #e8eaed; color: #888;
  font-size: 14px; font-weight: 700; font-family: 'Inter', sans-serif;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.how-tab-label { font-size: 11px; color: #999; font-weight: 500; font-family: 'Inter', sans-serif; white-space: nowrap; transition: color 0.3s; }

.how-tab.active .how-tab-num { background: #1B9AAA; color: #fff; box-shadow: 0 2px 10px rgba(27,154,170,0.35); }
.how-tab.active .how-tab-label { color: #1B9AAA; font-weight: 600; }
.how-tab.done .how-tab-num { background: rgba(27,154,170,0.15); color: #1B9AAA; }
.how-tab.done .how-tab-label { color: #1B9AAA; }

.how-tab-line { flex: 1; height: 2px; background: #e8eaed; margin-bottom: 1.5rem; min-width: 16px; transition: background 0.4s; }
.how-tab-line.done { background: rgba(27,154,170,0.4); }

.how-autobar { height: 3px; background: #f0f0f0; border-radius: 2px; margin: 1rem 0 2rem; overflow: hidden; }
.how-autobar-fill { height: 100%; background: #1B9AAA; border-radius: 2px; width: 0; }

.how-panels { position: relative; }
.how-panel { display: none; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.how-panel.active { display: grid; animation: tribIn 0.4s ease; }

@keyframes tribIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.how-panel-visual { display: flex; justify-content: center; }
.how-panel-visual svg { width: 100%; max-width: 300px; filter: drop-shadow(0 6px 20px rgba(0,0,0,0.08)); overflow: visible; }

.how-panel-text h3 { font-size: 1.45rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.75rem; }
.how-panel-text p { color: #555; line-height: 1.7; font-size: 0.95rem; margin-bottom: 0.75rem; }

.how-tip { background: rgba(27,154,170,0.08); border-left: 3px solid #1B9AAA; padding: 0.65rem 1rem; border-radius: 0 6px 6px 0; font-size: 0.875rem; color: #167a87; font-weight: 500; }

.how-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid #f0f0f0; }

.how-btn-prev, .how-btn-next {
  border: 1.5px solid #dde0e3; border-radius: 8px; padding: 0.6rem 1.4rem;
  font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all 0.2s ease; background: #fff; color: #555;
}

.how-btn-next { background: #1B9AAA; border-color: #1B9AAA; color: #fff; }
.how-btn-prev:hover:not(:disabled) { border-color: #1B9AAA; color: #1B9AAA; }
.how-btn-next:hover:not(:disabled) { background: #167a87; }
.how-btn-prev:disabled, .how-btn-next:disabled { opacity: 0.3; cursor: default; }
.how-step-count { font-size: 0.875rem; color: #999; }

/* ========================
   BENEFITS ROLE SWITCHER
   ======================== */
.roles-toggle {
  display: flex; gap: 0; background: #f0f4f5; border-radius: 12px; padding: 4px;
  max-width: 480px; margin: 2.5rem auto 2rem;
}

.role-tab {
  flex: 1; padding: 0.65rem 0.8rem; border: none; border-radius: 9px; background: none;
  cursor: pointer; font-size: 0.85rem; font-weight: 600; font-family: 'Inter', sans-serif;
  color: #888; transition: all 0.25s ease;
}

.role-tab.active { background: #1B9AAA; color: white; box-shadow: 0 2px 8px rgba(27,154,170,0.3); }

.roles-panels { position: relative; }
.role-panel { display: none; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.role-panel.active { display: grid; animation: tribIn 0.35s ease; }

.role-visual { display: flex; justify-content: center; }
.role-visual svg { width: 100%; max-width: 280px; filter: drop-shadow(0 6px 20px rgba(0,0,0,0.07)); }

.role-badge {
  display: inline-block; background: #1B9AAA; color: white; font-size: 0.72rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem;
}

.role-content h3 { font-size: 1.35rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.5rem; }
.role-commitment { font-size: 0.875rem; color: #1B9AAA; font-weight: 600; margin-bottom: 1rem; }

.role-list { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }

.role-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: #444; line-height: 1.5;
}

.role-list li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: #1B9AAA url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center/10px;
}

.role-see { background: rgba(27,154,170,0.07); border-left: 3px solid #1B9AAA; padding: 0.65rem 1rem; border-radius: 0 6px 6px 0; font-size: 0.875rem; color: #444; line-height: 1.5; }

/* --- 9. Benefits (legacy) --- */
.benefit-card { padding: 2rem; border-radius: 12px; background: #fff; border: 1px solid #e8e8ef; }
.benefit-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.benefit-card h3 { margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.92rem; color: #666; }

/* --- 9b. Integrations Hub Diagram --- */

.hub-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem 0;
}

/* Source tools (left column) */
.hub-sources {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex-shrink: 0;
}

.hub-category {
  text-align: left;
}

.hub-category-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 0.4rem;
  padding-left: 0.15rem;
}

.hub-tools {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tool-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid #e8e8ef;
  border-radius: 8px;
  padding: 0.35rem 0.65rem 0.35rem 0.35rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.tool-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tool-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--tool-color, #1B9AAA);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.tool-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

/* Connector arrows */
.hub-connector {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.hub-arrow-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #c5e5ea, #1B9AAA);
}

.hub-arrow-head {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #1B9AAA;
}

/* Central hub */
.hub-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.hub-brain-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B9AAA 0%, #5DC8D6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(27, 154, 170, 0.15), 0 0 0 14px rgba(27, 154, 170, 0.06);
  animation: hubPulse 3s ease-in-out infinite;
}

@keyframes hubPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(27, 154, 170, 0.15), 0 0 0 14px rgba(27, 154, 170, 0.06); }
  50% { box-shadow: 0 0 0 10px rgba(27, 154, 170, 0.2), 0 0 0 22px rgba(27, 154, 170, 0.08); }
}

.hub-brain-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.hub-center-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1B9AAA;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Output insights (right column) */
.hub-outputs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.hub-output {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: #fff;
  border: 1px solid #e8e8ef;
  border-left: 3px solid #1B9AAA;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  text-align: left;
  max-width: 300px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hub-output:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(27, 154, 170, 0.1);
}

.hub-output-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.hub-output strong {
  font-size: 0.88rem;
  color: #1a1a2e;
  display: block;
  margin-bottom: 0.15rem;
}

.hub-output p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.hub-footer-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 2rem;
}

.hub-footer-note strong {
  color: #1B9AAA;
}

/* --- 10. Pricing --- */

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Founding member banner */
.founding-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2b55 100%);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 1.5rem auto 1.5rem;
  max-width: 560px;
}

.founding-inner { text-align: center; }

.founding-badge-label {
  display: inline-block;
  background: #1B9AAA;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.founding-text {
  color: #c5e5ea;
  font-size: 1.05rem;
  margin: 0.75rem 0 0.75rem;
  line-height: 1.5;
}

.founding-text strong { color: #fff; }

.founding-counter {
  margin-top: 0.5rem;
}

.founding-spots {
  display: inline-block;
  background: rgba(27, 154, 170, 0.2);
  border: 1px solid rgba(27, 154, 170, 0.4);
  color: #5DC8D6;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 8px;
}

.founding-spots strong,
#founding-remaining {
  color: #fff;
  font-weight: 800;
}

.founding-subtext {
  color: #8ab8bf;
  font-size: 0.88rem;
  margin: 0.25rem 0 0.75rem;
}

.founding-link {
  display: inline-block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.75rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
}

.founding-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: #666;
}

.pricing-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  background: #ddd;
  border-radius: 13px;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.pricing-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.pricing-toggle.annual {
  background: #1B9AAA;
}

.pricing-toggle.annual::after {
  transform: translateX(22px);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border: 2px solid #e8e8ef;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: #1B9AAA;
  box-shadow: 0 8px 32px rgba(27, 154, 170, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #1B9AAA;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 1rem 0 0.25rem;
}

.pricing-card .price-suffix {
  font-size: 0.88rem;
  color: #888;
}

.pricing-save {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-top: 0.25rem;
}

.pricing-card .plan-desc {
  font-size: 0.9rem;
  color: #666;
  margin: 1rem 0 1.5rem;
  min-height: 2.5rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.88rem;
  color: #444;
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '\2713';
  color: #1B9AAA;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* --- 11. FAQ --- */

.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid #e8e8ef;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: #1B9AAA;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
}

/* --- 12. Footer / Final CTA --- */

.final-cta {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(180deg, #fff 0%, #E6F5F7 100%);
}

.final-cta h2 { margin-bottom: 1rem; }
.final-cta p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: #1a1a2e;
  color: #aab;
  padding: 3rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #aab;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  color: #aab;
  transition: color 0.2s, transform 0.2s;
  display: flex;
}

.footer-social a:hover {
  color: #fff;
  transform: scale(1.15);
}

/* --- 13. Components --- */

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: #1B9AAA;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.cta-primary:hover {
  background: #157F8E;
  transform: translateY(-1px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: #1B9AAA;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid #1B9AAA;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.cta-secondary:hover {
  background: #1B9AAA;
  color: #fff;
}

.cta-small {
  padding: 0.6rem 1.4rem;
  font-size: 0.88rem;
}

.cta-full {
  width: 100%;
  justify-content: center;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  gap: 0.5rem;
  max-width: 440px;
  margin: 0 auto;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 2px solid #c5e5ea;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input[type="email"]:focus {
  border-color: #1B9AAA;
}

.form-success {
  text-align: center;
  padding: 1rem;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

/* Testimonial */
.testimonial {
  max-width: 600px;
  margin: 3rem auto 0;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial cite {
  font-size: 0.88rem;
  color: #888;
  font-style: normal;
}

/* --- 14. A/B Testing --- */

[data-variant] {
  display: none;
}

[data-variant].ab-active {
  display: block;
}

/* Inline variants (spans, etc) */
span[data-variant].ab-active,
a[data-variant].ab-active {
  display: inline;
}

div.hero-cta-group [data-variant].ab-active {
  display: flex;
}

/* --- 15. Animations --- */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.radar-visual.animate .radar-data {
  animation: radarGrow 1s ease-out forwards;
}

@keyframes radarGrow {
  from { opacity: 0; transform: scale(0.3); transform-origin: center; }
  to   { opacity: 1; transform: scale(1);   transform-origin: center; }
}

/* --- 16. Responsive --- */

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .nav-menu.open { display: flex; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-social { justify-content: center; }

  .hero { padding: 7rem 0 3rem; }

  .pulse-card { margin: 0 -0.5rem 2rem; }
  .pulse-step { padding: 1.25rem 1.25rem; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .benefits-grid { flex-direction: column; align-items: center; }
  .benefit-card { max-width: 100%; }
  .how-panel.active, .role-panel.active { grid-template-columns: 1fr; gap: 1.5rem; }
  .how-tab-label { display: none; }
  .how-panel-visual svg, .role-visual svg { max-width: 240px; }

  .pulse-email-form { flex-direction: column; }

  /* Hub diagram: stack vertically on tablet/mobile */
  .hub-diagram {
    flex-direction: column;
    gap: 1.25rem;
  }

  .hub-sources {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hub-category { text-align: center; }

  .hub-tools { justify-content: center; }

  .hub-connector {
    flex-direction: column;
    align-items: center;
  }

  .hub-arrow-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, #c5e5ea, #1B9AAA);
  }

  .hub-arrow-head {
    border-top: 10px solid #1B9AAA;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: none;
  }

  .hub-outputs {
    flex-direction: column;
    align-items: center;
  }

  .hub-output { max-width: 100%; }
}

@media (max-width: 480px) {
  section { padding: 3.5rem 0; }
  .hero h1 { font-size: 1.8rem; }
  .radars-grid { grid-template-columns: repeat(2, 1fr); }

  .tool-badge { padding: 0.25rem 0.5rem 0.25rem 0.25rem; }
  .tool-initial { width: 24px; height: 24px; font-size: 0.72rem; }
  .tool-name { font-size: 0.7rem; }
}

/* --- 17. Measurement Section --- */

.measure-section {
  background: #1a1a2e;
  color: #e8eaf0;
  padding: 5rem 0;
}

.measure-section .section-label { color: #1B9AAA; }
.measure-section h2 { color: #fff; }
.measure-section .section-subtitle { color: #a8b4c0; max-width: 640px; margin: 0 auto 2rem; }

.measure-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border-radius: 40px;
  padding: 4px;
  margin-bottom: 2.5rem;
  gap: 4px;
}

.msr-tab {
  padding: 0.5rem 1.4rem;
  border: none;
  border-radius: 40px;
  background: transparent;
  color: #a8b4c0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.msr-tab.active {
  background: #1B9AAA;
  color: #fff;
}

.measure-views { position: relative; }

.measure-view { display: none; }
.measure-view.active { display: block; }

/* Dashboard card */
.msr-dashboard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.msr-dash-header {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7a8d;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.msr-private-badge {
  background: rgba(155,89,182,0.18);
  color: #c39bda;
  border-radius: 20px;
  padding: 0.15rem 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
}

.msr-scores-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.msr-score-item {
  display: grid;
  grid-template-columns: 1.5rem 130px 2.5rem 1fr;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
}

.msr-score-item.alert .msr-dim-name { color: #ff8080; }
.msr-score-item.alert .msr-dim-score { color: #ff8080; font-weight: 700; }

.msr-dim-icon { font-size: 1rem; }
.msr-dim-name { color: #c8d0dc; font-weight: 500; }
.msr-dim-score { font-weight: 600; color: #e8eaf0; text-align: right; }

.msr-dim-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.msr-dim-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.8s ease;
}

.msr-dim-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
  transition: color 0.2s, border-color 0.2s;
}
.msr-dim-link:hover { color: #1B9AAA; border-color: #1B9AAA; }

.msr-dash-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}

.msr-dash-alert {
  font-size: 0.85rem;
  color: #ff8080;
}

.msr-drill-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  background: rgba(231,76,60,0.15);
  color: #ff8080;
  border: 1px solid rgba(231,76,60,0.45);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  animation: msrPulse 2.5s ease-in-out infinite;
}

.msr-drill-cta:hover {
  background: rgba(231,76,60,0.3);
  color: #fff;
  border-color: rgba(231,76,60,0.8);
  animation: none;
}

@keyframes msrPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231,76,60,0); }
  50% { box-shadow: 0 0 0 6px rgba(231,76,60,0.15); }
}

/* Drill-down levels */
.msr-drill {
  max-width: 680px;
  margin: 0 auto;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.msr-drill.open { display: flex; }

.msr-level {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid #E74C3C;
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  transition: opacity 0.4s, transform 0.4s;
}

.msr-level.locked {
  opacity: 0.3;
  pointer-events: none;
  filter: blur(2px);
}

.msr-level.unlocking {
  animation: msrUnlock 0.5s ease forwards;
}

@keyframes msrUnlock {
  from { opacity: 0.3; transform: translateY(8px); filter: blur(2px); }
  to   { opacity: 1;   transform: translateY(0);   filter: blur(0); }
}

.msr-level-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.msr-level-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
}

.msr-level-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #e8eaf0;
}

.msr-level-meta {
  font-size: 0.78rem;
  color: #6b7a8d;
  margin-left: auto;
}

.msr-qs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.msr-q {
  font-size: 0.88rem;
  color: #a8b4c0;
  padding-left: 1rem;
  border-left: 2px solid rgba(231,76,60,0.35);
  line-height: 1.45;
}

.msr-level-result { display: flex; flex-direction: column; gap: 0.75rem; }

.msr-result-score {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.msr-result-label {
  font-size: 0.85rem;
  color: #a8b4c0;
  margin-top: -0.5rem;
}

.msr-sub-findings {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.msr-finding {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.msr-finding.low {
  background: rgba(231,76,60,0.15);
  color: #ff8080;
  border: 1px solid rgba(231,76,60,0.3);
}

.msr-finding.mid {
  background: rgba(241,196,15,0.1);
  color: #f5d55c;
  border: 1px solid rgba(241,196,15,0.25);
}

.msr-dig-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.5rem;
  background: rgba(27,154,170,0.12);
  color: #1B9AAA;
  border: 1.5px solid rgba(27,154,170,0.5);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  align-self: flex-start;
  letter-spacing: 0.01em;
}

.msr-dig-btn:hover {
  background: #1B9AAA;
  color: #fff;
  border-color: #1B9AAA;
  transform: translateX(2px);
}

.msr-insight {
  background: rgba(27,154,170,0.07);
  border: 1px solid rgba(27,154,170,0.25);
  border-radius: 10px;
  padding: 1.25rem;
}

.msr-insight-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1B9AAA;
  margin-bottom: 0.6rem;
}

.msr-insight-text {
  font-size: 0.95rem;
  font-style: italic;
  color: #c8d8e0;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.msr-action {
  font-size: 0.88rem;
  color: #a8b4c0;
  line-height: 1.5;
}

.msr-action strong { color: #e8eaf0; }

/* Responsive */
@media (max-width: 768px) {
  .msr-dashboard { padding: 1.25rem; }
  .msr-score-item { grid-template-columns: 1.4rem 100px 2.2rem 1fr; font-size: 0.82rem; }
  .msr-level { padding: 1.25rem; }
  .msr-level-meta { margin-left: 0; }
  .msr-result-score { font-size: 1.6rem; }
}
