/**
 * Gamalogic Animations — Combined CSS
 * One file, one request, zero @import overhead.
 * Each animation is clearly sectioned for easy editing.
 */

.animation-block {
	margin-bottom: 40px;
}

/* ==============================================
   ANIMATION: smtp
   ============================================== */

.smt-wrap {
            background: #f0f9f0;
            border-radius: 20px;
            padding: 40px 32px;
            box-sizing: border-box;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            font-family: sans-serif;
            position: relative;
            overflow: hidden;
        }

        .smt-stage {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0;
            position: relative;
        }

        /* ── LEFT: Email servers ── */
        .smt-servers {
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex-shrink: 0;
            width: 200px;
        }

        .smt-server {
            background: #fff;
            border-radius: 14px;
            border: 1px solid #e8e8e8;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
        }

        .smt-server.smt-in {
            opacity: 1;
            transform: translateX(0);
        }

        .smt-server.smt-active {
            border-color: #062617;
            box-shadow: 0 0 0 3px rgba(6, 38, 23, 0.08), 0 4px 16px rgba(6, 38, 23, 0.10);
        }

        .smt-server-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1px;
            flex-shrink: 0;
        }

        .smt-disk {
            width: 26px;
            height: 6px;
            border-radius: 3px;
            background: #5ab4d4;
            border: 1px solid #3a8ab0;
            position: relative;
        }

        .smt-disk::after {
            content: '';
            position: absolute;
            left: 4px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
        }

        .smt-server-name {
            font-size: 13px;
            font-weight: 600;
            color: #222;
        }

        /* ── CENTER: connector area ── */
        .smt-center-area {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 220px;
        }

        .smt-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            overflow: visible;
            pointer-events: none;
        }

        .smt-gama-card {
            background: #fff;
            border-radius: 20px;
            border: 1px solid #e8e8e8;
            padding: 24px 20px 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            width: 120px;
            z-index: 3;
            position: relative;
            opacity: 0;
            transform: scale(0.7);
            transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .smt-gama-card.smt-in {
            opacity: 1;
            transform: scale(1);
        }

        .smt-gama-logo {
            width: 64px;
            height: 64px;
            background: #062617;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 0 6px rgba(204, 232, 140, 0.2);
        }

        .smt-gama-name {
            font-size: 12px;
            font-weight: 600;
            color: #333;
        }

        /* ── RIGHT: Database ── */
        .smt-db-card {
            background: #fff;
            border-radius: 16px;
            border: 1px solid #e8e8e8;
            padding: 20px 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            width: 140px;
            flex-shrink: 0;
            opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
        }

        .smt-db-card.smt-in {
            opacity: 1;
            transform: translateX(0);
        }

        .smt-db-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
        }

        .smt-db-top {
            width: 52px;
            height: 14px;
            background: #7ecae0;
            border: 1.5px solid #3a8ab0;
            border-radius: 26px;
            position: relative;
        }

        .smt-db-mid {
            width: 52px;
            height: 24px;
            background: #a0d8ec;
            border-left: 1.5px solid #3a8ab0;
            border-right: 1.5px solid #3a8ab0;
            margin-top: -4px;
            position: relative;
        }

        .smt-db-bot {
            width: 52px;
            height: 14px;
            background: #b8e4f4;
            border: 1.5px solid #3a8ab0;
            border-radius: 0 0 26px 26px;
            border-top: none;
            margin-top: -2px;
        }

        .smt-db-name {
            font-size: 12px;
            font-weight: 700;
            color: #222;
            text-align: center;
            line-height: 1.3;
        }

        /* ── Dashed path lines ── */
        .smt-path {
            fill: none;
            stroke: #b0c4b0;
            stroke-width: 1.5;
            stroke-dasharray: 6 5;
            stroke-linecap: round;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .smt-path.smt-path-in {
            opacity: 1;
        }

        /* ── Status label below center ── */
        .smt-status-row {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 28px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .smt-status-row.smt-in {
            opacity: 1;
        }

        .smt-status-pill {
            font-size: 11px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .smt-pill-green {
            background: #dcfce7;
            color: #166534;
        }

        .smt-pill-blue {
            background: #e0f2fe;
            color: #0369a1;
        }

        .smt-pill-amber {
            background: #fef3c7;
            color: #92400e;
        }

        .smt-status-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            animation: smtDotBlink 1.6s ease-in-out infinite;
        }

        @keyframes smtDotBlink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0.3
            }
        }


/* ==============================================
   ANIMATION: bulk
   ============================================== */

