/* ============================================================
   ShouldIQuitMyJob.net — Homepage Styles (Sage & Amber Gold Theme)
   Contained Grid Layouts & Calming Interactions
   ============================================================ */

.home-page { background: var(--paper-warm); }
.home-page .site-main { overflow: visible; }

/* Scroll-reveal */
.home-page .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .7s cubic-bezier(.16,1,.3,1) var(--delay, 0ms),
    transform .7s cubic-bezier(.16,1,.3,1) var(--delay, 0ms);
}
.home-page .reveal.is-visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  padding-block: clamp(4.5rem, 8vw, 7.5rem) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 55% at 75% -8%, rgba(58,92,71,.12) 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 20% 100%, rgba(200,134,26,.1) 0%, transparent 65%),
    linear-gradient(155deg, #fcfbf8 0%, #f4f8f5 55%, #ebf2ee 100%);
}

/* Contained dot grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(28,35,31,.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5) 0%, transparent 65%);
  pointer-events: none;
}

/* Ambient glow details */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
}
.hero__glow--a {
  width: 38rem; height: 38rem;
  top: -20rem; right: -8rem;
  background: radial-gradient(circle, rgba(58,92,71,.14), transparent 65%);
}
.hero__glow--b {
  width: 22rem; height: 22rem;
  bottom: -11rem; left: 30%;
  background: radial-gradient(circle, rgba(200,134,26,.14), transparent 65%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); /* Bounded gap to prevent excessive spreading */
  align-items: center;
  max-width: var(--max-w);
}

/* ── Hero copy content ── */
.hero__copy {
  padding-bottom: 2.5rem;
  animation: slideUp .85s cubic-bezier(.16,1,.3,1) both;
}

.hero__copy h1 {
  max-width: 580px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.4rem, 6.8vw, 5.8rem);
  line-height: .92;
}

.hero__copy h1 em {
  display: block;
  margin-top: clamp(.25rem, .7vw, .625rem);
  font-size: 1.08em;
  line-height: .94;
}

.hero__lead {
  max-width: 520px;
  margin-bottom: .8rem;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -.02em;
}

.hero__body {
  max-width: 500px;
  font-size: .95rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-block: 1.75rem;
}

/* Social proof card strip */
.hero__proof {
  display: flex;
  align-items: center;
  gap: .8rem;
  width: fit-content;
  padding: .75rem .95rem;
  border: 1px solid rgba(190,210,200,.45);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
}
.hero__proof p { margin: 0; color: var(--ink-soft); font-size: .72rem; line-height: 1.45; }
.hero__proof strong { display: block; color: var(--ink); font-size: .76rem; }

/* ── Hero visual column (with botanical framework design) ── */
.hero__visual {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  justify-content: center;
  animation: slideUp .9s .1s cubic-bezier(.16,1,.3,1) both;
}

/* Wreath container background (Botanical / Wellness themed) */
.hero__visual::before {
  content: '';
  position: absolute;
  width: 108%; aspect-ratio: 1;
  left: -4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.94) 0 42%, rgba(255,255,255,.2) 43% 58%, transparent 59%);
}

/* Orbit circles */
.hero__orbit {
  position: absolute;
  border-radius: 50%;
}
.hero__orbit--a {
  width: 90%; aspect-ratio: 1;
  left: 5%;
  border: 1px solid rgba(58,92,71,.08);
  animation: spin 26s linear infinite;
}
.hero__orbit--b {
  width: 68%; aspect-ratio: 1;
  left: 16%;
  border: 1px dashed rgba(58,92,71,.07);
  animation: spin 20s linear infinite reverse;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Floating chips */
.hero__chip {
  position: absolute;
  z-index: 4;
  min-width: 130px;
  padding: .65rem .85rem;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: .8rem;
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 30px rgba(15,20,17,.08);
  backdrop-filter: blur(14px);
}
.hero__chip b, .hero__chip span { display: block; font-family: 'Outfit', sans-serif; }
.hero__chip b {
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: .12rem;
}
.hero__chip span {
  font-size: .7rem;
  font-weight: 700;
  color: var(--ink);
}
.hero__chip--top    { top: -3%;   right: -2%; transform: rotate(2deg);   animation: floatA 4.2s ease-in-out infinite; }
.hero__chip--bottom { bottom: -6%; left: -6%;   transform: rotate(-2deg); animation: floatB 3.8s ease-in-out infinite; }

@keyframes floatA {
  0%, 100% { transform: rotate(2deg)   translateY(0); }
  50%       { transform: rotate(2deg)   translateY(-3px); }
}
@keyframes floatB {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%       { transform: rotate(-2deg) translateY(-3px); }
}

/* Scorecard visual */
.report-card {
  position: relative;
  z-index: 2;
  width: min(100%, 540px); /* Bounded width */
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.4rem;
  background: rgba(14,20,17,.97); /* Deep dark sage black */
  color: #fff;
  box-shadow:
    0 40px 90px rgba(15,20,17,.3),
    inset 0 0 0 1px rgba(255,255,255,.05);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1.5deg) rotate(.5deg);
  transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s ease;
}
.report-card:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0) rotate(0) translateY(-5px);
  box-shadow: 0 50px 110px rgba(15,20,17,.35);
}

/* Card details ambient glows */
.report-card::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  top: -160px; right: -50px;
  border-radius: 50%;
  background: var(--accent-bright);
  filter: blur(55px);
  opacity: .14;
}
.report-card::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  bottom: -100px; left: -40px;
  border-radius: 50%;
  background: var(--amber);
  filter: blur(44px);
  opacity: .07;
}

