/* =====================================================================
   AI Adoption Workshop Kit — Landing Page
   AiDopt
   ===================================================================== */

/* ---- Design tokens ---- */
:root {
  /* Palette */
  --bg:            #F8F6F1;
  --surface:       #FFFFFF;
  --ink:           #1F2933;
  --muted:         #5F6B75;
  --line:          #DEDAD2;
  --sage:          #315C54;
  --sage-700:      #284A44;
  --sage-soft:     #E7EFEA;
  --sage-tint:     #9DBDB4;
  --sage-tint-2:   #CFE0DA;
  --amber:         #C9904A;

  /* Type */
  --font-head: "Manrope", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  /* Spacing & layout */
  --maxw: 1120px;
  --maxw-narrow: 820px;
  --gutter: 32px;
  --radius: 12px;
  --radius-lg: 18px;

  /* Effects */
  --shadow-card: 0 24px 48px -28px rgba(31, 41, 51, 0.28);
  --shadow-soft: 0 8px 24px -18px rgba(31, 41, 51, 0.22);
  --ring: 0 0 0 3px rgba(49, 92, 84, 0.30);
  --t: 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--sage-soft); color: var(--ink); }

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--font-head); letter-spacing: -0.02em; }

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: 16px; top: -48px;
  background: var(--sage);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  z-index: 100;
  transition: top var(--t);
}
.skip-link:focus { top: 16px; }

/* ---- Layout helpers ---- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: 84px; border-top: 1px solid var(--line); }
.section--white { background: var(--surface); }

.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.eyebrow--accent { color: var(--amber); }
.eyebrow--badge {
  background: var(--sage-soft);
  padding: 7px 13px;
  border-radius: 6px;
  margin-bottom: 26px;
}

.section-title {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.14;
  color: var(--ink);
  text-wrap: balance;
}
.section-intro {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 18px;
}
.section-head--center .section-intro { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  --btn-bg: var(--sage);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 9px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t);
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--sage); color: #fff; }
.btn--primary:hover { background: var(--sage-700); box-shadow: var(--shadow-soft); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  font-weight: 600;
}
.btn--ghost:hover { border-color: var(--sage); background: var(--sage-soft); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { box-shadow: var(--shadow-soft); }

.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 15px 26px; font-size: 16px; }

/* ---- Brand ---- */
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { width: auto; height: 30px; color: var(--sage); display: block; flex: none; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand-tagline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 3px;
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ---- Header / nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 246, 241, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t);
}
.nav-links > a:not(.btn):hover { color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.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); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--gutter) 20px;
  border-top: 1px solid var(--line);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a:not(.btn) {
  padding: 12px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 12px; }

