:root {
  color-scheme: dark;
  --bg: #080806;
  --panel: #12120f;
  --panel-2: #191914;
  --text: #f3f0e8;
  --muted: #a8a294;
  --line: #2f2d24;
  --cyan: #7dd3c7;
  --amber: #d6a84a;
  --danger: #d65b5b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 78% 8%, rgba(214, 168, 74, 0.12), transparent 24rem),
    linear-gradient(180deg, #080806 0%, #10100c 100%);
  background-size: 36px 36px, 36px 36px, auto, auto;
  color: var(--text);
  font-family:
    Inter, "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 6, 0.86);
  backdrop-filter: blur(16px);
}

.topbar.compact {
  padding-block: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 10px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-sub,
nav a,
.eyebrow,
footer {
  color: var(--muted);
}

nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.hero,
.quiz-section,
.result-section,
.tools-section,
.dashboard-section,
.analytics-section,
.calculator-section,
.myths-section,
.apply-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.exchange-section,
.legal-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: center;
  padding: 54px 0 34px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 6.2vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
}

.official-hero {
  min-height: 68vh;
}

.story-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 4px;
}

.story-kicker span,
.certificate-wall span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(125, 211, 199, 0.35);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--cyan);
  background: rgba(125, 211, 199, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.profile-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(18, 18, 15, 0.92);
}

.cover-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-color: rgba(214, 168, 74, 0.28);
  background:
    linear-gradient(180deg, rgba(8, 8, 6, 0.04), rgba(8, 8, 6, 0.96)),
    linear-gradient(135deg, rgba(125, 211, 199, 0.14), transparent 38%),
    #141410;
}

.cover-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(214, 168, 74, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.profile-card img {
  width: min(220px, 70%);
  display: block;
  margin: 0 auto 20px;
}

.cover-card img {
  position: relative;
  z-index: 1;
  width: min(260px, 82%);
  margin-bottom: 28px;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.45));
}

.profile-card h2 {
  margin: 0;
  font-size: 32px;
}

.profile-card p {
  color: var(--muted);
}

.profile-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.profile-links a,
.footer-links a {
  color: var(--cyan);
}

.cert-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 18px;
}

.cert-preview img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border: 1px solid rgba(214, 168, 74, 0.38);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.cert-preview span {
  min-height: 64px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(214, 168, 74, 0.48);
  border-radius: 6px;
  color: var(--amber);
  background: rgba(214, 168, 74, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.content-section,
.page-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.info-grid article,
.cta-band {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(18, 18, 15, 0.92);
}

.channel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.channel-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(18, 18, 15, 0.92);
}

.channel-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;
}

.channel-card span {
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.channel-card b {
  display: block;
  margin-top: 6px;
  color: var(--amber);
  font-size: 24px;
}

.channel-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.partner-grid,
.resource-grid {
  display: grid;
  gap: 14px;
}

.partner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-notice {
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid rgba(214, 168, 74, 0.36);
  border-radius: 6px;
  background: rgba(214, 168, 74, 0.08);
}

.resource-notice b {
  color: var(--amber);
}

.resource-notice p {
  margin: 8px 0 0;
  color: #d3cec2;
  line-height: 1.75;
}

.partner-grid article,
.resource-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(18, 18, 15, 0.92);
}

.partner-grid b,
.resource-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 22px;
}

.resource-grid span {
  color: var(--cyan);
  font-weight: 900;
}

.partner-grid p,
.resource-grid p {
  color: var(--muted);
  line-height: 1.8;
}

.unlock-row {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.unlock-row input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  background: var(--panel-2);
  color: var(--text);
  font: inherit;
}

.resource-status {
  display: block;
  margin-top: 10px;
  color: #9ba6b4;
  line-height: 1.5;
}

.cert-grid,
.resume-grid,
.certificate-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cert-grid article,
.resume-grid article,
.certificate-wall article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(18, 18, 15, 0.92);
}

.cert-grid b,
.resume-grid b,
.certificate-wall b {
  display: block;
  margin: 14px 0 8px;
  color: var(--amber);
  font-size: 20px;
}

.cert-grid p,
.resume-grid p,
.certificate-wall p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cert-card {
  overflow: hidden;
}

.cert-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: #0c0c0a;
}

.profile-page {
  padding-top: 76px;
}

.profile-page h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.info-grid b {
  color: var(--amber);
}

.info-grid p,
.cta-band p {
  color: var(--muted);
  line-height: 1.8;
}

.instructor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.instructor-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(18, 18, 15, 0.92);
}

.instructor-card img,
.instructor-placeholder,
.profile-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: var(--panel-2);
}