/* Chrome bar */
.rc-chrome {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.rc-chrome::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-bright) 0%, var(--amber) 60%, transparent 100%);
  opacity: .65;
}
.rc-chrome__label { color: #829a8d; font-size: .58rem; letter-spacing: .04em; }
.rc-chrome__label b { color: #fff; }
.rc-chrome__badge {
  padding: .3rem .55rem; /* Slightly larger padding for readability */
  border: 1px solid rgba(200,134,26,.22);
  border-radius: var(--r-pill);
  color: var(--amber);
  font-family: 'Outfit', sans-serif;
  font-size: .58rem; /* Refined tag font size for readable contrast */
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Main ring + message layout */
.rc-main {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.rc-score, .rc-reco { padding: 1.45rem; }
.rc-score {
  display: flex;
  align-items: center;
  gap: .85rem;
  border-right: 1px solid rgba(255,255,255,.06);
}

/* Gauge Ring (Amber-Gold and Sage Theme) */
.rc-ring {
  display: grid;
  width: 86px; aspect-ratio: 1;
  flex-shrink: 0;
  place-content: center;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(14,20,17,.97) 74%, transparent 75% 99%),
    conic-gradient(var(--amber) 68%, rgba(255,255,255,.08) 0);
  text-align: center;
  box-shadow: 0 0 0 1px rgba(200,134,26,.14), 0 0 20px rgba(200,134,26,.08);
}
.rc-ring__val { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 900; line-height: 1; }
.rc-ring__sub { color: #5c7265; font-size: .55rem; }

.rc-score-meta small, .rc-score-meta strong { display: block; font-family: 'Outfit', sans-serif; }
.rc-score-meta small { color: #516358; font-size: .46rem; font-weight: 800; letter-spacing: .12em; margin-bottom: .2rem; }
.rc-score-meta strong { color: #c4d4cc; font-size: .72rem; font-weight: 600; }

.rc-reco small { display: block; color: #7cb898; font-family: 'Outfit', sans-serif; font-size: .46rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .45rem; }
.rc-reco strong { display: block; font-family: 'Newsreader', Georgia, serif; font-size: 1.35rem; font-style: italic; font-weight: 400; line-height: 1.1; }
.rc-reco p { margin: .5rem 0 0; color: #5c7265; font-size: .62rem; line-height: 1.5; }

/* ── Metrics progress indicators ── */
.rc-metrics {
  display: grid;
  gap: .62rem;
  padding: 1.25rem 1.55rem 1.35rem;
}

.rc-metric {
  --dimension-color: #829a8d;
  --dimension-color-start: #a4beb0;
  --dimension-shadow: rgba(130,154,141,.25);
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) 36px;
  gap: .7rem;
  align-items: center;
  padding: .25rem .35rem;
  border-radius: .45rem;
  transition: transform .15s ease, background .15s ease;
}

/* Row hover — desktop only */
@media (hover: hover) {
  .rc-metric:hover {
    background: rgba(255,255,255,.04);
    transform: translateY(-2px); /* lift the entire row by 2px */
  }
  .rc-metric:hover .rc-metric__fill {
    filter: brightness(1.18); /* brighten the colored fill slightly */
  }
}

.rc-metric__info {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
}

.rc-metric__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--dimension-color);
  flex-shrink: 0;
}

.rc-metric__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.rc-metric__label {
  color: #a4beb0;
  font-family: 'Outfit', sans-serif;
  font-size: .6875rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rc-metric__bar {
  min-width: 0;
  height: 11px;
  border-radius: 999px; /* Fully rounded ends */
  background: #3F4449; /* Medium neutral gray background track */
  overflow: hidden;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

/* Fill: defaults to var(--v) so it renders correctly even without JS triggers */
.rc-metric__fill {
  display: block;
  width: var(--v);
  max-width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--dimension-color-start),
    var(--dimension-color)
  );
  transition: filter .15s ease;
  will-change: width;
}

/* Keyframe animation for a smooth, high-end load sequence */
@keyframes rcFillUp {
  from { width: 0; }
  to { width: var(--v); }
}

/* Staggered loading sequence when the element becomes visible */
.rc-metrics.is-report-visible .rc-metric__fill {
  animation: rcFillUp 720ms cubic-bezier(.22, 1, .36, 1) both;
}

.rc-metrics.is-report-visible .rc-metric:nth-child(1) .rc-metric__fill { animation-delay:   0ms; }
.rc-metrics.is-report-visible .rc-metric:nth-child(2) .rc-metric__fill { animation-delay:  60ms; }
.rc-metrics.is-report-visible .rc-metric:nth-child(3) .rc-metric__fill { animation-delay: 120ms; }
.rc-metrics.is-report-visible .rc-metric:nth-child(4) .rc-metric__fill { animation-delay: 180ms; }
.rc-metrics.is-report-visible .rc-metric:nth-child(5) .rc-metric__fill { animation-delay: 240ms; }
.rc-metrics.is-report-visible .rc-metric:nth-child(6) .rc-metric__fill { animation-delay: 300ms; }

/* ── Status color tokens ──────────────────────────────────────────
   0–39   Red    → #EF4444 (linear-gradient(90deg,#F87171,#EF4444))
   40–59  Amber  → #F59E0B (linear-gradient(90deg,#FBBF24,#F59E0B))
   60–79  Emerald → #10B981 (linear-gradient(90deg,#34D399,#10B981))
   80–100 Blue   → #3B82F6 (linear-gradient(90deg,#60A5FA,#3B82F6))
   ─────────────────────────────────────────────────────────────── */
.rc-metric--critical {
  --dimension-color: #EF4444;
  --dimension-color-start: #F87171;
  --dimension-shadow: rgba(239,68,68,.3);
}
.rc-metric--warning {
  --dimension-color: #F59E0B;
  --dimension-color-start: #FBBF24;
  --dimension-shadow: rgba(245,158,11,.3);
}
.rc-metric--healthy {
  --dimension-color: #10B981;
  --dimension-color-start: #34D399;
  --dimension-shadow: rgba(16,185,129,.3);
}
.rc-metric--excellent {
  --dimension-color: #3B82F6;
  --dimension-color-start: #60A5FA;
  --dimension-shadow: rgba(59,130,246,.3);
}

/* ── Value badge ── */
.rc-metric__val {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; /* ~34-40px wide */
  height: 22px;
  border-radius: .35rem; /* rounded corners */
  background: var(--dimension-color);
  box-shadow: 0 3px 8px var(--dimension-shadow);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  text-align: center;
  flex-shrink: 0;
}

/* ── Accessibility: prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  .rc-metric__fill {
    width: var(--v) !important; /* skip animation, show instantly */
    transition: filter .15s ease !important;
  }
  .rc-metrics .rc-metric:nth-child(n) .rc-metric__fill {
    transition-delay: 0ms !important;
  }
}


.rc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.45rem;
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.02);
}
.rc-footer span {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: #8fa095; /* brighter, readable green-gray */
  font-family: 'Outfit', sans-serif;
  font-size: .68rem;
  font-weight: 500;
}
.rc-footer span svg {
  flex-shrink: 0;
}
.rc-footer a {
  color: #FBBF24; /* yellow/amber gold links, matching image */
  font-family: 'Outfit', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
}
.rc-footer a:hover {
  color: #fff;
}

/* Contained Trust bar (under hero visual) */
.hero__trustbar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(.8rem, 3vw, 2.2rem);
  min-height: 60px;
  margin-top: 2.8rem;
  border-top: 1px solid rgba(28,35,31,.08);
  color: var(--ink-soft);
  font-family: 'Outfit', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero__trustbar i { width: 3px; height: 3px; border-radius: 50%; background: var(--amber); opacity: .72; }

/* ════════════════════════════════════════════
   SECTION INDEX (contained & subtle)
   ════════════════════════════════════════════ */
.sec-index {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: clamp(2.8rem, 5vw, 4.8rem);
}
.sec-index__num {
  display: grid;
  width: 32px; height: 32px;
  place-items: center;
  border: 1.5px solid rgba(200,134,26,.3);
  border-radius: 50%;
  color: var(--amber-dark);
  font-family: 'Outfit', sans-serif;
  font-size: .56rem;
  font-weight: 900;
}
.sec-index__label { color: var(--ink-soft); font-family: 'Outfit', sans-serif; font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.sec-index::after { content: ''; height: 1px; flex: 1; background: var(--border); }

.sec-index--light .sec-index__num  { border-color: rgba(255,255,255,.14); color: var(--amber); }
.sec-index--light .sec-index__label{ color: #5c7265; }
.sec-index--light::after            { background: rgba(255,255,255,.07); }

/* ════════════════════════════════════════════
   REASON
   ════════════════════════════════════════════ */
.reason { background: var(--paper-warm); }

.reason__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.reason__grid h2 { max-width: 580px; margin-bottom: 0; }
.reason__grid h2 em { font-size: .9em; line-height: 1; }

.reason__copy {
  padding-top: 1rem;
  max-width: 480px;
}
.reason__lead {
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -.02em;
}

.reason__link {
  margin-top: .35rem;
  padding-bottom: .18rem;
  font-size: .9rem;
  letter-spacing: -.01em;
}

.reason__link::after { content: '→'; }

/* Bento cards contained */
.reason__bento {
  display: grid;
  grid-template-columns: 1.35fr .82fr .82fr;
  gap: .8rem;
  margin-top: clamp(.75rem, 1.8vw, 1.75rem);
}

.context-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--sh-xs);
  transition: transform .26s cubic-bezier(.16,1,.3,1), box-shadow .26s ease;
}

.reason .context-card { padding: clamp(1.6rem, 2.2vw, 1.9rem); }
.context-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.context-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.context-card:hover::before { transform: scaleX(1); }

.context-card__tag { color: var(--accent); font-family: 'Outfit', sans-serif; font-size: .56rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: auto; }
.context-card h3 { margin-bottom: .55rem; font-weight: 750; letter-spacing: -.025em; }
.context-card p { margin: 0; font-size: .84rem; line-height: 1.65; }

.context-card--quote {
  background: var(--ink-deep);
  border-color: transparent;
  justify-content: flex-start;
}
.reason .context-card--quote { padding: clamp(1.8rem, 2.5vw, 2.15rem); }
.context-card--quote .quote-mark {
  position: absolute;
  top: -.6rem; left: .8rem;
  color: rgba(200,134,26,.08);
  font-family: 'Newsreader', Georgia, serif;
  font-size: 8.5rem;
  line-height: 1;
  user-select: none;
}
.context-card--quote .context-card__tag--quote {
  position: relative;
  margin-bottom: clamp(1rem, 2vw, 1.45rem);
  color: #a4beb0;
}
.context-card--quote .context-card__quote {
  position: relative;
  max-width: 430px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.08rem, 1.65vw, 1.4rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -.03em;
}
.context-card--quote em { color: var(--amber); font-family: 'Newsreader', Georgia, serif; font-style: italic; font-weight: 400; }
.context-card--quote .context-card__support {
  position: relative;
  max-width: 430px;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #a4beb0;
  font-size: .76rem;
  line-height: 1.55;
  letter-spacing: 0;
}

.context-card--lime {
  background: var(--amber-light);
  border-color: rgba(200,134,26,.15);
}
.context-card--lime .context-card__tag { color: var(--amber-dark); }
.context-card--lime h3 { color: var(--ink-deep); }
.context-card--lime p  { color: var(--ink-mid); }

/* ════════════════════════════════════════════
   FRAMEWORK (sage/forest green aesthetic)
   ════════════════════════════════════════════ */
.framework {
  overflow: hidden;
  background: var(--ink-deep);
}

.framework::before {
  content: '';
  position: absolute;
  width: 42rem; height: 42rem;
  top: -28rem; right: -12rem;
  border: 1px solid rgba(200,134,26,.04);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(200,134,26,.015),
    0 0 0 200px rgba(200,134,26,.008);
}
.framework::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.framework__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .6fr;
  gap: 3.5rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}
