:root {
  --bg: #070a12;
  --bg2: #0b1020;
  --text: #f6f8fc;
  --muted: #aab6ca;
  --line: rgba(255, 255, 255, 0.14);
  --hot: #ff7a59;
  --amber: #f6c453;
  --cyan: #72e6f4;
  --green: #70f2a5;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at 8% -4%,
      rgba(114, 230, 244, 0.2),
      transparent 30rem
    ),
    radial-gradient(
      circle at 92% 2%,
      rgba(255, 122, 89, 0.18),
      transparent 31rem
    ),
    linear-gradient(180deg, var(--bg), var(--bg2) 58%, #060811);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.45;
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 18, 0.82);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-dot {
  width: 28px;
  height: 28px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--cyan), var(--hot));
}

html {
  scroll-behavior: smooth;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 18px;
  flex-wrap: wrap;
}

.menu-link,
.mobile-menu-link {
  text-decoration: none;
  color: #eaf0fa;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 10px 13px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.menu-link:hover,
.mobile-menu-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f6f8fc;
}

.mobile-menu-shell {
  padding: 0 0 12px;
}

.mobile-menu {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(7, 10, 18, 0.94);
  border-radius: 22px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.option-name {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 850;
  text-align: right;
}

.sample {
  padding: 28px 0 42px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.hero-left,
.hero-stats,
.clue-bar,
.hero-clue,
.block,
.narrative-card {
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.032)
  );
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-left {
  min-height: 470px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  position: relative;
}

.hero-left::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -110px;
  bottom: -120px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 122, 89, 0.22),
    transparent 68%
  );
  pointer-events: none;
}

.hero-topic,
.hero-bottom {
  position: relative;
  z-index: 2;
}

.hero-bottom {
  display: grid;
  gap: 12px;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--cyan);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
}

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(35px, 5.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.metric {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  padding: 22px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.metric b {
  display: block;
  margin-top: 8px;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.metric--percent b {
  font-size: clamp(76px, 10vw, 136px);
  background: linear-gradient(180deg, #fff, var(--hot));
  -webkit-background-clip: text;
  color: transparent;
}

.metric--mood b {
  max-width: 720px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.98;
  background: linear-gradient(180deg, #fff, var(--cyan));
  -webkit-background-clip: text;
  color: transparent;
}

.metric p {
  max-width: 720px;
  margin: 14px 0 0;
  color: #dfe8f6;
  font-size: clamp(16px, 1.7vw, 20px);
}

.emotion-block {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
  padding: 13px;
}

.hero-clue {
  position: relative;
  z-index: 2;
  overflow: hidden;
  scroll-margin-top: 94px;
  border-radius: 22px;
  border: 1px solid rgba(246, 196, 83, 0.26);
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(246, 196, 83, 0.16),
      transparent 18rem
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.032)
    );
  padding: 17px 18px 18px 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.18);
}

.hero-clue::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--amber), var(--hot));
  opacity: 0.92;
}

.hero-clue span {
  display: block;
  color: var(--amber);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 950;
  margin-bottom: 8px;
}

.hero-clue p {
  margin: 0;
  color: #fff6d8;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.28;
  letter-spacing: -0.03em;
  font-weight: 850;
}

.emotion-caption,
.card-label {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.emotion-caption {
  margin-bottom: 9px;
}

.emotion-strip,
.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.emotion-chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1;
}

.emotion-chip .icon {
  width: 27px;
  height: 27px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.emotion-chip svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.emotion-name {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.01em;
  color: var(--text);
}

.emotion-chip small {
  color: currentColor;
  opacity: 0.92;
  font-weight: 850;
}

.emotion-chip--positive {
  color: var(--green);
  border-color: rgba(112, 242, 165, 0.32);
  background: rgba(112, 242, 165, 0.09);
}

.emotion-chip--negative {
  color: var(--hot);
  border-color: rgba(255, 122, 89, 0.34);
  background: rgba(255, 122, 89, 0.09);
}

.emotion-chip--neutral {
  color: var(--amber);
  border-color: rgba(246, 196, 83, 0.34);
  background: rgba(246, 196, 83, 0.08);
}

.hero-stats {
  padding: 22px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-stats .emotion-block {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.04);
}

.stats-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.stats-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  flex: 1;
}

.stat-tile-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.stat-label-wrap {
  min-width: 0;
  flex: 1;
}

.stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(114, 230, 244, 0.22);
  background: rgba(114, 230, 244, 0.08);
  color: var(--cyan);
}

.stat-icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-tile {
  min-height: 98px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.052);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-tile span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 850;
  line-height: 1.3;
}

.stat-tile b {
  display: block;
  margin-top: 12px;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1;
  letter-spacing: -0.065em;
}

.clue-bar {
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.032)
  );
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.clue-bar span {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 950;
}

.clue-bar p {
  margin: 0;
  color: #f2f6fe;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.35;
}

.block {
  margin-top: 18px;
  padding: 24px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.section-head span {
  display: block;
  color: var(--amber);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 950;
  margin-bottom: 8px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-head p {
  max-width: 980px;
  margin: 12px 0 0;
  color: #dde7f5;
  font-size: clamp(16px, 1.7vw, 20px);
}

.axis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.axis-side {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.axis-side--1 {
  border-top: 4px solid var(--hot);
}

.axis-side--2 {
  border-top: 4px solid var(--cyan);
}

.axis-side-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.axis-side-top span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
}

.axis-side-top b {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.axis-side h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.axis-side p {
  margin: 12px 0 12px;
  color: #d6e0ef;
}

.axis-note {
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(246, 196, 83, 0.25);
  background: rgba(246, 196, 83, 0.075);
  padding: 14px 16px;
  color: #fff1c8;
}

.axis-keywords .keyword-row {
  margin-top: 8px;
}

.donut-panel {
  margin-top: 18px;
  padding: 20px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.025)
  );
  border-radius: 26px;
}

.donut-wrap {
  display: grid;
  place-items: center;
}

.donut {
  width: min(280px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 20px 60px rgba(0, 0, 0, 0.28);
}

.donut-hole {
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0b1020;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
}

.donut-hole span,
.donut-hole small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 900;
}

.donut-hole b {
  display: block;
  font-size: 54px;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.legend {
  display: grid;
  gap: 8px;
}

.legend-item {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 10px 12px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.legend-name {
  color: #eaf0fa;
  font-size: 14px;
  line-height: 1.25;
}

.legend-item b {
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.narrative-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.narrative-card {
  position: relative;
  padding: 18px;
  overflow: hidden;
  box-shadow: none;
  border-top: 4px solid var(--accent);
}

.narrative-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    transparent 68%
  );
  pointer-events: none;
}

.narrative-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.narrative-kicker {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
}

.narrative-card h3 {
  margin: 6px 0 0;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.narrative-strength {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  padding: 12px;
}

.strength-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.strength-top span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
}

.strength-top b {
  color: var(--accent);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.progress-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent));
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

.narrative-card p {
  position: relative;
  z-index: 2;
  margin: 14px 0 0;
  color: #d6e0ef;
}

.card-group {
  position: relative;
  z-index: 2;
  margin-top: 16px;
}

.card-label {
  display: block;
  margin-bottom: 8px;
}

.keyword-chip {
  display: inline-flex;
  border: 1px solid rgba(114, 230, 244, 0.25);
  background: rgba(114, 230, 244, 0.08);
  color: #ddfbff;
  border-radius: 999px;
  padding: 7px 9px;
  font-size: 12px;
  line-height: 1;
}

.emotion-strip--cards .emotion-chip {
  min-height: 34px;
  padding: 6px 8px;
}

.emotion-strip--cards .icon {
  width: 23px;
  height: 23px;
}

.emotion-strip--cards svg {
  width: 22px;
  height: 22px;
}

.expand-box {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.expand-box summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 850;
  color: #f6f8fc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.expand-box summary::-webkit-details-marker {
  display: none;
}

.expand-box summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.expand-box[open] summary {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.narrative-grid--rest {
  margin-top: 0;
  padding: 16px;
}

.expand-box--mobile {
  display: none;
}

.expand-box--desktop {
  display: block;
}

.fourth-desktop-card {
  display: block;
}

.resonance-block {
  overflow: hidden;
}

.resonance-note {
  margin-top: 16px;
  border: 1px solid rgba(246, 196, 83, 0.25);
  background: rgba(246, 196, 83, 0.075);
  color: #fff1c8;
  border-radius: 18px;
  padding: 13px 15px;
  font-size: 14px;
  line-height: 1.35;
}

.resonance-insight {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.065),
    rgba(255, 255, 255, 0.028)
  );
  border-radius: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.38fr);
  gap: 16px;
  align-items: stretch;
}

