/* Extracted from landing.html inline <style> block.
   CSP M2 enforce: externalized 2026-05-21. */

:root {
      --primary: #0F6E56;
      --primary-light: #1D9E75;
      --primary-bg: #E1F5EE;
      --success: #639922;
      --warning: #BA7517;
      --bg: #F6F8FA;
      --surface: #FFFFFF;
      --text: #1A1D21;
      --text-secondary: #5A6169;
      --text-muted: #5A6169; /* WCAG AA fix: was #8B929A (2.95:1), now 5.89:1 */
      --border: #E2E6EA;
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-full: 9999px;
      --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    }

    @media (prefers-color-scheme: dark) {
      :root:not([data-theme="light"]) {
        --primary: #1D9E75;
        --primary-light: #2AB88A;
        --primary-bg: #0D2E24;
        --bg: #111318;
        --surface: #1A1D23;
        --text: #E8EAED;
        --text-secondary: #9AA0A8;
        --text-muted: #9AA0A8; /* WCAG AA fix: was #6B727A (3.82:1) */
        --border: #2A2E35;
      }
    }
    /* Explicit data-theme overrides — wins over @media (theme-bootstrap.js
       sets data-theme based on user pref in localStorage, default 'dark'). */
    [data-theme="dark"] {
      --primary: #1D9E75;
      --primary-light: #2AB88A;
      --primary-bg: #0D2E24;
      --bg: #111318;
      --surface: #1A1D23;
      --text: #E8EAED;
      --text-secondary: #9AA0A8;
      --text-muted: #9AA0A8;
      --border: #2A2E35;
    }
    [data-theme="light"] {
      --primary: #0F6E56;
      --primary-light: #1D9E75;
      --primary-bg: #E1F5EE;
      --bg: #F6F8FA;
      --surface: #FFFFFF;
      --text: #1A1D21;
      --text-secondary: #5A6169;
      --text-muted: #5A6169;
      --border: #E2E6EA;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: 'DM Sans', -apple-system, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    .container { max-width: 960px; margin: 0 auto; padding: 0 20px; }

    /* === SKIP LINK (a11y) === */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      background: var(--primary);
      color: #FFFFFF;
      padding: 12px 20px;
      text-decoration: none;
      font-weight: 600;
      z-index: 100;
      border-radius: 0 0 8px 0;
    }
    .skip-link:focus { left: 0; outline: 2px solid #FFFFFF; outline-offset: -4px; }

    /* === NAV === */
    .nav {
      padding: 16px 0;
      background: rgba(246, 248, 250, 0.9);
      backdrop-filter: blur(16px);
      position: sticky;
      top: 0;
      z-index: 10;
      border-bottom: 0.5px solid var(--border);
    }
    [data-theme="dark"] .nav { background: rgba(17, 19, 24, 0.9); }
    @media (prefers-color-scheme: dark) {
      :root:not([data-theme="light"]) .nav { background: rgba(17, 19, 24, 0.9); }
    }
    .nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 18px;
      color: var(--text);
      text-decoration: none;
    }
    .nav-links { display: flex; gap: 24px; align-items: center; }
    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      white-space: nowrap;
    }
    .nav-links a:hover { color: var(--primary); }
    /* On mobile show compact links + CTA. Anchor links remain useful so user
       can jump to Cennik/FAQ from any scroll position. */
    @media (max-width: 640px) {
      .nav-links { gap: 12px; }
      .nav-links a:not(.nav-cta) { font-size: 12px; }
      .nav-links .nav-cta { padding: 6px 12px; font-size: 12px; }
      /* Bug fix 2026-05-17: 6 linków + brand nie mieściło się na <360-414px
         Samsung phones → cała strona dostawała horizontal overflow, content
         przesuwał się w prawo, lewa krawędź obcięta. Hide secondary links —
         Cennik + CTA wystarczają na mobile, /vca-basis i /vca-vol dostępne
         z FAQ + footer. */
      .nav-links a[data-hide-mobile] { display: none; }
    }

    /* === HERO === */
    .hero {
      padding: 80px 0 60px;
      text-align: center;
    }
    .badge-launch {
      display: inline-block;
      background: var(--primary-bg);
      color: var(--primary);
      font-size: 12px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: var(--radius-full);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .hero h1 {
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .hero h1 .highlight {
      background: linear-gradient(135deg, var(--primary-light), var(--primary));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero-subtitle {
      font-size: clamp(16px, 2vw, 20px);
      color: var(--text-secondary);
      max-width: 560px;
      margin: 0 auto 36px;
    }
    .hero-cta { display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .hero-cta-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn {
      padding: 14px 28px;
      border-radius: var(--radius-md);
      font-weight: 600;
      font-size: 16px;
      font-family: inherit;
      cursor: pointer;
      border: none;
      transition: all 150ms ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }
    .btn-primary {
      background: var(--primary);
      color: white;
      box-shadow: 0 4px 12px rgba(15, 110, 86, 0.25);
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(15, 110, 86, 0.35);
    }
    .btn-outline {
      background: transparent;
      border: 1.5px solid var(--border);
      color: var(--text);
    }
    .btn-outline:hover { border-color: var(--primary); color: var(--primary); }

    .hero-meta {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 12px;
    }

    /* === SOCIAL PROOF / STATS === */
    .stats {
      padding: 40px 0;
      background: var(--surface);
      border-top: 0.5px solid var(--border);
      border-bottom: 0.5px solid var(--border);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: center;
    }
    @media (max-width: 640px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .stat-value {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }
    .stat-label {
      font-size: 12px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 6px;
    }

    /* === FEATURES === */
    .section {
      padding: 80px 0;
    }
    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 12px;
    }
    .section-header h2 {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 12px;
    }
    .section-header p {
      color: var(--text-secondary);
      font-size: 17px;
      max-width: 560px;
      margin: 0 auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    /* === Sticky pricing ribbon (mobile, P0-5 hero redesign 2026-05-01) === */
    .sticky-price-ribbon {
      display: none; /* desktop hidden — visible <=768px */
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--primary);
      color: white;
      padding: 12px 16px;
      font-size: 16px; /* M5 (2026-05-02): bumped 14→16 — czytelność na iPhone 12 (390px) */
      text-align: center;
      box-shadow: 0 1px 4px rgba(0,0,0,0.1);
      gap: 8px;
      align-items: center;
      justify-content: center;
    }
    .sticky-price-ribbon strong { font-size: 17px; }
    .sticky-price-ribbon a {
      color: white;
      text-decoration: underline;
      font-weight: 600;
      margin-left: 8px;
    }
    @media (max-width: 768px) {
      .sticky-price-ribbon { display: flex; }
    }

    /* === Personas section ("Dla kogo to") === */
    .section-tight { padding: 56px 0; }
    .section-alt { background: var(--surface-alt, #F0F2F5); }
    [data-theme="dark"] .section-alt { background: rgba(255,255,255,0.02); }

    .personas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .persona-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      transition: transform 0.15s ease, border-color 0.15s ease;
    }
    .persona-card:hover {
      transform: translateY(-2px);
      border-color: var(--primary);
    }
    .persona-icon {
      font-size: 32px;
      margin-bottom: 12px;
      line-height: 1;
    }
    .persona-name {
      font-size: 20px;
      font-weight: 700;
      margin: 0 0 4px;
    }
    .persona-role {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0 0 14px;
    }
    .persona-quote {
      font-size: 15px;
      line-height: 1.5;
      color: var(--text-secondary);
      margin: 0;
      font-style: italic;
      padding-left: 12px;
      border-left: 3px solid var(--primary);
    }

    /* === Value-prop section (zastąpiło personas Janek/Marek/Paweł) === */
    .value-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      transition: transform 0.15s ease, border-color 0.15s ease;
    }
    .value-card:hover {
      transform: translateY(-2px);
      border-color: var(--primary);
    }
    .value-icon {
      font-size: 36px;
      margin-bottom: 12px;
      line-height: 1;
    }
    .value-title {
      font-size: 19px;
      font-weight: 700;
      margin: 0 0 8px;
      color: var(--text);
    }
    .value-desc {
      font-size: 15px;
      line-height: 1.55;
      color: var(--text-secondary);
      margin: 0;
    }
    .value-strip {
      margin: 28px 0 0;
      padding: 14px 18px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      font-size: 14px;
      line-height: 1.5;
      color: var(--text-secondary);
      text-align: center;
    }
    .value-strip strong { color: var(--text); }
    .value-strip-divider {
      display: inline-block;
      margin: 0 10px;
      opacity: 0.4;
    }
    @media (max-width: 600px) {
      .value-strip { font-size: 13px; }
      .value-strip-divider { display: block; margin: 6px 0; }
    }

    /* === Mikro-testimoniale (z disclaimer "imiona zmienione") === */
    .micro-testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }
    .micro-testimonial {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      margin: 0;
    }
    .micro-testimonial p {
      font-size: 16px;
      line-height: 1.55;
      color: var(--text);
      margin: 0 0 14px;
      font-style: italic;
    }
    .micro-testimonial p::before { content: '"'; }
    .micro-testimonial p::after { content: '"'; }
    .micro-testimonial cite {
      font-style: normal;
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 600;
    }
    .micro-testimonials-disclaimer {
      text-align: center;
      margin-top: 24px;
      color: var(--text-muted);
    }
    .testimonial-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }
    .testimonial-card blockquote {
      margin: 0;
      font-size: 15px;
      line-height: 1.55;
      color: var(--text);
      font-style: italic;
      position: relative;
      padding-left: 12px;
      border-left: 3px solid var(--primary);
    }
    .testimonial-card figcaption {
      display: flex;
      flex-direction: column;
      gap: 2px;
      font-size: 13px;
    }
    .testimonial-card figcaption strong {
      color: var(--text);
      font-weight: 700;
    }
    .testimonial-card figcaption span {
      color: var(--text-secondary);
    }
    .feature-card {
      background: var(--surface);
      padding: 28px 24px;
      border-radius: var(--radius-lg);
      border: 0.5px solid var(--border);
      transition: all 200ms ease;
    }
    .feature-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .feature-icon {
      font-size: 32px;
      margin-bottom: 16px;
    }
    .feature-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .feature-card p {
      color: var(--text-secondary);
      font-size: 14px;
      line-height: 1.6;
    }

    /* === PRICING === */
    .pricing-bg {
      background: var(--surface);
      border-top: 0.5px solid var(--border);
      border-bottom: 0.5px solid var(--border);
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto;
    }
    @media (max-width: 1024px) {
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 720px) {
      .pricing-grid { grid-template-columns: 1fr; }
    }
    .price-card {
      background: var(--bg);
      border: 2px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      text-align: center;
      position: relative;
      transition: all 200ms ease;
      /* Clickable card (2026-05-14): cards są <a>, redirect do /app?paywall=1&tier=X&plan=Y.
         Przed fix: 4/17 sesji w Clarity (23.5%) miały dead clicks na pricing — userzy
         klikali kartę bo hover state mówił "interactive", ale była statyczna <div>. */
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      display: block;
    }
    .price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .price-card:focus-visible {
      outline: 3px solid var(--primary);
      outline-offset: 2px;
    }
    .price-card.featured {
      border-color: var(--primary);
      background: var(--surface);
      transform: scale(1.05);
    }
    @media (max-width: 720px) {
      .price-card.featured { transform: none; }
    }
    .price-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      color: white;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .price-name {
      font-size: 14px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .price-value {
      font-size: 42px;
      font-weight: 800;
      color: var(--text);
      line-height: 1;
      letter-spacing: -1px;
    }
    .price-value .currency { font-size: 22px; vertical-align: top; margin-right: 2px; }
    .price-per-day {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 6px;
    }
    .price-for-whom {
      font-size: 13px;
      color: var(--text-secondary);
      margin: 20px 0;
      min-height: 40px;
    }
    .price-features {
      list-style: none;
      padding: 0;
      text-align: left;
      font-size: 13px;
      color: var(--text-secondary);
    }
    .price-features li {
      padding: 6px 0;
      padding-left: 22px;
      position: relative;
    }
    .price-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--success);
      font-weight: 700;
    }

    .pricing-note {
      text-align: center;
      margin-top: 40px;
      padding: 20px;
      background: var(--primary-bg);
      border-radius: var(--radius-md);
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
      font-size: 14px;
      color: var(--primary);
      font-weight: 500;
    }

    /* === FAQ === */
    .faq-grid {
      max-width: 720px;
      margin: 0 auto;
    }
    details.faq-item {
      background: var(--surface);
      border: 0.5px solid var(--border);
      border-radius: var(--radius-md);
      padding: 0;
      margin-bottom: 12px;
      overflow: hidden;
    }
    details.faq-item summary {
      padding: 18px 22px;
      cursor: pointer;
      font-weight: 600;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 15px;
    }
    details.faq-item summary::-webkit-details-marker { display: none; }
    details.faq-item summary::after {
      content: '+';
      font-size: 22px;
      font-weight: 400;
      color: var(--text-muted);
      transition: transform 200ms ease;
    }
    details.faq-item[open] summary::after {
      transform: rotate(45deg);
    }
    details.faq-item .faq-answer {
      padding: 0 22px 18px;
      color: var(--text-secondary);
      font-size: 14px;
      line-height: 1.7;
    }

    /* === CTA HERO SECTION (legacy class .waitlist — name historical) === */
    .waitlist {
      background: linear-gradient(135deg, var(--primary) 0%, #084437 100%);
      color: white;
      padding: 80px 0;
      text-align: center;
    }
    .waitlist h2 {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 16px;
    }
    .waitlist p {
      font-size: 17px;
      opacity: 0.9;
      margin-bottom: 32px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }
    .waitlist-perk {
      margin-top: 20px;
      font-size: 13px;
      opacity: 0.85;
    }

    /* === FOOTER === */
    footer {
      background: var(--surface);
      padding: 40px 0;
      text-align: center;
      color: var(--text-muted);
      font-size: 13px;
      border-top: 0.5px solid var(--border);
    }
    footer a { color: var(--text-secondary); text-decoration: none; margin: 0 8px; }
    footer a:hover { color: var(--primary); }

    /* Animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp 600ms ease both; }
    .fade-up-2 { animation: fadeUp 600ms ease 150ms both; }
    .fade-up-3 { animation: fadeUp 600ms ease 300ms both; }

    /* === Pricing tier tabs (Phase H, QW2 cleanup z inline styles) === */
    /* P1-10: VOL/Complete tabs collapsed domyślnie (Hick's Law) */
    .pricing-tier-tabs--collapsed .pricing-tier-tab--leadership { display: none; }
    .pricing-tier-toggle {
      display: block;
      margin: 12px auto 24px;
      padding: 10px 20px;
      background: transparent;
      border: 1px dashed var(--border);
      border-radius: 999px;
      color: var(--text-secondary);
      font-size: 14px;
      cursor: pointer;
      transition: border-color 0.15s ease, color 0.15s ease;
    }
    .pricing-tier-toggle:hover {
      border-color: var(--primary);
      color: var(--primary);
    }
    .pricing-tier-tabs:not(.pricing-tier-tabs--collapsed) + .pricing-tier-toggle { display: none; }

    .pricing-tier-tabs {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin: 0 auto 24px;
      max-width: 560px;
      background: rgba(255,255,255,0.4);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 6px;
    }
    .pricing-tier-tab {
      flex: 1;
      background: transparent;
      color: var(--text);
      border: none;
      border-radius: 8px;
      padding: 12px 8px;
      cursor: pointer;
      font-family: inherit;
      font-weight: 700;
      font-size: 14px;
      display: flex;
      flex-direction: column;
      gap: 2px;
      transition: background 150ms ease, color 150ms ease;
    }
    .pricing-tier-tab > span:last-child {
      font-size: 11px;
      font-weight: 500;
      opacity: 0.65;
    }
    .pricing-tier-tab.active {
      background: var(--primary);
      color: #fff;
    }
    .pricing-tier-tab.active > span:last-child { opacity: 0.85; }


/* === Auto-generated from inline style attrs (CSP M2 strict path-based 2026-05-22) ===
   43 unique inline styles → CSS classes. Deterministic .ls-<sha1-8> naming. */
.ls-0c51beca { overflow-x:auto;margin:24px 0 36px;background:var(--color-surface,#fff);border:1px solid var(--color-border,#E2E6EA);border-radius:14px;padding:18px;box-shadow:0 2px 8px rgba(0,0,0,0.04); }
.ls-c2c16db9 { margin:0 0 14px;font-size:18px;font-weight:700;text-align:center; }
.ls-a3506a27 { width:100%;border-collapse:collapse;font-size:14px;min-width:560px; }
.ls-23576292 { background:linear-gradient(135deg,#0F6E56,#0A5A47);color:#fff; }
.ls-dab8528d { padding:10px;text-align:left;border-radius:8px 0 0 8px; }
.ls-a2a91ff0 { padding:10px;text-align:center;background:rgba(255,255,255,0.08); }
.ls-83fccaf8 { opacity:0.85;font-weight:400; }
.ls-b7d99da7 { padding:10px;text-align:center;font-weight:500;opacity:0.92; }
.ls-2511ceb8 { opacity:0.7;font-weight:400; }
.ls-5d267851 { padding:10px;text-align:center;font-weight:500;opacity:0.92;border-radius:0 8px 8px 0; }
.ls-ff0740df { border-bottom:1px solid var(--color-border,#E2E6EA); }
.ls-e3195acf { padding:10px;font-weight:600; }
.ls-6cc98efd { padding:10px;text-align:center;font-weight:700;color:#0F6E56; }
.ls-3b887c8e { padding:10px;text-align:center;color:#999; }
.ls-7a72b768 { padding:10px;text-align:center;color:#0F6E56;font-size:20px; }
.ls-f6454bd0 { padding:10px;text-align:center;color:#0F6E56;font-weight:600; }
.ls-1669af36 { margin:12px 0 0;text-align:center;font-size:13px;color:var(--color-text-secondary,#5A6169); }
.ls-c8be1ccb { display:none; }
.ls-8e439432 { text-decoration: none; color: inherit; cursor: pointer; }
.ls-225bbdaa { background:#BA7517; }
.ls-b5bbf90a { grid-column:1/-1;max-width:420px;margin:0 auto; }
.ls-c0b1c88e { text-align:center;margin-bottom:16px; }
.ls-2b6979ee { display:none;margin:0 0 6px;font-size:14px;color:var(--primary);font-weight:600; }
.ls-f77643f1 { display:none;margin:0;font-size:13px;color:var(--accent); }
.ls-7008c7d3 { text-align:center;margin:8px 0 28px; }
.ls-06cb2932 { display:inline-block;padding:14px 28px;border:1px solid var(--primary);border-radius:10px;color:var(--primary);font-weight:700;text-decoration:none;font-size:15px; }
.ls-53f62649 { margin-top:8px;font-size:13px;color:var(--muted); }
.ls-da711fe8 { display:flex;flex-wrap:wrap;gap:10px;justify-content:center;align-items:center;margin-bottom:14px; }
.ls-7c48ec18 { background:#fff;border:1px solid #e0e3e7;border-radius:6px;padding:6px 10px;font-weight:800;font-size:13px;color:#cc0066;letter-spacing:-0.3px; }
.ls-cfe33b3a { background:#fff;border:1px solid #e0e3e7;border-radius:6px;padding:6px 10px;font-weight:800;font-size:13px;color:#005498; }
.ls-317db4a9 { color:#fdc300; }
.ls-bff09559 { background:#1a1f71;color:#f7b600;border-radius:6px;padding:6px 10px;font-weight:800;font-size:13px;font-style:italic;letter-spacing:1px; }
.ls-a9d39ccb { background:#fff;border:1px solid #e0e3e7;border-radius:6px;padding:6px 10px;font-weight:800;font-size:13px;display:inline-flex;align-items:center;gap:0; }
.ls-abda8a4f { width:14px;height:14px;border-radius:50%;background:#eb001b;display:inline-block;margin-right:-4px;opacity:0.9; }
.ls-2b988458 { width:14px;height:14px;border-radius:50%;background:#f79e1b;display:inline-block;opacity:0.9; }
.ls-bce7cba3 { background:#000;color:#fff;border-radius:6px;padding:6px 10px;font-weight:800;font-size:13px;letter-spacing:0.5px; }
.ls-b8dadd14 { background:#000;color:#fff;border-radius:6px;padding:6px 10px;font-weight:600;font-size:13px;letter-spacing:-0.2px; }
.ls-ec5ee464 { display:inline-block;margin-top:8px;font-size:13px;opacity:0.8; }
.ls-58c4bd1f { color:var(--primary);font-weight:600; }
.ls-9c65de44 { display:flex;gap:12px;flex-wrap:wrap;justify-content:center;margin-top:8px; }
.ls-7f42824d { background:white;color:var(--primary);padding:14px 32px;border-radius:var(--radius-md);font-weight:700;font-size:16px;text-decoration:none; }
.ls-114af3e5 { margin-top: 8px; font-size: 12px; }
.ls-0cf3dc2a { margin-top: 8px; font-size: 11px; }
