    /* ══ RESET & BASE ══════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --yellow:      #ffd90b;
      --yellow-dim:  rgba(255,217,11,0.12);
      --yellow-glow: rgba(255,217,11,0.25);
      --bg:          #0a0a0a;
      --bg2:         #111111;
      --bg3:         #161616;
      --border:      #1e1e1e;
      --border2:     #2a2a2a;
      --text:        #dadada;
      --hover:       #ffd90b;
      --text-dim:    #888888;
      --text-muted:  #444444;
      --red:         #ff4444;
      --font:        'Inter', system-ui, sans-serif;
      --radius:      12px;
      --radius-lg:   20px;
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font);
      font-size: 15px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { color: var(--yellow); text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* ══ LANG SWITCHER ═════════════════════════════════════════ */
    .lang-bar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(10,10,10,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 32px;
    }
    .lang-bar-logo {
      height: 28px;
      width: auto;
    }
    .lang-nav { display: flex; align-items: center; gap: 24px; }
    .lang-nav a {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-dim);
      transition: color 0.2s;
    }
    .lang-nav a:hover { color: var(--hover); text-decoration: none; }
    .lang-toggle {
      display: flex;
      background: var(--bg3);
      border: 1px solid var(--border2);
      border-radius: 8px;
      overflow: hidden;
    }
    .lang-btn {
      padding: 5px 12px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      color: var(--text-dim);
      transition: all 0.15s;
      border: none;
      background: none;
      font-family: var(--font);
    }
    .lang-btn.active {
      background: var(--yellow);
      color: #111;
    }

    /* ══ HERO ══════════════════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 24px 80px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(255,217,11,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--yellow-dim);
      border: 1px solid rgba(255,217,11,0.3);
      border-radius: 20px;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 700;
      color: var(--yellow);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .hero-logo {
      height: 56px;
      width: auto;
      margin-bottom: 24px;
    }
    .hero-title {
      font-size: clamp(38px, 7vw, 72px);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 20px;
    }
    .hero-title span { color: var(--yellow); }
    .hero-sub {
      font-size: clamp(16px, 2.5vw, 20px);
      color: var(--text-dim);
      max-width: 560px;
      margin: 0 auto 40px;
      line-height: 1.6;
      font-weight: 400;
    }
    .hero-cta {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 60px;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--yellow);
      color: #111;
      font-weight: 800;
      font-size: 15px;
      padding: 14px 28px;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      font-family: var(--font);
      text-decoration: none;
    }
    .btn-primary:hover {
      background: #ffe033;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px var(--yellow-glow);
      text-decoration: none;
      color: #111;
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--text);
      font-weight: 600;
      font-size: 15px;
      padding: 13px 24px;
      border-radius: var(--radius);
      border: 1px solid var(--border2);
      cursor: pointer;
      transition: all 0.2s;
      font-family: var(--font);
      text-decoration: none;
    }
    .btn-secondary:hover {
      border-color: #444;
      background: var(--bg3);
      text-decoration: none;
      color: var(--text);
    }

    /* Plugin preview mockup */
    .hero-preview {
      width: 100%;
      max-width: 720px;
      background: #141414;
      border: 1px solid var(--border2);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(255,217,11,0.05),
        0 40px 120px rgba(0,0,0,0.8),
        0 0 60px rgba(255,217,11,0.04);
      margin: 0 auto;
    }
    .preview-bar {
      background: #0d0d0d;
      border-bottom: 1px solid var(--border);
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .preview-dots { display: flex; gap: 6px; }
    .preview-dot {
      width: 11px; height: 11px;
      border-radius: 50%;
    }
    .preview-dot.r { background: #ff5f57; }
    .preview-dot.y { background: #febc2e; }
    .preview-dot.g { background: #28c840; }
    .preview-title {
      font-size: 11px;
      color: var(--text-dim);
      flex: 1;
      text-align: center;
    }
    .preview-body {
      padding: 16px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 8px;
    }
    .preview-panel {
      background: #1a1a1a;
      border: 1px solid #252525;
      border-radius: 8px;
      padding: 10px;
    }
    .preview-panel-title {
      font-size: 8px;
      font-weight: 700;
      color: #555;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .preview-panel-title span { color: var(--yellow); }
    .preview-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3px; }
    .preview-btn {
      height: 20px;
      background: #222;
      border-radius: 3px;
      border: 1px solid #2a2a2a;
    }
    .preview-btn.y { border-color: rgba(255,217,11,0.3); }
    .preview-curve {
      height: 60px;
      background: #111;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .preview-curve svg { width: 100%; height: 100%; }
    .preview-badges { display: flex; flex-wrap: wrap; gap: 3px; margin-top: 6px; }
    .preview-badge {
      background: #222;
      border: 1px solid #2a2a2a;
      border-radius: 3px;
      padding: 2px 5px;
      font-size: 7px;
      color: #666;
      font-weight: 700;
      text-transform: uppercase;
    }
    .preview-badge.y { border-color: rgba(255,217,11,0.2); color: var(--yellow); }

    /* ══ SECTIONS COMMON ═══════════════════════════════════════ */
    section { padding: 100px 24px; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(28px, 5vw, 48px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 17px;
      color: var(--text-dim);
      max-width: 520px;
      line-height: 1.6;
    }

    /* ══ FEATURES ══════════════════════════════════════════════ */
    .features-bg { background: var(--bg2); }
    .features-header { text-align: center; margin-bottom: 60px; }
    .features-header .section-sub { margin: 0 auto; }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .feature-card {
      background: var(--bg3);
      border: 1px solid var(--border2);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .feature-card:hover {
      border-color: rgba(255,217,11,0.25);
      transform: translateY(-3px);
    }
    .feature-icon {
      width: 44px; height: 44px;
      background: var(--yellow-dim);
      border: 1px solid rgba(255,217,11,0.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      margin-bottom: 16px;
    }
    .feature-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text);
    }
    .feature-desc {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.6;
    }
    .feature-tag {
      display: inline-block;
      margin-top: 12px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 3px 8px;
      border-radius: 5px;
      background: var(--yellow-dim);
      border: 1px solid rgba(255,217,11,0.2);
      color: var(--yellow);
    }
    .feature-tag.basic {
      background: rgba(255,255,255,0.04);
      border-color: var(--border2);
      color: var(--text-muted);
    }

    /* ══ HOW IT WORKS ══════════════════════════════════════════ */
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 32px;
      margin-top: 60px;
      counter-reset: steps;
    }
    .step { text-align: center; counter-increment: steps; }
    .step-num {
      width: 48px; height: 48px;
      background: var(--yellow);
      color: #111;
      font-size: 20px;
      font-weight: 900;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px;
    }
    .step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .step-desc { font-size: 14px; color: var(--text-dim); }

    /* ══ PRICING ═══════════════════════════════════════════════ */
    .pricing-bg { background: var(--bg2); }
    .pricing-header { text-align: center; margin-bottom: 50px; }
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      max-width: 800px;
      margin: 0 auto;
    }
    @media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }
    .pricing-card {
      background: var(--bg3);
      border: 1px solid var(--border2);
      border-radius: var(--radius-lg);
      padding: 32px;
      position: relative;
      transition: transform 0.2s;
    }
    .pricing-card:hover { transform: translateY(-4px); }
    .pricing-card.pro {
      border-color: var(--yellow);
      background: linear-gradient(135deg, #141408 0%, var(--bg3) 100%);
    }
    .pricing-card.pro::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius-lg);
      background: radial-gradient(ellipse at top, rgba(255,217,11,0.06), transparent 60%);
      pointer-events: none;
    }
    .pricing-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--yellow);
      color: #111;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 20px;
    }
    .pricing-name {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 12px;
    }
    .pricing-card.pro .pricing-name { color: var(--yellow); }
    .pricing-price {
      font-size: 52px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 4px;
    }
    .pricing-price sup {
      font-size: 22px;
      vertical-align: top;
      margin-top: 10px;
      display: inline-block;
    }
    .pricing-period {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 24px;
    }
    .pricing-divider {
      height: 1px;
      background: var(--border2);
      margin: 20px 0;
    }
    .pricing-features { list-style: none; margin-bottom: 28px; }
    .pricing-features li {
      font-size: 14px;
      color: var(--text-dim);
      padding: 6px 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pricing-features li::before {
      content: '✓';
      color: var(--yellow);
      font-weight: 700;
      font-size: 13px;
      flex-shrink: 0;
    }
    .pricing-features li.muted::before { content: '–'; color: var(--text-muted); }
    .pricing-features li.muted { color: var(--text-muted); }
    .btn-buy {
      display: block;
      width: 100%;
      text-align: center;
      padding: 14px;
      border-radius: var(--radius);
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
      border: none;
      font-family: var(--font);
      text-decoration: none;
    }
    .btn-buy.basic {
      background: var(--bg2);
      border: 1px solid var(--border2);
      color: var(--text);
    }
    .btn-buy.basic:hover { background: var(--bg3); border-color: #444; text-decoration: none; color: var(--text); }
    .btn-buy.pro-btn {
      background: var(--yellow);
      color: #111;
    }
    .btn-buy.pro-btn:hover {
      background: #ffe033;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px var(--yellow-glow);
      text-decoration: none;
      color: #111;
    }

    /* ══ COMPARISON TABLE ══════════════════════════════════════ */
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 50px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border2);
    }
    .compare-table th {
      background: var(--bg3);
      padding: 16px 20px;
      font-size: 13px;
      font-weight: 700;
      text-align: left;
      color: var(--text-dim);
      border-bottom: 1px solid var(--border2);
    }
    .compare-table th.pro-col { color: var(--yellow); }
    .compare-table td {
      padding: 12px 20px;
      font-size: 13px;
      border-bottom: 1px solid var(--border);
      color: var(--text-dim);
    }
    .compare-table tr:last-child td { border-bottom: none; }
    .compare-table td.feature-name { color: var(--text); font-weight: 500; }
    .check { color: var(--yellow); font-weight: 700; font-size: 16px; }
    .cross  { color: var(--text-muted); font-size: 16px; }
    .compare-table tr:hover td { background: rgba(255,255,255,0.01); }

    /* ══ FAQ ═══════════════════════════════════════════════════ */
    .faq-list { max-width: 700px; margin: 50px auto 0; }
    .faq-item {
      border-bottom: 1px solid var(--border2);
    }
    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 20px 0;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--font);
    }
    .faq-q::after { content: '+'; color: var(--yellow); font-size: 20px; }
    .faq-q.open::after { content: '−'; }
    .faq-a {
      display: none;
      padding: 0 0 18px;
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.7;
    }
    .faq-a.open { display: block; }

    /* ══ FOOTER ════════════════════════════════════════════════ */
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border2);
      padding: 50px 24px 32px;
      text-align: center;
    }
    .footer-logo { 
      height: 32px; 
      width: auto; 
      margin-bottom: 20px; 
    }
    
    .footer-links {
      display: flex;
      gap: 24px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .footer-links a { font-size: 13px; color: var(--text-dim); }
    .footer-links a:hover { color: var(--text); text-decoration: none; }
    .footer-social {
      display: flex;
      gap: 14px;
      justify-content: center;
      margin-bottom: 28px;
    }
    .social-btn {
      width: 38px; height: 38px;
      background: var(--bg3);
      border: 1px solid var(--border2);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.15s;
      text-decoration: none;
    }
    .social-btn:hover {
      border-color: rgba(255,217,11,0.4);
      background: var(--yellow-dim);
      text-decoration: none;
    }
    .footer-copy { font-size: 12px; color: var(--text-muted); }

    /* ══ ANIMATIONS ════════════════════════════════════════════ */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-8px); }
    }
    .floating { animation: float 4s ease-in-out infinite; }

    @keyframes fadeUp {
      from { opacity:0; transform:translateY(24px); }
      to   { opacity:1; transform:translateY(0); }
    }
    .fade-up { animation: fadeUp 0.7s ease forwards; }
    .fade-up-2 { animation: fadeUp 0.7s 0.15s ease forwards; opacity:0; }
    .fade-up-3 { animation: fadeUp 0.7s 0.3s ease forwards; opacity:0; }

    /* ══ RESPONSIVE ════════════════════════════════════════════ */
    @media (max-width: 768px) {
      .lang-bar { padding: 10px 16px; }
      .lang-nav { display: none; }
      section { padding: 70px 16px; }
      .preview-body { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr; }
    }

    /* ══ HIDDEN / I18N ═════════════════════════════════════════ */
    [data-lang] { display: none; }
    [data-lang].active { display: block; }
    [data-lang-inline] { display: none; }
    [data-lang-inline].active { display: inline; }
  
    /* ── CHANGELOG ── */
    .changelog-list { max-width: 700px; margin: 50px auto 0; }
    .cl-entry {
      border-left: 2px solid var(--border2);
      padding: 0 0 32px 24px;
      position: relative;
    }
    .cl-entry:last-child { padding-bottom: 0; border-left-color: transparent; }
    .cl-entry::before {
      content: '';
      position: absolute;
      left: -5px; top: 4px;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--yellow);
    }
    .cl-entry.latest::before { width: 12px; height: 12px; left: -7px; box-shadow: 0 0 8px var(--yellow-glow); }
    .cl-version {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 8px;
    }
    .cl-v { font-size: 14px; font-weight: 800; color: var(--text); }
    .cl-date { font-size: 11px; color: var(--text-muted); }
    .cl-badge {
      font-size: 9px; font-weight: 700; letter-spacing: .06em;
      text-transform: uppercase; padding: 2px 7px;
      border-radius: 20px; background: var(--yellow);
      color: #111;
    }
    .cl-changes { list-style: none; }
    .cl-changes li {
      font-size: 13px; color: var(--text-dim);
      padding: 3px 0;
      display: flex; align-items: flex-start; gap: 8px;
    }
    .cl-changes li::before { content: '+'; color: var(--yellow); font-weight: 700; flex-shrink: 0; }
    .cl-live-badge {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; color: var(--text-muted);
      margin-top: 40px;
    }
    .cl-dot { width: 6px; height: 6px; border-radius: 50%; background: #4caf50; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
    #cl-live-version { font-weight: 700; color: var(--yellow); }

    
    /* ── CURVES DEMO ── */
    .ld-btn {
      height: 22px;
      background: none;
      border: 1px solid #222;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #555;
      font-size: 9px;
      font-weight: 700;
      gap: 3px;
      padding: 0 7px;
      transition: all .1s;
      font-family: inherit;
      white-space: nowrap;
      user-select: none;
    }
    .ld-btn:hover { border-color: #333; color: #ccc; }
    .ld-btn-y { color: #ffd90b; border-color: rgba(255,217,11,.25); }
    .ld-btn-y:hover { background: rgba(255,217,11,.08); border-color: rgba(255,217,11,.5); }
    .ld-btn-fill { background: #ffd90b; color: #111; border-color: #ffd90b; font-weight: 800; }
    .ld-btn-fill:hover { background: #ffe033; }
    .ld-preset-item {
      background: #0a0a0a;
      border: 1px solid #1a1a1a;
      border-radius: 4px;
      padding: 5px 4px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      transition: all .1s;
    }
    .ld-preset-item:hover { border-color: #2a2a2a; background: #141414; }
    .ld-preset-item.ld-on { border-color: rgba(255,217,11,.4); background: rgba(255,217,11,.04); }
    .ld-preset-name { font-size: 8px; color: #555; font-weight: 600; text-align: center; }
    .ld-preset-item.ld-on .ld-preset-name { color: #ffd90b; }
    .ld-cat { font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #2a2a2a; padding: 4px 2px 3px; margin-top: 4px; }
    .ld-cat:first-child { margin-top: 0; }

    
    /* ── TOOLS DEMO ── */
    .td-panel {
      background: #111;
      border: 1px solid #1a1a1a;
      border-radius: 8px;
      overflow: hidden;
    }
    .td-panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 7px 10px;
      border-bottom: 1px solid #1a1a1a;
      background: #0e0e0e;
    }
    .td-panel-title {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #555;
    }
    .td-panel-title svg { color: #ffd90b; }
    .td-panel-body { padding: 8px; }
    .td-btn {
      height: 26px;
      background: #0e0e0e;
      border: 1px solid #1e1e1e;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #555;
      font-size: 9.5px;
      font-weight: 600;
      padding: 0 7px;
      transition: all .12s;
      user-select: none;
      gap: 3px;
      font-family: inherit;
    }
    .td-btn:hover { border-color: #2a2a2a; color: #ccc; }
    .td-btn.td-y { color: #ffd90b; border-color: rgba(255,217,11,.2); }
    .td-btn.td-y:hover { background: rgba(255,217,11,.06); border-color: rgba(255,217,11,.4); }
    .td-btn.td-active { border-color: rgba(255,217,11,.5); background: rgba(255,217,11,.08); color: #ffd90b; }
    .td-btn.td-danger:hover { color: #e05252; border-color: rgba(224,82,82,.3); }
    /* Align grid */
    .td-align-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
    .td-align-btn {
      height: 28px;
      background: #0e0e0e;
      border: 1px solid #1e1e1e;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 13px;
      transition: all .1s;
    }
    .td-align-btn:hover { background: rgba(255,217,11,.06); border-color: rgba(255,217,11,.3); }
    .td-align-btn.td-active-pos { border-color: rgba(255,217,11,.5); background: rgba(255,217,11,.1); }
    /* Anchor grid */
    .td-anc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
    .td-anc-btn {
      height: 28px;
      background: #0e0e0e;
      border: 1px solid #1e1e1e;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .1s;
    }
    .td-anc-btn:hover { border-color: rgba(255,217,11,.3); }
    .td-anc-btn.td-anc-active { border-color: rgba(255,217,11,.5); background: rgba(255,217,11,.06); }
    /* Demo canvas */
    .td-demo-canvas {
      background: #0a0a0a;
      border-radius: 6px;
      position: relative;
      overflow: hidden;
    }
    /* Counter */
    .td-input {
      height: 26px;
      background: #0e0e0e;
      border: 1px solid #1e1e1e;
      border-radius: 4px;
      color: #ccc;
      font-size: 10px;
      font-family: inherit;
      padding: 0 7px;
      outline: none;
      text-align: center;
    }
    .td-input:focus { border-color: rgba(255,217,11,.3); }
    .td-select {
      height: 26px;
      background: #0e0e0e;
      border: 1px solid #1e1e1e;
      border-radius: 4px;
      color: #555;
      font-family: inherit;
      font-size: 9.5px;
      padding: 0 4px;
      outline: none;
    }
    .td-counter-display {
      background: #0a0a0a;
      border-radius: 6px;
      padding: 12px;
      text-align: center;
      border: 1px solid #1e1e1e;
      min-height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .td-counter-num {
      font-size: 28px;
      font-weight: 700;
      color: #ffd90b;
      font-family: monospace;
      letter-spacing: .02em;
      transition: all .08s;
    }
    .td-badge {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: #ffd90b;
      background: rgba(255,217,11,.08);
      border: 1px solid rgba(255,217,11,.2);
      border-radius: 10px;
      padding: 2px 7px;
    }
    .td-tab-bar {
      display: flex;
      border-bottom: 1px solid #1a1a1a;
      background: #0c0c0c;
    }
    .td-tab {
      padding: 7px 14px;
      font-size: 10px;
      font-weight: 700;
      color: #444;
      cursor: pointer;
      border-bottom: 1.5px solid transparent;
      margin-bottom: -1px;
      transition: all .1s;
      white-space: nowrap;
    }
    .td-tab.td-tab-on {
      color: #ccc;
      border-bottom-color: #ffd90b;
    }
    .td-tab-panel { display: none; }
    .td-tab-panel.td-tp-on { display: block; }

    
    /* ── TEXT ANIMATOR DEMO ── */
    .ta-chip-ld {
      height: 26px;
      background: #0e0e0e;
      border: 1px solid #1e1e1e;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #555;
      font-size: 9.5px;
      font-weight: 700;
      padding: 0 11px;
      transition: all .12s;
      user-select: none;
      white-space: nowrap;
      letter-spacing: .04em;
    }
    .ta-chip-ld:hover { border-color: #2a2a2a; color: #aaa; }
    .ta-chip-ld.ta-on {
      border-color: rgba(255,217,11,.5);
      background: rgba(255,217,11,.08);
      color: #ffd90b;
    }
    .ta-demo-canvas {
      background: #0a0a0a;
      border-radius: 8px;
      display: block;
      width: 100%;
    }
    .ta-bounce-row {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      background: rgba(255,217,11,.04);
      border: 1px solid rgba(255,217,11,.1);
      border-radius: 6px;
    }
    .ta-toggle {
      width: 32px;
      height: 18px;
      background: #1e1e1e;
      border-radius: 9px;
      position: relative;
      cursor: pointer;
      transition: background .2s;
      flex-shrink: 0;
    }
    .ta-toggle.ta-tog-on { background: #ffd90b; }
    .ta-toggle::after {
      content: '';
      position: absolute;
      width: 14px;
      height: 14px;
      background: #444;
      border-radius: 50%;
      top: 2px;
      left: 2px;
      transition: all .2s;
    }
    .ta-toggle.ta-tog-on::after { left: 16px; background: #111; }
    .ta-text-input {
      flex: 1;
      height: 28px;
      background: #0e0e0e;
      border: 1px solid #1e1e1e;
      border-radius: 5px;
      color: #ccc;
      font-size: 13px;
      font-family: inherit;
      padding: 0 10px;
      outline: none;
    }
    .ta-text-input:focus { border-color: rgba(255,217,11,.3); }
    .ta-replay-btn {
      height: 28px;
      background: none;
      border: 1px solid #1e1e1e;
      border-radius: 5px;
      color: #555;
      font-size: 11px;
      padding: 0 10px;
      cursor: pointer;
      transition: all .1s;
      font-family: inherit;
      white-space: nowrap;
    }
    .ta-replay-btn:hover { border-color: rgba(255,217,11,.3); color: #ffd90b; }
    .ta-delay-row {
      display: flex;
      align-items: center;
      gap: 8px;
    }