.resonance-insight h3 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.resonance-insight p {
  margin: 10px 0 0;
  color: #dde7f5;
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.42;
}

.resonance-pulse {
  border: 1px solid rgba(114, 230, 244, 0.22);
  background: rgba(114, 230, 244, 0.07);
  border-radius: 20px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  min-height: 128px;
}

.resonance-pulse span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
}

.resonance-pulse b {
  color: var(--cyan);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.resonance-pulse small {
  color: #dde7f5;
  font-size: 13px;
  line-height: 1.3;
}

.resonance-pulse-note {
  margin: 2px 0 0;
  color: #dde7f5;
  font-size: 13px;
  line-height: 1.35;
}

.resonance-subhead {
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.resonance-subhead h3 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.resonance-subhead span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  white-space: nowrap;
}

.resonance-desktop {
  display: block;
}

.resonance-mobile {
  display: none;
}

.resonance-card-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.resonance-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 22px;
  padding: 16px;
  border-top: 4px solid var(--accent);
  min-height: 256px;
}

.resonance-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.075),
    transparent 68%
  );
  pointer-events: none;
}

.resonance-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.resonance-rank {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  background: color-mix(in srgb, var(--accent) 13%, transparent);
  color: var(--accent);
  font-weight: 950;
  letter-spacing: -0.03em;
}

.resonance-card h3 {
  position: relative;
  z-index: 2;
  margin: 10px 0 0;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.resonance-card-text {
  position: relative;
  z-index: 2;
  margin: 10px 0 0;
  color: #d6e0ef;
  font-size: 14px;
  line-height: 1.38;
}

.resonance-bars {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.res-bar-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 52px;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.res-bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.res-bar-fill {
  height: 100%;
  border-radius: 999px;
}

.res-bar-fill--comments {
  background: rgba(255, 255, 255, 0.46);
}

.res-bar-fill--reactions {
  background: var(--accent);
}

.resonance-delta {
  position: relative;
  z-index: 2;
  margin-top: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
}

.resonance-delta--up {
  color: var(--green);
  border-color: rgba(112, 242, 165, 0.28);
  background: rgba(112, 242, 165, 0.075);
}

.resonance-delta--down {
  color: var(--hot);
  border-color: rgba(255, 122, 89, 0.3);
  background: rgba(255, 122, 89, 0.075);
}

.resonance-delta--flat {
  color: var(--amber);
  border-color: rgba(246, 196, 83, 0.28);
  background: rgba(246, 196, 83, 0.075);
}

.resonance-count {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 12px;
  color: #f6f8fc;
  font-size: 13px;
  font-weight: 850;
}

.resonance-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.resonance-fact {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 12px;
}

.resonance-fact span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  margin-bottom: 7px;
}

.resonance-fact b {
  display: block;
  color: #f6f8fc;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.low-signal-sentence,
.low-signal-caution {
  position: relative;
  z-index: 2;
  margin: 10px 0 0;
  color: #c9d5e7;
  font-size: 13px;
  line-height: 1.36;
}

.low-signal-caution {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  color: #ffe7b3;
}

.thread-list {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}

.thread-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 12px;
}

.thread-rank {
  width: 34px;
  height: 34px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(114, 230, 244, 0.24);
  background: rgba(114, 230, 244, 0.08);
  color: var(--cyan);
  font-weight: 950;
}

.thread-main h4 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.thread-main p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.thread-values {
  display: grid;
  gap: 3px;
  text-align: right;
  white-space: nowrap;
}

.thread-values b {
  font-size: 18px;
  line-height: 1;
  color: #f6f8fc;
  letter-spacing: -0.035em;
}

.thread-values span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
}

.resonance-empty {
  margin-top: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
}

.resonance-comments {
  padding: 16px;
  display: grid;
  gap: 12px;
}

.resonance-comment {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 14px;
}

.resonance-comment-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.resonance-comment-head b {
  color: var(--cyan);
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.resonance-comment-head span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  text-align: right;
}

.resonance-comment blockquote {
  margin: 0;
  color: #f2f6fe;
  font-size: 15px;
  line-height: 1.42;
  border-left: 2px solid rgba(114, 230, 244, 0.42);
  padding-left: 12px;
}