.bev-wrap {
    background: #f5f5f0;
    border-radius: 20px;
    padding: 24px;
    box-sizing: border-box;
    max-width: 560px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
  }

  .bev-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .bev-badge {
    font-size: 11px;
    font-weight: 600;
    background: #062617;
    color: #CCE88C;
    border-radius: 999px;
    padding: 4px 12px;
  }

  .bev-stats-row {
    display: flex;
    gap: 8px;
  }

  .bev-stat-pill {
    font-size: 10px;
    font-weight: 600;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    padding: 3px 10px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .bev-stat-pill span {
    color: #062617;
  }

  .bev-upload-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    padding: 14px 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .bev-upload-card.bev-in {
    opacity: 1;
    transform: translateY(0);
  }

  .bev-upload-filename {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    background: #f5f5f0;
    border-radius: 999px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .bev-cloud-wrap {
    position: relative;
  }

  .bev-cloud-btn {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
  }

  .bev-cloud-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 6px 0;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 10;
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.3, 0.64, 1);
  }

  .bev-cloud-dropdown.bev-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
  }

  .bev-cloud-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 14px;
    font-size: 12px;
    color: #333;
    cursor: pointer;
    transition: background 0.15s;
  }

  .bev-cloud-item:hover {
    background: #f5f5f0;
  }

  .bev-cloud-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .bev-validate-btn {
    background: #CCE88C;
    color: #062617;
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
  }

  .bev-queue {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
  }

  .bev-file-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    padding: 14px 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  }

  .bev-file-card.bev-in {
    opacity: 1;
    transform: translateY(0);
  }

  .bev-file-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .bev-file-icon {
    width: 36px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    position: relative;
  }

  .bev-file-icon::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    border-radius: 0 4px 0 0;
  }

  .bev-file-info {
    flex: 1;
  }

  .bev-file-name {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
  }

  .bev-file-size {
    font-size: 10px;
    color: #aaa;
  }

  .bev-file-close {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #f0f0eb;
    border: none;
    font-size: 11px;
    color: #888;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bev-prog-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .bev-prog-size {
    font-size: 10px;
    color: #bbb;
    min-width: 38px;
  }

  .bev-prog-bar-bg {
    flex: 1;
    height: 5px;
    background: #f0f0eb;
    border-radius: 999px;
    overflow: hidden;
  }

  .bev-prog-bar-fill {
    height: 100%;
    border-radius: 999px;
    width: 0%;
  }

  .bev-prog-pct {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    min-width: 30px;
    text-align: right;
  }

  .bev-done-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
    min-height: 24px;
  }

  .bev-done-row.bev-show {
    opacity: 1;
  }

  .bev-done-chips {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }

  .bev-chip {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
  }

  .bev-chip-g {
    background: #dcfce7;
    color: #166534;
  }

  .bev-chip-r {
    background: #fee2e2;
    color: #991b1b;
  }

  .bev-chip-y {
    background: #fef3c7;
    color: #92400e;
  }

  .bev-dl-btn {
    font-size: 10px;
    font-weight: 600;
    color: #062617;
    background: #f0f8e8;
    border: 1px solid #CCE88C;
    border-radius: 999px;
    padding: 3px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }

  .bev-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .bev-benefit {
    background: #fff;
    border-radius: 11px;
    border: 1px solid #ececec;
    padding: 12px 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .bev-benefit.bev-in {
    opacity: 1;
    transform: translateY(0);
  }

  .bev-benefit-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bev-benefit-icon svg {
    width: 20px;
    height: 20px;
    display: block;
  }

  .bev-benefit-val {
    font-size: 12px;
    font-weight: 700;
    color: #062617;
    margin-bottom: 2px;
  }

  .bev-benefit-lbl {
    font-size: 10px;
    color: #888;
    line-height: 1.4;
  }


/* ==============================================
   ANIMATION: email-validator
   ============================================== */
 .eva-wrap {
    background: #f0f0ec;
    border-radius: 28px;
    border: 2.5px solid #062617;
    padding: 28px 28px 24px;
    box-sizing: border-box;
    max-width: 420px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* ── Hello header ── */
  .eva-hello {
    text-align: center;
    opacity: 0; transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .eva-hello.eva-in { opacity:1; transform:translateY(0); }

  .eva-hello-line1 {
    font-size: 22px; font-weight: 700; color: #111;
    margin-bottom: 4px;
  }
  .eva-hello-name { color: #062617; }
  .eva-hello-line2 {
    font-size: 20px; font-weight: 600; color: #222;
  }

  /* ── Toggle ── */
  .eva-toggle {
    display: flex;
    background: #e4e4e0;
    border-radius: 999px;
    padding: 4px;
    align-self: center;
    gap: 2px;
    opacity: 0; transition: opacity 0.4s ease 0.2s;
  }
  .eva-toggle.eva-in { opacity:1; }

  .eva-tab {
    padding: 9px 20px;
    border-radius: 999px;
    font-size: 12px; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    cursor: default; white-space: nowrap; color: #888;
  }
  .eva-tab-active { background: #062617; color: #CCE88C; }

  /* ── Input row ── */
  .eva-input-row {
    background: #fff;
    border-radius: 999px;
    padding: 6px 6px 6px 20px;
    display: flex; align-items: center; gap: 8px;
    border: 1.5px solid #eee;
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s,
                border-color 0.3s ease;
  }
  .eva-input-row.eva-in  { opacity:1; transform:translateY(0); }
  .eva-input-row.eva-typing { border-color: #a8c4ae; }

  .eva-input-text {
    flex:1; font-size: 14px; color: #222;
    font-family: monospace; min-width: 0;
  }
  .eva-input-placeholder { color: #ccc; font-family: var(--font-sans,sans-serif); font-size:13px; }

  .eva-cursor {
    display: inline-block; width: 1.5px; height: 14px;
    background: #062617; margin-left: 1px; vertical-align: middle;
    animation: evaBlink 0.7s step-end infinite;
  }
  @keyframes evaBlink { 0%,100%{opacity:1} 50%{opacity:0} }
  .eva-cursor.eva-off { display:none; }

  .eva-validate-btn {
    background: #CCE88C; color: #062617;
    border: none; border-radius: 999px;
    padding: 10px 20px; font-size: 13px; font-weight: 700;
    display: flex; align-items: center; gap: 6px;
    cursor: default; flex-shrink: 0; white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .eva-validate-btn.eva-loading { background: #e8e8e0; color: #999; }

  .eva-spinner {
    width: 12px; height: 12px;
    border: 2px solid rgba(6,38,23,0.15);
    border-top-color: #062617; border-radius: 50%; display:none;
  }
  .eva-spinner.eva-spin { display:block; animation: evaSpin 0.55s linear infinite; }
  @keyframes evaSpin { to{transform:rotate(360deg)} }

  /* ── Result slot — fixed height always present ── */
  .eva-result-slot {
    height: 168px;
    position: relative;
    overflow: hidden;
  }

  /* ── Result card ── */
  .eva-result {
    position: absolute; inset: 0;
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #eee;
    padding: 14px 16px 0;
    display: flex; flex-direction: column; gap: 10px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
    pointer-events: none;
  }

  /* ── Skeleton placeholder ── */
  .eva-skeleton {
    position: absolute; inset: 0;
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #eee;
    padding: 14px 16px;
    display: flex; flex-direction: column; gap: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .eva-skeleton.eva-sk-show { opacity: 1; }
  .eva-skeleton.eva-sk-hide { opacity: 0; pointer-events: none; } /* kept for hide transition */

  .eva-sk-row {
    display: flex; align-items: center; gap: 10px;
  }
  .eva-sk-circle {
    width: 36px; height: 36px; border-radius: 50%;
    background: #f0f0eb;
    flex-shrink: 0;
    animation: evaSkeleton 1.4s ease-in-out infinite;
  }
  .eva-sk-lines {
    flex: 1; display: flex; flex-direction: column; gap: 6px;
  }
  .eva-sk-line {
    height: 10px; border-radius: 6px;
    background: #f0f0eb;
    animation: evaSkeleton 1.4s ease-in-out infinite;
  }
  .eva-sk-line-short { width: 60%; }
  .eva-sk-line:nth-child(2) { animation-delay: 0.1s; }

  .eva-sk-grid {
    background: #f5f5f0;
    border-radius: 14px;
    padding: 8px 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .eva-sk-block {
    height: 10px; border-radius: 6px;
    background: #e8e8e3;
    animation: evaSkeleton 1.4s ease-in-out infinite;
  }
  .eva-sk-block:nth-child(2) { animation-delay: 0.1s; }
  .eva-sk-block:nth-child(3) { animation-delay: 0.2s; }
  .eva-sk-block:nth-child(4) { animation-delay: 0.3s; }
  .eva-sk-block:nth-child(5) { animation-delay: 0.4s; }
  .eva-sk-block:nth-child(6) { animation-delay: 0.5s; }

  @keyframes evaSkeleton {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1; }
  }
  .eva-result.eva-result-in  { opacity:1; transform:translateY(0); pointer-events:auto; }
  .eva-result.eva-result-out { opacity:0; transform:translateY(-16px); transition: opacity 0.3s ease, transform 0.3s ease; pointer-events:none; }

  /* result header */
  .eva-res-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 8px;
  }
  .eva-res-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: #36D375;
    display: flex; align-items: center; justify-content: center;
    flex-shrink:0;
    opacity:0; transform:scale(0.4);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
  .eva-res-icon.eva-p-in { opacity:1; transform:scale(1); }
  .eva-res-icon.eva-invalid-icon { background: #e53935; }
  .eva-res-icon.eva-disposable-icon { background: #f59e0b; }

  .eva-res-info {
    opacity:0; transform:translateX(-6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .eva-res-info.eva-p-in { opacity:1; transform:translateX(0); }
  .eva-res-email {
    font-size: 15px; font-weight: 700; color: #111;
    font-family: monospace; margin-bottom: 3px;
  }
  .eva-res-status { font-size: 13px; color: #888; }
  .eva-res-status .eva-valid-txt   { color: #062617; font-weight: 700; }
  .eva-res-status .eva-invalid-txt { color: #e53935; font-weight: 700; }

  /* fields grid */
  .eva-fields {
    background: #f5f5f0;
    border-radius: 14px;
    padding: 8px 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 8px;
    opacity:0; transform:translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .eva-fields.eva-p-in { opacity:1; transform:translateY(0); }

  .eva-field-row {
    display: flex; align-items: center; gap: 7px;
    font-size: 12px; color: #444;
  }
  .eva-field-dot {
    width: 8px; height: 8px; border-radius: 50%;
    flex-shrink:0;
  }
  .eva-dot-green { background: #062617; }
  .eva-dot-red   { background: #ff6b6b; }

  .eva-field-key { font-weight: 700; color: #222; }
  .eva-field-val { color: #555; }

  /* ── Hello header ── */
  .eva-hello {
    text-align: center;
    opacity: 0; transform: translateY(-10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin-bottom: 16px;
  }
  .eva-hello.eva-in { opacity:1; transform:translateY(0); }
  .eva-hello-line1 {
    font-size: 22px; font-weight: 700; color: #111;
    margin-bottom: 4px;
  }
  .eva-hello-name { color: #062617; }
  .eva-hello-line2 {
    font-size: 20px; font-weight: 600; color: #222;
  }


  .eva-wave {
    display: inline-block;
    animation: evaWave 1.6s ease-in-out infinite;
    transform-origin: 70% 70%;
  }
  @keyframes evaWave {
    0%   { transform: rotate(0deg); }
    10%  { transform: rotate(14deg); }
    20%  { transform: rotate(-8deg); }
    30%  { transform: rotate(14deg); }
    40%  { transform: rotate(-4deg); }
    50%  { transform: rotate(10deg); }
    60%  { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
  }
/* ==============================================
   ANIMATION: email-finder
   ============================================== */
.evf-wrap {
    background: #f0f0ec;
    border-radius: 28px;
    border: 2.5px solid #062617;
    padding: 28px 28px 24px;
    box-sizing: border-box;
    max-width: 420px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .evf-toggle {
    display: flex; background: #e4e4e0;
    border-radius: 999px; padding: 4px;
    align-self: center; gap: 2px;
    opacity: 0; transition: opacity 0.4s ease;
  }
  .evf-toggle.evf-in { opacity:1; }
  .evf-tab {
    padding: 9px 20px; border-radius: 999px;
    font-size: 12px; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    cursor: default; white-space: nowrap; color: #888;
  }
  .evf-tab-active { background: #062617; color: #CCE88C; }

  /* ── Input card — normal flow, smaller height ── */
  .evf-input-card {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #eee;
    padding: 12px 14px;
    display: flex; align-items: center; gap: 8px;
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
  }
  .evf-input-card.evf-in { opacity:1; transform:translateY(0); }

  .evf-fields-row {
    flex: 1; display: flex; align-items: center; gap: 8px; min-width: 0;
  }
  .evf-field { flex:1; display:flex; align-items:center; gap:7px; min-width:0; }
  .evf-icon { font-size:13px; color:#062617; opacity:0.5; flex-shrink:0; }
  .evf-field-val {
    font-size: 12px; font-weight: 500; color: #ccc;
    white-space: nowrap; overflow: hidden; min-width:0;
    transition: color 0.2s ease;
  }
  .evf-field-val.evf-typing { color: #062617; }
  .evf-sep { color:#ddd; font-size:16px; flex-shrink:0; }

  .evf-cursor {
    display: inline-block; width:1.5px; height:12px;
    background: #062617; margin-left:1px; vertical-align:middle;
    animation: evfBlink 0.7s step-end infinite;
  }
  @keyframes evfBlink { 0%,100%{opacity:1} 50%{opacity:0} }
  .evf-cursor.evf-off { display:none; }

  .evf-find-btn {
    background: #CCE88C; color: #062617;
    border: none; border-radius: 999px;
    padding: 8px 18px;
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; gap: 6px;
    cursor: default; flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .evf-find-btn.evf-loading { background: #e8e8e0; color: #999; }

  .evf-spinner {
    width:11px; height:11px;
    border:2px solid rgba(6,38,23,0.15);
    border-top-color:#062617; border-radius:50%; display:none;
  }
  .evf-spinner.evf-spin { display:block; animation: evfSpin 0.55s linear infinite; }
  @keyframes evfSpin { to{transform:rotate(360deg)} }

  /* ── Result slot — fixed height, always present ── */
  .evf-result-slot {
    height: 148px;
    position: relative;
    overflow: hidden;
  }

  /* ── Skeleton placeholder ── */
  .evf-skeleton {
    position: absolute; inset: 0;
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #eee;
    padding: 14px 16px;
    display: flex; flex-direction: column; gap: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .evf-skeleton.evf-sk-show { opacity: 1; }
  .evf-skeleton.evf-sk-hide { opacity: 0; pointer-events: none; } /* kept for hide transition */

  .evf-sk-row { display: flex; align-items: center; gap: 10px; }
  .evf-sk-circle {
    width: 36px; height: 36px; border-radius: 50%;
    background: #f0f0eb; flex-shrink: 0;
    animation: evfSkeleton 1.4s ease-in-out infinite;
  }
  .evf-sk-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
  .evf-sk-line {
    height: 10px; border-radius: 6px;
    background: #f0f0eb;
    animation: evfSkeleton 1.4s ease-in-out infinite;
  }
  .evf-sk-line-short { width: 60%; }
  .evf-sk-line:nth-child(2) { animation-delay: 0.1s; }
  .evf-sk-grid {
    background: #f5f5f0; border-radius: 12px;
    padding: 8px 12px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  }
  .evf-sk-block {
    height: 10px; border-radius: 6px;
    background: #e8e8e3;
    animation: evfSkeleton 1.4s ease-in-out infinite;
  }
  .evf-sk-block:nth-child(2) { animation-delay: 0.1s; }
  .evf-sk-block:nth-child(3) { animation-delay: 0.2s; }
  .evf-sk-block:nth-child(4) { animation-delay: 0.3s; }
  .evf-sk-block:nth-child(5) { animation-delay: 0.4s; }
  .evf-sk-block:nth-child(6) { animation-delay: 0.5s; }
  @keyframes evfSkeleton {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1; }
  }

  /* ── Result card ── */
  .evf-result {
    position: absolute; inset: 0;
    background: #fff; border-radius: 18px;
    border: 1.5px solid #eee;
    padding: 14px 16px 0;
    display: flex; flex-direction: column; gap: 10px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
    pointer-events: none;
  }
  .evf-result.evf-result-in  { opacity:1; transform:translateY(0); pointer-events:auto; }
  .evf-result.evf-result-out { opacity:0; transform:translateY(-16px); transition: opacity 0.3s ease, transform 0.3s ease; pointer-events:none; }

  .evf-res-header { display:flex; align-items:center; gap:12px; }
  .evf-res-icon {
    width:36px; height:36px; border-radius:50%;
    background:#36D375;
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
    opacity:0; transform:scale(0.4);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
  .evf-res-icon.evf-p-in { opacity:1; transform:scale(1); }

  .evf-res-info {
    opacity:0; transform:translateX(-6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    min-width: 0;
  }
  .evf-res-info.evf-p-in { opacity:1; transform:translateX(0); }
  .evf-res-label  { font-size:11px; color:#888; margin-bottom:3px; }
  .evf-res-label strong { font-weight:800; color:#111; }
  .evf-res-email  { font-size:13px; font-weight:700; color:#062617; font-family:monospace; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

  .evf-res-fields {
    background:#f5f5f0; border-radius:12px;
    padding:8px 12px;
    display:grid; grid-template-columns:1fr 1fr; gap:6px 8px;
    opacity:0; transform:translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .evf-res-fields.evf-p-in { opacity:1; transform:translateY(0); }

  .evf-field-row { display:flex; align-items:center; gap:6px; font-size:11px; color:#444; }
  .evf-fdot { width:7px; height:7px; border-radius:50%; flex-shrink:0; }
  .evf-dot-green { background:#062617; }
  .evf-dot-red   { background:#ff6b6b; }
  .evf-fkey { font-weight:700; color:#222; }
  .evf-fval { color:#555; }

/* ==============================================
   ANIMATION: realtime
   ============================================== */

.rtl-wrap {
    background: #f5f5f0;
    border-radius: 20px;
    padding: 24px;
    box-sizing: border-box;
    max-width: 560px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
  }

  .rtl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .rtl-badge {
    font-size: 11px;
    font-weight: 600;
    background: #062617;
    color: #CCE88C;
    border-radius: 999px;
    padding: 4px 12px;
  }

  .rtl-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #555;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    padding: 4px 12px;
  }

  .rtl-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4CAF50;
    animation: rtlBlink 1.8s ease-in-out infinite;
  }

  @keyframes rtlBlink {

    0%,
    100% {
      opacity: 1;
      transform: scale(1)
    }

    50% {
      opacity: 0.4;
      transform: scale(0.7)
    }
  }

  .rtl-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }

  /* ── LEFT card ── */
  .rtl-form-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  }

  .rtl-form-card.rtl-in {
    opacity: 1;
    transform: translateY(0);
  }

  /* title + subtitle on same row, cleanly separated */
  .rtl-form-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 2px;
  }

  .rtl-form-title {
    font-size: 13px;
    font-weight: 600;
    color: #222;
  }

  .rtl-form-sub {
    font-size: 10px;
    color: #aaa;
  }

  .rtl-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .rtl-label {
    font-size: 10px;
    font-weight: 600;
    color: #888;
  }

  .rtl-static-input {
    height: 34px;
    border-radius: 8px;
    border: 1.5px solid #eee;
    background: #fafaf8;
    padding: 0 12px;
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
  }

  .rtl-email-wrap {
    position: relative;
  }

  .rtl-email-input {
    width: 100%;
    height: 34px;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    background: #fafaf8;
    padding: 0 32px 0 12px;
    font-size: 12px;
    color: #222;
    box-sizing: border-box;
    outline: none;
    pointer-events: none;
    font-family: monospace;
    transition: border-color 0.3s ease, background 0.3s ease;
  }

  .rtl-email-input.rtl-valid {
    border-color: #4CAF50;
    background: #f0fdf4;
  }

  .rtl-email-input.rtl-invalid {
    border-color: #e53935;
    background: #fef2f2;
  }

  .rtl-email-input.rtl-risky {
    border-color: #f59e0b;
    background: #fffbeb;
  }

  .rtl-email-input.rtl-typing {
    border-color: #062617;
    background: #fff;
  }

  .rtl-input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .rtl-input-icon.rtl-show {
    opacity: 1;
  }

  .rtl-spinner {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border: 2px solid #e8e8e8;
    border-top-color: #062617;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
  }

  .rtl-spinner.rtl-show {
    opacity: 1;
    animation: rtlSpin 0.55s linear infinite;
  }

  @keyframes rtlSpin {
    to {
      transform: translateY(-50%) rotate(360deg);
    }
  }

  /* status badge — same pill style as catch-all tags */
  .rtl-status-badge {
    height: 26px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
  }

  .rtl-status-badge.rtl-show {
    opacity: 1;
    transform: translateY(0);
  }

  /* same colors as cavl-tag */
  .rtl-badge-valid {
    background: #dcfce7;
    color: #166534;
  }

  .rtl-badge-invalid {
    background: #fee2e2;
    color: #991b1b;
  }

  .rtl-badge-risky {
    background: #fef3c7;
    color: #92400e;
  }

  .rtl-submit-btn {
    width: 100%;
    height: 34px;
    border-radius: 8px;
    border: none;
    background: #062617;
    color: #CCE88C;
    font-size: 12px;
    font-weight: 700;
    cursor: default;
    letter-spacing: 0.02em;
    margin-top: 2px;
  }

  /* ── RIGHT card ── */
  .rtl-result-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  }

  .rtl-result-card.rtl-in {
    opacity: 1;
    transform: translateY(0);
  }

  .rtl-result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }

  .rtl-result-title {
    font-size: 12px;
    font-weight: 600;
    color: #333;
  }

  .rtl-result-ms {
    font-size: 10px;
    color: #aaa;
  }

  .rtl-result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid #f5f5f0;
  }

  .rtl-result-row:last-child {
    border-bottom: none;
  }

  .rtl-result-key {
    font-size: 11px;
    color: #aaa;
  }

  .rtl-result-val {
    font-size: 11px;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  /* same color tokens as catch-all */
  .rtl-val-dim {
    color: #ddd;
  }

  .rtl-val-green {
    color: #166534;
  }

  .rtl-val-red {
    color: #991b1b;
  }

  .rtl-val-yellow {
    color: #92400e;
  }

  /* ── Stats ── same card style as catch-all ── */
  .rtl-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .rtl-stat {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ececec;
    padding: 12px 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .rtl-stat.rtl-in {
    opacity: 1;
    transform: translateY(0);
  }

  .rtl-stat-val {
    font-size: 22px;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
  }

  .rtl-stat-lbl {
    font-size: 10px;
    color: #888;
    font-weight: 500;
  }


/* ==============================================
   ANIMATION: data-enrichment
   ============================================== */
  .orb-wrap {
    border-radius: 20px;
    box-sizing: border-box;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    position: relative;
    font-family: var(--font-sans, sans-serif);
  }

  .orb-stage {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* glow blobs */
  .orb-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .orb-glow-1 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(204, 232, 140, 0.45) 0%, transparent 70%);
    animation: orbGlow 2.6s ease-in-out infinite;
  }

  .orb-glow-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(204, 232, 140, 0.15) 0%, transparent 70%);
    animation: orbGlow 2.6s ease-in-out infinite 0.5s;
  }

  @keyframes orbGlow {
    0%,  100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.7; }
    50%        { transform: translate(-50%, -50%) scale(1.25); opacity: 1;   }
  }

  /* center logo */
  .orb-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    z-index: 4;
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: #062617;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
      0 0 0 10px rgba(204, 232, 140, 0.18),
      0 0 0 22px rgba(204, 232, 140, 0.07);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .orb-center.orb-in {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: orbHeartbeat 1.6s ease-in-out infinite 0.6s;
  }

  @keyframes orbHeartbeat {
    0% {
      transform: translate(-50%, -50%) scale(1);
    }

    8% {
      transform: translate(-50%, -50%) scale(1.08);
    }

    16% {
      transform: translate(-50%, -50%) scale(1);
    }

    24% {
      transform: translate(-50%, -50%) scale(1.05);
    }

    32% {
      transform: translate(-50%, -50%) scale(1);
    }

    100% {
      transform: translate(-50%, -50%) scale(1);
    }
  }

  .orb-center::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 28px;
    border: 1.5px solid rgba(204, 232, 140, 0.28);
    animation: orbCenterPing 2.2s ease-out infinite;
  }

  @keyframes orbCenterPing {
    0% {
      opacity: 1;
      transform: scale(1);
    }

    100% {
      opacity: 0;
      transform: scale(1.25);
    }
  }

  /* the one ring */
  .orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 392px;
    height: 392px;
    margin: -196px 0 0 -196px;
    border-radius: 50%;
    border: 1.5px dashed rgba(6, 38, 23, 0.10);
    animation: orbSpin 22s linear infinite;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .orb-ring.orb-in {
    opacity: 1;
  }

  @keyframes orbSpin {
    from {
      transform: rotate(0deg)
    }

    to {
      transform: rotate(360deg)
    }
  }

  /* icon node */
  .orb-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    margin: -26px 0 0 -26px;
  }

  .orb-card {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 13px;
    border: 1px solid #ececec;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .orb-card.orb-in {
    opacity: 1;
  }



  .orb-card svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  @keyframes orbCounter {
    from {
      transform: rotate(0deg)
    }

    to {
      transform: rotate(-360deg)
    }
  }

@media (max-width: 767px) {
     .orb-wrap {
        min-height: unset !important;
        height: 320px;
        overflow: hidden;
    }
    .orb-stage {
        transform: scale(0.6);
        transform-origin: center center;
        margin: -80px 0;
    }
}
/* ==============================================
   ANIMATION: integration
   ============================================== */

.icv-wrap {
    background: #f5f5f0;
    border-radius: 20px;
    padding: 32px;
    box-sizing: border-box;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    font-family: var(--font-sans, sans-serif);
  }

  .icv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .icv-badge {
    font-size: 11px;
    font-weight: 600;
    background: #062617;
    color: #CCE88C;
    border-radius: 999px;
    padding: 4px 12px;
  }

  .icv-count {
    font-size: 11px;
    color: #aaa;
    font-weight: 500;
  }

  /* ── Grid of 4 columns ── */
  .icv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    height: 300px;
    overflow: hidden;
    position: relative;
  }

  /* fade top and bottom */
  .icv-grid::before,
  .icv-grid::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 60px;
    z-index: 2;
    pointer-events: none;
  }
  .icv-grid::before {
    top: 0;
    background: linear-gradient(to bottom, #f5f5f0, transparent);
  }
  .icv-grid::after {
    bottom: 0;
    background: linear-gradient(to top, #f5f5f0, transparent);
  }

  /* column scrolls up */
  .icv-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: icvScrollUp 18s linear infinite;
  }

  .icv-col:nth-child(even) {
    animation-name: icvScrollDown;
  }

  @keyframes icvScrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }

  @keyframes icvScrollDown {
    0%   { transform: translateY(-50%); }
    100% { transform: translateY(0); }
  }

  .icv-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ececec;
    width: 100%;
    aspect-ratio: 1;
/*     height: 90px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    flex-shrink: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .icv-card:hover {
    border-color: #CCE88C;
    box-shadow: 0 0 0 3px rgba(204,232,140,0.25);
  }

  .icv-card svg {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
/* ==============================================
   ANIMATION: seg
   ============================================== */

.segl-wrap {
    background: #f5f5f0;
    border-radius: 20px;
    padding: 28px 24px;
    box-sizing: border-box;
    max-width: 560px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
  }

  /* ── Top label ── */
  .segl-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .segl-top-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .segl-badge {
    font-size: 11px;
    font-weight: 600;
    background: #062617;
    color: #CCE88C;
    border-radius: 999px;
    padding: 4px 12px;
    letter-spacing: 0.03em;
  }
  .segl-subtitle {
    font-size: 12px;
    color: #888;
  }
  .segl-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #555;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    padding: 4px 12px;
  }
  .segl-status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #4CAF50;
    animation: seglPulse 1.8s ease-in-out infinite;
  }
  @keyframes seglPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

  /* ── Shield wall ── */
  .segl-shields {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
  }

  .segl-shield-card {
    flex: 1;
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #ececec;
    padding: 14px 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: default;
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.4s ease,
      transform 0.4s cubic-bezier(0.34,1.2,0.64,1),
      border-color 0.3s ease,
      box-shadow 0.3s ease;
  }
  .segl-shield-card.segl-in {
    opacity: 1;
    transform: translateY(0);
  }
  .segl-shield-card.segl-evading {
    border-color: #CCE88C;
    box-shadow: 0 0 0 3px rgba(204,232,140,0.25), 0 4px 16px rgba(6,38,23,0.08);
  }
  .segl-shield-card.segl-passed {
    border-color: #e8e8e8;
    box-shadow: none;
  }

  .segl-shield-logo {
    width: 56px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .segl-shield-logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .segl-shield-logo.segl-logo-sm svg {
    width: 50%;
    height: 50%;
  }

  .segl-shield-name {
    font-size: 10px;
    font-weight: 600;
    color: #555;
    text-align: center;
  }

  /* check/status icon per shield */
  .segl-shield-status {
    font-size: 13px;
    height: 18px;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), color 0.3s ease;
  }
  .segl-shield-status svg {
    width: 14px;
    height: 14px;
  }
  .segl-shield-status.segl-ss-result {
    animation: seglStatusPop 0.35s cubic-bezier(0.34,1.56,0.64,1);
  }
  @keyframes seglStatusPop {
    0% { transform: scale(0.4); }
    100% { transform: scale(1); }
  }

  /* ── Progress track ── */
  .segl-track {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ececec;
    padding: 14px 16px;
    margin-bottom: 14px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .segl-track.segl-in { opacity: 1; }

  .segl-track-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .segl-track-title {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .segl-track-pct {
    font-size: 12px;
    font-weight: 700;
    color: #062617;
  }

  .segl-progress-bg {
    background: #f0f0eb;
    border-radius: 999px;
    height: 8px;
    overflow: hidden;
  }
  .segl-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #062617, #4a8a5a);
    border-radius: 999px;
    width: 0%;
    transition: width 0.5s ease;
  }

  /* current email being checked */
  .segl-current {
    margin-top: 10px;
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .segl-current-email {
    font-weight: 600;
    color: #333;
    font-family: monospace;
  }

  /* ── Results row ── */
  .segl-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .segl-result-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ececec;
    padding: 12px 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .segl-result-card.segl-in { opacity:1; transform:translateY(0); }

  .segl-result-val {
    font-size: 22px;
    font-weight: 700;
    color: #062617;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
  }
  .segl-result-lbl {
    font-size: 10px;
    color: #888;
    font-weight: 500;
  }
  .segl-result-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 3px;
    vertical-align: middle;
  }
/* ==============================================
   ANIMATION: ESP
   ============================================== */

.esp-section {
            background: #f7f7f7;
            border-radius: 20px;
            padding: 0px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            max-width: 100%;
            margin: 0 auto;
        }

        .esp-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
			padding: 16px;
        }

        .esp-icon-card {
            aspect-ratio: 1;
            background: #ffffff;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1.5px solid transparent;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
            cursor: pointer;
            opacity: 0;
            transform: translateY(16px) scale(0.85);
            padding: 24px;
            transition:
                transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                opacity 0.3s ease;
        }

        .esp-icon-card svg {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        @keyframes espCardIn {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .esp-icon-card.esp-visible {
            animation: espCardIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .esp-icon-card:hover {
            transform: translateY(-3px) scale(1.07) !important;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
            border-color: #CCE88C;
        }

        .esp-icon-card.esp-pulse {
            border-color: #CCE88C !important;
            box-shadow: 0 0 0 3px rgba(204, 232, 140, 0.25), 0 6px 20px rgba(204, 232, 140, 0.20) !important;
            transform: translateY(-2px) scale(1.08) !important;
        }

@media (max-width: 767px) {
    .esp-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        padding: 0px !important;
    }

    .esp-icon-card {
        padding: 15px !important;
        height: 56px; /* Safari fix — mobile */
    }
}

/* ==============================================
   ANIMATION: CRM
   ============================================== */
        .crm-section {
            background: #f7f7f7;
            border-radius: 20px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            max-width: 100%;
            margin: 0 auto;
        }

        .crm-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .crm-icon-card {
            aspect-ratio: 1;
            background: #ffffff;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1.5px solid transparent;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
            cursor: pointer;
            opacity: 0;
            transform: translateY(16px) scale(0.85);
            padding: 20px;
            transition:
                transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                opacity 0.3s ease;
        }

        .crm-icon-card svg {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        @keyframes crmCardIn {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .crm-icon-card.crm-visible {
            animation: crmCardIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .crm-icon-card:hover {
            transform: translateY(-3px) scale(1.07) !important;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
            border-color: #CCE88C;
        }

        .crm-icon-card.crm-pulse {
            border-color: #CCE88C !important;
            box-shadow: 0 0 0 3px rgba(204, 232, 140, 0.25), 0 6px 20px rgba(204, 232, 140, 0.20) !important;
            transform: translateY(-2px) scale(1.08) !important;
        }

/* ── Safari 14 and below: aspect-ratio not supported ── */
@supports not (aspect-ratio: 1) {
    .crm-icon-card {
        height: 90px;
    }
    .esp-icon-card {
        height: 70px;
    }
    @media (max-width: 767px) {
        .crm-icon-card { height: 70px; }
        .esp-icon-card { height: 56px; }
    }
}

/* ── Safari 15+: aspect-ratio supported but buggy inside grid ── */
@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        .crm-icon-card { height: 90px; }
        .esp-icon-card { height: 70px; }
        @media (max-width: 767px) {
            .crm-icon-card { height: 70px; }
            .esp-icon-card { height: 56px; }
        }
    }
}
/* ==============================================
   ANIMATION: workflow
   ============================================== */

.wf-section {
    background: #f7f7f7;
    border-radius: 20px;
    padding: 20px 0;
    box-sizing: border-box;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .wf-diagram {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 0;
  }

  /* ── Node cards ── */
  .wf-node {
    position: absolute;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid transparent;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    cursor: pointer;
    opacity: 0;
	  padding: 10px;
    transition:
      transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
      box-shadow 0.25s ease,
      border-color 0.25s ease;
  }
  .wf-node:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    filter: brightness(0.96);
  }
  /* center hover separately — no transform conflict */
  .wf-center:hover {
    filter: brightness(0.88);
    box-shadow: 0 10px 28px rgba(6,38,23,0.38);
  }
  .wf-node svg { width: 55%; height: 55%; }

  /* Center logo — larger */
  .wf-center {
    width: 99px;
    height: 99px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #062617;
    border-radius: 22px;
    z-index: 3;
    box-shadow: 0 6px 24px rgba(6,38,23,0.25);
  }
  .wf-center svg { width: 62%; height: 62%; }

  /* Satellite cards */
  .wf-card {
    width: 86px;
    height: 86px;
  }

  /* Positions — 4 corners around center */
  .wf-top-left     { top: 16px;   left: 4%; }
  .wf-top-right    { top: 16px;   right: 4%; }
  .wf-bottom-left  { bottom: 16px; left: 4%; }
  .wf-bottom-right { bottom: 16px; right: 4%; }

  /* Entrance animations per position */
  @keyframes wfFlyTopLeft     { from { opacity:0; transform: translate(-20px,-20px) scale(0.7); } to { opacity:1; transform: translate(0,0) scale(1); } }
  @keyframes wfFlyTopRight    { from { opacity:0; transform: translate(20px,-20px)  scale(0.7); } to { opacity:1; transform: translate(0,0) scale(1); } }
  @keyframes wfFlyBottomLeft  { from { opacity:0; transform: translate(-20px,20px)  scale(0.7); } to { opacity:1; transform: translate(0,0) scale(1); } }
  @keyframes wfFlyBottomRight { from { opacity:0; transform: translate(20px,20px)   scale(0.7); } to { opacity:1; transform: translate(0,0) scale(1); } }
  @keyframes wfFlyCenter      { from { opacity:0; transform: translate(-50%,-50%) scale(0.6); } to { opacity:1; transform: translate(-50%,-50%) scale(1); } }

  .wf-top-left.wf-in     { animation: wfFlyTopLeft     0.5s cubic-bezier(0.34,1.56,0.64,1) forwards; }
  .wf-top-right.wf-in    { animation: wfFlyTopRight    0.5s cubic-bezier(0.34,1.56,0.64,1) forwards; }
  .wf-bottom-left.wf-in  { animation: wfFlyBottomLeft  0.5s cubic-bezier(0.34,1.56,0.64,1) forwards; }
  .wf-bottom-right.wf-in { animation: wfFlyBottomRight 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards; }
  .wf-center.wf-in       { animation: wfFlyCenter      0.55s cubic-bezier(0.34,1.56,0.64,1) forwards; }

  /* SVG canvas for paths + dots */
  .wf-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
  }

  .wf-path {
    fill: none;
    stroke: #c4c8c5;
    stroke-width: 1.4;
    stroke-dasharray: 6 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .wf-path.wf-shown { opacity: 1; }

  /* ── Text ── */
  .wf-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px;
  }
  .wf-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.65;
    margin: 0 0 22px;
  }
  .wf-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    border-radius: 999px;
    border: 1.5px solid #222;
    background: transparent;
    color: #111;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .wf-btn:hover { background: #111; color: #fff; }
@media (max-width: 767px) {
    .wf-section {
        padding: 0px !important;
    }
    .wf-diagram {
        height: 200px !important;
    }
    .wf-card {
        width: 64px !important;
        height: 64px !important;
    }
    .wf-center {
        width: 80px !important;
        height: 80px !important;
    }
    .wf-top-left {
        top: 0px !important;
        left: 2% !important;
    }
    .wf-top-right {
        top: 0px !important;
        right: 2% !important;
    }
    .wf-bottom-left {
        bottom: 0px !important;
        left: 2% !important;
    }
    .wf-bottom-right {
        bottom: 0px !important;
        right: 2% !important;
    }
}

/* ==============================================
   ANIMATION: webhook
   ============================================== */

/* global * reset removed — scoped to animation-wrapper instead */

        /* body reset removed — was from standalone HTML demo */

        .whs-diagram {
            position: relative;
            width: 100%;
            height: 246px;
        }

        .whs-svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: visible;
        }

        .whs-path {
            fill: none;
            stroke: #c4c8c5;
            stroke-width: 1.4;
            stroke-dasharray: 5 5;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .whs-path.whs-shown {
            opacity: 1;
        }

        .whs-node {
            position: absolute;
            background: #ffffff;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1.5px solid #e8eae8;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
            opacity: 0;
            transition: box-shadow 0.25s ease;
        }

        .whs-node svg {
            width: 50%;
            height: 50%;
        }

        /* Node Positions */
        .whs-top {
            width: 80px;
            height: 80px;
            left: 120px;
            top: 0;
        }

        .whs-right {
            width: 80px;
            height: 80px;
            right: 22px;
            top: 80px;
            background: #062617;
            border-color: #062617;
            border-radius: 22px;
            box-shadow: 0 6px 24px rgba(6, 38, 23, 0.30);
            z-index: 3;
        }

        .whs-bottom {
            width: 80px;
            height: 80px;
            left: 120px;
            bottom: 0;
        }

        .whs-left {
            width: 80px;
            height: 80px;
            left: 22px;
            top: 80px;
        }

        @keyframes flyNode {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .whs-node.whs-in {
            animation: flyNode 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }


/* ==============================================
   ANIMATION: catchall
   ============================================== */
.cavl-wrap {
        background: #f5f5f0;
        border-radius: 20px;
        padding: 28px 24px;
        box-sizing: border-box;
        max-width: 560px;
        margin: 0 auto;
        font-family: sans-serif;
    }

    .cavl-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .cavl-badge {
        font-size: 11px;
        font-weight: 600;
        background: #062617;
        color: #CCE88C;
        border-radius: 999px;
        padding: 4px 12px;
    }

    .cavl-live {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        color: #555;
        background: #fff;
        border: 1px solid #e8e8e8;
        border-radius: 999px;
        padding: 4px 12px;
    }

    .cavl-live-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #4CAF50;
        animation: cavlBlink 1.8s ease-in-out infinite;
    }

    @keyframes cavlBlink {

        0%,
        100% {
            opacity: 1;
            transform: scale(1)
        }

        50% {
            opacity: 0.4;
            transform: scale(0.7)
        }
    }

    .cavl-domains {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 14px;
    }

    .cavl-domain-card {
        background: #fff;
        border-radius: 14px;
        border: 1px solid #ececec;
        padding: 16px 14px;
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
        box-sizing: border-box;
        height: 196px;
    }

    .cavl-domain-card.cavl-in {
        opacity: 1;
        transform: translateY(0);
    }

    .cavl-domain-top {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
    }

    .cavl-domain-logo {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        background: #fff;
        border: 1px solid #ececec;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .cavl-domain-logo svg {
        width: 22px;
        height: 22px;
    }

    .cavl-domain-info h4 {
        font-size: 13px;
        font-weight: 600;
        color: #111;
        margin: 0 0 2px;
    }

    .cavl-domain-info span {
        font-size: 10px;
        color: #888;
    }

    .cavl-email-list {
        position: relative;
        height: 100px;
        overflow: hidden;
    }

    .cavl-email-row {
        position: absolute;
        left: 0;
        right: 0;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #f9f9f7;
        border-radius: 8px;
        padding: 0 8px;
        box-sizing: border-box;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    }

    .cavl-email-addr {
        font-size: 10.5px;
        font-family: monospace;
        color: #444;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 110px;
    }

    .cavl-tag {
        font-size: 9.5px;
        font-weight: 700;
        padding: 2px 7px;
        border-radius: 999px;
        flex-shrink: 0;
        margin-left: 4px;
    }

    .cavl-tag-clean {
        background: #dcfce7;
        color: #166534;
    }

    .cavl-tag-risky {
        background: #fee2e2;
        color: #991b1b;
    }
/* ==============================================
   ANIMATION: google-sheets
   ============================================== */

.gsi-section {
    background: #f7f7f7;
    border-radius: 20px;
    padding: 28px 24px 28px;
    box-sizing: border-box;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  /* ── Spreadsheet UI ── */
  .gsi-sheet {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.2,0.64,1);
  }
  .gsi-sheet.gsi-in { opacity: 1; transform: translateY(0); }

  /* toolbar */
  .gsi-toolbar {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .gsi-toolbar-dots { display:flex; gap:5px; }
  .gsi-dot { width:10px; height:10px; border-radius:50%; }
  .gsi-dot-r { background:#ff5f57; }
  .gsi-dot-y { background:#febc2e; }
  .gsi-dot-g { background:#28c840; }
  .gsi-toolbar-title {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    margin-left: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .gsi-sheets-icon {
    width: 16px; height: 16px;
    background: #0F9D58;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gsi-sheets-icon svg { width: 10px; height: 10px; }

  /* progress bar */
  .gsi-progress-wrap {
    height: 3px;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
  }
  .gsi-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0F9D58, #34D07A);
    width: 0%;
    transition: width 0.4s ease;
  }

  /* column headers */
  .gsi-col-header {
    display: grid;
    grid-template-columns: 28px 1fr 110px 90px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
  }
  .gsi-ch {
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    border-right: 1px solid #e8e8e8;
    letter-spacing: 0.03em;
  }
  .gsi-ch:last-child { border-right: none; }

  /* rows */
  .gsi-rows { height: 196px; overflow: hidden; }

  .gsi-row {
    display: grid;
    grid-template-columns: 28px 1fr 110px 90px;
    border-bottom: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
  }
  .gsi-row.gsi-row-in { opacity: 1; transform: translateX(0); }
  .gsi-row:hover { background: #f8fff9; }

  .gsi-cell {
    padding: 7px 10px;
    font-size: 12px;
    color: #333;
    border-right: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
  }
  .gsi-cell:last-child { border-right: none; }
  .gsi-cell-num { color: #bbb; font-size: 11px; justify-content: center; }

  /* status badges */
  .gsi-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }
  .gsi-badge.gsi-badge-show { opacity: 1; transform: scale(1); }
  .gsi-valid   { background: #e6f4ea; color: #137333; }
  .gsi-invalid { background: #fce8e6; color: #c5221f; }
  .gsi-risky   { background: #fef3e2; color: #b05a00; }
  .gsi-checking{ background: #f1f3f4; color: #888; }

  /* score dots */
  .gsi-score { display:flex; gap:2px; }
  .gsi-score-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #e0e0e0;
    transition: background 0.3s ease;
  }

  /* ── Stats row ── */
  .gsi-stats {
    display: flex;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fffe;
    border-top: 1px solid #e0f0e8;
  }
  .gsi-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .gsi-stat.gsi-stat-show { opacity: 1; }
  .gsi-stat-dot { width:8px; height:8px; border-radius:50%; }
  .gsi-stat-num { font-size:14px; font-weight:700; }

  /* powered badge */
  .gsi-powered {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    font-size: 10px;
    color: #aaa;
    font-weight: 500;
  }

  /* ── Text content ── */
  .gsi-content { }
  .gsi-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .gsi-content h3 svg { width:26px; height:26px; }
  .gsi-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 22px;
    max-width: 460px;
  }
  .gsi-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: 999px;
    border: 1.5px solid #222;
    background: transparent;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .gsi-btn:hover { background: #111; color: #fff; }


/* ==============================================
   ANIMATION: b2b
   ============================================== */

.upi-wrap {
    background: #f0f0ec;
    border-radius: 28px;
    border: 2.5px solid #fcfcfb;
    padding: 32px 24px;
    box-sizing: border-box;
    max-width: 360px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .upi-stage {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .upi-title {
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    min-height: 16px;
    transition: opacity 0.3s ease;
  }

  /* ── Stage items ── */
  .upi-stage-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.35s ease;
    position: absolute;
    pointer-events: none;
  }
  .upi-stage-item.upi-visible {
    opacity: 1;
    position: relative;
    pointer-events: all;
  }

  /* ── STAGE 1: Input ── */
  .upi-input-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e8e8e4;
    border-radius: 999px;
    border: 1.5px solid transparent;
    padding: 10px 10px 10px 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  .upi-input-wrap.upi-active { border-color: #a8c4ae; background: #fff; }

  .upi-input-email {
    flex: 1; font-size: 14px;
    font-family: monospace; color: #222; min-width: 0;
  }
  .upi-cursor {
    display: inline-block; width: 2px; height: 14px;
    background: #062617; margin-left: 1px;
    vertical-align: middle;
    animation: upiCursorBlink 0.7s step-end infinite;
  }
  @keyframes upiCursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }

  .upi-validate-btn {
    background: #CCE88C; color: #062617; border: none;
    border-radius: 999px; padding: 7px 14px;
    font-size: 11px; font-weight: 700;
    flex-shrink: 0; cursor: default; white-space: nowrap;
  }

  /* ── STAGE 2: Lightning ── */
  .upi-bolt-wrap {
    display: flex; flex-direction: column;
    align-items: center; gap: 14px; width: 100%;
  }

  .upi-bolt-outer {
    position: relative;
    width: 110px; height: 110px;
    display: flex; align-items: center; justify-content: center;
  }

  /* ring 1 — tight */
  .upi-ring1 {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 3px solid #062617;
    opacity: 0;
  }
  /* ring 2 — medium expand */
  .upi-ring2 {
    position: absolute; inset: -14px;
    border-radius: 50%;
    border: 2px solid rgba(6,38,23,0.35);
    opacity: 0;
  }
  /* ring 3 — wide expand */
  .upi-ring3 {
    position: absolute; inset: -28px;
    border-radius: 50%;
    border: 1.5px solid rgba(6,38,23,0.15);
    opacity: 0;
  }

  /* strike: bolt slams in from top */
  @keyframes upiBoltStrike {
    0%   { opacity:0; transform: scaleY(0.2) translateY(-30px); }
    25%  { opacity:1; transform: scaleY(1.1) translateY(3px); }
    45%  { opacity:0.8; transform: scaleY(0.95) translateY(0); }
    60%  { opacity:1; transform: scaleY(1) translateY(0); }
    100% { opacity:1; transform: scaleY(1) translateY(0); }
  }

  /* ring1 stays solid, pulses opacity */
  @keyframes upiRing1Anim {
    0%   { opacity:0; transform:scale(0.6); }
    20%  { opacity:1; transform:scale(1); }
    60%  { opacity:1; transform:scale(1); }
    100% { opacity:0.6; transform:scale(1); }
  }

  /* ring 2 expands outward */
  @keyframes upiRing2Anim {
    0%   { opacity:0;   transform:scale(0.7); }
    15%  { opacity:0.8; transform:scale(1); }
    70%  { opacity:0.5; transform:scale(1.1); }
    100% { opacity:0;   transform:scale(1.3); }
  }

  /* ring 3 expands further */
  @keyframes upiRing3Anim {
    0%   { opacity:0;   transform:scale(0.5); }
    20%  { opacity:0.5; transform:scale(1); }
    70%  { opacity:0.3; transform:scale(1.2); }
    100% { opacity:0;   transform:scale(1.5); }
  }

  /* flicker: bolt flashes twice like real lightning */
  @keyframes upiBoltFlicker {
    0%,100% { opacity:1; }
    30%     { opacity:0.5; }
    50%     { opacity:1; }
    70%     { opacity:0.7; }
    85%     { opacity:1; }
  }

  .upi-bolt-outer.upi-strike .upi-ring1 {
    animation: upiRing1Anim 1.6s ease-out forwards;
  }
  .upi-bolt-outer.upi-strike .upi-ring2 {
    animation: upiRing2Anim 1.8s ease-out forwards 0.05s;
  }
  .upi-bolt-outer.upi-strike .upi-ring3 {
    animation: upiRing3Anim 2s ease-out forwards 0.1s;
  }
  .upi-bolt-outer.upi-strike .upi-bolt-svg {
    animation: upiBoltStrike 0.35s cubic-bezier(0.2,0,0,1) forwards,
               upiBoltFlicker 0.6s ease-in-out 0.35s forwards;
  }

  .upi-bolt-svg {
    width: 54px; height: 54px;
    opacity: 0;
    transform-origin: center top;
  }

  .upi-bolt-label {
    font-size: 13px; font-weight: 600; color: #333; text-align: center;
  }

  /* ── STAGE 3: Result ── */
  .upi-result-wrap {
    width: 100%; display: flex;
    flex-direction: column; align-items: center; gap: 10px;
  }

  .upi-check-circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: #36D375;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #fff;
    opacity: 0; transform: scale(0.5);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
  .upi-check-circle.upi-piece-in  { opacity:1; transform:scale(1); }
  .upi-check-circle.upi-invalid-c { background: #e53935; }

  .upi-found-email {
    font-size: 14px; font-weight: 700; font-family: monospace;
    color: #111; text-align: center;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .upi-found-email.upi-piece-in { opacity:1; transform:translateY(0); }

  .upi-status-line {
    font-size: 13px; color: #888; text-align: center;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .upi-status-line.upi-piece-in { opacity:1; transform:translateY(0); }
  .upi-s-valid   { color: #062617; font-weight: 700; }
  .upi-s-invalid { color: #e53935; font-weight: 700; }

  .upi-score-pill {
    font-size: 11px; font-weight: 700;
    padding: 4px 14px; border-radius: 999px;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .upi-score-pill.upi-piece-in      { opacity:1; transform:translateY(0); }
  .upi-pill-valid   { background: #dcfce7; color: #166534; }
  .upi-pill-invalid { background: #fee2e2; color: #991b1b; }


/* ==============================================
   ANIMATION: rate-limit
   ============================================== */

.crl-wrap {
    background: #f5f5f0;
    border-radius: 20px;
    padding: 28px 24px;
    box-sizing: border-box;
    max-width: 480px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* ── Header ── */
  .crl-header {
    display: flex; align-items: center; justify-content: space-between;
  }
  .crl-badge {
    font-size: 11px; font-weight: 600;
    background: #062617; color: #CCE88C;
    border-radius: 999px; padding: 4px 12px;
  }
  .crl-live {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: #555;
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 999px; padding: 4px 12px;
  }
  .crl-live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4CAF50;
    animation: crlBlink 1.8s ease-in-out infinite;
  }
  @keyframes crlBlink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

  /* ── Plan toggle ── */
  .crl-plans {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
  .crl-plan {
    background: #fff; border-radius: 10px;
    border: 1.5px solid #e8e8e8;
    padding: 10px 8px; text-align: center;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease,
                border-color 0.25s ease, background 0.25s ease;
  }
  .crl-plan.crl-in { opacity:1; transform:translateY(0); }
  .crl-plan.crl-plan-active {
    border-color: #062617;
    background: #062617;
  }
  .crl-plan-name {
    font-size: 11px; font-weight: 700; color: #555;
    display: block; margin-bottom: 2px;
    transition: color 0.25s ease;
  }
  .crl-plan.crl-plan-active .crl-plan-name { color: #CCE88C; }
  .crl-plan-val {
    font-size: 13px; font-weight: 800; color: #111;
    transition: color 0.25s ease;
  }
  .crl-plan.crl-plan-active .crl-plan-val { color: #fff; }
  .crl-plan-unit {
    font-size: 9px; color: #aaa; font-weight: 500;
    transition: color 0.25s ease;
  }
  .crl-plan.crl-plan-active .crl-plan-unit { color: #CCE88C; opacity: 0.7; }

  /* ── Meter card ── */
  .crl-meter-card {
    background: #fff; border-radius: 14px;
    border: 1px solid #e8e8e8; padding: 18px 16px;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .crl-meter-card.crl-in { opacity:1; transform:translateY(0); }

  .crl-meter-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 10px;
  }
  .crl-meter-label { font-size: 12px; font-weight: 600; color: #333; }
  .crl-meter-count {
    font-size: 12px; font-weight: 700; color: #062617;
    font-family: monospace;
  }

  /* bar track */
  .crl-bar-track {
    height: 10px; border-radius: 999px;
    background: #f0f0eb; overflow: hidden;
    position: relative; margin-bottom: 6px;
  }
  .crl-bar-fill {
    height: 100%; border-radius: 999px;
    width: 0%;
    background: linear-gradient(90deg, #062617, #4a8a5a);
    transition: width 0.12s ease, background 0.3s ease;
    position: relative;
  }
  .crl-bar-fill.crl-bar-danger {
    background: linear-gradient(90deg, #dc2626, #ef4444);
  }
  .crl-bar-fill.crl-bar-safe {
    background: linear-gradient(90deg, #062617, #4CAF50);
  }

  /* limit line */
  .crl-limit-line {
    position: absolute; top: -2px; bottom: -2px;
    width: 2px; background: #e53935;
    border-radius: 1px;
    transition: left 0.6s cubic-bezier(0.34,1.2,0.64,1);
  }
  .crl-limit-line::after {
    content: attr(data-label);
    position: absolute; top: -20px; left: 4px;
    font-size: 9px; font-weight: 700; color: #e53935;
    white-space: nowrap; font-family: var(--font-sans,sans-serif);
  }

  .crl-bar-labels {
    display: flex; justify-content: space-between;
    font-size: 9px; color: #bbb; font-weight: 500;
  }

  /* ── Request feed ── */
  .crl-feed {
    display: flex; flex-direction: column; gap: 5px;
    /* fixed height to prevent flicker */
    height: 90px; overflow: hidden; position: relative;
  }
  .crl-req-row {
    position: absolute;
    left: 0; right: 0;
    display: flex; align-items: center; gap: 8px;
    background: #f9f9f7; border-radius: 8px;
    padding: 6px 10px;
    font-size: 11px; font-family: monospace;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .crl-req-row.crl-row-in { opacity:1; }
  .crl-req-dot {
    width: 6px; height: 6px; border-radius: 50%;
    flex-shrink: 0;
  }
  .crl-req-text { color: #555; flex:1; }
  .crl-req-badge {
    font-size: 9px; font-weight: 700;
    padding: 2px 7px; border-radius: 999px;
    flex-shrink: 0;
  }
  .crl-badge-ok      { background: #dcfce7; color: #166534; }
  .crl-badge-limited { background: #fee2e2; color: #991b1b; }
  .crl-badge-custom  { background: #fef3c7; color: #92400e; }

  /* ── Status banner ── */
  .crl-status {
    border-radius: 10px; padding: 10px 14px;
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600;
    opacity: 0; transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease,
                background 0.3s ease, border-color 0.3s ease;
    border: 1.5px solid #e8e8e8; background: #fff;
  }
  .crl-status.crl-s-show { opacity:1; transform:translateY(0); }
  .crl-status.crl-s-warn {
    background: #fef3c7; border-color: #f59e0b; color: #92400e;
  }
  .crl-status.crl-s-ok {
    background: #dcfce7; border-color: #4CAF50; color: #166534;
  }
  .crl-status-icon { font-size: 16px; flex-shrink: 0; }


/* ==============================================
   ANIMATION: enterprise
   ============================================== */

.animation--enterprise {
    width: 100%;
    max-width: 100% !important;
    padding: 64px 64px !important;
    border-radius: 20px !important;
    background: #f5f5f047 !important;
    height: 100%;
    box-sizing: border-box;
    /* box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06); */
    border: 1px solid #d2d2d278;
    margin: 0 !important;
}

.ent-wrap {
    background: #ffffff00;
    border-radius: 20px;
    padding: 32px 24px;
    box-sizing: border-box;
    max-width: 480px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    position: relative;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* subtle grid dots bg */
  .ent-grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, #cce88c 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.18;
    pointer-events: none;
  }

  /* ── Center logo ── */
  .ent-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    width: 100%;
    height: 300px;
  }

  .ent-logo-ring {
    width: 88px; height: 88px;
    border-radius: 50%;
    background: #e8f5e2;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  }
  .ent-logo-ring.ent-in { opacity:1; transform:scale(1); }

  /* pulse rings on logo */
  .ent-logo-ring::before,
  .ent-logo-ring::after {
    content: '';
    position: absolute; border-radius: 50%;
    border: 1.5px solid rgba(6,38,23,0.12);
    animation: entRingPulse 2.4s ease-out infinite;
  }
  .ent-logo-ring::before { inset: -16px; animation-delay: 0s; }
  .ent-logo-ring::after  { inset: -32px; animation-delay: 0.6s; }
  @keyframes entRingPulse {
    0%   { opacity:0.8; transform:scale(1); }
    100% { opacity:0;   transform:scale(1.15); }
  }

  .ent-logo-inner {
    width: 60px; height: 60px;
    background: #062617;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
  }

  /* ── Stat chips — positioned absolutely around center ── */
  .ent-stat {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34,1.3,0.64,1);
    z-index: 2;
    pointer-events: none;
  }
  .ent-stat.ent-stat-in { opacity:1; transform:scale(1); }

  .ent-stat-val {
    font-size: 18px;
    font-weight: 800;
    color: #062617;
    line-height: 1;
    white-space: nowrap;
  }
  .ent-stat-lbl {
    font-size: 9px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
    text-align: center;
  }

  /* connector dashes from stat to center */
  .ent-connector {
    position: absolute;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .ent-connector.ent-conn-in { opacity:1; }

  /* positions — top, right, bottom, left, top-right */
  .ent-pos-top    { top: 12px;  left: 50%; transform: translateX(-50%); }
  .ent-pos-right  { right: 10px; top: 50%; transform: translateY(-50%); }
  .ent-pos-bottom { bottom: 12px; left: 50%; transform: translateX(-50%); }
  .ent-pos-left   { left: 10px;  top: 50%; transform: translateY(-50%); }
  .ent-pos-tr     { top: 28px;  right: 32px; }
  .ent-pos-bl     { bottom: 28px; left: 32px; }

  /* live dot indicator */
  .ent-live-row {
    position: absolute;
    bottom: 10px; right: 16px;
    display: flex; align-items: center; gap: 5px;
    font-size: 9px; font-weight: 600; color: #aaa;
    letter-spacing: 0.05em; text-transform: uppercase;
    z-index: 3;
    opacity: 0; transition: opacity 0.4s ease;
  }
  .ent-live-row.ent-in { opacity:1; }
  .ent-live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #4CAF50;
    animation: entLivePulse 1.8s ease-in-out infinite;
  }
  @keyframes entLivePulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }


/* ==============================================
   ANIMATION: api
   ============================================== */

.apiv-wrap {
    background: #f5f5f0;
    border-radius: 20px;
    padding: 24px;
    box-sizing: border-box;
    max-width: 560px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
  }

  /* ── Header ── */
  .apiv-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
  }
  .apiv-badge {
    font-size: 11px; font-weight: 600;
    background: #062617; color: #CCE88C;
    border-radius: 999px; padding: 4px 12px;
  }
  .apiv-uptime {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: #555;
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 999px; padding: 4px 12px;
  }
  .apiv-uptime-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4CAF50;
    animation: apivBlink 1.8s ease-in-out infinite;
  }
  @keyframes apivBlink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

  /* ── Main two columns ── */
  .apiv-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }

  /* shared card style */
  .apiv-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    padding: 16px 14px;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
  }
  .apiv-card.apiv-in { opacity:1; transform:translateY(0); }
  .apiv-card-title {
    font-size: 11px; font-weight: 600; color: #888;
    margin-bottom: 10px; letter-spacing: 0.04em; text-transform: uppercase;
    display: flex; align-items: center; justify-content: space-between;
  }

  /* ── LEFT: Request builder ── */
  /* method + endpoint */
  .apiv-endpoint {
    display: flex; align-items: center; gap: 6px;
    background: #f5f5f0; border-radius: 8px;
    padding: 7px 10px; margin-bottom: 10px;
  }
  .apiv-method {
    font-size: 10px; font-weight: 800;
    background: #CCE88C; color: #062617;
    border-radius: 4px; padding: 2px 6px;
    flex-shrink: 0;
  }
  .apiv-url {
    font-size: 10px; font-family: monospace; color: #555;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }

  /* param rows */
  .apiv-param-row {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #f5f5f0;
    opacity: 0; transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .apiv-param-row:last-child { border-bottom: none; }
  .apiv-param-row.apiv-p-in { opacity:1; transform:translateX(0); }
  .apiv-param-key   { font-size: 10px; font-family: monospace; color: #aaa; }
  .apiv-param-val   { font-size: 10px; font-family: monospace; color: #062617; font-weight: 600; }

  /* send button */
  .apiv-send-btn {
    width: 100%; height: 30px; border-radius: 8px;
    border: none; background: #062617; color: #CCE88C;
    font-size: 11px; font-weight: 700; cursor: default;
    margin-top: 10px; display: flex; align-items: center;
    justify-content: center; gap: 6px;
    position: relative; overflow: hidden;
  }
  .apiv-send-progress {
    position: absolute; left: 0; top: 0; bottom: 0;
    background: rgba(204,232,140,0.15);
    width: 0%; transition: none;
    border-radius: 8px;
  }

  /* ── RIGHT: Response panel ── */
  .apiv-status-row {
    display: flex; align-items: center; gap: 6px; margin-bottom: 10px;
  }
  .apiv-status-code {
    font-size: 11px; font-weight: 700;
    background: #dcfce7; color: #166534;
    border-radius: 4px; padding: 2px 8px;
  }
  .apiv-status-text { font-size: 10px; color: #aaa; }
  .apiv-latency {
    margin-left: auto; font-size: 10px;
    font-weight: 600; color: #062617;
  }

  /* JSON response rows */
  .apiv-json-row {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #f5f5f0;
    opacity: 0; transform: translateX(6px);
    transition: opacity 0.28s ease, transform 0.28s ease;
  }
  .apiv-json-row:last-child { border-bottom: none; }
  .apiv-json-row.apiv-j-in { opacity:1; transform:translateX(0); }
  .apiv-json-key { font-size: 10px; font-family: monospace; color: #aaa; }
  .apiv-json-val { font-size: 10px; font-family: monospace; font-weight: 700; }
  .apiv-jv-green  { color: #166534; }
  .apiv-jv-red    { color: #991b1b; }
  .apiv-jv-yellow { color: #92400e; }
  .apiv-jv-dim    { color: #ddd; }
  .apiv-jv-blue   { color: #062617; }

  /* ── Stat cards ── */
  .apiv-stats {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
  }
  .apiv-stat {
    background: #fff; border-radius: 12px;
    border: 1px solid #ececec; padding: 12px 10px;
    text-align: center;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .apiv-stat.apiv-in { opacity:1; transform:translateY(0); }
  .apiv-stat-val { font-size: 20px; font-weight: 700; display:block; line-height:1; margin-bottom:4px; }
  .apiv-stat-lbl { font-size: 10px; color: #888; font-weight: 500; }


/* ==============================================
   ANIMATION: widget-1
   ============================================== */

  .ww-section {
    background: #f7f7f7;
    border-radius: 20px;
    box-sizing: border-box;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  }

  /* ── Demo area ── */
  .ww-demo {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 18px 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 0.5px solid #e8e8e8;
    min-height: 160px;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  }

  .ww-demo-label {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  }

  /* fake form */
  .ww-form-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .ww-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
  }

  .ww-input {
    width: 100%;
    height: 38px;
    border-radius: 9px;
    border: 1.5px solid #e0e0e0;
    padding: 0 36px 0 12px;
    font-size: 13px;
    color: #222;
    background: #fafafa;
    box-sizing: border-box;
    outline: none;
    font-family: var(--font-sans, sans-serif);
    pointer-events: none;
    transition: border-color 0.3s ease;
  }
  .ww-input.ww-valid   { border-color: #16a34a; background: #f0fdf4; }
  .ww-input.ww-invalid { border-color: #dc2626; background: #fef2f2; }
  .ww-input.ww-checking{ border-color: #d97706; background: #fffbeb; }

  /* cursor blink */
  .ww-cursor {
    display: inline-block;
    width: 1.5px;
    height: 13px;
    background: #555;
    margin-left: 1px;
    vertical-align: middle;
    animation: wwBlink 0.75s step-end infinite;
  }
  .ww-cursor.ww-hidden { display: none; }
  @keyframes wwBlink { 0%,100%{opacity:1} 50%{opacity:0} }

  /* status icon inside input */
  .ww-status-icon {
    position: absolute;
    right: 10px;
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .ww-status-icon.ww-show { opacity: 1; }

  /* spinner */
  .ww-spinner {
    position: absolute;
    right: 10px;
    width: 14px; height: 14px;
    border: 2px solid #e0e0e0;
    border-top-color: #d97706;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .ww-spinner.ww-show {
    opacity: 1;
    animation: wwSpin 0.6s linear infinite;
  }
  @keyframes wwSpin { to { transform: rotate(360deg); } }

  /* status badge below input */
  .ww-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 2px;
	display: none;
  }
  .ww-badge.ww-show { opacity: 1; transform: translateY(0); }
  .ww-badge.ww-valid-badge   { background: #dcfce7; color: #15803d; }
  .ww-badge.ww-invalid-badge { background: #fee2e2; color: #b91c1c; }

  /* submit btn (decorative) */
  .ww-submit {
    height: 38px;
    padding: 0 14px;
    border-radius: 9px;
    background: #062617;
    color: #CCE88C;
    font-size: 12px;
    font-weight: 600;
    border: none;
    cursor: default;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--font-sans, sans-serif);
  }

  /* widget top bar */
  .ww-demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }

  /* widget badge top-right */
  .ww-powered {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #bbb;
    font-weight: 500;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
	padding-top: 8px;
  }
  .ww-powered svg { width: 12px; height: 12px; }

  /* ── Platform icons row ── */
  .ww-platforms {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .ww-plat-card {
    width: 44px; height: 44px;
    background: #fff;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ebebeb;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(10px) scale(0.85);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
  }
  .ww-plat-card:hover {
    transform: translateY(-2px) scale(1.1) !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.10);
  }
  .ww-plat-card svg { width: 60%; height: 60%; }

  @keyframes wwPlatIn {
    to { opacity:1; transform: translateY(0) scale(1); }
  }
  .ww-plat-card.ww-in {
    animation: wwPlatIn 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
  }

/* ==============================================
   ANIMATION: widget-2
   ============================================== */

.wwg-section {
    background: #f0f0ec;
    border-radius: 28px;
    border: none;
    padding: 24px;
    box-sizing: border-box;
    max-width: 380px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  }

  .wwg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .wwg-icon-card {
    aspect-ratio: 1;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ebebeb;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.78);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s ease, filter 0.2s ease;
  }
  .wwg-icon-card svg { width: 54%; height: 54%; }

  @keyframes wwgCardIn {
    to { opacity: 1; transform: scale(1); }
  }
  .wwg-icon-card.wwg-visible {
    animation: wwgCardIn 0.42s cubic-bezier(0.34,1.56,0.64,1) forwards;
  }
  .wwg-icon-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    filter: brightness(0.97);
  }

  /* ripple pulse */
  .wwg-ripple {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(6,38,23,0.22);
    width: 20px; height: 20px;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(0);
    pointer-events: none;
    animation: wwgRippleOut 0.9s ease-out forwards;
  }
  @keyframes wwgRippleOut {
    to { transform: translate(-50%,-50%) scale(6); opacity: 0; }
  }
  .wwg-icon-card.wwg-pulse {
    border-color: rgba(6,38,23,0.25);
    box-shadow: 0 4px 14px rgba(6,38,23,0.10);
  }



/* ==============================================
   ANIMATION: email-finder-api
   ============================================== */

.efa-wrap {
    background: #f0f0ec;
    border-radius: 28px;
    border: 2.5px solid #f0f0ec;
    padding: 28px 24px;
    box-sizing: border-box;
    max-width: 480px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  /* ── Header ── */
  .efa-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  .efa-header.efa-in { opacity: 1; transform: translateY(0); }

  .efa-badge {
    font-size: 11px; font-weight: 700;
    background: #062617; color: #CCE88C;
    border-radius: 999px; padding: 4px 12px;
  }
  .efa-live {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: #555;
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 999px; padding: 4px 12px;
  }
  .efa-live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4CAF50;
    animation: efaBlink 1.8s ease-in-out infinite;
  }
  @keyframes efaBlink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

  /* ── Request card ── */
  .efa-req-card {
    background: #fff;
    border-radius: 18px;
    border: 1.5px solid #eee;
    padding: 16px 14px;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
  }
  .efa-req-card.efa-in { opacity: 1; transform: translateY(0); }

  .efa-req-label {
    font-size: 10px; font-weight: 700; color: #aaa;
    text-transform: uppercase; letter-spacing: 0.07em;
    margin-bottom: 12px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .efa-method {
    background: #CCE88C; color: #062617;
    font-size: 10px; font-weight: 800;
    padding: 2px 8px; border-radius: 4px;
    letter-spacing: 0;
  }

  /* param rows */
  .efa-param {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f0;
    opacity: 0; transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .efa-param:last-child { border-bottom: none; }
  .efa-param.efa-p-in { opacity: 1; transform: translateX(0); }
  .efa-pkey { font-size: 11px; font-family: monospace; color: #aaa; }
  .efa-pval {
    font-size: 11px; font-family: monospace;
    color: #062617; font-weight: 600;
    text-align: right;
  }
  .efa-pval-typing { color: #062617; }

  /* cursor */
  .efa-cursor {
    display: inline-block; width: 1.5px; height: 11px;
    background: #062617; margin-left: 1px;
    vertical-align: middle;
    animation: efaCurBlink 0.7s step-end infinite;
  }
  @keyframes efaCurBlink { 0%,100%{opacity:1} 50%{opacity:0} }
  .efa-cursor.efa-off { display: none; }

  /* send button */
  .efa-send-btn {
    width: 100%; height: 34px; border-radius: 10px;
    border: none; background: #062617; color: #CCE88C;
    font-size: 12px; font-weight: 700;
    margin-top: 12px; cursor: default;
    display: flex; align-items: center; justify-content: center; gap: 7px;
    position: relative; overflow: hidden;
    transition: background 0.3s ease;
  }
  .efa-send-btn.efa-loading { background: #1a4a2e; }
  .efa-send-progress {
    position: absolute; left: 0; top: 0; bottom: 0;
    background: rgba(204,232,140,0.2);
    width: 0%;
    border-radius: 10px;
  }
  .efa-spinner {
    width: 12px; height: 12px;
    border: 2px solid rgba(204,232,140,0.3);
    border-top-color: #CCE88C;
    border-radius: 50%; display: none;
  }
  .efa-spinner.efa-spin { display: block; animation: efaSpin 0.55s linear infinite; }
  @keyframes efaSpin { to { transform: rotate(360deg); } }

  /* ── Results ── */
  .efa-results {
    display: flex; flex-direction: column; gap: 8px;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
  }
  .efa-results.efa-in { opacity: 1; transform: translateY(0); }

  .efa-res-header {
    display: flex; align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
  }
  .efa-res-title { font-size: 11px; font-weight: 700; color: #333; }
  .efa-res-count {
    font-size: 10px; font-weight: 700;
    background: #dcfce7; color: #166534;
    border-radius: 999px; padding: 2px 8px;
  }

  /* result row */
  .efa-res-row {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #eee;
    padding: 12px 14px;
    display: flex; align-items: center; gap: 12px;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34,1.3,0.64,1);
  }
  .efa-res-row.efa-r-in { opacity: 1; transform: translateY(0); }

  .efa-res-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800; color: #fff;
    flex-shrink: 0;
  }
  .efa-res-
  .efa-res-name {
    font-size: 13px; font-weight: 700; color: #111;
    margin-bottom: 3px;
  }
  .efa-res-email {
    font-size: 11px; font-family: monospace;
    color: #062617; font-weight: 600;
  }
  .efa-res-meta {
    display: flex; flex-direction: column;
    align-items: flex-end; gap: 4px; flex-shrink: 0;
  }
  .efa-conf-pill {
    font-size: 10px; font-weight: 700;
    padding: 2px 8px; border-radius: 999px;
  }
  .efa-conf-high { background: #dcfce7; color: #166534; }
  .efa-conf-med  { background: #fef3c7; color: #92400e; }
  .efa-pattern {
    font-size: 9px; color: #aaa; font-family: monospace;
    font-weight: 500;
  }

  /* ── Use case tags ── */
  .efa-tags {
    display: flex; gap: 6px; flex-wrap: wrap;
    opacity: 0; transition: opacity 0.4s ease;
  }
  .efa-tags.efa-in { opacity: 1; }
  .efa-tag {
    font-size: 10px; font-weight: 600; color: #555;
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 999px; padding: 4px 10px;
    opacity: 0; transform: scale(0.85);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.4,0.64,1);
  }
  .efa-tag.efa-t-in { opacity: 1; transform: scale(1); }

/* ==============================================
   ANIMATION: rate-limits-custom
   ============================================== */

.crl2-wrap {
    background: #f0f0ec;
    border-radius: 28px;
    border: 2.5px solid #062617;
    padding: 32px 24px;
    box-sizing: border-box;
    width: 360px;
    max-width: 360px;
    min-width: 360px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    gap: 18px;
  }

  /* title label */
  .crl2-title {
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    transition: opacity 0.3s ease;
  }

  /* ── Plan pill selector ── */
  .crl2-plans {
    display: flex;
    gap: 6px;
    width: 100%;
    justify-content: center;
  }
  .crl2-plan {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    border-radius: 12px;
    border: 1.5px solid #e0e0db;
    background: #fff;
    cursor: default;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(8px);
  }
  .crl2-plan.crl2-p-in {
    opacity: 1;
    transform: translateY(0);
  }
  .crl2-plan.crl2-plan-active {
    background: #062617;
    border-color: #062617;
  }
  .crl2-plan-name {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #888;
    margin-bottom: 2px;
    transition: color 0.3s ease;
  }
  .crl2-plan.crl2-plan-active .crl2-plan-name { color: #CCE88C; }
  .crl2-plan-val {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #111;
    transition: color 0.3s ease;
  }
  .crl2-plan.crl2-plan-active .crl2-plan-val { color: #fff; }
  .crl2-plan-unit {
    display: block;
    font-size: 9px;
    color: #bbb;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  .crl2-plan.crl2-plan-active .crl2-plan-unit { color: rgba(204,232,140,0.6); }

  /* ── Meter ── */
  .crl2-meter {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    padding: 14px 14px 12px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.1,0.64,1);
  }
  .crl2-meter.crl2-m-in { opacity: 1; transform: translateY(0); }

  .crl2-meter-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  .crl2-meter-label {
    font-size: 11px;
    font-weight: 600;
    color: #555;
  }
  .crl2-meter-count {
    font-size: 11px;
    font-weight: 800;
    color: #062617;
    font-family: monospace;
    min-width: 90px;
    text-align: right;
    transition: color 0.3s ease;
  }
  .crl2-meter-count.crl2-danger { color: #e53935; }

  .crl2-bar-track {
    height: 10px;
    background: #f0f0eb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 5px;
  }
  .crl2-bar-fill {
    height: 100%;
    border-radius: 999px;
    width: 0%;
    transition: width 0.9s cubic-bezier(0.4,0,0.2,1),
                background 0.4s ease;
  }
  .crl2-bar-fill.crl2-safe    { background: #4CAF50; }
  .crl2-bar-fill.crl2-warn    { background: #f59e0b; }
  .crl2-bar-fill.crl2-danger  { background: #e53935; }

  .crl2-bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: #ccc;
    font-weight: 500;
  }

  /* ── Status pill ── */
  .crl2-status {
    width: 100%;
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease,
                background 0.4s ease, border-color 0.4s ease;
    border: 1.5px solid #e8e8e8;
    background: #fff;
    box-sizing: border-box;
  }
  .crl2-status.crl2-s-in { opacity: 1; transform: translateY(0); }
  .crl2-status.crl2-s-ok   { background: #dcfce7; border-color: #4CAF50; color: #166534; }
  .crl2-status.crl2-s-warn { background: #fef3c7; border-color: #f59e0b; color: #92400e; }
  .crl2-status.crl2-s-cust { background: #062617; border-color: #062617; color: #CCE88C; }
  .crl2-status-icon { font-size: 15px; flex-shrink: 0; }

/* ==============================================
   ANIMATION: dashboard-analytics
   ============================================== */
.dba-wrap {
    border-radius: 24px;
    padding: 32px 24px 28px;
    box-sizing: border-box;
    max-width: 480px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dba-stage {
    position: relative;
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dba-card {
    position: absolute;
    width: 220px;
    background: #fff;
    border-radius: 24px;
    padding: 18px 16px 16px;
    box-sizing: border-box;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    will-change: transform, opacity;
    transition: transform 0.7s cubic-bezier(0.34,1.2,0.64,1),
                opacity 0.7s ease, box-shadow 0.7s ease;
  }

  .dba-card.dba-pos-front {
    transform: translateX(0) scale(1) rotate(0deg);
    z-index: 3; opacity: 1;
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  }
  .dba-card.dba-pos-left {
    transform: translateX(-100px) scale(0.82) rotate(-6deg);
    z-index: 1; opacity: 0.85;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }
  .dba-card.dba-pos-right {
    transform: translateX(100px) scale(0.82) rotate(6deg);
    z-index: 2; opacity: 0.85;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  /* File header — icon + name, no bg on icon */
  .dba-file-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }
  .dba-file-name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Gray inner bg holds donut + date + buttons */
  .dba-inner-bg {
    background: #f5f5f0;
    border-radius: 16px;
    padding: 14px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .dba-donut-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dba-donut-svg {
    width: 140px; height: 140px;
    transform: rotate(-90deg);
  }
  .dba-donut-center {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dba-donut-pct {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    line-height: 1;
  }

  .dba-date {
    font-size: 12px;
    color: #888;
    letter-spacing: 0.02em;
  }

  .dba-actions {
    display: flex;
    gap: 8px;
    width: 100%;
  }
  .dba-btn {
    height: 32px;
    border-radius: 999px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    gap: 4px;
    font-size: 10px; font-weight: 600; color: #444;
    cursor: default;
    white-space: nowrap;
    padding: 0 8px;
  }
  .dba-btn-details  { flex: 0 0 auto; }
  .dba-btn-download { flex: 1; }

  .dba-dots {
    display: flex; gap: 6px; margin-top: 20px;
  }
  .dba-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #ddd;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .dba-dot.dba-dot-active {
    background: #062617; transform: scale(1.3);
  }

/* ==============================================
   ANIMATION: quick-response
   ============================================== */
.qr-wrap {
    background: #f5f5f0;
    border-radius: 20px;
    padding: 24px;
    box-sizing: border-box;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* ── Header ── */
  .qr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .qr-header.qr-in { opacity: 1; transform: translateY(0); }

  .qr-badge {
    font-size: 11px; font-weight: 700;
    background: #062617; color: #CCE88C;
    border-radius: 999px; padding: 4px 12px;
  }
  .qr-live {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: #555;
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 999px; padding: 4px 12px;
  }
  .qr-live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4CAF50;
    animation: qrBlink 1.8s ease-in-out infinite;
  }
  @keyframes qrBlink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

  /* ── Mode toggle ── */
  .qr-toggle {
    display: flex;
    background: #e8e8e4;
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
  }
  .qr-toggle.qr-in { opacity: 1; }
  .qr-tab {
    flex: 1;
    text-align: center;
    padding: 7px 0;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    cursor: default;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .qr-tab.qr-tab-active {
    background: #062617;
    color: #CCE88C;
  }

  /* ── Single validation card ── */
  .qr-single-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    padding: 16px 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.1,0.64,1);
    min-height: 130px;
    box-sizing: border-box;
    width: 100%;
  }
  .qr-single-card.qr-in { opacity: 1; transform: translateY(0); }

  .qr-email-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }
  .qr-email-input {
    flex: 1;
    background: #f5f5f0;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12px;
    font-family: monospace;
    color: #333;
    border: 1.5px solid #e8e8e8;
    min-width: 0;
    height: 36px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    transition: border-color 0.3s ease;
  }
  .qr-email-input.qr-typing { border-color: #CCE88C; }
  .qr-cursor {
    display: inline-block; width: 1.5px; height: 11px;
    background: #062617; margin-left: 1px;
    vertical-align: middle;
    animation: qrCurBlink 0.7s step-end infinite;
  }
  @keyframes qrCurBlink { 0%,100%{opacity:1} 50%{opacity:0} }
  .qr-cursor.qr-off { display: none; }

  .qr-validate-btn {
    background: #CCE88C;
    color: #062617;
    border: none;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 11px;
    font-weight: 700;
    cursor: default;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
  }
  .qr-validate-btn.qr-sending {
    background: #b8d670;
    transform: scale(0.95);
  }

  /* response meter */
  .qr-response-wrap {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    min-height: 72px;
    width: 100%;
  }
  .qr-response-wrap.qr-r-in { opacity: 1; transform: translateY(0); }

  .qr-response-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
  }
  .qr-response-label {
    font-size: 10px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .qr-response-time {
    font-size: 18px;
    font-weight: 800;
    color: #062617;
    font-family: monospace;
    line-height: 1;
  }
  .qr-response-unit {
    font-size: 11px;
    font-weight: 500;
    color: #aaa;
    margin-left: 2px;
  }

  /* animated speed bar */
  .qr-speed-track {
    height: 6px;
    background: #f0f0eb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .qr-speed-fill {
    height: 100%;
    border-radius: 999px;
    width: 0%;
    background: #4CAF50;
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
  }

  /* result pills */
  .qr-result-pills {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    overflow: hidden;
    height: 22px;
    align-items: center;
  }
  .qr-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.4,0.64,1);
  }
  .qr-pill.qr-p-in { opacity: 1; transform: scale(1); }
  .qr-pill-green  { background: #dcfce7; color: #166534; }
  .qr-pill-red    { background: #fee2e2; color: #991b1b; }
  .qr-pill-yellow { background: #fef3c7; color: #92400e; }
  .qr-pill-blue   { background: #e0f2fe; color: #075985; }

  /* ── Bulk card ── */
  .qr-bulk-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    padding: 16px 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.1,0.64,1);
    display: none;
  }
  .qr-bulk-card.qr-in { opacity: 1; transform: translateY(0); }

  .qr-bulk-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }
  .qr-bulk-title {
    font-size: 12px;
    font-weight: 700;
    color: #333;
  }
  .qr-bulk-count {
    font-size: 11px;
    font-weight: 700;
    color: #062617;
    font-family: monospace;
  }

  /* bulk progress bars */
  .qr-bulk-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
  }
  .qr-bulk-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .qr-bulk-bar-label {
    font-size: 10px;
    font-weight: 600;
    color: #888;
    width: 54px;
    flex-shrink: 0;
  }
  .qr-bulk-bar-track {
    flex: 1;
    height: 8px;
    background: #f0f0eb;
    border-radius: 999px;
    overflow: hidden;
  }
  .qr-bulk-bar-fill {
    height: 100%;
    border-radius: 999px;
    width: 0%;
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
  }
  .qr-bulk-bar-val {
    font-size: 10px;
    font-weight: 700;
    width: 32px;
    text-align: right;
    flex-shrink: 0;
    font-family: monospace;
  }

  /* throughput stat */
  .qr-throughput {
    background: #062617;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .qr-throughput.qr-t-in { opacity: 1; transform: translateY(0); }
  .qr-throughput-label {
    font-size: 11px;
    color: rgba(204,232,140,0.7);
    font-weight: 500;
  }
  .qr-throughput-val {
    font-size: 20px;
    font-weight: 800;
    color: #CCE88C;
    font-family: monospace;
    line-height: 1;
  }
  .qr-throughput-unit {
    font-size: 10px;
    color: rgba(204,232,140,0.6);
    margin-top: 2px;
    text-align: right;
  }


  .qr-file-card { background:#fff; border-radius:14px; border:1px solid #e8e8e8; padding:14px 16px; }
  .qr-file-top { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
  .qr-file-icon { width:36px; height:40px; border-radius:6px; background:#0f9d58; display:flex; align-items:center; justify-content:center; font-size:9px; font-weight:800; color:white; flex-shrink:0; position:relative; }
  .qr-file-icon::after { content:''; position:absolute; top:0; right:0; width:10px; height:10px; background:rgba(255,255,255,0.3); clip-path:polygon(100% 0,100% 100%,0 100%); border-radius:0 4px 0 0; }
  .qr-file-info { flex:1; }
  .qr-file-name { font-size:13px; font-weight:600; color:#222; margin-bottom:2px; }
  .qr-file-size { font-size:10px; color:#aaa; }
  .qr-file-close { width:20px; height:20px; border-radius:50%; background:#f0f0eb; border:none; font-size:11px; color:#888; cursor:default; display:flex; align-items:center; justify-content:center; }
  .qr-prog-wrap { display:flex; align-items:center; gap:10px; }
  .qr-prog-size { font-size:10px; color:#bbb; min-width:38px; }
  .qr-prog-bar-bg { flex:1; height:5px; background:#f0f0eb; border-radius:999px; overflow:hidden; }
  .qr-prog-bar-fill { height:100%; border-radius:999px; width:0%; background:#0f9d58; }
  .qr-prog-pct { font-size:11px; font-weight:600; color:#888; min-width:30px; text-align:right; }
  .qr-done-row { display:flex; align-items:center; justify-content:space-between; margin-top:8px; opacity:0; transition:opacity 0.4s ease; min-height:24px; }
  .qr-done-row.qr-done-show { opacity:1; }
  .qr-done-chips { display:flex; gap:5px; flex-wrap:wrap; }
  .qr-chip { font-size:10px; font-weight:600; padding:2px 8px; border-radius:999px; }
  .qr-chip-g { background:#dcfce7; color:#166534; }
  .qr-chip-r { background:#fee2e2; color:#991b1b; }
  .qr-chip-y { background:#fef3c7; color:#92400e; }
  .qr-dl-btn { font-size:11px; font-weight:600; color:#062617; background:#CCE88C; border:none; border-radius:999px; padding:4px 12px; cursor:default; flex-shrink:0; }
/* ==============================================
   ANIMATION: team
   ============================================== */
.tam-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 28px 24px 24px;
    box-sizing: border-box;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    position: relative;
    overflow: hidden;
  }

  /* ── SCREEN 1: Team list ── */
  .tam-screen {
    padding: 0;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34,1.1,0.64,1);
    pointer-events: none;
  }
  .tam-screen.tam-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
  .tam-screen.tam-exit {
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  /* Title */
  .tam-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
  }
  .tam-title span { color: #062617; }

  /* Member rows */
  .tam-member {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .tam-member:last-child { border-bottom: none; }
  .tam-member.tam-m-in { opacity: 1; transform: translateX(0); }

  .tam-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #e8f5e2;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .tam-avatar svg { width: 22px; height: 22px; }

  .tam-email {
    flex: 1;
    font-size: 13px;
    color: #222;
    font-weight: 500;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tam-status {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }
  .tam-inv-sent {
    font-size: 10px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .tam-resend {
    font-size: 11px;
    font-weight: 700;
    color: #062617;
  }
  .tam-remove {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    display: flex; align-items: center; justify-content: center;
    color: #bbb;
    font-size: 12px;
    flex-shrink: 0;
  }

  /* Active member pulse */
  .tam-member.tam-active .tam-avatar {
    background: #cce88c;
    animation: tamAvatarPulse 1.2s ease-in-out;
  }
  @keyframes tamAvatarPulse {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.12); }
  }

  /* Invite box */
  .tam-invite-box {
    background: #f5f5f0;
    border-radius: 14px;
    padding: 14px;
    margin-top: 12px;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
  }
  .tam-invite-box.tam-ib-in { opacity: 1; transform: translateY(0); }

  .tam-invite-label {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
  }
  .tam-invite-row {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .tam-invite-input {
    flex: 1;
    background: #fff;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12px;
    color: #333;
    border: 1.5px solid #e8e8e8;
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    min-width: 0;
  }
  .tam-invite-input.tam-typing { border-color: #cce88c; }

  .tam-cursor {
    display: inline-block; width: 1.5px; height: 11px;
    background: #062617; margin-left: 1px;
    vertical-align: middle;
    animation: tamCurBlink 0.7s step-end infinite;
  }
  @keyframes tamCurBlink { 0%,100%{opacity:1} 50%{opacity:0} }
  .tam-cursor.tam-off { display: none; }

  .tam-send-btn {
    background: #cce88c;
    color: #062617;
    border: none;
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: default;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.15s ease;
    white-space: nowrap;
  }
  .tam-send-btn.tam-btn-sending {
    background: #b8d670;
    transform: scale(0.96);
  }

  /* ── SCREEN 2: Modal ── */
  .tam-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(2px);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 24px;
    box-sizing: border-box;
    z-index: 10;
  }
  .tam-modal-overlay.tam-modal-in {
    opacity: 1;
    pointer-events: all;
  }

  .tam-modal {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px 22px;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.14);
    transform: scale(0.88) translateY(16px);
    transition: transform 0.45s cubic-bezier(0.34,1.2,0.64,1);
  }
  .tam-modal-overlay.tam-modal-in .tam-modal {
    transform: scale(1) translateY(0);
  }

  .tam-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
  }
  .tam-modal-body {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .tam-modal-input {
    width: 100%;
    background: #f5f5f0;
    border: 1.5px solid #e8e8e8;
    border-radius: 999px;
    padding: 11px 16px;
    font-size: 13px;
    color: #333;
    box-sizing: border-box;
    margin-bottom: 18px;
    font-family: monospace;
    transition: border-color 0.3s ease;
  }
  .tam-modal-input.tam-typing { border-color: #cce88c; }

  .tam-modal-btns {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
  }
  .tam-modal-cancel {
    background: transparent;
    border: 1.5px solid #ddd;
    border-radius: 999px;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: default;
  }
  .tam-modal-confirm {
    background: #cce88c;
    border: none;
    border-radius: 999px;
    padding: 9px 24px;
    font-size: 13px;
    font-weight: 700;
    color: #062617;
    cursor: default;
    transition: background 0.2s ease, transform 0.15s ease;
  }
  .tam-modal-confirm.tam-confirming {
    background: #b8d670;
    transform: scale(0.96);
  }

  /* ── Success popup modal ── */
  .tam-success-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(2px);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 24px;
    box-sizing: border-box;
    z-index: 10;
  }
  .tam-success-overlay.tam-s-in {
    opacity: 1;
    pointer-events: all;
  }
  .tam-success-popup {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px 28px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.14);
    text-align: center;
    transform: scale(0.88) translateY(16px);
    transition: transform 0.45s cubic-bezier(0.34,1.2,0.64,1);
  }
  .tam-success-overlay.tam-s-in .tam-success-popup {
    transform: scale(1) translateY(0);
  }
  .tam-success-tick {
    width: 56px; height: 56px;
    background: #CCE88C;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.4s ease 0.2s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1) 0.2s;
  }
  .tam-success-overlay.tam-s-in .tam-success-tick {
    opacity: 1;
    transform: scale(1);
  }
  .tam-success-title {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease 0.35s, transform 0.35s ease 0.35s;
  }
  .tam-success-overlay.tam-s-in .tam-success-title {
    opacity: 1;
    transform: translateY(0);
  }
  .tam-success-body {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease 0.45s, transform 0.35s ease 0.45s;
  }
  .tam-success-overlay.tam-s-in .tam-success-body {
    opacity: 1;
    transform: translateY(0);
  }


/* ════════════════════════════════════════════════════════
   BRAND NORMALIZER
   ─────────────────────────────────────────────────────
   Unifies all animation wrappers to feel like one product.
   This block lives at the BOTTOM so it overrides everything above.
   To tweak brand feel — only edit THIS section.
   ════════════════════════════════════════════════════════ */

/* ── 1. Outer shell: the .animation-wrapper div from each PHP template ── */
.animation-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── 2. Every root animation element — unified sizing, bg, radius, padding ── */
.animation-wrapper .smt-wrap,
.animation-wrapper .bev-wrap,
.animation-wrapper .eva-wrap,
.animation-wrapper .evf-wrap,
.animation-wrapper .rtl-wrap,
.animation-wrapper .orb-wrap,
.animation-wrapper .icv-wrap,
.animation-wrapper .segl-wrap,
.animation-wrapper .esp-section,
.animation-wrapper .wf-section,
.animation-wrapper .whs-diagram,
.animation-wrapper .cavl-wrap,
.animation-wrapper .gsi-section,
.animation-wrapper .upi-wrap,
.animation-wrapper .crl-wrap,
.animation-wrapper .ent-wrap,
.animation-wrapper .apiv-wrap,
.animation-wrapper .ww-section,
.animation-wrapper .wwg-section {
    /* sizing */
    width: 100% !important;
    max-width: 100% !important;
    min-height: 320px;
    height: auto !important;

    /* brand background — one colour across all */
    background: #f5f5f0 !important;

    /* unified spacing */
    padding: 28px 24px !important;

    /* unified radius */
    border-radius: 20px !important;

    /* clean box model */
    box-sizing: border-box;
    margin: 0 auto;
}

/* ── 3. Webhook is SVG-based with position:absolute children — needs special treatment ── */
.animation-wrapper .whs-diagram {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f0 !important;
    padding: 28px 24px !important;
}

/* ── 4. b2b has a fixed height — release it ── */
.animation-wrapper .upi-wrap {
    height: auto !important;
    min-height: 320px !important;
}

/* ── 5. enterprise has overflow:hidden — keep it but ensure consistent height ── */
.animation-wrapper .ent-wrap {
    min-height: 320px !important;
}

/* ==============================================
   ANIMATION: GAMALOGIC FEATURES
   ============================================== */
 
.ftr-wrap {
    background: #f5f5f0;
    border-radius: 20px;
    padding: 28px 24px;
    box-sizing: border-box;
    max-width: 100%;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
  }
 
  .ftr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    opacity: 0; transform: translateY(-6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .ftr-header.ftr-in { opacity: 1; transform: translateY(0); }
 
  .ftr-badge {
    font-size: 11px; font-weight: 600;
    background: #062617; color: #CCE88C;
    border-radius: 999px; padding: 4px 12px;
  }
 
  .ftr-live {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: #555;
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 999px; padding: 4px 12px;
  }
  .ftr-live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4CAF50;
    animation: ftrBlink 1.8s ease-in-out infinite;
  }
  @keyframes ftrBlink {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.4; transform:scale(0.7); }
  }
 
  .ftr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
 
  .ftr-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #ececec;
    padding: 18px 16px;
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34,1.2,0.64,1);
  }
  .ftr-card.ftr-card-in { opacity: 1; transform: translateY(0); }
 
  .ftr-card-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: #e8f5e2;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
  }
 
  .ftr-card-title {
    font-size: 12px; font-weight: 700; color: #111;
    margin-bottom: 6px; line-height: 1.3;
  }
 
  .ftr-card-desc {
    font-size: 10.5px; color: #888; line-height: 1.5;
  }
 
  .ftr-card.ftr-card-active {
    border-color: #CCE88C;
    box-shadow: 0 0 0 3px rgba(204,232,140,0.2);
  }
  .ftr-card.ftr-card-active .ftr-card-icon {
    background: #062617;
    transform: scale(1.15);
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  }
  .ftr-card.ftr-card-active .ftr-card-icon svg path,
  .ftr-card.ftr-card-active .ftr-card-icon svg circle {
    stroke: #CCE88C;
  }
 

/* ==============================================
   ANIMATION: CUSTOM RATE LIMITS
   ============================================== */

.rl-wrap {
    background: #f0f0ec;
    border-radius: 28px;
    border: 2.5px solid #062617;
    padding: 28px 24px 24px;
    box-sizing: border-box;
    max-width: 420px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .rl-header {
    display: flex; align-items: center; justify-content: space-between;
    opacity: 0; transform: translateY(-6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .rl-header.rl-in { opacity: 1; transform: translateY(0); }

  .rl-badge {
    font-size: 11px; font-weight: 600;
    background: #062617; color: #CCE88C;
    border-radius: 999px; padding: 4px 12px;
  }
  .rl-live {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; color: #555;
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 999px; padding: 4px 12px;
  }
  .rl-live-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #4CAF50;
    animation: rlBlink 1.8s ease-in-out infinite;
  }
  @keyframes rlBlink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

  /* main card */
  .rl-card {
    background: #fff; border-radius: 18px;
    border: 1.5px solid #eee;
    padding: 20px 18px;
    display: flex; flex-direction: column; gap: 16px;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
  }
  .rl-card.rl-in { opacity: 1; transform: translateY(0); }

  .rl-card-title {
    font-size: 12px; font-weight: 600; color: #888;
    text-transform: uppercase; letter-spacing: 0.07em;
  }

  /* big counter */
  .rl-counter-row {
    display: flex; align-items: baseline; gap: 5px;
  }
  .rl-counter-num {
    font-size: 38px; font-weight: 800; color: #062617;
    font-family: monospace; line-height: 1;
    min-width: 120px;
  }
  .rl-counter-unit {
    font-size: 14px; font-weight: 600; color: #062617;
  }

  /* bar */
  .rl-bar-wrap {
    display: flex; flex-direction: column; gap: 6px;
  }
  .rl-bar-labels {
    display: flex; justify-content: space-between;
    font-size: 10px; color: #bbb; font-weight: 500;
  }
  .rl-bar-track {
    height: 10px; background: #f0f0eb;
    border-radius: 999px; overflow: hidden;
  }
  .rl-bar-fill {
    height: 100%; border-radius: 999px;
    width: 0%; background: #062617;
    transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
  }

  /* tag row */
  .rl-tags {
    display: flex; gap: 8px; flex-wrap: wrap;
    opacity: 0; transition: opacity 0.4s ease;
  }
  .rl-tags.rl-show { opacity: 1; }
  .rl-tag {
    font-size: 10px; font-weight: 600;
    background: #e8f5e2; color: #062617;
    border-radius: 999px; padding: 3px 10px;
  }


/* ==============================================
   ANIMATION: SEG EMAIL VALIDATION
   ============================================== */

.seg-wrap {
    background: #f0f0ec;
    border-radius: 28px;
    border: 2.5px solid #062617;
    padding: 28px 24px 24px;
    box-sizing: border-box;
    max-width: 420px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .seg-badge {
    font-size: 11px; font-weight: 600;
    background: #062617; color: #CCE88C;
    border-radius: 999px; padding: 4px 12px;
    opacity: 0; transition: opacity 0.4s ease;
    margin-bottom: 20px;
  }
  .seg-badge.seg-in { opacity: 1; }

  .seg-stage {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  /* email pill */
  .seg-email-pill {
    background: #fff; border: 1.5px solid #eee;
    border-radius: 999px; padding: 8px 18px;
    font-size: 12px; font-family: monospace; color: #333;
    display: flex; align-items: center; gap: 8px;
    opacity: 0; transform: translateY(-8px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
    white-space: nowrap; position: relative; z-index: 2;
  }
  .seg-email-pill.seg-in { opacity: 1; transform: translateY(0); }
  .seg-email-dot { width: 7px; height: 7px; border-radius: 50%; background: #4CAF50; flex-shrink: 0; }

  /* arrows */
  .seg-arrow {
    width: 2px; height: 24px; background: #ccc;
    position: relative; opacity: 0; transition: opacity 0.3s ease;
  }
  .seg-arrow.seg-in { opacity: 1; }
  .seg-arrow::after {
    content: ''; position: absolute; bottom: -5px; left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent; border-right: 5px solid transparent;
    border-top: 6px solid #ccc;
  }
  .seg-arrow.seg-green { background: #4CAF50; }
  .seg-arrow.seg-green::after { border-top-color: #4CAF50; }

  /* SEG box */
  .seg-box {
    background: #fff; border: 2px solid #e8e8e8;
    border-radius: 16px; padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    width: 100%; box-sizing: border-box;
    opacity: 0; transform: scale(0.92);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1),
                border-color 0.4s ease;
    position: relative; z-index: 2;
  }
  .seg-box.seg-in { opacity: 1; transform: scale(1); }
  .seg-box.seg-active { border-color: #f59e0b; }

  .seg-box-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: #f5f5f0;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.4s ease;
  }
  .seg-box.seg-active .seg-box-icon { background: #fff3cd; }

  .seg-box-info { flex: 1; }
  .seg-box-title { font-size: 12px; font-weight: 700; color: #111; margin-bottom: 2px; }
  .seg-box-sub   { font-size: 10px; color: #aaa; }

  .seg-box-tag {
    font-size: 9px; font-weight: 700;
    border-radius: 999px; padding: 3px 8px;
    background: #f5f5f0; color: #888;
    transition: background 0.4s ease, color 0.4s ease;
    flex-shrink: 0;
  }
  .seg-box.seg-active .seg-box-tag { background: #fef3c7; color: #92400e; }

  /* Gamalogic validates box */
  .seg-result {
    background: #062617; border-radius: 16px;
    padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    width: 100%; box-sizing: border-box;
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
    margin-top: 0;
  }
  .seg-result.seg-show { opacity: 1; transform: translateY(0); }

  .seg-result-icon {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; flex-shrink: 0;
    background: rgba(204,232,140,0.15);
  }
  .seg-result-info { flex: 1; }
  .seg-result-title { font-size: 12px; font-weight: 700; color: #CCE88C; margin-bottom: 2px; }
  .seg-result-sub   { font-size: 10px; color: rgba(204,232,140,0.6); }

  .seg-result-badge {
    font-size: 10px; font-weight: 700;
    border-radius: 999px; padding: 3px 10px;
    flex-shrink: 0;
  }
  .seg-result-badge.green  { background: #dcfce7; color: #166534; }
  .seg-result-badge.red    { background: #fee2e2; color: #991b1b; }
  .seg-result-badge.yellow { background: #fef3c7; color: #92400e; }


/* ==============================================
   ANIMATION: SMTP TARPIT BYPASS
   ============================================== */

.smt-wrap {
    background: #f5f5f0;
    border-radius: 20px;
    padding: 28px 24px;
    box-sizing: border-box;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    position: relative;
  }

  .smt-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
    opacity: 0; transform: translateY(-6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .smt-header.smt-in { opacity: 1; transform: translateY(0); }

  .smt-badge {
    font-size: 11px; font-weight: 600;
    background: #062617; color: #CCE88C;
    border-radius: 999px; padding: 4px 12px;
  }
  .smt-live {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: #555;
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 999px; padding: 4px 12px;
  }
  .smt-live-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #4CAF50;
    animation: smtBlink 1.8s ease-in-out infinite;
  }
  @keyframes smtBlink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

  /* stage */
  .smt-stage {
    display: flex; align-items: center;
    justify-content: space-between; gap: 0;
    position: relative;
  }

  /* ── LEFT: servers ── */
  .smt-servers {
    display: flex; flex-direction: column; gap: 10px;
    flex-shrink: 0; width: 140px;
  }
  .smt-server {
    background: #fff; border-radius: 12px;
    border: 1.5px solid #eee;
    padding: 10px 12px;
    display: flex; align-items: center; gap: 10px;
    opacity: 0; transform: translateX(-16px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1),
                border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .smt-server.smt-in { opacity: 1; transform: translateX(0); }
  .smt-server.smt-active {
    border-color: #CCE88C;
    box-shadow: 0 0 0 3px rgba(204,232,140,0.2);
  }
  .smt-server-icon {
    display: flex; flex-direction: column; align-items: center; gap: 2px; flex-shrink: 0;
  }
  .smt-disk {
    width: 22px; height: 5px; border-radius: 3px;
    background: #062617; opacity: 0.7; position: relative;
  }
  .smt-disk:first-child { opacity: 1; }
  .smt-disk::after {
    content: ''; position: absolute; left: 4px; top: 50%;
    transform: translateY(-50%); width: 3px; height: 3px;
    border-radius: 50%; background: rgba(204,232,140,0.6);
  }
  .smt-server-name { font-size: 11px; font-weight: 600; color: #222; }
  .smt-server-sub  { font-size: 9px; color: #aaa; margin-top: 1px; }

  /* ── CENTER: SVG + Gamalogic ── */
  .smt-center-area {
    flex: 1; position: relative;
    display: flex; align-items: center; justify-content: center;
    height: 200px;
  }
  .smt-svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    overflow: visible; pointer-events: none;
  }

  .smt-gama-card {
    background: #062617; border-radius: 18px;
    padding: 16px 14px 12px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    box-shadow: 0 8px 28px rgba(6,38,23,0.25);
    width: 90px; z-index: 3; position: relative;
    opacity: 0; transform: scale(0.7);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  }
  .smt-gama-card.smt-in { opacity: 1; transform: scale(1); }

  .smt-gama-logo {
    width: 48px; height: 48px; background: rgba(204,232,140,0.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
  }
  .smt-gama-name { font-size: 10px; font-weight: 700; color: #CCE88C; letter-spacing: 0.04em; }

  /* ── RIGHT: Database ── */
  .smt-db-card {
    background: #fff; border-radius: 14px;
    border: 1.5px solid #eee;
    padding: 16px 12px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    width: 100px; flex-shrink: 0;
    opacity: 0; transform: translateX(16px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
  }
  .smt-db-card.smt-in { opacity: 1; transform: translateX(0); }

  .smt-db-icon { display: flex; flex-direction: column; align-items: center; gap: 0; }
  .smt-db-top {
    width: 44px; height: 12px; border-radius: 22px;
    background: #e8f5e2; border: 1.5px solid #a3d9a5;
  }
  .smt-db-mid {
    width: 44px; height: 20px;
    background: #f0faf0; border-left: 1.5px solid #a3d9a5;
    border-right: 1.5px solid #a3d9a5; margin-top: -3px;
  }
  .smt-db-bot {
    width: 44px; height: 12px; border-radius: 0 0 22px 22px;
    background: #e8f5e2; border: 1.5px solid #a3d9a5;
    border-top: none; margin-top: -2px;
  }
  .smt-db-name { font-size: 10px; font-weight: 700; color: #062617; text-align: center; line-height: 1.3; }

  /* path lines */
  .smt-path {
    fill: none; stroke: #ddd; stroke-width: 1.5;
    stroke-dasharray: 5 4; stroke-linecap: round;
    opacity: 0; transition: opacity 0.5s ease;
  }
  .smt-path-in { opacity: 1; }

  /* status pills */
  .smt-status-row {
    display: flex; gap: 8px; flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
    opacity: 0; transition: opacity 0.4s ease 0.1s;
  }
  .smt-status-row.smt-in { opacity: 1; }
  .smt-pill {
    display: flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 600;
    border-radius: 999px; padding: 4px 10px;
  }
  .smt-pill-green  { background: #dcfce7; color: #166534; }
  .smt-pill-amber  { background: #fef3c7; color: #92400e; }
  .smt-pill-dark   { background: #e8f5e2; color: #062617; }
  .smt-pill-dot {
    width: 6px; height: 6px; border-radius: 50%;
    animation: smtBlink 1.6s ease-in-out infinite;
  }

/* ==============================================
   ANIMATION: USE CASES (By Industry & By Role — shared CSS)
   ============================================== */
 
.uc-section {
    background: #f7f7f7;
    border-radius: 20px;
    padding: 24px;
    box-sizing: border-box;
    max-width: 100%;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
  }
 
  .uc-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
    opacity: 0; transform: translateY(-6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .uc-header.uc-in { opacity: 1; transform: translateY(0); }
 
  .uc-badge {
    font-size: 11px; font-weight: 600;
    background: #062617; color: #CCE88C;
    border-radius: 999px; padding: 4px 12px;
  }
 
  .uc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
 
  .uc-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1.5px solid transparent;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px) scale(0.85);
    padding: 12px 8px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 90px;
    box-sizing: border-box;
    overflow: hidden;
    transition:
      transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
      box-shadow 0.3s ease,
      border-color 0.3s ease,
      opacity 0.3s ease;
  }
 
  @keyframes ucCardIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
 
  .uc-card.uc-visible {
    animation: ucCardIn 0.45s cubic-bezier(0.34,1.56,0.64,1) forwards;
  }
 
  .uc-card:hover {
    transform: translateY(-3px) scale(1.07) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    border-color: #CCE88C;
  }
 
  .uc-card.uc-pulse {
    border-color: #CCE88C !important;
    box-shadow: 0 0 0 3px rgba(204,232,140,0.25), 0 6px 20px rgba(204,232,140,0.20) !important;
    transform: translateY(-2px) scale(1.08) !important;
  }
 
  .uc-card img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
  }
 
  /* placeholder when image missing */
  .uc-img-placeholder {
    width: 36px; height: 36px; border-radius: 8px;
    background: #f0f0eb; flex-shrink: 0;
  }
 
  .uc-card-label {
    font-size: 9px;
    font-weight: 600;
    color: #555;
    text-align: center;
    line-height: 1.3;
    white-space: normal;
    overflow: hidden;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

/* ==============================================
   ANIMATION: WEBHOOK API
   ============================================== */

.wha-wrap {
    background: #f5f5f0;
    border-radius: 20px;
    padding: 28px 24px;
    box-sizing: border-box;
    max-width: 560px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    position: relative;
  }

  .wha-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
    opacity: 0; transform: translateY(-6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .wha-header.wha-in { opacity: 1; transform: translateY(0); }

  .wha-badge {
    font-size: 11px; font-weight: 600;
    background: #062617; color: #CCE88C;
    border-radius: 999px; padding: 4px 12px;
  }
  .wha-live {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: #555;
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 999px; padding: 4px 12px;
  }
  .wha-live-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #4CAF50;
    animation: whaBlink 1.8s ease-in-out infinite;
  }
  @keyframes whaBlink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

  /* stage */
  .wha-stage {
    display: flex; align-items: center;
    justify-content: space-between;
    position: relative; height: 240px;
  }

  /* ── LEFT: scrolling CRM icons ── */
  .wha-crm-col {
    width: 100px; flex-shrink: 0;
    position: relative; height: 100%; overflow: hidden;
  }
  /* fade top and bottom */
  .wha-crm-col::before,
  .wha-crm-col::after {
    content: ''; position: absolute; left: 0; right: 0; height: 40px;
    z-index: 2; pointer-events: none;
  }
  .wha-crm-col::before { top: 0;    background: linear-gradient(to bottom, #f5f5f0, transparent); }
  .wha-crm-col::after  { bottom: 0; background: linear-gradient(to top,   #f5f5f0, transparent); }

  .wha-crm-track {
    display: flex; flex-direction: column;
    gap: 10px; position: absolute; top: 0;
    animation: whaCrmScroll 14s linear infinite;
  }
  @keyframes whaCrmScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }
  .wha-crm-icon {
    width: 80px; height: 80px; border-radius: 14px;
    background: #fff; border: 1.5px solid #eee;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; padding: 14px; box-sizing: border-box;
  }
  .wha-crm-icon svg { width: 100%; height: auto; max-height: 52px; }

  /* ── CENTER: SVG + webhook card ── */
  .wha-center {
    flex: 1; position: relative;
    display: flex; align-items: center; justify-content: center;
    height: 100%;
  }
  .wha-svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; overflow: visible;
  }

  .wha-webhook-card {
    background: #fff; border-radius: 18px;
    border: 1.5px solid #eee;
    padding: 14px 12px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    width: 84px; z-index: 3; position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    opacity: 0; transform: scale(0.7);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  }
  .wha-webhook-card.wha-in { opacity: 1; transform: scale(1); }
  .wha-webhook-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
  }
  .wha-webhook-icon svg { width: 36px; height: 36px;
    animation: whaRotate 3s linear infinite;
  }
  @keyframes whaRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  .wha-webhook-label { font-size: 10px; font-weight: 700; color: #062617; letter-spacing: 0.04em; }

  /* ── RIGHT: Gamalogic card ── */
  .wha-gama-card {
    background: #062617; border-radius: 18px;
    padding: 14px 12px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    width: 84px; flex-shrink: 0;
    box-shadow: 0 8px 28px rgba(6,38,23,0.2);
    opacity: 0; transform: translateX(16px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
  }
  .wha-gama-card.wha-in { opacity: 1; transform: translateX(0); }
  .wha-gama-logo {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
  }
  .wha-gama-label { font-size: 10px; font-weight: 700; color: #CCE88C; }

  /* dotted path lines */
  .wha-path {
    fill: none; stroke: #ddd; stroke-width: 1.5;
    stroke-dasharray: 5 4; stroke-linecap: round;
    opacity: 0; transition: opacity 0.5s ease;
  }
  .wha-path-in { opacity: 1; }

  /* status row */
  .wha-status-row {
    display: flex; gap: 8px; flex-wrap: wrap;
    justify-content: center; margin-top: 16px;
    opacity: 0; transition: opacity 0.4s ease;
  }
  .wha-status-row.wha-in { opacity: 1; }
  .wha-pill {
    display: flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 600;
    border-radius: 999px; padding: 4px 10px;
  }
  .wha-pill-green { background: #dcfce7; color: #166534; }
  .wha-pill-dark  { background: #e8f5e2; color: #062617; }
  .wha-pill-amber { background: #fef3c7; color: #92400e; }
  .wha-pill-dot {
    width: 6px; height: 6px; border-radius: 50%;
    animation: whaBlink 1.6s ease-in-out infinite;
  }


/* ==============================================
   ANIMATION: AUTOMATED SYNC
   ============================================== */

.syn-wrap {
    background: #f5f5f0;
    border-radius: 20px;
    padding: 28px 24px;
    box-sizing: border-box;
    max-width: 560px;
    margin: 0 auto;
    font-family: var(--font-sans, sans-serif);
    position: relative;
  }

  .syn-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px;
    opacity: 0; transform: translateY(-6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .syn-header.syn-in { opacity: 1; transform: translateY(0); }

  .syn-badge {
    font-size: 11px; font-weight: 600;
    background: #062617; color: #CCE88C;
    border-radius: 999px; padding: 4px 12px;
  }
  .syn-live {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; color: #555;
    background: #fff; border: 1px solid #e8e8e8;
    border-radius: 999px; padding: 4px 12px;
  }
  .syn-live-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #4CAF50;
    animation: synBlink 1.8s ease-in-out infinite;
  }
  @keyframes synBlink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

  .syn-stage {
    display: flex; align-items: center;
    justify-content: space-between;
    position: relative; height: 240px;
  }

  /* scrolling icons col */
  .syn-icon-col {
    width: 100px; flex-shrink: 0;
    position: relative; height: 100%; overflow: hidden;
  }
  .syn-icon-col::before,
  .syn-icon-col::after {
    content: ''; position: absolute; left: 0; right: 0; height: 40px;
    z-index: 2; pointer-events: none;
  }
  .syn-icon-col::before { top: 0;    background: linear-gradient(to bottom, #f5f5f0, transparent); }
  .syn-icon-col::after  { bottom: 0; background: linear-gradient(to top,   #f5f5f0, transparent); }

  .syn-icon-track {
    display: flex; flex-direction: column;
    gap: 10px; position: absolute; top: 0;
    animation: synScroll 14s linear infinite;
  }
  @keyframes synScroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }
  .syn-icon-card {
    width: 80px; height: 80px; border-radius: 14px;
    background: #fff; border: 1.5px solid #eee;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; padding: 14px; box-sizing: border-box;
  }
  .syn-icon-card svg { width: 100%; height: auto; max-height: 52px; }

  /* center */
  .syn-center {
    flex: 1; position: relative;
    display: flex; align-items: center; justify-content: center;
    height: 100%;
  }
  .syn-svg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none; overflow: visible;
  }

  .syn-card {
    background: #fff; border-radius: 18px;
    border: 1.5px solid #eee;
    padding: 14px 12px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    width: 84px; z-index: 3; position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    opacity: 0; transform: scale(0.7);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  }
  .syn-card.syn-in { opacity: 1; transform: scale(1); }
  .syn-card-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
  }
  .syn-card-icon svg { width: 36px; height: 36px;
    animation: synRotate 3s linear infinite;
  }
  @keyframes synRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  .syn-card-label { font-size: 10px; font-weight: 700; color: #062617; letter-spacing: 0.04em; }

  /* Gamalogic */
  .syn-gama-card {
    background: #062617; border-radius: 18px;
    padding: 14px 12px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    width: 84px; flex-shrink: 0;
    box-shadow: 0 8px 28px rgba(6,38,23,0.2);
    opacity: 0; transform: translateX(16px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
  }
  .syn-gama-card.syn-in { opacity: 1; transform: translateX(0); }
  .syn-gama-label { font-size: 10px; font-weight: 700; color: #CCE88C; }

  /* dotted paths */
  .syn-path {
    fill: none; stroke: #ddd; stroke-width: 1.5;
    stroke-dasharray: 5 4; stroke-linecap: round;
    opacity: 0; transition: opacity 0.5s ease;
  }
  .syn-path-in { opacity: 1; }

  /* pills */
  .syn-status-row {
    display: flex; gap: 8px; flex-wrap: wrap;
    justify-content: center; margin-top: 16px;
    opacity: 0; transition: opacity 0.4s ease;
  }
  .syn-status-row.syn-in { opacity: 1; }
  .syn-pill {
    display: flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 600;
    border-radius: 999px; padding: 4px 10px;
  }
  .syn-pill-green { background: #dcfce7; color: #166534; }
  .syn-pill-dark  { background: #e8f5e2; color: #062617; }
  .syn-pill-amber { background: #fef3c7; color: #92400e; }
  .syn-pill-dot {
    width: 6px; height: 6px; border-radius: 50%;
    animation: synBlink 1.6s ease-in-out infinite;
  }
 
/* ════════════════════════════════════════════════════════
   BRAND NORMALIZER
   Appended at the end so it wins specificity over all
   individual animation wrappers above.
   
   Rule: touch ONLY the outermost wrapper of each animation.
   Nothing inside changes — just the container shell.
   ════════════════════════════════════════════════════════ */

.animation-wrapper {
    /* Force full width of whatever column it sits in */
    width: 100%;
    max-width: 100% !important;

    /* Consistent inner breathing room */
    padding: 28px 24px !important;

    /* Unified border radius */
    border-radius: 20px !important;

    /* Unified background */
    background: #f5f5f047  !important;

    /* So all cards in a row stretch to equal height */
    height: 100%;
    box-sizing: border-box;

    /* Consistent shadow */
/*     box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06); */
	border: 1px solid #d2d2d278;
	

    /* Kill any margin auto centering — column handles alignment */
    margin: 0 !important;
}

/* Each animation's own root wrapper — neutralise their max-width and margin */
.animation-wrapper .smt-wrap,
.animation-wrapper .bev-wrap,
.animation-wrapper .eva-wrap,
.animation-wrapper .evf-wrap,
.animation-wrapper .rtl-wrap,
.animation-wrapper .orb-wrap,
.animation-wrapper .icv-wrap,
.animation-wrapper .segl-wrap,
.animation-wrapper .esp-section,
.animation-wrapper .wf-section,
.animation-wrapper .whs-diagram,
.animation-wrapper .cavl-wrap,
.animation-wrapper .gsi-section,
.animation-wrapper .upi-wrap,
.animation-wrapper .crl-wrap,
.animation-wrapper .ent-wrap,
.animation-wrapper .apiv-wrap,
.animation-wrapper .ww-section,
.animation-wrapper .wwg-section {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;         /* animation-wrapper owns the padding */
    border-radius: 0 !important;   /* animation-wrapper owns the radius  */
    background: transparent !important; /* animation-wrapper owns the bg */
    box-shadow: none !important;
    box-sizing: border-box;
}

/* Height normalizer — all animations scale to fill their wrapper */
.animation-wrapper .upi-wrap {
    height: auto !important;       /* upi-wrap had fixed 280px — let it breathe */
    min-height: 280px;
}

.animation-wrapper .ent-wrap {
    min-height: 320px;
}

.animation-wrapper .orb-wrap {
    min-height: 320px;
}

/* whs-diagram uses absolute positioning internally — needs a defined height */
.animation-wrapper .whs-diagram {
    position: relative;
    height: 300px !important;
}