/* ---- Hero (floating AI-tool icons) ---- */
.hero {
  position: relative;
  min-height: clamp(620px, calc(100svh - 66px), 940px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: 72px;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 740px;
}
.hero__content .eyebrow--badge { margin-bottom: 24px; }
.hero__title {
  font-weight: 800;
  font-size: clamp(40px, 7vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin-bottom: 22px;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(31, 41, 51, 0.62) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero__actions { display: flex; align-items: center; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__meta {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.hero__meta li { position: relative; }
.hero__meta li + li::before {
  content: "";
  position: absolute;
  left: -13px; top: 50%;
  width: 4px; height: 4px;
  margin-top: -2px;
  background: var(--line);
  border-radius: 50%;
}

/* Sparkles on "real work habits" (vanilla SparklesText) */
.sparkles {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--sage) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  transform: scale(0) rotate(75deg);
  animation: sparkleTwinkle 0.8s infinite ease-in-out;
}
@keyframes sparkleTwinkle {
  0%   { opacity: 0; transform: scale(0) rotate(75deg); }
  50%  { opacity: 1; transform: scale(var(--sp-scale, 1)) rotate(120deg); }
  100% { opacity: 0; transform: scale(0) rotate(150deg); }
}

/* Soft glow behind the headline */
.hero__glow {
  position: absolute;
  z-index: 1;
  left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  width: min(720px, 92%);
  height: 440px;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(231, 239, 234, 0.9), rgba(248, 246, 241, 0) 72%);
}

/* Floating icon layer */
.hero__icons {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.float-chip {
  position: absolute;
  opacity: 0;
  animation: chipIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--in-delay, 0s);
}
.float-chip__repel {
  transform: translate(var(--rx, 0px), var(--ry, 0px));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.float-chip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(50px, 5.4vw, 78px);
  height: clamp(50px, 5.4vw, 78px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px -22px rgba(31, 41, 51, 0.45);
  animation: chipFloat var(--fdur, 8s) ease-in-out var(--fdelay, 0s) infinite;
  will-change: transform;
}
.float-chip__icon {
  width: clamp(26px, 2.7vw, 38px);
  height: clamp(26px, 2.7vw, 38px);
  display: block;
}

@keyframes chipIn {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes chipFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(6px, -8px) rotate(4deg); }
  50%      { transform: translate(0, 4px) rotate(0deg); }
  75%      { transform: translate(-6px, -4px) rotate(-4deg); }
}

/* ---- Grids & cards ---- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card--soft { background: var(--bg); padding: 26px; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); border-color: #cfcabf; }

.card__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 32px;
  color: var(--amber);
  margin-bottom: 12px;
}
.card__title { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.card__title--sm { font-size: 16px; }
.card__body { font-size: 14.5px; line-height: 1.55; color: var(--muted); }
.grid--2 .card__body, .grid--4 .card__body { font-size: 14px; }

/* Feature icons (decorative) */
.feat-icon {
  width: 34px; height: 34px;
  border: 1.5px solid var(--sage);
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.feat-icon__doc { width: 13px; height: 10px; border: 1.5px solid var(--sage); border-radius: 2px; }
.feat-icon__lines { width: 14px; height: 2px; background: var(--sage); box-shadow: 0 4px 0 var(--sage), 0 -4px 0 var(--sage); }
.feat-icon__page { width: 12px; height: 14px; border: 1.5px solid var(--sage); border-radius: 2px; }
.feat-icon__circle { width: 12px; height: 12px; border: 1.5px solid var(--sage); border-radius: 50%; }
.feat-icon__diamond { width: 13px; height: 13px; border: 1.5px solid var(--sage); border-radius: 3px; transform: rotate(45deg); }
.feat-icon__dashed { width: 14px; height: 14px; border: 1.5px dashed var(--sage); border-radius: 2px; }

/* ---- Adoption path ---- */
.path {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.path__step {
  flex: 1;
  min-width: 170px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}
.path__step:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.path__step--accent { background: var(--sage); border-color: var(--sage); }
.path__label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.path__step--accent .path__label { color: var(--sage-tint); }
.path__name { display: block; font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--ink); margin-bottom: 8px; }
.path__step--accent .path__name { color: #fff; }
.path__body { font-size: 13px; line-height: 1.5; color: var(--muted); }
.path__step--accent .path__body { color: var(--sage-tint-2); }
.path__arrow {
  display: flex; align-items: center; justify-content: center;
  width: 46px; flex: none;
  color: var(--amber);
  font-size: 22px;
  font-family: var(--font-head);
  font-weight: 700;
}

/* ---- What's inside ---- */
.inside__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.inside__intro { position: sticky; top: 96px; }

/* ---- How it works (steps) ---- */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 120px 1fr 160px;
  gap: 32px;
  align-items: baseline;
  padding-block: 30px;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num { font-family: var(--font-head); font-weight: 800; font-size: 38px; color: var(--line); }
.step__title { font-weight: 700; font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.step__body { font-size: 15.5px; line-height: 1.6; color: var(--muted); max-width: 560px; }
.step__time { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--muted); text-align: right; }

/* ---- CTA panel / scorecard ---- */
.cta-panel {
  background: var(--sage);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.cta-panel__title { font-weight: 800; font-size: clamp(26px, 3.5vw, 34px); line-height: 1.16; color: #fff; margin-bottom: 16px; text-wrap: balance; }
.cta-panel__body { font-size: 17px; line-height: 1.6; color: var(--sage-tint-2); margin-bottom: 30px; max-width: 480px; }

.micro-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.scorecard { background: var(--surface); border-radius: var(--radius); padding: 28px; }
.scorecard .micro-label { margin-bottom: 18px; display: block; }
.scorecard__rows { display: flex; flex-direction: column; gap: 14px; }
.meter__head { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 13px; }
.meter__head span:first-child { color: var(--ink); font-weight: 600; }
.meter__head span:last-child { color: var(--muted); font-size: 12px; }
.meter__track { height: 6px; background: var(--sage-soft); border-radius: 3px; overflow: hidden; }
.meter__fill {
  height: 6px;
  width: var(--val);
  background: var(--sage);
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
.meter__fill--warn { background: var(--amber); }
.is-visible .meter__fill { transform: scaleX(1); }
.scorecard__foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.scorecard__foot span:first-child { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--muted); }
.scorecard__score { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--sage); }

/* ---- Pricing ---- */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 20px;
  max-width: 980px;
  margin-inline: auto;
  align-items: stretch;
}
.plan {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.plan--featured {
  border: 1.5px solid var(--sage);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  position: relative;
  padding: 34px 30px;
}
.plan__badge {
  position: absolute;
  top: -12px; left: 30px;
  background: var(--amber);
  color: #fff;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
}
.plan__name { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 6px; }
.plan__tag { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.plan__price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 40px;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  display: flex; align-items: baseline; gap: 8px;
}
.plan__price-note { font-family: var(--font-body); font-size: 14px; font-weight: 400; color: var(--muted); }

/* Launch pricing */
.plan__price-label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}
.plan--featured .plan__price-label { color: var(--amber); }
.launch-price { font: inherit; color: var(--ink); }
.plan__price { margin-bottom: 4px; }
.plan__regular {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.original-price {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  color: var(--muted);
  font-weight: 600;
}
.plan__features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.plan__features li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}
.plan__features--strong li { color: var(--ink); }
.plan__features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--sage);
  font-weight: 700;
  font-size: 14px;
}
.plan__cta { width: 100%; }

/* Pricing motion — brand port of the pricing-blocks component:
   staggered spring-style entrance + hover lift, with a scaled-up
   featured card on desktop. Entrance uses the `translate` property so it
   composes with the hover/featured `scale` instead of fighting it. */
.pricing.reveal { opacity: 1; transform: none; } /* wrapper is only the scroll trigger; cards animate individually */
.plan { position: relative; }
.pricing .plan {
  opacity: 0;
  translate: 0 40px;
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    translate 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    scale 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.pricing.is-visible .plan { opacity: 1; translate: 0 0; }
.pricing.is-visible .plan:nth-child(2) { transition-delay: 0.1s, 0.1s, 0s, 0s, 0s; }
.pricing.is-visible .plan:nth-child(3) { transition-delay: 0.2s, 0.2s, 0s, 0s, 0s; }
.plan:hover { scale: 1.03; z-index: 3; box-shadow: var(--shadow-soft); border-color: #cfcabf; }
.plan--featured:hover { box-shadow: var(--shadow-card); border-color: var(--sage); }

@media (min-width: 961px) {
  .plan--featured { scale: 1.05; z-index: 2; }
  .plan--featured:hover { scale: 1.08; }
}

/* ---- FAQ ---- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { margin: 0; }
.faq__trigger {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 24px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  border-radius: 6px;
}
.faq__trigger:focus-visible { outline: none; box-shadow: var(--ring); }
.faq__sign {
  position: relative;
  flex: none;
  width: 16px; height: 16px;
}
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  background: var(--sage);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.faq__sign::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq__sign::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq__trigger[aria-expanded="true"] .faq__sign::after { transform: scaleY(0); opacity: 0; }
.faq__panel p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  padding: 0 0 26px;
  max-width: 640px;
}

/* ---- FAQ redesign (card layout, inspired reference, brand palette) ---- */
.eyebrow--pill {
  background: var(--sage-soft);
  color: var(--sage);
  padding: 8px 16px;
  border-radius: 999px;
}
.faq-section { position: relative; overflow: hidden; }
.faq-section .container { position: relative; z-index: 1; }
.faq-section .section-head { margin-bottom: 0; }
.faq-title { font-size: clamp(34px, 6vw, 60px); line-height: 1.04; }
.faq-title__accent { font-family: var(--font-serif); font-style: italic; font-weight: 500; letter-spacing: 0; }

.faq-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 8px 40px;
  margin-top: 40px;
  box-shadow: 0 40px 80px -52px rgba(31, 41, 51, 0.45);
}
.faq-card .faq { border-top: none; }
.faq-card .faq__item:last-child { border-bottom: none; }

.faq__trigger { font-size: 19px; padding: 26px 0; gap: 28px; transition: color var(--t); }
.faq__trigger:hover { color: var(--sage); }
.faq__trigger[aria-expanded="true"] { color: var(--sage); }

.faq__sign::before, .faq__sign::after { background: var(--muted); }
.faq__trigger:hover .faq__sign::before,
.faq__trigger:hover .faq__sign::after,
.faq__trigger[aria-expanded="true"] .faq__sign::before,
.faq__trigger[aria-expanded="true"] .faq__sign::after { background: var(--sage); }

/* Decorative circle + sparkle (desktop only) */
.faq-deco {
  position: absolute;
  top: 64px; right: -150px;
  width: 430px; height: 430px;
  z-index: 0; pointer-events: none;
  display: none;
}
.faq-deco__circle { position: absolute; inset: 0; border: 1.5px solid var(--line); border-radius: 50%; }
.faq-deco__star { position: absolute; top: 150px; left: 296px; width: 34px; height: 34px; color: var(--amber); }
@media (min-width: 1120px) { .faq-deco { display: block; } }

/* ---- Final CTA ---- */
.final-cta { text-align: center; padding-block: 96px; }
.final-cta__title {
  font-weight: 800;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin-bottom: 20px;
}
.final-cta__body { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 540px; margin: 0 auto 36px; }
.final-cta__actions { display: flex; align-items: center; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--line); }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-block: 36px;
}
.site-footer .brand-logo { height: 32px; }
.footer__note { font-size: 13px; color: var(--muted); }

/* Columned footer (trust/legal links for AdSense + navigation) */
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 32px;
  padding-block: 52px 32px;
}
.site-footer__brand .brand { margin-bottom: 14px; }
.site-footer__blurb { font-size: 14px; line-height: 1.6; color: var(--muted); max-width: 320px; }
.footer__col-title { display: block; font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 13px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer__col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color var(--t); }
.footer__col a:hover { color: var(--sage); }
.site-footer__bottom { border-top: 1px solid var(--line); padding-block: 22px 30px; }
@media (max-width: 760px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; padding-block: 40px 24px; }
  .site-footer__brand { grid-column: 1 / -1; }
}