.framework__head h2 { color: #fff; margin-bottom: 0; }
.framework__head h2 em { color: var(--amber); }
.framework__head > p { color: #829a8f; margin: 0 0 .4rem auto; max-width: 440px; } /* Elevated contrast */

.framework__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: .75rem;
  max-width: var(--max-w);
}

/* Dimension cards (bounded layouts) */
.dim-card {
  position: relative;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.035);
  transition: transform .26s cubic-bezier(.16,1,.3,1), border-color .26s ease, background .26s ease, box-shadow .26s ease;
}
.dim-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,134,26,.22);
  background-color: rgba(255,255,255,.06);
  box-shadow: 0 16px 45px rgba(0,0,0,.25);
}

.dim-card--01 { grid-column: span 5; background: linear-gradient(145deg, rgba(191,67,67,.12), rgba(255,255,255,.02)); }
.dim-card--02 { grid-column: span 7; background: linear-gradient(145deg, rgba(58,143,192,.12), rgba(255,255,255,.02)); }
.dim-card--03 { grid-column: span 5; background: linear-gradient(145deg, rgba(122,94,168,.1), rgba(255,255,255,.02)); }
.dim-card--04 { grid-column: span 7; background: linear-gradient(145deg, rgba(200,134,26,.12), rgba(255,255,255,.02)); }
.dim-card--05 { grid-column: span 7; background: linear-gradient(145deg, rgba(42,128,80,.12), rgba(255,255,255,.02)); }
.dim-card--06 { grid-column: span 5; background: linear-gradient(145deg, rgba(187,58,110,.12), rgba(255,255,255,.02)); }

.dim-card__top { display: flex; align-items: center; justify-content: space-between; }
.dim-card__num { font-family: 'Outfit', sans-serif; font-size: .58rem; font-weight: 900; }
.dim-card--01 .dim-card__num { color: rgba(191,67,67,.65); }
.dim-card--02 .dim-card__num { color: rgba(58,143,192,.65); }
.dim-card--03 .dim-card__num { color: rgba(122,94,168,.65); }
.dim-card--04 .dim-card__num { color: rgba(200,134,26,.65); }
.dim-card--05 .dim-card__num { color: rgba(42,128,80,.65); }
.dim-card--06 .dim-card__num { color: rgba(187,58,110,.65); }

.dim-card__signal {
  padding: .28rem .5rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-pill);
  color: #799a85; /* Elevated contrast tag text color */
  font-family: 'Outfit', sans-serif;
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dim-card h3 { color: #fff; font-size: clamp(1.3rem, 2vw, 1.8rem); margin-bottom: .5rem; }
.dim-card p  { color: #a4beb0; font-size: .82rem; margin: 0; max-width: 400px; } /* Improved readability contrast for dark panel body text */

.dim-card__orb {
  position: absolute;
  width: 54px; height: 54px;
  right: -20px; bottom: -20px;
  border: 1px solid rgba(200,134,26,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(200,134,26,.01);
}

/* ════════════════════════════════════════════
   PROCESS (contained step columns)
   ════════════════════════════════════════════ */
.process { background: var(--paper-warm); }

.process__head {
  display: grid;
  grid-template-columns: 1fr .6fr;
  gap: 3.5rem;
  align-items: end;
  margin-bottom: 2.8rem;
}
.process__head h2 { max-width: 680px; margin-bottom: 0; }
.process__head > p { margin: 0 0 .35rem auto; max-width: 380px; }

.process__steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}

.step-card {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  overflow: hidden;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: var(--sh-xs);
  transition: transform .26s cubic-bezier(.16,1,.3,1), box-shadow .26s ease, border-color .26s ease;
}
.process .step-card { padding: clamp(1.2rem, 1.7vw, 1.4rem); }
.step-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--accent-soft); }

