/* ========================================
   SOCIODYNAMIC DIAGNOSTICS — HUB
   Dashboard-native design system
   ======================================== */

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

:root {
  --bg-deep: #0D0D1A;
  --bg-primary: #1A1A2E;
  --bg-elevated: #222240;
  --bg-card: #1E1E36;
  --bg-card-hover: #26264A;
  --off-white: #F5F3EE;

  --amber: #D4A843;
  --amber-dim: rgba(212, 168, 67, 0.15);
  --amber-glow: rgba(212, 168, 67, 0.25);
  --amber-bright: #E8C060;
  --red: #E05555;
  --red-dim: rgba(224, 85, 85, 0.12);
  --red-glow: rgba(224, 85, 85, 0.3);
  --orange: #E08A45;
  --orange-dim: rgba(224, 138, 69, 0.12);
  --teal: #45B8A0;
  --teal-dim: rgba(69, 184, 160, 0.12);
  --blue: #5588CC;
  --blue-dim: rgba(85, 136, 204, 0.12);

  --text-primary: #E8E4DC;
  --text-secondary: #9A96A6;
  --text-dim: #6A6678;
  --near-black: #2D2D2D;

  --border: rgba(255,255,255,0.06);
  --border-active: rgba(212, 168, 67, 0.3);

  /* Strip component variable mapping */
  --sd-bg-card: #1E1E36;
  --sd-border: rgba(255,255,255,0.06);
  --sd-border-active: rgba(212,168,67,0.3);
  --sd-amber: #D4A843;
  --sd-red: #E05555;
  --sd-orange: #E08A45;
  --sd-teal: #45B8A0;
  --sd-blue: #5588CC;
  --sd-text-primary: #E8E4DC;
  --sd-text-secondary: #9A96A6;
  --sd-text-dim: #6A6678;

  --display: 'Outfit', sans-serif;
  --body: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Consolas', monospace;

  --max-width: 960px;
  --h-pad: clamp(20px, 4vw, 40px);
  --nav-height: 52px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-deep);
  position: relative;
}

/* Grid background — matches dashboard */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

body > * { position: relative; z-index: 1; }

::selection { background: var(--amber); color: var(--bg-deep); }
a { color: inherit; text-decoration: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.14); }