/* Legal / prose content pages */
.legal { padding-block: 4px; }
.legal h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 5vw, 42px); letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; }
.legal__meta { font-size: 14px; color: var(--muted); margin-bottom: 30px; }
.legal__lead { font-size: 18px; line-height: 1.6; color: var(--muted); margin-bottom: 8px; }
.legal h2 { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--ink); margin: 34px 0 10px; }
.legal h3 { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); margin: 22px 0 8px; }
.legal p { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.legal li { font-size: 16px; line-height: 1.6; color: var(--muted); list-style: disc; }
.legal a { color: var(--sage); text-decoration: underline; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal__note { background: var(--sage-soft); border-radius: 12px; padding: 14px 18px; font-size: 14px; line-height: 1.55; color: var(--sage); margin: 18px 0; }

/* Resource hub cards */
.res-grid { gap: 20px; }
.res-card { display: flex; flex-direction: column; align-items: flex-start; }
.res-card__type {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage);
  background: var(--sage-soft); padding: 5px 10px; border-radius: 999px; margin-bottom: 14px;
}
.res-card__title { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.res-card__desc { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin-bottom: 16px; flex: 1; }
.res-card__link { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--sage); text-decoration: none; }
.res-card__link:hover { text-decoration: underline; }

/* ---- Reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .meter__fill { transition: none; transform: scaleX(1); }
  .btn:hover, .card:hover, .path__step:hover { transform: none; }
  .float-chip { opacity: 1; animation: none; }
  .float-chip__inner { animation: none; }
  .float-chip__repel { transition: none; }
  .sc-fade { animation: none; }
  .sc-ring__fg { transition: none; }
  .sparkle { display: none; }
  .pricing .plan { opacity: 1 !important; translate: 0 !important; transition: none !important; }
  .plan, .plan:hover, .plan--featured, .plan--featured:hover { scale: 1 !important; }
}

/* =====================================================================
   AI Adoption Readiness Scorecard
   (reuses tokens, .btn, .card, .meter, .eyebrow, .cta-panel)
   ===================================================================== */
.sc-fade { animation: scFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes scFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Shared small parts */
.sc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}
.sc-card-title { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 14px; line-height: 1.35; }
.sc-block { width: 100%; }
.sc-block__title { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 20px; }
.sc-tick { display: inline-block; width: 7px; height: 7px; border-radius: 2px; background: var(--sage); flex: none; }
.sc-privacy { font-size: 12.5px; line-height: 1.5; color: var(--muted); margin-top: 16px; }
.sc-privacy--light { color: var(--sage-tint-2); }
.sc-error { font-size: 13px; color: #B4532B; margin-top: 4px; font-weight: 500; }
.sc-success { font-size: 14px; color: var(--sage); line-height: 1.55; }
.sc-block { width: 100%; }
.btn.sc-block { width: 100%; }
.btn--disabled, .btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn--disabled:hover, .btn:disabled:hover { transform: none; box-shadow: none; }

/* Intro */
.sc-intro__list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px;
  margin: 4px 0 6px; padding: 0;
}
.sc-intro__list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #fff; }
.sc-intro .cta-panel__body { margin-bottom: 22px; }
.sc-form-card { background: var(--surface); }
.sc-form-card__title { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 18px; }
.sc-form-card__note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 12px; }
.sc-intro__gets-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-tint-2); margin: 4px 0 12px; }
.sc-intro__areas { font-size: 13px; line-height: 1.5; color: var(--sage-tint-2); margin-top: 16px; }