.step-card::before {
  content: '';
  position: absolute;
  height: 4px;
  inset: 0 0 auto;
  background: linear-gradient(90deg, var(--accent), var(--amber));
  transform: scaleX(.2);
  transform-origin: left;
  transition: transform .36s cubic-bezier(.16,1,.3,1);
  border-radius: 0 0 4px 4px;
}
.step-card:nth-child(1)::before { transform: scaleX(.34); }
.step-card:nth-child(2)::before { transform: scaleX(.67); }
.step-card:nth-child(3)::before { transform: scaleX(1); }
.step-card:hover::before { transform: scaleX(1); }

.step-card__num {
  color: var(--ink-muted);
  font-family: 'Outfit', sans-serif;
  font-size: .57rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.step-card__icon {
  display: grid;
  width: 62px; height: 62px;
  place-items: center;
  margin-block: 0.85rem 1.0rem;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--accent);
  font-size: 1.45rem;
  transform: rotate(-6deg);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.step-card__icon svg { width: 26px; height: 26px; }
.step-card:hover .step-card__icon { transform: rotate(-6deg) scale(1.06); }

.step-card:nth-child(2) .step-card__icon {
  background: var(--ink-deep);
  color: var(--amber);
  border-color: transparent;
  transform: rotate(4deg);
}
.step-card:nth-child(2):hover .step-card__icon { transform: rotate(4deg) scale(1.06); }

.step-card:nth-child(3) .step-card__icon {
  background: var(--amber-light);
  color: var(--amber-dark);
  border-color: transparent;
  transform: rotate(-3deg);
}
.step-card:nth-child(3):hover .step-card__icon { transform: rotate(-3deg) scale(1.06); }

.step-card h3 { max-width: 250px; margin-bottom: 0.45rem; }
.step-card p  { max-width: 290px; margin-bottom: 0.35rem; font-size: .86rem; line-height: 1.65; }
.step-card small {
  margin-top: auto;
  margin-bottom: 0.1rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  color: var(--ink-muted);
  font-family: 'Outfit', sans-serif;
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (hover: hover) {
  .process .step-card {
    transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s ease, border-color .2s ease;
  }
  .process .step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--accent-soft);
  }
  .process .step-card__icon { transition-duration: .2s; }
}

/* ════════════════════════════════════════════
   VALUE (dark panel aesthetic)
   ════════════════════════════════════════════ */
.value {
  overflow: hidden;
  background: #0f1612; /* Rich dark forest background */
}

.value__orb {
  position: absolute;
  width: 48rem; height: 48rem;
  right: -24rem; bottom: -24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,134,26,.15), transparent 65%);
}

.value__grid {
  position: relative;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.value__copy h2 {
  margin-bottom: 1.75rem;
  color: #fff;
}
.value__copy h2 em {
  display: block;
  margin-top: .14em;
  color: var(--amber);
  line-height: 1.02;
}
.value__copy > p { margin-top: 0; color: #839d8e; max-width: 400px; } /* Elevated contrast */
.value__copy .button { margin-top: 1.25rem; }

/* Contained Dashboard Panel visual */
.value__panel {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.035);
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
}
.value__panel-head {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #5d7567;
  font-family: 'Outfit', sans-serif;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.value__panel-head i { height: 1px; flex: 1; background: rgba(255,255,255,.07); }
.value__panel-head em { color: var(--amber); font-style: normal; }

.report-items { list-style: none; padding: 0; margin: 0; }
.report-items li {
  display: grid;
  grid-template-columns: 32px 1fr 38px;
  gap: .85rem;
  align-items: center;
  min-height: 88px;
  padding: .85rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .18s ease;
}
.report-items li:last-child { border-bottom: 0; }
.report-items li:hover { background: rgba(255,255,255,.03); }

.report-items li > span {
  color: #566c5d;
  font-family: 'Outfit', sans-serif;
  font-size: .55rem;
  font-weight: 900;
}
.report-items strong { display: block; color: #fff; font-family: 'Outfit', sans-serif; font-size: .88rem; font-weight: 700; margin-bottom: .15rem; }
.report-items p { margin: 0; color: #839d8e; font-size: .67rem; } /* Elevated contrast tag text color */
.report-items__score { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .55rem; }
.report-items__score > span,
.report-items__lead { color: var(--ink); font-family: 'Outfit', sans-serif; font-weight: 700; }
.report-items__score > em {
  padding: .15rem .42rem;
  border-radius: var(--r-pill);
  background: var(--amber-light);
  color: var(--amber-dark);
  font-family: 'Outfit', sans-serif;
  font-size: .6rem;
  font-style: normal;
  font-weight: 750;
}
.report-items__preview {
  display: block;
  max-height: none;
  margin-top: .3rem;
  color: var(--accent-deep);
  font-size: .72rem;
  line-height: 1.5;
  opacity: 1;
  transform: none;
}
.report-items li > b {
  display: grid;
  width: 34px; height: 34px;
  place-items: center;
  border: 1px solid rgba(200,134,26,.15);
  border-radius: 50%;
  color: var(--amber);
  font-size: .66rem;
}
.report-item__icon svg { width: 18px; height: 18px; }

.value__panel-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  padding: .8rem 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--ink-muted);
  font-family: 'Outfit', sans-serif;
  font-size: .6875rem;
}
.value__panel-foot span { margin-right: .1rem; }
.value__panel-foot b { color: var(--ink-soft); font-weight: 650; }
.value__panel-foot i { width: 3px; height: 3px; border-radius: 50%; background: var(--accent); opacity: .45; }

@media (hover: hover) {
  .value__panel .report-items > li {
    transition: background .2s ease, box-shadow .2s ease, padding-left .2s ease;
  }
  .value__panel .report-items > li:hover,
  .value__panel .report-items > li:focus-visible {
    padding-left: 1.4rem;
    background: var(--surface-soft);
    box-shadow: inset 2px 0 0 rgba(8,124,109,.45);
  }
}

/* ════════════════════════════════════════════
   TRUST / PRIVACY (bounded container visual)
   ════════════════════════════════════════════ */
.trust { background: var(--paper-warm); }

.trust__shell {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 4rem;
  padding: clamp(2.2rem, 6vw, 4.2rem);
  overflow: hidden;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-md);
  max-width: var(--max-w);
}
.trust__shell::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  top: -220px; left: -150px;
  border-radius: 50%;
  background: var(--accent-soft);
  filter: blur(16px);
  opacity: .65;
}
.trust__shell::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  bottom: -110px; right: -60px;
  border-radius: 50%;
  background: var(--amber-light);
  filter: blur(20px);
  opacity: .15;
}