/* ── Framework notation ── */
.v {
  font-family: var(--mono);
  font-size: 0.88em;
  color: var(--amber);
  font-weight: 500;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex; align-items: center;
  padding: 0 var(--h-pad);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.nav.solid {
  background: rgba(13, 13, 26, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.page--sub .nav {
  background: rgba(13, 13, 26, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1100px; width: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

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

.nav-phi {
  font-family: var(--display); font-size: 24px;
  font-weight: 800; color: var(--amber); line-height: 1;
}

.nav-name {
  font-family: var(--display); font-size: 10px;
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-primary);
}

.nav-links {
  display: flex; align-items: center; gap: 24px; list-style: none;
}

.nav-links a {
  font-family: var(--display); font-size: 11px;
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim);
  transition: color 0.15s;
}

.nav-links a:hover, .nav-links a.active { color: var(--amber); }

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px;
  flex-direction: column; gap: 5px;
}

.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.25s, opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-name { display: none; }
  .nav-links {
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: rgba(13,13,26,0.97); backdrop-filter: blur(14px);
    flex-direction: column; padding: 20px var(--h-pad) 28px; gap: 18px;
    border-bottom: 1px solid var(--border); display: none;
  }
  .nav-links.open { display: flex; }
}

/* ========================================
   HERO — compact, dense, no void
   ======================================== */
.hero {
  display: flex; flex-direction: column;
  align-items: center;
  padding: calc(var(--nav-height) + 48px) var(--h-pad) 32px;
  min-height: 0;
}

/* Phi ring */
.hero-ring {
  width: 100px; height: 100px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.hero-ring svg { position: absolute; inset: 0; }

.hero-ring .ring-bg {
  fill: none; stroke: var(--border); stroke-width: 2.5;
}

.hero-ring .ring-val {
  fill: none; stroke: var(--amber); stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px var(--amber-glow));
  stroke-dasharray: 270; stroke-dashoffset: 270;
  transform: rotate(-90deg); transform-origin: center;
  transition: stroke-dashoffset 2.2s cubic-bezier(0.23,1,0.32,1);
}

.hero-ring.animated .ring-val { stroke-dashoffset: 68; }

.hero-phi {
  font-family: var(--display); font-size: 2.6rem;
  font-weight: 800; color: var(--amber);
  letter-spacing: -0.04em;
  text-shadow: 0 0 30px var(--amber-glow);
  z-index: 1;
}

/* ── Hero split layout ── */
.hero-split {
  display: flex; align-items: flex-start; gap: 48px;
  width: 100%; max-width: 960px;
  margin-bottom: 32px;
}
.hero-text {
  flex: 1; text-align: left; min-width: 0;
}

.hero-brand {
  font-family: var(--display); font-size: clamp(10px, 1.1vw, 11px);
  font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-tagline {
  font-family: var(--body); font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 400; color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 0.88rem; color: var(--text-dim);
  max-width: 440px; line-height: 1.7;
  margin-bottom: 28px;
}

.hero-insights {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.hero-insight {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: var(--text-dim); line-height: 1.6;
}
.hi-marker {
  font-family: var(--display); font-size: 0.6rem; font-weight: 700;
  color: var(--amber); min-width: 18px; padding-top: 2px;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}

/* ── Latest analysis teaser ── */
.hero-latest {
  width: 320px; flex-shrink: 0;
}
.latest-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: border-color 0.3s;
  text-decoration: none; display: block; color: inherit;
}
.latest-card:hover { border-color: var(--border-active); }
.latest-header {
  font-family: var(--display); font-size: 0.6rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dim); margin-bottom: 12px;
}
.latest-system {
  font-family: var(--display); font-size: 1rem; font-weight: 600;
  color: var(--text-primary); margin-bottom: 4px; line-height: 1.3;
}
.latest-pop {
  font-size: 0.75rem; color: var(--text-dim); margin-bottom: 14px;
}
.latest-phi-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.latest-phi-ring {
  width: 56px; height: 56px; position: relative;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.latest-phi-ring svg { position: absolute; inset: 0; }
.latest-phi-ring circle { fill: none; stroke-width: 2.5; stroke-linecap: round; }
.latest-phi-ring .lp-bg { stroke: var(--border); }
.latest-phi-ring .lp-val {
  transform: rotate(-90deg); transform-origin: center;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.23,1,0.32,1);
}
.latest-phi-label {
  font-family: var(--display); font-size: 0.78rem; font-weight: 700; z-index: 1;
}
.latest-metrics {
  display: flex; gap: 16px; font-size: 0.72rem; color: var(--text-dim);
}
.latest-metrics strong { color: var(--text-secondary); font-family: 'JetBrains Mono', monospace; font-weight: 500; }
.latest-loops {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
}
.latest-loops-title {
  font-family: var(--display); font-size: 0.58rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 2px;
}
.latest-loop-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; color: var(--text-dim);
}
.latest-loop-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.latest-loop-dot.active { background: var(--red); box-shadow: 0 0 6px var(--red-glow); }
.latest-loop-dot.inactive { background: rgba(255,255,255,0.1); }
.latest-loop-dot.weak { background: var(--orange); box-shadow: 0 0 6px rgba(224,138,69,0.3); }
.latest-loop-name { color: var(--text-secondary); }
.latest-loop-row .latest-loop-status {
  margin-left: auto; font-family: var(--display); font-size: 0.58rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
}
.latest-loop-status.active { color: var(--red); }
.latest-loop-status.inactive { color: var(--text-dim); }
.latest-loop-status.weak { color: var(--orange); }
.latest-insight {
  margin-top: 12px; font-size: 0.75rem; color: var(--text-secondary);
  line-height: 1.6; font-style: italic;
}
.latest-link {
  display: inline-block; margin-top: 12px;
  font-family: var(--display); font-size: 0.72rem; font-weight: 600;
  color: var(--amber); text-decoration: none; letter-spacing: 0.03em;
}
.latest-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .hero-split { flex-direction: column; align-items: center; gap: 28px; }
  .hero-text { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-latest { width: 100%; max-width: 360px; }
}

/* (old preview + stat styles removed — replaced by .latest-* and .hero-split) */

.stat-badge:hover { border-color: var(--border-active); }

.stat-num {
  font-family: var(--display); font-size: 1.4rem;
  font-weight: 800; color: var(--text-primary);
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 3px;
}

.stat-label {
  font-family: var(--display); font-size: 0.55rem;
  font-weight: 600; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em;
  line-height: 1.3;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
  padding: clamp(36px, 5vh, 56px) var(--h-pad);
}

.section-inner {
  max-width: var(--max-width); margin: 0 auto;
}

.section-head {
  font-family: var(--display); font-size: 0.82rem;
  font-weight: 600; color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 8px;
}