/* Trust chips (communicate "free" + low friction on the sage intro panel) */
.sc-trust { display: flex; flex-wrap: wrap; gap: 8px; margin: 2px 0 22px; }
.sc-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  color: #fff; background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px; border-radius: 999px;
}
.sc-chip::before { content: "✓"; color: var(--amber); font-weight: 800; font-size: 11px; }

/* Intro "free" start card + participant steps */
.sc-start-card { display: flex; flex-direction: column; justify-content: center; text-align: center; }
.sc-start-card__badge {
  align-self: center;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage); background: var(--sage-soft);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.sc-start-card__free {
  font-family: var(--font-head); font-weight: 800; font-size: 52px; line-height: 1;
  letter-spacing: -0.02em; color: var(--sage); margin-bottom: 12px;
}
.sc-start-card__sub { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin-bottom: 22px; }
.sc-start-card .sc-form-card__note { margin-top: 14px; }
.sc-participant { max-width: 560px; }
.sc-participant__form { margin: 4px 0 8px; }
.sc-participant .sc-field { margin-bottom: 6px; }
.sc-input--lg { font-size: 18px; padding: 15px 16px; }
.sc-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-size: 18px;
  padding: 15px 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235F6B75' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

/* Form fields */
.sc-field { margin-bottom: 16px; }
.sc-label { display: block; font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.sc-req { color: var(--amber); }
.sc-optional { font-weight: 400; color: var(--muted); font-family: var(--font-body); }
.sc-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 13px;
  transition: border-color var(--t), box-shadow var(--t);
}
.sc-form-card .sc-input { background: var(--surface); }
.sc-input:focus-visible { outline: none; border-color: var(--sage); box-shadow: var(--ring); }
.sc-help { display: block; font-size: 12px; color: var(--muted); margin-top: 5px; }
.sc-consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; line-height: 1.45; color: var(--muted); margin: 4px 0 16px; cursor: pointer;
}
.sc-consent input { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--sage); flex: none; }