.trust__intro,
.trust__points { position: relative; z-index: 1; }

.trust__intro h2 { font-size: clamp(2rem, 4vw, 3.4rem); }

.trust__seal {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 92px; height: 92px;
  top: 1.5rem; right: 1.5rem;
  place-content: center;
  border: 1px dashed rgba(58,92,71,.24);
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--accent-deep);
  text-align: center;
  transform: rotate(7deg);
  transition: transform .3s ease;
}
.trust__seal:hover { transform: rotate(0deg) scale(1.03); }
.trust__seal span, .trust__seal b { display: block; font-family: 'Outfit', sans-serif; line-height: 1.2; }
.trust__seal span { font-size: .45rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.trust__seal b { font-family: 'Newsreader', Georgia, serif; font-size: 1.15rem; font-style: italic; font-weight: 500; }

.trust__points { display: grid; align-content: center; }
.trust__point {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: .85rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--border);
}
.trust__point:last-child { border-bottom: 0; }
.trust__point > span {
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-size: .57rem;
  font-weight: 900;
}
.trust__point h3 { margin-bottom: .3rem; font-size: .98rem; }
.trust__point p  { margin: 0; font-size: .8rem; }

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */
.faq { background: var(--paper-cool); }

.faq__layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.faq__intro h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.4rem); }

.faq__list { border-top: 1px solid var(--border-strong); }

.faq__item { border-bottom: 1px solid var(--border-strong); }

.faq__item summary {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  gap: .8rem;
  align-items: center;
  min-height: 72px;
  padding: .8rem .15rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary > span { color: var(--accent); font-family: 'Outfit', sans-serif; font-size: .55rem; font-weight: 900; }
.faq__item summary strong { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink); } /* Increased summary headline text prominence */
.faq__item summary em {
  display: grid;
  width: 28px; height: 28px;
  place-items: center;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: .9rem;
  font-style: normal;
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}
.faq__item[open] summary em {
  background: var(--ink-deep);
  border-color: transparent;
  color: var(--amber);
  transform: rotate(45deg);
}
.faq__item p {
  margin: 0;
  padding: 0 2.5rem 1.1rem 3.35rem; /* Cleaned indentation alignment */
  color: var(--ink-soft);
  font-size: .85rem;
  line-height: 1.74;
}

/* ════════════════════════════════════════════
   BOTTOM CTA (contained layout card)
   ════════════════════════════════════════════ */
.home-cta {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  background: var(--paper-warm);
}

.home-cta__card {
  position: relative;
  max-width: 1000px; /* Nicely bounded size, not stretched horizontally */
  margin-inline: auto;
  padding: clamp(2.5rem, 7vw, 5.5rem);
  overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(140deg, #233a2c 0%, #3a5c47 50%, #2f4a39 100%); /* Sage variations */
  text-align: center;
  box-shadow: 0 35px 80px rgba(15,20,17,.25);
}
.home-cta__card > *:not(.cta-rings) { position: relative; z-index: 2; }
.home-cta__card h2 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 4.1rem); margin-bottom: 1rem; }
.home-cta__card h2 em { color: var(--amber); }
.home-cta__card > p { color: #c4d4cc; max-width: 580px; margin-inline: auto; }
.home-cta__card .button { margin-top: 1rem; }
.home-cta__card > small {
  display: block;
  margin-top: 1.4rem;
  color: #c4d4cc;
  font-family: 'Outfit', sans-serif;
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* Decorative rings */
.cta-rings span {
  position: absolute;
  border: 1px solid rgba(200,134,26,.06);
  border-radius: 50%;
}
.cta-rings span:nth-child(1) { width: 400px; height: 400px; top: -300px; left: calc(50% - 200px); }
.cta-rings span:nth-child(2) { width: 600px; height: 600px; top: -400px; left: calc(50% - 300px); }
.cta-rings span:nth-child(3) { width: 800px; height: 800px; top: -500px; left: calc(50% - 400px); }

/* ════════════════════════════════════════════
   HERO KEYFRAMES & RESPONSIVE
   ════════════════════════════════════════════ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero__grid,
  .reason__grid,
  .framework__head,
  .process__head,
  .value__grid,
  .trust__shell,
  .faq__layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .hero__copy { padding-bottom: 0; }
  .hero__visual { min-height: 480px; }
  .report-card { max-width: 540px; }
  .reason__copy { padding-top: 0; }
  .reason__bento { grid-template-columns: 1fr 1fr; }
  .context-card--quote { grid-column: 1 / -1; }
  .framework__head > p,
  .process__head > p { margin-left: 0; }
  .process__steps { grid-template-columns: 1fr; }
  .step-card { min-height: 0; flex-direction: row; flex-wrap: wrap; gap: .75rem; }
  .step-card__icon { margin: 0; }
  .trust__seal { top: 1rem; right: 1rem; }
}

@media (max-width: 700px) {
  .hero { padding-top: 3rem; }
  .hero__chip { display: none; }
  .hero__visual { min-height: 420px; }
  .report-card { transform: none; }
  .report-card:hover { transform: translateY(-4px); }
  .hero__trustbar { gap: .7rem 1rem; padding-block: .75rem; }
  .hero__trustbar i { display: none; }
  .reason__bento { grid-template-columns: 1fr; }
  .context-card--quote { grid-column: auto; }
  .dim-card--01, .dim-card--02, .dim-card--03,
  .dim-card--04, .dim-card--05, .dim-card--06 { grid-column: 1 / -1; min-height: 200px; }
  .trust__seal { display: none; }
}

@media (max-width: 520px) {
  .hero__copy h1 { font-size: clamp(3.2rem, 16vw, 4.5rem); }
  .report-card .rc-main { grid-template-columns: 1fr; }
  .report-card .rc-score { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .report-card .rc-metrics { padding: .95rem; }
  .report-card .rc-metric { grid-template-columns: 105px minmax(0, 1fr) 36px; }
  .faq__item summary { grid-template-columns: 26px 1fr 28px; }
  .faq__item p { padding-left: 2.4rem; }
  .home-cta__card { padding-inline: 1.2rem; border-radius: var(--r-lg); }
}

.hero { min-height: calc(100svh - var(--header-h) - var(--header-top)); padding-top: clamp(3.5rem, 6vw, 5rem); background: var(--paper-warm); }
.hero__glow { display: none; }
.hero__proof-mark { display: grid; width: 34px; height: 34px; flex: 0 0 34px; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-weight: 900; }

/* Browser zoom changes the CSS viewport height. On desktop, a 100svh hero
   therefore reserves empty space below its bounded content when zoomed out. */
@media (min-width: 981px) {
  .hero { min-height: auto; }
}

.framework { overflow: visible; background: var(--paper-cool); }
.framework::before, .framework::after { display: none; }
.framework > .container { position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 4.5rem); border-radius: var(--r-xl); background: var(--ink-deep); box-shadow: 0 32px 80px rgba(15,20,17,.18); }
.framework > .container::after { content: ''; position: absolute; width: 420px; height: 420px; top: -320px; right: -160px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.015); }
.framework__head, .framework__grid, .framework .sec-index { position: relative; z-index: 1; }

