      /* =========================================
           Global
        ========================================== */
        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "Segoe UI", Arial, Helvetica, sans-serif;
            background: #f4f7fb;
            color: #1f2937;
            line-height: 1.6;
        }

        .login-page {
            width: 100%;
            min-height: calc(100vh - 72px);
            padding: 45px 25px 60px;
        }

        .login-wrapper {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
        }

        .page-heading {
            text-align: center;
            margin-bottom: 32px;
        }

        .page-heading h1 {
            margin: 0 0 8px;
            color: #0f2747;
            font-size: 32px;
            font-weight: 700;
            letter-spacing: -0.4px;
        }

        .page-heading p {
            margin: 0;
            color: #64748b;
            font-size: 15px;
        }

        .login-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            align-items: stretch;
        }

        .login-card {
            display: flex;
            flex-direction: column;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 7px 22px rgba(15, 23, 42, 0.07);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .login-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
        }

        .card-header {
            padding: 23px 24px;
            background: linear-gradient(135deg, #0f2747 0%, #164e78 55%, #176b87 100%);
            color: #ffffff;
            text-align: center;
        }

        .card-header h2 {
            margin: 0 0 5px;
            font-size: 19px;
            font-weight: 600;
        }

        .card-header p {
            margin: 0;
            color: #dbeafe;
            font-size: 12px;
        }

        .card-body {
            flex: 1;
            padding: 25px;
        }

        .form-group {
            margin-bottom: 17px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            color: #334155;
            font-size: 13px;
            font-weight: 600;
        }

        .form-group input {
            width: 100%;
            height: 44px;
            padding: 9px 12px;
            border: 1px solid #cbd5e1;
            border-radius: 7px;
            background: #ffffff;
            color: #1f2937;
            font-family: inherit;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-group input::placeholder {
            color: #94a3b8;
        }

        .form-group input:hover {
            border-color: #94a3b8;
        }

        .form-group input:focus {
            border-color: #176b87;
            box-shadow: 0 0 0 3px rgba(23, 107, 135, 0.12);
        }

        .primary-button {
            width: 100%;
            min-height: 44px;
            border: none;
            border-radius: 7px;
            background: #176b87;
            color: #ffffff;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }

        .primary-button:hover {
            background: #0f526b;
            transform: translateY(-1px);
            box-shadow: 0 5px 14px rgba(23, 107, 135, 0.22);
        }

        .primary-button:focus-visible {
            outline: 2px solid #7dd3fc;
            outline-offset: 3px;
        }

        .secondary-button {
            width: 100%;
            min-height: 44px;
            border: 1px solid #176b87;
            border-radius: 7px;
            background: #ffffff;
            color: #176b87;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .secondary-button:hover {
            background: #176b87;
            color: #ffffff;
        }

        .google-section {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
            text-align: center;
        }

        .google-section-title {
            margin-bottom: 12px;
            color: #475569;
            font-size: 12px;
            font-weight: 500;
        }

        .google-login {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .guest-section {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
            text-align: center;
        }

        .guest-section p {
            margin: 0 0 12px;
            color: #64748b;
            font-size: 12px;
        }

        .form-message {
            display: none;
            margin-bottom: 17px;
            padding: 10px 12px;
            border-left: 4px solid #dc2626;
            border-radius: 5px;
            background: #fef2f2;
            color: #b91c1c;
            font-size: 12px;
            line-height: 1.5;
        }

        .form-message.show {
            display: block;
        }

        .card-footer {
            padding: 14px 24px;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
            color: #64748b;
            font-size: 11px;
            text-align: center;
        }

        .grecaptcha-badge {
            visibility: hidden;
        }

        .recaptcha-notice {
            max-width: 700px;
            margin: 25px auto 0;
            padding: 0 15px;
            color: #64748b;
            font-size: 11px;
            line-height: 1.5;
            text-align: center;
        }

        .recaptcha-notice a {
            color: #176b87;
            text-decoration: none;
        }

        .recaptcha-notice a:hover {
            text-decoration: underline;
        }

        @media (max-width: 1000px) {
            .login-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .login-card:last-child {
                grid-column: 1 / -1;
                max-width: 500px;
                width: 100%;
                margin: 0 auto;
            }
        }

        @media (max-width: 700px) {
            .login-page {
                padding: 30px 15px 45px;
            }

            .page-heading h1 {
                font-size: 26px;
            }

            .login-grid {
                grid-template-columns: 1fr;
            }

            .login-card:last-child {
                grid-column: auto;
                max-width: none;
            }

            .card-body {
                padding: 22px;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            .login-card,
            .primary-button,
            .secondary-button,
            .form-group input {
                transition: none;
            }
        }
		  /* =========================================
           SecArchSpider Header
        ========================================= */

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      background: #0f2747;
      box-shadow: 0 3px 12px rgba(15, 23, 42, 0.18);
    }

    .header-container {
      width: 100%;
      max-width: 1400px;
      min-height: 72px;
      margin: 0 auto;
      padding: 0 28px;

      display: flex;
      align-items: center;
      gap: 28px;
    }

    /* =========================================
           Logo
        ========================================= */

    .brand {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      text-decoration: none;
    }

    .brand img {
      display: block;
      width: auto;
      max-width: 190px;
      height: 52px;
      object-fit: contain;
    }

    /* =========================================
           Navigation
        ========================================= */

    .main-nav {
      display: flex;
      align-items: center;
      gap: 4px;
      flex: 1;
    }

    .main-nav a,
    .header-actions a {
      display: inline-flex;
      align-items: center;
      justify-content: center;

      min-height: 42px;
      padding: 9px 15px;

      border-radius: 7px;

      color: #e5eef7;
      text-decoration: none;

      font-family: "Segoe UI", Arial, Helvetica, sans-serif;
      font-size: 14px;
      font-weight: 500;

      transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
    }

    .main-nav a:hover,
    .header-actions a:hover {
      background: rgba(255, 255, 255, 0.10);
      color: #ffffff;
    }

    .main-nav a.active {
      background: #176b87;
      color: #ffffff;
      font-weight: 600;
    }

    .main-nav a:focus-visible,
    .header-actions a:focus-visible {
      outline: 2px solid #7dd3fc;
      outline-offset: 2px;
    }

    /* =========================================
           Right-side Actions
        ========================================= */

    .header-actions {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: auto;
      flex-shrink: 0;
    }

    .pricing-link {
      color: #dbeafe !important;
    }

    .login-link {
      background: #176b87;
      color: #ffffff !important;
      padding-left: 20px !important;
      padding-right: 20px !important;
    }

    .login-link:hover {
      background: #21819f !important;
      transform: translateY(-1px);
    }

    /* =========================================
           Mobile Menu Button
        ========================================= */

    .menu-toggle {
      display: none;

      border: 0;
      background: transparent;
      color: #ffffff;

      font-size: 25px;
      line-height: 1;
      cursor: pointer;

      padding: 8px;
    }

    /* =========================================
           Responsive
        ========================================= */

    @media (max-width: 1050px) {

      .header-container {
        gap: 15px;
        padding: 0 20px;
      }

      .main-nav a,
      .header-actions a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 13px;
      }

      .brand img {
        max-width: 155px;
        height: 48px;
      }
    }

    @media (max-width: 800px) {

      .site-header {
        position: relative;
      }

      .header-container {
        min-height: 64px;
        padding: 0 18px;
        flex-wrap: wrap;
      }

      .brand img {
        max-width: 150px;
        height: 45px;
      }

      .menu-toggle {
        display: block;
        margin-left: auto;
      }

      .main-nav,
      .header-actions {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
      }

      .main-nav.mobile-open,
      .header-actions.mobile-open {
        display: flex;
      }

      .main-nav a,
      .header-actions a {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 15px;
      }

      .header-actions {
        margin-left: 0;
        padding-bottom: 12px;
      }

      .login-link {
        justify-content: center !important;
      }
    }

    /* =========================================
           Reduced Motion
        ========================================= */

    @media (prefers-reduced-motion: reduce) {

      .main-nav a,
      .header-actions a {
        transition: none;
      }
    }
	    /* =========================================================
           Global
        ========================================================= */
        * {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            margin: 0;
            padding: 0;
            font-family:
                "Segoe UI",
                Arial,
                Helvetica,
                sans-serif;
            background:
                linear-gradient(135deg,
                    #f4f7fb 0%,
                    #eef4f8 50%,
                    #f8fafc 100%);
            color: #1f2937;
            line-height: 1.6;
        }
        /* =========================================================
           Page
        ========================================================= */
        .password-page {
            min-height: calc(100vh - 72px);
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 55px 20px 70px;
        }
        /* =========================================================
           Card
        ========================================================= */
        .password-card {
            width: 100%;
            max-width: 560px;
            background: #ffffff;
            border:
                1px solid #e2e8f0;
            border-radius: 16px;
            box-shadow:
                0 12px 35px rgba(15, 23, 42, 0.10);
            overflow: hidden;
        }
        /* =========================================================
           Header
        ========================================================= */
        .password-header {
            padding: 30px 35px 27px;
            background:
                linear-gradient(135deg,
                    #0f2747 0%,
                    #164e78 55%,
                    #176b87 100%);
            color: #ffffff;
            text-align: center;
        }
        .password-icon {
            width: 54px;
            height: 54px;
            margin: 0 auto 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background:
                rgba(255, 255, 255, 0.14);
            font-size: 25px;
        }
        .password-header h1 {
            margin: 0 0 7px;
            font-size: 27px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }
        .password-header p {
            margin: 0;
            color: #dbeafe;
            font-size: 14px;
        }
        /* =========================================================
           Body
        ========================================================= */
        .password-body {
            padding: 32px 35px 34px;
        }
        /* =========================================================
           Status Messages
        ========================================================= */
        .status-message {
            display: none;
            margin-bottom: 22px;
            padding: 12px 15px;
            border-radius: 7px;
            font-size: 13px;
            line-height: 1.5;
        }
        .status-message.show {
            display: block;
        }
        .status-error {
            border-left:
                4px solid #dc2626;
            background: #fef2f2;
            color: #991b1b;
        }
        .status-success {
            border-left:
                4px solid #16a34a;
            background: #f0fdf4;
            color: #166534;
        }
        /* =========================================================
           Form
        ========================================================= */
        .field-group {
            margin-bottom: 21px;
        }
        .field-group label {
            display: block;
            margin-bottom: 7px;
            color: #334155;
            font-size: 14px;
            font-weight: 600;
        }
        .required {
            color: #dc2626;
        }
        .input-wrapper {
            position: relative;
        }
        .field-group input {
            width: 100%;
            height: 47px;
            padding:
                10px 45px 10px 13px;
            border:
                1px solid #cbd5e1;
            border-radius: 7px;
            background: #ffffff;
            color: #1f2937;
            font-family:
                "Segoe UI",
                Arial,
                Helvetica,
                sans-serif;
            font-size: 14px;
            outline: none;
            transition:
                border-color 0.2s ease,
                box-shadow 0.2s ease;
        }
        .field-group input::placeholder {
            color: #94a3b8;
        }
        .field-group input:hover {
            border-color: #94a3b8;
        }
        .field-group input:focus {
            border-color: #176b87;
            box-shadow:
                0 0 0 3px rgba(23, 107, 135, 0.12);
        }
        .field-group input.input-error {
            border-color: #dc2626;
            box-shadow:
                0 0 0 3px rgba(220, 38, 38, 0.08);
        }
        /* =========================================================
           Password Visibility Button
        ========================================================= */
        .password-toggle {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            border: 0;
            background: transparent;
            color: #64748b;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            padding: 5px;
        }
        .password-toggle:hover {
            color: #176b87;
        }
        .password-toggle:focus-visible {
            outline:
                2px solid #176b87;
            outline-offset: 2px;
            border-radius: 4px;
        }
        /* =========================================================
           Password Requirements
        ========================================================= */
        .password-help {
            margin-top: 9px;
            padding: 11px 13px;
            border-radius: 7px;
            background: #f8fafc;
            color: #64748b;
            font-size: 12px;
            line-height: 1.6;
        }
        .password-help-title {
            margin-bottom: 5px;
            color: #475569;
            font-weight: 600;
        }
        .requirement {
            display: block;
            margin: 2px 0;
            transition: color 0.15s ease;
        }
        .requirement.valid {
            color: #15803d;
        }
        .requirement.invalid {
            color: #64748b;
        }
        /* =========================================================
           Match Message
        ========================================================= */
        .match-message {
            display: none;
            margin-top: 7px;
            font-size: 12px;
        }
        .match-message.show {
            display: block;
        }
        .match-message.valid {
            color: #15803d;
        }
        .match-message.invalid {
            color: #dc2626;
        }
        /* =========================================================
           Submit Button
        ========================================================= */
        .submit-button {
            width: 100%;
            height: 47px;
            margin-top: 5px;
            border: 0;
            border-radius: 7px;
            background: #176b87;
            color: #ffffff;
            font-family:
                "Segoe UI",
                Arial,
                Helvetica,
                sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            box-shadow:
                0 5px 15px rgba(23, 107, 135, 0.20);
            transition:
                background-color 0.2s ease,
                transform 0.2s ease,
                box-shadow 0.2s ease;
        }
        .submit-button:hover:not(:disabled) {
            background: #0f526b;
            transform: translateY(-1px);
            box-shadow:
                0 7px 18px rgba(23, 107, 135, 0.25);
        }
        .submit-button:focus-visible {
            outline:
                2px solid #7dd3fc;
            outline-offset: 3px;
        }
        .submit-button:disabled {
            opacity: 0.65;
            cursor: not-allowed;
            transform: none;
        }
        /* =========================================================
           Security Note
        ========================================================= */
        .security-note {
            margin-top: 20px;
            padding: 12px 14px;
            border:
                1px solid #dbeafe;
            border-radius: 7px;
            background: #f0f9ff;
            color: #31556b;
            font-size: 12px;
            line-height: 1.5;
            text-align: center;
        }
        /* =========================================================
           Back / Sign In
        ========================================================= */
        .back-link {
            margin-top: 22px;
            text-align: center;
            font-size: 13px;
            color: #64748b;
        }
        .back-link a {
            color: #176b87;
            font-weight: 600;
            text-decoration: none;
        }
        .back-link a:hover {
            text-decoration: underline;
        }
        /* =========================================================
           Responsive
        ========================================================= */
        @media (max-width: 650px) {
            .password-page {
                padding:
                    25px 15px 45px;
            }
            .password-header {
                padding:
                    25px 20px 23px;
            }
            .password-header h1 {
                font-size: 24px;
            }
            .password-body {
                padding:
                    25px 20px 28px;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .field-group input,
            .submit-button,
            .requirement {
                transition: none;
            }
        }
		     :root {
            --bg: #f4f7fb;
            --surface: #ffffff;
            --surface-soft: #f8fafc;
            --surface-hover: #f5f8fc;
            --text: #0f172a;
            --text-muted: #64748b;
            --text-subtle: #94a3b8;
            --border: #e2e8f0;
            --border-strong: #cbd5e1;

            --brand: #1d4ed8;
            --brand-dark: #1e40af;
            --brand-soft: #eff6ff;

            --teal: #0f766e;
            --teal-soft: #ecfdf5;

            --success: #166534;
            --success-bg: #f0fdf4;
            --success-border: #bbf7d0;

            --danger: #b91c1c;
            --danger-bg: #fef2f2;
            --danger-border: #fecaca;

            --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
            --shadow-md: 0 8px 24px rgba(15, 23, 42, .07);

            --radius: 14px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            min-height: 100vh;
            background:
                radial-gradient(circle at top right, rgba(37, 99, 235, .06), transparent 30%),
                var(--bg);
            color: var(--text);
            font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        button,
        input {
            font: inherit;
        }

        a {
            color: inherit;
        }

        .container {
            width: min(1240px, calc(100% - 40px));
            margin: 0 auto;
            padding: 34px 0 56px;
        }

        .page-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 24px;
        }

        .eyebrow {
            margin: 0 0 6px;
            color: var(--brand);
            font-size: .72rem;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .page-header h1 {
            margin: 0;
            font-size: clamp(1.7rem, 3vw, 2.25rem);
            line-height: 1.15;
            letter-spacing: -.035em;
        }

        .page-header p {
            margin: 9px 0 0;
            color: var(--text-muted);
            font-size: .94rem;
        }

        .header-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 12px;
            border: 1px solid #dbeafe;
            border-radius: 999px;
            background: rgba(239, 246, 255, .9);
            color: #1e40af;
            font-size: .78rem;
            font-weight: 700;
            white-space: nowrap;
        }

        .header-badge .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #22c55e;
            box-shadow: 0 0 0 4px rgba(34, 197, 94, .12);
        }

        .alert {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 0 0 20px;
            padding: 13px 16px;
            border-radius: 10px;
            font-size: .88rem;
            font-weight: 600;
        }

        .alert svg {
            width: 19px;
            height: 19px;
            flex: 0 0 auto;
        }

        .alert-success {
            background: var(--success-bg);
            border: 1px solid var(--success-border);
            color: var(--success);
        }

        .alert-danger {
            background: var(--danger-bg);
            border: 1px solid var(--danger-border);
            color: var(--danger);
        }

        .toolbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 14px 16px;
            background: rgba(255, 255, 255, .86);
            border: 1px solid var(--border);
            border-radius: var(--radius) var(--radius) 0 0;
            box-shadow: var(--shadow-sm);
        }

        .toolbar-title {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .toolbar-icon {
            display: grid;
            place-items: center;
            width: 34px;
            height: 34px;
            border-radius: 9px;
            background: var(--brand-soft);
            color: var(--brand);
        }

        .toolbar-icon svg {
            width: 18px;
            height: 18px;
        }

        .toolbar-title strong {
            display: block;
            font-size: .9rem;
        }

        .toolbar-title span {
            display: block;
            color: var(--text-muted);
            font-size: .75rem;
            margin-top: 1px;
        }

        .search-wrap {
            position: relative;
            width: min(300px, 100%);
        }

        .search-wrap svg {
            position: absolute;
            left: 11px;
            top: 50%;
            width: 16px;
            height: 16px;
            transform: translateY(-50%);
            color: var(--text-subtle);
            pointer-events: none;
        }

        .search-input {
            width: 100%;
            height: 38px;
            padding: 0 12px 0 35px;
            border: 1px solid var(--border-strong);
            border-radius: 9px;
            background: #fff;
            color: var(--text);
            outline: none;
            transition: border-color .15s, box-shadow .15s;
        }

        .search-input::placeholder {
            color: #94a3b8;
        }

        .search-input:focus {
            border-color: #60a5fa;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
        }

        .table-card {
            overflow: hidden;
            background: var(--surface);
            border: 1px solid var(--border);
            border-top: 0;
            border-radius: 0 0 var(--radius) var(--radius);
            box-shadow: var(--shadow-md);
        }

        .table-responsive {
            width: 100%;
            overflow-x: auto;
        }

        table {
            width: 100%;
            min-width: 920px;
            border-collapse: separate;
            border-spacing: 0;
            text-align: left;
        }

        thead th {
            padding: 12px 18px;
            background: #f8fafc;
            border-bottom: 1px solid var(--border);
            color: #475569;
            font-size: .69rem;
            font-weight: 800;
            letter-spacing: .075em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        thead th:first-child {
            padding-left: 24px;
        }

        tbody td {
            padding: 15px 18px;
            border-bottom: 1px solid #edf1f5;
            color: #475569;
            font-size: .84rem;
            vertical-align: middle;
        }

        tbody tr:last-child td {
            border-bottom: 0;
        }

        tbody tr {
            transition: background-color .15s ease;
        }

        tbody tr:hover {
            background: var(--surface-hover);
        }

        .text-center {
            text-align: center;
        }

        .app-cell {
            padding-left: 24px !important;
        }

        .app-id-badge {
            display: inline-flex;
            align-items: center;
            max-width: 230px;
            padding: 7px 10px;
            overflow: hidden;
            border: 1px solid #dbe3ee;
            border-radius: 8px;
            background: #f8fafc;
            color: #172033;
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
            font-size: .78rem;
            font-weight: 700;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .actions {
            display: flex;
            justify-content: center;
            gap: 7px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            min-height: 36px;
            padding: 7px 12px;
            border: 1px solid transparent;
            border-radius: 8px;
            cursor: pointer;
            font-size: .76rem;
            font-weight: 700;
            line-height: 1;
            text-decoration: none;
            white-space: nowrap;
            transition: transform .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
        }

        .btn svg {
            width: 15px;
            height: 15px;
            flex: 0 0 auto;
        }

        .btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(15, 23, 42, .08);
        }

        .btn:focus-visible,
        .search-input:focus-visible {
            outline: 3px solid rgba(37, 99, 235, .18);
            outline-offset: 1px;
        }

        .btn:active {
            transform: translateY(0);
        }

        .btn-outline {
            background: #fff;
            border-color: #d6dee9;
            color: #334155;
        }

        .btn-outline:hover {
            background: #f8fafc;
            border-color: #b8c4d3;
            color: #0f172a;
        }

        .btn-primary {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--brand-dark);
            border-color: var(--brand-dark);
        }

        .btn-secondary {
            background: var(--teal);
            border-color: var(--teal);
            color: #fff;
        }

        .btn-secondary:hover {
            background: #115e59;
            border-color: #115e59;
        }

        .empty-state {
            padding: 58px 24px !important;
            text-align: center;
        }

        .empty-icon {
            display: grid;
            place-items: center;
            width: 48px;
            height: 48px;
            margin: 0 auto 12px;
            border-radius: 12px;
            background: #f1f5f9;
            color: #64748b;
        }

        .empty-icon svg {
            width: 23px;
            height: 23px;
        }

        .empty-state strong {
            display: block;
            margin-bottom: 4px;
            color: var(--text);
            font-size: .9rem;
        }

        .empty-state span {
            color: var(--text-muted);
            font-size: .8rem;
        }

        .no-search-results {
            display: none;
            padding: 38px 24px;
            color: var(--text-muted);
            text-align: center;
            font-size: .84rem;
        }

        .footer-note {
            margin-top: 13px;
            color: var(--text-subtle);
            font-size: .72rem;
            text-align: right;
        }

        @media (max-width: 800px) {
            .container {
                width: min(100% - 24px, 1240px);
                padding-top: 24px;
            }

            .page-header {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
            }

            .header-badge {
                align-self: flex-start;
            }

            .toolbar {
                align-items: stretch;
                flex-direction: column;
            }

            .search-wrap {
                width: 100%;
            }
        }

        @media (max-width: 520px) {
            .container {
                width: min(100% - 16px, 1240px);
            }

            .page-header h1 {
                font-size: 1.55rem;
            }

            .toolbar {
                padding: 12px;
            }

            thead th,
            tbody td {
                padding-left: 13px;
                padding-right: 13px;
            }

            .app-cell {
                padding-left: 16px !important;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                transition: none !important;
            }
        }
		   /* =========================================
           SecArchSpider Header
        ========================================= */

        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
            background: #0f2747;
            box-shadow: 0 3px 12px rgba(15, 23, 42, 0.18);
        }

        .header-container {
            width: 100%;
            max-width: 1400px;
            min-height: 72px;
            margin: 0 auto;
            padding: 0 28px;

            display: flex;
            align-items: center;
            gap: 28px;
        }

        /* =========================================
           Logo
        ========================================= */

        .brand {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            text-decoration: none;
        }

        .brand img {
            display: block;
            width: auto;
            max-width: 190px;
            height: 52px;
            object-fit: contain;
        }

        /* =========================================
           Navigation
        ========================================= */

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            flex: 1;
        }

        .main-nav a,
        .header-actions a {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            min-height: 42px;
            padding: 9px 15px;

            border-radius: 7px;

            color: #e5eef7;
            text-decoration: none;

            font-family: "Segoe UI", Arial, Helvetica, sans-serif;
            font-size: 14px;
            font-weight: 500;

            transition:
                background-color 0.2s ease,
                color 0.2s ease,
                transform 0.2s ease;
        }

        .main-nav a:hover,
        .header-actions a:hover {
            background: rgba(255, 255, 255, 0.10);
            color: #ffffff;
        }

        .main-nav a.active {
            background: #176b87;
            color: #ffffff;
            font-weight: 600;
        }

        .main-nav a:focus-visible,
        .header-actions a:focus-visible {
            outline: 2px solid #7dd3fc;
            outline-offset: 2px;
        }

        /* =========================================
           Right-side Actions
        ========================================= */

        .header-actions {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-left: auto;
            flex-shrink: 0;
        }

        .pricing-link {
            color: #dbeafe !important;
        }

        .login-link {
            background: #176b87;
            color: #ffffff !important;
            padding-left: 20px !important;
            padding-right: 20px !important;
        }

        .login-link:hover {
            background: #21819f !important;
            transform: translateY(-1px);
        }

        /* =========================================
           Mobile Menu Button
        ========================================= */

        .menu-toggle {
            display: none;

            border: 0;
            background: transparent;
            color: #ffffff;

            font-size: 25px;
            line-height: 1;
            cursor: pointer;

            padding: 8px;
        }

        /* =========================================
           Responsive
        ========================================= */

        @media (max-width: 1050px) {

            .header-container {
                gap: 15px;
                padding: 0 20px;
            }

            .main-nav a,
            .header-actions a {
                padding-left: 10px;
                padding-right: 10px;
                font-size: 13px;
            }

            .brand img {
                max-width: 155px;
                height: 48px;
            }
        }

        @media (max-width: 800px) {

            .site-header {
                position: relative;
            }

            .header-container {
                min-height: 64px;
                padding: 0 18px;
                flex-wrap: wrap;
            }

            .brand img {
                max-width: 150px;
                height: 45px;
            }

            .menu-toggle {
                display: block;
                margin-left: auto;
            }

            .main-nav,
            .header-actions {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
            }

            .main-nav.mobile-open,
            .header-actions.mobile-open {
                display: flex;
            }

            .main-nav a,
            .header-actions a {
                width: 100%;
                justify-content: flex-start;
                padding: 12px 15px;
            }

            .header-actions {
                margin-left: 0;
                padding-bottom: 12px;
            }

            .login-link {
                justify-content: center !important;
            }
        }

        /* =========================================
           Reduced Motion
        ========================================= */

        @media (prefers-reduced-motion: reduce) {
            .main-nav a,
            .header-actions a {
                transition: none;
            }
        }
		     :root {
            --primary-bg: #f4f7f6;
            --card-bg: #ffffff;
            --text-color: #2c3e50;
            --border-color: #e2e8f0;
            --header-bg: #1a202c;
            --header-text: #ffffff;
            --tab-active-bg: #007bff;
            --tab-active-text: #ffffff;
            --tab-inactive-bg: #e2e8f0;
            --danger-color: #dc3545;
            --success-color: #28a745;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-color);
            margin: 0;
            padding: 0;
            line-height: 1.5;
        }

        .container {
            max-width: 1300px;
            margin: 25px auto;
            padding: 0 15px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .page-header h2 {
            font-size: 1.75rem;
            margin: 0 0 5px 0;
            color: #1a202c;
        }

        .page-header .app-subtitle {
            font-size: 1.1rem;
            color: #4a5568;
            font-weight: 500;
        }

        .alert {
            padding: 12px 20px;
            border-radius: 6px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            padding: 20px;
            margin-bottom: 30px;
        }

    .tab-nav {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 20px;
  width: 100%; /* Ensures the container itself fills the page width */
}

/* Target the direct children (tabs) inside the navigation bar */
.tab-nav > * {
  flex: 1; 
  text-align: center; /* Optional: Centers text inside each equal-width tab */
}


        .tab-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            background-color: var(--tab-inactive-bg);
            color: #475569;
            border: none;
            border-top-left-radius: 6px;
            border-top-right-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .tab-btn.active {
            background-color: var(--tab-active-bg);
            color: var(--tab-active-text);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .table-responsive {
            width: 100%;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            font-size: 0.9rem;
        }

        th {
            background-color: var(--header-bg);
            color: var(--header-text);
            padding: 12px 14px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.5px;
        }

        th.src-header {
            background-color: #2d3748;
        }

        th.dst-header {
            background-color: #742a2a;
        }

        th.conn-header {
            background-color: #1a365d;
        }

        td {
            padding: 10px;
            border-bottom: 1px solid var(--border-color);
            vertical-align: middle;
        }

        select,
        input[type="text"],
        textarea {
            width: 100%;
            padding: 6px 10px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 0.75rem;
        }

        .tooltip {
            position: relative;
            display: inline-block;
            cursor: pointer;
            margin-left: 4px;
        }

        .tooltip .tooltiptext {
            visibility: hidden;
            width: 200px;
            background-color: #334155;
            color: #fff;
            text-align: center;
            padding: 6px;
            border-radius: 4px;
            position: absolute;
            z-index: 10;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 0.75rem;
            font-weight: normal;
        }

        .tooltip:hover .tooltiptext {
            visibility: visible;
            opacity: 1;
        }

        .toolbar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .btn {
            display: inline-block;
            padding: 9px 16px;
            font-size: 0.875rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 6px;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-primary {
            background-color: #007bff;
            color: #fff;
        }

        .btn-primary:hover {
            background-color: #0056b3;
        }

        .btn-success {
            background-color: #28a745;
            color: #fff;
        }

        .btn-success:hover {
            background-color: #1e7e34;
        }

        .btn-secondary {
            background-color: #6c757d;
            color: #fff;
        }

        .btn-secondary:hover {
            background-color: #545b62;
        }

        .btn-danger {
            background-color: #dc3545;
            color: #fff;
            padding: 4px 10px;
        }

        .btn-danger:hover {
            background-color: #bd2130;
        }
    /* ================================
           Global
        ================================= */
        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "Segoe UI", Arial, Helvetica, sans-serif;
            background: #f4f7fb;
            color: #1f2937;
            line-height: 1.65;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
        }

        /* ================================
           Main Container
        ================================= */
        .page-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 28px 50px;
        }

        /* ================================
           Hero Section
        ================================= */
        .hero {
            text-align: center;
            padding: 55px 30px 45px;
            margin: 25px 0 30px;
            background: linear-gradient(135deg, #0f2747 0%, #164e78 55%, #176b87 100%);
            border-radius: 16px;
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(15, 39, 71, 0.18);
        }

        .hero h1 {
            margin: 0 0 12px;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .hero h2 {
            margin: 0 auto 12px;
            font-size: clamp(18px, 2.5vw, 25px);
            font-weight: 500;
            color: #dbeafe;
        }

        .hero p {
            max-width: 900px;
            margin: 15px auto 0;
            color: #e5eef7;
            font-size: 16px;
        }

        /* ================================
           Intro
        ================================= */
        .intro {
            max-width: 1050px;
            margin: 0 auto 35px;
            text-align: center;
        }

        .intro p {
            margin: 0;
            font-size: 17px;
            color: #4b5563;
        }

        /* ================================
           Section Cards
        ================================= */
        .section-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 14px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 18px rgba(15, 23, 42, 0.06);
        }

        .section-title {
            margin: 0 0 10px;
            color: #0f2747;
            font-size: 26px;
            font-weight: 700;
        }

        .section-description {
            margin: 0 0 25px;
            color: #64748b;
        }

        /* ================================
           Interface Definition
        ================================= */
        .definition-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 25px;
        }

        .definition-card {
            padding: 22px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .definition-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
        }

        .definition-card .number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            margin-bottom: 12px;
            border-radius: 50%;
            background: #164e78;
            color: #ffffff;
            font-weight: 700;
        }

        .definition-card h3 {
            margin: 0 0 7px;
            color: #1e3a5f;
            font-size: 18px;
        }

        .definition-card p {
            margin: 0;
            color: #64748b;
            font-size: 14px;
        }

        /* ================================
           Deliverables
        ================================= */
        .deliverables {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 25px;
        }

        .deliverable {
            padding: 24px;
            border-left: 4px solid #176b87;
            background: #f8fafc;
            border-radius: 0 10px 10px 0;
        }

        .deliverable h3 {
            margin: 0 0 8px;
            color: #0f2747;
            font-size: 18px;
        }

        .deliverable p {
            margin: 0;
            color: #64748b;
            font-size: 14px;
        }

        /* ================================
           CTA
        ================================= */
        .cta {
            text-align: center;
            margin: 35px 0 10px;
        }

        .cta-button {
            display: inline-block;
            padding: 13px 30px;
            border-radius: 8px;
            background: #176b87;
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(23, 107, 135, 0.25);
            transition: all 0.2s ease;
        }

        .cta-button:hover {
            background: #0f526b;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(23, 107, 135, 0.30);
        }

        /* ================================
           Architecture Diagrams
        ================================= */
        .diagram-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 25px;
        }

        .diagram-card {
            background: #ffffff;
            border: 1px solid #dbe3ec;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(15, 23, 42, 0.06);
        }

        .diagram-card-header {
            padding: 13px 18px;
            background: #f1f5f9;
            border-bottom: 1px solid #dbe3ec;
            color: #334155;
            font-size: 14px;
            font-weight: 600;
        }

        .diagram-card-body {
            padding: 15px;
            background: #ffffff;
        }

        .diagram-card img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        /* ================================
           Security Assessment
        ================================= */
        .assessment-wrapper {
            margin-top: 25px;
            padding: 15px;
            background: #f8fafc;
            border: 1px solid #dbe3ec;
            border-radius: 12px;
            overflow-x: auto;
        }

        .assessment-wrapper img {
            width: 100%;
            min-width: 700px;
            height: auto;
        }

        .security-badge {
            display: inline-block;
            padding: 5px 12px;
            margin-bottom: 15px;
            border-radius: 20px;
            background: #e0f2fe;
            color: #075985;
            font-size: 13px;
            font-weight: 600;
        }

        /* ================================
           Framework Tags
        ================================= */
        .frameworks {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
        }

        .framework {
            padding: 7px 14px;
            border-radius: 20px;
            background: #eef4f8;
            border: 1px solid #d5e2ea;
            color: #31556b;
            font-size: 13px;
            font-weight: 600;
        }

        /* ================================
           Responsive
        ================================= */
        @media (max-width: 900px) {

            .definition-grid,
            .deliverables {
                grid-template-columns: 1fr;
            }

            .diagram-grid {
                grid-template-columns: 1fr;
            }

            .page-container {
                padding: 0 18px 35px;
            }

            .hero {
                padding: 40px 20px;
            }
        }

        @media (max-width: 600px) {
            .section-card {
                padding: 20px;
            }

            .hero {
                margin-top: 15px;
                border-radius: 12px;
            }

            .hero p {
                font-size: 14px;
            }

            .section-title {
                font-size: 22px;
            }

            .cta-button {
                width: 100%;
                max-width: 320px;
            }
        }
		   :root {
            --bg: #f4f7fb;
            --surface: #ffffff;
            --surface-soft: #f8fafc;
            --text: #0f172a;
            --text-muted: #64748b;
            --text-subtle: #94a3b8;
            --border: #e2e8f0;
            --border-strong: #cbd5e1;

            --brand: #1d4ed8;
            --brand-dark: #1e40af;
            --brand-soft: #eff6ff;

            --danger: #b91c1c;
            --danger-bg: #fef2f2;
            --danger-border: #fecaca;

            --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
            --shadow-md: 0 10px 30px rgba(15, 23, 42, .08);
            --shadow-lg: 0 20px 50px rgba(15, 23, 42, .12);

            --radius: 14px;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            min-height: 100%;
        }

        body {
            margin: 0;
            min-height: 100vh;
            background:
                radial-gradient(circle at top right, rgba(37, 99, 235, .07), transparent 32%),
                var(--bg);
            color: var(--text);
            font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        button {
            font: inherit;
        }

        .container {
            width: min(1400px, calc(100% - 40px));
            margin: 0 auto;
            padding: 30px 0 42px;
        }

        .page-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 20px;
        }

        .eyebrow {
            margin: 0 0 6px;
            color: var(--brand);
            font-size: .7rem;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .page-header h1 {
            margin: 0;
            font-size: clamp(1.65rem, 3vw, 2.15rem);
            line-height: 1.15;
            letter-spacing: -.035em;
        }

        .page-header p {
            margin: 8px 0 0;
            color: var(--text-muted);
            font-size: .9rem;
        }

        .context-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            max-width: 360px;
            padding: 8px 12px;
            border: 1px solid #dbeafe;
            border-radius: 999px;
            background: rgba(239, 246, 255, .9);
            color: #1e40af;
            font-size: .76rem;
            font-weight: 700;
            white-space: nowrap;
        }

        .context-badge svg {
            width: 15px;
            height: 15px;
            flex: 0 0 auto;
        }

        .viewer-card {
            overflow: hidden;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
        }

        .viewer-toolbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            min-height: 64px;
            padding: 11px 14px 11px 18px;
            border-bottom: 1px solid var(--border);
            background: rgba(255, 255, 255, .96);
        }

        .diagram-title {
            display: flex;
            align-items: center;
            gap: 11px;
            min-width: 0;
        }

        .diagram-icon {
            display: grid;
            place-items: center;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--brand-soft);
            color: var(--brand);
            flex: 0 0 auto;
        }

        .diagram-icon svg {
            width: 19px;
            height: 19px;
        }

        .diagram-title-text {
            min-width: 0;
        }

        .diagram-title-text strong {
            display: block;
            overflow: hidden;
            font-size: .86rem;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .diagram-title-text span {
            display: block;
            margin-top: 1px;
            overflow: hidden;
            color: var(--text-muted);
            font-size: .71rem;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .viewer-actions {
            display: flex;
            align-items: center;
            gap: 6px;
            flex: 0 0 auto;
        }

        .zoom-level {
            min-width: 52px;
            color: var(--text-muted);
            font-size: .72rem;
            font-weight: 700;
            text-align: center;
        }

        .icon-btn {
            display: grid;
            place-items: center;
            width: 35px;
            height: 35px;
            padding: 0;
            border: 1px solid var(--border-strong);
            border-radius: 8px;
            background: #fff;
            color: #334155;
            cursor: pointer;
            transition: background-color .15s, border-color .15s, transform .15s, box-shadow .15s;
        }

        .icon-btn:hover {
            background: #f8fafc;
            border-color: #94a3b8;
            box-shadow: var(--shadow-sm);
            transform: translateY(-1px);
        }

        .icon-btn:focus-visible,
        .btn:focus-visible {
            outline: 3px solid rgba(37, 99, 235, .18);
            outline-offset: 1px;
        }

        .icon-btn svg {
            width: 16px;
            height: 16px;
        }

        .viewer-viewport {
            position: relative;
            min-height: 560px;
            max-height: calc(100vh - 235px);
            overflow: auto;
            padding: 30px;
            background:
                linear-gradient(rgba(148, 163, 184, .08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(148, 163, 184, .08) 1px, transparent 1px),
                #f8fafc;
            background-size: 24px 24px;
            overscroll-behavior: contain;
        }

        .viewer-viewport.is-fullscreen {
            max-height: none;
            height: 100vh;
            min-height: 100vh;
            padding: 36px;
        }

        .diagram-canvas {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: max-content;
            min-height: 100%;
            transform-origin: center center;
            transition: transform .18s ease;
        }

        .diagram-image-frame {
            display: inline-block;
            padding: 12px;
            background: #fff;
            border: 1px solid #dbe3ee;
            border-radius: 10px;
            box-shadow: 0 12px 28px rgba(15, 23, 42, .10);
        }

        .diagram-image-frame img {
            display: block;
            max-width: none;
            height: auto;
            border-radius: 5px;
            user-select: none;
            -webkit-user-drag: none;
        }

        .viewer-hint {
            position: absolute;
            left: 18px;
            bottom: 16px;
            padding: 6px 9px;
            border: 1px solid rgba(226, 232, 240, .9);
            border-radius: 7px;
            background: rgba(255, 255, 255, .9);
            color: var(--text-subtle);
            font-size: .68rem;
            box-shadow: var(--shadow-sm);
            pointer-events: none;
        }

        .alert {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 22px;
            padding: 15px 17px;
            border-radius: 10px;
            background: var(--danger-bg);
            border: 1px solid var(--danger-border);
            color: var(--danger);
            font-size: .84rem;
            font-weight: 600;
        }

        .alert svg {
            width: 19px;
            height: 19px;
            flex: 0 0 auto;
        }

        .alert code {
            padding: 2px 5px;
            border-radius: 5px;
            background: rgba(185, 28, 28, .07);
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
            font-size: .78rem;
        }

        .bottom-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 13px 16px;
            border-top: 1px solid var(--border);
            background: #fff;
        }

        .security-note {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-subtle);
            font-size: .7rem;
        }

        .security-note svg {
            width: 15px;
            height: 15px;
            color: #64748b;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            min-height: 37px;
            padding: 8px 14px;
            border: 1px solid transparent;
            border-radius: 8px;
            background: var(--brand);
            color: #fff;
            cursor: pointer;
            font-size: .76rem;
            font-weight: 700;
            line-height: 1;
            text-decoration: none;
            transition: background-color .15s, transform .15s, box-shadow .15s;
        }

        .btn:hover {
            background: var(--brand-dark);
            box-shadow: 0 4px 10px rgba(15, 23, 42, .12);
            transform: translateY(-1px);
        }

        .btn svg {
            width: 15px;
            height: 15px;
        }

        .btn-secondary {
            background: #fff;
            border-color: var(--border-strong);
            color: #334155;
        }

        .btn-secondary:hover {
            background: #f8fafc;
            color: #0f172a;
        }

        @media (max-width: 760px) {
            .container {
                width: min(100% - 20px, 1400px);
                padding-top: 20px;
            }

            .page-header {
                align-items: flex-start;
                flex-direction: column;
                gap: 11px;
            }

            .context-badge {
                max-width: 100%;
            }

            .viewer-toolbar {
                align-items: flex-start;
                flex-direction: column;
            }

            .viewer-actions {
                width: 100%;
                justify-content: flex-end;
            }

            .viewer-viewport {
                min-height: 420px;
                max-height: calc(100vh - 280px);
                padding: 18px;
            }

            .bottom-bar {
                align-items: flex-start;
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .container {
                width: min(100% - 12px, 1400px);
            }

            .page-header h1 {
                font-size: 1.5rem;
            }

            .viewer-toolbar {
                padding: 10px;
            }

            .diagram-title-text span {
                max-width: 200px;
            }

            .viewer-viewport {
                min-height: 350px;
                padding: 12px;
            }

            .viewer-hint {
                display: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                transition: none !important;
            }
        }
		    :root {
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            --bg-color: #f8fafc;
            --card-bg: #ffffff;
            --text-main: #0f172a;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            
            --header-bg: #0f172a;
            --header-text: #f8fafc;
            
            --critical-bg: #fef2f2;
            --critical-text: #991b1b;
            --critical-border: #fecaca;
            
            --high-bg: #fff7ed;
            --high-text: #c2410c;
            --high-border: #ffedd5;
            
            --medium-bg: #fefce8;
            --medium-text: #854d0e;
            --medium-border: #fef08a;
            
            --low-bg: #f0fdf4;
            --low-text: #166534;
            --low-border: #bbf7d0;

            --info-bg: #f1f5f9;
            --info-text: #334155;
            --info-border: #cbd5e1;

            --btn-primary: #2563eb;
            --btn-primary-hover: #1d4ed8;
            --btn-secondary: #ffffff;
            --btn-secondary-hover: #f1f5f9;
            
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg-color);
            color: var(--text-main);
            margin: 0;
            padding: 0;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1280px;
            margin: 30px auto;
            padding: 0 24px;
        }

        /* Page Header */
        .page-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-color);
        }

        .page-title {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .page-title h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            color: var(--text-main);
        }

        .app-id-badge {
            background-color: #e0e7ff;
            color: #3730a3;
            font-size: 0.875rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: var(--radius-sm);
            font-family: monospace;
        }

        /* Summary Dashboard */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin-bottom: 24px;
        }

        .metric-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 16px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .metric-card .title {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
            color: var(--text-muted);
        }

        .metric-card .value {
            font-size: 1.75rem;
            font-weight: 700;
        }

        .metric-critical .value { color: #dc2626; }
        .metric-high .value { color: #ea580c; }
        .metric-medium .value { color: #ca8a04; }
        .metric-low .value { color: #16a34a; }

        /* Findings Card & Table */
        .card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            overflow: hidden;
        }

        .table-responsive {
            width: 100%;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            font-size: 0.875rem;
        }

        th {
            background-color: var(--header-bg);
            color: var(--header-text);
            padding: 14px 18px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.05em;
            position: sticky;
            top: 0;
        }

        td {
            padding: 16px 18px;
            border-bottom: 1px solid var(--border-color);
            vertical-align: top;
            color: var(--text-main);
        }

        tr:last-child td {
            border-bottom: none;
        }

        tr:hover td {
            background-color: #f8fafc;
        }

        /* Severity Badges */
        .badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            font-size: 0.75rem;
            font-weight: 600;
            border-radius: 9999px;
            text-transform: capitalize;
            border: 1px solid transparent;
        }

        .badge-critical {
            background-color: var(--critical-bg);
            color: var(--critical-text);
            border-color: var(--critical-border);
        }

        .badge-high {
            background-color: var(--high-bg);
            color: var(--high-text);
            border-color: var(--high-border);
        }

        .badge-medium {
            background-color: var(--medium-bg);
            color: var(--medium-text);
            border-color: var(--medium-border);
        }

        .badge-low {
            background-color: var(--low-bg);
            color: var(--low-text);
            border-color: var(--low-border);
        }

        .badge-info {
            background-color: var(--info-bg);
            color: var(--info-text);
            border-color: var(--info-border);
        }

        /* Custom UI States */
        .empty-state {
            padding: 48px 24px;
            text-align: center;
            color: var(--text-muted);
        }

        .empty-state-icon {
            font-size: 2.5rem;
            margin-bottom: 8px;
        }

        .alert {
            padding: 16px 20px;
            border-radius: var(--radius-md);
            margin: 20px 0;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .alert-danger {
            background-color: var(--critical-bg);
            color: var(--critical-text);
            border: 1px solid var(--critical-border);
        }

        .text-center { text-align: center; }

        /* Actions */
        .actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 24px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            font-size: 0.875rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }

        .btn-secondary {
            background-color: var(--btn-secondary);
            color: var(--text-main);
            border-color: var(--border-color);
        }

        .btn-secondary:hover {
            background-color: var(--btn-secondary-hover);
        }

        .btn-primary {
            background-color: var(--btn-primary);
            color: #ffffff;
        }

        .btn-primary:hover {
            background-color: var(--btn-primary-hover);
        }

        @media print {
            .actions, header {
                display: none;
            }
            .card {
                box-shadow: none;
                border: none;
            }
        }
		   * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background: #f4f7f9;
            color: #263238;
            line-height: 1.6;
        }

        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 45px 24px 60px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .page-header h1 {
            margin: 0 0 12px;
            color: #12344d;
            font-size: 34px;
            font-weight: 700;
        }

        .page-header .subtitle {
            max-width: 780px;
            margin: 0 auto;
            color: #60727f;
            font-size: 17px;
        }

        .intro-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 25px;
            border: 1px solid #e1e8ed;
            box-shadow: 0 5px 18px rgba(18, 52, 77, 0.08);
        }

        .intro-card h2 {
            margin-top: 0;
            margin-bottom: 15px;
            color: #12344d;
            font-size: 24px;
        }

        .intro-card p {
            margin-bottom: 0;
            color: #536570;
            font-size: 16px;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            margin-top: 25px;
        }

        .expertise-item {
            background: #f5fafb;
            border: 1px solid #dcecef;
            border-radius: 8px;
            padding: 18px 15px;
            text-align: center;
            color: #12344d;
            font-weight: 600;
        }

        .expertise-icon {
            width: 42px;
            height: 42px;
            margin: 0 auto 10px;
            border-radius: 50%;
            background: #0f766e;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .services-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px;
            border: 1px solid #e1e8ed;
            box-shadow: 0 5px 18px rgba(18, 52, 77, 0.08);
        }

        .services-card h2 {
            margin-top: 0;
            margin-bottom: 25px;
            color: #12344d;
            font-size: 24px;
        }

        .service-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .service-list li {
            position: relative;
            padding: 15px 15px 15px 45px;
            margin-bottom: 12px;
            background: #f8fafb;
            border-radius: 8px;
            border-left: 4px solid #0f766e;
            color: #43545e;
        }

        .service-list li::before {
            content: "✓";
            position: absolute;
            left: 15px;
            top: 14px;
            color: #0f766e;
            font-weight: bold;
            font-size: 18px;
        }

        .framework-section {
            margin-top: 30px;
            padding: 24px;
            background: #12344d;
            border-radius: 10px;
            color: #ffffff;
        }

        .framework-section h3 {
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 20px;
        }

        .framework-section p {
            margin: 0;
            color: #dce8ee;
        }

        .framework-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .framework-tag {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 7px 14px;
            border-radius: 20px;
            font-size: 14px;
        }

        @media (max-width: 900px) {
            .expertise-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .page-container {
                padding: 30px 15px 45px;
            }

            .page-header h1 {
                font-size: 28px;
            }

            .intro-card,
            .services-card {
                padding: 22px;
            }

            .expertise-grid {
                grid-template-columns: 1fr;
            }
        }
		   /* =========================================
           Global
        ========================================== */
        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "Segoe UI", Arial, Helvetica, sans-serif;
            background: #f4f7fb;
            color: #1f2937;
            line-height: 1.6;
        }

        .register-page {
            width: 100%;
            min-height: calc(100vh - 72px);
            padding: 45px 20px 55px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .register-card {
            width: 100%;
            max-width: 620px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.09);
            overflow: hidden;
        }

        .register-header {
            padding: 30px 35px 25px;
            background: linear-gradient(135deg, #0f2747 0%, #164e78 55%, #176b87 100%);
            color: #ffffff;
            text-align: center;
        }

        .register-header h1 {
            margin: 0 0 8px;
            font-size: 28px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .register-header p {
            margin: 0;
            color: #dbeafe;
            font-size: 14px;
        }

        .register-body {
            padding: 32px 35px 30px;
        }

        .field-group {
            margin-bottom: 20px;
        }

        .field-group label {
            display: block;
            margin-bottom: 7px;
            color: #334155;
            font-size: 14px;
            font-weight: 600;
        }

        .required {
            color: #dc2626;
        }

        .field-group input {
            width: 100%;
            height: 46px;
            padding: 10px 13px;
            border: 1px solid #cbd5e1;
            border-radius: 7px;
            background: #ffffff;
            color: #1f2937;
            font-family: "Segoe UI", Arial, Helvetica, sans-serif;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        }

        .field-group input::placeholder {
            color: #94a3b8;
        }

        .field-group input:hover {
            border-color: #94a3b8;
        }

        .field-group input:focus {
            border-color: #176b87;
            background: #ffffff;
            box-shadow: 0 0 0 3px rgba(23, 107, 135, 0.12);
        }

        .password-help {
            margin-top: 7px;
            color: #64748b;
            font-size: 12px;
            line-height: 1.5;
        }

        .validation-message {
            display: none;
            margin-bottom: 20px;
            padding: 11px 14px;
            border-left: 4px solid #dc2626;
            border-radius: 5px;
            background: #fef2f2;
            color: #b91c1c;
            font-size: 13px;
        }

        .validation-message.show {
            display: block;
        }

        .register-action {
            width: 100%;
            height: 46px;
            margin-top: 5px;
            border: 0;
            border-radius: 7px;
            background: #176b87;
            color: #ffffff;
            font-family: "Segoe UI", Arial, Helvetica, sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(23, 107, 135, 0.20);
            transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }

        .register-action:hover {
            background: #0f526b;
            transform: translateY(-1px);
            box-shadow: 0 7px 18px rgba(23, 107, 135, 0.25);
        }

        .register-action:focus-visible {
            outline: 2px solid #7dd3fc;
            outline-offset: 3px;
        }

        .terms {
            margin: 18px 0 0;
            text-align: center;
            color: #64748b;
            font-size: 12px;
            line-height: 1.5;
        }

        .terms a {
            color: #176b87;
            font-weight: 600;
            text-decoration: none;
        }

        .terms a:hover {
            text-decoration: underline;
        }

        .google-note {
            margin: 12px 0 0;
            padding: 10px 14px;
            text-align: center;
            border-radius: 7px;
            background: #f0f9ff;
            color: #31556b;
            font-size: 12px;
        }

        .signin {
            padding: 20px 30px;
            background: #f8fafc;
            border-top: 1px solid #e2e8f0;
            text-align: center;
            color: #64748b;
            font-size: 13px;
        }

        .signin a {
            color: #176b87;
            font-weight: 600;
            text-decoration: none;
        }

        .signin a:hover {
            text-decoration: underline;
        }

        .grecaptcha-badge {
            visibility: hidden;
        }

        .recaptcha-notice {
            max-width: 620px;
            margin: 18px auto 0;
            padding: 0 20px;
            text-align: center;
            color: #64748b;
            font-size: 11px;
            line-height: 1.5;
        }

        .recaptcha-notice a {
            color: #176b87;
            text-decoration: none;
        }

        .recaptcha-notice a:hover {
            text-decoration: underline;
        }

        @media (max-width: 650px) {
            .register-page {
                padding: 25px 15px 40px;
            }

            .register-header {
                padding: 25px 20px 22px;
            }

            .register-header h1 {
                font-size: 24px;
            }

            .register-body {
                padding: 25px 20px;
            }

            .signin {
                padding: 18px 20px;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            .field-group input,
            .register-action {
                transition: none;
            }
        }

        .alert {
            display: none;
            padding: 12px 15px;
            margin: 15px 35px 0 35px;
            border-radius: 7px;
            font-size: 14px;
            font-weight: 500;
        }

        .alert-success {
            background-color: #d1fae5;
            color: #065f46;
            border: 1px solid #10b981;
        }

        .alert-error {
            background-color: #fef2f2;
            color: #991b1b;
            border: 1px solid #ef4444;
        }
		   body {
            font-family: Arial, Helvetica, sans-serif;
            background-color: #f2f2f2;
            height: 100%;
            margin: 0px;
            padding: 0px;
        }

        table,
        th,
        td {
            border: 2px solid white;
            border-collapse: collapse;
            font-family: arial, sans-serif;
            background-color: #96D4D4;
            size: 2;
        }

        .pricing-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 24px 70px;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .pricing-header h2 {
            margin: 0 0 12px;
            color: #12344d;
            font-size: 34px;
            font-weight: 700;
        }

        .pricing-header p {
            max-width: 700px;
            margin: 0 auto;
            color: #60727f;
            font-size: 17px;
            line-height: 1.6;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: stretch;
        }

        .pricing-card {
            position: relative;
            display: flex;
            flex-direction: column;
            background: #ffffff;
            border: 1px solid #dfe7ec;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(18, 52, 77, 0.08);
            transition:
                transform 0.2s ease,
                box-shadow 0.2s ease;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 28px rgba(18, 52, 77, 0.13);
        }

        .pricing-card.featured {
            border: 2px solid #0f766e;
        }

        .pricing-card-header {
            padding: 30px 28px 24px;
            text-align: center;
            background: #f7fafb;
            border-bottom: 1px solid #e5ecef;
        }

        .pricing-card.featured .pricing-card-header {
            background: #f0f9f8;
        }

        .pricing-card.enterprise .pricing-card-header {
            background: #f2f6f9;
        }

        .pricing-card-header h3 {
            margin: 0 0 14px;
            color: #12344d;
            font-size: 25px;
            font-weight: 700;
        }

        .price {
            color: #0f766e;
            font-size: 32px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .price span {
            color: #60727f;
            font-size: 14px;
            font-weight: 400;
        }

        .enterprise-price {
            font-size: 28px;
        }

        .pricing-card-header p {
            min-height: 48px;
            margin: 0;
            color: #667985;
            font-size: 14px;
            line-height: 1.5;
        }

        .pricing-card-body {
            flex: 1;
            padding: 28px;
        }

        .pricing-card-body h4 {
            margin: 0 0 18px;
            color: #12344d;
            font-size: 16px;
            font-weight: 700;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            position: relative;
            padding: 0 0 14px 28px;
            margin-bottom: 14px;
            border-bottom: 1px solid #edf1f3;
            color: #465963;
            font-size: 14px;
            line-height: 1.55;
        }

        .feature-list li:last-child {
            margin-bottom: 0;
            border-bottom: none;
        }

        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: #0f766e;
            font-size: 17px;
            font-weight: 700;
        }

        .pricing-card-footer {
            padding: 0 28px 28px;
        }

        .pricing-button {
            display: block;
            width: 100%;
            padding: 13px 20px;
            border-radius: 7px;
            text-align: center;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .pricing-button.primary {
            background: #0f766e;
            color: #ffffff;
        }

        .pricing-button.primary:hover {
            background: #0b5f59;
        }

        .pricing-button.secondary {
            background: #12344d;
            color: #ffffff;
        }

        .pricing-button.secondary:hover {
            background: #0c283b;
        }

        .pricing-button.enterprise-button {
            background: #12344d;
            color: #ffffff;
        }

        .pricing-button.enterprise-button:hover {
            background: #0c283b;
        }

        .plan-badge {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -1px);
            padding: 6px 18px;
            background: #0f766e;
            color: #ffffff;
            border-radius: 0 0 7px 7px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.7px;
        }

        .pricing-card.featured .pricing-card-header {
            padding-top: 42px;
        }

        @media (max-width: 950px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 600px) {
            .pricing-section {
                padding: 35px 15px 50px;
            }

            .pricing-header h2 {
                font-size: 28px;
            }

            .pricing-card-header,
            .pricing-card-body {
                padding-left: 22px;
                padding-right: 22px;
            }

            .pricing-card-footer {
                padding-left: 22px;
                padding-right: 22px;
            }
        }
		    /* =========================================
       SecArchSpider Footer
    ========================================= */

    .site-footer {
        width: 100%;
        margin-top: 50px;
        background: #0f2747;
        color: #cbd5e1;
        border-top: 4px solid #176b87;
    }

    .footer-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 35px 28px 22px;
    }

    /* Footer Navigation */

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-bottom: 24px;
    }

    .footer-nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 8px 15px;

        color: #dbeafe;
        text-decoration: none;

        font-family: "Segoe UI", Arial, Helvetica, sans-serif;
        font-size: 13px;
        font-weight: 500;

        border-radius: 6px;

        transition:
            background-color 0.2s ease,
            color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-nav a:focus-visible {
        background: rgba(255, 255, 255, 0.10);
        color: #ffffff;
    }

    /* Separators */

    .footer-divider {
        width: 100%;
        max-width: 850px;
        height: 1px;
        margin: 0 auto 20px;

        background: rgba(255, 255, 255, 0.14);
    }

    /* Copyright */

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom p {
        margin: 0;
        color: #94a3b8;

        font-family: "Segoe UI", Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 1.6;
    }

    .footer-brand {
        color: #dbeafe;
        font-weight: 600;
    }

    /* Optional Product Identity */

    .footer-tagline {
        margin: 0 0 12px;

        color: #7dd3fc;

        font-family: "Segoe UI", Arial, Helvetica, sans-serif;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.2px;
    }

    /* Responsive */

    @media (max-width: 700px) {

        .footer-container {
            padding: 30px 18px 20px;
        }

        .footer-nav {
            flex-direction: column;
            gap: 2px;
        }

        .footer-nav a {
            width: 100%;
            max-width: 260px;
            padding: 9px 12px;
        }

        .footer-divider {
            margin-top: 15px;
        }
    }

    @media (prefers-reduced-motion: reduce) {

        .footer-nav a {
            transition: none;
        }
    }
   