/* extracted from inline <style> block 1 in live/index.html */
:root {
        --bg: #0b0f14;
        --panel: rgba(255, 255, 255, 0.06);
        --panel2: rgba(255, 255, 255, 0.09);
        --text: rgba(255, 255, 255, 0.92);
        --muted: rgba(255, 255, 255, 0.65);
        --good: #30d158;
        --bad: #ff453a;
        --warn: #ffd60a;
        --ink: rgba(255, 255, 255, 0.08);
        --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
        --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      }
      html,
      body {
        height: 100%;
        margin: 0;
        background:
          linear-gradient(180deg, rgba(10, 17, 15, 0.96), rgba(11, 12, 18, 1) 52%, rgba(14, 9, 14, 1)),
          linear-gradient(135deg, rgba(48, 209, 88, 0.10), rgba(255, 214, 10, 0.05) 45%, rgba(255, 69, 58, 0.05));
        color: var(--text);
        font-family: var(--sans);
      }
      .wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 22px 18px 28px;
      }
      header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 18px;
      }
      h1 {
        margin: 0;
        font-size: 28px;
        letter-spacing: 0;
      }
      .title-link {
        color: inherit;
        text-decoration: none;
      }
      .title-link:hover,
      .title-link:focus-visible {
        text-decoration: underline;
        text-underline-offset: 3px;
      }
      .sub {
        margin-top: 6px;
        color: var(--muted);
        font-size: 13px;
      }
      .chips {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
      }
      .period-switch {
        display: inline-flex;
        gap: 6px;
        flex-wrap: wrap;
      }
      .period-btn {
        font-family: var(--mono);
        font-size: 12px;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--panel);
        border: 1px solid var(--ink);
        color: var(--text);
        cursor: pointer;
        appearance: none;
      }
      .period-btn:hover {
        border-color: rgba(255, 255, 255, 0.24);
      }
      .period-btn.active {
        border-color: rgba(48, 209, 88, 0.45);
        background: rgba(48, 209, 88, 0.12);
      }
      .chip {
        font-family: var(--mono);
        font-size: 12px;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--panel);
        border: 1px solid var(--ink);
      }
      .chip.good { border-color: rgba(48, 209, 88, 0.35); }
      .chip.bad { border-color: rgba(255, 69, 58, 0.35); }
      .chip.warn { border-color: rgba(255, 214, 10, 0.35); }
      .filter-bar {
        margin-top: 14px;
        margin-bottom: 10px;
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }
      .filter {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-family: var(--mono);
        color: var(--muted);
        background: var(--panel);
        border: 1px solid var(--ink);
        padding: 6px 10px;
        border-radius: 999px;
      }
      .grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-top: 16px;
      }
      .card {
        background: linear-gradient(180deg, var(--panel2), var(--panel));
        border: 1px solid var(--ink);
        border-radius: 8px;
        padding: 14px 14px 12px;
        min-height: 120px;
      }
      .card h2 {
        margin: 0 0 8px;
        font-size: 14px;
        font-family: var(--mono);
        letter-spacing: 0.01em;
        color: rgba(255, 255, 255, 0.86);
      }
      .kv {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 8px 10px;
        font-size: 13px;
      }
      .k {
        color: var(--muted);
        font-family: var(--mono);
        font-size: 12px;
      }
      .v {
        overflow-wrap: anywhere;
      }
      .badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-family: var(--mono);
        font-size: 12px;
        padding: 5px 9px;
        border-radius: 999px;
        border: 1px solid var(--ink);
        background: rgba(0, 0, 0, 0.18);
      }
      .dot {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: var(--warn);
        box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.12);
      }
      .dot.good { background: var(--good); box-shadow: 0 0 0 3px rgba(48, 209, 88, 0.12); }
      .dot.bad { background: var(--bad); box-shadow: 0 0 0 3px rgba(255, 69, 58, 0.12); }
      .feed {
        margin-top: 14px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
        border: 1px solid var(--ink);
        border-radius: 8px;
        overflow: hidden;
      }
      .feed-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 12px 14px;
        border-bottom: 1px solid var(--ink);
      }
      .feed-head h3 {
        margin: 0;
        font-size: 13px;
        font-family: var(--mono);
        color: rgba(255, 255, 255, 0.85);
      }
      .feed-list {
        max-height: 440px;
        overflow: auto;
      }
      .feed-state {
        padding: 12px 14px;
        color: var(--muted);
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .feed-state.warn { color: var(--warn); }
      .feed-state.bad { color: var(--bad); }
      .row {
        padding: 11px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .row:last-child { border-bottom: 0; }
      .row-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }
      .row-title {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        flex-wrap: wrap;
      }
      .pill {
        font-family: var(--mono);
        font-size: 11px;
        padding: 4px 8px;
        border-radius: 999px;
        border: 1px solid var(--ink);
        background: rgba(0, 0, 0, 0.18);
        color: rgba(255, 255, 255, 0.82);
      }
      .pill.good { border-color: rgba(48, 209, 88, 0.35); }
      .pill.bad { border-color: rgba(255, 69, 58, 0.35); }
      .pill.warn { border-color: rgba(255, 214, 10, 0.35); }
      .row-story {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.35;
        color: rgba(255, 255, 255, 0.88);
      }
      .row-meta {
        margin-top: 8px;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.35;
      }
      .mono { font-family: var(--mono); }
      .link {
        color: rgba(255, 255, 255, 0.86);
        text-decoration: underline;
        text-underline-offset: 2px;
      }
      .cta {
        margin-top: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 14px 16px;
        border-radius: 8px;
        border: 1px solid var(--ink);
        background: rgba(0, 0, 0, 0.20);
      }
      .cta strong { font-size: 13px; }
      .cta span { color: var(--muted); font-size: 12px; }
      @media (max-width: 880px) {
        header { align-items: flex-start; flex-direction: column; }
        .chips { justify-content: flex-start; }
        .grid { grid-template-columns: 1fr; }
        .kv { grid-template-columns: 100px 1fr; }
      }

      /* ── Hero Section ── */
      .hs-hero {
        max-width: 940px;
        margin: 0 auto;
        padding: 42px 24px 34px;
        text-align: center;
      }
      .hs-hero__brand {
        display: flex;
        align-items: center;
        gap: 14px;
        width: fit-content;
        margin: 0 auto 22px;
        animation: fadeInDown 0.6s ease both;
      }
      .hs-hero__brand-mark {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(48, 209, 88, 0.18), rgba(255, 214, 10, 0.14));
        border: 1px solid rgba(255, 255, 255, 0.10);
        box-shadow: 0 0 24px rgba(48, 209, 88, 0.12);
        color: rgba(255, 255, 255, 0.94);
      }
      .hs-hero__brand-mark svg {
        width: 28px;
        height: 28px;
        display: block;
      }
      .hs-hero__brand-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
      }
      .hs-hero__brand-name {
        font-size: clamp(24px, 4vw, 32px);
        font-weight: 800;
        line-height: 1;
        letter-spacing: 0;
        color: var(--text);
      }
      .hs-hero__brand-label {
        margin-top: 6px;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.46);
      }
      .hs-hero__badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: fit-content;
        padding: 6px 16px;
        border-radius: 100px;
        border: 1px solid rgba(48, 209, 88, 0.3);
        background: rgba(48, 209, 88, 0.12);
        font-family: var(--mono);
        font-size: 12px;
        font-weight: 600;
        color: var(--good);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin: 0 auto 28px;
        animation: fadeInDown 0.6s ease both;
      }
      .hs-hero__badge::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--good);
        box-shadow: 0 0 8px var(--good);
        animation: pulse-dot 2s ease infinite;
      }
      .hs-hero__headline {
        font-size: clamp(30px, 5vw, 46px);
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: 0;
        margin-bottom: 20px;
        animation: fadeInDown 0.6s ease 0.1s both;
      }
      .hs-hero__headline em {
        font-style: normal;
        color: var(--good);
      }
      .hs-hero__sub {
        font-size: 16px;
        line-height: 1.65;
        color: var(--muted);
        max-width: 680px;
        margin: 0 auto 28px;
        animation: fadeInDown 0.6s ease 0.2s both;
      }
      .hs-hero__proof {
        display: grid;
        grid-template-columns: repeat(4, minmax(130px, 1fr));
        gap: 12px;
        margin: 0 auto 16px;
        max-width: 760px;
        animation: fadeInDown 0.6s ease 0.3s both;
      }
      .hs-hero__stat {
        min-height: 86px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.045);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      .hs-hero__stat-value {
        font-family: var(--mono);
        font-size: 26px;
        font-weight: 700;
        color: var(--text);
        line-height: 1;
      }
      .hs-hero__stat-value--green { color: var(--good); }
      .hs-hero__stat-value--red { color: var(--bad); }
      .hs-hero__stat-value--amber { color: var(--warn); }
      .hs-hero__stat-label {
        font-size: 12px;
        color: rgba(255,255,255,0.45);
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-top: 6px;
      }
      .hs-hero__note {
        max-width: 640px;
        margin: 0 auto 32px;
        color: rgba(255,255,255,0.48);
        font-family: var(--mono);
        font-size: 11px;
        line-height: 1.6;
        text-transform: uppercase;
        letter-spacing: 0.04em;
      }
      .hs-hero__ctas {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        animation: fadeInDown 0.6s ease 0.4s both;
      }
      .hs-hero__cta-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 32px;
        border-radius: 8px;
        border: none;
        background: var(--good);
        color: #000;
        font-family: var(--sans);
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
        text-decoration: none;
        box-shadow: 0 0 24px rgba(48, 209, 88, 0.25);
      }
      .hs-hero__cta-primary:hover {
        background: #22a44e;
        box-shadow: 0 0 32px rgba(48, 209, 88, 0.4);
        transform: translateY(-1px);
      }
      .hs-hero__cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        border-radius: 8px;
        border: 1px solid var(--ink);
        background: var(--panel);
        color: var(--muted);
        font-family: var(--sans);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        text-decoration: none;
      }
      .hs-hero__cta-secondary:hover {
        background: var(--panel2);
        color: var(--text);
        border-color: rgba(255,255,255,0.15);
      }
      .hs-hero__divider {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 24px;
      }
      .hs-hero__divider-line {
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--ink), rgba(48,209,88,0.15), var(--ink), transparent);
      }
      .hs-hero__divider-label {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 8px;
        font-family: var(--mono);
        font-size: 11px;
        color: rgba(255,255,255,0.35);
        text-transform: uppercase;
        letter-spacing: 1.5px;
      }
      @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-12px); }
        to { opacity: 1; transform: translateY(0); }
      }
      @keyframes pulse-dot {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.4; }
      }
      @media (max-width: 600px) {
        .hs-hero { padding: 36px 20px 32px; }
        .hs-hero__brand {
          flex-direction: column;
          gap: 12px;
          margin-bottom: 18px;
        }
        .hs-hero__brand-text {
          align-items: center;
          text-align: center;
        }
        .hs-hero__proof {
          grid-template-columns: 1fr 1fr;
          gap: 10px;
        }
        .hs-hero__stat-value { font-size: 22px; }
        .hs-hero__stat { min-height: 82px; }
        .hs-hero__ctas { flex-direction: column; align-items: center; }
      }

