:root {
  --green: #649701;
  --green-dark: #476c00;
  --green-deep: #304900;
  --green-soft: #eef5df;
  --ink: #10140c;
  --ink-2: #22291d;
  --muted: #626b5b;
  --line: #dfe6d7;
  --paper: #ffffff;
  --off: #f7f9f4;
  --dark: #0f120d;
  --warning: #8b5a00;
  --danger: #8c2f2f;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 54px rgba(20, 35, 8, 0.09);
  --shadow-sm: 0 8px 28px rgba(20, 35, 8, 0.07);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(100,151,1,.28);
  outline-offset: 3px;
}
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 9999; background: var(--dark); color: #fff; padding: 10px 14px; border-radius: 8px; text-decoration: none; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223,230,215,.95);
}
.nav { min-height: 76px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 820; letter-spacing: -.035em; white-space: nowrap; }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.brand span { font-size: 19px; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 23px; }
.nav-links a { text-decoration: none; font-size: 14px; color: #3f4739; font-weight: 680; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green-dark); }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.social-btn {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 999px;
  display: inline-grid; place-items: center; text-decoration: none; font-weight: 850; background: #fff;
}
.social-btn:hover { background: var(--off); border-color: #bec9b3; }
.menu-btn { display: none; border: 0; background: transparent; width: 42px; height: 42px; border-radius: 12px; font-size: 24px; cursor: pointer; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: 999px; padding: 11px 18px;
  text-decoration: none; font-size: 14px; font-weight: 780; cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { background: #fff; border-color: var(--line); color: var(--ink); }
.btn-secondary:hover { background: var(--off); border-color: #c6d1bb; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #1d2418; }
.btn-light { background: #fff; color: var(--dark); }
.btn-compact { padding: 8px 13px; font-size: 12px; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 7px; border: 1px solid #d8e5c5;
  background: #f8fbf3; color: var(--green-dark); border-radius: 999px;
  padding: 6px 10px; font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase;
}
.hero { padding: 98px 0 80px; background: linear-gradient(180deg, #fbfcf9 0%, #fff 74%); position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -180px; top: -180px; border-radius: 50%; background: rgba(100,151,1,.08); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.hero h1, .page-hero h1, .token-hero h1 { margin: 18px 0 22px; line-height: 1.01; letter-spacing: -.055em; }
.hero h1 { font-size: clamp(48px, 7vw, 78px); }
.hero p, .page-hero p { color: var(--muted); font-size: 19px; max-width: 760px; }
.hero-actions, .token-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 27px; color: #5f6859; font-size: 13px; }
.trust-row span::before { content: "✓"; color: var(--green); margin-right: 7px; font-weight: 900; }

.score-panel {
  background: var(--dark); color: #fff; border-radius: 32px; padding: 30px; box-shadow: var(--shadow);
  position: relative; overflow: hidden; min-height: 475px;
}
.score-panel::before { content: ""; position: absolute; right: -120px; top: -150px; width: 340px; height: 340px; border-radius: 50%; background: rgba(100,151,1,.22); }
.score-panel > * { position: relative; z-index: 1; }
.score-ring { width: 220px; height: 220px; border-radius: 50%; border: 18px solid rgba(255,255,255,.09); border-top-color: #76ad13; border-right-color: #76ad13; display: grid; place-items: center; margin: 32px auto 30px; }
.score-ring strong { display: block; font-size: 56px; line-height: 1; letter-spacing: -.05em; }
.score-ring small { display: block; color: #bec7b7; text-align: center; margin-top: 5px; }
.metric { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.metric span { color: #c4cbbf; }
.metric strong { color: #fff; }

.section { padding: 88px 0; }
.section.off { background: var(--off); }
.section.dark { background: var(--dark); color: #fff; }
.section.dark .section-head p, .section.dark .muted { color: #b5bdb0; }
.section-head { max-width: 820px; margin-bottom: 43px; }
.section-head h2, .page-section h2 { margin: 10px 0 15px; font-size: clamp(34px, 5vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
.section-head p { margin: 0; font-size: 17px; color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 27px; }
.card.elevated { box-shadow: var(--shadow-sm); }
.card h3 { margin: 10px 0 8px; font-size: 21px; letter-spacing: -.025em; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.card ul { margin: 13px 0 0; padding-left: 19px; color: #444d3f; font-size: 14px; }
.icon { width: 44px; height: 44px; border-radius: 13px; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; font-weight: 900; font-size: 13px; }
.feature-row { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; padding: 28px 0; border-top: 1px solid var(--line); }
.feature-row:first-child { border-top: 0; }
.feature-row h3 { margin: 0; font-size: 23px; letter-spacing: -.03em; }
.feature-row p { margin: 0; color: var(--muted); }
.stat-band { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: #fff; }
.stat { padding: 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 29px; letter-spacing: -.04em; }
.stat span { display: block; color: var(--muted); font-size: 13px; margin-top: 3px; }

.page-hero { padding: 86px 0 60px; background: linear-gradient(180deg, #f6f9f1 0%, #fff 100%); }
.page-hero h1 { font-size: clamp(46px, 6vw, 70px); max-width: 930px; }
.page-hero .lede { max-width: 840px; }
.page-section { padding: 72px 0; }
.prose { max-width: 860px; }
.prose h2 { margin: 44px 0 13px; font-size: 31px; line-height: 1.2; letter-spacing: -.035em; }
.prose h3 { margin: 31px 0 9px; font-size: 21px; letter-spacing: -.02em; }
.prose p, .prose li { color: #3b4435; }
.prose ul, .prose ol { padding-left: 22px; }
.prose a { color: var(--green-dark); font-weight: 720; }
.notice { background: #f5f9ed; border: 1px solid #d7e5c3; border-radius: 16px; padding: 18px 20px; color: #37432c; }
.notice.warning { background: #fff8e9; border-color: #ead8ad; color: #60481a; }
.notice.danger { background: #fff2f2; border-color: #eccaca; color: #6a2b2b; }
.legal-meta { margin: 11px 0 28px; color: var(--muted); font-size: 13px; }
.legal-toc { padding: 19px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--off); }
.legal-toc a { display: inline-block; margin: 4px 12px 4px 0; text-decoration: none; font-size: 13px; color: var(--green-dark); font-weight: 700; }

.token-hero { padding: 88px 0; background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.token-hero::after { content: ""; position: absolute; right: -190px; top: -180px; width: 520px; height: 520px; border-radius: 50%; background: rgba(100,151,1,.22); }
.token-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.token-hero h1 { font-size: clamp(58px, 8vw, 94px); }
.token-hero p { color: #c3cbc0; font-size: 18px; max-width: 680px; }
.token-logo { min-height: 400px; background: #fff; border-radius: 30px; display: grid; place-items: center; padding: 44px; box-shadow: 0 28px 80px rgba(0,0,0,.24); }
.token-logo img { width: min(330px, 90%); }
.ca-wrap { margin-top: 26px; max-width: 760px; }
.ca-label { font-size: 12px; color: #aeb8aa; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; margin-bottom: 8px; }
.ca-box { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 9px; }
.ca-value { min-width: 0; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.07); border-radius: 13px; padding: 12px 14px; font: 13px/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.risk { margin-top: 15px; color: #aeb7aa; font-size: 12px; }
.token-facts { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 15px; }
.fact { border: 1px solid var(--line); border-radius: 18px; padding: 20px; background: #fff; }
.fact small { display: block; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-size: 10px; font-weight: 850; }
.fact strong { display: block; margin-top: 7px; font-size: 17px; overflow-wrap: anywhere; }
.token-alert { border-left: 4px solid var(--green); background: #f6f9f1; padding: 18px 20px; border-radius: 0 14px 14px 0; color: #3d4735; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; }
table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
th, td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--off); color: #46503f; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
td { color: #3e4738; font-size: 14px; }
tr:last-child td { border-bottom: 0; }

.code { background: #10140c; color: #edf1e9; border-radius: 18px; padding: 20px; overflow-x: auto; font: 13px/1.65 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.badge-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 18px 0; }
.badge { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 7px 10px; font-size: 12px; font-weight: 720; }
.cta { background: var(--green); color: #fff; border-radius: 30px; padding: 46px; }
.cta h2 { margin: 0 0 11px; font-size: clamp(34px, 5vw, 46px); line-height: 1.08; letter-spacing: -.04em; }
.cta p { max-width: 760px; color: #eef4e8; }
.cta .btn { background: #fff; color: var(--dark); }

.faq { max-width: 900px; }
.faq details { border-top: 1px solid var(--line); padding: 20px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 760; font-size: 17px; }
.faq details p { color: var(--muted); margin: 11px 0 0; }

.footer { background: var(--dark); color: #fff; padding: 62px 0 27px; }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 42px; }
.footer .brand { color: #fff; }
.footer .brand img { width: 34px; height: 34px; }
.footer p { color: #aab3a5; font-size: 14px; max-width: 440px; }
.footer h4 { margin: 0 0 14px; color: #c8d0c3; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.footer a { display: block; margin: 8px 0; color: #e3e7df; text-decoration: none; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer-contract { margin-top: 19px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-contract small { display: block; color: #8f998a; text-transform: uppercase; letter-spacing: .08em; font-size: 10px; }
.footer-ca-row { display: flex; align-items: center; gap: 8px; margin-top: 7px; }
.footer-ca { max-width: 290px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #dfe4dc; font: 12px ui-monospace, SFMono-Regular, Menlo, monospace; }
.footer-copy { border: 1px solid rgba(255,255,255,.15); background: transparent; color: #fff; border-radius: 999px; padding: 5px 9px; font-size: 11px; cursor: pointer; }
.footer-copy:disabled { opacity: .45; cursor: not-allowed; }
.footer-bottom { margin-top: 44px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 20px; color: #8f998a; font-size: 12px; }

.inline-green { color: var(--green-dark); font-weight: 760; }
.muted { color: var(--muted); }
.kicker { font-size: 12px; font-weight: 850; color: var(--green-dark); text-transform: uppercase; letter-spacing: .08em; }
.center { text-align: center; }
.spacer-top { margin-top: 28px; }
.clipboard-fallback { position: fixed; opacity: 0; pointer-events: none; left: -9999px; top: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 1020px) {
  .nav-links { display: none; position: absolute; top: 76px; left: 0; right: 0; margin: 0; padding: 19px 20px 24px; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; gap: 14px; box-shadow: 0 18px 34px rgba(20,35,8,.06); }
  .nav-links.open { display: flex; }
  .menu-btn { display: inline-grid; place-items: center; }
  .nav-actions .btn-secondary { display: none; }
  .hero-grid, .token-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .token-grid { gap: 42px; }
  .grid-3, .grid-4, .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature-row { grid-template-columns: 1fr; gap: 9px; }
  .stat-band, .token-facts { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .site-header .brand span { font-size: 17px; }
  .site-header .brand img { width: 32px; height: 32px; }
  .nav { gap: 8px; }
  .nav-actions { margin-left: auto; gap: 6px; }
  .nav-actions .btn-primary { display: none; }
  .hero { padding: 67px 0 62px; }
  .hero h1, .page-hero h1 { font-size: 45px; }
  .page-hero { padding: 66px 0 45px; }
  .section, .page-section { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4, .footer-grid, .stat-band, .token-facts { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .score-panel { min-height: 440px; padding: 24px; }
  .score-ring { width: 190px; height: 190px; }
  .token-hero { padding: 67px 0; }
  .token-hero h1 { font-size: 61px; }
  .token-logo { min-height: 290px; padding: 28px; }
  .ca-box { grid-template-columns: 1fr; }
  .cta { padding: 31px 24px; }
  .footer-bottom { flex-direction: column; }
  .footer-ca { max-width: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Live CrediFi scoring application */
.wallet-connect {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  min-height: 42px;
  white-space: nowrap;
}
.wallet-connect:hover { background: var(--off); border-color: #c4cfb8; }
.wallet-connect.is-connected { border-color: #bed493; background: #f5faed; color: var(--green-dark); }

.score-app-shell { padding: 34px 0 82px; }
.score-app {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.score-app-top { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 470px; }
.live-score-card {
  background: var(--dark);
  color: #fff;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.live-score-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -180px;
  top: -170px;
  background: rgba(100,151,1,.24);
}
.live-score-card > * { position: relative; z-index: 1; }
.live-score-brand { color: #aeb8aa; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.live-score-ring {
  --score-pct: 0%;
  width: 226px;
  height: 226px;
  margin: 28px auto 24px;
  border-radius: 50%;
  padding: 15px;
  background: conic-gradient(var(--green) var(--score-pct), rgba(255,255,255,.09) 0);
  display: grid;
  place-items: center;
  transition: background .4s ease;
}
.live-score-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--dark);
  display: grid;
  place-items: center;
  text-align: center;
}
.live-score-ring strong { display: block; font-size: 60px; line-height: .95; letter-spacing: -.055em; }
.live-score-ring span { display: block; color: #c1c9bd; font-size: 13px; margin-top: 7px; }
.live-score-summary { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.live-score-summary div { border-top: 1px solid rgba(255,255,255,.1); padding-top: 13px; }
.live-score-summary small { display: block; color: #8f998a; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.live-score-summary strong { display: block; margin-top: 3px; font-size: 15px; }

.score-tool { padding: 42px; display: flex; flex-direction: column; justify-content: center; }
.score-tool h2 { margin: 0 0 8px; font-size: 34px; line-height: 1.12; letter-spacing: -.04em; }
.score-tool > p { margin: 0 0 24px; color: var(--muted); }
.score-form { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
.wallet-input {
  width: 100%;
  height: 48px;
  border: 1px solid #cfd9c4;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  font: 13px/1.3 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.wallet-input::placeholder { color: #8e9788; }
.score-tool-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 12px; }
.tool-status { min-height: 24px; margin-top: 15px; color: var(--muted); font-size: 13px; }
.tool-status[data-state="error"] { color: #9b2f2f; }
.tool-status[data-state="success"] { color: var(--green-dark); }
.tool-status[data-state="loading"]::after { content: ""; display: inline-block; width: 12px; height: 12px; margin-left: 8px; border: 2px solid #ccd5c5; border-top-color: var(--green); border-radius: 50%; vertical-align: -2px; animation: credfi-spin .7s linear infinite; }
@keyframes credfi-spin { to { transform: rotate(360deg); } }
.score-data-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; color: #737c6c; font-size: 11px; }
.score-data-meta a { color: var(--green-dark); font-weight: 760; text-decoration: none; }

.live-results { display: none; padding: 30px 34px 36px; border-top: 1px solid var(--line); background: #fbfcfa; }
.score-app.has-score .live-results { display: block; }
.score-app.has-score .score-empty-copy { display: none; }
.score-app:not(.has-score) [data-live-score] { color: #86907f; }
.score-app.is-loading { cursor: progress; }
.live-metrics { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.live-metric { border: 1px solid var(--line); background: #fff; border-radius: 16px; padding: 17px; }
.live-metric small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; font-weight: 850; }
.live-metric strong { display: block; margin-top: 5px; font-size: 19px; letter-spacing: -.025em; overflow-wrap: anywhere; }
.score-breakdown { margin-top: 30px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; align-items: start; }
.score-breakdown h3 { margin: 0 0 8px; font-size: 24px; letter-spacing: -.03em; }
.score-breakdown p { margin: 0; color: var(--muted); font-size: 14px; }
.score-components { display: grid; gap: 16px; }
.score-component-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; }
.score-component-head span { font-weight: 760; }
.score-component-head strong { font-size: 12px; color: #4e5848; }
.score-bar { margin-top: 7px; height: 8px; border-radius: 999px; background: #e8ede2; overflow: hidden; }
.score-bar span { display: block; width: 0; height: 100%; background: var(--green); border-radius: inherit; transition: width .4s ease; }
.score-component small { display: block; margin-top: 5px; color: #8a9383; font-size: 10px; }

.methodology-strip { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: #fff; }
.methodology-strip article { padding: 22px; border-right: 1px solid var(--line); }
.methodology-strip article:last-child { border-right: 0; }
.methodology-strip strong { display: block; font-size: 21px; color: var(--green-dark); }
.methodology-strip span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; }

@media (max-width: 1020px) {
  .score-app-top { grid-template-columns: 1fr; }
  .live-score-card { min-height: 430px; }
  .live-metrics { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .score-breakdown { grid-template-columns: 1fr; }
  .methodology-strip { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .methodology-strip article { border-bottom: 1px solid var(--line); }
}

@media (max-width: 640px) {
  .score-app-shell { padding: 16px 0 64px; }
  .score-app { border-radius: 22px; }
  .live-score-card, .score-tool { padding: 28px 22px; }
  .live-score-ring { width: 202px; height: 202px; }
  .score-form { grid-template-columns: 1fr; }
  .score-form .btn { width: 100%; }
  .score-tool-actions .btn { flex: 1; }
  .live-results { padding: 24px 20px 28px; }
  .live-metrics { grid-template-columns: 1fr 1fr; }
  .live-metric { padding: 14px; }
  .live-metric strong { font-size: 16px; }
  .methodology-strip { grid-template-columns: 1fr; }
  .methodology-strip article { border-right: 0; }
}

@media (max-width: 520px) {
  .site-header .brand span { display: none; }
  .wallet-connect { padding: 9px 12px; font-size: 12px; }
}

/* =========================================================
   CrediFi Professional UI System v1.2
   ========================================================= */
:root {
  --green: #649701;
  --green-dark: #4f7800;
  --green-deep: #365300;
  --green-soft: #f1f6e8;
  --green-faint: #f7faF3;
  --ink: #12160f;
  --ink-2: #272d23;
  --muted: #6b7465;
  --muted-2: #8b9385;
  --line: #e6eae1;
  --line-strong: #d9ded2;
  --paper: #ffffff;
  --off: #f8faf6;
  --dark: #10130e;
  --dark-2: #161b13;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 64px rgba(27, 39, 17, .08);
  --shadow-sm: 0 10px 34px rgba(27, 39, 17, .06);
  --shadow-hover: 0 20px 48px rgba(27, 39, 17, .10);
  --max: 1220px;
}

html { background: #fff; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.58;
  letter-spacing: -.006em;
}

::selection { background: rgba(100,151,1,.18); color: var(--ink); }

.site-header {
  background: rgba(255,255,255,.91);
  border-bottom-color: rgba(230,234,225,.86);
  box-shadow: 0 1px 0 rgba(18,22,15,.02);
}
.nav { min-height: 72px; gap: 20px; }
.brand { gap: 10px; font-weight: 790; letter-spacing: -.028em; }
.brand img { width: 34px; height: 34px; }
.brand span { font-size: 18px; }
.nav-links { gap: 5px; }
.nav-links a {
  padding: 9px 11px;
  border-radius: 9px;
  color: #525a4d;
  font-size: 13px;
  font-weight: 650;
  transition: color .16s ease, background .16s ease;
}
.nav-links a:hover { color: var(--ink); background: #f5f7f2; }
.nav-links a[aria-current="page"] { color: var(--green-deep); background: var(--green-soft); }
.nav-actions { position: relative; gap: 8px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  border-color: var(--line);
  font-size: 13px;
}
.social-btn:hover { border-color: #cfd6c6; background: #f8faf6; }

.btn {
  min-height: 42px;
  border-radius: 11px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: -.005em;
  box-shadow: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 18px rgba(100,151,1,.16); }
.btn-primary:hover { background: #588703; box-shadow: 0 10px 22px rgba(100,151,1,.20); }
.btn-secondary { border-color: var(--line-strong); }
.btn-secondary:hover { background: #f8faf6; border-color: #cbd2c2; }
.btn-dark { background: var(--dark); }
.btn-dark:hover { background: #20261b; }
.btn-light { color: var(--ink); }
.btn-quiet {
  min-height: 40px;
  border: 1px solid transparent;
  color: #61695b;
  background: transparent;
  box-shadow: none;
}
.btn-quiet:hover { background: #f2f4ef; color: var(--ink); }

.wallet-connect {
  min-height: 38px;
  padding: 8px 13px;
  border-color: var(--line-strong);
  border-radius: 10px;
  font-weight: 680;
  background: #fff;
}
.wallet-connect.is-connected {
  position: relative;
  padding-left: 27px;
  border-color: #d4dfc5;
  background: #f8fbf4;
  color: #355100;
}
.wallet-connect.is-connected::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(100,151,1,.12);
}

.wallet-popover {
  position: fixed;
  z-index: 1200;
  width: 276px;
  padding: 13px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 58px rgba(21,31,13,.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.wallet-popover[hidden] { display: none; }
.wallet-popover-head { display: flex; align-items: center; gap: 10px; padding: 7px 6px 12px; }
.wallet-popover-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(100,151,1,.12); }
.wallet-popover-head small { display: block; color: var(--muted-2); font-size: 10px; text-transform: uppercase; letter-spacing: .075em; font-weight: 760; }
.wallet-popover-head strong { display: block; margin-top: 2px; font: 650 13px/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.wallet-popover-actions { display: grid; gap: 4px; padding-top: 8px; border-top: 1px solid var(--line); }
.wallet-popover-actions button {
  width: 100%;
  border: 0;
  border-radius: 9px;
  padding: 10px 11px;
  background: transparent;
  text-align: left;
  color: #3d4538;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}
.wallet-popover-actions button:hover { background: #f4f6f1; color: var(--ink); }
.wallet-popover-actions button:last-child { color: #8e3030; }
.wallet-popover-actions button:last-child:hover { background: #fff5f5; }

.eyebrow,
.product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--green);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(100,151,1,.10);
}
.product-kicker-dark { color: #b9cf90; }

.hero {
  padding: 104px 0 94px;
  background:
    radial-gradient(circle at 86% 18%, rgba(100,151,1,.085), transparent 27%),
    linear-gradient(180deg, #fbfcfa 0%, #fff 78%);
}
.hero::after { display: none; }
.hero-grid { grid-template-columns: 1.05fr .95fr; gap: 86px; }
.hero h1,
.page-hero h1,
.token-hero h1 {
  letter-spacing: -.052em;
  font-weight: 760;
}
.hero h1 { max-width: 720px; }
.hero p,
.page-hero p { color: #697164; }
.hero-actions { margin-top: 32px; }
.trust-row { gap: 18px 26px; margin-top: 29px; color: #737c6c; font-size: 12px; }
.trust-row span::before { content: "•"; color: var(--green); margin-right: 8px; }

.score-panel {
  border: 1px solid #20271c;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(100,151,1,.11), transparent 30%),
    #10130e;
  box-shadow: 0 30px 80px rgba(13,18,9,.18);
}
.score-panel::before { display: none; }
.home-score-panel { min-height: 0; padding: 31px; }
.home-score-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.home-network-chip {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  padding: 6px 8px;
  color: #aab4a3;
  background: rgba(255,255,255,.035);
  font-size: 10px;
  font-weight: 690;
}
.home-score-panel h2 { margin: 30px 0 10px; font-size: 34px; line-height: 1.08; letter-spacing: -.04em; font-weight: 730; }
.home-score-panel > p { margin: 0 0 23px; color: #aeb7a8; font-size: 14px; }
.home-score-form { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 9px; }
.home-score-form .wallet-input {
  background: rgba(255,255,255,.97);
  border-color: rgba(255,255,255,.12);
}
.home-score-connect-row { display: flex; align-items: center; gap: 12px; margin-top: 11px; }
.home-score-connect-row .btn { flex: 0 0 auto; }
.home-score-connect-row > span { color: #7f8978; font-size: 10px; line-height: 1.35; }
.home-score-meta { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0; margin-top: 27px; border-top: 1px solid rgba(255,255,255,.09); }
.home-score-meta div { padding: 16px 12px 0 0; }
.home-score-meta small { display: block; color: #7f8978; font-size: 9px; text-transform: uppercase; letter-spacing: .09em; font-weight: 760; }
.home-score-meta strong { display: block; margin-top: 4px; color: #f7f8f6; font-size: 13px; }

.section { padding: 96px 0; }
.section.off { background: #f8faf6; }
.section.dark { background: #11140f; }
.section-head { margin-bottom: 48px; }
.section-head h2,
.page-section h2 { font-weight: 735; }
.section-head p { color: #6c7466; }
.grid-2, .grid-3, .grid-4 { gap: 17px; }
.card {
  border-color: var(--line);
  border-radius: 17px;
  padding: 27px 26px;
  box-shadow: 0 1px 0 rgba(20,27,15,.015);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-2px); border-color: #d7ddcf; box-shadow: var(--shadow-sm); }
.card .icon {
  width: auto;
  height: auto;
  display: inline-block;
  border-radius: 0;
  background: transparent;
  color: var(--green-dark);
  font-size: 10px;
  letter-spacing: .09em;
}
.card h3 { margin-top: 14px; font-weight: 700; }
.card p { color: #70786b; }
.stat-band { border-radius: 18px; border-color: var(--line); box-shadow: 0 8px 26px rgba(25,34,17,.035); }
.stat { padding: 27px; }
.feature-row { gap: 56px; padding: 32px 0; }

.page-hero {
  padding: 82px 0 54px;
  background:
    radial-gradient(circle at 88% 0%, rgba(100,151,1,.07), transparent 24%),
    linear-gradient(180deg, #fbfcfa 0%, #fff 100%);
  border-bottom: 1px solid #f1f3ee;
}
.page-hero h1 { max-width: 950px; }
.page-hero .lede { color: #70786a; }

.cta {
  border-radius: 21px;
  background: #5d8d02;
  box-shadow: 0 26px 58px rgba(89,133,6,.13);
}
.footer { background: #10130e; padding-top: 68px; }
.footer-grid { gap: 50px; }
.footer h4 { color: #7f8978; }
.footer a { color: #d8ded3; font-size: 13px; }
.footer p { color: #8f9988; }
.footer-bottom { color: #7e8878; }

/* Professional live score workspace */
.score-app-shell { padding: 24px 0 90px; }
.score-workspace {
  display: grid;
  grid-template-columns: minmax(0,1.18fr) minmax(340px,.82fr);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 72px rgba(24,34,16,.075);
}
.score-command-panel { padding: 40px 42px 38px; background: #fff; }
.score-command-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.score-command-header h2 { margin: 10px 0 8px; font-size: 38px; line-height: 1.05; letter-spacing: -.045em; font-weight: 735; }
.score-command-header p { max-width: 610px; margin: 0; color: #6e7768; font-size: 14px; }
.network-status {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 184px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fafbf8;
}
.network-status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(100,151,1,.10); }
.network-status small { display: block; color: var(--muted-2); font-size: 8px; text-transform: uppercase; letter-spacing: .09em; font-weight: 760; }
.network-status strong { display: block; margin-top: 1px; font-size: 11px; font-weight: 690; }

.wallet-connection {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  margin: 30px 0 25px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafbf8;
  transition: background .18s ease, border-color .18s ease;
}
.wallet-connection.is-connected { border-color: #d5dfc8; background: #f7faf2; }
.wallet-connection-icon {
  width: 38px;
  height: 38px;
  border: 1px solid #dde3d6;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--green-dark);
  font-size: 15px;
}
.wallet-connection-copy { min-width: 0; }
.wallet-connection-copy small { display: block; color: var(--muted-2); font-size: 9px; font-weight: 760; text-transform: uppercase; letter-spacing: .08em; }
.wallet-connection-copy strong { display: block; margin-top: 1px; font-size: 13px; font-weight: 710; }
.wallet-connection-copy span { display: block; margin-top: 1px; color: #7a8373; font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wallet-connection-actions { display: flex; align-items: center; gap: 5px; }
.wallet-connection-actions .btn { min-height: 38px; padding: 8px 12px; font-size: 11px; }

.score-form-pro { display: block; }
.field-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 8px; }
.field-head label { color: #3f473a; font-size: 11px; font-weight: 700; }
.field-head span { color: #969d91; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.address-composer { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 9px; }
.wallet-input {
  height: 48px;
  border-color: var(--line-strong);
  border-radius: 11px;
  padding: 0 14px;
  background: #fff;
  font-size: 12px;
  box-shadow: 0 1px 0 rgba(18,22,15,.02) inset;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.wallet-input:hover { border-color: #cdd4c5; }
.wallet-input:focus { border-color: #9eb66d; outline: 0; box-shadow: 0 0 0 4px rgba(100,151,1,.10); }
.address-composer .analyze-btn { min-width: 136px; }
.score-secondary-actions { display: flex; gap: 16px; min-height: 32px; padding-top: 10px; }
.text-action {
  border: 0;
  padding: 0;
  background: transparent;
  color: #687160;
  font-size: 10px;
  font-weight: 680;
  text-decoration: none;
  cursor: pointer;
}
.text-action:hover { color: var(--green-dark); }
.tool-status {
  min-height: 24px;
  margin-top: 5px;
  color: #727b6b;
  font-size: 11px;
}
.tool-status[data-state="error"] { color: #9a3f3f; }
.tool-status[data-state="success"] { color: #4e720a; }
.tool-status[data-state="loading"]::after { width: 11px; height: 11px; border-width: 1.5px; }
.score-context-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.score-context-grid div { min-width: 0; padding-right: 16px; }
.score-context-grid div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.score-context-grid small { display: block; color: var(--muted-2); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; font-weight: 760; }
.score-context-grid strong { display: block; margin-top: 3px; font-size: 12px; font-weight: 690; }

.score-preview {
  min-height: 500px;
  padding: 32px;
  background:
    radial-gradient(circle at 95% 0%, rgba(100,151,1,.25), transparent 31%),
    linear-gradient(145deg, #12160f 0%, #0e110c 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
}
.score-preview-topline { display: flex; justify-content: space-between; gap: 16px; color: #99a292; font-size: 9px; font-weight: 760; text-transform: uppercase; letter-spacing: .09em; }
.score-preview-live { display: inline-flex; align-items: center; gap: 6px; }
.score-preview-live i { width: 6px; height: 6px; border-radius: 50%; background: #7baa20; box-shadow: 0 0 0 3px rgba(123,170,32,.14); }
.score-preview .live-score-ring {
  --score-pct: 0%;
  width: 230px;
  height: 230px;
  margin: 55px auto 38px;
  padding: 10px;
  background: conic-gradient(#739f20 var(--score-pct), rgba(255,255,255,.075) 0);
  box-shadow: 0 0 0 1px rgba(255,255,255,.03) inset;
}
.score-preview .live-score-ring-inner { background: #10130e; box-shadow: 0 0 0 1px rgba(255,255,255,.05) inset; }
.score-preview .live-score-ring strong { font-size: 66px; font-weight: 715; }
.score-preview .live-score-ring span { color: #9da797; font-size: 11px; }
.score-preview-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid rgba(255,255,255,.075); border-radius: 13px; overflow: hidden; background: rgba(255,255,255,.04); }
.score-preview-summary div { padding: 13px 14px; }
.score-preview-summary div + div { border-left: 1px solid rgba(255,255,255,.075); }
.score-preview-summary small { display: block; color: #7d8877; font-size: 8px; text-transform: uppercase; letter-spacing: .09em; font-weight: 760; }
.score-preview-summary strong { display: block; margin-top: 3px; font-size: 12px; font-weight: 680; overflow-wrap: anywhere; }
.score-preview-caption { margin: 13px 2px 0; color: #75806f; font-size: 9px; line-height: 1.45; }

.score-workspace .live-results {
  grid-column: 1 / -1;
  display: none;
  padding: 34px 40px 40px;
  border-top: 1px solid var(--line);
  background: #fbfcfa;
}
.score-workspace.has-score .live-results { display: block; }
.results-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 20px; }
.results-heading h3 { margin: 7px 0 0; font-size: 24px; letter-spacing: -.035em; }
.results-heading p { max-width: 440px; margin: 0; color: #798272; font-size: 11px; text-align: right; }
.live-metrics { gap: 9px; }
.live-metric {
  min-height: 92px;
  border-color: #e3e8dd;
  border-radius: 13px;
  padding: 15px;
  box-shadow: 0 1px 0 rgba(20,28,15,.02);
}
.live-metric small { color: #91998c; font-size: 8px; }
.live-metric strong { margin-top: 7px; font-size: 16px; font-weight: 690; }
.score-breakdown { margin-top: 34px; grid-template-columns: .72fr 1.28fr; gap: 48px; padding-top: 30px; border-top: 1px solid var(--line); }
.score-breakdown-copy h3 { margin: 7px 0 8px; }
.score-component { padding: 0 0 3px; }
.score-component-head { font-size: 11px; }
.score-component-head span { font-weight: 680; }
.score-component-head strong { color: #727a6b; font-size: 10px; }
.score-bar { height: 6px; background: #e8ece3; }
.score-bar span { background: linear-gradient(90deg, #547f00, #78a925); }
.score-component small { color: #959d90; font-size: 9px; }
.score-workspace.is-loading .score-preview { cursor: progress; }
.score-workspace.is-loading .live-score-ring { animation: score-pulse 1.15s ease-in-out infinite alternate; }
@keyframes score-pulse { to { opacity: .72; transform: scale(.99); } }

.methodology-strip { border-radius: 17px; border-color: var(--line); box-shadow: 0 8px 26px rgba(25,34,17,.03); }
.methodology-strip article { padding: 22px 21px; }
.methodology-strip strong { font-size: 20px; }
.methodology-strip span { color: #737c6d; font-size: 11px; }

@media (max-width: 1100px) {
  .nav-links { gap: 1px; }
  .nav-links a { padding-inline: 8px; font-size: 12px; }
  .score-workspace { grid-template-columns: 1fr; }
  .score-preview { min-height: 430px; }
  .score-preview .live-score-ring { margin: 42px auto 32px; }
}

@media (max-width: 1020px) {
  .nav-links { top: 72px; padding: 14px 18px 20px; background: rgba(255,255,255,.98); gap: 5px; }
  .nav-links a { width: 100%; padding: 10px 11px; }
  .hero-grid { gap: 52px; }
  .score-command-header { flex-direction: column; }
  .network-status { width: 100%; }
  .score-workspace .live-metrics { grid-template-columns: repeat(4,minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .hero { padding: 72px 0 68px; }
  .hero-grid { gap: 42px; }
  .hero h1 { font-size: clamp(46px, 12vw, 62px); }
  .home-score-form { grid-template-columns: 1fr; }
  .home-score-form .btn { width: 100%; }
  .home-score-connect-row { align-items: flex-start; flex-direction: column; }
  .score-command-panel { padding: 28px 23px 26px; }
  .score-command-header h2 { font-size: 32px; }
  .wallet-connection { grid-template-columns: auto 1fr; }
  .wallet-connection-actions { grid-column: 1 / -1; width: 100%; }
  .wallet-connection-actions .btn { flex: 1; }
  .address-composer { grid-template-columns: 1fr; }
  .address-composer .analyze-btn { width: 100%; }
  .score-preview { padding: 27px 23px; min-height: 420px; }
  .score-workspace .live-results { padding: 27px 22px 31px; }
  .results-heading { align-items: flex-start; flex-direction: column; gap: 9px; }
  .results-heading p { text-align: left; }
  .score-workspace .live-metrics { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .score-breakdown { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .site-header .brand span { font-size: 16px; }
  .nav { min-height: 66px; }
  .nav-links { top: 66px; }
  .nav-actions .wallet-connect { max-width: 126px; overflow: hidden; text-overflow: ellipsis; }
  .page-hero { padding: 64px 0 42px; }
  .hero h1, .page-hero h1 { font-size: 44px; }
  .section, .page-section { padding: 70px 0; }
  .home-score-meta { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .score-app-shell { padding: 16px 0 68px; }
  .score-workspace { border-radius: 18px; }
  .score-preview .live-score-ring { width: 205px; height: 205px; }
  .score-preview .live-score-ring strong { font-size: 56px; }
  .score-context-grid strong { font-size: 11px; }
}

@media (max-width: 520px) {
  .site-header .brand span { display: none; }
  .home-score-panel { padding: 24px 21px; }
  .home-score-head { align-items: flex-start; flex-direction: column; gap: 10px; }
  .home-score-meta { grid-template-columns: 1fr; }
  .home-score-meta div { padding: 12px 0; border-top: 1px solid rgba(255,255,255,.07); }
  .score-context-grid { grid-template-columns: 1fr; }
  .score-context-grid div { padding: 10px 0; }
  .score-context-grid div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .score-workspace .live-metrics { grid-template-columns: 1fr; }
}