/* Quiz */
.sc-quiz { max-width: 760px; margin: 0 auto; }
.sc-quiz__head { margin-bottom: 28px; }
.sc-quiz__meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.sc-quiz__meta .eyebrow { margin-bottom: 0; }
.sc-quiz__count { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--muted); }
.sc-quiz__title { font-size: clamp(24px, 4vw, 30px); margin-bottom: 8px; }
.sc-quiz__desc { font-size: 16px; line-height: 1.55; color: var(--muted); margin-bottom: 18px; }
.sc-quiz__progress { margin-bottom: 14px; }
.sc-scale-legend { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); font-weight: 500; }

.sc-question { border: 0; margin: 0 0 14px; padding: 22px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); }
.sc-question__text { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--ink); line-height: 1.45; margin-bottom: 16px; }
.sc-question__n { color: var(--sage); margin-right: 4px; }

.sc-scale { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.sc-opt { position: relative; display: block; }
.sc-opt input { position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; }
.sc-opt__box {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  min-height: 64px; padding: 8px 4px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--surface);
  transition: border-color var(--t), background var(--t), transform var(--t);
  cursor: pointer; text-align: center;
}
.sc-opt__num { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--ink); }
.sc-opt__cap { font-size: 10.5px; line-height: 1.2; color: var(--muted); }
.sc-opt input:hover + .sc-opt__box { border-color: var(--sage); }
.sc-opt input:checked + .sc-opt__box { background: var(--sage); border-color: var(--sage); }
.sc-opt input:checked + .sc-opt__box .sc-opt__num,
.sc-opt input:checked + .sc-opt__box .sc-opt__cap { color: #fff; }
.sc-opt input:focus-visible + .sc-opt__box { box-shadow: var(--ring); }

.sc-quiz__nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 22px; }
.sc-quiz__nav .btn { min-width: 140px; }