.value { background: var(--surface-soft); }
.value__orb { display: none; }
.value__copy h2 { color: var(--ink); }
.value__copy h2 em { color: var(--accent); }
.value__copy > p { color: var(--ink-soft); }
.value .sec-index--light .sec-index__num, .value .sec-index--light .sec-index__label { color: var(--ink-soft); }
.framework .sec-index--light .sec-index__label { color: #a4beb0; }
.value .eyebrow--on-dark { color: var(--accent-deep); }
.value .eyebrow--on-dark::before { background: var(--accent); }
.value__panel { border-color: var(--border-strong); background: #fff; box-shadow: var(--sh-md); backdrop-filter: none; }
.value__panel-head { border-bottom-color: var(--border); color: var(--ink-muted); }
.value__panel-head i { background: var(--border); }
.value__panel-head em { color: var(--accent); }
.report-items li { border-bottom-color: var(--border); }
.report-items li:hover { background: var(--surface-soft); }
.report-items li > span { color: var(--accent); }
.report-items strong { color: var(--ink); }
.report-items p { color: var(--ink-soft); font-size: .76rem; }
.report-items li > b { border-color: rgba(8,124,109,.18); color: var(--accent); }

/* Quiet product polish: a brief glass reflection with a long resting interval. */
.report-preview-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--sh-md), inset 0 1px 0 rgba(255,255,255,.85);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.report-preview-card::after {
  content: '';
  position: absolute;
  z-index: 3;
  top: -25%;
  bottom: -25%;
  left: -45%;
  width: 32%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.06) 20%, rgba(255,255,255,.26) 50%, rgba(255,255,255,.06) 80%, transparent 100%);
  box-shadow: 0 0 18px rgba(8,124,109,.045);
  filter: blur(3px);
  opacity: 0;
  transform: translate3d(0,0,0) skewX(-18deg);
  will-change: transform, opacity;
  animation: report-card-glint 9s ease-in-out infinite;
}

@keyframes report-card-glint {
  0%, 82% {
    opacity: 0;
    transform: translate3d(0,0,0) skewX(-18deg);
  }
  84% {
    opacity: 1;
  }
  96% {
    opacity: 1;
    transform: translate3d(520%,0,0) skewX(-18deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(520%,0,0) skewX(-18deg);
  }
}

@media (hover: hover) and (pointer: fine) {
  .report-preview-card:hover {
    border-color: rgba(8,124,109,.32);
    box-shadow: 0 22px 55px rgba(20,48,43,.1), inset 0 1px 0 rgba(255,255,255,.9);
  }
  .report-preview-card:hover::after {
    animation: report-card-glint-hover 1.1s ease-out 1;
  }
}

@keyframes report-card-glint-hover {
  0% {
    opacity: 0;
    transform: translate3d(0,0,0) skewX(-18deg);
  }
  10% {
    opacity: 1;
  }
  88% {
    opacity: 1;
    transform: translate3d(520%,0,0) skewX(-18deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(520%,0,0) skewX(-18deg);
  }
}

@media (max-width: 700px) {
  .hero { padding-top: clamp(3rem, 8vw, 5rem); }
  .framework > .container { border-radius: var(--r-lg); }
}

/* Homepage freeze refinement: rhythm, product preview, and card consistency */
.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(8,124,109,.075), transparent 32rem),
    radial-gradient(circle at 14% 86%, rgba(200,134,26,.055), transparent 27rem),
    var(--paper-warm);
}
.hero::before {
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.5) 0%, transparent 68%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5) 0%, transparent 68%);
  opacity: .72;
}
.hero__grid { grid-template-columns: minmax(0,.92fr) minmax(470px,1.08fr); gap: clamp(3rem,6vw,5.5rem); min-height: 650px; }
.hero__copy h1 { margin-bottom: 1.45rem; }
.hero__lead { margin-bottom: .9rem; }
.hero__body { max-width: 510px; }
.hero__actions { gap: .8rem; margin-block: 2rem 1.7rem; }
.hero__proof { padding: .82rem 1rem; border-color: var(--border); box-shadow: var(--sh-xs); }
.hero__visual { min-height: 590px; margin: 0; }
.hero__orbit--a { animation-duration: 54s; }
.hero__orbit--b { animation-duration: 62s; }