.instructor-placeholder {
  display: grid;
  place-items: center;
  color: var(--amber);
  font-size: 34px;
  font-weight: 900;
}

.instructor-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.instructor-card b {
  display: block;
  margin: 6px 0 8px;
  color: var(--amber);
  font-size: 24px;
}

.instructor-card p {
  color: var(--muted);
  line-height: 1.75;
}

.profile-hero {
  width: min(320px, 100%);
  margin-bottom: 28px;
}

.lead {
  max-width: 680px;
  color: #d3cec2;
  font-size: 18px;
  line-height: 1.75;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 18px;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  border-color: transparent;
  background: var(--amber);
  color: #141006;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.05);
}

.button.full {
  width: 100%;
  margin-top: 18px;
}

.market-card,
.quiz-card,
.result-card,
.tool-card,
.signal-grid article,
.myth-list article,
.apply-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(18, 18, 15, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.market-card {
  padding: 24px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.card-head span,
.market-card p,
.tool-grid p,
.signal-grid p,
.myth-list p,
.apply-card p {
  color: var(--muted);
}

.card-head strong {
  color: var(--amber);
}

.meter {
  height: 10px;
  margin: 22px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #263241;
}

.meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
}

.market-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.market-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.market-card li span {
  color: #c9d3df;
  text-align: right;
}

.quiz-section,
.result-section,
.tools-section,
.dashboard-section,
.calculator-section,
.myths-section,
.apply-section,
.exchange-section,
.legal-section,
.waiting-section {
  padding: 56px 0;
}

.section-title {
  margin-bottom: 20px;
}

.section-title h2,
.result-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.quiz-card,
.result-card {
  padding: clamp(18px, 4vw, 34px);
}

.quiz-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.quiz-guide article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.quiz-guide b {
  display: block;
  color: var(--amber);
  font-size: 12px;
}

.quiz-guide span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

.quiz-guide p,
.result-note {
  color: var(--muted);
  line-height: 1.7;
}

.scale-head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
}

.scale-head span:nth-child(2) {
  text-align: center;
}

.scale-head span:last-child {
  text-align: right;
}