/* extracted from inline style attributes */
.csp-style-4267bb3bd5be { background:linear-gradient(135deg,rgba(48,209,88,0.08),rgba(255,214,10,0.05)) !important; border:1px solid rgba(48,209,88,0.25) !important; padding:20px 22px !important; border-radius:16px !important; }
.csp-style-6b99de8b696f { display:none !important; }
.csp-style-7020ecf60943 { font-family:var(--mono) !important; font-size:12px !important; color:var(--muted) !important; text-decoration:underline !important; text-underline-offset:2px !important; white-space:nowrap !important; }
.csp-style-81ac03e02481 { color: rgba(255,255,255,0.65) !important; font-size: 12px !important; }
.csp-style-9390c3366dc4 { color:var(--muted) !important; font-size:13px !important; }
.csp-style-9eb4276bed1e { font-size:15px !important; display:block !important; margin-bottom:6px !important; }
.csp-style-a25d52b5cf4e { font-size:11px !important; color:var(--muted) !important; margin:-4px 0 8px !important; }
.csp-style-db1e79441ebb { display:flex !important; gap:12px !important; align-items:center !important; flex-shrink:0 !important; }
.csp-style-f045bbed5042 { color:var(--text) !important; }
.csp-style-fd84edb9a648 { font-family:var(--mono) !important; font-size:13px !important; padding:10px 22px !important; border-radius:8px !important; background:var(--good) !important; color:#000 !important; text-decoration:none !important; font-weight:700 !important; white-space:nowrap !important; }