/* Result */
.sc-result { display: flex; flex-direction: column; gap: 28px; max-width: 1000px; margin: 0 auto; }
.sc-result__head { text-align: center; }
.sc-result__who { font-size: 15px; color: var(--muted); margin-top: 10px; }
.sc-dot { color: var(--line); }

.sc-summary { display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center; padding: 36px; }
.sc-ringwrap { position: relative; width: 168px; height: 168px; flex: none; }
.sc-ring { width: 168px; height: 168px; }
.sc-ring__bg { fill: none; stroke: var(--sage-soft); stroke-width: 10; }
.sc-ring__fg {
  fill: none; stroke: var(--sage); stroke-width: 10; stroke-linecap: round;
  transform: rotate(-90deg); transform-origin: center;
  transition: stroke-dashoffset 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}
.sc-ring__label {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0;
}
.sc-ring__num { font-family: var(--font-head); font-weight: 800; font-size: 40px; color: var(--ink); line-height: 1; }
.sc-ring__den { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--muted); margin-top: 4px; }
.sc-band-tag { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--amber); }
.sc-band { font-family: var(--font-head); font-weight: 800; font-size: 28px; letter-spacing: -0.02em; color: var(--ink); margin: 8px 0 12px; }
.sc-band__desc { font-size: 15.5px; line-height: 1.6; color: var(--muted); }

.sc-highlights { gap: 18px; }
.sc-high { border-left: 3px solid var(--line); }
.sc-high--strong { border-left-color: var(--sage); }
.sc-high--weak { border-left-color: var(--amber); }
.sc-high__label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.sc-high__title { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); margin: 8px 0 6px; }
.sc-high__meta { font-size: 14px; color: var(--muted); }

.sc-breakdown { gap: 16px; }
.sc-break { padding: 20px; }
.sc-break__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.sc-break__title { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink); line-height: 1.35; }
.sc-pill { font-family: var(--font-head); font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; padding: 4px 9px; border-radius: 20px; white-space: nowrap; flex: none; }
.sc-pill--strong { background: var(--sage); color: #fff; }
.sc-pill--good { background: var(--sage-soft); color: var(--sage); }
.sc-pill--developing { background: #F1E7D6; color: #9A6B2F; }
.sc-pill--needs { background: #F6E1D3; color: #B4532B; }
.sc-break__meter .meter__head { font-size: 12.5px; }

.sc-rec { padding: 32px; border-left: 3px solid var(--sage); }
.sc-rec__title { font-family: var(--font-head); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); margin: 10px 0 12px; }
.sc-rec__action { font-size: 16px; line-height: 1.6; color: var(--muted); margin-bottom: 18px; }
.sc-rec__exp { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.sc-rec__exp-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); }
.sc-rec__exp p { font-size: 15px; line-height: 1.55; color: var(--ink); margin-top: 6px; }
.sc-rec__more { margin-top: 18px; }
.sc-rec__more summary { cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--sage); }
.sc-rec__more summary:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }
.sc-rec__focus { margin-top: 14px; display: grid; gap: 10px; }
.sc-rec__focus li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--muted); }