.section-head .dot {
  width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0;
}

.section-head .dot.amber { background: var(--amber); }
.section-head .dot.teal  { background: var(--teal); }
.section-head .dot.red   { background: var(--red); }

.section--deep { background: var(--bg-deep); }
.section--primary { background: var(--bg-primary); }

/* ========================================
   CARDS (the fundamental element)
   ======================================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
  border-color: var(--border-active);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

/* ========================================
   BADGES
   ======================================== */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--display); font-size: 0.72rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 5px;
  white-space: nowrap;
}

.badge--amber  { background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(212,168,67,0.2); }
.badge--red    { background: var(--red-dim);   color: var(--red);   border: 1px solid rgba(224,85,85,0.2); }
.badge--orange { background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(224,138,69,0.2); }
.badge--teal   { background: var(--teal-dim);  color: var(--teal);  border: 1px solid rgba(69,184,160,0.2); }
.badge--blue   { background: var(--blue-dim);  color: var(--blue);  border: 1px solid rgba(85,136,204,0.2); }

/* ========================================
   FINDINGS (as cards)
   ======================================== */
.findings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.finding-card {
  display: flex; flex-direction: column;
  padding: 24px;
}

.finding-card .badge { margin-bottom: 14px; }

.finding-title {
  font-family: var(--display); font-size: 1.1rem;
  font-weight: 600; color: var(--text-primary);
  line-height: 1.3; margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.finding-body {
  font-size: 0.92rem; line-height: 1.7;
  color: var(--text-secondary); flex-grow: 1;
}

/* ========================================
   TOOL SECTION
   ======================================== */
.tool-card {
  padding: 32px;
}

.tool-card .section-head { margin-bottom: 16px; }

.tool-title {
  font-family: var(--display); font-size: 1.4rem;
  font-weight: 700; color: var(--text-primary);
  margin-bottom: 12px; letter-spacing: -0.02em;
}

.tool-body {
  font-size: 0.95rem; line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px; margin-bottom: 24px;
}

/* ========================================
   ANALYSES CARDS (Homepage + Library)
   ======================================== */
.analyses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.analysis-card {
  display: flex; flex-direction: column;
  padding: 20px;
}

.analysis-card .badge-row {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 14px;
}

.analysis-title {
  font-family: var(--display); font-size: 1.05rem;
  font-weight: 600; color: var(--text-primary);
  line-height: 1.3; margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.analysis-summary {
  font-size: 0.88rem; line-height: 1.65;
  color: var(--text-secondary);
  flex-grow: 1; margin-bottom: 16px;
}

.analysis-footer {
  display: flex; align-items: center;
  justify-content: space-between;
}

.analysis-link {
  font-family: var(--display); font-size: 0.82rem;
  font-weight: 600; color: var(--amber);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.15s;
}

.analysis-link:hover { gap: 8px; }

.analysis-date {
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--text-dim);
}

/* ── Full analysis cards (library page, with strip) ── */
.analysis-card-full {
  display: flex; flex-direction: column;
  padding: 24px 28px;
}

.analysis-card-full .badge-row {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 12px;
}

.analysis-card-full .analysis-title {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.analysis-card-full .dashboard-strip {
  margin-bottom: 16px;
}

.analysis-card-full .analysis-summary {
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.analysis-card-full .analysis-footer {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  justify-content: flex-start;
}

.analysis-card-full .analysis-date {
  margin-left: auto;
}

.analysis-link--dashboard {
  color: var(--amber) !important;
  background: var(--amber-dim);
  border: 1px solid rgba(212,168,67,0.3);
  padding: 5px 14px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.2s;
}

.analysis-link--dashboard:hover {
  background: rgba(212,168,67,0.25);
  border-color: var(--amber);
}

/* Blue multi-surface badge */
.badge--blue-ms {
  background: rgba(85,136,204,0.1);
  color: var(--blue);
  border: 1px solid rgba(85,136,204,0.15);
}

/* Mini Phi ring on cards */
.mini-phi {
  width: 28px; height: 28px;
  position: relative; display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.mini-phi svg { position: absolute; inset: 0; }
.mini-phi .mp-bg { fill: none; stroke: var(--border); stroke-width: 2; }
.mini-phi .mp-val { fill: none; stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: 69.1; transform: rotate(-90deg); transform-origin: center; }

.mini-phi .mp-v { font-family: var(--display); font-size: 7px;
  font-weight: 800; z-index: 1; }

/* ========================================
   ABOUT
   ======================================== */
.about-text {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--text-secondary);
  max-width: 620px; margin-bottom: 20px;
}

.link-amber {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--display); font-size: 0.88rem;
  font-weight: 600; color: var(--amber);
  transition: gap 0.15s;
}

.link-amber:hover { gap: 8px; }

.btn-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}

.btn-outline {
  display: inline-block;
  padding: 10px 20px;
  font-family: var(--display); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.03em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 6px; background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-outline:hover { border-color: var(--border-active); color: var(--amber); }

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--display); font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.04em;
  color: var(--bg-deep); background: var(--amber);
  border: none; border-radius: 6px; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--amber-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--amber-glow);
}

