/* ─── Reset & Variables ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --trello:   #0052cc;
      --trello-d: #003d99;
      --discord:  #5865F2;
      --discord-d:#4752c4;
      --text:     #172b4d;
      --muted:    #5e6c84;
      --bg:       #f4f5f7;
      --card-bg:  #ffffff;
      --border:   #dfe1e6;
      --green:    #36b37e;
      --radius:   10px;
      --shadow:   0 2px 12px rgba(0,0,0,.08);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.65;
      color: var(--text);
      background: #fff;
    }

    a { color: var(--trello); text-decoration: none; }
    a:hover { text-decoration: underline; }

    img { display: block; max-width: 100%; height: auto; }

    /* ─── Nav ─── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
      padding: 0 24px;
    }
    .nav-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 58px;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 17px;
      color: var(--text);
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .nav-brand img { width: 30px; height: 30px; border-radius: 6px; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
      font-size: 14px;
    }
    .nav-links a { color: var(--muted); font-weight: 500; white-space: nowrap; }
    .nav-links a:hover { color: var(--text); text-decoration: none; }
    .btn-nav {
      background: var(--trello);
      color: #fff !important;
      padding: 8px 18px;
      border-radius: 6px;
      font-weight: 600;
    }
    .btn-nav:hover { background: var(--trello-d); }
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      flex-shrink: 0;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform .2s, opacity .2s;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ─── Hero ─── */
    .hero {
      background: linear-gradient(135deg, #0a1628 0%, #1e2a5e 50%, #2d1b6e 100%);
      color: #fff;
      padding: 88px 24px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    /* decorative blobs */
    .hero::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(88,101,242,.25) 0%, transparent 70%);
      top: -200px; right: -150px;
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(0,82,204,.25) 0%, transparent 70%);
      bottom: -200px; left: -100px;
      pointer-events: none;
    }
    .hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
    .hero h1 {
      font-size: clamp(32px, 5.5vw, 56px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -.02em;
      margin-bottom: 20px;
    }
    .hero h1 .highlight {
      background: linear-gradient(90deg, #818cf8, #c4b5fd);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: clamp(16px, 2.2vw, 20px);
      color: rgba(255,255,255,.78);
      max-width: 580px;
      margin: 0 auto 36px;
    }
    .hero-cta {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--trello);
      color: #fff;
      font-weight: 700;
      font-size: 16px;
      padding: 14px 28px;
      border-radius: 8px;
      transition: background .2s, transform .15s;
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover { background: var(--trello-d); transform: translateY(-1px); text-decoration: none; }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.3);
      color: #fff;
      font-weight: 600;
      font-size: 16px;
      padding: 14px 28px;
      border-radius: 8px;
      transition: background .2s;
    }
    .btn-secondary:hover { background: rgba(255,255,255,.2); text-decoration: none; }

    /* ─── Hero Visual Placeholder ─── */
    .hero-visual {
      margin: 52px auto 0;
      max-width: 1060px;
    }

    /* ─── PLACEHOLDER helper ─── */
    /*
      All .placeholder elements are stand-ins for real screenshots/GIFs.
      See the IMAGE GUIDE at the bottom of this file for shot-by-shot instructions.
    */
    .placeholder {
      background: linear-gradient(135deg, #1e2845, #2d2060);
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: rgba(255,255,255,.5);
      font-size: 13px;
      font-style: italic;
      text-align: center;
      padding: 20px;
    }
    .placeholder svg { opacity: .4; }
    .placeholder-label {
      font-size: 11px;
      font-style: normal;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      background: rgba(255,255,255,.08);
      padding: 4px 10px;
      border-radius: 4px;
    }
    /* light variant (on white background) */
    .placeholder.light {
      background: var(--bg);
      border: 2px dashed var(--border);
      color: var(--muted);
    }
    .placeholder.light svg { opacity: .3; filter: none; }

    .hero-placeholder {
      height: 380px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.12);
      background: linear-gradient(135deg, #1a2340, #231a50);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.4);
      font-size: 14px;
      gap: 12px;
    }

    /* ─── Sections ─── */
    section { padding: 80px 24px; }
    .container { max-width: 1080px; margin: 0 auto; }

    .section-tag {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--trello);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 800;
      letter-spacing: -.02em;
      line-height: 1.2;
      margin-bottom: 16px;
      color: var(--text);
    }
    .section-sub {
      font-size: 17px;
      color: var(--muted);
      max-width: 540px;
      line-height: 1.6;
    }
    .section-header { margin-bottom: 52px; }
    .section-header.center { text-align: center; }
    .section-header.center .section-sub { margin: 0 auto; }

    /* ─── Pain Section ─── */
    .pain { background: var(--bg); }
    .pain-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      margin-top: 40px;
    }
    .pain-card {
      flex: 0 1 320px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
    }
    .pain-icon { font-size: 28px; }
    .pain-card h3 { font-size: 16px; font-weight: 700; color: var(--text); }
    .pain-card p { font-size: 14px; color: var(--muted); }

    /* ─── How it Works ─── */
    .how-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
      counter-reset: steps;
    }
    .step {
      counter-increment: steps;
      flex: 0 1 310px;
      display: flex;
      flex-direction: column;
    }
    .step-number {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--trello);
      color: #fff;
      font-weight: 800;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      flex-shrink: 0;
    }
    .step-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 12px;
    }
    .step-head .step-number { margin-bottom: 0; }
    .step-head h3 { margin-bottom: 0; }
    .step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
    .step p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
    .step-img {
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      margin-top: auto;
    }
    .step-img img {
      height: 260px !important;
      width: auto !important;
      max-width: none !important;
      display: block;
      cursor: pointer;
    }
    .step-img .placeholder.light { height: 180px; }

    /* ─── Lightbox ─── */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0,0,0,.85);
      align-items: center;
      justify-content: center;
      padding: 16px;
      cursor: pointer;
    }
    #lightbox.active { display: flex; }
    #lightbox img,
    #lightbox video {
      max-width: 100% !important;
      max-height: 90vh !important;
      width: auto !important;
      height: auto !important;
      border-radius: 8px;
      box-shadow: 0 8px 40px rgba(0,0,0,.6);
      cursor: default;
      touch-action: manipulation;
    }
    img.lightbox-trigger { cursor: pointer; }

    /* ─── Features ─── */
    .features { background: var(--bg); }
    .features-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
    }
    .feature-card {
      flex: 0 1 330px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      box-shadow: var(--shadow);
      transition: box-shadow .2s, transform .2s;
    }
    .feature-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.12); transform: translateY(-2px); }
    /* Shared icon-beside-headline row used in pain, trust, and feature cards */
    .card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }
    .card-header h3, .card-header h4 { margin-bottom: 0; }

    .feature-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }
    .feature-header h3 { margin-bottom: 0; }
    .feature-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }
    .feature-icon.blue   { background: #e3eeff; }
    .feature-icon.purple { background: #ede9fe; }
    .feature-icon.green  { background: #dcfce7; }
    .feature-icon.orange { background: #fff3e0; }
    .feature-icon.red    { background: #fee2e2; }
    .feature-icon.teal   { background: #ccfbf1; }
    .feature-card h3 { font-size: 16px; font-weight: 700; }
    .feature-card p { font-size: 14px; color: var(--muted); }

    /* ─── Demo Section ─── */
    .demo { background: linear-gradient(135deg, #0a1628 0%, #1e2a5e 100%); color: #fff; }
    .demo .section-title { color: #fff; }
    .demo .section-sub { color: rgba(255,255,255,.65); }
    .demo-placeholder {
      margin-top: 48px;
      height: 480px;
      border-radius: 14px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.35);
      font-size: 14px;
      gap: 14px;
    }
    .demo-placeholder .play-btn {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: rgba(255,255,255,.1);
      border: 2px solid rgba(255,255,255,.2);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background .2s;
    }
    .demo-placeholder .play-btn:hover { background: rgba(255,255,255,.2); }

    /* ─── Command Reference ─── */
    .commands-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .command-card {
      background: #1e2845;
      color: #fff;
      border-radius: var(--radius);
      padding: 20px 24px;
      font-family: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
    }
    .command-name {
      color: #818cf8;
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 6px;
    }
    .command-syntax {
      color: rgba(255,255,255,.55);
      font-size: 12px;
      margin-bottom: 10px;
    }
    .command-desc {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      font-size: 13px;
      color: rgba(255,255,255,.7);
    }

    /* ─── Pricing ─── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      align-items: start;
    }
    .price-card {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      background: var(--card-bg);
      box-shadow: var(--shadow);
      position: relative;
    }
    .price-card.featured {
      border-color: var(--trello);
      box-shadow: 0 0 0 3px rgba(0,82,204,.12), var(--shadow);
    }
    .price-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--trello);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 12px;
    }
    .price-tier { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
    .price-amount { font-size: 40px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; }
    .price-amount sup { font-size: 20px; vertical-align: super; }
    .price-per { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
    .price-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
    .price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
    .price-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text);
    }
    .price-features .check { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
    .btn-plan {
      display: block;
      width: 100%;
      text-align: center;
      padding: 12px;
      border-radius: 7px;
      font-weight: 700;
      font-size: 15px;
      border: 2px solid var(--trello);
      background: transparent;
      color: var(--trello);
      cursor: pointer;
      transition: background .2s, color .2s;
    }
    .btn-plan:hover { background: var(--trello); color: #fff; text-decoration: none; }
    .btn-plan.primary { background: var(--trello); color: #fff; }
    .btn-plan.primary:hover { background: var(--trello-d); }

    /* ─── Trust / GDPR ─── */
    .trust { background: var(--bg); }
    .trust-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      margin-top: 40px;
    }
    .trust-item {
      flex: 0 1 240px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 24px;
      background: var(--card-bg);
      border-radius: var(--radius);
      border: 1px solid var(--border);
    }
    .trust-icon { font-size: 32px; }
    .trust-item h4 { font-size: 14px; font-weight: 700; }
    .trust-item p { font-size: 13px; color: var(--muted); }

    /* ─── Final CTA ─── */
    .cta-section {
      /*background: linear-gradient(135deg, var(--trello) 0%, #003d99 100%);*/
      background: linear-gradient(135deg, #0a1628 0%, #1e2a5e 100%); color: #fff;
      color: #fff;
      text-align: center;
      padding: 80px 24px;
    }
    .cta-section h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; margin-bottom: 16px; }
    .cta-section p:not(.cta-contact) { font-size: 18px; color: rgba(255,255,255,.8); max-width: 480px; margin: 0 auto 36px; }
    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: var(--trello);
      font-weight: 700;
      font-size: 16px;
      padding: 14px 32px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: transform .15s, box-shadow .15s;
      box-shadow: 0 4px 16px rgba(0,0,0,.2);
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); text-decoration: none; color: var(--trello); }

    /* ─── Support ─── */
    .support-section {
      background: var(--bg);
      text-align: center;
      padding: 52px 24px;
      border-top: 1px solid var(--border);
    }
    .support-heading {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
    }
    .support-sub {
      font-size: 15px;
      color: var(--muted);
      max-width: 420px;
      margin: 0 auto 24px;
    }
    .support-btns {
      display: inline-flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .btn-kofi {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 26px;
      background: #29ABE0;
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      border-radius: 8px;
      text-decoration: none;
      box-shadow: 0 1px 4px rgba(0,0,0,.12);
      transition: transform .15s, box-shadow .15s;
    }
    .btn-kofi:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.18); text-decoration: none; color: #fff; }
    .btn-bmc {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 26px;
      background: #FFDD00;
      color: #000;
      font-weight: 700;
      font-size: 15px;
      border-radius: 8px;
      text-decoration: none;
      box-shadow: 0 1px 4px rgba(0,0,0,.12);
      transition: transform .15s, box-shadow .15s;
    }
    .btn-bmc:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.18); text-decoration: none; color: #000; }

    /* ─── Footer ─── */
    footer {
      background: #0a1628;
      color: rgba(255,255,255,.5);
      padding: 40px 24px;
      font-size: 13px;
    }
    .footer-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: space-between;
      align-items: flex-start;
    }
    .footer-brand { color: rgba(255,255,255,.8); font-weight: 700; font-size: 15px; margin-bottom: 4px; }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      list-style: none;
    }
    .footer-links a { color: rgba(255,255,255,.5); }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 20px;
    }

    /* ─── FAQ ─── */
    .faq-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .faq-item {
      flex: 0 1 480px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 24px;
      box-shadow: var(--shadow);
    }
    .faq-item h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .faq-item p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.65;
    }
    .faq-item code {
      background: #e3eeff;
      color: var(--trello);
      padding: 1px 5px;
      border-radius: 4px;
      font-size: 13px;
      font-family: "SFMono-Regular", "Consolas", monospace;
    }

    /* ─── Social Proof (ready for when data exists) ─── */
    .social-proof {
      background: var(--bg);
      padding: 48px 24px;
    }
    .stats-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
      max-width: 600px;
      margin: 0 auto;
    }
    .stat-item {
      text-align: center;
      padding: 16px 40px;
    }
    .stat-number {
      font-size: 36px;
      font-weight: 800;
      color: var(--trello);
      letter-spacing: -.02em;
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 13px;
      color: var(--muted);
      font-weight: 500;
    }
    .stat-divider {
      width: 1px;
      height: 48px;
      background: var(--border);
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }
    .testimonial-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
    }
    .testimonial-quote {
      font-size: 15px;
      color: var(--text);
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .testimonial-quote::before { content: '\201C'; }
    .testimonial-quote::after  { content: '\201D'; }
    .testimonial-author {
      display: flex;
      flex-direction: column;
      gap: 2px;
      font-size: 13px;
    }
    .testimonial-author strong { color: var(--text); }
    .testimonial-author span   { color: var(--muted); }

    /* ─── Responsive ─── */
    @media (max-width: 800px) {
      .nav-toggle { display: flex; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 58px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,.97);
        border-bottom: 1px solid var(--border);
        padding: 8px 0;
        gap: 0;
        z-index: 99;
        backdrop-filter: blur(8px);
      }
      .nav-links.open li { border-bottom: 1px solid var(--border); }
      .nav-links.open li:last-child { border-bottom: none; }
      .nav-links.open a { display: block; padding: 14px 24px; }
      .nav-links.open .btn-nav {
        margin: 10px 24px 4px;
        display: block;
        text-align: center;
      }
      section { padding: 56px 20px; }
      .hero { padding: 64px 20px 60px; }
      .step-img img {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
      }
    }

    /* ─── Inline style replacements ─── */

    /* Hero paragraph <code> */
    .hero p code {
      font-family: monospace;
      background: rgba(255,255,255,.15);
      padding: 2px 7px;
      border-radius: 4px;
    }

    /* Hero placeholder italic description */
    .hero-placeholder .placeholder-desc { font-style: italic; }

    /* Step 2 inline code (blue/Trello style) */
    .step h3 code {
      background: #e3eeff;
      padding: 2px 7px;
      border-radius: 4px;
      font-family: monospace;
      color: var(--trello);
    }

    /* Feature card inline code variants */
    .code-teal   { background: #ccfbf1; padding: 1px 5px; border-radius: 3px; font-size: 12px; }
    .code-orange { background: #fff3e0; padding: 1px 5px; border-radius: 3px; font-size: 12px; }
    .code-red    { background: #fee2e2; padding: 1px 5px; border-radius: 3px; font-size: 12px; }

    /* Demo section overrides */
    .demo .section-tag { color: #818cf8; }
    .demo-placeholder .placeholder-label { color: rgba(255,255,255,.4); }

    /* Commands section background */
    #commands { background: var(--bg); }

    /* Commands footer note */
    .commands-footer-note {
      text-align: center;
      margin-top: 28px;
      font-size: 14px;
      color: var(--muted);
    }

    /* Pricing single-card wrapper */
    .pricing-single { max-width: 480px; margin: 0 auto; }
    .pricing-single .price-card { text-align: center; }
    .pricing-single .price-features { text-align: left; }

    /* Price disclaimer note */
    .price-disclaimer {
      margin-top: 16px;
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }

    /* CTA section contact line */
    .cta-contact { margin-top: 40px; font-size: 11px; color: rgba(255,255,255,.5); }
    .cta-contact a { color: rgba(255,255,255,.7); }