.question {
  display: grid;
  grid-template-columns: 1fr minmax(230px, 330px);
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.question p {
  margin: 0;
  line-height: 1.6;
}

.scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.scale input {
  position: absolute;
  opacity: 0;
}

.scale label {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  cursor: pointer;
}

.scale input:checked + label {
  border-color: var(--cyan);
  background: rgba(35, 216, 255, 0.18);
}

.result-grid,
.tool-grid,
.signal-grid,
.myth-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.result-grid div,
.tool-card,
.signal-grid article,
.myth-list article {
  padding: 18px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result-grid h3,
.tool-grid h3 {
  margin: 0 0 10px;
}

.result-grid p {
  margin: 0;
  color: #c9d3df;
  line-height: 1.7;
}

.score-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.score-pill {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 12px;
}

.score-pill b {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 18px;
}

.tool-grid,
.waiting-grid,
.signal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tool-grid span,
.signal-grid span {
  color: var(--cyan);
  font-weight: 900;
}

.tool-card {
  display: block;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(18, 18, 15, 0.92);
}

.calc-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.calc-grid small {
  color: #9ba6b4;
  font-weight: 600;
  line-height: 1.4;
}

.calc-grid input,
.calc-grid select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  background: var(--panel-2);
  color: var(--text);
  font: inherit;
}

.calc-grid select {
  appearance: none;
}

.calc-result {
  margin-top: 14px;
  padding: 18px;
  border-left: 3px solid var(--amber);
  background: rgba(214, 168, 74, 0.08);
  color: #d3cec2;
  line-height: 1.7;
}

.calc-help {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.calc-help article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.calc-help h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.calc-help p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.myth-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.apply-card {
  padding: clamp(18px, 4vw, 28px);
}


.section-note,
.dashboard-disclaimer {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.75;
}

.market-structure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.market-structure-card {
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(18, 18, 15, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.market-structure-card h3 {
  margin: 6px 0 0;
  font-size: clamp(22px, 3vw, 32px);
}

.market-structure-card .card-head strong {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214, 168, 74, 0.12);
  color: var(--amber);
  white-space: nowrap;
}

.structure-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.structure-summary div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  background: rgba(255,255,255,0.035);
}

.structure-summary b {
  display: block;
  color: var(--cyan);
  font-size: 26px;
}

.structure-summary span,
.rep-trends,
.market-structure-card small {
  color: var(--muted);
}

.rep-trends span {
  display: inline-flex;
  margin: 4px 6px 0 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #dfe7ef;
}

.structure-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  columns: 2;
}

.structure-list li {
  break-inside: avoid;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.trend-多頭 { color: var(--cyan); }
.trend-空頭 { color: #ff9f8f; }
.trend-中性 { color: var(--muted); }

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.legal-grid article {
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.legal-grid h3 {
  margin: 0 0 10px;
}

.legal-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.waiting-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.waiting-grid {
  display: grid;
  gap: 14px;
}

.waiting-grid article {
  min-height: 120px;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.waiting-grid b {
  color: var(--amber);
}

.waiting-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.hidden {
  display: none;
}

footer {
  width: min(1120px, calc(100% - 36px));
  margin: 20px auto 44px;
  font-size: 13px;
}

.footer-links { margin-top: 10px; }

@media (max-width: 820px) {
  .hero,
  .info-grid,
  .channel-card,
  .partner-grid,
  .resource-grid,
  .cert-grid,
  .instructor-grid,
  .resume-grid,
  .certificate-wall,
  .question,
  .quiz-guide,
  .result-grid,
  .tool-grid,
  .signal-grid,
  .market-structure-grid,
  .myth-list,
  .calc-grid,
  .calc-help,
  .score-strip,
  .legal-grid,
  .waiting-grid {
    grid-template-columns: 1fr;
  }

  .scale-head {
    grid-template-columns: 1fr;
  }

  .scale-head span,
  .scale-head span:nth-child(2),
  .scale-head span:last-child {
    text-align: left;
  }

  .hero {
    min-height: auto;
  }

  .cover-card {
    min-height: 430px;
  }

  .topbar {
    align-items: flex-start;
    gap: 12px;
  }

  nav {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


.proof-pulse-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 18px;
  padding: 12px;
  border: 1px solid rgba(125, 211, 199, 0.32);
  border-radius: 10px;
  background: radial-gradient(circle at 20% 0%, rgba(125, 211, 199, 0.16), transparent 46%), rgba(255, 255, 255, 0.035);
  animation: proofPulse 2.8s ease-in-out infinite;
}
.proof-pulse-board div { padding: 12px 8px; border: 1px solid rgba(255,255,255,.08); border-radius: 8px; background: rgba(8,8,6,.48); text-align: center; }
.proof-pulse-board b { display: block; color: var(--cyan); font-size: clamp(24px, 4vw, 34px); line-height: 1; }
.proof-pulse-board span { display: block; margin-top: 6px; color: var(--text); font-size: 12px; font-weight: 800; }
@keyframes proofPulse { 0%,100% { transform: translateY(0); box-shadow: 0 0 0 rgba(125,211,199,0); } 50% { transform: translateY(-8px); box-shadow: 0 18px 44px rgba(125,211,199,.12); } }
.section-note { max-width: 680px; color: var(--muted); line-height: 1.8; }
.myth-method-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.myth-card { min-height: 220px; padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: rgba(18,18,15,.92); }
.myth-card.featured-myth, .myth-card.method-card { background: linear-gradient(135deg, rgba(125,211,199,.12), rgba(214,168,74,.08)), rgba(18,18,15,.94); }
.myth-card span { display: inline-flex; margin-bottom: 12px; color: var(--cyan); font-size: 12px; font-weight: 900; }
.myth-card b { display: block; color: var(--amber); font-size: 22px; line-height: 1.25; }
.myth-card p { color: var(--muted); line-height: 1.75; }
.team-carousel { display: flex; gap: 16px; overflow-x: auto; padding: 4px 2px 18px; scroll-snap-type: x mandatory; scrollbar-color: var(--cyan) transparent; }
.team-slide { min-width: min(86vw, 760px); scroll-snap-align: center; }
.support-slide .instructor-placeholder { color: var(--cyan); }
@media (max-width: 860px) { .proof-pulse-board, .myth-method-grid { grid-template-columns: 1fr; } .team-carousel { margin-right: -18px; } }

.dynamic-myth-list {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.myth-database-card {
  position: relative;
  overflow: hidden;
}

.myth-database-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.myth-database-card small {
  display: block;
  margin-top: 14px;
  color: var(--amber);
  line-height: 1.7;
}


.analytics-section {
  padding: 40px 0;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.analytics-grid article {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(18, 18, 15, 0.92);
}

.analytics-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.analytics-grid b {
  color: var(--cyan);
  font-size: clamp(28px, 4vw, 42px);
}

@media (max-width: 900px) {
  .analytics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .analytics-grid {
    grid-template-columns: 1fr;
  }
}