.btn-ghost {
  font-family: var(--display); font-size: 0.8rem;
  font-weight: 600; color: var(--text-dim);
  transition: color 0.15s;
}

.btn-ghost:hover { color: var(--amber); }

.arr { margin-left: 4px; display: inline-block; transition: transform 0.15s; }
*:hover > .arr { transform: translateX(2px); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px var(--h-pad);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}

.footer-links {
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
}

.footer-links a {
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-dim); transition: color 0.15s;
}

.footer-links a:hover { color: var(--amber); }

.footer-copy {
  font-size: 0.72rem; color: var(--text-dim); opacity: 0.5;
}

/* ========================================
   SUBPAGE
   ======================================== */
.page-head {
  padding: calc(var(--nav-height) + 48px) var(--h-pad) 0;
}

.page-head-inner { max-width: var(--max-width); margin: 0 auto; }

.page-title {
  font-family: var(--display); font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800; color: var(--text-primary);
  letter-spacing: -0.03em; margin-bottom: 10px;
}

.page-subtitle {
  font-size: 0.95rem; line-height: 1.6;
  color: var(--text-secondary); max-width: 560px;
}

/* ── Filter bar ── */
.filters {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px;
}

.filter-btn {
  background: transparent; border: 1px solid var(--border);
  border-radius: 6px; color: var(--text-dim);
  font-family: var(--display); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 7px 16px;
  cursor: pointer; transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.filter-btn:hover { border-color: var(--border-active); color: var(--amber); }

.filter-btn.active {
  background: var(--amber); border-color: var(--amber); color: var(--bg-deep);
}

/* ── Card list (vertical) ── */
.card-list { display: flex; flex-direction: column; gap: 12px; }

/* ── Prose (about page) ── */
.prose { max-width: 660px; }

.prose p {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--text-secondary); margin-bottom: 20px;
}

.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text-primary); font-weight: 500; }

.prose-heading {
  font-family: var(--display); font-size: 1.4rem;
  font-weight: 700; color: var(--text-primary);
  margin: 48px 0 18px; letter-spacing: -0.02em;
}

.prose-heading:first-child { margin-top: 0; }

/* ── Offer blocks (workshop, consulting) ── */
.offer-block { max-width: 660px; margin-bottom: 36px; }

.offer-block h3 {
  font-family: var(--display); font-size: 1.1rem;
  font-weight: 600; color: var(--text-primary);
  margin-bottom: 12px;
}

.offer-block p, .offer-block li {
  font-size: 0.95rem; line-height: 1.8; color: var(--text-secondary);
}

.offer-block ul { list-style: none; padding: 0; }
.offer-block ul li { padding-left: 18px; position: relative; margin-bottom: 6px; }
.offer-block ul li::before { content: '—'; position: absolute; left: 0; color: var(--amber); }

.offer-val {
  font-family: var(--mono); font-size: 0.9rem;
  color: var(--amber); margin-top: 6px; display: block;
}

.offer-sep {
  width: 40px; height: 1px;
  background: var(--border); margin: 28px 0; border: none;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }
.d5 { animation-delay: 0.5s; }
.d6 { animation-delay: 0.6s; }
.d7 { animation-delay: 0.7s; }

.fade-in {
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.s1 { transition-delay: 0.06s; }
.fade-in.s2 { transition-delay: 0.12s; }
.fade-in.s3 { transition-delay: 0.18s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 680px) {
  .findings-grid, .analyses-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: center; }
  .stat-badge { width: 100%; max-width: 260px; }
  .hero-ctas { flex-direction: column; }
  .btn-row { flex-direction: column; }
  .btn-outline { text-align: center; }
  .hero-preview { flex-direction: column; text-align: left; gap: 14px; }
  .preview-meta { align-items: flex-start; flex-direction: row; gap: 8px; }
  .preview-phi { flex-direction: row; gap: 10px; }
}