.resonance-comment p {
  margin: 10px 0 0;
  color: #d6e0ef;
  font-size: 13px;
  line-height: 1.35;
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
  .resonance-rank {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.045);
  }
}

.actors-desktop {
  display: block;
}

.actors-mobile {
  display: none;
}

.actors-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.actors-grid--desktop {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.actors-grid--mobile-top,
.actors-grid--mobile-rest {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.actor-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.065),
    rgba(255, 255, 255, 0.028)
  );
  border-radius: 22px;
  padding: 16px;
  min-height: 210px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.actor-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    transparent 68%
  );
  pointer-events: none;
}

.actor-card--negative {
  border-top: 4px solid var(--hot);
  --actor-accent: var(--hot);
}

.actor-card--positive {
  border-top: 4px solid var(--green);
  --actor-accent: var(--green);
}

.actor-card--mixed {
  border-top: 4px solid var(--amber);
  --actor-accent: var(--amber);
}

.actor-card--neutral {
  border-top: 4px solid var(--cyan);
  --actor-accent: var(--cyan);
}

.actor-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: none;
}

.actor-meta-line {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.stance-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--actor-accent) 42%, transparent);
  background: color-mix(in srgb, var(--actor-accent) 13%, transparent);
  color: var(--actor-accent);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.stance-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.stance-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.actor-meta-line b {
  color: var(--actor-accent);
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 950;
  white-space: nowrap;
}

.actor-main {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #d6e0ef;
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
}