.sc-actions { gap: 18px; align-items: stretch; }
.sc-email, .sc-pdf { display: flex; flex-direction: column; }
.sc-pdf__body, .sc-email .sc-card-title { flex: 0 0 auto; }
.sc-pdf__body { font-size: 14px; line-height: 1.55; color: var(--muted); margin-bottom: 16px; flex: 1; }
.sc-pdf__note { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: center; }
.sc-email form { display: flex; flex-direction: column; }
.sc-email__lead { font-size: 14px; line-height: 1.55; color: var(--muted); margin-bottom: 16px; }
.sc-email--done { align-items: flex-start; }
.sc-email__check { width: 40px; height: 40px; border-radius: 50%; background: var(--sage); color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }

.sc-kit { margin-top: 4px; }

.sc-result__foot { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.sc-result__foot .sc-privacy { margin-top: 0; }

/* Modal */
.sc-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(31, 41, 51, 0.55);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  animation: scFade 0.2s ease both;
}
.sc-modal { max-width: 440px; width: 100%; padding: 32px; }
.sc-modal__title { font-family: var(--font-head); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 12px; }
.sc-modal__text { font-size: 15px; line-height: 1.6; color: var(--muted); margin-bottom: 22px; }
.sc-modal__actions { display: flex; flex-direction: column; gap: 10px; }
.sc-modal__actions .btn { width: 100%; }

/* Mock ad screen */
.sc-ad { text-align: center; }
.sc-ad__tag { display: inline-block; font-family: var(--font-head); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); background: var(--bg); border: 1px solid var(--line); padding: 5px 10px; border-radius: 6px; margin-bottom: 18px; }
.sc-ad__screen {
  background: var(--sage-soft); border: 1px dashed var(--sage-tint); border-radius: var(--radius);
  padding: 36px 20px; display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 18px;
}
.sc-ad__count { font-family: var(--font-head); font-weight: 800; font-size: 48px; color: var(--sage); line-height: 1; }
.sc-ad__hint { font-size: 13px; color: var(--muted); }
.sc-ad__skip { width: 100%; }
.sc-ad__check { width: 52px; height: 52px; border-radius: 50%; background: var(--sage); color: #fff; font-size: 26px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.sc-ad--done .btn { width: 100%; margin-top: 4px; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 960px) {
  :root { --gutter: 24px; }
  .section { padding-block: 64px; }

  .hero { min-height: auto; padding-block: 88px 72px; }

  .inside__grid { grid-template-columns: 1fr; gap: 36px; }
  .inside__intro { position: static; }

  .cta-panel { grid-template-columns: 1fr; gap: 36px; padding: 40px; }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }

  .pricing { grid-template-columns: 1fr; max-width: 460px; }
  .plan--featured { order: -1; }

  /* Mobile nav */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Scorecard */
  .sc-summary { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 24px; padding: 28px; }
  .sc-intro__list { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }

  /* Thin out the floating icons so they don't crowd the headline */
  .float-chip--sm-hide { display: none; }
  .float-chip__inner { border-radius: 18px; }

  /* Path becomes vertical */
  .path { flex-direction: column; align-items: stretch; }
  .path__arrow { width: 100%; height: 40px; transform: rotate(90deg); }

  /* Steps stack */
  .step { grid-template-columns: 1fr; gap: 6px; }
  .step__num { font-size: 28px; }
  .step__time { text-align: left; }

  .cta-panel { padding: 32px 24px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }

  /* FAQ card on mobile */
  .faq-card { padding: 4px 20px; border-radius: 18px; margin-top: 28px; }
  .faq__trigger { font-size: 16px; padding: 20px 0; gap: 16px; }

  /* Scorecard */
  .sc-quiz__nav { flex-direction: column-reverse; }
  .sc-quiz__nav .btn { width: 100%; min-width: 0; }
  .sc-opt__cap { display: none; } /* numbers only; the legend explains the 1–5 scale */
  .sc-opt__box { min-height: 50px; }
  .sc-question { padding: 18px; }
  .sc-scale { gap: 6px; }
}