.report-card {
  width: min(100%,570px);
  border-radius: var(--r-lg);
  box-shadow: 0 34px 82px rgba(15,20,17,.27), inset 0 0 0 1px rgba(255,255,255,.045);
  transform: perspective(1200px) rotateY(-2.2deg) rotateX(.8deg) rotate(.25deg);
  transition: transform .42s cubic-bezier(.16,1,.3,1), box-shadow .42s ease;
}
.report-card:hover { transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-3px); box-shadow: 0 42px 96px rgba(15,20,17,.31); }
.report-card::before { opacity: .1; }
.report-card::after { opacity: .035; }
.rc-chrome { padding: 1rem 1.3rem; }
.rc-chrome__label { font-size: .6875rem; }
.rc-chrome__badge { padding: .34rem .6rem; font-size: .6875rem; }
.rc-main { grid-template-columns: .92fr 1.08fr; }
.rc-score, .rc-reco { padding: 1.55rem; }
.rc-ring { width: 96px; }
.rc-ring__val { font-size: 1.85rem; }
.rc-ring__sub { color: #a4beb0; font-size: .6875rem; }
.rc-score-meta small { color: #a4beb0; font-size: .6875rem; }
.rc-score-meta strong { font-size: .78rem; }
.rc-reco small { font-size: .6875rem; }
.rc-reco strong { color: #fff; font-family: 'Outfit', sans-serif; font-size: 1.18rem; font-style: normal; font-weight: 650; line-height: 1.18; letter-spacing: -.025em; }
.rc-reco p { max-width: 220px; color: #829a8d; font-size: .7rem; line-height: 1.55; }
.rc-footer { padding: .85rem 1.3rem; }
.rc-footer span, .rc-footer a { font-size: .6875rem; }
.rc-footer span { color: #a4beb0; }
.rc-footer a { color: var(--amber); font-weight: 700; text-decoration: none; }
.rc-footer a:hover { color: var(--amber-light); }
.report-card :focus-visible, .home-cta :focus-visible { outline-color: var(--amber-light); }

.reason { padding-block: clamp(6.5rem,9vw,8.5rem); }
.framework { padding-block: clamp(4.75rem,7vw,6.5rem); }
.process { padding-block: clamp(6.5rem,9vw,8rem); }
.value { padding-block: clamp(5.75rem,8vw,7.5rem); }
.trust { padding-block: clamp(5rem,7vw,6.5rem); }
.faq { padding-block: clamp(6.5rem,9vw,8rem); }
.sec-index { margin-bottom: clamp(2.25rem,4vw,3.5rem); }
.sec-index__num, .sec-index__label, .hero__trustbar, .step-card small, .value__panel-head, .home-cta__card > small { font-size: .6875rem; }
.hero__chip b, .context-card__tag, .step-card__num, .report-items li > span, .trust__point > span, .faq__item summary > span { font-size: .6875rem; }
.home-cta__card > small { color: #c4d4cc; }

.context-card, .step-card, .dim-card {
  padding: clamp(1.45rem,2vw,1.75rem);
  border-width: 1px;
  border-radius: var(--r-md);
  transition: transform .28s cubic-bezier(.16,1,.3,1), border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.context-card:hover, .step-card:hover, .dim-card:hover { transform: translateY(-3px); }
.context-card p { font-size: .88rem; }
.step-card p { font-size: .9rem; }
.step-card > div:not(.step-card__icon) { flex: 1 1 260px; }

.framework__head { margin-bottom: clamp(3rem,5vw,4.25rem); }
.framework__grid { gap: clamp(.8rem,1.2vw,1rem); }
.dim-card { min-height: 245px; --dimension: var(--accent-bright); --dimension-border: rgba(8,124,109,.45); }
.dim-card--01 { --dimension: var(--d-burnout); --dimension-border: rgba(191,67,67,.5); }
.dim-card--02 { --dimension: var(--d-balance); --dimension-border: rgba(58,143,192,.5); }
.dim-card--03 { --dimension: var(--d-manager); --dimension-border: rgba(122,94,168,.5); }
.dim-card--04 { --dimension: var(--d-growth); --dimension-border: rgba(200,134,26,.5); }
.dim-card--05 { --dimension: var(--d-comp); --dimension-border: rgba(42,128,80,.5); }
.dim-card--06 { --dimension: var(--d-sat); --dimension-border: rgba(187,58,110,.5); }
.dim-card::before { content: ''; position: absolute; inset: 0 auto auto 0; width: 42%; height: 2px; border-radius: 0 2px 2px 0; background: var(--dimension); opacity: .6; transform: scaleX(.45); transform-origin: left; transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .3s ease; }
.dim-card:hover { border-color: var(--dimension-border); background-color: rgba(255,255,255,.055); box-shadow: 0 15px 38px rgba(0,0,0,.2); }
.dim-card:hover::before { opacity: .9; transform: scaleX(1); }
.dim-card__num { color: var(--dimension) !important; font-size: .6875rem; }
.dim-card__signal { font-size: .6875rem; }
.dim-card h3 { margin-bottom: .6rem; }
.dim-card p { font-size: .875rem; line-height: 1.65; }
.dim-card__orb { border-color: var(--dimension-border); transition: transform .35s ease; }
.dim-card:hover .dim-card__orb { transform: scale(1.25); }

.report-items li { min-height: 94px; padding: 1rem 1.25rem; transition: background .22s ease, padding-left .22s ease; }
.report-items li:hover { padding-left: 1.4rem; }
.report-items p { font-size: .8rem; line-height: 1.55; }

/* Career Health Report preview: premium editorial surface polish */
.value .report-preview-card {
  border-color: rgba(8,124,109,.14);
  background: linear-gradient(180deg, #fff 0%, #fdfefd 100%);
  box-shadow:
    0 1px 2px rgba(15,20,17,.04),
    0 22px 56px rgba(20,48,43,.09),
    inset 0 1px 0 rgba(255,255,255,.92);
}
.value .report-preview-card::before {
  content: '';
  position: absolute;
  z-index: 4;
  top: 0;
  right: 1.5rem;
  left: 1.5rem;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(8,124,109,.34) 28%, rgba(8,124,109,.1) 72%, transparent);
}
.value .report-preview-card .value__panel-head {
  min-height: 56px;
  padding: .95rem 1.35rem;
  gap: .75rem;
  border-bottom-color: rgba(28,35,31,.075);
  background: linear-gradient(180deg, rgba(8,124,109,.035), rgba(8,124,109,.012));
  color: var(--accent-deep);
}
.value .report-preview-card .value__panel-head i {
  background: linear-gradient(90deg, rgba(8,124,109,.16), rgba(8,124,109,.045));
}
.value .report-preview-card .value__panel-head em {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: .25rem .5rem;
  border: 1px solid rgba(8,124,109,.13);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  color: var(--accent-deep);
  letter-spacing: .1em;
  white-space: nowrap;
}
.value .report-preview-card .report-items > li {
  position: relative;
  grid-template-columns: 32px minmax(0,1fr) 38px;
  gap: .95rem;
  min-height: 94px;
  padding: 1.05rem 1.35rem;
  border-bottom: 0;
  background: transparent;
  transition: background .2s ease, box-shadow .2s ease;
}
.value .report-preview-card .report-items > li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 1.35rem;
  bottom: 0;
  left: calc(1.35rem + 32px + .95rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(28,35,31,.1), rgba(28,35,31,.035));
}
.value .report-preview-card .report-items > li > span {
  align-self: start;
  padding-top: .22rem;
  color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}
.value .report-preview-card .report-items strong {
  margin-bottom: .25rem;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 720;
  letter-spacing: -.012em;
}
.value .report-preview-card .report-items p {
  color: var(--ink-soft);
  font-size: .79rem;
  line-height: 1.58;
}
.value .report-preview-card .report-items__score > span {
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
.value .report-preview-card .report-items__score > em {
  padding: .18rem .48rem;
  border: 1px solid rgba(200,134,26,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.value .report-preview-card .report-item__icon {
  width: 36px;
  height: 36px;
  border-color: rgba(8,124,109,.17);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(8,124,109,.055));
  box-shadow: 0 4px 12px rgba(20,48,43,.045), inset 0 1px 0 rgba(255,255,255,.95);
  color: var(--accent);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.value .report-preview-card .report-item__icon svg {
  width: 17px;
  height: 17px;
}
.value .report-preview-card .report-item--insights {
  background: linear-gradient(90deg, rgba(8,124,109,.04), rgba(8,124,109,.012) 72%, transparent);
  box-shadow: inset 2px 0 0 rgba(8,124,109,.24);
}
.value .report-preview-card .report-items__preview {
  margin-top: .42rem;
  padding-left: .7rem;
  border-left: 1px solid rgba(8,124,109,.2);
  color: var(--accent-deep);
  font-size: .72rem;
  line-height: 1.52;
}
.value .report-preview-card .value__panel-foot {
  min-height: 48px;
  padding: .9rem 1.35rem;
  border-top-color: rgba(28,35,31,.075);
  background: linear-gradient(180deg, rgba(8,124,109,.018), rgba(8,124,109,.04));
  color: var(--ink-muted);
}
.value .report-preview-card .value__panel-foot b {
  color: var(--ink-soft);
  font-weight: 720;
}
.value .report-preview-card .value__panel-foot i {
  background: var(--accent);
  opacity: .38;
}

@media (hover: hover) and (pointer: fine) {
  .value .report-preview-card:hover {
    border-color: rgba(8,124,109,.27);
    box-shadow:
      0 2px 4px rgba(15,20,17,.04),
      0 28px 64px rgba(20,48,43,.12),
      inset 0 1px 0 rgba(255,255,255,.95);
  }
  .value .report-preview-card .report-items > li:hover {
    padding-left: 1.35rem;
    background: linear-gradient(90deg, rgba(8,124,109,.055), rgba(8,124,109,.012) 70%, transparent);
    box-shadow: inset 2px 0 0 rgba(8,124,109,.34);
  }
  .value .report-preview-card .report-items > li:hover .report-item__icon {
    border-color: rgba(8,124,109,.3);
    background: linear-gradient(180deg, #fff, rgba(8,124,109,.085));
    box-shadow: 0 5px 14px rgba(20,48,43,.07), inset 0 1px 0 #fff;
  }
}

.trust__point p { font-size: .86rem; line-height: 1.65; }
.faq__item summary { min-height: 78px; }
.faq__item p { font-size: .9rem; }

@media (max-width: 1100px) and (min-width: 981px) {
  .hero__grid { grid-template-columns: minmax(0,.9fr) minmax(440px,1.1fr); gap: 2.5rem; }
  .report-card { width: 100%; }
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .hero__copy { max-width: 720px; }
  .hero__visual { min-height: 610px; }
  .dim-card--01, .dim-card--02, .dim-card--03, .dim-card--04, .dim-card--05, .dim-card--06 { grid-column: span 6; }
  .step-card {
    display: grid;
    grid-template-columns: 30px 60px minmax(0, 1fr);
    align-items: center;
    gap: 0.5rem 0.85rem;
    min-height: auto;
    padding: 1.1rem 1.25rem;
  }
  .step-card__icon {
    margin: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.25rem;
  }
  .step-card__icon svg {
    width: 20px;
    height: 20px;
  }
  .step-card > div:not(.step-card__icon) { min-width: 0; }
  .step-card small {
    grid-column: 3;
    margin-top: 0.25rem;
    padding-top: 0.35rem;
    border-top: 1px solid var(--border);
  }
  .trust__seal { display: none; }
}

@media (max-width: 700px) {
  .reason, .process, .faq { padding-block: clamp(4.75rem,14vw,5.5rem); }
  .framework, .value, .trust { padding-block: clamp(4.25rem,13vw,5.1rem); }
  .hero .eyebrow--pill { max-width: 100%; font-size: .6875rem; letter-spacing: .08em; line-height: 1.45; }
  .hero__visual { min-height: 570px; }
  .report-card { transform: none; }
  .framework > .container { padding: clamp(1.25rem,5vw,2rem); }
  .dim-card--01, .dim-card--02, .dim-card--03, .dim-card--04, .dim-card--05, .dim-card--06 { grid-column: 1 / -1; min-height: 200px; }
  .step-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 1.15rem;
  }
  .step-card__icon {
    margin-block: 0.8rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.25rem;
  }
  .step-card__icon svg {
    width: 20px;
    height: 20px;
  }
  .step-card small {
    margin-top: 0.65rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 520px) {
  .hero__eyebrow > span:nth-child(5),
  .hero__eyebrow > span:nth-child(6) { display: none; }
  .hero__visual { min-height: 610px; }
  .report-card .rc-score, .report-card .rc-reco { padding: 1.2rem; }
  .report-card .rc-metrics { padding: 1rem 1.1rem 1.2rem; }
  .report-card .rc-metric { grid-template-columns: 116px minmax(0, 1fr) 36px; gap: .5rem; }
  .rc-footer { align-items: flex-start; gap: .5rem; }
  .rc-footer a { text-align: right; }
  .value .report-preview-card .value__panel-head {
    flex-wrap: wrap;
    min-height: 52px;
    padding: .85rem 1rem;
    gap: .45rem .5rem;
    font-size: .58rem;
    letter-spacing: .08em;
  }
  .value .report-preview-card .value__panel-head i { order: 3; flex-basis: 100%; }
  .value .report-preview-card .value__panel-head em { min-height: 22px; margin-left: auto; padding-inline: .42rem; }
  .value .report-preview-card .report-items > li {
    grid-template-columns: 26px minmax(0,1fr) 34px;
    gap: .7rem;
    min-height: 0;
    padding: .95rem 1rem;
  }
  .value .report-preview-card .report-items > li:not(:last-child)::after {
    right: 1rem;
    left: calc(1rem + 26px + .7rem);
  }
  .value .report-preview-card .report-item__icon { width: 34px; height: 34px; }
  .value .report-preview-card .value__panel-foot { padding: .8rem 1rem; }
}

@media (max-width: 380px) {
  .value .report-preview-card .value__panel-head > span { flex-basis: 100%; }
  .value .report-preview-card .value__panel-head i { order: 2; flex-basis: auto; }
  .value .report-preview-card .value__panel-head em { order: 3; margin-left: 0; }
}

@media (hover: none) {
  .report-card, .report-card:hover { transform: none; }
  .report-card:hover { box-shadow: 0 34px 82px rgba(15,20,17,.27), inset 0 0 0 1px rgba(255,255,255,.045); }
  .context-card:hover, .step-card:hover, .dim-card:hover { transform: none; }
  .context-card:hover { box-shadow: var(--sh-xs); }
  .context-card:hover::before { transform: scaleX(0); }
  .step-card:hover { border-color: var(--border); box-shadow: var(--sh-xs); }
  .step-card:hover::before { transform: scaleX(.2); }
  .step-card:hover .step-card__icon { transform: rotate(-6deg); }
  .step-card:nth-child(2):hover .step-card__icon { transform: rotate(4deg); }
  .step-card:nth-child(3):hover .step-card__icon { transform: rotate(-3deg); }
  .dim-card:hover { border-color: rgba(255,255,255,.07); background-color: transparent; box-shadow: none; }
  .dim-card:hover::before { opacity: .6; transform: scaleX(.45); }
  .dim-card:hover .dim-card__orb { transform: none; }
  .report-items li:hover { padding-left: 1.25rem; background: transparent; }
  .trust__seal:hover { transform: rotate(7deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__copy, .hero__visual, .hero__orbit, .hero__chip, .pulse, .rc-metric__fill { animation: none !important; transition: none !important; }
  .rc-metric__fill { transform: none; }
  .report-preview-card::after { animation: none !important; opacity: 0; }
}