.actor-detail {
  position: relative;
  z-index: 2;
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.actor-detail summary {
  cursor: pointer;
  color: #f6f8fc;
  font-size: 13px;
  font-weight: 850;
  list-style: none;
  padding: 11px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.actor-detail summary::after {
  content: "+";
  color: var(--muted);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.actor-detail[open] summary {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.actor-detail[open] summary::after {
  content: "–";
}

.actor-detail summary::-webkit-details-marker {
  display: none;
}

.actor-detail p {
  margin: 0;
  padding: 11px 12px 12px;
  color: #d6e0ef;
  font-size: 13px;
  line-height: 1.35;
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
  .stance-chip {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.045);
  }
}

@media (max-width: 760px) {
  .actors-desktop {
    display: none;
  }

  .actors-mobile {
    display: block;
  }

  .actors-grid--mobile-top,
  .actors-grid--mobile-rest {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .actor-card {
    min-height: 200px;
    padding: 12px;
    border-radius: 17px;
  }

  .actor-card h3 {
    font-size: 26px;
  }

  .actor-main {
    font-size: 13px;
  }

  .actor-detail summary {
    padding: 10px 11px;
  }

  .actor-detail p {
    padding: 10px 11px 11px;
  }
}

.donut,
.legend-item[data-narrative-key] {
  cursor: pointer;
}

.legend-item[data-narrative-key] {
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.legend-item[data-narrative-key]:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.legend-item[data-narrative-key]:focus-visible,
.donut:focus-visible,
.narrative-card[data-narrative-key]:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.narrative-card[data-narrative-key] {
  isolation: isolate;
}

.narrative-card--pulse::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(255, 222, 112, 0.72),
      transparent 48%
    ),
    linear-gradient(180deg, rgba(255, 198, 70, 0.54), rgba(255, 122, 89, 0.3));
  box-shadow:
    inset 0 0 0 2px rgba(255, 222, 112, 0.78),
    0 24px 90px rgba(255, 122, 89, 0.36),
    0 0 48px rgba(246, 196, 83, 0.24);
  opacity: 0;
  transform: translateZ(0);
  will-change: opacity;
  animation: narrativeCardPulse 2.55s linear forwards;
}

@keyframes narrativeCardPulse {
  from {
    opacity: 0.96;
  }

  to {
    opacity: 0;
  }
}

@media (max-width: 980px) {
  h1,
  .stats-head h2,
  .section-head h2 {
    font-size: 32px;
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  .desktop-menu {
    gap: 6px;
    margin-right: 12px;
  }

  .menu-link {
    font-size: 13px;
    padding: 9px 11px;
  }

  .hero-shell,
  .axis-grid,
  .donut-panel,
  .narrative-grid {
    grid-template-columns: 1fr;
  }

  .resonance-insight,
  .resonance-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-left,
  .hero-stats {
    min-height: auto;
  }

  .donut-panel {
    gap: 18px;
  }
}

@media (max-width: 620px) {
  .desktop-menu,
  .option-name {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .wrap {
    width: min(100% - 22px, 1160px);
  }

  .option-name {
    display: none;
  }

  .sample {
    padding-top: 20px;
  }

  .hero-left,
  .hero-stats,
  .clue-bar,
  .hero-clue,
  .block,
  .narrative-card,
  .expand-box,
  .actor-card {
    border-radius: 21px;
  }

  .hero-left,
  .hero-stats,
  .block {
    padding: 17px;
  }

  h1 {
    font-size: 32px;
  }

  .section-head p {
    margin-top: 9px;
  }

  .metric {
    padding: 17px;
    text-align: left;
  }

  .metric--percent b {
    font-size: clamp(68px, 22vw, 98px);
  }

  .metric--mood b {
    font-size: clamp(30px, 10vw, 44px);
  }

  .emotion-block {
    padding: 11px;
    border-radius: 18px;
  }

  .emotion-chip {
    width: 100%;
    justify-content: space-between;
    border-radius: 18px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .stat-tile {
    min-height: 88px;
    padding: 13px;
    border-radius: 17px;
  }

  .stat-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .stat-icon svg {
    width: 17px;
    height: 17px;
  }

  .stat-tile b {
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -0.055em;
  }

  .clue-bar {
    padding: 17px;
  }

  .hero-clue {
    padding: 15px 16px 16px 18px;
    border-radius: 19px;
  }

  .hero-clue p {
    font-size: clamp(17px, 5.5vw, 22px);
  }

  .axis-side,
  .donut-panel,
  .narrative-card,
  .actor-card {
    padding: 15px;
  }

  .legend-item {
    grid-template-columns: 12px 1fr;
  }

  .legend-item b {
    grid-column: 2;
  }

  .narrative-top {
    display: grid;
    gap: 8px;
  }

  .intro-punchline {
    font-weight: 850;
    color: #fff1c8 !important;
  }

  .narrative-grid--rest {
    padding: 12px;
  }

  .expand-box summary {
    padding: 14px 15px;
  }

  .stats-grid,
  .narrative-grid,
  .narrative-grid--rest {
    grid-template-columns: 1fr;
  }

  .fourth-desktop-card {
    display: none;
  }

  .resonance-note,
  .resonance-insight,
  .resonance-card,
  .thread-item,
  .resonance-comment {
    border-radius: 17px;
  }

  .resonance-insight {
    padding: 15px;
  }

  .resonance-desktop {
    display: none;
  }

  .resonance-mobile {
    display: block;
  }

  .resonance-card-grid {
    grid-template-columns: 1fr;
  }

  .resonance-card {
    min-height: auto;
    padding: 15px;
  }

  .res-bar-row {
    grid-template-columns: 66px minmax(0, 1fr) 48px;
  }

  .resonance-subhead {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .thread-item {
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: start;
  }

  .thread-rank {
    width: 30px;
    height: 30px;
    border-radius: 11px;
  }

  .thread-values {
    grid-column: 2;
    text-align: left;
    display: flex;
    gap: 10px;
    align-items: baseline;
  }

  .resonance-comment-head {
    display: grid;
    gap: 5px;
  }

  .resonance-comment-head span {
    text-align: left;
  }

  .expand-box--desktop {
    display: none;
  }

  .expand-box--mobile {
    display: block;
  }

  .actors-desktop {
    display: none;
  }

  .actors-mobile {
    display: block;
  }

  .actors-grid--mobile-top,
  .actors-grid--mobile-rest {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .actor-card {
    min-height: 200px;
  }

  .stance-chip {
    min-height: 30px;
    padding: 5px 7px;
    font-size: 11px;
  }

  .stance-icon {
    width: 19px;
    height: 19px;
  }

  .stance-icon svg {
    width: 18px;
    height: 18px;
  }

  .actor-meta-line b {
    font-size: 23px;
  }

  .actor-card h3 {
    font-size: 26px;
  }

  .actor-main {
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.low-signals-block {
  margin-top: 18px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.11);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.024)
  );
}

.low-signals-note {
  margin-top: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.028);
  color: #dde7f5;
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.38;
}

.low-signals-desktop {
  display: block;
}

.low-signals-mobile {
  display: none;
}

.low-signal-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.low-signal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 22px;
  padding: 16px;
  min-height: 226px;
  box-shadow: none;
}

.low-signal-card::after {
  content: "";
  position: absolute;
  right: -78px;
  top: -86px;
  width: 178px;
  height: 178px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(246, 196, 83, 0.1), transparent 68%);
  pointer-events: none;
}

.low-signal-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.low-signal-rank {
  width: 34px;
  height: 34px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(246, 196, 83, 0.24);
  background: rgba(246, 196, 83, 0.075);
  color: var(--amber);
  font-weight: 950;
  letter-spacing: -0.03em;
}

.low-signal-basis {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.085em;
  font-weight: 900;
  text-align: right;
}

.low-signal-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.low-signal-card > p {
  position: relative;
  z-index: 2;
  margin: 11px 0 0;
  color: #d6e0ef;
  font-size: 14px;
  line-height: 1.38;
}

.low-signal-detail {
  position: relative;
  z-index: 2;
  margin-top: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.low-signal-detail summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 850;
  color: #f6f8fc;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.low-signal-detail summary::-webkit-details-marker {
  display: none;
}

.low-signal-detail summary::after {
  content: "+";
  color: var(--amber);
  font-weight: 950;
}

.low-signal-detail[open] summary::after {
  content: "–";
}

.low-signal-detail[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.low-signal-detail p {
  margin: 0;
  padding: 10px 12px 0;
  color: #d6e0ef;
  font-size: 13px;
  line-height: 1.35;
}

.low-signal-detail p:last-child {
  padding-bottom: 12px;
}

.low-signal-caution {
  color: #fff1c8 !important;
}

@media (max-width: 980px) {
  .low-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .low-signals-note,
  .low-signal-card {
    border-radius: 17px;
  }

  .low-signals-desktop {
    display: none;
  }

  .low-signals-mobile {
    display: block;
  }

  .low-signal-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .resonance-facts {
    grid-template-columns: 1fr;
  }

  .low-signal-card {
    min-height: auto;
    padding: 15px;
  }

  .low-signal-top {
    display: grid;
    gap: 8px;
  }

  .low-signal-basis {
    text-align: left;
  }
}

.methodology-block {
  margin-top: 18px;
  border-color: rgba(255, 255, 255, 0.11);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.052),
    rgba(255, 255, 255, 0.022)
  );
  overflow: hidden;
}

.methodology-card {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  padding: 18px;
}

.methodology-card p {
  margin: 0;
  color: #eaf0fa;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.42;
}

.methodology-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.methodology-list li {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.028);
  border-radius: 16px;
  padding: 12px 13px 12px 38px;
  color: #d6e0ef;
  font-size: 14px;
  line-height: 1.38;
}

.methodology-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(114, 230, 244, 0.08);
}

@media (max-width: 620px) {
  .methodology-card {
    border-radius: 17px;
    padding: 15px;
  }

  .methodology-list li {
    border-radius: 14px;
  }
}

/* Mobile section-level progressive disclosure preview */
.mobile-section-summary {
  display: none;
}

.mobile-section-accordion {
  display: block;
}

@media (min-width: 621px) {
  .mobile-section-accordion {
    margin: 0;
  }

  .mobile-section-accordion > .mobile-section-summary {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .mobile-section-accordion {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.068),
      rgba(255, 255, 255, 0.026)
    );
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
    overflow: hidden;
  }

  .mobile-section-accordion > .mobile-section-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 16px;
    color: #f6f8fc;
    font-weight: 900;
    letter-spacing: -0.02em;
  }

  .mobile-section-accordion > .mobile-section-summary::-webkit-details-marker {
    display: none;
  }

  .mobile-section-accordion > .mobile-section-summary::after {
    content: "+";
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.05);
    color: var(--cyan);
    font-size: 20px;
    line-height: 1;
  }

  .mobile-section-accordion[open] > .mobile-section-summary {
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
  }

  .mobile-section-accordion[open] > .mobile-section-summary::after {
    content: "–";
  }

  .mobile-section-summary-title {
    display: flex;
    align-items: baseline;
    gap: 9px;
    min-width: 0;
  }

  .mobile-section-summary-title span:first-child {
    font-size: 17px;
  }

  .mobile-section-summary-title span:last-child {
    color: var(--muted);
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-section-accordion > .block {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .mobile-section-accordion > .block .section-head span {
    display: none;
  }

  .mobile-section-accordion > .block .section-head h2 {
    font-size: 32px;
    line-height: 1.04;
    letter-spacing: -0.045em;
  }
}
