@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');



:root {

        --gold: #f5a623;

        --gold-dark: #c8861a;

        --bg: #0d1321;

        --panel: #141c2e;

        --panel-soft: #182238;

        --input: #0d1321;

        --border: #1e2d47;

        --border-strong: rgba(245, 166, 35, 0.36);

        --text: #ffffff;

        --muted: #8896a7;

        --muted-2: #b5bfca;

        --green: #4caf7d;

        --red: #e85d5d;

        --blue: #75a7ff;

        --shadow: 0 0 60px rgba(245, 166, 35, 0.08), 0 24px 48px rgba(0, 0, 0, 0.38);

      }



      * {

        box-sizing: border-box;

      }



      html,

      body {

        min-height: 100%;

        margin: 0;

      }



      body {

        background: var(--bg);

        color: var(--text);

        font-family: "Outfit", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;

        font-size: 14.5px;

        line-height: 1.5;

        -webkit-font-smoothing: antialiased;

        -moz-osx-font-smoothing: grayscale;

        text-rendering: optimizeLegibility;

      }



      button,

      input,

      textarea,

      select {

        font: inherit;

      }



      .app {

        min-height: 100vh;

        display: flex;

        align-items: center;

        justify-content: center;

        padding: 28px 16px;

      }



      .shell {

        width: min(100%, 920px);

        background: var(--panel);

        border: 1px solid var(--border-strong);

        border-radius: 16px;

        box-shadow: var(--shadow);

        padding: 32px;

      }



      .top-row {

        display: flex;

        align-items: center;

        justify-content: flex-start;

        gap: 18px;

        margin-bottom: 24px;

      }



      #top-bar-actions-container {

        margin-left: auto;

        display: flex;

        flex-wrap: wrap;

        align-items: center;

        justify-content: flex-end;

        gap: 8px;

        min-width: 0;

      }



      .logo {

        display: inline-flex;

        align-items: center;

        gap: 10px;

        width: clamp(140px, 20vw, 230px);

      }



      .logo-image {

        display: block;

        width: 100%;

        height: auto;

        object-fit: contain;

      }



      .logo-mark {

        width: 38px;

        height: 38px;

        border-radius: 7px;

        display: grid;

        place-items: center;

        color: #1a1000;

        font-weight: 900;

        background: linear-gradient(135deg, #ffffff 0%, #ffffff 42%, var(--gold) 43%, var(--gold) 100%);

        box-shadow: 0 8px 22px rgba(245, 166, 35, 0.2);

      }



      .logo-text {

        font-size: 18px;

        line-height: 1;

        font-weight: 800;

      }



      .logo-text span {

        color: var(--gold);

      }



      .nav-row {

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 12px;

        margin-bottom: 12px;

      }



      .back-btn,

      .save-btn,

      .text-btn {

        appearance: none;

        background: rgba(255, 255, 255, 0.035);

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 8px;

        color: var(--muted);

        cursor: pointer;

        padding: 8px 11px;

        font-size: 12px;

        font-weight: 800;

        line-height: 1;

      }



      .back-btn:hover,

      .save-btn:hover,

      .text-btn:hover {

        border-color: rgba(245, 166, 35, 0.42);

        color: var(--gold);

      }



      .save-btn {

        background: rgba(245, 166, 35, 0.08);

        border-color: rgba(245, 166, 35, 0.28);

        color: var(--gold);

      }



      input[readonly] {

        color: var(--muted-2);

        border-style: dashed;

        background: rgba(255, 255, 255, 0.02);

        cursor: default;

      }



      .step-label {

        margin-bottom: 12px;

        color: var(--muted);

        font-size: 11px;

        letter-spacing: 0.08em;

        text-transform: uppercase;

      }



      .step-bar {

        display: grid;

        gap: 6px;

        margin-bottom: 28px;

      }



      .step-dot {

        height: 4px;

        border-radius: 999px;

        background: rgba(245, 166, 35, 0.2);

      }



      .step-dot.is-done,

      .step-dot.is-active {

        background: var(--gold);

      }



      h1 {

        margin: 0 0 8px;

        color: var(--gold);

        font-size: clamp(24px, 5vw, 30px);

        line-height: 1.1;

      }



      h2 {

        margin: 0 0 10px;

        font-size: 18px;

        line-height: 1.2;

      }



      h3 {

        margin: 0 0 7px;

        font-size: 15px;

      }



      p {

        margin: 0;

      }



      .subtitle {

        margin-bottom: 24px;

        color: var(--muted);

        max-width: 640px;

      }



      .section-title {

        margin: 22px 0 12px;

        padding-bottom: 7px;

        border-bottom: 1px solid var(--border);

        color: var(--muted);

        font-size: 12px;

        letter-spacing: 0.08em;

        text-transform: uppercase;

      }



      .field-grid {

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;

      }



      .field {

        min-width: 0;

      }



      .field.full {

        grid-column: 1 / -1;

      }



      label {

        display: block;

        margin-bottom: 6px;

        color: var(--muted);

        font-size: 12px;

      }



      .info-tip {

        position: relative;

        display: inline-grid;

        place-items: center;

        width: 16px;

        height: 16px;

        margin-left: 6px;

        border: 1px solid rgba(245, 166, 35, 0.44);

        border-radius: 50%;

        color: var(--gold);

        background: rgba(245, 166, 35, 0.08);

        font-size: 10px;

        font-weight: 900;

        line-height: 1;

        cursor: help;

        vertical-align: middle;

      }



      .info-tip::after {

        content: attr(data-tip);

        position: absolute;

        left: 50%;

        bottom: calc(100% + 9px);

        z-index: 12;

        width: min(280px, 78vw);

        padding: 10px 11px;

        border: 1px solid rgba(245, 166, 35, 0.32);

        border-radius: 8px;

        background: #101827;

        color: var(--muted-2);

        box-shadow: var(--shadow);

        font-size: 12px;

        font-weight: 600;

        line-height: 1.4;

        text-transform: none;

        transform: translate(-50%, 4px);

        opacity: 0;

        pointer-events: none;

        transition: opacity 0.16s ease, transform 0.16s ease;

        white-space: normal;

      }



      .info-tip:hover::after,

      .info-tip:focus-visible::after {

        opacity: 1;

        transform: translate(-50%, 0);

      }



      input,

      textarea,

      select {

        width: 100%;

        border: 1px solid var(--border);

        border-radius: 12px;

        background: var(--input);

        color: var(--text);

        outline: none;

        padding: 12px 16px;

      }



      input:focus,

      textarea:focus,

      select:focus {

        border-color: rgba(245, 166, 35, 0.72);

        box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.08);

      }



      .password-input-row {

        display: grid;

        grid-template-columns: minmax(0, 1fr) auto;

        gap: 8px;

        align-items: stretch;

      }



      .password-input-row input {

        min-width: 0;

      }



      .password-toggle-btn {

        margin: 0;

        white-space: nowrap;

        border-color: rgba(245, 166, 35, 0.28);

        color: var(--gold);

        background: rgba(245, 166, 35, 0.08);

      }



      textarea {

        min-height: 92px;

        resize: vertical;

      }



      .button-row {

        display: grid;

        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 22px;

      }



      .btn {

        width: 100%;

        min-height: 48px;

        border: none;

        border-radius: 10px;

        cursor: pointer;

        font-weight: 800;

        letter-spacing: 0.01em;

        transition: background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), 

                    border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), 

                    color 0.2s cubic-bezier(0.16, 1, 0.3, 1), 

                    transform 0.12s cubic-bezier(0.16, 1, 0.3, 1), 

                    box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);

        will-change: transform, background-color, border-color, box-shadow;

      }

      .btn:active {

        transform: scale(0.975);

      }



      .btn-primary {

        background: var(--gold);

        color: #1a1000;

      }



      .btn-primary:hover {

        background: #ffb331;

      }



      .btn-secondary {

        color: var(--gold);

        background: transparent;

        border: 1.5px solid rgba(245, 166, 35, 0.38);

      }



      .btn-muted {

        color: var(--muted-2);

        background: rgba(13, 19, 33, 0.8);

        border: 1px solid var(--border);

      }



      .notice {

        border: 1px solid rgba(117, 167, 255, 0.26);

        background: rgba(117, 167, 255, 0.08);

        color: var(--muted-2);

        border-radius: 10px;

        padding: 13px 14px;

        margin-bottom: 12px;

      }



      .notice strong {

        color: var(--text);

      }



      .trust-ribbon {

        display: flex;

        flex-wrap: wrap;

        gap: 8px;

        margin: 12px 0 14px;

      }



      .trust-pill {

        border: 1px solid rgba(76, 175, 125, 0.32);

        border-radius: 999px;

        background: rgba(76, 175, 125, 0.08);

        color: var(--muted-2);

        padding: 6px 9px;

        font-size: 12px;

        font-weight: 800;

        line-height: 1;

        white-space: nowrap;

      }



      .trust-pill.gold {

        border-color: rgba(245, 166, 35, 0.38);

        background: rgba(245, 166, 35, 0.09);

        color: var(--gold);

      }



      .context-strip {

        border: 1px solid rgba(245, 166, 35, 0.34);

        border-radius: 10px;

        background: rgba(245, 166, 35, 0.08);

        color: var(--muted-2);

        padding: 12px 14px;

        margin: 0 0 16px;

        font-size: 12px;

      }



      .context-strip strong {

        color: var(--text);

      }



      .success-notice {

        border-color: rgba(76, 175, 125, 0.28);

        background: rgba(76, 175, 125, 0.08);

      }



      .choice-grid,

      .card-grid {

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px;

      }



      .start-grid {

        display: grid;

        gap: 10px;

        align-items: start;

      }



      .start-choice-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 10px;

        align-items: stretch;

      }



      .login-panel {

        border: 1px solid var(--border);

        border-radius: 10px;

        background: var(--input);

        padding: 10px;

      }



      .login-panel h2 {

        margin: 0 0 8px;

        font-size: 18px;

      }



      .login-panel .button-row {

        margin-top: 14px;

      }



      .auth-shell {

        max-width: 560px;

        margin: 22px auto 0;

        border: 1px solid rgba(245, 166, 35, 0.54);

        border-radius: 18px;

        background: rgba(13, 19, 33, 0.48);

        padding: clamp(24px, 5vw, 44px);

      }



      .auth-shell h1 {

        margin-top: 18px;

      }



      .auth-actions {

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;

        margin-top: 18px;

      }



      .invite-code-action {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        gap: 8px;

        width: 100%;

        min-height: 42px;

        margin-top: 12px;

        border: 1px solid rgba(245, 166, 35, 0.38);

        border-radius: 10px;

        background: rgba(245, 166, 35, 0.08);

        color: var(--gold);

        cursor: pointer;

        font-weight: 900;

      }



      .invite-code-action:hover,

      .invite-code-action:focus-visible {

        border-color: rgba(245, 166, 35, 0.72);

        background: rgba(245, 166, 35, 0.14);

        outline: none;

      }



      .auth-meta-row {

        display: flex;

        justify-content: space-between;

        gap: 12px;

        align-items: center;

        margin-top: 6px;

        color: var(--muted);

        font-size: 12px;

      }



      .inline-check {

        display: inline-flex;

        gap: 8px;

        align-items: center;

        margin: 0;

        color: var(--muted-2);

        font-size: 12px;

      }



      .inline-check input {

        width: auto;

        padding: 0;

      }



      .trust-mini-grid {

        display: flex;

        flex-wrap: wrap;

        gap: 8px;

        margin-top: 18px;

      }



      .trust-mini {

        display: inline-flex;

        align-items: center;

        gap: 7px;

        border: 1px solid rgba(76, 175, 125, 0.3);

        border-radius: 999px;

        background: rgba(76, 175, 125, 0.08);

        color: var(--muted-2);

        padding: 6px 9px;

        font-size: 12px;

        font-weight: 800;

        line-height: 1;

      }



      .trust-mini::before,

      .prefill-note::before {

        content: "✓";

        color: var(--green);

        font-weight: 900;

      }



      .prefill-note,

      .sensitive-note {

        display: flex;

        gap: 8px;

        align-items: flex-start;

        margin-top: 7px;

        color: var(--muted-2);

        font-size: 12px;

      }



      .prefill-note {

        margin: 0 0 18px;

        border: 1px solid rgba(76, 175, 125, 0.24);

        border-radius: 10px;

        background: rgba(76, 175, 125, 0.08);

        padding: 12px 14px;

      }



      .sensitive-note::before {

        content: "i";

        display: inline-grid;

        place-items: center;

        flex: 0 0 auto;

        width: 16px;

        height: 16px;

        border: 1px solid rgba(245, 166, 35, 0.42);

        border-radius: 50%;

        color: var(--gold);

        font-weight: 900;

        line-height: 1;

      }



      .classification-panel {

        border: 1px solid rgba(245, 166, 35, 0.28);

        border-radius: 10px;

        background: rgba(245, 166, 35, 0.07);

        color: var(--muted-2);

        padding: 12px 14px;

        margin: 8px 0 12px;

      }



      .classification-panel strong {

        display: block;

        color: var(--text);

        margin-bottom: 4px;

      }



      .start-help {

        border: 1px solid rgba(245, 166, 35, 0.24);

        border-radius: 10px;

        background: rgba(245, 166, 35, 0.07);

        color: var(--muted-2);

        padding: 12px 14px;

        font-size: 12px;

      }



      .start-help strong {

        color: var(--gold);

      }



      .choice-card,

      .info-card,

      .plan-card,

      .status-card,

      .check-row,

      .project-card {

        border: 1px solid var(--border);

        background: var(--input);

        border-radius: 10px;

      }



      .project-card {

        margin-top: 12px;

        padding: 14px;

      }



      .js-project-entry.is-editing .project-details-panel {

        display: block !important;

      }



      .project-card-layout {

        display: grid;

        grid-template-columns: 300px 1fr;

        gap: 22px;
        align-items: center;

      }



      @media (max-width: 600px) {

        .project-card-layout {

          grid-template-columns: 1fr;

        }

        .project-image-frame {

          width: 100% !important;

          height: 190px !important;

        }

      }



      .record-head {

        display: flex;

        justify-content: space-between;

        gap: 12px;

        align-items: flex-start;

      }



      .record-title {

        display: grid;

        gap: 3px;

      }



      .record-title strong {

        font-size: 12px;

      }



      .row-actions {

        display: flex;

        flex-wrap: wrap;

        gap: 8px;

      }



      .document-stack {

        display: grid;

        gap: 12px;

        margin-top: 14px;

      }



      .document-row {

        display: grid;

        grid-template-columns: minmax(0, 1.1fr) minmax(260px, 1fr);

        gap: 10px;

        border: 1px solid var(--border);

        border-radius: 10px;

        background: var(--input);

        padding: 14px;

      }



      .document-main {

        display: grid;

        gap: 8px;

        align-content: start;

      }



      .document-controls {

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;

      }



      .document-controls .field.full {

        grid-column: 1 / -1;

      }



      .team-entry,

      .js-brand-entry {

        grid-template-columns: 1fr;

      }



      .team-entry .document-main,

      .js-brand-entry .document-main {

        grid-template-columns: auto minmax(0, 1fr) auto;

        gap: 7px 14px;

        align-items: start;

        border-bottom: 1px solid rgba(255,255,255,0.07);

        padding-bottom: 12px;

      }



      .team-entry .entry-index,

      .js-brand-entry .entry-index {

        grid-column: 1;

        grid-row: 1 / span 2;

      }



      .team-entry .record-title,

      .js-brand-entry .record-title {

        grid-column: 2;

      }



      .team-entry .document-main > p.meta,

      .js-brand-entry .document-main > p.meta {

        grid-column: 2;

        margin: 0;

      }



      .team-entry .row-actions,

      .js-brand-entry .row-actions {

        grid-column: 3;

        grid-row: 1 / span 2;

        justify-content: flex-end;

        align-self: start;

      }



      .team-entry .document-controls,

      .js-brand-entry .document-controls {

        grid-template-columns: repeat(3, minmax(0, 1fr));

      }



      .team-entry .document-controls .field.full,

      .js-brand-entry .document-controls .field.full {

        grid-column: 1 / -1;

      }



      @media (max-width: 760px) {

        .team-entry .document-main,

        .js-brand-entry .document-main {

          grid-template-columns: 1fr;

        }



        .team-entry .entry-index,

        .team-entry .record-title,

        .team-entry .document-main > p.meta,

        .team-entry .row-actions,

        .js-brand-entry .entry-index,

        .js-brand-entry .record-title,

        .js-brand-entry .document-main > p.meta,

        .js-brand-entry .row-actions {

          grid-column: 1;

          grid-row: auto;

        }



        .team-entry .row-actions,

        .js-brand-entry .row-actions {

          justify-content: flex-start;

        }



        .team-entry .document-controls,

        .js-brand-entry .document-controls {

          grid-template-columns: 1fr;

        }

      }



      .reference-box {

        border: 1px solid rgba(245, 166, 35, 0.24);

        border-radius: 10px;

        background: rgba(245, 166, 35, 0.07);

        padding: 14px;

        margin-top: 16px;

      }



      .multi-check-panel {

        border: 1px solid rgba(245, 166, 35, 0.22);

        background: rgba(255,255,255,0.018);

        border-radius: 12px;

        padding: 14px;

        margin: 8px 0 12px;

      }



      .multi-check-panel h3 {

        margin: 0 0 6px;

        color: #fff;

        font-size: 15px;

      }



      .multi-check-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 8px;

        margin-top: 12px;

      }



      .multi-check-option {

        display: flex;

        gap: 8px;

        align-items: flex-start;

        border: 1px solid var(--border);

        background: var(--input);

        border-radius: 9px;

        padding: 10px;

        color: var(--text);

        font-size: 12.5px;

        line-height: 1.35;

      }



      .multi-check-option input {

        width: 16px;

        height: 16px;

        margin-top: 1px;

        accent-color: var(--gold);

      }



      .guided-scope-panel,

      .guided-document-panel {

        border: 1px solid rgba(245, 166, 35, 0.24);

        background: linear-gradient(135deg, rgba(245, 166, 35, 0.06), rgba(76, 175, 125, 0.035));

        border-radius: 12px;

        padding: 10px;

        margin: 8px 0 12px;

        display: grid;

        gap: 10px;

      }



      .guided-scope-head,

      .guided-document-head {

        display: grid;

        gap: 5px;

      }



      .guided-scope-head h3,

      .guided-document-head h3 {

        margin: 0;

        color: #fff;

        font-size: 15px;

      }



      .guided-scope-head p,

      .guided-document-head p {

        margin: 0;

        color: var(--muted);

        font-size: 12px;

        line-height: 1.42;

      }



      .scope-add-line,

      .document-add-line {

        display: grid;

        grid-template-columns: minmax(220px, 1fr) minmax(190px, 0.8fr) auto;

        gap: 10px;

        align-items: end;

      }



      .scope-add-line .field,

      .document-add-line .field {

        margin: 0;

      }



      .scope-add-line .btn,

      .document-add-line .btn {

        min-height: 44px;

        padding: 0 18px;

        margin: 0;

        white-space: nowrap;

      }



      .quick-suggestion-row {

        display: flex;

        flex-wrap: wrap;

        gap: 8px;

      }



      .scope-suggestion,

      .doc-suggestion {

        appearance: none;

        border: 1px solid rgba(245, 166, 35, 0.28);

        border-radius: 999px;

        background: rgba(13, 19, 33, 0.82);

        color: var(--muted-2);

        padding: 6px 9px;

        cursor: pointer;

        font-size: 12px;

        font-weight: 800;

      }



      .scope-suggestion:hover,

      .scope-suggestion:focus-visible,

      .doc-suggestion:hover,

      .doc-suggestion:focus-visible {

        color: var(--gold);

        border-color: rgba(245, 166, 35, 0.62);

        outline: none;

      }



      .doc-status-strip {

        display: flex;

        flex-wrap: wrap;

        gap: 8px;

        align-items: center;

        border: 1px solid rgba(255,255,255,0.08);

        border-radius: 10px;

        background: rgba(8, 12, 21, 0.38);

        padding: 10px;

      }



      @media (max-width: 760px) {

        .scope-add-line,

        .document-add-line {

          grid-template-columns: 1fr;

        }



        .scope-add-line .btn,

        .document-add-line .btn {

          width: 100%;

        }

      }



      .review-card,

      .message-card {

        border: 1px solid rgba(245, 166, 35, 0.24);

        background: rgba(255,255,255,0.018);

        border-radius: 12px;

        padding: 10px;

      }



      .entry-index {

        color: var(--gold);

        font-size: 12px;

        font-weight: 900;

        letter-spacing: 0.08em;

        text-transform: uppercase;

      }



      .add-entry-action {

        margin-top: 12px;

        display: flex;

        justify-content: flex-start;

      }



      .add-entry-action .mini-action {

        border-color: rgba(245, 166, 35, 0.42);

        color: var(--gold);

        font-weight: 900;

      }



      .mini-action {

        appearance: none;

        border: 1px solid var(--border);

        border-radius: 8px;

        background: rgba(13, 19, 33, 0.75);

        color: var(--muted-2);

        padding: 7px 9px;

        cursor: pointer;

        font-size: 12px;

        display: inline-flex;

        align-items: center;

        justify-content: center;

        text-decoration: none;

        line-height: 1.1;

      }



      .mini-action:hover {

        color: var(--gold);

        border-color: rgba(245, 166, 35, 0.38);

      }



      .project-catalog-link {

        border-color: rgba(245, 166, 35, 0.46);

        color: var(--gold);

        font-weight: 800;

      }



      .project-catalog-link.is-action-end {

        margin-left: auto;

      }



      @media (max-width: 600px) {

        .project-catalog-link.is-action-end {

          margin-left: 0;

        }

      }



      .choice-card {

        position: relative;

        display: flex;

        flex-direction: column;

        gap: 7px;

        min-height: 128px;

        padding: 10px;

        cursor: pointer;

        text-align: left;

        color: var(--text);

        transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;

      }



      .choice-card:hover,

      .choice-card:focus-visible {

        border-color: rgba(245, 166, 35, 0.62);

        background: rgba(245, 166, 35, 0.07);

        transform: translateY(-1px);

        outline: none;

      }



      .choice-card.is-selected,

      .plan-card.is-selected {

        border-color: var(--gold);

        background: rgba(245, 166, 35, 0.08);

      }



      .choice-card.is-featured {

        border-color: rgba(245, 166, 35, 0.5);

        background: rgba(245, 166, 35, 0.09);

      }



      .start-choice-grid .choice-card {

        min-height: 168px;

        height: 100%;

        padding-top: 44px;

      }



      .choice-card strong {

        font-size: 16px;

      }



      .choice-card span,

      .info-card p,

      .plan-card p,

      .status-card p {

        color: var(--muted);

        font-size: 12px;

      }



      .choice-meta {

        margin-top: auto;

        color: var(--gold);

        font-size: 12px;

        font-weight: 800;

      }



      .card-cue {

        position: absolute;

        top: 12px;

        right: 12px;

        border: 1px solid rgba(245, 166, 35, 0.46);

        border-radius: 999px;

        background: rgba(245, 166, 35, 0.1);

        color: var(--gold);

        padding: 4px 9px;

        font-size: 11px;

        font-weight: 900;

        line-height: 1;

      }



      .choice-card:hover .card-cue,

      .choice-card:focus-visible .card-cue {

        background: var(--gold);

        color: #0d1321;

      }



      .info-card,

      .status-card {

        padding: 10px;

      }



      .status-card {

        display: grid;

        gap: 12px;

      }



      .home-hero {

        border: 1px solid rgba(245, 166, 35, 0.28);

        border-radius: 10px;

        background:

          linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(76, 175, 125, 0.08)),

          var(--input);

        padding: 18px;

        margin-bottom: 10px;

      }



      .home-hero h2 {

        margin: 0 0 8px;

        font-size: 18px;

      }



      .home-switch {

        display: flex;

        flex-wrap: wrap;

        gap: 8px;

        margin: 14px 0;

      }



      .home-stat-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 8px;

        margin-top: 14px;

      }



      .home-stat {

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 8px;

        background: rgba(255, 255, 255, 0.04);

        padding: 10px;

      }



      .home-stat span {

        display: block;

        color: var(--muted);

        font-size: 11px;

        margin-bottom: 4px;

      }



      .home-stat strong {

        display: block;

        color: var(--text);

        font-size: 12px;

      }



      .work-center-top {

        display: grid;

        grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr);

        gap: 10px;

        align-items: start;

        margin-bottom: 12px;

      }



      .work-center-top.is-compact {

        grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);

      }



      .work-center-top.is-compact .home-hero {

        margin-bottom: 0;

      }



      .work-center-top.is-compact .home-stat-grid {

        grid-template-columns: repeat(3, minmax(0, 1fr));

      }



      .compact-profile-card {

        height: 100%;

        display: grid;

        gap: 10px;

      }



      .compact-profile-kpis {

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 8px;

      }



      .compact-profile-kpi {

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 8px;

        background: rgba(255, 255, 255, 0.035);

        padding: 9px;

      }



      .compact-profile-kpi span {

        display: block;

        color: var(--muted);

        font-size: 10px;

        margin-bottom: 4px;

      }



      .compact-profile-kpi strong {

        display: block;

        color: var(--text);

        font-size: 12px;

        line-height: 1.25;

      }



      .compact-profile-card .profile-menu-list {

        grid-template-columns: repeat(2, minmax(0, 1fr));

      }



      .workspace-shell {

        display: grid;

        grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);

        gap: 16px;

        align-items: stretch;

        margin-bottom: 16px;

      }



      .workspace-command,

      .workspace-account-card,

      .workspace-panel,

      .workspace-catalog-panel {

        border: 1px solid rgba(245, 166, 35, 0.24);

        border-radius: 12px;

        background:

          linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(76, 175, 125, 0.035)),

          rgba(13, 19, 33, 0.78);

        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);

      }



      .workspace-command {

        min-height: 282px;

        padding: 22px;

        display: flex;

        flex-direction: column;

        justify-content: space-between;

        gap: 18px;

      }



      .workspace-command h1 {

        margin-bottom: 8px;

      }



      .workspace-eyebrow-row {

        display: flex;

        flex-wrap: wrap;

        align-items: center;

        gap: 8px;

        margin-bottom: 10px;

      }



      .workspace-account-pill {

        display: inline-flex;

        align-items: center;

        gap: 6px;

        border: 1px solid rgba(76, 175, 125, 0.32);

        border-radius: 999px;

        background: rgba(76, 175, 125, 0.08);

        color: var(--muted-2);

        padding: 5px 10px;

        font-size: 11px;

        font-weight: 800;

      }



      .workspace-account-pill strong {

        color: var(--text);

      }



      .workspace-status-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 10px;

      }



      .workspace-status-cell {

        min-height: 86px;

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 10px;

        background: rgba(255, 255, 255, 0.035);

        padding: 12px;

        display: grid;

        align-content: center;

        gap: 5px;

      }



      .workspace-status-cell span,

      .workspace-account-summary span {

        color: var(--muted);

        font-size: 11px;

        line-height: 1.35;

      }



      .workspace-status-cell strong,

      .workspace-account-summary strong {

        color: var(--text);

        font-size: 12px;

        line-height: 1.25;

      }



      .workspace-hero-actions {

        display: flex;

        gap: 12px;

        margin-top: 22px;

      }

      .workspace-hero-actions .btn {

        flex: 1;

        min-width: 0;

      }



      .workspace-account-card {

        padding: 10px;

        display: grid;

        align-content: start;

        gap: 10px;

      }



      .workspace-account-card > div:first-child strong {

        display: block;

        color: var(--text);

        font-size: 18px;

        line-height: 1.2;

      }



      .workspace-account-card > div:first-child span {

        display: block;

        margin-top: 5px;

        color: var(--muted);

        font-size: 12px;

      }



      .workspace-account-summary {

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 8px;

      }



      .workspace-account-summary > div {

        min-height: 74px;

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 10px;

        background: rgba(255, 255, 255, 0.035);

        padding: 10px;

        display: grid;

        align-content: center;

        gap: 4px;

      }



      .workspace-account-note {

        border: 1px solid rgba(117, 167, 255, 0.18);

        border-radius: 10px;

        background: rgba(117, 167, 255, 0.055);

        color: var(--muted);

        font-size: 12px;

        line-height: 1.45;

        padding: 11px 12px;

      }



      .workspace-account-note strong {

        color: var(--text);

      }



      .workspace-account-actions {

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 8px;

      }



      .workspace-account-actions button,

      .workspace-shortcut,

      .workspace-action-item,

      .workspace-request-item {

        appearance: none;

        cursor: pointer;

        font: inherit;

        text-align: left;

      }



      .workspace-account-actions button {

        min-height: 42px;

        border: 1px solid var(--border);

        border-radius: 9px;

        background: rgba(255, 255, 255, 0.035);

        color: var(--muted-2);

        padding: 9px 11px;

        font-size: 12px;

        font-weight: 900;

      }



      .workspace-account-actions button:hover,

      .workspace-account-actions button:focus-visible,

      .workspace-shortcut:hover,

      .workspace-shortcut:focus-visible,

      .workspace-action-item:hover,

      .workspace-action-item:focus-visible,

      .workspace-request-item:hover,

      .workspace-request-item:focus-visible {

        border-color: rgba(245, 166, 35, 0.54);

        color: var(--gold);

        outline: none;

      }



      .workspace-panel-grid {

        display: grid;

        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);

        gap: 16px;

        margin-bottom: 12px;

      }



      .workspace-panel {

        padding: 10px;

      }



      .workspace-panel-head {

        display: flex;

        justify-content: space-between;

        align-items: flex-start;

        gap: 10px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.07);

        padding-bottom: 12px;

        margin-bottom: 12px;

      }



      .workspace-panel-head h2 {

        margin: 0 0 5px;

        color: var(--text);

        font-size: 18px;

      }



      .workspace-panel-head p {

        margin: 0;

        color: var(--muted);

        font-size: 12px;

        line-height: 1.45;

      }



      .workspace-panel-head > span {

        border: 1px solid rgba(245, 166, 35, 0.36);

        border-radius: 999px;

        color: var(--gold);

        background: rgba(245, 166, 35, 0.08);

        padding: 4px 9px;

        font-size: 11px;

        font-weight: 900;

        white-space: nowrap;

      }



      .workspace-action-list,

      .workspace-request-list {

        display: grid;

        gap: 9px;

      }



      .workspace-action-item {

        width: 100%;

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 10px;

        background: rgba(8, 13, 25, 0.82);

        color: var(--text);

        padding: 12px;

        display: grid;

        grid-template-columns: minmax(0, 1fr) auto;

        gap: 12px;

        align-items: center;

      }



      .workspace-action-item strong,

      .workspace-action-item small,

      .workspace-request-item strong,

      .workspace-request-item small {

        display: block;

      }



      .workspace-action-item strong,

      .workspace-request-item strong {

        color: var(--text);

        font-size: 12px;

        line-height: 1.3;

      }



      .workspace-action-item small,

      .workspace-request-item small {

        margin-top: 4px;

        color: var(--muted);

        font-size: 11.5px;

        line-height: 1.4;

      }



      .workspace-action-status {

        border: 1px solid rgba(255, 255, 255, 0.14);

        border-radius: 999px;

        color: var(--muted-2);

        background: rgba(255, 255, 255, 0.035);

        padding: 5px 8px;

        font-size: 10px;

        font-weight: 900;

        white-space: nowrap;

      }



      .workspace-action-status.is-done {

        border-color: rgba(76, 175, 125, 0.38);

        color: var(--green);

        background: rgba(76, 175, 125, 0.08);

      }



      .workspace-action-status.is-needed {

        border-color: rgba(245, 166, 35, 0.46);

        color: var(--gold);

        background: rgba(245, 166, 35, 0.09);

      }



      .workspace-action-status.is-review {

        border-color: rgba(117, 167, 255, 0.38);

        color: #9bbdff;

        background: rgba(117, 167, 255, 0.08);

      }



      .workspace-request-item {

        width: 100%;

        border: 1px solid rgba(117, 167, 255, 0.18);

        border-radius: 10px;

        background: rgba(117, 167, 255, 0.045);

        color: var(--text);

        padding: 12px;

        display: grid;

        grid-template-columns: minmax(0, 1fr) auto;

        gap: 10px;

        align-items: center;

      }



      .workspace-request-item em {

        border: 1px solid rgba(245, 166, 35, 0.42);

        border-radius: 999px;

        color: var(--gold);

        background: rgba(245, 166, 35, 0.08);

        padding: 4px 8px;

        font-size: 10px;

        font-style: normal;

        font-weight: 900;

        white-space: nowrap;

      }



      .workspace-empty-state {

        min-height: 164px;

        border: 1px dashed rgba(255, 255, 255, 0.14);

        border-radius: 10px;

        background: rgba(255, 255, 255, 0.02);

        padding: 18px;

        display: grid;

        place-content: center;

        text-align: center;

        gap: 6px;

      }



      .workspace-empty-state strong {

        color: var(--text);

      }



      .workspace-empty-state span {

        color: var(--muted);

        font-size: 12px;

        line-height: 1.45;

      }



      .workspace-shortcut-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 10px;

        margin-bottom: 12px;

      }



      .workspace-shortcut {

        min-height: 94px;

        border: 1px solid var(--border);

        border-radius: 10px;

        background: rgba(13, 19, 33, 0.74);

        color: var(--text);

        padding: 10px;

        display: grid;

        align-content: center;

        gap: 6px;

      }



      .workspace-shortcut strong,

      .workspace-shortcut span {

        display: block;

      }



      .workspace-shortcut strong {

        color: var(--text);

        font-size: 12px;

      }



      .workspace-shortcut span {

        color: var(--muted);

        font-size: 11.5px;

        line-height: 1.4;

      }



      .workspace-catalog-panel {

        padding: 17px;

        display: grid;

        grid-template-columns: minmax(0, 1fr) auto;

        gap: 16px;

        align-items: center;

      }



      .workspace-catalog-panel h2 {

        margin: 0 0 6px;

        color: var(--text);

        font-size: 18px;

      }



      .workspace-catalog-panel p {

        margin: 0;

        color: var(--muted);

        font-size: 12.5px;

        line-height: 1.5;

      }



      .profile-settings-shell {

        display: grid;

        grid-template-columns: 240px minmax(0, 1fr);

        gap: 18px;

        align-items: start;

      }



      .profile-settings-nav {

        position: sticky;

        top: 18px;

        border: 1px solid rgba(245, 166, 35, 0.24);

        border-radius: 10px;

        background: rgba(13, 19, 33, 0.82);

        padding: 14px;

        display: grid;

        gap: 9px;

      }



      .profile-settings-nav strong {

        color: var(--text);

        font-size: 15px;

      }



      .profile-settings-nav p {

        margin: 0;

        color: var(--muted);

        font-size: 12px;

        line-height: 1.45;

      }



      .profile-settings-nav-list {

        display: grid;

        gap: 7px;

        margin-top: 4px;

      }



      .profile-settings-nav-list button {

        width: 100%;

        min-height: 36px;

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 8px;

        background: rgba(255, 255, 255, 0.035);

        color: var(--muted-2);

        font: inherit;

        font-size: 12px;

        font-weight: 800;

        text-align: left;

        padding: 8px 10px;

        cursor: pointer;

      }



      .profile-settings-nav-list button:hover {

        border-color: rgba(245, 166, 35, 0.38);

        color: var(--gold);

        background: rgba(245, 166, 35, 0.06);

      }



      .profile-settings-main {

        min-width: 0;

      }



      .profile-settings-hero {

        display: grid;

        grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);

        gap: 12px;

        align-items: stretch;

        margin-bottom: 10px;

      }



      .profile-settings-hero .profile-identity,

      .profile-settings-next {

        border: 1px solid rgba(245, 166, 35, 0.24);

        border-radius: 10px;

        background: rgba(255, 255, 255, 0.025);

        padding: 14px;

        margin: 0;

      }



      .profile-settings-next {

        display: grid;

        align-content: center;

        gap: 8px;

      }



      .profile-settings-next h3 {

        margin: 0;

        color: var(--text);

        font-size: 18px;

      }



      .profile-settings-next p {

        margin: 0;

        color: var(--muted);

        font-size: 12.5px;

        line-height: 1.45;

      }



      .profile-settings-grid {

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 12px;

      }



      .profile-setting-card {

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 10px;

        background: rgba(255, 255, 255, 0.028);

        padding: 14px;

        display: grid;

        gap: 12px;

        align-content: start;

      }



      .profile-setting-card.is-primary {

        border-color: rgba(245, 166, 35, 0.35);

        background:

          linear-gradient(135deg, rgba(245, 166, 35, 0.055), rgba(255, 255, 255, 0.02)),

          rgba(255, 255, 255, 0.025);

      }



      .profile-setting-card.is-muted {

        border-style: dashed;

      }



      .profile-setting-head {

        display: flex;

        align-items: flex-start;

        justify-content: space-between;

        gap: 12px;

      }



      .profile-setting-head h3 {

        margin: 0 0 5px;

        color: var(--text);

        font-size: 16px;

      }



      .profile-setting-head p {

        margin: 0;

        color: var(--muted);

        font-size: 12.3px;

        line-height: 1.45;

      }



      .profile-data-status {

        display: inline-flex;

        align-items: center;

        white-space: nowrap;

        border: 1px solid rgba(255, 255, 255, 0.12);

        border-radius: 999px;

        color: var(--muted-2);

        background: rgba(255, 255, 255, 0.035);

        padding: 4px 8px;

        font-size: 10px;

        font-weight: 900;

      }



      .profile-data-status.is-gold {

        border-color: rgba(245, 166, 35, 0.42);

        color: var(--gold);

        background: rgba(245, 166, 35, 0.08);

      }



      .profile-data-status.is-green {

        border-color: rgba(76, 175, 125, 0.42);

        color: var(--green);

        background: rgba(76, 175, 125, 0.08);

      }



      .profile-field-list {

        display: grid;

        gap: 7px;

      }



      .profile-field-row {

        display: grid;

        grid-template-columns: minmax(100px, 0.36fr) minmax(0, 1fr);

        gap: 10px;

        align-items: baseline;

        border-top: 1px solid rgba(255, 255, 255, 0.055);

        padding-top: 7px;

      }



      .profile-field-row span {

        color: var(--muted);

        font-size: 11px;

      }



      .profile-field-row strong {

        color: var(--text);

        font-size: 12.5px;

        line-height: 1.35;

        word-break: break-word;

      }



      .profile-setting-actions {

        display: flex;

        flex-wrap: wrap;

        gap: 8px;

      }



      .profile-menu-card {

        border: 1px solid rgba(245, 166, 35, 0.26);

        border-radius: 10px;

        background: rgba(13, 19, 33, 0.72);

        padding: 10px;

      }



      .profile-menu-card strong {

        display: block;

        color: var(--text);

      }



      .profile-menu-card span {

        display: block;

        color: var(--muted);

        font-size: 12px;

      }



      .profile-menu-list {

        display: grid;

        gap: 6px;

        margin-top: 6px;

      }



      .profile-menu-list button {

        appearance: none;

        border: 1px solid var(--border);

        border-radius: 8px;

        background: rgba(255, 255, 255, 0.03);

        color: var(--muted-2);

        cursor: pointer;

        padding: 7px 9px;

        text-align: left;

        font-size: 12px;

        font-weight: 800;

      }



      .profile-menu-list button:hover,

      .profile-menu-list button:focus-visible {

        border-color: rgba(245, 166, 35, 0.48);

        color: var(--gold);

        outline: none;

      }



      .ecosystem-panel {

        border: 1px solid rgba(117, 167, 255, 0.22);

        border-radius: 10px;

        background: rgba(117, 167, 255, 0.06);

        padding: 10px;

        margin-bottom: 12px;

      }



      .ecosystem-panel h2 {

        margin-bottom: 6px;

      }



      .access-level-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 10px;

      }



      .access-level-card {

        border: 1px solid var(--border);

        border-radius: 10px;

        background: var(--input);

        padding: 10px;

      }



      .access-level-card.is-current {

        border-color: rgba(245, 166, 35, 0.62);

        background: rgba(245, 166, 35, 0.08);

      }



      .access-level-card strong {

        display: block;

        margin-bottom: 6px;

      }



      .access-level-card p {

        color: var(--muted);

        font-size: 12px;

      }



      .access-tag {

        align-self: flex-start;

        margin-top: auto;

        border: 1px solid rgba(245, 166, 35, 0.38);

        border-radius: 999px;

        color: var(--gold);

        padding: 4px 8px;

        font-size: 11px;

        font-weight: 900;

        line-height: 1;

      }



      .compact-action-grid {

        display: grid;

        grid-template-columns: repeat(5, minmax(0, 1fr));

        gap: 8px;

        margin-top: 12px;

      }



      .compact-action {

        appearance: none;

        min-height: 76px;

        border: 1px solid var(--border);

        border-radius: 10px;

        background: rgba(13, 19, 33, 0.72);

        color: var(--text);

        cursor: pointer;

        padding: 9px;

        text-align: left;

      }



      .compact-action strong,

      .compact-action span {

        display: block;

      }



      .compact-action strong {

        margin-bottom: 4px;

        font-size: 12px;

      }



      .compact-action span {

        color: var(--muted);

        font-size: 11px;

      }



      .compact-action:hover,

      .compact-action:focus-visible {

        border-color: rgba(245, 166, 35, 0.54);

        color: var(--gold);

        outline: none;

      }



      .access-preview-note {

        border: 1px solid rgba(245, 166, 35, 0.26);

        border-radius: 10px;

        background: rgba(245, 166, 35, 0.07);

        color: var(--muted-2);

        padding: 11px 13px;

        margin: 10px 0 16px;

        font-size: 12px;

      }



      .action-feedback {

        border: 1px solid rgba(76, 175, 125, 0.26);

        border-radius: 10px;

        background: rgba(76, 175, 125, 0.08);

        color: var(--muted-2);

        padding: 11px 13px;

        margin: 12px 0 0;

        font-size: 12px;

      }



      .locked-metric {

        display: inline-flex;

        align-items: center;

        gap: 6px;

      }



      .locked-metric::before {

        content: "Slēgts";

        border: 1px solid rgba(245, 166, 35, 0.42);

        border-radius: 999px;

        color: var(--gold);

        padding: 2px 6px;

        font-size: 10px;

        font-weight: 900;

        line-height: 1;

      }



      .directory-intro {

        display: grid;

        grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);

        gap: 12px;

        margin-bottom: 10px;

      }



      .directory-highlight {

        border: 1px solid rgba(245, 166, 35, 0.3);

        border-radius: 10px;

        background:

          linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(76, 175, 125, 0.06)),

          var(--input);

        padding: 10px;

      }



      .directory-highlight h2 {

        margin: 8px 0 6px;

        font-size: 18px;

      }



      .directory-grid {

        display: grid;

        grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);

        gap: 10px;

        align-items: start;

      }



      .filter-panel,

      .result-panel {

        border: 1px solid var(--border);

        border-radius: 10px;

        background: var(--input);

        padding: 14px;

      }



      .filter-panel {

        display: grid;

        gap: 12px;

      }



      .filter-panel h2,

      .result-panel h2 {

        margin: 0;

        font-size: 15px;

      }



      .filter-chip-row,

      .partner-meta,

      .partner-actions {

        display: flex;

        flex-wrap: wrap;

        gap: 8px;

      }



      .filter-chip-row .chip {

        min-height: 34px;

        padding: 6px 9px;

      }



      .result-panel {

        display: grid;

        gap: 12px;

      }



      .result-toolbar {

        display: flex;

        justify-content: space-between;

        gap: 12px;

        align-items: flex-start;

      }



      .partner-card {

        border: 1px solid rgba(255, 255, 255, 0.09);

        border-radius: 10px;

        background: rgba(255, 255, 255, 0.035);

        padding: 14px;

        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

      }



      .partner-card:hover {

        transform: translateY(-2px);

        border-color: rgba(255, 255, 255, 0.2);

        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);

      }



      .partner-card.is-verified-highlight {

        border: 1px solid rgba(245, 166, 35, 0.38);

        background: linear-gradient(135deg, rgba(245, 166, 35, 0.06), rgba(17, 26, 44, 0.5));

        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 0 12px rgba(245, 166, 35, 0.03);

      }



      .partner-card.is-verified-highlight:hover {

        border-color: var(--gold);

        background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(17, 26, 44, 0.7));

        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25), inset 0 0 16px rgba(245, 166, 35, 0.08);

        transform: translateY(-2px);

      }



      .partner-card.is-limited {

        border-style: dashed;

        background: rgba(245, 166, 35, 0.045);

      }



      .partner-head {

        display: grid;

        grid-template-columns: 44px 1fr;

        gap: 12px;

        align-items: center;

        margin-bottom: 10px;

      }



      .partner-avatar {

        width: 44px;

        height: 44px;

        border: 1px solid rgba(245, 166, 35, 0.35);

        border-radius: 9px;

        display: grid;

        place-items: center;

        color: var(--gold);

        background: rgba(245, 166, 35, 0.08);

        font-weight: 900;

      }



      .partner-title {

        display: grid;

        gap: 3px;

      }



      .partner-title strong {

        font-size: 15px;

      }



      .partner-score-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 8px;

        margin: 12px 0;

      }



      .partner-score {

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 8px;

        padding: 9px;

        background: rgba(13, 19, 33, 0.55);

      }



      .partner-score span {

        display: block;

        color: var(--muted);

        font-size: 11px;

        margin-bottom: 3px;

      }



      .partner-score strong {

        color: var(--text);

        font-size: 12px;

      }



      .locked-line {

        border-left: 3px solid rgba(245, 166, 35, 0.58);

        padding-left: 10px;

        color: var(--muted-2);

        font-size: 12px;

      }



      .progress-track {

        height: 9px;

        border-radius: 999px;

        background: rgba(255, 255, 255, 0.08);

        overflow: hidden;

      }



      .progress-fill {

        height: 100%;

        border-radius: inherit;

        background: var(--gold);

      }



      .dashboard-grid {

        display: grid;

        grid-template-columns: 1.1fr 0.9fr;

        gap: 12px;

      }



      .dashboard-actions {

        display: grid;

        gap: 10px;

      }



      .plan-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 12px;

      }



      .plan-card {

        min-height: 320px;

        padding: 10px;

        display: flex;

        flex-direction: column;

      }



      .plan-tag {

        align-self: flex-start;

        border: 1px solid rgba(245, 166, 35, 0.4);

        background: rgba(245, 166, 35, 0.1);

        color: var(--gold);

        border-radius: 999px;

        padding: 3px 9px;

        font-size: 11px;

        font-weight: 800;

        margin-bottom: 12px;

      }



      .price {

        margin: 12px 0;

        color: var(--gold);

        font-size: 23px;

        font-weight: 900;

      }



      .price small {

        display: block;

        color: var(--muted);

        font-size: 12px;

        font-weight: 500;

      }



      .feature-list {

        display: grid;

        gap: 8px;

        margin: 4px 0 18px;

        padding: 0;

        list-style: none;

      }



      .feature-list li {

        position: relative;

        padding-left: 20px;

        color: var(--muted-2);

        font-size: 12px;

      }



      .feature-list li::before {

        content: "";

        position: absolute;

        left: 0;

        top: 0.62em;

        width: 8px;

        height: 8px;

        border-radius: 50%;

        background: var(--green);

      }



      .plan-card .btn {

        margin-top: auto;

        min-height: 42px;

      }



      .chip-grid {

        display: flex;

        flex-wrap: wrap;

        gap: 8px;

      }



      .chip {

        border: 1px solid var(--border);

        border-radius: 999px;

        background: rgba(13, 19, 33, 0.8);

        color: var(--muted-2);

        padding: 8px 11px;

        cursor: pointer;

        font-size: 12px;

        transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;

      }



      .chip:hover,

      .chip:focus-visible {

        border-color: rgba(245, 166, 35, 0.52);

        color: var(--gold);

        outline: none;

      }



      .chip.is-selected {

        border-color: rgba(245, 166, 35, 0.7);

        color: var(--gold);

        background: rgba(245, 166, 35, 0.09);

      }



      .check-list {

        display: grid;

        gap: 10px;

      }



      .check-row {

        display: grid;

        grid-template-columns: 20px 1fr auto;

        gap: 10px;

        align-items: start;

        padding: 12px;

        cursor: pointer;

        text-align: left;

        color: var(--text);

      }



      .check-box {

        width: 18px;

        height: 18px;

        border: 2px solid var(--muted);

        border-radius: 4px;

        margin-top: 2px;

      }



      .check-row.is-selected .check-box {

        border-color: var(--gold);

        background: var(--gold);

      }



      .check-row.is-required {

        border-color: rgba(245, 166, 35, 0.46);

      }



      .check-row strong {

        display: block;

        margin-bottom: 2px;

      }



      .check-row span span {

        color: var(--muted);

        font-size: 12px;

      }



      .upload-box {

        border: 1px dashed rgba(245, 166, 35, 0.32);

        border-radius: 10px;

        background: rgba(245, 166, 35, 0.06);

        padding: 10px;

        margin: 14px 0;

      }



      .upload-box label {

        color: var(--text);

        font-weight: 800;

      }



      .upload-box input[type="file"] {

        margin-top: 8px;

        border-style: solid;

      }



      .profile-upload {

        display: grid;

        grid-template-columns: 58px 1fr;

        gap: 10px;

        align-items: center;

        border: 1px dashed rgba(245, 166, 35, 0.32);

        border-radius: 10px;

        background: rgba(245, 166, 35, 0.04);

        padding: 10px;

        margin-bottom: 12px;

      }



      .profile-upload-preview {

        display: grid;

        place-items: center;

        width: 52px;

        height: 52px;

        border: 1px solid rgba(245, 166, 35, 0.42);

        border-radius: 12px;

        background: rgba(255, 255, 255, 0.06);

        color: var(--gold);

        font-size: 18px;

        font-weight: 900;

      }



      .profile-upload strong {

        display: block;

        margin-bottom: 4px;

      }



      .profile-upload input[type="file"] {

        margin-top: 6px;

        border-style: solid;

      }

      .profile-upload .upload-gallery-preview-grid {

        grid-template-columns: repeat(auto-fit, 56px);

        gap: 8px;

        margin-top: 8px;

      }



      .profile-upload .gallery-preview-item {

        width: 56px;

        height: 56px;

        border-radius: 8px;

      }



      .visibility-controls {

        display: flex;

        flex-wrap: wrap;

        gap: 7px;

        margin-top: 8px;

      }



      .visibility-option {

        appearance: none;

        border: 1px solid rgba(255, 255, 255, 0.12);

        border-radius: 999px;

        background: rgba(13, 19, 33, 0.75);

        color: var(--muted-2);

        padding: 6px 9px;

        cursor: pointer;

        font-size: 12px;

      }



      .visibility-option:hover,

      .visibility-option:focus-visible {

        border-color: rgba(245, 166, 35, 0.5);

        color: var(--gold);

        outline: none;

      }



      .visibility-option.is-selected {

        border-color: rgba(245, 166, 35, 0.72);

        background: rgba(245, 166, 35, 0.11);

        color: var(--gold);

        font-weight: 800;

      }



      .visibility-guide {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 10px;

        margin: 0 0 18px;

      }



      .visibility-step {

        border: 1px solid var(--border);

        border-radius: 10px;

        background: rgba(255, 255, 255, 0.035);

        padding: 12px;

      }



      .visibility-step span {

        display: inline-grid;

        place-items: center;

        width: 26px;

        height: 26px;

        margin-bottom: 8px;

        border-radius: 50%;

        background: rgba(245, 166, 35, 0.12);

        color: var(--gold);

        font-size: 12px;

        font-weight: 900;

      }



      .visibility-step strong {

        display: block;

        margin-bottom: 4px;

        color: var(--text);

      }



      .visibility-step p {

        margin: 0;

        color: var(--muted);

        font-size: 12px;

        line-height: 1.45;

      }



      .combo-example {

        margin-top: 14px;

      }



      .profile-identity {

        display: grid;

        grid-template-columns: 82px 1fr;

        gap: 16px;

        align-items: center;

        border: 1px solid rgba(245, 166, 35, 0.28);

        border-radius: 10px;

        background: var(--input);

        padding: 10px;

      }



      .profile-identity.result-preview {

        background:

          linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(76, 175, 125, 0.08)),

          var(--input);

        margin-bottom: 10px;

      }



      .public-profile-shell {

        display: grid;

        gap: 16px;

      }



      .public-profile-shell .profile-identity {

        margin-bottom: 0;

      }



      .profile-identity.has-company-logo {

        grid-template-columns: 170px 1fr;

      }



      .public-identity-card {

        align-items: stretch;

      }



      .public-identity-copy {

        display: grid;

        gap: 8px;

        align-content: center;

      }



      .public-identity-copy .badge {

        justify-self: start;

      }



      .public-identity-copy h1 {

        margin: 0;

        font-size: clamp(28px, 4vw, 42px);

        line-height: 1.05;

      }



      .public-profile-lead {

        margin: 0;

        color: var(--muted-2);

        line-height: 1.42;

        max-width: 780px;

      }



      .public-score-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 10px;

      }



      .public-score-grid.is-complete {

        grid-template-columns: repeat(3, minmax(0, 1fr));

      }



      .public-score {

        border: 1px solid rgba(255, 255, 255, 0.09);

        border-radius: 9px;

        background: rgba(255, 255, 255, 0.04);

        padding: 12px;

      }



      .public-score span {

        display: block;

        color: var(--muted);

        font-size: 11px;

        margin-bottom: 4px;

      }



      .public-score strong {

        display: block;

        color: var(--text);

        font-size: 18px;

      }



      .public-section {

        display: grid;

        gap: 12px;

      }



      .public-fact-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 10px;

      }



      .public-fact-grid.is-wide {

        grid-template-columns: repeat(3, minmax(0, 1fr));

      }



      .public-fact {

        border: 1px solid rgba(255, 255, 255, 0.09);

        border-radius: 9px;

        background: rgba(255, 255, 255, 0.035);

        padding: 12px;

      }



      .public-fact span {

        display: block;

        color: var(--muted);

        font-size: 11px;

        margin-bottom: 5px;

      }



      .public-fact strong {

        display: block;

        color: var(--text);

        font-size: 12px;

        line-height: 1.35;

      }



      .public-fact a {

        display: inline-block;

        color: var(--gold);

        font-size: 12px;

        font-weight: 800;

        line-height: 1.35;

        text-decoration: none;

        overflow-wrap: anywhere;

      }



      .public-fact a:hover {

        text-decoration: underline;

      }



      .public-highlight-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 10px;

      }



      .public-highlight-card {

        border: 1px solid rgba(255, 255, 255, 0.09);

        border-radius: 10px;

        background:

          linear-gradient(135deg, rgba(245, 166, 35, 0.07), rgba(76, 175, 125, 0.035)),

          rgba(255, 255, 255, 0.035);

        padding: 14px;

        min-height: 142px;

      }



      .public-highlight-card span {

        display: block;

        color: var(--gold);

        font-size: 11px;

        font-weight: 900;

        margin-bottom: 8px;

        text-transform: uppercase;

      }



      .public-highlight-card strong {

        display: block;

        color: var(--text);

        font-size: 15px;

        line-height: 1.3;

        margin-bottom: 8px;

      }



      .public-highlight-card p {

        margin: 0;

        color: var(--muted);

        font-size: 12px;

        line-height: 1.45;

      }



      .public-chip-list {

        display: flex;

        flex-wrap: wrap;

        gap: 8px;

      }



      .public-chip {

        border: 1px solid rgba(245, 166, 35, 0.35);

        border-radius: 999px;

        background: rgba(245, 166, 35, 0.08);

        color: var(--text);

        font-size: 12px;

        font-weight: 800;

        padding: 8px 11px;

      }



      .public-reference-grid {

        align-items: stretch;

      }



      .public-reference-card {

        display: flex;

        flex-direction: column;

        justify-content: space-between;

        min-height: 170px;

      }



      .public-reference-card h3 {

        margin-bottom: 8px;

      }



      .public-reference-card p {

        margin-bottom: 10px;

      }



      .profile-avatar {

        display: grid;

        place-items: center;

        width: 72px;

        height: 72px;

        border: 1px solid rgba(245, 166, 35, 0.46);

        border-radius: 14px;

        background: rgba(245, 166, 35, 0.11);

        color: var(--gold);

        font-size: 28px;

        font-weight: 900;

      }



      .profile-avatar.public-photo {

        overflow: hidden;

        background: #fff;

        color: transparent;

      }



      .profile-avatar.public-photo img {

        display: block;

        width: 100%;

        height: 100%;

        object-fit: cover;

      }



      .profile-avatar.public-photo.is-company-logo img {

        object-fit: contain;

        padding: 8px;

      }



      .profile-avatar.public-photo.is-company-logo {

        width: 154px;

        height: 70px;

        border-radius: 12px;

      }



      .profile-avatar.public-photo.is-person-photo {

        border-radius: 50%;

      }



      .profile-identity h2 {

        margin: 0 0 5px;

        font-size: 18px;

      }



      .status-chip-grid {

        display: flex;

        flex-wrap: wrap;

        gap: 8px;

      }



      .brand-signal-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 10px;

        margin-top: 6px;

      }



      .brand-signal-grid.is-public {

        grid-template-columns: repeat(3, minmax(0, 1fr));

      }



      .brand-signal {

        display: grid;

        grid-template-columns: 86px 1fr;

        gap: 10px;

        align-items: center;

        border: 1px solid rgba(255, 255, 255, 0.09);

        border-radius: 9px;

        background: rgba(255, 255, 255, 0.035);

        padding: 10px;

      }



      .brand-signal.is-empty {

        border-style: dashed;

        border-color: rgba(245, 166, 35, 0.22);

        background: rgba(255, 255, 255, 0.018);

      }



      .brand-logo-mini {

        width: 86px;

        height: 42px;

        border: 1px solid rgba(245, 166, 35, 0.35);

        border-radius: 8px;

        display: grid;

        place-items: center;

        background: rgba(245, 166, 35, 0.08);

        color: var(--gold);

        font-size: 11px;

        font-weight: 900;

        line-height: 1;

        overflow: hidden;

        padding: 4px;

      }



      .brand-logo-mini.is-empty {

        border-style: dashed;

        background: rgba(245, 166, 35, 0.035);

        color: rgba(245, 166, 35, 0.72);

        font-size: 18px;

      }



      .brand-logo-mini.is-image {

        background: #fff;

      }



      .brand-logo-mini img {

        display: block;

        width: 100%;

        height: 100%;

        object-fit: contain;

      }



      .brand-signal strong {

        display: block;

        font-size: 12px;

      }



      .brand-signal span {

        display: block;

        color: var(--muted);

        font-size: 11px;

      }



      .contact-status-card {

        min-height: 112px;

      }



      .contact-status-card.is-selected {

        border-color: rgba(76, 175, 125, 0.5);

        background: rgba(76, 175, 125, 0.08);

      }



      .contact-action-grid {

        display: grid;

        grid-template-columns: 1.2fr 1fr 1fr;

        gap: 10px;

        margin: 14px 0 20px;

      }



      .contact-action {

        min-height: 44px;

        border-radius: 10px;

        border: 1.5px solid rgba(245, 166, 35, 0.34);

        background: rgba(13, 19, 33, 0.76);

        color: var(--gold);

        cursor: pointer;

        font-weight: 900;

        display: inline-flex;

        align-items: center;

        justify-content: center;

        gap: 8px;

        padding: 9px 12px;

      }



      .contact-action.is-primary {

        border-color: transparent;

        background: var(--gold);

        color: #1a1000;

      }



      .channel-icon {

        width: 22px;

        height: 22px;

        min-width: 22px;

        display: inline-grid;

        place-items: center;

        overflow: hidden;

        font-family: Arial, sans-serif;

        font-size: 11px;

        font-weight: 900;

        line-height: 1;

      }



      .channel-direct {

        border-radius: 7px;

        background: rgba(26, 16, 0, 0.16);

        color: #1a1000;

      }



      .channel-linkedin {

        border-radius: 50%;

        background: #0a66c2;

        color: #fff;

        font-size: 12px;

      }



      .channel-birdy {

        position: relative;

        border-radius: 50%;

        background:

          radial-gradient(circle at 68% 44%, #18c9ea 0 44%, transparent 45%),

          #ffc400;

      }



      .channel-birdy::after {

        content: "";

        width: 8px;

        height: 8px;

        border-radius: 0 70% 70% 70%;

        background: #f49a16;

        transform: rotate(45deg);

        position: absolute;

        right: 4px;

        top: 7px;

      }



      .metric-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 12px;

      }



      .metric-grid-4 {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 12px;

      }



      .metric-card {

        border: 1px solid var(--border);

        border-radius: 10px;

        background: var(--input);

        padding: 10px;

        min-width: 0;

        display: grid;

        align-content: start;

      }



      .metric-label {

        color: var(--muted);

        font-size: 12px;

        line-height: 1.3;

        margin-bottom: 8px;

      }



      .metric-value {

        color: var(--gold);

        font-size: clamp(22px, 2vw, 28px);

        line-height: 1.05;

        font-weight: 900;

        overflow-wrap: anywhere;

        text-wrap: balance;

      }



      .metric-value.green {

        color: var(--green);

      }



      .metric-value.is-status {

        font-size: clamp(16px, 1.25vw, 20px);

        line-height: 1.22;

        letter-spacing: 0;

      }



      .metric-note {

        color: var(--muted);

        font-size: 12px;

        line-height: 1.45;

        margin-top: 8px;

      }



      .booster-card {

        border-color: rgba(245, 166, 35, 0.24);

        background:

          linear-gradient(135deg, rgba(245, 166, 35, 0.08), rgba(76, 175, 125, 0.045)),

          var(--input);

      }



      .booster-card .metric-value {

        font-size: 18px;

      }



      .progress-panel {

        border: 1px solid rgba(245, 166, 35, 0.26);

        border-radius: 10px;

        background: rgba(13, 19, 33, 0.72);

        padding: 14px;

        margin: 14px 0 22px;

      }



      .verification-jump-nav {

        display: grid;

        grid-template-columns: repeat(5, minmax(0, 1fr));

        gap: 8px;

        margin: -10px 0 18px;

      }



      .verification-jump-button {

        appearance: none;

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 8px;

        background: rgba(255, 255, 255, 0.03);

        color: var(--muted-2);

        cursor: pointer;

        display: flex;

        align-items: center;

        gap: 8px;

        justify-content: center;

        min-height: 42px;

        padding: 8px 9px;

        font-size: 11px;

        font-weight: 900;

        line-height: 1.15;

        text-align: center;

      }



      .verification-jump-button span {

        align-items: center;

        background: rgba(245, 166, 35, 0.12);

        border: 1px solid rgba(245, 166, 35, 0.25);

        border-radius: 999px;

        color: var(--gold);

        display: inline-flex;

        font-size: 10px;

        height: 20px;

        justify-content: center;

        min-width: 20px;

      }



      .verification-jump-button.is-active {

        background: rgba(245, 166, 35, 0.12);

        border-color: rgba(245, 166, 35, 0.52);

        color: #fff;

      }



      .verification-jump-button:hover {

        border-color: rgba(245, 166, 35, 0.45);

        color: var(--gold);

      }



      .public-data-prefill,

      .global-feedback-bar {

        border: 1px solid rgba(76, 175, 125, 0.26);

        border-radius: 10px;

        background: rgba(76, 175, 125, 0.07);

        color: var(--muted-2);

        line-height: 1.5;

      }



      .public-data-prefill {

        margin: 0 0 16px;

        padding: 14px 16px;

      }



      .public-data-prefill strong,

      .global-feedback-bar strong {

        color: #fff;

      }



      .global-feedback-bar {

        align-items: center;

        display: flex;

        justify-content: space-between;

        gap: 10px;

        margin-top: 28px;

        padding: 13px 15px;

      }



      .global-feedback-bar span {

        display: block;

        color: var(--muted);

        font-size: 12px;

        margin-top: 2px;

      }



      .progress-panel-head {

        display: flex;

        justify-content: space-between;

        align-items: flex-start;

        gap: 12px;

        margin-bottom: 12px;

      }



      .progress-panel-head h2 {

        margin: 0;

        font-size: 15px;

      }



      .progress-kpi {

        color: var(--gold);

        font-size: 12px;

        font-weight: 900;

        white-space: nowrap;

      }



      .progress-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 8px;

      }



      .progress-cell {

        border: 1px solid rgba(255, 255, 255, 0.08);

        border-radius: 8px;

        background: rgba(255, 255, 255, 0.035);

        padding: 10px;

      }



      .progress-cell span {

        display: block;

        color: var(--muted);

        font-size: 11px;

        margin-bottom: 4px;

      }



      .progress-cell strong {

        display: block;

        color: var(--text);

        font-size: 12px;

        line-height: 1.25;

      }



      .progress-cell strong.gold {

        color: var(--gold);

      }



      .progress-cell strong.green {

        color: var(--green);

      }



      .meta {

        color: var(--muted);

        font-size: 12px;

        margin: 4px 0 0;

      }



      .score-list {

        display: grid;

        gap: 8px;

        margin: 0;

        padding: 0;

        list-style: none;

      }



      .score-list li {

        display: grid;

        grid-template-columns: 1fr auto;

        gap: 10px;

        align-items: center;

        border-top: 1px solid rgba(255, 255, 255, 0.08);

        padding-top: 8px;

      }



      .score-list li:first-child {

        border-top: 0;

        padding-top: 0;

      }



      .score-list span {

        color: var(--muted-2);

        font-size: 12px;

      }



      .score-list strong {

        color: var(--green);

        font-size: 12px;

        white-space: nowrap;

      }



      .status-pill {

        align-self: start;

        border: 1px solid rgba(245, 166, 35, 0.3);

        border-radius: 999px;

        color: var(--gold);

        padding: 2px 8px;

        font-size: 11px;

        white-space: nowrap;

      }



      .status-pill.required {

        border-color: rgba(245, 166, 35, 0.52);

        background: rgba(245, 166, 35, 0.11);

      }



      .status-pill.recommended {

        border-color: rgba(76, 175, 125, 0.42);

        background: rgba(76, 175, 125, 0.1);

        color: var(--green);

      }



      .status-pill.later {

        border-color: rgba(255, 255, 255, 0.14);

        background: rgba(255, 255, 255, 0.04);

        color: var(--muted);

      }



      .field-hint {

        color: var(--muted);

        font-size: 12px;

        margin-top: 6px;

      }



      .upload-status {

        border: 1px solid rgba(255, 255, 255, 0.12);

        border-radius: 8px;

        color: var(--muted-2);

        font-size: 12px;

        line-height: 1.35;

        margin-top: 8px;

        padding: 8px 10px;

        background: rgba(255, 255, 255, 0.035);

      }



      .upload-status.ok {

        border-color: rgba(76, 175, 125, 0.34);

        color: #bdf3d0;

        background: rgba(76, 175, 125, 0.08);

      }



      .upload-status.warning {

        border-color: rgba(245, 166, 35, 0.36);

        color: #ffd99b;

        background: rgba(245, 166, 35, 0.08);

      }



      .upload-status.error {

        border-color: rgba(255, 92, 92, 0.36);

        color: #ffdada;

        background: rgba(255, 92, 92, 0.08);

      }



      .conditional-field[hidden] {

        display: none;

      }



      .inline-check {

        display: flex;

        align-items: flex-start;

        gap: 8px;

        color: var(--muted-2);

        font-size: 12px;

        line-height: 1.4;

        margin-top: 8px;

      }



      .inline-check input {

        width: 16px;

        min-width: 16px;

        height: 16px;

        margin-top: 1px;

        accent-color: var(--gold);

      }



      .field.has-error input,

      .field.has-error select,

      .field.has-error textarea {

        border-color: rgba(255, 92, 92, 0.7);

      }



      .field-error-text {

        color: #ff8a8a;

        font-size: 12px;

        margin-top: 7px;

        line-height: 1.35;

      }



      .error-notice {

        border-color: rgba(255, 92, 92, 0.34);

        background: rgba(255, 92, 92, 0.08);

      }



      .form-validation-message {

        border: 1px solid rgba(255, 92, 92, 0.36);

        border-radius: 10px;

        background: rgba(255, 92, 92, 0.08);

        color: #ffdada;

        padding: 12px 14px;

        margin: 14px 0;

        font-size: 12px;

        line-height: 1.45;

      }



      .warning-notice {

        border-color: rgba(245, 166, 35, 0.34);

        background: rgba(245, 166, 35, 0.08);

      }



      .empty-state {

        border: 1px dashed rgba(255, 255, 255, 0.16);

        border-radius: 10px;

        background: rgba(255, 255, 255, 0.035);

        padding: 10px;

      }



      .otp-row {

        display: grid;

        grid-template-columns: repeat(6, 1fr);

        gap: 8px;

        margin: 22px 0 4px;

      }



      .otp-row input {

        height: 52px;

        padding: 8px;

        text-align: center;

        font-size: 18px;

        font-weight: 800;

        border-color: rgba(245, 166, 35, 0.42);

      }



      .badge {

        display: inline-block;

        border: 1px solid rgba(76, 175, 125, 0.42);

        border-radius: 999px;

        background: rgba(76, 175, 125, 0.1);

        color: var(--green);

        padding: 2px 8px;

        font-size: 11px;

        font-weight: 800;

        white-space: nowrap;

      }



      .badge.gold {

        border-color: rgba(245, 166, 35, 0.42);

        background: rgba(245, 166, 35, 0.1);

        color: var(--gold);

      }



      .micro-copy {

        color: var(--muted);

        font-size: 12px;

        line-height: 1.5;

        margin-top: 8px;

      }



      .summary-box {

        border: 1px solid rgba(76, 175, 125, 0.28);

        border-radius: 12px;

        background: rgba(76, 175, 125, 0.08);

        padding: 18px;

      }



      .summary-list {

        display: grid;

        gap: 10px;

        padding: 0;

        margin: 0;

        list-style: none;

      }



      .summary-list li {

        display: flex;

        align-items: center;

        gap: 9px;

      }



      .summary-list li::before {

        content: "";

        width: 10px;

        height: 10px;

        min-width: 10px;

        border-radius: 50%;

        background: var(--green);

      }



      @media (max-width: 760px) {

        .shell {

          padding: 24px 18px;

        }



        .top-row,

        .nav-row {

          flex-direction: column;

          align-items: flex-start;

        }



        #top-bar-actions-container {

          margin-left: 0;

          width: 100%;

          justify-content: flex-start;

        }



        .logo {

          width: min(210px, 76vw);

        }



        .field-grid,

        .start-grid,

        .start-choice-grid,

        .choice-grid,

        .card-grid,

        .directory-intro,

        .directory-grid,

        .dashboard-grid,

        .work-center-top,

        .workspace-shell,

        .workspace-panel-grid,

        .workspace-catalog-panel,

        .access-level-grid,

        .compact-action-grid,

        .workspace-shortcut-grid,

        .visibility-guide,

        .contact-action-grid,

        .progress-grid,

        .public-score-grid.is-complete,

        .public-fact-grid,

        .profile-settings-shell,

        .profile-settings-hero,

        .profile-settings-grid,

        .home-stat-grid,

        .partner-score-grid,

        .catalog-filter-grid,

        .verification-jump-nav,

        .multi-check-grid,

        .auth-actions,

        .document-row,

        .document-controls,

        .public-highlight-grid,

        .plan-grid {

          grid-template-columns: 1fr;

        }



        .plan-card {

          min-height: auto;

        }



        .check-row {

          grid-template-columns: 20px 1fr;

        }



        .check-row .status-pill {

          grid-column: 2;

        }



        .profile-upload {

          grid-template-columns: 1fr;

        }



        .global-feedback-bar {

          align-items: stretch;

          flex-direction: column;

        }



        .profile-identity {

          grid-template-columns: 1fr;

        }



        .public-profile-shell .profile-identity.has-company-logo,

        .work-center-top.is-compact {

          grid-template-columns: 1fr;

        }



        .work-center-top.is-compact .home-stat-grid,

        .compact-profile-card .profile-menu-list,

        .compact-profile-kpis,

        .workspace-status-grid,

        .workspace-account-summary,

        .workspace-account-actions {

          grid-template-columns: repeat(2, minmax(0, 1fr));

        }



        .public-score-grid.is-complete {

          grid-template-columns: repeat(2, minmax(0, 1fr));

        }



        .profile-settings-nav {

          position: static;

        }



        .profile-field-row {

          grid-template-columns: 1fr;

          gap: 3px;

        }



        .brand-signal-grid {

          grid-template-columns: 1fr;

        }



        .metric-grid,

        .metric-grid-4 {

          grid-template-columns: 1fr;

        }



        .home-stat-grid,

        .compact-action-grid,

        .access-level-grid,

        .workspace-shortcut-grid {

          grid-template-columns: repeat(2, minmax(0, 1fr));

        }



        .workspace-command,

        .workspace-account-card,

        .workspace-panel,

        .workspace-catalog-panel {

          padding: 14px;

        }



        .workspace-action-item,

        .workspace-request-item {

          grid-template-columns: 1fr;

        }



        .workspace-catalog-panel .btn {

          width: 100%;

        }

      }



      @media (max-width: 520px) {

        .app {

          padding: 14px 8px;

        }



        .shell {

          border-radius: 12px;

          padding: 18px 12px;

        }



        .workspace-status-grid,

        .workspace-account-summary,

        .workspace-shortcut-grid,

        .home-stat-grid,

        .compact-action-grid,

        .access-level-grid,

        .public-score-grid.is-complete {

          grid-template-columns: 1fr;

        }



        .workspace-hero-actions,

        .button-row {

          flex-direction: column;

        }



        .workspace-hero-actions .btn,

        .button-row .btn,

        #top-bar-actions-container .mini-action {

          width: 100%;

        }



        .workspace-panel-head {

          flex-direction: column;

        }



        .workspace-catalog-panel {

          grid-template-columns: 1fr;

        }

      }



      /* v5 Blur & Lock styles */

      .blur-locked-container {

        position: relative;

        overflow: hidden;

      }

      .blur-locked-content {

        filter: blur(4.5px);

        opacity: 0.5;

        pointer-events: none;

        user-select: none;

      }

      .blur-lock-overlay {

        position: absolute;

        inset: 0;

        display: grid;

        place-items: center;

        background: rgba(20, 28, 46, 0.42);

        z-index: 10;

        text-align: center;

        padding: 10px;

      }

      .blur-lock-badge {

        background: var(--panel-soft);

        border: 1px solid var(--border-strong);

        color: var(--gold);

        padding: 8px 14px;

        border-radius: 8px;

        font-weight: 800;

        font-size: 12px;

        box-shadow: var(--shadow);

        cursor: pointer;

      }

      .blur-lock-badge:hover {

        border-color: var(--gold);

        background: var(--panel);

      }





      /* v5 Marketplace Homepage CSS styles */

      .marketplace-hero {

        text-align: center;

        padding: 44px 16px;

        background: radial-gradient(circle at 50% 30%, rgba(245, 166, 35, 0.09), transparent 60%);

        border-radius: 14px;

        border: 1px solid rgba(245, 166, 35, 0.16);

        margin-bottom: 24px;

      }

      .marketplace-hero h1 {

        font-size: clamp(24px, 6vw, 36px);

        margin-bottom: 12px;

      }

      .marketplace-hero .subtitle {

        margin-left: auto;

        margin-right: auto;

        text-align: center;

      }

      .search-box-wrap {

        display: flex;

        gap: 8px;

        max-width: 640px;

        margin: 20px auto 12px;

      }

      .search-box-wrap input {

        border-color: rgba(245, 166, 35, 0.44);

        font-size: 12px;

      }

      .catalog-filter-bar {

        margin: 22px auto 12px;

        max-width: 1180px;

        border: 1px solid rgba(245, 166, 35, 0.26);

        background: rgba(5, 10, 18, 0.56);

        border-radius: 12px;

        padding: 14px;

        box-shadow: inset 0 0 18px rgba(255,255,255,0.015);

      }

      

      .catalog-filter-grid {

        display: grid;

        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));

        gap: 16px;

      }

      

      .catalog-filter-bar.is-expanded .catalog-filter-grid {

        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));

      }



      .catalog-filter {

        text-align: left;

      }

      .catalog-filter label {

        display: block;

        font-size: 10px;

        line-height: 1.2;

        text-transform: uppercase;

        letter-spacing: 0.04em;

        color: var(--muted-2);

        margin: 0 0 5px;

      }

      .catalog-filter select {

        min-height: 40px;

        padding: 8px 30px 8px 10px;

        font-size: 12.5px;

      }

      .catalog-filter input.catalog-filter-other {

        min-height: 36px;

        margin-top: 7px;

        padding: 8px 10px;

        font-size: 12.5px;

        border-color: rgba(245, 166, 35, 0.42);

      }

      .catalog-filter input.catalog-filter-other[hidden] {

        display: none;

      }

      .catalog-filter-actions {

        display: flex;

        gap: 10px;

        align-items: center;

        justify-content: space-between;

        flex-wrap: wrap;

        margin-top: 12px;

        border-top: 1px solid rgba(255,255,255,0.06);

        padding-top: 12px;

      }

      .catalog-filter-note {

        margin: 0;

        color: var(--muted-2);

        font-size: 12.5px;

        line-height: 1.4;

        text-align: left;

      }

      .filter-panel .catalog-filter-bar {

        margin: 0;

        padding: 0;

        border: none;

        background: transparent;

        box-shadow: none;

      }

      .filter-panel .catalog-filter-grid {

        grid-template-columns: 1fr;

      }

      .filter-panel .catalog-filter-actions {

        align-items: stretch;

      }

      .filter-panel .catalog-filter-actions .btn,

      .filter-panel .catalog-filter-actions .mini-action {

        width: 100%;

      }

      .category-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 10px;

        margin-bottom: 28px;

      }

      .category-card {

        border: 1px solid var(--border);

        border-radius: 12px;

        background: var(--input);

        padding: 10px;

        cursor: pointer;

        transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;

        text-align: left;

      }

      .category-card:hover {

        border-color: rgba(245, 166, 35, 0.54);

        background: rgba(245, 166, 35, 0.06);

        transform: translateY(-2px);

      }

      .category-card.is-decision-maker {

        border-color: rgba(117, 167, 255, 0.3);

        background: rgba(117, 167, 255, 0.04);

      }

      .category-card.is-decision-maker:hover {

        border-color: rgba(117, 167, 255, 0.7);

        background: rgba(117, 167, 255, 0.08);

      }

      .category-card h3 {

        color: var(--gold);

        font-size: 15px;

        font-weight: 800;

        margin-bottom: 4px;

        display: flex;

        align-items: center;

        gap: 6px;

      }

      .category-card.is-decision-maker h3 {

        color: var(--blue);

      }

      .category-card ul {

        margin: 8px 0 0;

        padding: 0 0 0 14px;

        font-size: 12px;

        color: var(--muted-2);

        line-height: 1.4;

      }

      .category-card li {

        margin-bottom: 3px;

      }

      .featured-section {

        margin-bottom: 28px;

      }

      .live-stat-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 12px;

        margin-bottom: 28px;

      }

      .live-stat-card {

        border: 1px solid var(--border);

        border-radius: 10px;

        background: var(--panel-soft);

        padding: 14px;

        text-align: center;

      }

      .live-stat-card span {

        display: block;

        color: var(--muted);

        font-size: 11px;

        text-transform: uppercase;

        letter-spacing: 0.05em;

        margin-bottom: 6px;

      }

      .live-stat-card strong {

        font-size: 24px;

        font-weight: 900;

        color: var(--text);

      }

      .live-stat-card strong.zero-stat {

        color: var(--muted);

        opacity: 0.6;

      }



      /* Premium hardware-accelerated page transition animations (v7.1) */

      #screen {

        opacity: 0;

        transform: translateY(6px);

        transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);

        will-change: opacity, transform;

      }

      #screen.screen-visible {

        opacity: 1;

        transform: translateY(0);

      }



      /* Collapsible controls inside document rows (v8.1) */

      .document-row:not(.is-editing) {

        grid-template-columns: 1fr !important;

      }

      .document-row:not(.is-editing) .document-controls {

        display: none !important;

      }



      /* Premium Toast Notification System (v9.0) */

      .gb-toast-container {

        position: fixed;

        top: 24px;

        right: 24px;

        z-index: 99999;

        display: flex;

        flex-direction: column;

        gap: 12px;

        max-width: 420px;

        pointer-events: none;

      }

      .gb-toast {

        background: rgba(30, 41, 59, 0.95);

        color: #f8fafc;

        padding: 16px 20px;

        border-radius: 12px;

        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);

        border: 1px solid rgba(255, 255, 255, 0.08);

        font-family: inherit;

        font-size: 12px;

        line-height: 1.5;

        display: flex;

        align-items: center;

        gap: 12px;

        pointer-events: auto;

        transform: translateY(-20px);

        opacity: 0;

        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

        backdrop-filter: blur(12px);

        -webkit-backdrop-filter: blur(12px);

      }

      .gb-toast.show {

        transform: translateY(0);

        opacity: 1;

      }

      .gb-toast.fade-out {

        transform: translateY(-20px);

        opacity: 0;

      }

      .gb-toast-warning {

        border-left: 4px solid #f5a623;

        background: rgba(30, 41, 59, 0.98);

      }

      .gb-toast-success {

        border-left: 4px solid #10b981;

      }

      .gb-toast-info {

        border-left: 4px solid #3b82f6;

      }

      .gb-toast-error {

        border-left: 4px solid #ef4444;

      }

/* Premium custom Vault Share list styles (v9.6) */

.vault-share-row {

  display: flex !important;

  align-items: center !important;

  justify-content: flex-start !important;

  gap: 12px !important;

  padding: 12px 16px !important;

  background: rgba(255, 255, 255, 0.02) !important;

  border: 1px solid var(--border) !important;

  border-radius: 8px !important;

  margin-bottom: 8px !important;

  cursor: pointer !important;

  transition: all 0.2s ease !important;

  text-align: left !important;

  width: 100% !important;

  box-sizing: border-box !important;

  grid-template-columns: none !important; /* Reset grid column rules */

}

.vault-share-row:hover {

  background: rgba(255, 255, 255, 0.05) !important;

  border-color: var(--gold) !important;

}

.vault-share-row input[type="checkbox"] {

  width: 18px !important;

  height: 18px !important;

  accent-color: var(--gold) !important;

  cursor: pointer !important;

  margin: 0 !important;

  flex-shrink: 0 !important;

}

.vault-share-row span {

  display: block !important;

  flex: 1 !important;

}



/* Premium Project Gallery Previews & Visual Thumbnails (v9.35) */

.upload-gallery-preview-grid {

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));

  gap: 10px;

  margin-top: 10px;

}

.gallery-preview-item {

  position: relative;

  width: 80px;

  height: 80px;

  border-radius: 8px;

  overflow: hidden;

  border: 1px solid var(--border);

  background: var(--input);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

  transition: transform 0.2s ease, border-color 0.2s ease;

  cursor: pointer;

}

.gallery-preview-item img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}

.gallery-preview-item:hover {

  transform: scale(1.05);

  border-color: var(--gold);

}


.gallery-preview-item.is-cover {

  border-color: var(--gold);

  box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.26), 0 8px 18px rgba(0, 0, 0, 0.24);

}

.gallery-preview-item .cover-thumb-btn {

  position: absolute;

  left: 4px;

  right: 4px;

  bottom: 4px;

  min-height: 18px;

  border: 1px solid rgba(245, 166, 35, 0.65);

  border-radius: 999px;

  background: rgba(8, 13, 24, 0.82);

  color: var(--gold);

  font-size: 9px;

  font-weight: 900;

  line-height: 1;

  cursor: pointer;

  z-index: 9;

}

.gallery-preview-item .cover-thumb-btn.is-selected {

  background: var(--gold);

  color: #101010;

  border-color: var(--gold);

}

.gallery-preview-item .delete-thumb-btn {

  position: absolute;

  top: 4px;

  right: 4px;

  width: 18px;

  height: 18px;

  border-radius: 50%;

  background: rgba(232, 93, 93, 0.9);

  border: none;

  color: #fff;

  font-size: 12px;

  font-weight: bold;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  opacity: 0.8;

  transition: opacity 0.2s ease;

  z-index: 10;

}

.gallery-preview-item .delete-thumb-btn:hover {

  opacity: 1;

}

.project-gallery-thumbnails {

  display: flex;

  gap: 8px;

  margin: 10px 0;

  flex-wrap: wrap;

}

.gallery-thumbnail {

  display: block;

  width: 48px;

  height: 48px;

  border-radius: 6px;

  overflow: hidden;

  border: 1px solid var(--border);

  transition: transform 0.2s ease, border-color 0.2s ease;

  cursor: pointer;

}

.gallery-thumbnail img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}

.gallery-thumbnail:hover {

  transform: scale(1.08);

  border-color: var(--gold) !important;

}



/* Audited Project card collapsed details panel control (v9.36) */

.project-card:not(.is-editing) .project-details-panel {

  display: none !important;

}



/* Hover effect on project cover image triggers */

.js-open-gallery-trigger {

  overflow: hidden;

  position: relative;

}

.js-open-gallery-trigger img {

  transition: transform 0.3s ease;

}

.js-open-gallery-trigger:hover img {

  transform: scale(1.05);

}



/* --- PREMIUM TOAST NOTIFICATION SYSTEM --- */

#toast-container {

  position: fixed;

  top: 24px;

  right: 24px;

  display: flex;

  flex-direction: column;

  gap: 12px;

  z-index: 10000;

  max-width: 380px;

  width: calc(100% - 48px);

}



.toast {

  background: rgba(16, 24, 40, 0.95);

  backdrop-filter: blur(16px) saturate(180%);

  -webkit-backdrop-filter: blur(16px) saturate(180%);

  border: 1px solid rgba(255, 255, 255, 0.12);

  color: var(--text);

  padding: 14px 20px;

  border-radius: 12px;

  font-family: "Outfit", sans-serif;

  font-size: 14.5px;

  font-weight: 600;

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.15);

  display: flex;

  align-items: center;

  gap: 12px;

  transform: translateY(20px) scale(0.95);

  opacity: 0;

  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  pointer-events: auto;

}



.toast.show {

  transform: translateY(0) scale(1);

  opacity: 1;

}



.toast.hide {

  transform: translateY(-20px) scale(0.9);

  opacity: 0;

}



.toast-icon {

  font-size: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

}



.toast-success {

  border-left: 4px solid var(--green);

  border-right: 1px solid rgba(76, 175, 125, 0.2);

  border-top: 1px solid rgba(76, 175, 125, 0.2);

  border-bottom: 1px solid rgba(76, 175, 125, 0.2);

  box-shadow: 0 12px 30px rgba(76, 175, 125, 0.15), 0 4px 12px rgba(0, 0, 0, 0.4);

}



.toast-success .toast-icon {

  color: var(--green);

}



.toast-error {

  border-left: 4px solid var(--red);

  border-right: 1px solid rgba(232, 93, 93, 0.2);

  border-top: 1px solid rgba(232, 93, 93, 0.2);

  border-bottom: 1px solid rgba(232, 93, 93, 0.2);

  box-shadow: 0 12px 30px rgba(232, 93, 93, 0.15), 0 4px 12px rgba(0, 0, 0, 0.4);

}



.toast-error .toast-icon {

  color: var(--red);

}



.toast-info {

  border-left: 4px solid var(--blue);

  border-right: 1px solid rgba(117, 167, 255, 0.2);

  border-top: 1px solid rgba(117, 167, 255, 0.2);

  border-bottom: 1px solid rgba(117, 167, 255, 0.2);

  box-shadow: 0 12px 30px rgba(117, 167, 255, 0.15), 0 4px 12px rgba(0, 0, 0, 0.4);

}



.toast-info .toast-icon {

  color: var(--blue);

}



.toast-warning {

  border-left: 4px solid var(--gold);

  border-right: 1px solid rgba(245, 166, 35, 0.2);

  border-top: 1px solid rgba(245, 166, 35, 0.2);

  border-bottom: 1px solid rgba(245, 166, 35, 0.2);

  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.15), 0 4px 12px rgba(0, 0, 0, 0.4);

}



.toast-warning .toast-icon {

  color: var(--gold);

}



.toast-content {

  flex-grow: 1;

  line-height: 1.4;

}



.toast-close {

  cursor: pointer;

  color: var(--muted);

  font-size: 16px;

  padding: 4px;

  display: flex;

  align-items: center;

  justify-content: center;

  transition: color 0.2s;

  background: none;

  border: none;

}



.toast-close:hover {

  color: var(--text);

}



@keyframes pulse-slow {

  0%, 100% { opacity: 1; }

  50% { opacity: 0.4; }

}



/* Premium Custom File Upload inputs */

input[type="file"] {

  appearance: none;

  border: 1px dashed rgba(245, 166, 35, 0.36) !important;

  background: rgba(13, 19, 33, 0.45) !important;

  padding: 10px 14px !important;

  color: var(--muted-2) !important;

  border-radius: 12px !important;

  font-size: 13px !important;

  width: 100% !important;

  cursor: pointer !important;

  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;

}



input[type="file"]:hover {

  border-color: rgba(245, 166, 35, 0.65) !important;

  box-shadow: 0 0 12px rgba(245, 166, 35, 0.08) !important;

}



input[type="file"]::file-selector-button {

  background: var(--gold) !important;

  border: none !important;

  border-radius: 8px !important;

  color: #1a1000 !important;

  cursor: pointer !important;

  padding: 6px 14px !important;

  font-weight: 800 !important;

  font-size: 12px !important;

  margin-right: 12px !important;

  transition: background 0.2s ease, transform 0.1s ease !important;

}



input[type="file"]::file-selector-button:hover {

  background: #ffb331 !important;

}



input[type="file"]::file-selector-button:active {

  transform: scale(0.96) !important;

}



/* 2026-06-20 readability pass: register-only profile work surfaces */

body.register-mode {

  font-size: 16px;

  line-height: 1.58;

}



.register-mode .shell {

  width: min(100%, 1040px);

}



.register-mode .back-btn,

.register-mode .save-btn,

.register-mode .text-btn {

  padding: 9px 12px;

  font-size: 13px;

}



.register-mode .step-label {

  font-size: 12.5px;

}



.register-mode h1 {

  font-size: 32px;

  line-height: 1.14;

}



.register-mode h2 {

  font-size: 22px;

  line-height: 1.25;

}



.register-mode h3 {

  font-size: 17px;

}



.register-mode .subtitle {

  font-size: 16px;

  line-height: 1.55;

  max-width: 720px;

}



.register-mode .section-title {

  font-size: 13px;

}



.register-mode label {

  font-size: 13px;

}



.register-mode .info-tip::after {

  font-size: 13px;

}



.register-mode input,

.register-mode textarea,

.register-mode select {

  min-height: 50px;

  font-size: 16px;

  line-height: 1.4;

}



.register-mode .btn {

  min-height: 52px;

  font-size: 16px;

}



.register-mode .notice {

  font-size: 15px;

  line-height: 1.55;

}



.register-mode .trust-pill {

  font-size: 13px;

}



.register-mode .context-strip {

  font-size: 14.5px;

}



.register-mode .login-panel h2 {

  font-size: 18px;

}



.register-mode .auth-meta-row,

.register-mode .inline-check,

.register-mode .prefill-note,

.register-mode .sensitive-note {

  font-size: 13px;

}



.register-mode .invite-code-action {

  min-height: 46px;

  font-size: 15px;

}



.register-mode .classification-panel {

  font-size: 15px;

  line-height: 1.55;

}



.register-mode .metric-label,

.register-mode .metric-note,

.register-mode .global-feedback-bar span,

.register-mode .field-hint,

.register-mode .upload-status,

.register-mode .field-error-text,

.register-mode .form-validation-message,

.register-mode .micro-copy {

  font-size: 13px;

  line-height: 1.48;

}



.register-mode .metric-value {

  font-size: 28px;

}



.register-mode .metric-value.is-status {

  font-size: 19px;

}



.register-mode .verification-jump-button {

  min-height: 48px;

  font-size: 12.5px;

}



.register-mode .verification-jump-button span {

  height: 22px;

  min-width: 22px;

  font-size: 11px;

}



.register-mode .public-data-prefill,

.register-mode .global-feedback-bar {

  font-size: 14.5px;

}



.register-mode .progress-panel-head h2 {

  font-size: 18px;

}



.register-mode .progress-kpi {

  font-size: 13px;

}



.register-mode .progress-cell span {

  font-size: 12.5px;

}



.register-mode .progress-cell strong {

  font-size: 14.5px;

}



.register-mode .meta {

  font-size: 13px;

  line-height: 1.5;

}



.register-mode .score-list span,

.register-mode .score-list strong {

  font-size: 13px;

}



.register-mode .status-pill,

.register-mode .badge {

  font-size: 12.5px;

  padding: 4px 9px;

}







/* 2026-06-20 register onboarding checklist */

.register-mode .onboarding-plan-panel {

  margin: 18px 0;

  border: 1px solid rgba(245, 166, 35, 0.26);

  border-radius: 12px;

  background:

    linear-gradient(135deg, rgba(245, 166, 35, 0.035), rgba(76, 175, 125, 0.035)),

    rgba(13, 19, 33, 0.82);

  padding: 18px;

  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);

}



.register-mode .onboarding-plan-head {

  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);

  gap: 18px;

  align-items: start;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  padding-bottom: 16px;

  margin-bottom: 16px;

}



.register-mode .onboarding-plan-head h2 {

  margin: 5px 0 6px;

  color: var(--text);

  font-size: 22px;

}



.register-mode .onboarding-plan-head p {

  margin: 0;

  color: var(--muted);

  font-size: 15px;

  line-height: 1.55;

}



.register-mode .onboarding-sync-box {

  border: 1px solid rgba(76, 175, 125, 0.28);

  border-radius: 10px;

  background: rgba(76, 175, 125, 0.065);

  padding: 12px;

  display: grid;

  gap: 4px;

}



.register-mode .onboarding-sync-box span,

.register-mode .onboarding-sync-box small {

  color: var(--muted);

  font-size: 12.5px;

  line-height: 1.4;

}



.register-mode .onboarding-sync-box strong {

  color: var(--text);

  font-size: 15px;

  line-height: 1.3;

}



.register-mode .onboarding-stage-grid {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 12px;

}



.register-mode .onboarding-stage-card {

  appearance: none;

  width: 100%;

  min-height: 142px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 11px;

  background: rgba(8, 13, 25, 0.78);

  color: var(--text);

  padding: 14px;

  cursor: pointer;

  display: grid;

  grid-template-columns: 34px minmax(0, 1fr) minmax(128px, auto);

  gap: 12px;

  align-items: start;

  text-align: left;

  font: inherit;

}



.register-mode .onboarding-stage-card:hover,

.register-mode .onboarding-stage-card:focus-visible {

  border-color: rgba(245, 166, 35, 0.56);

  outline: none;

}



.register-mode .onboarding-stage-card.is-ready {

  border-color: rgba(245, 166, 35, 0.36);

  background: rgba(245, 166, 35, 0.055);

}



.register-mode .onboarding-stage-card.is-done {

  border-color: rgba(76, 175, 125, 0.38);

  background: rgba(76, 175, 125, 0.055);

}



.register-mode .onboarding-stage-card.is-review {

  border-color: rgba(117, 167, 255, 0.36);

  background: rgba(117, 167, 255, 0.055);

}



.register-mode .onboarding-stage-card.is-started {

  border-color: rgba(245, 166, 35, 0.28);

}



.register-mode .onboarding-stage-number {

  width: 30px;

  height: 30px;

  border-radius: 999px;

  display: grid;

  place-items: center;

  background: rgba(245, 166, 35, 0.13);

  border: 1px solid rgba(245, 166, 35, 0.38);

  color: var(--gold);

  font-weight: 900;

  font-size: 13px;

}



.register-mode .onboarding-stage-content,

.register-mode .onboarding-stage-meta {

  display: grid;

  gap: 6px;

  min-width: 0;

}



.register-mode .onboarding-stage-content strong {

  color: var(--text);

  font-size: 16px;

  line-height: 1.28;

}



.register-mode .onboarding-stage-content small,

.register-mode .onboarding-stage-content em {

  color: var(--muted);

  font-size: 13px;

  line-height: 1.45;

  font-style: normal;

}



.register-mode .onboarding-stage-content em {

  color: var(--muted-2);

}



.register-mode .onboarding-stage-meta {

  justify-items: end;

  text-align: right;

}



.register-mode .onboarding-stage-meta span {

  border: 1px solid rgba(255, 255, 255, 0.14);

  border-radius: 999px;

  padding: 5px 9px;

  color: var(--muted-2);

  background: rgba(255, 255, 255, 0.04);

  font-size: 12px;

  font-weight: 900;

  white-space: nowrap;

}



.register-mode .onboarding-stage-card.is-ready .onboarding-stage-meta span,

.register-mode .onboarding-stage-card.is-started .onboarding-stage-meta span {

  border-color: rgba(245, 166, 35, 0.42);

  color: var(--gold);

  background: rgba(245, 166, 35, 0.08);

}



.register-mode .onboarding-stage-card.is-done .onboarding-stage-meta span {

  border-color: rgba(76, 175, 125, 0.4);

  color: var(--green);

  background: rgba(76, 175, 125, 0.08);

}



.register-mode .onboarding-stage-card.is-review .onboarding-stage-meta span {

  border-color: rgba(117, 167, 255, 0.42);

  color: #9bbdff;

  background: rgba(117, 167, 255, 0.08);

}



.register-mode .onboarding-stage-meta small {

  color: var(--muted);

  font-size: 12px;

  line-height: 1.35;

}



.register-mode .onboarding-plan-foot {

  margin-top: 14px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding-top: 14px;

  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.22fr);

  gap: 12px;

  align-items: center;

}



.register-mode .onboarding-plan-foot span {

  color: var(--muted-2);

  font-size: 13px;

  line-height: 1.45;

}



@media (max-width: 980px) {

  .register-mode .onboarding-plan-head,

  .register-mode .onboarding-stage-grid,

  .register-mode .onboarding-plan-foot {

    grid-template-columns: 1fr;

  }



  .register-mode .onboarding-stage-card {

    grid-template-columns: 34px minmax(0, 1fr);

  }



  .register-mode .onboarding-stage-meta {

    grid-column: 1 / -1;

    justify-items: start;

    text-align: left;

  }

}

.register-mode .verification-review-grid {

  display: grid;

  gap: 10px;

  margin: 12px 0 16px;

}



.register-mode .verification-review-row {

  appearance: none;

  width: 100%;

  min-height: 72px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 10px;

  background: rgba(8, 13, 25, 0.78);

  color: var(--text);

  padding: 12px 14px;

  display: grid;

  grid-template-columns: minmax(0, 1fr) auto auto;

  gap: 12px;

  align-items: center;

  text-align: left;

  font: inherit;

  cursor: pointer;

}



.register-mode .verification-review-row:hover,

.register-mode .verification-review-row:focus-visible {

  border-color: rgba(245, 166, 35, 0.54);

  outline: none;

}



.register-mode .verification-review-row strong,

.register-mode .verification-review-row small {

  display: block;

}



.register-mode .verification-review-row strong {

  color: var(--text);

  font-size: 15px;

  line-height: 1.3;

}



.register-mode .verification-review-row small {

  color: var(--muted);

  font-size: 12.5px;

  line-height: 1.4;

}



.register-mode .verification-review-row > em {

  border: 1px solid rgba(255, 255, 255, 0.14);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);

  color: var(--muted-2);

  padding: 5px 9px;

  font-size: 12px;

  font-style: normal;

  font-weight: 900;

  white-space: nowrap;

}



.register-mode .verification-review-row.is-ready > em,

.register-mode .verification-review-row.is-started > em {

  border-color: rgba(245, 166, 35, 0.42);

  color: var(--gold);

  background: rgba(245, 166, 35, 0.08);

}



.register-mode .verification-review-row.is-done > em {

  border-color: rgba(76, 175, 125, 0.4);

  color: var(--green);

  background: rgba(76, 175, 125, 0.08);

}



.register-mode .verification-review-row.is-review > em {

  border-color: rgba(117, 167, 255, 0.42);

  color: #9bbdff;

  background: rgba(117, 167, 255, 0.08);

}



@media (max-width: 760px) {

  .register-mode .verification-review-row {

    grid-template-columns: 1fr;

    align-items: start;

  }

}

/* 2026-06-21 public contact data trace */

.register-mode .public-data-preview {

  margin: 12px 0 14px;

  border: 1px solid rgba(76, 175, 125, 0.26);

  border-radius: 12px;

  background: rgba(11, 18, 31, 0.82);

  padding: 13px;

}



.register-mode .public-data-preview-head {

  display: grid;

  grid-template-columns: minmax(0, 1fr) auto;

  gap: 10px;

  align-items: start;

  margin-bottom: 10px;

}



.register-mode .section-kicker {

  display: inline-flex;

  width: fit-content;

  color: var(--gold);

  border: 1px solid rgba(245, 166, 35, 0.34);

  border-radius: 999px;

  padding: 3px 8px;

  font-size: 11.5px;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0;

}



.register-mode .public-data-preview h3 {

  margin: 4px 0 4px;

  color: var(--text);

  font-size: 18px;

  line-height: 1.25;

}



.register-mode .public-data-preview p,

.register-mode .public-data-preview-note {

  margin: 0;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.5;

}



.register-mode .public-data-preview-stats {

  display: grid;

  grid-template-columns: repeat(3, minmax(90px, 1fr));

  gap: 8px;

  min-width: 330px;

}



.register-mode .public-data-preview-stats span {

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 8px;

  background: rgba(255, 255, 255, 0.035);

  padding: 9px;

  color: var(--muted);

  font-size: 12.5px;

  line-height: 1.25;

}



.register-mode .public-data-preview-stats strong {

  display: block;

  color: var(--text);

  font-size: 17px;

  line-height: 1.1;

}



.register-mode .public-data-preview-grid {

  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 8px;

  margin-bottom: 12px;

}



.register-mode .public-data-preview-row {

  min-width: 0;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 9px;

  background: rgba(5, 10, 20, 0.62);

  padding: 10px;

  display: grid;

  gap: 5px;

}



.register-mode .public-data-preview-row span,

.register-mode .public-data-preview-row small {

  color: var(--muted);

  font-size: 12.5px;

  line-height: 1.35;

}



.register-mode .public-data-preview-row strong {

  color: var(--text);

  font-size: 14.5px;

  line-height: 1.25;

  overflow-wrap: anywhere;

}



.register-mode .public-data-preview-row em {

  width: fit-content;

  border-radius: 999px;

  padding: 3px 7px;

  font-size: 11.5px;

  font-weight: 900;

  font-style: normal;

  border: 1px solid rgba(255, 255, 255, 0.12);

}



.register-mode .public-data-preview-row em.is-public {

  color: #5fd18c;

  border-color: rgba(95, 209, 140, 0.34);

  background: rgba(95, 209, 140, 0.08);

}



.register-mode .public-data-preview-row em.is-request {

  color: var(--gold);

  border-color: rgba(245, 166, 35, 0.34);

  background: rgba(245, 166, 35, 0.08);

}



.register-mode .public-data-preview-row em.is-private,

.register-mode .public-data-preview-row.is-missing em {

  color: #ff8b8b;

  border-color: rgba(255, 139, 139, 0.32);

  background: rgba(255, 139, 139, 0.08);

}



.register-mode .public-data-preview-note {

  border: 1px solid rgba(117, 167, 255, 0.24);

  border-radius: 9px;

  background: rgba(117, 167, 255, 0.06);

  padding: 10px 12px;

}



@media (max-width: 980px) {

  .register-mode .public-data-preview-head,

  .register-mode .public-data-preview-grid {

    grid-template-columns: 1fr;

  }



  .register-mode .public-data-preview-stats {

    min-width: 0;

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }

}



@media (max-width: 640px) {

  .register-mode .public-data-preview-stats {

    grid-template-columns: 1fr;

  }

}



/* 2026-06-21 verification step control panel */

.register-mode .verification-stage-panel {

  margin: 12px 0 14px;

  border: 1px solid rgba(117, 167, 255, 0.28);

  border-radius: 12px;

  background: rgba(11, 18, 31, 0.84);

  padding: 14px;

  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);

}



.register-mode .verification-stage-panel.is-done {

  border-color: rgba(76, 175, 125, 0.34);

}



.register-mode .verification-stage-panel.is-started,

.register-mode .verification-stage-panel.is-ready {

  border-color: rgba(245, 166, 35, 0.36);

}



.register-mode .verification-stage-panel.is-review {

  border-color: rgba(117, 167, 255, 0.42);

}



.register-mode .verification-stage-head {

  display: grid;

  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);

  gap: 12px;

  align-items: start;

  margin-bottom: 10px;

}



.register-mode .verification-stage-head h2 {

  margin: 4px 0 4px;

  color: var(--text);

  font-size: 20px;

  line-height: 1.25;

}



.register-mode .verification-stage-head p {

  margin: 0;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.5;

}



.register-mode .verification-stage-status {

  border: 1px solid rgba(255, 255, 255, 0.11);

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.035);

  padding: 11px 12px;

  display: grid;

  gap: 4px;

}



.register-mode .verification-stage-status strong {

  color: var(--gold);

  font-size: 14px;

  line-height: 1.2;

}



.register-mode .verification-stage-status span,

.register-mode .verification-stage-status small {

  color: var(--muted);

  font-size: 13px;

  line-height: 1.35;

}



.register-mode .verification-stage-grid {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 8px;

}



.register-mode .verification-stage-grid > div {

  min-width: 0;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 9px;

  background: rgba(5, 10, 20, 0.58);

  padding: 10px;

  display: grid;

  align-content: start;

  gap: 6px;

}



.register-mode .verification-stage-grid span {

  color: var(--muted-2);

  font-size: 12.5px;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0;

}



.register-mode .verification-stage-grid strong {

  color: var(--text);

  font-size: 14px;

  line-height: 1.42;

  font-weight: 700;

}



@media (max-width: 1100px) {

  .register-mode .verification-stage-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

}



@media (max-width: 760px) {

  .register-mode .verification-stage-head,

  .register-mode .verification-stage-grid {

    grid-template-columns: 1fr;

  }

}

/* 2026-06-21 quick profile minimum panel */

.register-mode .minimum-profile-panel {

  margin: 14px 0 18px;

  border: 1px solid rgba(245, 166, 35, 0.34);

  border-radius: 12px;

  background: rgba(245, 166, 35, 0.055);

  padding: 14px;

  display: grid;

  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);

  gap: 12px;

  align-items: start;

}



.register-mode .minimum-profile-panel h3 {

  margin: 4px 0 4px;

  color: var(--text);

  font-size: 19px;

  line-height: 1.25;

}



.register-mode .minimum-profile-panel p {

  margin: 0;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.5;

}



.register-mode .minimum-profile-panel ul {

  margin: 0;

  padding: 0;

  list-style: none;

  display: grid;

  gap: 7px;

}



.register-mode .minimum-profile-panel li {

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 8px;

  background: rgba(5, 10, 20, 0.52);

  color: var(--text);

  padding: 8px 10px;

  font-size: 14px;

  line-height: 1.35;

  font-weight: 800;

}



.register-mode .minimum-profile-panel li::before {

  content: "";

  display: inline-block;

  width: 7px;

  height: 7px;

  margin-right: 8px;

  border-radius: 999px;

  background: var(--green);

  vertical-align: 1px;

}



.register-mode .minimum-profile-note {

  grid-column: 1 / -1;

  border: 1px solid rgba(117, 167, 255, 0.24);

  border-radius: 9px;

  background: rgba(117, 167, 255, 0.06);

  padding: 10px 12px;

}



@media (max-width: 860px) {

  .register-mode .minimum-profile-panel {

    grid-template-columns: 1fr;

  }

}

      .public-business-card {

        margin-bottom: 24px;

      }



      .public-business-card-head {

        display: flex;

        justify-content: space-between;

        align-items: flex-start;

        gap: 16px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

        padding-bottom: 14px;

        margin-bottom: 14px;

      }



      .public-business-card-head h3 {

        margin: 0;

        color: var(--text);

        font-size: 18px;

        line-height: 1.2;

      }



      .public-business-card-head p {

        margin: 6px 0 0;

        color: var(--muted-2);

        font-size: 12px;

        line-height: 1.45;

        max-width: 760px;

      }



      .public-business-card-head > span {

        border: 1px solid rgba(76, 175, 125, 0.34);

        border-radius: 999px;

        background: rgba(76, 175, 125, 0.08);

        color: var(--green);

        padding: 5px 10px;

        font-size: 11px;

        font-weight: 900;

        white-space: nowrap;

      }



      .public-business-grid {

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 12px;

      }



      .public-business-group {

        min-width: 0;

        border: 1px solid rgba(255, 255, 255, 0.09);

        border-radius: 10px;

        background: rgba(8, 13, 25, 0.72);

        padding: 10px;

        display: grid;

        align-content: start;

        gap: 12px;

      }



      .public-business-group-head h3 {

        margin: 0;

        color: var(--text);

        font-size: 15px;

        line-height: 1.22;

      }



      .public-business-group-head p {

        margin: 5px 0 0;

        color: var(--muted);

        font-size: 12px;

        line-height: 1.4;

      }



      .public-business-list {

        display: grid;

        gap: 8px;

      }



      .public-business-row {

        min-width: 0;

        display: grid;

        grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr);

        gap: 10px;

        align-items: start;

        border-top: 1px solid rgba(255, 255, 255, 0.055);

        padding-top: 8px;

      }



      .public-business-row:first-child {

        border-top: 0;

        padding-top: 0;

      }



      .public-business-row span {

        color: var(--muted);

        font-size: 11px;

        line-height: 1.35;

      }



      .public-business-row strong,

      .public-business-row a {

        min-width: 0;

        color: var(--text);

        font-size: 14px;

        line-height: 1.34;

        font-weight: 850;

        overflow-wrap: anywhere;

        text-decoration: none;

      }



      .public-business-row a {

        color: var(--gold);

      }



      .public-business-row a:hover {

        text-decoration: underline;

      }



      .public-business-row.is-green a,

      .public-business-row.is-green strong {

        color: var(--green);

      }



      @media (max-width: 1080px) {

        .public-business-grid {

          grid-template-columns: 1fr;

        }

      }



      @media (max-width: 720px) {

        .public-business-card-head {

          display: grid;

        }



        .public-business-row {

          grid-template-columns: 1fr;

          gap: 3px;

        }

      }



/* 2026-06-25 readability and workflow pass */

.register-mode .quick-account-steps {

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 10px;

  margin: 18px 0 22px;

}



.register-mode .quick-account-steps span {

  min-height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid var(--border);

  border-radius: 8px;

  background: rgba(15, 23, 42, 0.72);

  color: var(--muted);

  font-size: 14px;

  font-weight: 800;

  text-align: center;

}



.register-mode .quick-account-steps span.is-active {

  border-color: rgba(245, 166, 35, 0.8);

  color: var(--gold);

  background: rgba(245, 166, 35, 0.09);

}



.register-mode .workspace-save-state {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 10px;

  margin-top: 16px;

}



.register-mode .workspace-save-state > div {

  border: 1px solid var(--border);

  border-radius: 8px;

  background: rgba(7, 12, 24, 0.55);

  padding: 13px 14px;

  min-width: 0;

}



.register-mode .workspace-save-state span {

  display: block;

  color: var(--muted);

  font-size: 13px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0;

  margin-bottom: 5px;

}



.register-mode .workspace-save-state strong {

  display: block;

  color: var(--text);

  font-size: 15.5px;

  line-height: 1.25;

}



.register-mode .workspace-save-state small {

  display: block;

  margin-top: 6px;

  color: var(--muted);

  font-size: 13.5px;

  line-height: 1.35;

}



.register-mode .mini-action,

.register-mode .badge,

.register-mode .status-pill,

.register-mode .workspace-action-status,

.register-mode .workspace-account-pill,

.register-mode .section-kicker,

.register-mode .public-source-chip,

.register-mode .profile-evidence-chip,

.register-mode .project-status-pill {

  font-size: 13px !important;

}



.register-mode .workspace-action-item strong,

.register-mode .workspace-shortcut strong,

.register-mode .profile-setting-head h3,

.register-mode .public-business-group-head h3,

.register-mode .public-profile-card h3 {

  font-size: 16px;

}



.register-mode .workspace-action-item small,

.register-mode .workspace-shortcut span,

.register-mode .profile-setting-head p,

.register-mode .public-business-row span,

.register-mode .public-business-group-head p,

.register-mode .profile-evidence-note,

.register-mode .micro-copy {

  font-size: 14px;

}



.register-mode .public-business-row strong,

.register-mode .public-business-row a,

.register-mode td,

.register-mode th {

  font-size: 15px;

}



.register-mode button,

.register-mode input,

.register-mode select,

.register-mode textarea {

  font-size: 14px;

}



@media (max-width: 980px) {

  .register-mode .workspace-save-state,

  .register-mode .quick-account-steps {

    grid-template-columns: 1fr;

  }

}





/* Public profile business card v2 - practical, compact, data-driven */

.public-card-v2 {

  border: 1px solid rgba(245, 166, 35, 0.32);

  border-radius: 14px;

  background: linear-gradient(135deg, rgba(245, 166, 35, 0.075), rgba(76, 175, 125, 0.035) 45%, rgba(255, 255, 255, 0.018));

  padding: 18px;

  display: grid;

  gap: 16px;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);

}



.public-card-main {

  display: grid;

  grid-template-columns: minmax(118px, 170px) minmax(0, 1fr);

  gap: 18px;

  align-items: center;

}



.public-card-logo {

  min-height: 96px;

  border: 1px solid rgba(245, 166, 35, 0.48);

  border-radius: 14px;

  display: grid;

  place-items: center;

  color: var(--gold);

  font-size: 34px;

  font-weight: 900;

  background: rgba(245, 166, 35, 0.09);

  overflow: hidden;

}



.public-card-logo.has-image {

  background: #fff;

  padding: 10px;

}



.public-card-logo img {

  width: 100%;

  height: 100%;

  max-height: 100px;

  object-fit: contain;

  display: block;

}



.public-card-core {

  display: grid;

  gap: 9px;

  min-width: 0;

}



.public-card-badges,

.public-card-actions {

  display: flex;

  gap: 8px;

  flex-wrap: wrap;

  align-items: center;

}



.public-card-actions {

  margin-top: 4px;

}



.public-status-pill {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  border-radius: 999px;

  padding: 5px 9px;

  font-size: 12px;

  font-weight: 900;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.04);

  color: var(--muted-2);

  line-height: 1.15;

}



.public-status-pill::before {

  content: "";

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: currentColor;

  flex: 0 0 auto;

}



.public-status-pill.is-green {

  color: var(--green);

  border-color: rgba(76, 175, 125, 0.42);

  background: rgba(76, 175, 125, 0.09);

}



.public-status-pill.is-gold {

  color: var(--gold);

  border-color: rgba(245, 166, 35, 0.42);

  background: rgba(245, 166, 35, 0.09);

}



.public-status-pill.is-blue {

  color: #58a6ff;

  border-color: rgba(88, 166, 255, 0.38);

  background: rgba(88, 166, 255, 0.08);

}



.public-status-pill.is-red {

  color: #e45f6b;

  border-color: rgba(228, 95, 107, 0.38);

  background: rgba(228, 95, 107, 0.09);

}



.public-status-pill.is-muted {

  color: var(--muted-2);

}



.public-card-core h1 {

  margin: 0;

  color: #fff;

  font-size: clamp(28px, 3.3vw, 44px);

  line-height: 1.05;

  letter-spacing: 0;

}



.public-card-role {

  margin: 0;

  color: var(--muted-2);

  font-size: 16px;

  line-height: 1.35;

}



.public-card-intro {

  margin: 0;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.5;

  max-width: 920px;

}



.public-card-signal-grid {

  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 10px;

}



.public-card-signal {

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 12px;

  background: rgba(0, 0, 0, 0.14);

  padding: 12px;

  min-height: 88px;

  display: grid;

  align-content: center;

  gap: 3px;

}



.public-card-signal span {

  color: var(--muted);

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: 0.06em;

  font-weight: 900;

}



.public-card-signal strong {

  color: #fff;

  font-size: 22px;

  line-height: 1;

}



.public-card-signal small {

  color: var(--muted-2);

  font-size: 12px;

  line-height: 1.25;

}



.public-card-signal.is-green {

  border-color: rgba(76, 175, 125, 0.28);

}



.public-card-signal.is-gold {

  border-color: rgba(245, 166, 35, 0.34);

}



.public-card-signal.is-blue {

  border-color: rgba(88, 166, 255, 0.28);

}



.public-card-detail-grid {

  display: grid;

  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.95fr) minmax(0, 1.25fr);

  gap: 12px;

  align-items: stretch;

}



.public-card-panel {

  border: 1px solid rgba(255, 255, 255, 0.09);

  border-radius: 12px;

  background: rgba(4, 10, 22, 0.45);

  padding: 13px;

  min-width: 0;

}



.public-card-panel-head {

  display: flex;

  justify-content: space-between;

  gap: 10px;

  align-items: flex-start;

  margin-bottom: 10px;

}



.public-card-panel-head span {

  color: var(--muted);

  font-size: 11px;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.06em;

}



.public-card-panel-head strong {

  color: var(--text);

  font-size: 12px;

  text-align: right;

  line-height: 1.3;

}



.public-card-fact-list,

.public-card-qualification-grid,

.public-card-link-list {

  display: grid;

  gap: 8px;

}



.public-card-fact-list div,

.public-card-qualification {

  display: grid;

  gap: 3px;

  padding: 8px;

  border-radius: 8px;

  background: rgba(255, 255, 255, 0.025);

}



.public-card-fact-list span,

.public-card-qualification span {

  color: var(--muted);

  font-size: 11px;

}



.public-card-fact-list strong,

.public-card-qualification strong {

  color: #fff;

  font-size: 13px;

  line-height: 1.3;

}



.public-card-link {

  text-decoration: none;

  border: 1px solid rgba(245, 166, 35, 0.22);

  border-radius: 9px;

  padding: 9px;

  display: grid;

  gap: 3px;

  color: var(--text);

  background: rgba(245, 166, 35, 0.045);

  text-align: left;

}



.public-card-link strong {

  color: #fff;

  font-size: 13px;

  overflow-wrap: anywhere;

}



.public-card-link span {

  color: var(--muted-2);

  font-size: 12px;

  overflow-wrap: anywhere;

}



.public-card-link.is-button {

  cursor: pointer;

}



.public-card-brand-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

  gap: 8px;

}



.public-card-brand {

  display: grid;

  grid-template-columns: 70px minmax(0, 1fr);

  gap: 9px;

  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.025);

  padding: 8px;

  min-height: 64px;

}



.public-card-brand strong {

  display: block;

  color: #fff;

  font-size: 13px;

  line-height: 1.25;

}



.public-card-brand span {

  display: block;

  color: var(--muted-2);

  font-size: 11px;

  line-height: 1.3;

}



.public-card-brand.is-more {

  grid-template-columns: 1fr;

  place-items: center;

  text-align: center;

  border-style: dashed;

}



.public-card-empty {

  margin: 0;

  color: var(--muted-2);

  font-size: 13px;

  line-height: 1.45;

}



@media (max-width: 980px) {

  .public-card-main,

  .public-card-detail-grid {

    grid-template-columns: 1fr;

  }



  .public-card-signal-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }



  .public-card-logo {

    max-width: 220px;

  }

}



@media (max-width: 620px) {

  .public-card-v2 {

    padding: 14px;

  }



  .public-card-signal-grid {

    grid-template-columns: 1fr;

  }



  .public-card-actions .btn {

    width: 100%;

  }



  .public-card-core h1 {

    font-size: 28px;

  }

}





/* Public profile polish - compact action system and stronger data hierarchy */

.public-card-v2 {

  padding: 18px;

}



.public-card-main {

  grid-template-columns: minmax(112px, 150px) minmax(0, 1fr);

  gap: 18px;

}



.public-card-logo {

  min-height: 86px;

}



.public-card-core {

  gap: 8px;

}



.public-card-actions {

  margin-top: 8px;

  gap: 8px;

}



.public-card-actions .btn,

.public-card-actions a.btn {

  width: auto !important;

  min-height: 34px !important;

  padding: 7px 13px !important;

  border-radius: 8px !important;

  font-size: 13px !important;

  line-height: 1.2 !important;

  display: inline-flex !important;

  align-items: center;

  justify-content: center;

  gap: 6px;

  flex: 0 0 auto;

}



.public-card-actions .btn-primary {

  min-width: 112px;

}



.public-card-actions .btn-secondary,

.public-card-actions .btn-muted {

  min-width: 88px;

}



.public-card-detail-grid {

  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.98fr) minmax(0, 1.25fr);

}



.public-card-fact-list {

  grid-template-columns: repeat(2, minmax(0, 1fr));

}



.public-card-fact-list div {

  min-height: 74px;

  align-content: center;

}



.public-card-fact-list span,

.public-card-link-label {

  color: var(--muted);

  font-size: 11px;

  font-weight: 850;

  text-transform: uppercase;

  letter-spacing: 0.03em;

}



.public-card-fact-list strong {

  font-size: 13.5px;

  overflow-wrap: anywhere;

}



.public-card-link {

  padding: 10px 11px;

  gap: 4px;

  min-height: 58px;

  align-content: center;

}



.public-card-link strong {

  font-size: 13.5px;

  line-height: 1.25;

}



.public-card-link small {

  color: var(--muted-2);

  font-size: 12px;

  line-height: 1.3;

}



.public-card-link.is-primary {

  border-color: rgba(245, 166, 35, 0.38);

  background: rgba(245, 166, 35, 0.065);

}



.public-card-brand-grid {

  grid-template-columns: repeat(auto-fit, minmax(246px, 1fr));

  gap: 10px;

}



.public-card-brand {

  grid-template-columns: 112px minmax(0, 1fr);

  gap: 12px;

  min-height: 78px;

  padding: 10px;

}



.public-card-brand .brand-logo-mini {

  width: 104px;

  height: 52px;

  min-width: 104px;

  justify-self: start;

}



.public-card-brand-copy {

  min-width: 0;

  display: grid;

  gap: 4px;

  align-content: center;

}



.public-card-brand-copy strong {

  overflow-wrap: anywhere;

}



.public-card-brand-copy span {

  max-width: 100%;

  overflow-wrap: anywhere;

}



.public-next-actions-card {

  padding: 16px !important;

}



.public-next-actions-card .public-next-action {

  min-height: 36px !important;

  padding: 9px 12px !important;

  border-color: rgba(245, 166, 35, 0.46) !important;

  background: rgba(245, 166, 35, 0.08) !important;

  color: var(--text) !important;

  font-size: 13px !important;

  font-weight: 900 !important;

}



.public-next-actions-card .public-next-action:hover {

  background: rgba(245, 166, 35, 0.16) !important;

  color: var(--gold) !important;

}



@media (max-width: 980px) {

  .public-card-detail-grid,

  .public-card-main {

    grid-template-columns: 1fr;

  }

}



@media (max-width: 620px) {

  .public-card-actions .btn,

  .public-card-actions a.btn {

    width: auto !important;

  }



  .public-card-fact-list,

  .public-card-brand-grid {

    grid-template-columns: 1fr;

  }



  .public-card-brand {

    grid-template-columns: 96px minmax(0, 1fr);

  }



  .public-card-brand .brand-logo-mini {

    width: 88px;

    min-width: 88px;

  }

}





/* Public profile structure v3 - filled hero, scalable brands, practical decision panel */

.public-card-main {

  grid-template-columns: minmax(112px, 150px) minmax(300px, 0.9fr) minmax(300px, 1fr);

  align-items: stretch;

}



.public-card-main-signals {

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 10px;

  align-content: stretch;

  min-width: 0;

}



.public-card-main-signals .public-card-signal {

  min-height: 74px;

}



.public-brand-expander {

  margin-top: 10px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding-top: 10px;

}



.public-brand-expander summary {

  cursor: pointer;

  list-style: none;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;

  border: 1px dashed rgba(245, 166, 35, 0.42);

  border-radius: 10px;

  padding: 9px 11px;

  color: var(--gold);

  background: rgba(245, 166, 35, 0.055);

  font-size: 13px;

  font-weight: 900;

}



.public-brand-expander summary::-webkit-details-marker {

  display: none;

}



.public-brand-expander summary span {

  color: var(--muted-2);

  font-size: 11px;

  font-weight: 800;

}



.public-card-brand-grid.is-expanded {

  margin-top: 10px;

}



.public-decision-panel {

  margin-bottom: 24px;

  padding: 16px;

  border-color: rgba(245, 166, 35, 0.28);

  background: linear-gradient(135deg, rgba(245,166,35,0.055), rgba(76,175,125,0.025) 48%, rgba(0,0,0,0.14));

}



.public-decision-head {

  display: grid;

  grid-template-columns: minmax(0, 1fr) auto;

  gap: 16px;

  align-items: start;

  margin-bottom: 14px;

}



.public-decision-eyebrow {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  padding: 4px 9px;

  border-radius: 999px;

  border: 1px solid rgba(76, 175, 125, 0.45);

  color: var(--green);

  background: rgba(76, 175, 125, 0.09);

  font-size: 10.5px;

  font-weight: 850;

  text-transform: uppercase;

  letter-spacing: 0.04em;

}



.public-decision-head h3 {

  margin: 10px 0 6px;

  color: #fff;

  font-size: 20px;

  line-height: 1.15;

}



.public-decision-head p {

  margin: 0;

  color: var(--muted-2);

  font-size: 13px;

  line-height: 1.5;

  max-width: 860px;

}



.public-decision-score {

  min-width: 126px;

  border: 1px solid rgba(245, 166, 35, 0.32);

  border-radius: 12px;

  background: rgba(245, 166, 35, 0.07);

  padding: 12px;

  text-align: center;

}



.public-decision-score strong {

  display: block;

  color: var(--gold);

  font-size: 26px;

  line-height: 1;

}



.public-decision-score span {

  display: block;

  margin-top: 5px;

  color: var(--muted-2);

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: 0.05em;

  font-weight: 850;

}



.public-decision-columns {

  display: grid;

  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr) minmax(0, 0.95fr);

  gap: 10px;

  align-items: stretch;

}



.public-decision-card {

  border: 1px solid rgba(255,255,255,0.09);

  border-radius: 12px;

  background: rgba(4, 10, 22, 0.42);

  padding: 13px;

  min-height: 148px;

  height: 100%;

  display: flex;

  flex-direction: column;

}



.public-decision-card > span {

  display: block;

  color: var(--muted);

  font-size: 11px;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.04em;

  margin-bottom: 7px;

}



.public-decision-card > strong {

  display: block;

  color: #fff;

  font-size: 16px;

  line-height: 1.25;

}



.public-decision-card > p {

  margin: 7px 0 0;

  color: var(--muted-2);

  font-size: 12.5px;

  line-height: 1.45;

  flex: 1;

}



.public-decision-card.is-ready {

  border-color: rgba(76, 175, 125, 0.28);

  background: rgba(76, 175, 125, 0.055);

}



.public-decision-card.is-action {

  border-color: rgba(245, 166, 35, 0.28);

  background: rgba(245, 166, 35, 0.045);

}



.public-decision-risk-list {

  flex: 1;

}



.public-decision-risk-list > div:last-child {

  border-bottom: 0 !important;

}



.public-decision-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: auto;

  padding-top: 12px;

}



.public-decision-actions .mini-action {

  min-height: 34px !important;

  padding: 8px 11px !important;

  font-size: 12.5px !important;

}



@media (max-width: 1180px) {

  .public-card-main {

    grid-template-columns: minmax(104px, 150px) minmax(0, 1fr);

  }



  .public-card-main-signals {

    grid-column: 1 / -1;

    grid-template-columns: repeat(4, minmax(0, 1fr));

  }

}



@media (max-width: 980px) {

  .public-decision-head,

  .public-decision-columns {

    grid-template-columns: 1fr;

  }



  .public-decision-score {

    width: 100%;

    text-align: left;

  }



  .public-card-main-signals {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

}



@media (max-width: 620px) {

  .public-card-main {

    grid-template-columns: 1fr;

  }



  .public-card-logo {

    max-width: 210px;

  }



  .public-card-main-signals {

    grid-template-columns: 1fr;

  }



  .public-decision-panel {

    padding: 13px;

  }

}





/* Public profile structure v4 - clearer hero, contact channels, adaptive brands */

.public-card-context {

  margin: -3px 0 0;

  color: var(--muted);

  font-size: 13.5px;

  line-height: 1.35;

}



.public-card-link.is-disabled {

  opacity: 0.58;

  cursor: not-allowed;

  border-style: dashed;

  border-color: rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.025);

}



.public-card-link.is-disabled strong {

  color: var(--muted-2);

}



.public-brand-panel {

  display: grid;

  grid-template-rows: auto 1fr;

}



.public-card-brand-grid.is-count-1 {

  grid-template-columns: 1fr;

  min-height: 100%;

}



.public-card-brand-grid.is-count-1 .public-card-brand {

  min-height: 128px;

  grid-template-columns: minmax(118px, 170px) minmax(0, 1fr);

  align-content: center;

}



.public-card-brand-grid.is-count-1 .brand-logo-mini {

  width: 150px;

  min-width: 150px;

  height: 74px;

}



.public-card-brand-grid.is-count-1 .public-card-brand-copy strong {

  font-size: 16px;

}



.public-card-brand-grid.is-count-1 .public-card-brand-copy span {

  font-size: 12.5px;

  line-height: 1.45;

}



.public-card-panel-head strong {

  max-width: 56%;

}



@media (max-width: 620px) {

  .public-card-context {

    font-size: 13px;

  }



  .public-card-brand-grid.is-count-1 .public-card-brand {

    grid-template-columns: 96px minmax(0, 1fr);

    min-height: 96px;

  }



  .public-card-brand-grid.is-count-1 .brand-logo-mini {

    width: 88px;

    min-width: 88px;

    height: 52px;

  }



  .public-card-panel-head strong {

    max-width: none;

  }

}





/* Practical save strip for verification editing */

.inline-save-strip {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 12px;

  border: 1px solid rgba(76, 175, 125, 0.26);

  background: rgba(76, 175, 125, 0.055);

  border-radius: 10px;

  padding: 10px 12px;

  margin: 14px 0 18px;

}



.inline-save-strip span {

  color: var(--muted);

  font-size: 13px;

  line-height: 1.35;

}



.inline-save-strip .mini-action {

  min-height: 34px;

  padding: 8px 12px;

  border-color: rgba(76, 175, 125, 0.38);

  color: var(--green);

  white-space: nowrap;

}



@media (max-width: 640px) {

  .inline-save-strip {

    align-items: stretch;

    flex-direction: column;

  }



  .inline-save-strip .mini-action {

    width: 100%;

  }

}



/* IZCILNIEKI (Laureates) Premium Styles */

.laureate-grid {

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));

  gap: 20px;

  margin-top: 24px;

  margin-bottom: 40px;

}



@media (max-width: 768px) {

  .laureate-grid {

    grid-template-columns: 1fr;

  }

}



.laureate-card {

  position: relative;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  background: linear-gradient(145deg, rgba(18, 29, 49, 0.9), rgba(12, 20, 34, 0.95));

  border: 1px solid rgba(245, 166, 35, 0.25);

  border-radius: 14px;

  padding: 24px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  overflow: hidden;

}



.laureate-card::before {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 4px;

  height: 100%;

  background: linear-gradient(180deg, var(--gold), #ffc870);

  opacity: 0.85;

}



.laureate-card:hover {

  transform: translateY(-4px);

  border-color: var(--gold);

  box-shadow: 0 15px 40px rgba(245, 166, 35, 0.12);

}



.laureate-badge {

  align-self: flex-start;

  font-size: 11px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.05em;

  padding: 4px 8px;

  border-radius: 6px;

  margin-bottom: 12px;

  display: inline-flex;

  align-items: center;

  gap: 4px;

}



.laureate-badge.awarded {

  background: rgba(245, 166, 35, 0.15);

  color: var(--gold);

  border: 1px solid rgba(245, 166, 35, 0.4);

}



.laureate-badge.nominated {

  background: rgba(169, 184, 211, 0.12);

  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.2);

}



.laureate-badge.participant {

  background: rgba(117, 167, 255, 0.15);

  color: var(--blue);

  border: 1px solid rgba(117, 167, 255, 0.4);

}



.laureate-badge.verified {

  background: rgba(46, 204, 113, 0.15);

  color: #2ecc71;

  border: 1px solid rgba(46, 204, 113, 0.4);

}



.laureate-title {

  font-size: 21px;

  font-weight: 800;

  color: #fff;

  margin: 0 0 6px 0;

  line-height: 1.25;

}



.laureate-role {

  font-size: 13px;

  color: var(--muted-2);

  margin-bottom: 16px;

  text-transform: uppercase;

  letter-spacing: 0.03em;

}



.laureate-award-box {

  background: rgba(245, 166, 35, 0.04);

  border: 1px dashed rgba(245, 166, 35, 0.2);

  border-radius: 8px;

  padding: 12px 14px;

  margin-bottom: 16px;

}



.laureate-award-title {

  font-weight: 700;

  font-size: 15px;

  color: var(--gold);

  margin-bottom: 4px;

}



.laureate-award-project {

  font-size: 13.5px;

  color: var(--muted);

}



.laureate-award-project a {

  color: var(--gold);

  text-decoration: underline;

  cursor: pointer;

}



.laureate-award-project a:hover {

  color: #ffb331;

}



.laureate-desc {

  font-size: 14px;

  line-height: 1.5;

  color: var(--muted-2);

  margin-bottom: 20px;

}



.laureate-actions {

  display: flex;

  gap: 12px;

  margin-top: auto;

  border-top: 1px solid rgba(255, 255, 255, 0.05);

  padding-top: 16px;

}



/* Glassmorphism CTA Banner for Homepage */

.laureates-cta-banner {

  background: linear-gradient(135deg, rgba(245, 166, 35, 0.08) 0%, rgba(18, 29, 49, 0.6) 100%);

  border: 1px solid rgba(245, 166, 35, 0.25);

  border-radius: 14px;

  padding: 24px 30px;

  margin-top: 24px;

  margin-bottom: 30px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

}



.laureates-cta-content {

  flex: 1;

  min-width: 280px;

}



.laureates-cta-content h2 {

  font-size: 20px;

  font-weight: 800;

  color: #fff;

  margin: 0 0 6px 0;

  display: flex;

  align-items: center;

  gap: 8px;

}



.laureates-cta-content p {

  font-size: 13.5px;

  color: var(--muted-2);

  margin: 0;

  max-width: 650px;

  line-height: 1.45;

}



.laureates-cta-btn {

  background: linear-gradient(135deg, var(--gold), #ffb331);

  color: #1a1000;

  font-weight: 800;

  border: none;

  padding: 12px 24px;

  border-radius: 8px;

  font-size: 14px;

  cursor: pointer;

  white-space: nowrap;

  transition: all 0.2s ease;

  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.25);

}



.laureates-cta-btn:hover {

  transform: translateY(-2px);

  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);

  background: #ffb331;

}



.laureates-cta-btn:active {

  transform: translateY(0);

}





/* Register mobile containment: prevent catalog/profile cards from forcing horizontal overflow. */

@media (max-width: 760px) {

  .register-mode .app {

    padding-inline: 10px;

  }



  .register-mode .shell {

    max-width: calc(100vw - 20px);

    padding-inline: 14px;

  }



  .register-mode .card-grid,

  .register-mode .choice-grid {

    grid-template-columns: minmax(0, 1fr) !important;

    width: 100%;

    min-width: 0;

  }



  .register-mode .info-card,

  .register-mode .partner-card,

  .register-mode .table-row-hover {

    width: 100% !important;

    max-width: 100%;

    min-width: 0;

  }

}



/* Public offering layer - structured products/services without visual noise */

.public-offering-panel {

  margin-top: 14px;

  border: 1px solid rgba(245, 166, 35, 0.22);

  border-radius: 12px;

  background: rgba(4, 10, 22, 0.42);

  padding: 13px;

}



.public-offering-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));

  gap: 9px;

}



.public-offering-card {

  min-width: 0;

  min-height: 112px;

  display: grid;

  gap: 6px;

  align-content: start;

  border: 1px solid rgba(255, 255, 255, 0.085);

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.026);

  padding: 11px;

}



.public-offering-card span {

  color: var(--gold);

  font-size: 10.5px;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.04em;

}



.public-offering-card strong {

  color: #fff;

  font-size: 14px;

  line-height: 1.25;

  overflow-wrap: anywhere;

}



.public-offering-card p {

  margin: 0;

  color: var(--muted-2);

  font-size: 12.5px;

  line-height: 1.38;

}



.public-offering-card small {

  color: var(--muted);

  font-size: 11.5px;

  line-height: 1.25;

  overflow-wrap: anywhere;

}



.public-offering-expander {

  margin-top: 10px;

}



.public-offering-expander summary {

  cursor: pointer;

  color: var(--gold);

  font-size: 12.5px;

  font-weight: 850;

}



.public-offering-chip-row {

  margin-top: 9px;

  display: flex;

  flex-wrap: wrap;

  gap: 7px;

}



.public-offering-chip-row span {

  border: 1px solid rgba(245, 166, 35, 0.24);

  border-radius: 999px;

  color: var(--text);

  background: rgba(245, 166, 35, 0.055);

  padding: 5px 9px;

  font-size: 12px;

  font-weight: 750;

}



.offering-guide {

  margin-bottom: 12px;

}



.js-offering-entry .document-main .meta {

  overflow-wrap: anywhere;

}



@media (max-width: 700px) {

  .public-offering-grid {

    grid-template-columns: 1fr;

  }



  .public-offering-panel {

    padding: 11px;

  }

}





.result-section-break {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 16px;

  padding: 14px 16px;

  margin: 18px 0 8px;

  border: 1px solid rgba(245, 166, 35, 0.28);

  border-radius: 8px;

  background: rgba(255, 255, 255, 0.025);

}



.result-section-break div {

  display: grid;

  gap: 4px;

}



.result-section-break strong {

  color: #fff;

  font-size: 15px;

  line-height: 1.25;

}



.result-section-break span {

  color: var(--muted-2);

  font-size: 12.5px;

  line-height: 1.45;

}



.result-section-break em {

  min-width: 34px;

  height: 34px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(245, 166, 35, 0.4);

  border-radius: 999px;

  color: var(--gold);

  font-style: normal;

  font-weight: 900;

  background: rgba(245, 166, 35, 0.08);

}



.result-section-break.is-source {

  border-color: rgba(117, 167, 255, 0.28);

  background: rgba(117, 167, 255, 0.035);

}



.result-section-break.is-source em {

  border-color: rgba(117, 167, 255, 0.42);

  color: #9abfff;

  background: rgba(117, 167, 255, 0.08);

}



/* Register polish v9.323 - compact verification actions and normalized brand logos */

.register-mode .button-row {

  display: flex;

  justify-content: flex-end;

  align-items: center;

  gap: 10px;

  margin-top: 18px;

}



.register-mode .button-row .btn {

  width: auto;

  min-width: 188px;

  max-width: 260px;

  min-height: 42px;

  padding: 9px 18px;

  border-radius: 8px;

  font-size: 14px;

  line-height: 1.2;

}



.register-mode .button-row .btn-secondary {

  background: rgba(13, 19, 33, 0.68);

}



.register-mode .add-entry-action {

  justify-content: flex-start !important;

  margin-top: 14px !important;

}



.register-mode .add-entry-action .btn[data-add-document],

.register-mode .add-entry-action .btn[data-add-brand],

.register-mode .add-entry-action .btn[data-add-offering] {

  width: auto !important;

  max-width: none !important;

  min-height: 38px !important;

  padding: 8px 14px !important;

  border-radius: 8px !important;

  font-size: 13px !important;

  line-height: 1.15 !important;

  background: rgba(245, 166, 35, 0.045) !important;

  margin: 0 !important;

}



.register-mode .profile-upload {

  grid-template-columns: 64px minmax(0, 1fr);

  align-items: center;

  padding: 14px;

}



.register-mode .profile-upload-preview {

  width: 54px;

  height: 54px;

  border-radius: 8px;

}



.public-card-brand {

  grid-template-columns: 118px minmax(0, 1fr);

  min-height: 86px;

  align-items: center;

}



.public-card-brand .brand-logo-mini {

  width: 108px;

  min-width: 108px;

  height: 60px;

  padding: 7px;

  border-radius: 8px;

  border-color: rgba(255, 255, 255, 0.14);

  background: #fff;

}



.public-card-brand .brand-logo-mini img,

.brand-signal .brand-logo-mini.is-image img {

  width: 100%;

  height: 100%;

  object-fit: contain;

  object-position: center;

}



.public-card-brand-copy {

  min-width: 0;

}



.public-card-brand-copy strong,

.public-card-brand-copy span {

  overflow-wrap: anywhere;

}



.public-card-brand-copy span {

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

}



.public-card-brand-grid.is-count-1 .public-card-brand {

  min-height: 96px;

  grid-template-columns: 118px minmax(0, 1fr);

}



.public-card-brand-grid.is-count-1 .brand-logo-mini {

  width: 108px;

  min-width: 108px;

  height: 60px;

}



.brand-signal .brand-logo-mini.is-image {

  background: #fff;

  padding: 6px;

}



@media (max-width: 640px) {

  .register-mode .button-row {

    align-items: stretch;

    flex-direction: column;

  }



  .register-mode .button-row .btn {

    width: 100%;

    max-width: none;

  }



  .register-mode .add-entry-action .btn[data-add-document],

  .register-mode .add-entry-action .btn[data-add-brand],

  .register-mode .add-entry-action .btn[data-add-offering] {

    width: 100% !important;

  }



  .public-card-brand,

  .public-card-brand-grid.is-count-1 .public-card-brand {

    grid-template-columns: 94px minmax(0, 1fr);

  }



  .public-card-brand .brand-logo-mini,

  .public-card-brand-grid.is-count-1 .brand-logo-mini {

    width: 84px;

    min-width: 84px;

    height: 52px;

  }

}



/* Register polish v9.324 - compact scope and offering editors */

.register-mode .js-scope-entry,

.register-mode .js-offering-entry {

  grid-template-columns: 1fr !important;

  gap: 12px;

}



.register-mode .js-scope-entry.is-editing .document-main,

.register-mode .js-offering-entry.is-editing .document-main {

  display: grid;

  grid-template-columns: auto minmax(0, 1fr) auto;

  gap: 6px 12px;

  align-items: start;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);

  padding-bottom: 10px;

}



.register-mode .js-scope-entry.is-editing .entry-index,

.register-mode .js-offering-entry.is-editing .entry-index {

  grid-column: 1;

  grid-row: 1 / span 2;

}



.register-mode .js-scope-entry.is-editing .record-title,

.register-mode .js-offering-entry.is-editing .record-title,

.register-mode .js-scope-entry.is-editing .document-main > p.meta,

.register-mode .js-offering-entry.is-editing .document-main > p.meta {

  grid-column: 2;

  margin: 0;

}



.register-mode .js-scope-entry.is-editing .field.inline-field {

  grid-column: 2;

  margin-top: 4px !important;

}



.register-mode .js-scope-entry.is-editing .row-actions,

.register-mode .js-offering-entry.is-editing .row-actions {

  grid-column: 3;

  grid-row: 1 / span 3;

  justify-content: flex-end;

  align-self: start;

}



.register-mode .js-scope-entry.is-editing .document-controls,

.register-mode .js-offering-entry.is-editing .document-controls {

  grid-template-columns: repeat(2, minmax(220px, 1fr));

  gap: 12px;

}



.register-mode .js-scope-entry.is-editing .document-controls .field.full,

.register-mode .js-offering-entry.is-editing .document-controls .field.full {

  grid-column: 1 / -1;

}



.register-mode .js-scope-entry:not(.is-editing),

.register-mode .js-offering-entry:not(.is-editing) {

  padding: 12px 14px;

}



.register-mode .js-scope-entry:not(.is-editing) .document-main,

.register-mode .js-offering-entry:not(.is-editing) .document-main {

  grid-template-columns: auto minmax(0, 1fr) auto;

  gap: 6px 12px;

  align-items: start;

}



.register-mode .js-scope-entry:not(.is-editing) .entry-index,

.register-mode .js-offering-entry:not(.is-editing) .entry-index {

  grid-column: 1;

  grid-row: 1 / span 2;

}



.register-mode .js-scope-entry:not(.is-editing) .record-title,

.register-mode .js-offering-entry:not(.is-editing) .record-title,

.register-mode .js-scope-entry:not(.is-editing) .document-main > p.meta,

.register-mode .js-offering-entry:not(.is-editing) .document-main > p.meta {

  grid-column: 2;

  margin: 0;

}



.register-mode .js-scope-entry:not(.is-editing) .field.inline-field {

  grid-column: 2;

  margin-top: 2px !important;

}



.register-mode .js-scope-entry:not(.is-editing) .row-actions,

.register-mode .js-offering-entry:not(.is-editing) .row-actions {

  grid-column: 3;

  grid-row: 1 / span 3;

  justify-content: flex-end;

  align-self: start;

}



@media (max-width: 760px) {

  .register-mode .js-scope-entry.is-editing .document-main,

  .register-mode .js-offering-entry.is-editing .document-main,

  .register-mode .js-scope-entry:not(.is-editing) .document-main,

  .register-mode .js-offering-entry:not(.is-editing) .document-main {

    grid-template-columns: 1fr;

  }



  .register-mode .js-scope-entry.is-editing .entry-index,

  .register-mode .js-offering-entry.is-editing .entry-index,

  .register-mode .js-scope-entry.is-editing .record-title,

  .register-mode .js-offering-entry.is-editing .record-title,

  .register-mode .js-scope-entry.is-editing .document-main > p.meta,

  .register-mode .js-offering-entry.is-editing .document-main > p.meta,

  .register-mode .js-scope-entry.is-editing .field.inline-field,

  .register-mode .js-scope-entry.is-editing .row-actions,

  .register-mode .js-offering-entry.is-editing .row-actions,

  .register-mode .js-scope-entry:not(.is-editing) .entry-index,

  .register-mode .js-offering-entry:not(.is-editing) .entry-index,

  .register-mode .js-scope-entry:not(.is-editing) .record-title,

  .register-mode .js-offering-entry:not(.is-editing) .record-title,

  .register-mode .js-scope-entry:not(.is-editing) .document-main > p.meta,

  .register-mode .js-offering-entry:not(.is-editing) .document-main > p.meta,

  .register-mode .js-scope-entry:not(.is-editing) .field.inline-field,

  .register-mode .js-scope-entry:not(.is-editing) .row-actions,

  .register-mode .js-offering-entry:not(.is-editing) .row-actions {

    grid-column: 1;

    grid-row: auto;

  }



  .register-mode .js-scope-entry.is-editing .document-controls,

  .register-mode .js-offering-entry.is-editing .document-controls {

    grid-template-columns: 1fr;

  }



  .register-mode .js-scope-entry .row-actions,

  .register-mode .js-offering-entry .row-actions {

    justify-content: flex-start !important;

  }

}



/* Register polish v9.325 - compact add controls and no empty grid columns */

.register-mode .scope-add-line {

  grid-template-columns: minmax(260px, 1fr) auto !important;

  align-items: end;

}



.register-mode .scope-add-line [data-scope-picker-other-field] {

  grid-column: 1 / -1;

  grid-row: 2;

}



.register-mode .scope-add-line .btn[data-add-scope-from-picker] {

  grid-column: 2;

  grid-row: 1;

  width: auto !important;

  min-width: 148px;

  max-width: 190px;

  min-height: 40px;

  padding: 9px 16px;

  border-radius: 8px;

  font-size: 14px;

  line-height: 1.15;

}



.register-mode .document-add-line .btn {

  width: auto !important;

  min-width: 150px;

  max-width: 220px;

}



.register-mode .add-entry-action .btn[data-add-scope],

.register-mode .add-entry-action .btn[data-add-document],

.register-mode .add-entry-action .btn[data-add-brand],

.register-mode .add-entry-action .btn[data-add-offering] {

  width: auto !important;

  max-width: none !important;

  min-height: 38px !important;

  padding: 8px 14px !important;

  border-radius: 8px !important;

  font-size: 13px !important;

  line-height: 1.15 !important;

  background: rgba(245, 166, 35, 0.045) !important;

  margin: 0 !important;

}



.register-mode .guided-scope-panel {

  padding: 13px 14px;

}



.register-mode .guided-scope-head {

  margin-bottom: 10px;

}



.register-mode .quick-suggestion-row {

  margin-top: 8px;

}



@media (max-width: 640px) {

  .register-mode .scope-add-line {

    grid-template-columns: 1fr !important;

  }



  .register-mode .scope-add-line [data-scope-picker-other-field],

  .register-mode .scope-add-line .btn[data-add-scope-from-picker] {

    grid-column: 1;

    grid-row: auto;

  }



  .register-mode .scope-add-line .btn[data-add-scope-from-picker],

  .register-mode .document-add-line .btn,

  .register-mode .add-entry-action .btn[data-add-scope],

  .register-mode .add-entry-action .btn[data-add-document],

  .register-mode .add-entry-action .btn[data-add-brand],

  .register-mode .add-entry-action .btn[data-add-offering] {

    width: 100% !important;

    max-width: none !important;

  }

}



/* 2026-07-04 GuildBau document sections: balanced proof center and verification work surface */
.register-mode .gb-doc-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
}

.register-mode .gb-doc-metrics .metric-card {
  min-height: 96px;
  padding: 14px 16px;
  border-radius: 8px;
}

.register-mode .gb-doc-metrics .metric-value {
  font-size: 30px;
  line-height: 1.05;
}

.register-mode .gb-doc-metrics .metric-label,
.register-mode .gb-doc-metrics .metric-note {
  font-size: 13px;
  line-height: 1.35;
}

.register-mode .gb-doc-package-panel {
  padding: 18px !important;
}

.register-mode .gb-doc-package-panel > div:last-child {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important;
  gap: 12px !important;
}

.register-mode .gb-doc-package-btn {
  min-height: 88px !important;
  padding: 12px !important;
  display: grid !important;
  align-content: center;
  gap: 5px;
  white-space: normal;
}

.register-mode .gb-doc-package-btn strong {
  font-size: 13.5px !important;
  line-height: 1.18;
}

.register-mode .gb-doc-package-btn .meta {
  font-size: 12.2px !important;
  line-height: 1.35 !important;
}

.register-mode .gb-doc-main-grid {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 360px) !important;
  gap: 18px !important;
}

.register-mode .gb-doc-catalog-panel {
  padding: 18px !important;
  overflow: hidden;
}

.register-mode .gb-doc-filter-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
  gap: 12px !important;
  align-items: end;
}

.register-mode .gb-doc-filter-grid label,
.register-mode .gb-verify-doc-entry label {
  font-size: 13px !important;
  font-weight: 800;
  color: var(--muted-2);
}

.register-mode .gb-doc-filter-grid input,
.register-mode .gb-doc-filter-grid select,
.register-mode .gb-verify-doc-entry input,
.register-mode .gb-verify-doc-entry select,
.register-mode .gb-verify-doc-entry textarea {
  min-height: 44px;
  padding: 11px 13px;
  font-size: 14px;
}

.register-mode .gb-doc-list-scroll {
  max-height: none !important;
  overflow: visible !important;
  padding-right: 0 !important;
  gap: 12px !important;
}

.register-mode [data-my-vault-doc-id],
.register-mode [data-request-doc-id] {
  width: 100%;
  min-width: 0 !important;
  grid-template-columns: 28px minmax(0, 1fr) minmax(150px, 0.52fr) minmax(132px, auto) !important;
  gap: 10px 14px !important;
  align-items: center !important;
  padding: 14px !important;
  border-radius: 8px !important;
}

.register-mode [data-my-vault-doc-id] > div:nth-child(1),
.register-mode [data-request-doc-id] > div:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.register-mode [data-my-vault-doc-id] > div:nth-child(2),
.register-mode [data-request-doc-id] > div:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.register-mode [data-my-vault-doc-id] > div:nth-child(3),
.register-mode [data-request-doc-id] > div:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.register-mode [data-my-vault-doc-id] > div:nth-child(4),
.register-mode [data-request-doc-id] > div:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
}

.register-mode [data-my-vault-doc-id] > div:nth-child(5),
.register-mode [data-request-doc-id] > div:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
  min-width: 0;
}

.register-mode [data-my-vault-doc-id] > div:nth-child(6),
.register-mode [data-request-doc-id] > div:nth-child(6) {
  grid-column: 4;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  min-width: 0;
}

.register-mode [data-my-vault-doc-id] strong,
.register-mode [data-request-doc-id] strong {
  font-size: 14px !important;
  line-height: 1.28 !important;
}

.register-mode [data-my-vault-doc-id] .meta,
.register-mode [data-request-doc-id] .meta {
  font-size: 12.5px !important;
  line-height: 1.35 !important;
}

.register-mode [data-my-vault-doc-id] .badge,
.register-mode [data-my-vault-doc-id] .status-pill,
.register-mode [data-request-doc-id] .badge,
.register-mode [data-request-doc-id] .status-pill {
  font-size: 12px !important;
  padding: 5px 9px !important;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.register-mode .gb-doc-side-panel {
  align-content: start;
  gap: 12px !important;
}

.register-mode .gb-doc-side-panel .panel {
  padding: 16px !important;
  border-radius: 8px;
}

.register-mode .gb-doc-side-panel h3 {
  font-size: 17px !important;
  line-height: 1.25;
}

.register-mode .gb-doc-side-panel .meta {
  font-size: 13px !important;
  line-height: 1.42 !important;
}

.register-mode .gb-verify-doc-stack {
  gap: 14px;
}

.register-mode .gb-verify-doc-entry {
  grid-template-columns: 1fr !important;
  gap: 14px;
  padding: 18px !important;
  border-radius: 8px !important;
}

.register-mode .gb-verify-doc-entry .document-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 7px 14px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.register-mode .gb-verify-doc-entry .entry-index {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}

.register-mode .gb-verify-doc-entry .badge {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.register-mode .gb-verify-doc-entry .record-title,
.register-mode .gb-verify-doc-entry .document-main > p.meta {
  grid-column: 2;
  margin: 0;
}

.register-mode .gb-verify-doc-entry .record-title strong {
  font-size: 17px;
}

.register-mode .gb-verify-doc-entry .document-main > p.meta,
.register-mode .gb-verify-doc-entry .record-title .meta {
  font-size: 13.5px !important;
  line-height: 1.42;
}

.register-mode .gb-verify-doc-entry .row-actions {
  grid-column: 3;
  grid-row: 2;
  justify-content: flex-end;
  align-self: end;
}

.register-mode .gb-verify-doc-entry .document-controls {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.register-mode .gb-verify-doc-entry .document-controls .field.full {
  grid-column: 1 / -1;
}

@media (max-width: 1120px) {
  .register-mode .gb-doc-main-grid {
    grid-template-columns: 1fr !important;
  }

  .register-mode .gb-doc-side-panel {
    position: static !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .register-mode .gb-doc-side-panel > *:last-child,
  .register-mode .gb-doc-side-panel .notice,
  .register-mode .gb-doc-side-panel .success-notice {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .register-mode .gb-doc-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .register-mode [data-my-vault-doc-id],
  .register-mode [data-request-doc-id] {
    grid-template-columns: 28px minmax(0, 1fr) !important;
  }

  .register-mode [data-my-vault-doc-id] > div:nth-child(n),
  .register-mode [data-request-doc-id] > div:nth-child(n) {
    grid-column: 2 !important;
    grid-row: auto !important;
    justify-self: stretch;
  }

  .register-mode [data-my-vault-doc-id] > div:nth-child(1),
  .register-mode [data-request-doc-id] > div:nth-child(1) {
    grid-column: 1 !important;
    grid-row: 1 / span 4 !important;
    justify-self: center;
  }

  .register-mode [data-my-vault-doc-id] > div:nth-child(6),
  .register-mode [data-request-doc-id] > div:nth-child(6) {
    justify-content: flex-start !important;
  }

  .register-mode .gb-doc-side-panel,
  .register-mode .gb-verify-doc-entry .document-main,
  .register-mode .gb-verify-doc-entry .document-controls {
    grid-template-columns: 1fr !important;
  }

  .register-mode .gb-verify-doc-entry .entry-index,
  .register-mode .gb-verify-doc-entry .badge,
  .register-mode .gb-verify-doc-entry .record-title,
  .register-mode .gb-verify-doc-entry .document-main > p.meta,
  .register-mode .gb-verify-doc-entry .row-actions {
    grid-column: 1 !important;
    grid-row: auto !important;
    justify-self: start;
  }
}

/* GuildBau review and reference architecture */
.register-mode .gb-review-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin: 22px 0 18px;
}

.register-mode .gb-review-hero h1 {
  margin: 10px 0 8px;
}

.register-mode .gb-review-metrics {
  margin: 18px 0;
}

.register-mode .gb-review-principle {
  margin: 18px 0 22px;
  font-size: 15px;
  line-height: 1.65;
}

.register-mode .gb-review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.36fr);
  gap: 22px;
  align-items: start;
}

.register-mode .gb-review-main,
.register-mode .gb-review-side {
  min-width: 0;
}

.register-mode .gb-review-list,
.register-mode .gb-review-pending-list,
.register-mode .gb-review-flow {
  display: grid;
  gap: 12px;
}

.register-mode .gb-review-card,
.register-mode .gb-review-pending-row,
.register-mode .gb-review-mini,
.register-mode .gb-review-flow > div,
.register-mode .gb-review-flow-grid > div {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(6, 12, 26, 0.58);
  border-radius: 8px;
}

.register-mode .gb-review-card {
  padding: 18px;
}

.register-mode .gb-review-card.is-green {
  border-color: rgba(76, 175, 125, 0.5);
  background: linear-gradient(135deg, rgba(76, 175, 125, 0.13), rgba(6, 12, 26, 0.7));
}

.register-mode .gb-review-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.register-mode .gb-review-card h3,
.register-mode .gb-review-side h3 {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.register-mode .gb-review-type {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.register-mode .gb-review-quote {
  margin: 14px 0;
  color: var(--muted-1);
  font-size: 15px;
  line-height: 1.65;
}

.register-mode .gb-review-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.register-mode .gb-review-meta-grid > div {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(11, 20, 38, 0.74);
}

.register-mode .gb-review-meta-grid span,
.register-mode .gb-review-mini span,
.register-mode .gb-review-pending-row span,
.register-mode .gb-review-flow span,
.register-mode .gb-review-flow-grid span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.45;
}

.register-mode .gb-review-meta-grid strong,
.register-mode .gb-review-pending-row strong,
.register-mode .gb-review-mini strong,
.register-mode .gb-review-flow strong,
.register-mode .gb-review-flow-grid strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
}

.register-mode .gb-review-pending-row,
.register-mode .gb-review-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.register-mode .gb-review-mini {
  margin: 8px 0 10px;
  background: rgba(10, 18, 34, 0.78);
}

.register-mode .gb-review-mini.is-green {
  border-color: rgba(76, 175, 125, 0.45);
}

.register-mode .gb-review-mini.is-gold {
  border-color: rgba(245, 166, 35, 0.45);
}

.register-mode .gb-review-side {
  display: grid;
  gap: 14px;
}

.register-mode .gb-review-side .panel,
.register-mode .gb-review-request-panel {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(11, 20, 38, 0.72);
}

.register-mode .gb-review-type-grid {
  margin-top: 12px;
  gap: 8px;
}

.register-mode .gb-review-flow > div,
.register-mode .gb-review-flow-grid > div {
  padding: 12px;
}

.register-mode .gb-review-request-panel .btn {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

.register-mode .gb-profile-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
}

.register-mode .gb-profile-review-grid h3 {
  margin: 10px 0 6px;
  color: var(--text);
  font-size: 18px;
}

.register-mode .gb-profile-review-grid p {
  margin: 0;
  color: var(--muted-2);
  font-size: 13.5px;
  line-height: 1.55;
}

.register-mode .gb-profile-review-stats {
  display: grid;
  grid-template-columns: repeat(3, 82px);
  gap: 8px;
}

.register-mode .gb-profile-review-stats div {
  text-align: center;
  padding: 10px 8px;
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-radius: 8px;
  background: rgba(245, 166, 35, 0.08);
}

.register-mode .gb-profile-review-stats strong {
  display: block;
  color: var(--gold);
  font-size: 20px;
}

.register-mode .gb-profile-review-stats span {
  color: var(--muted-2);
  font-size: 11px;
}

.register-mode .gb-review-request-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.register-mode .gb-review-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 980px) {
  .register-mode .gb-review-hero,
  .register-mode .gb-review-layout,
  .register-mode .gb-profile-review-grid,
  .register-mode .gb-review-meta-grid,
  .register-mode .gb-review-flow-grid {
    grid-template-columns: 1fr;
  }

  .register-mode .gb-profile-review-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .register-mode .gb-review-card-head,
  .register-mode .gb-review-pending-row,
  .register-mode .gb-review-mini {
    grid-template-columns: 1fr;
  }

  .register-mode .gb-review-type {
    text-align: left;
  }
}


/* v9.357 - GreenDeck brand logo polish */
.public-brand-panel .public-card-brand-grid {
  gap: 10px;
}

.public-brand-panel .public-card-brand {
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 70px;
  padding: 10px 12px;
  align-items: center;
}

.public-brand-panel .public-card-brand .brand-logo-mini {
  width: 88px;
  height: 42px;
  border-radius: 7px;
  padding: 8px 10px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(11, 18, 32, 0.06);
}

.public-brand-panel .public-card-brand .brand-logo-mini img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  display: block;
}

.public-brand-panel .public-card-brand-copy strong {
  font-size: 13px;
  line-height: 1.2;
}

.public-brand-panel .public-card-brand-copy span {
  font-size: 11.5px;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .public-brand-panel .public-card-brand {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .public-brand-panel .public-card-brand .brand-logo-mini {
    width: 74px;
    height: 38px;
  }
}
/* v9.358 - strict public brand image containment */
.register-mode .public-brand-panel .public-card-brand .brand-logo-mini.is-image {
  box-sizing: border-box;
  width: 88px !important;
  height: 42px !important;
  min-width: 88px !important;
  max-width: 88px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  padding: 8px 10px !important;
  overflow: hidden !important;
  background: #fff !important;
}

.register-mode .public-brand-panel .public-card-brand .brand-logo-mini.is-image img {
  box-sizing: border-box;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  padding: 0 !important;
  display: block !important;
}

@media (max-width: 720px) {
  .register-mode .public-brand-panel .public-card-brand .brand-logo-mini.is-image {
    width: 78px !important;
    height: 40px !important;
    min-width: 78px !important;
    max-width: 78px !important;
    min-height: 40px !important;
    max-height: 40px !important;
  }
}


/* v9.376 - fixed public project parameters and review sources */
.register-mode .project-card-layout .project-image-frame {
  align-self: center;
  justify-self: center;
}

.register-mode .gb-review-mini strong {
  font-size: 14.5px;
}

.register-mode .gb-review-mini span {
  font-size: 13px;
}
.project-parameter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 2px 0 8px;
}

.project-parameter-pill {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.026);
  padding: 8px 10px;
  display: grid;
  gap: 3px;
}

.project-parameter-pill span {
  color: var(--muted-2);
  font-size: 10.5px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-parameter-pill strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.project-parameter-grid.is-fixed {
  align-items: stretch;
}

.project-parameter-pill.is-empty {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.014);
}

.project-parameter-pill.is-empty strong {
  color: rgba(154, 166, 186, 0.62);
  font-weight: 800;
}

@media (max-width: 820px) {
  .project-parameter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .project-parameter-grid {
    grid-template-columns: 1fr;
  }
}
/* 2026-07-11 publicProjects mobile containment fix. */
@media (max-width: 760px) {
  .register-mode .document-stack,
  .register-mode .project-card,
  .register-mode .project-card-layout {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .register-mode .project-card {
    width: 100% !important;
    overflow: hidden;
  }

  .register-mode .project-card-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .register-mode .project-image-frame {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .register-mode .portfolio-result-actions,
  .register-mode .portfolio-cta-block,
  .register-mode .project-parameter-grid {
    min-width: 0 !important;
    max-width: 100% !important;
  }
}
/* 2026-07-12 GreenDeck source-profile adapter. Scoped copy of the supplied public profile design. */
.register-mode .gb-source-profile {
  --bg-deep: #0b101b;
  --bg-panel: #111827;
  --bg-panel-soft: #1f2937;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --gold: #f5a623;
  --gold-soft: rgba(245, 166, 35, 0.1);
  --gold-border: rgba(245, 166, 35, 0.35);
  --green: #4caf7d;
  --green-soft: rgba(76, 175, 125, 0.1);
  --green-border: rgba(76, 175, 125, 0.3);
  --text-main: #ffffff;
  --text-muted: #9ca3af;
  --text-muted-dark: #6b7280;
  color: var(--text-main);
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.register-mode .gb-source-profile *,
.register-mode .gb-source-profile *::before,
.register-mode .gb-source-profile *::after {
  box-sizing: border-box;
}

.register-mode .gb-source-profile a,
.register-mode .gb-source-profile button {
  font: inherit;
}

.register-mode .gb-source-profile a {
  color: inherit;
  text-decoration: none;
}

.register-mode .gb-source-profile button {
  appearance: none;
}

.register-mode .gb-source-profile .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.register-mode .gb-source-profile .breadcrumbs {
  padding: 16px 0;
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  gap: 6px;
  align-items: center;
}

.register-mode .gb-source-profile .breadcrumbs a:hover {
  color: #fff;
}

.register-mode .gb-source-profile .main-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 80px;
}

.register-mode .gb-source-profile .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.register-mode .gb-source-profile .section-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.register-mode .gb-source-profile .section-title svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.register-mode .gb-source-profile .section-title-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 12px;
  background: var(--border-strong);
  color: #fff;
  font-weight: 600;
}

.register-mode .gb-source-profile .card-panel {
  background-color: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.register-mode .gb-source-profile .hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 1.25fr);
  gap: 32px;
  padding: 24px;
  align-items: stretch;
}

.register-mode .gb-source-profile .hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.register-mode .gb-source-profile .hero-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.register-mode .gb-source-profile .logo-box {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.register-mode .gb-source-profile .logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.register-mode .gb-source-profile .badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.register-mode .gb-source-profile .status-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.register-mode .gb-source-profile .status-pill.verified {
  background-color: var(--green-soft);
  border: 1px solid var(--green-border);
  color: var(--green);
}

.register-mode .gb-source-profile .status-pill.active {
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
}

.register-mode .gb-source-profile .status-pill.type {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.register-mode .gb-source-profile .source-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  margin-right: 4px;
}

.register-mode .gb-source-profile .hero-title-group h1 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 10px 0 6px;
  color: #fff;
  line-height: 1.15;
}

.register-mode .gb-source-profile .hero-subtitle {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0 0 8px;
}

.register-mode .gb-source-profile .hero-contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted-dark);
}

.register-mode .gb-source-profile .hero-contact-meta span,
.register-mode .gb-source-profile .hero-contact-meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.register-mode .gb-source-profile .hero-contact-meta svg,
.register-mode .gb-source-profile .btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.register-mode .gb-source-profile .hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.register-mode .gb-source-profile .hero-actions::-webkit-scrollbar {
  display: none;
}

.register-mode .gb-source-profile .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: auto;
}

.register-mode .gb-source-profile .btn-primary {
  background-color: var(--gold);
  color: #000;
}

.register-mode .gb-source-profile .btn-primary:hover {
  background-color: #f7b443;
  transform: translateY(-1px);
}

.register-mode .gb-source-profile .btn-secondary {
  background-color: transparent;
  border-color: var(--border-strong);
  color: #fff;
}

.register-mode .gb-source-profile .btn-secondary:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.02);
}

.register-mode .gb-source-profile .hero-right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.register-mode .gb-source-profile .metric-card {
  background-color: #141c2f;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 110px;
}

.register-mode .gb-source-profile .metric-card.is-trustscore {
  border: 1.5px solid var(--gold-border);
  box-shadow: 0 0 16px rgba(245, 166, 35, 0.08);
}

.register-mode .gb-source-profile .metric-card-head {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.register-mode .gb-source-profile .metric-card-value {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 6px 0;
}

.register-mode .gb-source-profile .metric-card-value.is-gold {
  color: var(--gold);
}

.register-mode .gb-source-profile .metric-card-value.is-green {
  color: var(--green);
}

.register-mode .gb-source-profile .metric-card-status {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.register-mode .gb-source-profile .metric-card-status.gold {
  color: var(--gold);
}

.register-mode .gb-source-profile .metric-card-status.green {
  color: var(--green);
}

.register-mode .gb-source-profile .metric-card-sub {
  font-size: 11px;
  color: var(--text-muted-dark);
  margin-top: 2px;
}

.register-mode .gb-source-profile .chart-container {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 58px;
  height: 58px;
}

.register-mode .gb-source-profile .circular-chart {
  width: 100%;
  height: 100%;
}

.register-mode .gb-source-profile .circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 3.2;
}

.register-mode .gb-source-profile .circle {
  fill: none;
  stroke: var(--green);
  stroke-width: 3.2;
  stroke-linecap: round;
}

.register-mode .gb-source-profile .facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.register-mode .gb-source-profile .fact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.register-mode .gb-source-profile .fact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245, 166, 35, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.register-mode .gb-source-profile .fact-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.register-mode .gb-source-profile .fact-content {
  display: flex;
  flex-direction: column;
}

.register-mode .gb-source-profile .fact-label {
  font-size: 9.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted-dark);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.register-mode .gb-source-profile .fact-value {
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.register-mode .gb-source-profile .offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.register-mode .gb-source-profile .offer-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.register-mode .gb-source-profile .offer-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.register-mode .gb-source-profile .offer-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.register-mode .gb-source-profile .offer-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-mode .gb-source-profile .offer-card:nth-child(1) .offer-icon-box {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #8b5cf6;
}

.register-mode .gb-source-profile .offer-card:nth-child(2) .offer-icon-box {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #f59e0b;
}

.register-mode .gb-source-profile .offer-card:nth-child(3) .offer-icon-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
}

.register-mode .gb-source-profile .offer-icon-box svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.register-mode .gb-source-profile .offer-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.register-mode .gb-source-profile .offer-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.register-mode .gb-source-profile .offer-link,
.register-mode .gb-source-profile .doc-card-link,
.register-mode .gb-source-profile .source-link-button {
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: gap 0.2s, color 0.2s;
  text-align: left;
}

.register-mode .gb-source-profile .offer-link:hover,
.register-mode .gb-source-profile .doc-card-link:hover,
.register-mode .gb-source-profile .source-link-button:hover {
  gap: 10px;
  color: #fff;
}

.register-mode .gb-source-profile .signals-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.register-mode .gb-source-profile .signal-block {
  background: #141c2f;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.register-mode .gb-source-profile .signal-block-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.register-mode .gb-source-profile .signal-circle-val {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(76, 175, 125, 0.05);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

.register-mode .gb-source-profile .signal-block.is-review {
  border-color: rgba(245, 166, 35, 0.42);
  background: rgba(245, 166, 35, 0.07);
}

.register-mode .gb-source-profile .signal-block.is-review .signal-circle-val {
  background: rgba(245, 166, 35, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.register-mode .gb-source-profile .signal-block-status {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1;
}

.register-mode .gb-source-profile .signals-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted-dark);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 12px;
}

.register-mode .gb-source-profile .brands-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.register-mode .gb-source-profile .brand-card {
  background-color: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
  justify-content: space-between;
  min-height: 154px;
  text-align: center;
  color: inherit;
}

.register-mode .gb-source-profile .brand-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.register-mode .gb-source-profile .brand-card-logo {
  height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  color: #101010;
  font-weight: 800;
}

.register-mode .gb-source-profile .brand-card-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.register-mode .gb-source-profile .brand-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.register-mode .gb-source-profile .brand-card-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.register-mode .gb-source-profile .brand-card-status {
  font-size: 9.5px;
  color: var(--gold);
  font-weight: 600;
}

.register-mode .gb-source-profile .brand-card-desc {
  font-size: 10.5px;
  color: var(--text-muted);
  line-height: 1.3;
  margin: 0;
}

.register-mode .gb-source-profile .brand-card-more {
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border-strong);
  cursor: pointer;
  background: transparent;
}

.register-mode .gb-source-profile .brand-card-more:hover {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.01);
}

.register-mode .gb-source-profile .brand-card-more-label,
.register-mode .gb-source-profile .brand-card-more-arrow {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}

.register-mode .gb-source-profile .projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.register-mode .gb-source-profile .project-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s, transform 0.2s;
}

.register-mode .gb-source-profile .project-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.register-mode .gb-source-profile .project-image {
  height: 128px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #1f2937;
}

.register-mode .gb-source-profile .project-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(76, 175, 125, 0.95);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.register-mode .gb-source-profile .project-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  justify-content: space-between;
}

.register-mode .gb-source-profile .project-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}

.register-mode .gb-source-profile .project-card-location {
  font-size: 11.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.register-mode .gb-source-profile .project-card-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  margin: 6px 0 0;
  line-height: 1.3;
}

.register-mode .gb-source-profile .project-card-btn {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}

.register-mode .gb-source-profile .project-card-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.02);
}

.register-mode .gb-source-profile .project-card-more-box {
  border: 1px solid var(--gold-border);
  background: rgba(245, 166, 35, 0.02);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  gap: 16px;
}

.register-mode .gb-source-profile .project-more-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.register-mode .gb-source-profile .project-more-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.register-mode .gb-source-profile .project-more-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.register-mode .gb-source-profile .project-more-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.register-mode .gb-source-profile .btn-gold-action {
  background-color: var(--gold);
  color: #000;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  width: 100%;
}

.register-mode .gb-source-profile .docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.register-mode .gb-source-profile .doc-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.2s;
}

.register-mode .gb-source-profile .doc-card-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.register-mode .gb-source-profile .doc-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.register-mode .gb-source-profile .doc-icon-box.is-green {
  color: var(--green);
  background: rgba(76, 175, 125, 0.05);
  border-color: var(--green-border);
}

.register-mode .gb-source-profile .doc-icon-box svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.register-mode .gb-source-profile .doc-card-text h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.register-mode .gb-source-profile .doc-card-text p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.register-mode .gb-source-profile .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.register-mode .gb-source-profile .member-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.2s;
}

.register-mode .gb-source-profile .member-top {
  display: flex;
  gap: 16px;
  align-items: center;
}

.register-mode .gb-source-profile .member-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--bg-panel-soft);
  overflow: hidden;
  border: 2px solid var(--gold-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 800;
}

.register-mode .gb-source-profile .member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.register-mode .gb-source-profile .member-info h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.register-mode .gb-source-profile .member-info span {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 2px;
}

.register-mode .gb-source-profile .member-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  color: #0077b5;
  font-weight: 500;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.register-mode .gb-source-profile .member-linkedin.is-muted {
  color: var(--text-muted-dark);
}

.register-mode .gb-source-profile .member-specialty {
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 10px;
  margin-top: 4px;
}

.register-mode .gb-source-profile .member-specialty span {
  color: var(--text-muted-dark);
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2px;
}

.register-mode .gb-source-profile .member-specialty strong {
  color: #fff;
  font-weight: 500;
}

.register-mode .gb-source-profile .team-more-card {
  border: 1px dashed var(--border-strong);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.2s;
  color: inherit;
  text-align: left;
}

.register-mode .gb-source-profile .team-more-card:hover {
  border-color: var(--gold);
}

.register-mode .gb-source-profile .team-more-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.register-mode .gb-source-profile .team-more-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.register-mode .gb-source-profile .team-more-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.register-mode .gb-source-profile .team-more-text h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}

.register-mode .gb-source-profile .team-more-text p {
  font-size: 11.5px;
  color: var(--text-muted);
  margin: 0;
}

.register-mode .gb-source-profile .team-more-arrow {
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
}

.register-mode .gb-source-profile .reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.6fr)) minmax(0, 0.9fr);
  gap: 16px;
}

.register-mode .gb-source-profile .review-card-info {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.register-mode .gb-source-profile .review-num-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.register-mode .gb-source-profile .review-num-card strong {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.register-mode .gb-source-profile .review-num-card span {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.3;
}

.register-mode .gb-source-profile .review-action-card {
  border: 1px solid var(--gold-border);
  background: rgba(245, 166, 35, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 16px;
  text-align: center;
  transition: background 0.2s;
  color: inherit;
}

.register-mode .gb-source-profile .review-action-card:hover {
  background: rgba(245, 166, 35, 0.04);
}

.register-mode .gb-source-profile .review-action-card span {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

.register-mode .gb-source-profile .next-step-panel {
  border: 1px solid rgba(76, 175, 125, 0.2);
  background: rgba(76, 175, 125, 0.02);
}

.register-mode .gb-source-profile .next-step-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.register-mode .gb-source-profile .next-step-left {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.register-mode .gb-source-profile .next-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(76, 175, 125, 0.08);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.register-mode .gb-source-profile .next-step-text h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 2px;
}

.register-mode .gb-source-profile .next-step-text p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.register-mode .gb-source-profile .next-step-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.register-mode .gb-source-profile .info-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 32px;
}

.register-mode .gb-source-profile .accordion-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.register-mode .gb-source-profile .accordion-item {
  background-color: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  color: inherit;
  text-align: left;
  width: 100%;
  padding: 0;
  cursor: pointer;
}

.register-mode .gb-source-profile .accordion-header {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.2s;
}

.register-mode .gb-source-profile .accordion-header:hover {
  background: rgba(255, 255, 255, 0.01);
}

.register-mode .gb-source-profile .accordion-arrow {
  color: var(--text-muted);
  font-size: 12px;
}

.register-mode .gb-source-profile .share-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.register-mode .gb-source-profile .share-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 -4px;
}

.register-mode .gb-source-profile .share-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.register-mode .gb-source-profile .share-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.register-mode .gb-source-profile .btn-share-copy {
  background-color: #141c2f;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.register-mode .gb-source-profile .btn-share-copy svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.register-mode .gb-source-profile .share-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: #141c2f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.register-mode .gb-source-profile .share-icon-btn:hover,
.register-mode .gb-source-profile .btn-share-copy:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 1024px) {
  .register-mode .gb-source-profile .hero-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .register-mode .gb-source-profile .facts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .register-mode .gb-source-profile .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .register-mode .gb-source-profile .signals-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .register-mode .gb-source-profile .brands-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .register-mode .gb-source-profile .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .register-mode .gb-source-profile .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .register-mode .gb-source-profile .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .register-mode .gb-source-profile .info-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .register-mode .gb-source-profile .container {
    padding: 0 14px;
  }

  .register-mode .gb-source-profile .hero-meta-row {
    align-items: flex-start;
  }

  .register-mode .gb-source-profile .logo-box {
    width: 86px;
    height: 86px;
  }

  .register-mode .gb-source-profile .hero-title-group h1 {
    font-size: 23px;
  }

  .register-mode .gb-source-profile .hero-right-grid,
  .register-mode .gb-source-profile .facts-grid,
  .register-mode .gb-source-profile .signals-row,
  .register-mode .gb-source-profile .brands-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .register-mode .gb-source-profile .offer-grid,
  .register-mode .gb-source-profile .projects-grid,
  .register-mode .gb-source-profile .docs-grid,
  .register-mode .gb-source-profile .team-grid,
  .register-mode .gb-source-profile .reviews-grid {
    grid-template-columns: 1fr;
  }

  .register-mode .gb-source-profile .next-step-wrap {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .register-mode .gb-source-profile .next-step-left {
    flex-direction: column;
    align-items: center;
  }

  .register-mode .gb-source-profile .next-step-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* 2026-07-12 GreenDeck source-profile layout polish from screenshot review. */
.register-mode .gb-source-profile .hero-left {
  justify-content: flex-start;
  gap: 18px;
}

.register-mode .gb-source-profile .hero-actions {
  flex-wrap: wrap;
  overflow: visible;
  gap: 9px;
  margin-top: 6px;
  max-width: 100%;
}

.register-mode .gb-source-profile .hero-actions .btn,
.register-mode .gb-source-profile .hero-actions a.btn {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 34px !important;
  padding: 8px 13px !important;
  flex: 0 0 auto !important;
  line-height: 1.15;
}

.register-mode .gb-source-profile .hero-actions .btn-primary {
  min-width: 112px !important;
}

.register-mode .gb-source-profile .metric-card.is-trustscore {
  padding-right: 88px;
}

.register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-status,
.register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-sub {
  max-width: 118px;
}

.register-mode .gb-source-profile .chart-container {
  top: 50%;
  right: 18px;
  bottom: auto;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  pointer-events: none;
}

.register-mode .gb-source-profile .offer-card {
  min-height: 214px;
  padding: 20px 22px;
}

.register-mode .gb-source-profile .offer-top {
  gap: 14px;
}

.register-mode .gb-source-profile .offer-card h3 {
  font-size: 15.5px;
  line-height: 1.25;
}

.register-mode .gb-source-profile .offer-card p {
  font-size: 13px;
  line-height: 1.5;
  max-width: 56ch;
}

.register-mode .gb-source-profile .offer-link {
  margin-top: 8px;
}

@media (max-width: 860px) {
  .register-mode .gb-source-profile .hero-actions .btn,
  .register-mode .gb-source-profile .hero-actions a.btn {
    flex: 0 0 auto !important;
  }
}

@media (max-width: 640px) {
  .register-mode .gb-source-profile .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .register-mode .gb-source-profile .hero-actions .btn,
  .register-mode .gb-source-profile .hero-actions a.btn {
    width: 100% !important;
  }

  .register-mode .gb-source-profile .metric-card.is-trustscore {
    padding-right: 72px;
  }

  .register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-status,
  .register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-sub {
    max-width: 96px;
  }

  .register-mode .gb-source-profile .chart-container {
    width: 44px;
    height: 44px;
    right: 12px;
  }

  .register-mode .gb-source-profile .offer-card {
    min-height: 0;
  }
}
/* 2026-07-12 GreenDeck source-profile first-source fidelity pass. */
.register-mode .gb-source-profile {
  background: var(--bg-deep);
  min-height: 100vh;
}

.register-mode .gb-source-profile .gb-source-header {
  background-color: #080d16;
  border-bottom: 1px solid var(--border);
  margin: 0;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.register-mode .gb-source-profile .source-header-wrap {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.register-mode .gb-source-profile .source-brand-link {
  align-items: flex-start;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 0;
  text-align: left;
}

.register-mode .gb-source-profile .source-brand-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

.register-mode .gb-source-profile .source-brand-title span {
  color: var(--gold);
}

.register-mode .gb-source-profile .source-brand-subtitle {
  color: var(--text-muted);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-top: 2px;
  text-transform: uppercase;
}

.register-mode .gb-source-profile .source-search-wrap {
  background: #141c2f;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  display: grid;
  flex: 1 1 440px;
  gap: 8px;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 520px;
  padding: 0 6px 0 12px;
  position: relative;
  transition: border-color 0.2s;
}

.register-mode .gb-source-profile .source-search-wrap:focus-within {
  border-color: var(--gold);
}

.register-mode .gb-source-profile .source-search-icon {
  align-items: center;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
}

.register-mode .gb-source-profile .source-search-icon svg {
  display: block;
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.register-mode .gb-source-profile .source-search-input {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  min-height: 38px;
  min-width: 0;
  outline: none;
  padding: 0;
  width: 100%;
}

.register-mode .gb-source-profile .source-search-input::placeholder {
  color: var(--text-muted);
}

.register-mode .gb-source-profile .source-search-submit {
  align-self: center;
  background: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.85);
  border-radius: 6px;
  color: #090d15;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  height: 30px;
  padding: 0 12px;
}

.register-mode .gb-source-profile .source-nav-links {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 24px;
}

.register-mode .gb-source-profile .source-nav-link,
.register-mode .gb-source-profile .source-nav-login {
  background: transparent;
  border: 0;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  padding: 0;
}

.register-mode .gb-source-profile .source-nav-link:hover {
  color: #fff;
}

.register-mode .gb-source-profile .source-nav-login {
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  transition: all 0.2s;
}

.register-mode .gb-source-profile .source-nav-login:hover {
  background: rgba(245, 166, 35, 0.03);
  border-color: var(--gold);
  color: var(--gold);
}

.register-mode .gb-source-profile .breadcrumbs {
  padding: 16px 0;
}

.register-mode .gb-source-profile .main-grid {
  gap: 32px;
  padding-bottom: 80px;
}

.register-mode .gb-source-profile .section-header {
  margin-bottom: 16px;
}

.register-mode .gb-source-profile .section-title {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.register-mode .gb-source-profile .hero-card {
  gap: 32px;
  padding: 24px;
}

.register-mode .gb-source-profile .hero-left {
  gap: 16px;
  justify-content: space-between;
}

.register-mode .gb-source-profile .hero-actions {
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
}

.register-mode .gb-source-profile .hero-actions .btn,
.register-mode .gb-source-profile .hero-actions a.btn {
  flex: 0 0 auto !important;
  font-size: 12px !important;
  min-height: 0 !important;
  padding: 8px 12px !important;
  width: auto !important;
}

.register-mode .gb-source-profile .metric-card.is-trustscore {
  padding-right: 78px;
}

.register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-status,
.register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-sub {
  max-width: 136px;
}

.register-mode .gb-source-profile .offer-card {
  min-height: 0;
  padding: 20px;
}

.register-mode .gb-source-profile .offer-top {
  gap: 12px;
}

.register-mode .gb-source-profile .offer-card h3 {
  font-size: 15px;
}

.register-mode .gb-source-profile .offer-card p {
  font-size: 12.5px;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .register-mode .gb-source-profile .source-header-wrap {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .register-mode .gb-source-profile .source-search-wrap {
    order: 3;
    flex-basis: 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .register-mode .gb-source-profile .source-header-wrap,
  .register-mode .gb-source-profile .source-nav-links {
    gap: 12px;
  }

  .register-mode .gb-source-profile .source-nav-links {
    flex-wrap: wrap;
  }

  .register-mode .gb-source-profile .source-search-wrap {
    grid-template-columns: 18px minmax(0, 1fr);
  }

  .register-mode .gb-source-profile .source-search-submit {
    display: none;
  }
}
/* 2026-07-12 GreenDeck public profile shell isolation. */
.register-mode .app:has(.gb-source-profile) {
  display: block !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.register-mode .shell:has(.gb-source-profile) {
  display: block !important;
  background: var(--bg-deep) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
  width: 100% !important;
}

.register-mode .shell:has(.gb-source-profile) > .top-row {
  display: none !important;
}

.register-mode .shell:has(.gb-source-profile) > #screen,
.register-mode .shell:has(.gb-source-profile) .gb-source-profile {
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}
/* 2026-07-12 GreenDeck header account and density correction. */
.register-mode .gb-source-profile .gb-source-header {
  padding: 11px 0 !important;
}

.register-mode .gb-source-profile .source-header-wrap {
  gap: 18px !important;
}

.register-mode .gb-source-profile .source-brand-link {
  align-items: center !important;
  flex: 0 0 178px !important;
  height: 42px !important;
  justify-content: center !important;
}

.register-mode .gb-source-profile .source-brand-logo {
  display: block;
  height: auto;
  max-height: 42px;
  max-width: 178px;
  object-fit: contain;
  width: 178px;
}

.register-mode .gb-source-profile .source-search-wrap {
  flex: 1 1 460px !important;
  max-width: 520px !important;
  min-width: 300px;
}

.register-mode .gb-source-profile .source-nav-links {
  gap: 18px !important;
  justify-content: flex-end;
  min-width: 0;
}

.register-mode .gb-source-profile .source-nav-excellence,
.register-mode .gb-source-profile .source-nav-link,
.register-mode .gb-source-profile .source-nav-login,
.register-mode .gb-source-profile .source-register-btn,
.register-mode .gb-source-profile .source-account-pill {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  font-size: 13.2px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 34px;
  padding: 0;
  white-space: nowrap;
}

.register-mode .gb-source-profile .source-nav-excellence {
  color: var(--gold);
  gap: 5px;
}

.register-mode .gb-source-profile .source-nav-link:hover,
.register-mode .gb-source-profile .source-nav-excellence:hover {
  color: #fff;
}

.register-mode .gb-source-profile .source-register-btn {
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: #171000;
  font-weight: 900;
  padding: 0 16px;
}

.register-mode .gb-source-profile .source-nav-login {
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  color: #fff;
  padding: 0 16px;
}

.register-mode .gb-source-profile .source-account-pill {
  background: rgba(76, 175, 125, 0.08);
  border: 1px solid rgba(76, 175, 125, 0.38);
  border-radius: 999px;
  color: #fff;
  gap: 8px;
  padding: 0 14px;
}

.register-mode .gb-source-profile .source-account-pill span {
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(76, 175, 125, 0.12);
  display: inline-block;
  height: 7px;
  width: 7px;
}

.register-mode .gb-source-profile .container {
  max-width: 1168px !important;
}

.register-mode .gb-source-profile .breadcrumbs {
  font-size: 12px !important;
  padding: 12px 0 10px !important;
}

.register-mode .gb-source-profile .main-grid {
  gap: 20px !important;
  padding-bottom: 46px !important;
}

.register-mode .gb-source-profile .section-header {
  margin-bottom: 7px !important;
}

.register-mode .gb-source-profile .section-title {
  font-size: 13.6px !important;
  letter-spacing: 0.03em !important;
}

.register-mode .gb-source-profile .card-panel {
  padding: 16px !important;
}

.register-mode .gb-source-profile .hero-card {
  gap: 22px !important;
  padding: 18px !important;
}

.register-mode .gb-source-profile .logo-box {
  height: 96px !important;
  width: 96px !important;
}

.register-mode .gb-source-profile .hero-left {
  gap: 12px !important;
}

.register-mode .gb-source-profile .hero-meta-row {
  gap: 16px !important;
}

.register-mode .gb-source-profile .hero-title-group h1 {
  font-size: 27px !important;
  margin: 7px 0 3px !important;
}

.register-mode .gb-source-profile .hero-subtitle {
  margin: 0 !important;
}

.register-mode .gb-source-profile .hero-contact-meta {
  gap: 12px !important;
}

.register-mode .gb-source-profile .hero-actions {
  gap: 7px !important;
  margin-top: 3px !important;
}

.register-mode .gb-source-profile .hero-right-grid {
  gap: 12px !important;
}

.register-mode .gb-source-profile .metric-card {
  min-height: 96px !important;
  padding: 14px !important;
}

.register-mode .gb-source-profile .metric-card-value {
  font-size: 25px !important;
  margin: 4px 0 !important;
}

.register-mode .gb-source-profile .metric-card.is-trustscore {
  padding-right: 74px !important;
}

.register-mode .gb-source-profile .chart-container {
  height: 48px !important;
  right: 14px !important;
  width: 48px !important;
}

.register-mode .gb-source-profile .facts-grid {
  gap: 12px 14px !important;
  padding: 15px !important;
}

.register-mode .gb-source-profile .fact-item {
  gap: 9px !important;
}

.register-mode .gb-source-profile .fact-icon {
  height: 28px !important;
  width: 28px !important;
}

.register-mode .gb-source-profile .offer-grid,
.register-mode .gb-source-profile .docs-grid,
.register-mode .gb-source-profile .team-grid,
.register-mode .gb-source-profile .projects-grid,
.register-mode .gb-source-profile .reviews-grid {
  gap: 14px !important;
}

.register-mode .gb-source-profile .offer-card {
  gap: 10px !important;
  min-height: 166px !important;
  padding: 16px !important;
}

.register-mode .gb-source-profile .offer-top {
  gap: 9px !important;
}

.register-mode .gb-source-profile .offer-icon-box {
  height: 38px !important;
  width: 38px !important;
}

.register-mode .gb-source-profile .signals-row {
  gap: 10px !important;
  margin-bottom: 9px !important;
}

.register-mode .gb-source-profile .signal-block {
  padding: 11px 8px !important;
}

.register-mode .gb-source-profile .brands-row {
  gap: 9px !important;
}

.register-mode .gb-source-profile .brand-card {
  min-height: 132px !important;
  padding: 10px 8px !important;
}

.register-mode .gb-source-profile .project-image {
  height: 112px !important;
}

.register-mode .gb-source-profile .project-card-body {
  padding: 12px !important;
}

.register-mode .gb-source-profile .doc-card,
.register-mode .gb-source-profile .member-card,
.register-mode .gb-source-profile .share-panel {
  gap: 11px !important;
}

.register-mode .gb-source-profile .member-avatar {
  height: 50px !important;
  width: 50px !important;
}

.register-mode .gb-source-profile .team-more-card {
  padding: 16px !important;
}

.register-mode .gb-source-profile .review-num-card,
.register-mode .gb-source-profile .review-action-card {
  padding: 14px !important;
}

.register-mode .gb-source-profile .next-step-panel {
  padding: 14px 16px !important;
}

.register-mode .gb-source-profile .next-step-wrap {
  align-items: center !important;
  display: grid !important;
  gap: 16px !important;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.75fr) !important;
}

.register-mode .gb-source-profile .next-step-actions {
  display: grid !important;
  gap: 10px !important;
  grid-template-columns: minmax(210px, 1fr) minmax(180px, 0.75fr) !important;
  min-width: 0 !important;
  width: 100% !important;
}

.register-mode .gb-source-profile .next-step-actions .btn {
  min-width: 0 !important;
  width: 100% !important;
}

.register-mode .gb-source-profile .info-columns {
  gap: 16px !important;
}

.register-mode .gb-source-profile .accordion-list {
  gap: 6px !important;
}

.register-mode .gb-source-profile .accordion-header {
  padding: 11px 14px !important;
}

@media (max-width: 1180px) {
  .register-mode .gb-source-profile .source-header-wrap {
    flex-wrap: wrap;
  }

  .register-mode .gb-source-profile .source-search-wrap {
    order: 3;
    flex-basis: 100% !important;
    max-width: none !important;
  }

  .register-mode .gb-source-profile .source-nav-links {
    margin-left: auto;
  }
}

@media (max-width: 860px) {
  .register-mode .gb-source-profile .next-step-wrap {
    grid-template-columns: 1fr !important;
  }

  .register-mode .gb-source-profile .next-step-actions {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .register-mode .gb-source-profile .source-brand-link {
    flex-basis: 150px !important;
  }

  .register-mode .gb-source-profile .source-brand-logo {
    max-width: 150px;
    width: 150px;
  }

  .register-mode .gb-source-profile .source-nav-links {
    justify-content: flex-start;
    width: 100%;
  }
}
/* 2026-07-12 GreenDeck section title inherited-spacing fix. */
.register-mode .gb-source-profile .section-header {
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.register-mode .gb-source-profile .section-title {
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.register-mode .gb-source-profile .section-title::before,
.register-mode .gb-source-profile .section-title::after {
  display: none !important;
}

.register-mode .gb-source-profile .source-search-wrap {
  max-width: 570px !important;
}

/* 2026-07-12 GreenDeck final width, header and offer cleanup. */
.register-mode .gb-source-profile .container {
  max-width: 1360px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.register-mode .gb-source-profile .source-search-wrap {
  flex: 0 0 380px !important;
  max-width: 380px !important;
  min-width: 260px !important;
}

.register-mode .gb-source-profile .source-nav-links {
  gap: 16px !important;
}

.register-mode .gb-source-profile .offer-card {
  min-height: 124px !important;
}

.register-mode .gb-source-profile .offer-card p {
  display: none !important;
}

.register-mode .gb-source-profile .offer-top {
  gap: 8px !important;
}

@media (max-width: 1180px) {
  .register-mode .gb-source-profile .source-search-wrap {
    flex: 1 1 100% !important;
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .register-mode .gb-source-profile .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
/* 2026-07-12 GreenDeck readability without extra whitespace. */
.register-mode .gb-source-profile .source-search-input {
  font-size: 13.8px !important;
}

.register-mode .gb-source-profile .source-nav-excellence,
.register-mode .gb-source-profile .source-nav-link,
.register-mode .gb-source-profile .source-register-btn,
.register-mode .gb-source-profile .source-account-pill {
  font-size: 13.6px !important;
}

.register-mode .gb-source-profile .status-pill {
  font-size: 11.8px !important;
}

.register-mode .gb-source-profile .metric-card-status {
  font-size: 13px !important;
}

.register-mode .gb-source-profile .metric-card-sub {
  font-size: 12px !important;
}

.register-mode .gb-source-profile .fact-label {
  font-size: 11.6px !important;
}

.register-mode .gb-source-profile .fact-value {
  font-size: 13.4px !important;
  line-height: 1.25 !important;
}

.register-mode .gb-source-profile .offer-card h3 {
  font-size: 16px !important;
  line-height: 1.25 !important;
}

.register-mode .gb-source-profile .offer-link {
  font-size: 13px !important;
}

.register-mode .gb-source-profile .project-card-location,
.register-mode .gb-source-profile .project-card-desc,
.register-mode .gb-source-profile .doc-card-text p,
.register-mode .gb-source-profile .team-more-text p,
.register-mode .gb-source-profile .share-desc,
.register-mode .gb-source-profile .project-more-desc,
.register-mode .gb-source-profile .next-step-text p {
  font-size: 12.6px !important;
  line-height: 1.4 !important;
}

.register-mode .gb-source-profile .member-info span,
.register-mode .gb-source-profile .member-linkedin {
  font-size: 11.8px !important;
}

.register-mode .gb-source-profile .member-specialty {
  font-size: 12.6px !important;
}

@media (max-width: 640px) {
  .register-mode .gb-source-profile .source-search-input {
    font-size: 13px !important;
  }

  .register-mode .gb-source-profile .source-nav-links {
    gap: 10px !important;
  }

  .register-mode .gb-source-profile .source-nav-excellence,
  .register-mode .gb-source-profile .source-nav-link,
  .register-mode .gb-source-profile .source-register-btn,
  .register-mode .gb-source-profile .source-account-pill {
    font-size: 12.8px !important;
  }
}
/* 2026-07-12 GreenDeck compact hero and branded action buttons. */
.register-mode .gb-source-profile .hero-card {
  align-items: start !important;
  gap: 18px !important;
  padding: 15px 18px !important;
}

.register-mode .gb-source-profile .hero-left {
  align-self: start !important;
  gap: 8px !important;
  justify-content: flex-start !important;
  min-height: 0 !important;
}

.register-mode .gb-source-profile .hero-meta-row {
  align-items: center !important;
  gap: 14px !important;
}

.register-mode .gb-source-profile .logo-box {
  height: 88px !important;
  width: 88px !important;
}

.register-mode .gb-source-profile .badges-row {
  gap: 6px !important;
}

.register-mode .gb-source-profile .hero-title-group h1 {
  font-size: 26px !important;
  line-height: 1.08 !important;
  margin: 5px 0 0 !important;
}

.register-mode .gb-source-profile .hero-subtitle {
  font-size: 14.5px !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  max-width: 760px !important;
}

.register-mode .gb-source-profile .hero-contact-meta {
  gap: 13px !important;
  margin: 1px 0 0 !important;
}

.register-mode .gb-source-profile .hero-contact-meta span,
.register-mode .gb-source-profile .hero-contact-meta a {
  font-size: 13.2px !important;
  line-height: 1.25 !important;
}

.register-mode .gb-source-profile .hero-website-link {
  color: var(--gold) !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.register-mode .gb-source-profile .hero-website-link svg {
  color: var(--gold) !important;
  opacity: 1 !important;
}

.register-mode .gb-source-profile .hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin-top: 4px !important;
  overflow: visible !important;
}

.register-mode .gb-source-profile .hero-actions .btn,
.register-mode .gb-source-profile .hero-actions a.btn,
.register-mode .gb-source-profile .hero-actions .hero-action-btn {
  box-sizing: border-box !important;
  flex: 0 0 128px !important;
  height: 36px !important;
  justify-content: center !important;
  min-height: 36px !important;
  min-width: 128px !important;
  padding: 0 10px !important;
  width: 128px !important;
}

.register-mode .gb-source-profile .hero-action-linkedin {
  background: #0a66c2 !important;
  border-color: rgba(53, 144, 222, 0.95) !important;
  color: #ffffff !important;
  gap: 7px !important;
}

.register-mode .gb-source-profile .hero-action-linkedin::before {
  align-items: center;
  background: #ffffff;
  border-radius: 3px;
  color: #0a66c2;
  content: "in";
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  height: 17px;
  justify-content: center;
  line-height: 1;
  width: 17px;
}

.register-mode .gb-source-profile .hero-action-birdychat {
  background: linear-gradient(135deg, #13c8e8 0%, #087fc8 100%) !important;
  border-color: rgba(62, 211, 245, 0.95) !important;
  color: #ffffff !important;
  gap: 7px !important;
}

.register-mode .gb-source-profile .hero-action-birdychat::before {
  background: radial-gradient(circle at 68% 38%, rgba(255,255,255,0.9) 0 8%, transparent 9%), #ffc928;
  border-radius: 60% 45% 55% 18%;
  box-shadow: 6px 0 0 rgba(24, 183, 224, 0.72);
  content: "";
  display: inline-block;
  height: 16px;
  transform: rotate(-8deg);
  width: 16px;
}

.register-mode .gb-source-profile .hero-action-firmas {
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.register-mode .gb-source-profile .hero-right-grid {
  gap: 10px !important;
}

.register-mode .gb-source-profile .metric-card {
  min-height: 88px !important;
  padding: 12px 13px !important;
}

.register-mode .gb-source-profile .metric-card-value {
  font-size: 24px !important;
  margin: 2px 0 !important;
}

.register-mode .gb-source-profile .metric-card.is-trustscore {
  padding-right: 66px !important;
}

.register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-status,
.register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-sub {
  max-width: 126px !important;
}

.register-mode .gb-source-profile .chart-container {
  height: 43px !important;
  right: 13px !important;
  width: 43px !important;
}

@media (max-width: 760px) {
  .register-mode .gb-source-profile .hero-card {
    padding: 14px !important;
  }

  .register-mode .gb-source-profile .hero-actions .btn,
  .register-mode .gb-source-profile .hero-actions a.btn,
  .register-mode .gb-source-profile .hero-actions .hero-action-btn {
    flex: 1 1 128px !important;
    width: auto !important;
  }
}
/* 2026-07-12 GreenDeck hero and facts geometric alignment pass. */
.register-mode .gb-source-profile .hero-card {
  align-items: start !important;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 500px) !important;
  gap: 24px !important;
  padding: 16px 18px !important;
}

.register-mode .gb-source-profile .hero-left {
  display: grid !important;
  grid-template-columns: 88px minmax(0, 1fr) !important;
  grid-template-rows: auto auto auto auto !important;
  column-gap: 14px !important;
  row-gap: 8px !important;
  min-height: 0 !important;
}

.register-mode .gb-source-profile .hero-meta-row {
  display: grid !important;
  grid-column: 1 / -1 !important;
  grid-template-columns: 88px minmax(0, 1fr) !important;
  column-gap: 14px !important;
  align-items: center !important;
}

.register-mode .gb-source-profile .logo-box {
  height: 88px !important;
  width: 88px !important;
}

.register-mode .gb-source-profile .hero-title-group {
  min-width: 0 !important;
}

.register-mode .gb-source-profile .badges-row {
  align-items: center !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin: 0 !important;
}

.register-mode .gb-source-profile .status-pill {
  min-height: 24px !important;
  padding: 0 10px !important;
}

.register-mode .gb-source-profile .hero-title-group h1 {
  line-height: 1.08 !important;
  margin: 7px 0 0 !important;
}

.register-mode .gb-source-profile .hero-subtitle,
.register-mode .gb-source-profile .hero-contact-meta,
.register-mode .gb-source-profile .hero-actions {
  grid-column: 2 !important;
  margin-left: 0 !important;
}

.register-mode .gb-source-profile .hero-subtitle {
  max-width: none !important;
}

.register-mode .gb-source-profile .hero-contact-meta {
  align-items: center !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.register-mode .gb-source-profile .hero-contact-meta span,
.register-mode .gb-source-profile .hero-contact-meta a {
  align-items: center !important;
  display: inline-flex !important;
  gap: 6px !important;
  min-height: 18px !important;
}

.register-mode .gb-source-profile .hero-actions {
  align-items: center !important;
  display: grid !important;
  grid-template-columns: repeat(5, 128px) !important;
  gap: 8px !important;
  margin-top: 0 !important;
}

.register-mode .gb-source-profile .hero-actions .btn,
.register-mode .gb-source-profile .hero-actions a.btn,
.register-mode .gb-source-profile .hero-actions .hero-action-btn {
  display: inline-flex !important;
  flex: none !important;
  height: 36px !important;
  min-height: 36px !important;
  min-width: 0 !important;
  width: 128px !important;
}

.register-mode .gb-source-profile .hero-right-grid {
  align-self: start !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(2, 100px) !important;
  gap: 10px !important;
}

.register-mode .gb-source-profile .metric-card {
  align-content: start !important;
  display: grid !important;
  height: 100px !important;
  min-height: 0 !important;
  overflow: hidden !important;
  padding: 12px 13px !important;
}

.register-mode .gb-source-profile .metric-card-head {
  line-height: 1 !important;
  margin: 0 !important;
}

.register-mode .gb-source-profile .metric-card-value {
  line-height: 1 !important;
  margin: 6px 0 6px !important;
}

.register-mode .gb-source-profile .metric-card-status {
  line-height: 1.15 !important;
  white-space: nowrap !important;
}

.register-mode .gb-source-profile .metric-card-sub {
  line-height: 1.2 !important;
  margin-top: 3px !important;
}

.register-mode .gb-source-profile .metric-card.is-trustscore {
  padding-right: 68px !important;
}

.register-mode .gb-source-profile .chart-container {
  height: 42px !important;
  right: 13px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 42px !important;
}

.register-mode .gb-source-profile .facts-grid {
  align-items: start !important;
  display: grid !important;
  grid-auto-rows: minmax(48px, auto) !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  column-gap: 18px !important;
  row-gap: 16px !important;
  padding: 14px 16px !important;
}

.register-mode .gb-source-profile .fact-item {
  align-items: start !important;
  display: grid !important;
  grid-template-columns: 30px minmax(0, 1fr) !important;
  column-gap: 10px !important;
  min-height: 48px !important;
}

.register-mode .gb-source-profile .fact-icon {
  height: 30px !important;
  width: 30px !important;
}

.register-mode .gb-source-profile .fact-content {
  align-content: start !important;
  display: grid !important;
  gap: 3px !important;
  min-width: 0 !important;
}

.register-mode .gb-source-profile .fact-label {
  line-height: 1 !important;
  min-height: 12px !important;
}

.register-mode .gb-source-profile .fact-value {
  line-height: 1.24 !important;
  overflow-wrap: anywhere !important;
}

@media (max-width: 1180px) {
  .register-mode .gb-source-profile .hero-card {
    grid-template-columns: 1fr !important;
  }

  .register-mode .gb-source-profile .hero-actions {
    grid-template-columns: repeat(auto-fit, minmax(128px, 128px)) !important;
  }

  .register-mode .gb-source-profile .hero-right-grid {
    grid-template-rows: repeat(2, minmax(100px, auto)) !important;
  }
}

@media (max-width: 760px) {
  .register-mode .gb-source-profile .hero-left,
  .register-mode .gb-source-profile .hero-meta-row {
    grid-template-columns: 72px minmax(0, 1fr) !important;
  }

  .register-mode .gb-source-profile .logo-box {
    height: 72px !important;
    width: 72px !important;
  }

  .register-mode .gb-source-profile .hero-subtitle,
  .register-mode .gb-source-profile .hero-contact-meta,
  .register-mode .gb-source-profile .hero-actions {
    grid-column: 1 / -1 !important;
  }

  .register-mode .gb-source-profile .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .register-mode .gb-source-profile .hero-actions .btn,
  .register-mode .gb-source-profile .hero-actions a.btn,
  .register-mode .gb-source-profile .hero-actions .hero-action-btn {
    width: 100% !important;
  }

  .register-mode .gb-source-profile .facts-grid {
    grid-template-columns: 1fr !important;
  }
}
/* 2026-07-12 GreenDeck hero proportion recovery: logo/title plus full-width details. */
.register-mode .gb-source-profile .hero-card {
  align-items: start !important;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 500px) !important;
  gap: 24px !important;
  padding: 16px 18px !important;
}

.register-mode .gb-source-profile .hero-left {
  align-self: start !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  justify-content: flex-start !important;
  min-height: 0 !important;
}

.register-mode .gb-source-profile .hero-meta-row {
  align-items: center !important;
  display: grid !important;
  grid-template-columns: 88px minmax(0, 1fr) !important;
  gap: 14px !important;
}

.register-mode .gb-source-profile .logo-box {
  height: 88px !important;
  width: 88px !important;
}

.register-mode .gb-source-profile .hero-title-group {
  min-width: 0 !important;
}

.register-mode .gb-source-profile .hero-title-group h1 {
  font-size: 26px !important;
  line-height: 1.08 !important;
  margin: 7px 0 0 !important;
}

.register-mode .gb-source-profile .badges-row {
  align-items: center !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin: 0 !important;
}

.register-mode .gb-source-profile .hero-subtitle,
.register-mode .gb-source-profile .hero-contact-meta,
.register-mode .gb-source-profile .hero-actions {
  grid-column: auto !important;
  margin-left: 0 !important;
  width: 100% !important;
}

.register-mode .gb-source-profile .hero-subtitle {
  font-size: 14.4px !important;
  line-height: 1.34 !important;
  margin: 0 !important;
  max-width: 760px !important;
}

.register-mode .gb-source-profile .hero-contact-meta {
  align-items: center !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 13px !important;
  margin: 0 !important;
}

.register-mode .gb-source-profile .hero-contact-meta span,
.register-mode .gb-source-profile .hero-contact-meta a {
  align-items: center !important;
  display: inline-flex !important;
  gap: 6px !important;
  min-height: 18px !important;
}

.register-mode .gb-source-profile .hero-actions {
  align-items: center !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 3px !important;
  overflow: visible !important;
}

.register-mode .gb-source-profile .hero-actions .btn,
.register-mode .gb-source-profile .hero-actions a.btn,
.register-mode .gb-source-profile .hero-actions .hero-action-btn {
  box-sizing: border-box !important;
  flex: 0 0 128px !important;
  height: 36px !important;
  justify-content: center !important;
  min-height: 36px !important;
  min-width: 128px !important;
  padding: 0 10px !important;
  width: 128px !important;
}

.register-mode .gb-source-profile .hero-right-grid {
  align-self: start !important;
  display: grid !important;
  gap: 10px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(2, 96px) !important;
}

.register-mode .gb-source-profile .metric-card {
  align-content: start !important;
  display: grid !important;
  height: 96px !important;
  min-height: 0 !important;
  overflow: hidden !important;
  padding: 12px 13px !important;
}

.register-mode .gb-source-profile .metric-card-value {
  line-height: 1 !important;
  margin: 5px 0 5px !important;
}

.register-mode .gb-source-profile .metric-card-status {
  line-height: 1.15 !important;
}

.register-mode .gb-source-profile .metric-card-sub {
  line-height: 1.2 !important;
  margin-top: 3px !important;
}

.register-mode .gb-source-profile .metric-card.is-trustscore {
  padding-right: 66px !important;
}

.register-mode .gb-source-profile .chart-container {
  height: 42px !important;
  right: 13px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 42px !important;
}

.register-mode .gb-source-profile .facts-grid {
  align-items: start !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  column-gap: 18px !important;
  row-gap: 15px !important;
  padding: 14px 16px !important;
}

.register-mode .gb-source-profile .fact-item {
  align-items: start !important;
  display: grid !important;
  grid-template-columns: 30px minmax(0, 1fr) !important;
  column-gap: 10px !important;
  min-height: 48px !important;
}

.register-mode .gb-source-profile .fact-icon {
  height: 30px !important;
  width: 30px !important;
}

.register-mode .gb-source-profile .fact-content {
  align-content: start !important;
  display: grid !important;
  gap: 3px !important;
  min-width: 0 !important;
}

@media (max-width: 1180px) {
  .register-mode .gb-source-profile .hero-card {
    grid-template-columns: 1fr !important;
  }

  .register-mode .gb-source-profile .hero-right-grid {
    grid-template-rows: repeat(2, minmax(96px, auto)) !important;
  }
}

@media (max-width: 760px) {
  .register-mode .gb-source-profile .hero-meta-row {
    grid-template-columns: 72px minmax(0, 1fr) !important;
  }

  .register-mode .gb-source-profile .logo-box {
    height: 72px !important;
    width: 72px !important;
  }

  .register-mode .gb-source-profile .hero-actions .btn,
  .register-mode .gb-source-profile .hero-actions a.btn,
  .register-mode .gb-source-profile .hero-actions .hero-action-btn {
    flex: 1 1 128px !important;
    width: auto !important;
  }

  .register-mode .gb-source-profile .facts-grid {
    grid-template-columns: 1fr !important;
  }
}
/* =========================================================
   PROJECT PORTFOLIO V2 — isolated copy, real profile data
   ========================================================= */
.portfolio-v2-shell {
  --pv2-bg: #081322;
  --pv2-panel: #0d1a2b;
  --pv2-panel-2: #111d31;
  --pv2-line: #2b3d53;
  --pv2-muted: #8e9caf;
  --pv2-text: #f4f7fb;
  --pv2-gold: #f5a623;
  --pv2-green: #42ca91;
  display: grid;
  gap: 18px;
  color: var(--pv2-text);
}
.portfolio-v2-breadcrumbs { display:flex; align-items:center; gap:8px; margin:2px 0 -2px; color:#738297; font-size:11px; font-weight:700; }
.portfolio-v2-breadcrumbs button { border:0; padding:0; color:inherit; background:transparent; cursor:pointer; }
.portfolio-v2-breadcrumbs strong { color:#aeb9c7; }
.portfolio-v2-profile { min-height:248px; padding:22px; display:grid; grid-template-columns:minmax(0,1.45fr) minmax(420px,.95fr); gap:32px; border:1px solid var(--pv2-line); border-radius:14px; background:#111b2e; box-shadow:0 18px 46px rgba(0,0,0,.15); }
.portfolio-v2-profile-main { min-width:0; display:flex; flex-direction:column; justify-content:center; }
.portfolio-v2-identity { display:grid; grid-template-columns:102px 1fr; gap:17px; align-items:center; }
.portfolio-v2-logo { width:102px; height:102px; padding:10px; display:grid; place-items:center; overflow:hidden; border-radius:12px; background:#fff; color:#111; font-size:28px; font-weight:900; }
.portfolio-v2-logo img { width:100%; height:100%; object-fit:contain; }
.portfolio-v2-profile-pills { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:9px; }
.portfolio-v2-profile-pills span { min-height:26px; padding:0 10px; display:inline-flex; align-items:center; border:1px solid #34465d; border-radius:999px; color:#9ba8b9; background:#1a2638; font-size:10px; font-weight:850; }
.portfolio-v2-profile-pills .is-green { color:#4cdaa6; border-color:rgba(66,202,145,.38); background:rgba(66,202,145,.08); }
.portfolio-v2-profile-pills .is-blue { color:#6ca7ff; border-color:rgba(59,130,246,.4); background:rgba(59,130,246,.08); }
.portfolio-v2-profile h1 { margin:0; color:#fff; font-size:clamp(27px,3vw,38px); line-height:1.07; letter-spacing:-.03em; }
.portfolio-v2-profile-role { margin:12px 0 8px; color:#9aa7b8; font-size:13.5px; }
.portfolio-v2-profile-meta { display:flex; flex-wrap:wrap; gap:18px; color:#7f8da0; font-size:11.5px; font-weight:700; }
.portfolio-v2-profile-meta a { color:var(--pv2-gold); }
.portfolio-v2-profile-actions { display:flex; flex-wrap:wrap; gap:9px; margin-top:16px; }
.portfolio-v2-profile-actions button,.portfolio-v2-profile-actions a { min-height:41px; padding:0 17px; display:inline-flex; align-items:center; justify-content:center; border:1px solid #35465c; border-radius:8px; color:#e9eef4; background:#111b2b; cursor:pointer; font-size:11.5px; font-weight:850; text-decoration:none; }
.portfolio-v2-profile-actions .is-primary { color:#111820; border-color:var(--pv2-gold); background:var(--pv2-gold); }
.portfolio-v2-profile-actions .is-linkedin { border-color:#278ee0; background:#1478c7; }
.portfolio-v2-profile-actions .is-birdy { border-color:#2bbce9; background:#16a5d4; }
.portfolio-v2-profile-metrics { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }
.portfolio-v2-profile-metric { position:relative; min-height:98px; padding:13px 14px; border:1px solid #2b3a50; border-radius:10px; background:#151f33; }
.portfolio-v2-profile-metric.is-trust { border-color:rgba(245,166,35,.43); }
.portfolio-v2-profile-metric small { display:block; color:#8491a4; font-size:9.5px; font-weight:900; letter-spacing:.05em; text-transform:uppercase; }
.portfolio-v2-profile-metric strong { display:block; margin-top:1px; color:#fff; font-size:27px; line-height:1.08; }
.portfolio-v2-profile-metric.is-trust strong { color:var(--pv2-gold); }
.portfolio-v2-profile-metric strong.is-green,.portfolio-v2-profile-metric b.is-green { color:var(--pv2-green); }
.portfolio-v2-profile-metric b { display:block; margin-top:3px; color:#fff; font-size:10.5px; }
.portfolio-v2-profile-metric.is-trust b { color:var(--pv2-gold); }
.portfolio-v2-profile-metric span { display:block; color:#66758a; font-size:9.5px; }
.portfolio-v2-profile-metric i { position:absolute; top:28px; right:16px; width:43px; height:43px; border:4px solid var(--pv2-green); border-radius:50%; }
.portfolio-v2-heading { margin-top:9px; display:flex; align-items:end; justify-content:space-between; gap:24px; }
.portfolio-v2-heading > div:first-child { max-width:650px; }
.portfolio-v2-heading > div:first-child > small,.portfolio-v2-signal-label { display:block; margin-bottom:4px; color:var(--pv2-gold); font-size:10px; font-weight:900; letter-spacing:.16em; text-transform:uppercase; }
.portfolio-v2-heading h1 { margin:0 0 5px; color:#fff; font-size:30px; line-height:1.15; letter-spacing:-.025em; }
.portfolio-v2-heading p { margin:0; color:var(--pv2-muted); font-size:12px; line-height:1.5; }
.portfolio-v2-stats { min-width:min(100%,580px); display:grid; grid-template-columns:repeat(4,1fr); gap:8px; }
.portfolio-v2-stat { min-height:66px; padding:11px 12px; display:grid; grid-template-columns:32px 1fr; align-items:center; gap:9px; border:1px solid var(--pv2-line); border-radius:9px; background:rgba(13,26,43,.82); }
.portfolio-v2-stat-icon { width:32px; height:32px; display:grid; place-items:center; border:1px solid rgba(245,166,35,.22); border-radius:8px; color:var(--pv2-gold); background:rgba(245,166,35,.07); }
.portfolio-v2-stat small { display:block; color:var(--pv2-muted); font-size:8.5px; }
.portfolio-v2-stat strong { display:block; color:#fff; font-size:16px; line-height:1.2; }
.portfolio-v2-controls { display:flex; justify-content:space-between; align-items:center; gap:14px; }
.portfolio-v2-controls > div { display:flex; gap:7px; overflow:auto; scrollbar-width:none; }
.portfolio-v2-controls > div::-webkit-scrollbar { display:none; }
.portfolio-v2-controls button { min-height:36px; padding:0 13px; border:1px solid var(--pv2-line); border-radius:999px; color:var(--pv2-muted); background:#0a1727; cursor:pointer; white-space:nowrap; font-size:10.5px; font-weight:800; }
.portfolio-v2-controls button.is-active { color:#ffc14a; border-color:rgba(245,166,35,.64); background:rgba(245,166,35,.08); }
.portfolio-v2-controls > span { color:#68778c; font-size:10px; white-space:nowrap; }
.portfolio-v2-list { display:grid; gap:15px; }
.portfolio-v2-project-card { min-height:392px; padding:14px; display:grid; grid-template-columns:330px 1fr; gap:20px; border:1px solid #2e4258; border-radius:14px; background:linear-gradient(120deg,#0d1b2d,#081421); box-shadow:0 12px 32px rgba(0,0,0,.13); }
.portfolio-v2-cover { position:relative; min-height:100%; overflow:hidden; border-radius:10px; background:#101f31; }
.portfolio-v2-cover-button { width:100%; height:100%; min-height:362px; padding:0; border:0; display:block; cursor:pointer; background:transparent; }
.portfolio-v2-cover-button img { width:100%; height:100%; min-height:362px; display:block; object-fit:cover; transition:transform .3s ease; }
.portfolio-v2-cover-button:hover img { transform:scale(1.018); }
.portfolio-v2-no-image { min-height:362px; display:grid; place-content:center; gap:8px; color:#8291a4; text-align:center; }
.portfolio-v2-no-image strong { color:var(--pv2-gold); font-size:34px; }
.portfolio-v2-photo-count { position:absolute; top:11px; right:11px; min-height:29px; padding:0 10px; display:inline-flex; align-items:center; border-radius:999px; color:#0e151c; background:var(--pv2-gold); box-shadow:0 5px 16px rgba(0,0,0,.3); font-size:10px; font-weight:900; }
.portfolio-v2-excellence { position:absolute; left:11px; bottom:11px; min-height:35px; padding:0 12px; display:inline-flex; align-items:center; border:1px solid rgba(245,166,35,.55); border-radius:8px; color:#ffc14a; background:rgba(5,12,20,.87); backdrop-filter:blur(9px); font-size:10.5px; font-weight:850; }
.portfolio-v2-project-content { min-width:0; display:flex; flex-direction:column; }
.portfolio-v2-project-head { display:grid; grid-template-columns:1fr auto; align-items:start; gap:16px; }
.portfolio-v2-project-head h2 { margin:2px 0 6px; color:#fff; font-size:22px; line-height:1.2; letter-spacing:-.02em; }
.portfolio-v2-project-head p { margin:0; display:flex; flex-wrap:wrap; gap:12px; color:#9aa8b9; font-size:10.5px; }
.portfolio-v2-verified { min-width:166px; padding:9px 11px; display:grid; grid-template-columns:25px 1fr; column-gap:8px; border:1px solid rgba(245,166,35,.3); border-radius:9px; color:#efb64e; background:rgba(245,166,35,.05); }
.portfolio-v2-verified.is-verified { color:#4cd9a5; border-color:rgba(66,202,145,.37); background:rgba(66,202,145,.06); }
.portfolio-v2-verified i { grid-row:1/3; width:25px; height:25px; display:grid; place-items:center; border-radius:50%; color:#07150f; background:currentColor; font-style:normal; }
.portfolio-v2-verified b { font-size:10.5px; }
.portfolio-v2-verified small { color:currentColor; opacity:.75; font-size:8.5px; }
.portfolio-v2-description { margin:12px 0; color:#bac6d3; font-size:11.5px; line-height:1.5; }
.portfolio-v2-facts { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; }
.portfolio-v2-facts > div { min-height:58px; padding:9px 10px; display:grid; grid-template-columns:18px 1fr; gap:7px; border:1px solid rgba(118,145,175,.18); border-radius:7px; background:rgba(14,30,48,.62); }
.portfolio-v2-facts i { width:16px; color:#9baabc; font-style:normal; }
.portfolio-v2-facts i::before { content:'◇'; }
.portfolio-v2-facts .portfolio-v2-icon-briefcase::before { content:'▱'; }
.portfolio-v2-facts .portfolio-v2-icon-box::before { content:'⬡'; }
.portfolio-v2-facts .portfolio-v2-icon-euro::before { content:'€'; }
.portfolio-v2-facts .portfolio-v2-icon-clock::before { content:'◷'; }
.portfolio-v2-facts .portfolio-v2-icon-building::before { content:'▥'; }
.portfolio-v2-facts .portfolio-v2-icon-award::before { content:'♙'; }
.portfolio-v2-facts small { display:block; color:var(--pv2-muted); font-size:8px; }
.portfolio-v2-facts strong { display:block; margin-top:2px; color:#eef3f8; font-size:9.5px; line-height:1.3; }
.portfolio-v2-review { min-height:58px; margin-top:7px; padding:10px 11px; display:grid; grid-template-columns:1fr auto; align-items:center; gap:12px; border:1px solid rgba(245,166,35,.43); border-radius:8px; background:rgba(6,15,25,.68); }
.portfolio-v2-review strong,.portfolio-v2-review small { display:block; }
.portfolio-v2-review strong { color:#fff; font-size:10.5px; }
.portfolio-v2-review small { margin-top:2px; color:var(--pv2-muted); font-size:8.5px; }
.portfolio-v2-review em { padding:5px 9px; border:1px solid #42556b; border-radius:6px; color:#b8c5d2; font-size:9px; font-style:normal; font-weight:800; }
.portfolio-v2-review em.is-green { color:#52d9a8; border-color:rgba(66,202,145,.34); }
.portfolio-v2-project-foot { margin-top:auto; padding-top:11px; display:grid; grid-template-columns:1fr auto; gap:10px 16px; align-items:end; }
.portfolio-v2-proof > b { display:block; margin-bottom:6px; color:#51dca8; font-size:10.5px; }
.portfolio-v2-proof > b strong { color:#fff; }
.portfolio-v2-proof > div { display:flex; gap:5px; }
.portfolio-v2-thumb { width:41px; height:34px; padding:0; overflow:hidden; border:1px solid #40556c; border-radius:6px; background:#132235; cursor:pointer; }
.portfolio-v2-thumb img { width:100%; height:100%; display:block; object-fit:cover; }
.portfolio-v2-more { width:37px; height:34px; display:grid; place-items:center; border:1px solid var(--pv2-line); border-radius:6px; color:#bdc8d4; background:#0b1929; font-size:9.5px; }
.portfolio-v2-review-status { align-self:end; padding:7px 9px; border:1px solid #3a4e65; border-radius:7px; color:#9caabc; font-size:9.5px; font-weight:800; }
.portfolio-v2-review-status.is-green { color:#56dba9; border-color:rgba(66,202,145,.32); }
.portfolio-v2-card-actions { grid-column:1/-1; display:flex; justify-content:flex-end; gap:8px; }
.portfolio-v2-card-actions button,.portfolio-v2-card-actions a { min-height:38px; padding:0 13px; display:inline-flex; align-items:center; border:1px solid rgba(245,166,35,.68); border-radius:7px; color:#ffc14a; background:rgba(245,166,35,.04); cursor:pointer; text-decoration:none; font-size:10px; font-weight:900; }
.portfolio-v2-card-actions a { color:#111820; background:linear-gradient(135deg,#ffc34a,#ee9c0b); }
.portfolio-v2-pagination { min-height:44px; padding:0 12px; display:flex; align-items:center; justify-content:space-between; border:1px solid var(--pv2-line); border-radius:9px; color:var(--pv2-muted); background:#0a1726; font-size:10px; }
.portfolio-v2-pagination > div { display:flex; align-items:center; gap:5px; }
.portfolio-v2-pagination button,.portfolio-v2-pagination strong { width:29px; height:29px; display:grid; place-items:center; border:1px solid var(--pv2-line); border-radius:6px; color:#d5dee7; background:#0d1b2c; }
.portfolio-v2-pagination button { cursor:pointer; }
.portfolio-v2-pagination button:disabled { opacity:.35; cursor:not-allowed; }
.portfolio-v2-pagination strong { color:#111820; border-color:var(--pv2-gold); background:var(--pv2-gold); }
.portfolio-v2-signal-label { margin:3px 0 -8px; color:#75849a; }
.portfolio-v2-signals { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.portfolio-v2-signals article { min-height:115px; padding:15px; display:grid; grid-template-columns:32px 1fr; gap:9px; border:1px solid var(--pv2-line); border-radius:10px; background:#0b1828; }
.portfolio-v2-signals article.is-gold { border-color:rgba(245,166,35,.48); background:linear-gradient(135deg,#111b29,#0a111a); }
.portfolio-v2-signals i { width:31px; height:31px; display:grid; place-items:center; border:1px solid rgba(245,166,35,.34); border-radius:8px; color:var(--pv2-gold); font-style:normal; }
.portfolio-v2-signals h3 { margin:1px 0 5px; color:#fff; font-size:11px; }
.portfolio-v2-signals p { margin:0; color:var(--pv2-muted); font-size:9.5px; line-height:1.45; }
.portfolio-v2-bottom-actions { display:flex; justify-content:space-between; gap:10px; padding-top:2px; }
.portfolio-v2-bottom-actions button,.portfolio-v2-bottom-actions a { min-height:40px; padding:0 15px; display:inline-flex; align-items:center; border:1px solid var(--pv2-line); border-radius:8px; color:#d6dfe7; background:#0b1828; cursor:pointer; text-decoration:none; font-size:10.5px; font-weight:850; }
.portfolio-v2-empty { padding:40px; border:1px dashed var(--pv2-line); border-radius:12px; color:var(--pv2-muted); text-align:center; }

@media (max-width:1100px) {
  .portfolio-v2-profile { grid-template-columns:1fr; }
  .portfolio-v2-heading { align-items:stretch; flex-direction:column; }
  .portfolio-v2-stats { width:100%; min-width:0; }
  .portfolio-v2-project-card { grid-template-columns:280px 1fr; }
  .portfolio-v2-project-foot { grid-template-columns:1fr; }
  .portfolio-v2-card-actions { grid-column:1; }
}
@media (max-width:820px) {
  .portfolio-v2-project-card { grid-template-columns:1fr; }
  .portfolio-v2-cover,.portfolio-v2-cover-button,.portfolio-v2-cover-button img { min-height:300px; max-height:430px; }
  .portfolio-v2-signals { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:620px) {
  .portfolio-v2-profile { padding:14px; gap:18px; }
  .portfolio-v2-identity { grid-template-columns:80px 1fr; gap:11px; }
  .portfolio-v2-logo { width:80px; height:80px; }
  .portfolio-v2-profile h1 { font-size:24px; }
  .portfolio-v2-profile-actions { display:grid; grid-template-columns:repeat(2,1fr); }
  .portfolio-v2-profile-actions button,.portfolio-v2-profile-actions a { padding:0 8px; }
  .portfolio-v2-profile-metrics { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .portfolio-v2-profile-metric { min-height:110px; padding:11px; }
  .portfolio-v2-profile-metric i { display:none; }
  .portfolio-v2-stats { display:flex; overflow:auto; padding-bottom:2px; }
  .portfolio-v2-stat { min-width:145px; }
  .portfolio-v2-controls { align-items:stretch; flex-direction:column; }
  .portfolio-v2-controls > span { display:none; }
  .portfolio-v2-project-card { padding:9px; gap:13px; }
  .portfolio-v2-cover,.portfolio-v2-cover-button,.portfolio-v2-cover-button img { min-height:245px; max-height:330px; }
  .portfolio-v2-project-head { grid-template-columns:1fr; }
  .portfolio-v2-verified { width:max-content; min-width:0; }
  .portfolio-v2-facts { grid-template-columns:repeat(2,1fr); }
  .portfolio-v2-review { grid-template-columns:1fr; }
  .portfolio-v2-review em { justify-self:start; }
  .portfolio-v2-card-actions { display:grid; grid-template-columns:.8fr 1.3fr; }
  .portfolio-v2-card-actions button,.portfolio-v2-card-actions a { justify-content:center; padding:0 7px; }
  .portfolio-v2-signals { grid-template-columns:1fr; }
  .portfolio-v2-pagination > span { font-size:9px; }
}

/* PORTFOLIO V2 PUBLIC PROFILE AND GALLERY REFINEMENTS */
.register-mode .portfolio-v2-public-header.gb-source-profile {
  min-height: 0;
  background: transparent;
}
.register-mode .portfolio-v2-public-header.gb-source-profile .container {
  width: 100%;
  max-width: 1360px !important;
  padding: 0 24px !important;
}
.register-mode .portfolio-v2-public-header.gb-source-profile .breadcrumbs {
  margin-top: 0;
}
.register-mode .portfolio-v2-public-header.gb-source-profile .hero-card {
  margin-bottom: 0;
}

.portfolio-v2-content {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px 30px;
  display: grid;
  gap: 18px;
  box-sizing: border-box;
}
.portfolio-v2-verified.is-verified {
  color: #4cd9a5;
  border-color: rgba(66,202,145,.46);
  background: rgba(66,202,145,.08);
}
.portfolio-v2-verified.is-verified i {
  color: #06150f;
  background: #42ca91;
}
.portfolio-v2-proof > div {
  flex-wrap: wrap;
  gap: 8px;
}
.portfolio-v2-thumb {
  width: 72px;
  height: 54px;
  border-radius: 8px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.portfolio-v2-thumb:hover,
.portfolio-v2-thumb:focus-visible {
  transform: translateY(-2px);
  border-color: var(--pv2-gold);
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
  outline: none;
}
.portfolio-v2-more {
  width: 52px;
  height: 54px;
  border-radius: 8px;
  font-size: 11px;
}
.portfolio-v2-project-foot {
  grid-template-columns: minmax(0,1fr) auto;
  gap: 12px 18px;
}
.portfolio-v2-review-status {
  display: none;
}
.portfolio-v2-card-actions {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}
@media (max-width: 760px) {
  .register-mode .portfolio-v2-public-header.gb-source-profile .container { padding: 0 12px !important; }
  .portfolio-v2-content { padding: 0 12px 24px; }
  .portfolio-v2-thumb { width: 58px; height: 46px; }
  .portfolio-v2-more { width: 46px; height: 46px; }
  .portfolio-v2-project-foot { grid-template-columns: 1fr; }
  .portfolio-v2-card-actions { grid-column: 1; grid-row: auto; justify-content: stretch; }
  .portfolio-v2-card-actions > * { justify-content: center; }
}

/* SHARED PUBLIC BACK, CONTACT AND FOOTER */
.public-page-back-row {
  width: 100%;
  margin: 18px 0 4px;
}
.public-page-back-row button {
  min-height: 36px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #2b3d53;
  border-radius: 8px;
  color: #dce5ee;
  background: #0d1a2b;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.public-page-back-row button:hover,
.public-page-back-row button:focus-visible {
  color: #f5a623;
  border-color: rgba(245,166,35,.62);
  transform: translateX(-2px);
  outline: none;
}
.global-feedback-bar.is-public-page {
  width: calc(100% - 48px);
  max-width: 1312px;
  margin: 34px auto 0;
  padding: 17px 19px;
  border-color: rgba(76,175,125,.34);
  border-radius: 12px;
  background: linear-gradient(135deg,rgba(76,175,125,.10),rgba(13,26,43,.96));
  box-sizing: border-box;
}
.global-feedback-bar.is-public-page .public-feedback-write {
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #ffc24a;
  border-radius: 8px;
  color: #111820;
  background: linear-gradient(135deg,#ffc34a,#ee9c0b);
  box-shadow: 0 9px 24px rgba(238,156,11,.18);
  font-weight: 900;
}
.global-feedback-bar.is-public-page .public-feedback-write:hover,
.global-feedback-bar.is-public-page .public-feedback-write:focus-visible {
  color: #07111d;
  border-color: #ffd170;
  filter: brightness(1.06);
  outline: none;
}
.gb-public-footer {
  width: 100vw;
  margin: 28px 0 0 calc(50% - 50vw);
  border-top: 1px solid rgba(87,110,137,.20);
  background: #0b1625;
  color: #eaf0f6;
}
.gb-public-footer-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 54px 24px 58px;
  display: grid;
  grid-template-columns: minmax(230px,1.45fr) repeat(4,minmax(130px,1fr));
  gap: 52px;
  box-sizing: border-box;
}
.gb-public-footer section {
  min-width: 0;
}
.gb-public-footer-brand img {
  width: 122px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}
.gb-public-footer-brand p,
.gb-public-footer-contact p {
  margin: 0;
  color: #aebdcd;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.65;
}
.gb-public-footer h2 {
  margin: 0 0 18px;
  color: #8fa9c4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.gb-public-footer button,
.gb-public-footer a {
  width: max-content;
  max-width: 100%;
  margin: 0 0 11px;
  padding: 0;
  display: block;
  border: 0;
  color: #dce6f0;
  background: transparent;
  text-align: left;
  text-decoration: none;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.gb-public-footer button:hover,
.gb-public-footer button:focus-visible,
.gb-public-footer a:hover,
.gb-public-footer a:focus-visible {
  color: #f5a623;
  outline: none;
}
.gb-public-footer-contact p {
  margin-top: 15px;
  color: #7f9ab7;
}
@media (max-width: 1050px) {
  .gb-public-footer-inner { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 38px; }
  .gb-public-footer-brand { grid-column: 1 / -1; max-width: 430px; }
}
@media (max-width: 680px) {
  .public-page-back-row { margin-top: 12px; }
  .global-feedback-bar.is-public-page { width: calc(100% - 24px); align-items: stretch; }
  .global-feedback-bar.is-public-page .public-feedback-write { width: 100%; justify-content: center; }
  .gb-public-footer-inner { padding: 38px 18px 42px; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 30px 22px; }
  .gb-public-footer-brand, .gb-public-footer-contact { grid-column: 1 / -1; }
}

/* PUBLIC HEADER LANGUAGE AND EXIT */
.public-header-utilities {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.public-language-control {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.public-language-control select {
  min-width: 94px;
  height: 36px;
  padding: 0 29px 0 10px;
  border: 1px solid #2b3d53;
  border-radius: 8px;
  color: #e8eef5;
  background-color: #0d1929;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
  color-scheme: dark;
}
.public-language-control select:hover,
.public-language-control select:focus-visible {
  border-color: rgba(245,166,35,.66);
  outline: none;
}
.public-header-exit {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: #dfe7ef;
  background: rgba(255,255,255,.035);
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}
.public-header-exit:hover,
.public-header-exit:focus-visible {
  color: #f5a623;
  border-color: rgba(245,166,35,.58);
  outline: none;
}
.register-mode .gb-source-profile .source-nav-links .public-header-utilities {
  margin-left: 2px;
}
#top-bar-actions-container > .public-header-utilities {
  margin-left: 2px;
}
@media (max-width: 900px) {
  .register-mode .gb-source-profile .source-nav-links .public-header-utilities {
    width: 100%;
    margin: 4px 0 0;
    justify-content: flex-end;
  }
}
@media (max-width: 560px) {
  .public-header-utilities { width: 100%; }
  .public-language-control { flex: 1 1 auto; }
  .public-language-control select { width: 100%; }
  .public-header-exit { flex: 0 0 auto; }
}

/* PUBLIC TOOLBAR AND CONTEXT ROW REFINEMENT */
.public-page-context-row {
  width: 100%;
  min-height: 38px;
  margin: 16px 0 10px;
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: nowrap;
}
.public-page-context-row > button {
  min-height: 36px;
  padding: 0 14px;
  flex: 0 0 auto;
  border: 1px solid #2b3d53;
  border-radius: 8px;
  color: #dce5ee;
  background: #0d1a2b;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.public-page-context-row > button:hover,
.public-page-context-row > button:focus-visible {
  color: #f5a623;
  border-color: rgba(245,166,35,.62);
  outline: none;
}
.register-mode .gb-source-profile .public-page-context-row .breadcrumbs,
.public-page-context-row .breadcrumbs {
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.catalog-context-row {
  margin-top: 0;
}
.public-language-control::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 20px;
  height: 14px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 2px;
  transform: translateY(-50%);
  pointer-events: none;
  box-sizing: border-box;
}
.public-language-control select {
  min-width: 94px;
  padding-left: 38px;
}
.public-language-control.lang-lv::before { background: linear-gradient(to bottom,#9e3039 0 40%,#fff 40% 60%,#9e3039 60%); }
.public-language-control.lang-ee::before { background: linear-gradient(to bottom,#4891d9 0 33.33%,#111 33.33% 66.66%,#fff 66.66%); }
.public-language-control.lang-lt::before { background: linear-gradient(to bottom,#fdb913 0 33.33%,#006a44 33.33% 66.66%,#c1272d 66.66%); }
.public-language-control.lang-pl::before { background: linear-gradient(to bottom,#fff 0 50%,#dc143c 50%); }
.public-language-control.lang-se::before { background: linear-gradient(to bottom,transparent 42%,#ffcf00 42% 58%,transparent 58%),linear-gradient(to right,#1769aa 0 33%,#ffcf00 33% 45%,#1769aa 45%); }
.public-language-control.lang-fin::before { background: linear-gradient(to bottom,transparent 42%,#1757a6 42% 58%,transparent 58%),linear-gradient(to right,#fff 0 33%,#1757a6 33% 45%,#fff 45%); }
.public-language-control.lang-nor::before { background: linear-gradient(to bottom,transparent 43%,#173b75 43% 57%,transparent 57%),linear-gradient(to right,transparent 35%,#173b75 35% 44%,transparent 44%),linear-gradient(to bottom,transparent 36%,#fff 36% 64%,transparent 64%),linear-gradient(to right,#c8102e 0 29%,#fff 29% 49%,#c8102e 49%); }
.public-language-control.lang-den::before { background: linear-gradient(to bottom,transparent 42%,#fff 42% 58%,transparent 58%),linear-gradient(to right,#c8102e 0 34%,#fff 34% 45%,#c8102e 45%); }
@media (min-width: 1181px) {
  .register-mode .top-row {
    flex-wrap: nowrap !important;
    gap: 22px !important;
  }
  .register-mode #top-bar-actions-container {
    min-width: 0;
    flex: 1 1 auto;
    flex-wrap: nowrap !important;
    justify-content: flex-end;
    gap: 8px !important;
  }
  .register-mode #top-bar-actions-container .public-nav-links {
    flex-wrap: nowrap !important;
    gap: 12px !important;
    margin-right: 4px !important;
  }
  .register-mode #top-bar-actions-container .viewer-mode-bar {
    margin-right: 4px !important;
    white-space: nowrap;
  }
  .register-mode .gb-source-profile .source-header-wrap,
  .register-mode .gb-source-profile .source-nav-links {
    flex-wrap: nowrap !important;
  }
  .register-mode .gb-source-profile .source-search-wrap {
    min-width: 280px;
    flex: 1 1 390px;
  }
}
@media (max-width: 680px) {
  .public-page-context-row { align-items: flex-start; gap: 9px; }
  .public-page-context-row > button { min-height: 34px; padding: 0 11px; }
  .public-page-context-row .breadcrumbs { padding-top: 8px !important; font-size: 10px; }
}

/* PORTFOLIO V2 FINAL READABILITY AND EQUAL HEIGHTS */
.portfolio-v2-heading > div:first-child > small,
.portfolio-v2-signal-label { font-size: 11.5px; }
.portfolio-v2-heading p { font-size: 14px; line-height: 1.55; }
.portfolio-v2-stat small { font-size: 10.5px; line-height: 1.25; }
.portfolio-v2-stat strong { font-size: 18px; }
.portfolio-v2-controls button { min-height: 39px; font-size: 12px; }
.portfolio-v2-controls > span { font-size: 11.5px; }
.portfolio-v2-photo-count { font-size: 11px; }
.portfolio-v2-excellence { font-size: 11.5px; }
.portfolio-v2-project-head h2 { font-size: 24px; }
.portfolio-v2-project-head p { font-size: 12px; line-height: 1.4; }
.portfolio-v2-verified b { font-size: 12px; }
.portfolio-v2-verified small { font-size: 10px; }
.portfolio-v2-description {
  margin: 10px 0;
  font-size: 13px;
  line-height: 1.48;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.portfolio-v2-facts { gap: 7px; }
.portfolio-v2-facts > div { padding: 9px 11px; }
.portfolio-v2-facts small { font-size: 10px; line-height: 1.2; }
.portfolio-v2-facts strong {
  font-size: 11.5px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.portfolio-v2-review strong {
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.portfolio-v2-review small { font-size: 10.5px; }
.portfolio-v2-review em {
  padding: 7px 11px;
  font-size: 10.5px;
}
.portfolio-v2-review em.is-green {
  color: #64e2b2;
  border-color: rgba(66,202,145,.52);
  background: rgba(66,202,145,.10);
}
.portfolio-v2-proof > b { font-size: 12px; }
.portfolio-v2-card-actions button,
.portfolio-v2-card-actions a { min-height: 40px; font-size: 11.5px; }
.portfolio-v2-pagination { font-size: 11.5px; }
.portfolio-v2-signals h3 { font-size: 13px; }
.portfolio-v2-signals p { font-size: 11.5px; line-height: 1.5; }
.portfolio-v2-bottom-actions button,
.portfolio-v2-bottom-actions a { font-size: 12px; }
@media (min-width: 1101px) {
  .portfolio-v2-list { grid-auto-rows: 460px; }
  .portfolio-v2-project-card {
    width: 100%;
    height: 460px;
    min-height: 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  .portfolio-v2-cover { min-height: 0; height: 100%; }
  .portfolio-v2-cover-button,
  .portfolio-v2-cover-button img { min-height: 0; height: 100%; }
  .portfolio-v2-project-content { min-height: 0; overflow: hidden; }
  .portfolio-v2-project-head h2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
@media (max-width: 1100px) {
  .portfolio-v2-project-card { height: auto; }
  .portfolio-v2-project-content { overflow: visible; }
}

/* TRUSTSCORE CENTERING AND UNIFIED PROJECT FOOTER */
.register-mode .gb-source-profile .metric-card.is-trustscore {
  align-content: center !important;
  grid-template-rows: auto auto auto !important;
  row-gap: 1px !important;
}
.register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-head,
.register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-value,
.register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-status,
.register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-sub {
  align-self: center !important;
}
.register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-value {
  margin: 3px 0 !important;
}
.register-mode .gb-source-profile .metric-card.is-trustscore .metric-card-sub {
  margin-top: 2px !important;
  white-space: nowrap !important;
}
.portfolio-v2-content {
  padding-bottom: 0;
}
.global-feedback-bar.is-public-page.is-project-actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto minmax(260px,1fr) auto;
  align-items: center;
  gap: 18px;
}
.public-project-footer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.public-project-footer-actions button,
.public-project-footer-actions a {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2b3d53;
  border-radius: 8px;
  color: #dce5ee;
  background: #0d1a2b;
  text-decoration: none;
  font: inherit;
  font-size: 11.5px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}
.public-project-footer-actions button:hover,
.public-project-footer-actions button:focus-visible,
.public-project-footer-actions a:hover,
.public-project-footer-actions a:focus-visible {
  color: #f5a623;
  border-color: rgba(245,166,35,.58);
  outline: none;
}
.global-feedback-bar.is-project-actions .public-feedback-copy {
  min-width: 0;
}
@media (max-width: 900px) {
  .global-feedback-bar.is-public-page.is-project-actions {
    grid-template-columns: 1fr auto;
  }
  .public-project-footer-actions {
    grid-column: 1 / -1;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .global-feedback-bar.is-public-page.is-project-actions { grid-template-columns: 1fr; }
  .global-feedback-bar.is-project-actions .public-feedback-write { width: 100%; }
  .public-project-footer-actions > * { flex: 1 1 100%; }
}
/* 2026-07-13 prepared public profile responsive overflow fix. */
.register-mode .app:has(.gb-source-profile),
.register-mode .shell:has(.gb-source-profile),
.register-mode .shell:has(.gb-source-profile) > #screen,
.register-mode .gb-source-profile {
  overflow-x: clip !important;
}

.register-mode .gb-public-footer {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.register-mode .gb-source-profile .container {
  width: min(100%, 1480px) !important;
  max-width: 1480px !important;
  padding-left: clamp(16px, 2.2vw, 28px) !important;
  padding-right: clamp(16px, 2.2vw, 28px) !important;
}

.register-mode .gb-source-profile .source-header-wrap {
  min-width: 0 !important;
  flex-wrap: wrap !important;
  gap: 10px 16px !important;
}

.register-mode .gb-source-profile .source-brand-link {
  flex: 0 0 178px !important;
}

.register-mode .gb-source-profile .source-search-wrap {
  flex: 0 1 360px !important;
  max-width: 360px !important;
  min-width: 240px !important;
}

.register-mode .gb-source-profile .source-nav-links {
  min-width: 0 !important;
  flex: 1 1 auto !important;
  flex-wrap: wrap !important;
  gap: 10px 14px !important;
  justify-content: flex-end !important;
}

.register-mode .gb-source-profile .source-nav-links .public-header-utilities {
  min-width: 0 !important;
  flex: 0 1 auto !important;
}

.register-mode .gb-source-profile .hero-card {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 500px) !important;
}

@media (max-width: 1240px) {
  .register-mode .gb-source-profile .hero-card {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 860px) {
  .register-mode .gb-source-profile .source-brand-link {
    flex-basis: 156px !important;
  }

  .register-mode .gb-source-profile .source-brand-logo {
    max-width: 156px !important;
    width: 156px !important;
  }

  .register-mode .gb-source-profile .source-search-wrap {
    order: 3 !important;
    flex: 1 1 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .register-mode .gb-source-profile .source-nav-links {
    flex: 1 1 auto !important;
  }
}

@media (max-width: 620px) {
  .register-mode .gb-source-profile .source-header-wrap {
    align-items: flex-start !important;
  }

  .register-mode .gb-source-profile .source-nav-links {
    width: 100% !important;
    justify-content: flex-start !important;
  }
}
/* Register catalog: keep imported company cards contained with real company names/data. */
.register-mode .featured-section .card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  align-items: stretch !important;
}

.register-mode .featured-section .card-grid > .info-card {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  align-content: start !important;
}

.register-mode .featured-section .card-grid > .info-card > div:first-child {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  align-items: start !important;
  min-width: 0 !important;
}

.register-mode .featured-section .card-grid > .info-card > div:first-child > div:nth-child(2),
.register-mode .featured-section .card-grid > .info-card > div:first-child > div:nth-child(2) > div:first-child {
  min-width: 0 !important;
  max-width: 100% !important;
}

.register-mode .featured-section .card-grid > .info-card > div:first-child > div:nth-child(2) > div:first-child {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: start !important;
  gap: 8px !important;
}

.register-mode .featured-section .card-grid > .info-card > div:first-child strong {
  min-width: 0 !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  line-height: 1.18 !important;
}

.register-mode .featured-section .card-grid > .info-card > div:first-child .meta {
  min-width: 0 !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  line-height: 1.35 !important;
}

.register-mode .featured-section .card-grid > .info-card > div:first-child > div:nth-child(2) > div:first-child > div {
  min-width: 0 !important;
  max-width: 170px !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
}

.register-mode .featured-section .card-grid > .info-card .badge {
  min-width: 0 !important;
  max-width: 100% !important;
  white-space: nowrap !important;
}

.register-mode .featured-section .card-grid > .info-card > div:nth-child(2) {
  min-width: 0 !important;
  overflow: hidden !important;
}

.register-mode .featured-section .card-grid > .info-card > div:nth-child(3) {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.register-mode .featured-section .card-grid > .info-card > div:nth-child(3) .mini-action {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  justify-content: center !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

@media (max-width: 900px) {
  .register-mode .featured-section .card-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 520px) {
  .register-mode .featured-section .card-grid > .info-card > div:first-child > div:nth-child(2) > div:first-child {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .register-mode .featured-section .card-grid > .info-card > div:first-child > div:nth-child(2) > div:first-child > div {
    max-width: 100% !important;
    justify-content: flex-start !important;
  }

  .register-mode .featured-section .card-grid > .info-card > div:nth-child(3) {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* Proof Center V2 — production integration */
body.register-mode .gb-proof-v2 {
  --proof-surface: #111b2e;
  --proof-surface-soft: #152238;
  --proof-line: #263752;
  --proof-muted: #98a7ba;
  width: 100%;
  margin-top: 14px;
  color: #f7f9fc;
  font-size: 14px;
  line-height: 1.45;
  box-sizing: border-box !important;
}

body.register-mode .gb-proof-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 255px;
  gap: 12px;
  align-items: start;
}

body.register-mode .gb-proof-main-column,
body.register-mode .gb-proof-primary-side {
  display: grid;
  gap: 12px;
  min-width: 0;
}

body.register-mode .gb-proof-section,
body.register-mode .gb-proof-side-card {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--proof-line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(19,31,51,.98), rgba(12,22,38,.98));
  box-shadow: 0 9px 24px rgba(0,0,0,.12);
}

body.register-mode .gb-proof-section { padding: 17px; }
body.register-mode .gb-proof-side-card { padding: 16px; }

body.register-mode .gb-proof-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

body.register-mode .gb-proof-section-head h2,
body.register-mode .gb-proof-side-card h3 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .55px;
}

body.register-mode .gb-proof-section-head h2 { font-size: 15px; }
body.register-mode .gb-proof-side-card h3 { font-size: 13.5px; }
body.register-mode .gb-proof-side-card h3 b {
  float: right;
  min-width: 22px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--gold);
  color: #101725;
  text-align: center;
  font-size: 12px;
}

body.register-mode .gb-proof-section-head p,
body.register-mode .gb-proof-cta p,
body.register-mode .gb-proof-empty-note {
  margin: 3px 0 0;
  color: var(--proof-muted);
  font-size: 13.5px;
}

body.register-mode .gb-proof-help,
body.register-mode .gb-proof-download-report,
body.register-mode .gb-proof-side-button {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(245,166,35,.55);
  border-radius: 7px;
  background: transparent;
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}

body.register-mode .gb-proof-help:hover,
body.register-mode .gb-proof-download-report:hover,
body.register-mode .gb-proof-side-button:hover { background: rgba(245,166,35,.1); }

body.register-mode .gb-proof-package-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

body.register-mode .gb-proof-package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 230px;
  padding: 12px 10px 43px;
  overflow: hidden;
  border: 1px solid var(--proof-line);
  border-radius: 9px;
  background: rgba(255,255,255,.018);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

body.register-mode .gb-proof-package-card:hover,
body.register-mode .gb-proof-package-card.is-active {
  border-color: rgba(245,166,35,.7);
  background: rgba(245,166,35,.06);
  transform: translateY(-1px);
}

body.register-mode .gb-proof-package-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border: 1px solid rgba(245,166,35,.45);
  border-radius: 8px;
  color: var(--gold);
}
body.register-mode .gb-proof-package-icon svg { width: 20px; height: 20px; }
body.register-mode .gb-proof-package-card > strong { min-height: 36px; font-size: 13px; line-height: 1.35; }
body.register-mode .gb-proof-package-desc {
  margin-top: 6px;
  color: var(--proof-muted);
  font-size: 11.5px;
  line-height: 1.4;
}
body.register-mode .gb-proof-package-stat { margin-top: auto; padding-top: 9px; color: #d5dce6; font-size: 12px; }
body.register-mode .gb-proof-package-verified { margin-top: 2px; color: var(--green); font-size: 12px; }
body.register-mode .gb-proof-package-action {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  padding: 6px 8px;
  border: 1px solid rgba(245,166,35,.55);
  border-radius: 6px;
  color: var(--gold);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

body.register-mode .gb-proof-coverage-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}
body.register-mode .gb-proof-coverage-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 56px minmax(0,1fr);
  align-items: center;
  gap: 9px;
  min-height: 88px;
  padding: 10px;
  border: 1px solid var(--proof-line);
  border-radius: 9px;
  background: rgba(255,255,255,.018);
  color: #fff;
  text-align: left;
  cursor: pointer;
}
body.register-mode .gb-proof-coverage-card:nth-child(5) { grid-column: 2 / span 2; }
body.register-mode .gb-proof-coverage-card:hover { border-color: rgba(245,166,35,.55); }
body.register-mode .gb-proof-ring { position: relative; display: grid; place-items: center; width: 56px; height: 56px; }
body.register-mode .gb-proof-ring svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
body.register-mode .gb-proof-ring circle { fill: none; stroke-width: 6; }
body.register-mode .gb-proof-ring-bg { stroke: #263752; }
body.register-mode .gb-proof-ring-fill { stroke-linecap: round; }
body.register-mode .gb-proof-ring-fill.is-green { stroke: var(--green); }
body.register-mode .gb-proof-ring-fill.is-gold { stroke: var(--gold); }
body.register-mode .gb-proof-ring-fill.is-red { stroke: #dd5252; }
body.register-mode .gb-proof-ring strong { z-index: 1; font-size: 13px; }
body.register-mode .gb-proof-coverage-copy { min-width: 0; }
body.register-mode .gb-proof-coverage-copy strong { display: block; font-size: 12.5px; line-height: 1.3; }
body.register-mode .gb-proof-coverage-copy span { display: block; margin-top: 4px; font-size: 12px; }
body.register-mode .gb-proof-coverage-copy small { color: var(--proof-muted); font-size: 11px; }
body.register-mode .gb-proof-legend { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 11px; color: var(--proof-muted); font-size: 11.5px; }
body.register-mode .gb-proof-legend span { display: inline-flex; align-items: center; gap: 6px; }
body.register-mode .gb-proof-legend i,
body.register-mode .gb-proof-verification-list i { width: 8px; height: 8px; border-radius: 50%; }
body.register-mode .gb-proof-legend .is-green,
body.register-mode .gb-proof-verification-list .is-green { background: var(--green); color: var(--green); }
body.register-mode .gb-proof-legend .is-gold,
body.register-mode .gb-proof-verification-list .is-gold { background: var(--gold); color: var(--gold); }
body.register-mode .gb-proof-legend .is-red,
body.register-mode .gb-proof-verification-list .is-red { background: var(--red); color: var(--red); }
body.register-mode .gb-proof-verification-list .is-blue { background: var(--blue); color: var(--blue); }

body.register-mode .gb-proof-view-toggle { display: inline-flex; align-items: center; gap: 4px; color: var(--proof-muted); font-size: 11.5px; white-space: nowrap; }
body.register-mode .gb-proof-view-toggle .coverage-toggle-btn {
  min-height: 29px;
  padding: 5px 9px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--proof-muted);
  font-size: 11.5px;
}
body.register-mode .gb-proof-view-toggle .coverage-toggle-btn.is-active { border-color: var(--proof-line); background: rgba(245,166,35,.12); color: var(--gold); }

body.register-mode .gb-proof-verification-list { display: grid; margin-top: 10px; }
body.register-mode .gb-proof-verification-list > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(38,55,82,.72);
  font-size: 12.5px;
}
body.register-mode .gb-proof-verification-list span { display: flex; align-items: center; gap: 7px; }
body.register-mode .gb-proof-verification-list strong { white-space: nowrap; }
body.register-mode .gb-proof-side-button { width: 100%; margin-top: 12px; }
body.register-mode .gb-proof-quick-list { display: grid; margin-top: 8px; }
body.register-mode .gb-proof-quick-list button {
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid rgba(38,55,82,.72);
  background: transparent;
  color: #dce3ec;
  text-align: left;
  font-size: 12.5px;
  cursor: pointer;
}
body.register-mode .gb-proof-quick-list button:hover { color: var(--gold); }
body.register-mode .gb-proof-principle { border-color: rgba(245,166,35,.5); }
body.register-mode .gb-proof-principle p { margin: 10px 0 0; color: var(--proof-muted); font-size: 12.5px; line-height: 1.55; }

body.register-mode .gb-proof-documents { margin-top: 12px; }
body.register-mode .gb-proof-filters { display: grid; grid-template-columns: 1.15fr 1fr 1fr 1.55fr; gap: 8px; margin-bottom: 11px; }
body.register-mode .gb-proof-filters label { display: grid; gap: 4px; color: var(--proof-muted); font-size: 11.5px; }
body.register-mode .gb-proof-filters select,
body.register-mode .gb-proof-filters input {
  width: 100%;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid var(--proof-line);
  border-radius: 7px;
  background: #0d1728;
  color: #eef3f9;
  font-size: 13px;
}
body.register-mode .gb-proof-table-scroll { width: 100%; overflow-x: auto; }
body.register-mode .gb-proof-doc-table,
body.register-mode .gb-proof-coverage-table { width: 100%; border-collapse: collapse; }
body.register-mode .gb-proof-doc-table th,
body.register-mode .gb-proof-coverage-table th {
  padding: 9px 8px;
  border-bottom: 1px solid var(--proof-line);
  color: #8292a7;
  text-align: left;
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: .35px;
}
body.register-mode .gb-proof-doc-table td,
body.register-mode .gb-proof-coverage-table td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(38,55,82,.78);
  color: #dfe6ef;
  font-size: 12.5px;
  vertical-align: middle;
}
body.register-mode .gb-proof-doc-table tr { cursor: pointer; }
body.register-mode .gb-proof-doc-table tr:hover td,
body.register-mode .gb-proof-doc-table tr.is-selected td { background: rgba(245,166,35,.045); }
body.register-mode .gb-proof-doc-name { display: flex; align-items: center; gap: 8px; min-width: 200px; }
body.register-mode .gb-proof-doc-name strong { display: block; color: #fff; font-size: 13px; }
body.register-mode .gb-proof-doc-name small { display: block; margin-top: 2px; color: var(--proof-muted); font-size: 10.5px; }
body.register-mode .gb-proof-file-type { display: grid; place-items: center; width: 31px; height: 35px; flex: 0 0 auto; border-radius: 6px; background: rgba(232,93,93,.16); color: #ff6c6c; font-size: 9px; font-weight: 800; }
body.register-mode .gb-proof-category-dot { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; }
body.register-mode .gb-proof-status { display: inline-flex; padding: 4px 7px; border: 1px solid currentColor; border-radius: 999px; white-space: nowrap; font-size: 10.5px; font-weight: 700; }
body.register-mode .gb-proof-status.is-verified { color: var(--green); background: rgba(76,175,125,.08); }
body.register-mode .gb-proof-status.is-pending { color: var(--gold); background: rgba(245,166,35,.08); }
body.register-mode .gb-proof-status.is-unverified { color: var(--red); background: rgba(232,93,93,.08); }
body.register-mode .gb-proof-status.is-restricted { color: var(--gold); background: rgba(245,166,35,.08); }
      body.register-mode .gb-proof-status.is-expired { color: var(--red); background: rgba(232,93,93,.08); }
      body.register-mode .gb-proof-status.is-public { color: var(--green); background: rgba(76,175,125,.08); }
body.register-mode .gb-proof-row-actions { display: flex; align-items: center; gap: 7px; }
body.register-mode .gb-proof-row-action { min-height: 30px; padding: 5px 9px; border: 0; border-radius: 6px; background: var(--gold); color: #111827; font-size: 11px; font-weight: 800; cursor: pointer; }
body.register-mode .gb-proof-row-action.is-view { background: #1675c4; color: #fff; }
body.register-mode .gb-proof-select-mark { display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid var(--proof-line); border-radius: 50%; color: var(--green); font-size: 11px; }
body.register-mode .gb-proof-empty-cell { padding: 26px !important; color: var(--proof-muted) !important; text-align: center !important; }
body.register-mode .gb-proof-pagination { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 11px; color: var(--proof-muted); font-size: 12px; }
body.register-mode .gb-proof-pagination div { display: flex; gap: 5px; }
body.register-mode .gb-proof-pagination button { width: 30px; height: 30px; border: 1px solid var(--proof-line); border-radius: 6px; background: #0d1728; color: #a7b3c2; }
body.register-mode .gb-proof-pagination button.is-active { border-color: var(--gold); background: var(--gold); color: #111827; font-weight: 800; }

body.register-mode .gb-proof-support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; margin-top: 12px; }
body.register-mode .gb-proof-support-grid .gb-proof-side-card { display: flex; flex-direction: column; min-height: 145px; }
body.register-mode .gb-proof-source-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 10px; }
body.register-mode .gb-proof-source-grid div { padding: 9px 7px; border: 1px solid var(--proof-line); border-radius: 7px; text-align: center; }
body.register-mode .gb-proof-source-grid strong { display: block; color: #dce4ee; font-size: 11.5px; }
body.register-mode .gb-proof-source-grid span { display: block; margin-top: 2px; color: var(--proof-muted); font-size: 9.5px; }
body.register-mode .gb-proof-empty-note { margin: auto 0; padding: 10px; border: 1px dashed var(--proof-line); border-radius: 8px; text-align: center; }

body.register-mode .gb-proof-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding: 20px 24px;
  border: 1px solid rgba(245,166,35,.55);
  border-radius: 12px;
  background: linear-gradient(120deg, #10243a, #111d2f);
  box-sizing: border-box !important;
}
body.register-mode .gb-proof-cta h2 { margin: 0; color: var(--gold); font-size: 19px; }
body.register-mode .gb-proof-cta > div:last-child { display: flex; gap: 9px; flex: 1 1 auto; flex-wrap: wrap; justify-content: flex-end; }
body.register-mode .gb-proof-cta .btn { min-height: 40px; padding: 9px 14px; font-size: 13px; }

body.register-mode .gb-proof-request-modal { position: fixed; inset: 0; z-index: 1000; display: none; place-items: center; padding: 20px; }
body.register-mode .gb-proof-request-modal.is-open { display: grid; }
body.register-mode .gb-proof-modal-backdrop { position: absolute; inset: 0; background: rgba(2,8,18,.82); backdrop-filter: blur(5px); }
body.register-mode .gb-proof-request-form { position: relative; z-index: 1; width: min(680px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 20px; border: 1px solid rgba(245,166,35,.5); border-radius: 12px; background: #111b2e; box-shadow: 0 24px 70px rgba(0,0,0,.55); }
body.register-mode .gb-proof-modal-head { display: flex; justify-content: space-between; gap: 12px; }
body.register-mode .gb-proof-modal-head span { color: var(--gold); text-transform: uppercase; font-size: 10px; letter-spacing: .8px; }
body.register-mode .gb-proof-modal-head h2 { margin: 2px 0 0; font-size: 21px; }
body.register-mode .gb-proof-modal-head button { width: 34px; height: 34px; border: 1px solid var(--proof-line); border-radius: 7px; background: transparent; color: #fff; font-size: 22px; }
body.register-mode .gb-proof-request-form > p { color: var(--proof-muted); font-size: 13px; }
body.register-mode .gb-proof-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
body.register-mode .gb-proof-request-form label { display: grid; gap: 4px; color: #bac5d2; font-size: 12px; }
body.register-mode .gb-proof-request-form input,
body.register-mode .gb-proof-request-form select,
body.register-mode .gb-proof-request-form textarea { min-height: 40px; padding: 8px 10px; border: 1px solid var(--proof-line); border-radius: 7px; background: #0c1626; color: #fff; font-size: 13px; }
body.register-mode .gb-proof-form-message { margin-top: 10px; }
body.register-mode .gb-proof-form-message textarea { min-height: 86px; resize: vertical; }
body.register-mode .gb-proof-modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 13px; }
body.register-mode .gb-proof-modal-actions .btn { min-height: 40px; font-size: 13px; }

@media (max-width: 1250px) {
  body.register-mode .gb-proof-main-grid { grid-template-columns: 1fr; }
  body.register-mode .gb-proof-primary-side { grid-template-columns: repeat(3, minmax(0,1fr)); }
  body.register-mode .gb-proof-package-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 720px) {
  body.register-mode .gb-proof-section { padding: 14px; }
  body.register-mode .gb-proof-section-head { align-items: flex-start; flex-direction: column; }
  body.register-mode .gb-proof-primary-side { grid-template-columns: 1fr; }
  body.register-mode .gb-proof-coverage-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  body.register-mode .gb-proof-coverage-card,
  body.register-mode .gb-proof-coverage-card:nth-child(5) { grid-column: span 2; }
  body.register-mode .gb-proof-coverage-card:last-child { grid-column: 2 / span 2; }
  body.register-mode .gb-proof-filters { grid-template-columns: 1fr 1fr; }
  body.register-mode .gb-proof-doc-table thead { display: none; }
  body.register-mode .gb-proof-doc-table,
  body.register-mode .gb-proof-doc-table tbody,
  body.register-mode .gb-proof-doc-table tr,
  body.register-mode .gb-proof-doc-table td { display: block; width: 100%; }
  body.register-mode .gb-proof-doc-table tr { margin-bottom: 9px; padding: 11px; border: 1px solid var(--proof-line); border-radius: 9px; background: rgba(255,255,255,.018); }
  body.register-mode .gb-proof-doc-table td { display: grid; grid-template-columns: 125px minmax(0,1fr); align-items: center; min-height: 34px; padding: 5px 0; border: 0; }
  body.register-mode .gb-proof-doc-table td::before { content: attr(data-label); color: var(--proof-muted); text-transform: uppercase; font-size: 9.5px; letter-spacing: .35px; }
  body.register-mode .gb-proof-doc-name { min-width: 0; }
  body.register-mode .gb-proof-cta { align-items: stretch; flex-direction: column; }
  body.register-mode .gb-proof-cta > div:last-child { flex-wrap: wrap; }
}

@media (max-width: 520px) {
  body.register-mode .gb-proof-v2 { font-size: 13.5px; }
  body.register-mode .gb-proof-package-grid { grid-template-columns: 1fr 1fr; }
  body.register-mode .gb-proof-package-card { min-height: 218px; }
  body.register-mode .gb-proof-coverage-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  body.register-mode .gb-proof-coverage-card,
  body.register-mode .gb-proof-coverage-card:nth-child(5) { grid-column: span 1; grid-template-columns: 50px minmax(0,1fr); }
  body.register-mode .gb-proof-coverage-card:last-child { grid-column: 1 / -1; width: calc(50% - 4px); justify-self: center; }
  body.register-mode .gb-proof-ring { width: 50px; height: 50px; }
  body.register-mode .gb-proof-filters,
  body.register-mode .gb-proof-form-grid { grid-template-columns: 1fr; }
  body.register-mode .gb-proof-doc-table td { grid-template-columns: 100px minmax(0,1fr); }
  body.register-mode .gb-proof-pagination { align-items: flex-start; flex-direction: column; }
  body.register-mode .gb-proof-cta > div:last-child { display: grid; }
  body.register-mode .gb-proof-cta .btn { width: 100%; }
}
/* Proof Center inside the current GreenDeck public-profile shell */
body.register-mode .gb-proof-source-page .main-grid { gap: 12px; }
body.register-mode .gb-proof-source-page .gb-proof-v2 { margin-top: 0; }
body.register-mode .gb-proof-source-page .breadcrumbs button { padding: 0; border: 0; background: none; color: inherit; font: inherit; cursor: pointer; }

/* 2026-07-13 – Proof Center overflow containment fix. */
body.register-mode .gb-proof-v2,
body.register-mode .gb-proof-v2 * {
  max-width: 100%;
  box-sizing: border-box;
}

body.register-mode .gb-proof-v2 {
  overflow-x: hidden;
}

body.register-mode .gb-proof-cta > div:last-child {
  min-width: 0;
}

body.register-mode .gb-proof-cta .btn {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.register-mode .gb-proof-support-grid {
  max-width: 100%;
  box-sizing: border-box;
}

body.register-mode .gb-proof-documents {
  max-width: 100%;
  box-sizing: border-box;
}

/* Ensure the proof-source-page container clips overflow */
body.register-mode .gb-proof-source-page .container {
  overflow-x: hidden;
}

body.register-mode .gb-proof-source-page .main-grid {
  overflow-x: hidden;
  min-width: 0;
}

/* 2026-07-14 – Enlarge public projects portfolio page width to match profile/docs width (1480px) */
.register-mode .portfolio-v2-public-header.gb-source-profile .container {
  max-width: 1480px !important;
}
.portfolio-v2-content {
  max-width: 1480px !important;
}

/* ==========================================================================
   GUILDBAU DOCUMENT PROOF CENTER ENHANCEMENTS (PHASE 1)
   ========================================================================== */

/* 1. Package Status Badge & Layout in Cards */
.gb-proof-package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 250px;
  justify-content: space-between;
}

.gb-proof-package-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 10px;
  align-self: flex-start;
}
.gb-proof-package-status span {
  font-size: 13px;
  line-height: 1;
}
.gb-proof-package-status.is-green {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.25);
}
.gb-proof-package-status.is-gold {
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.25);
}
.gb-proof-package-status.is-blue {
  background: rgba(33, 150, 243, 0.15);
  color: #2196f3;
  border: 1px solid rgba(33, 150, 243, 0.25);
}
.gb-proof-package-status.is-muted {
  background: rgba(255, 255, 255, 0.05);
  color: #888;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 2. Side Drawers (Package Detail & Document Preview) */
.gb-proof-drawer,
.gb-proof-doc-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  visibility: hidden;
  transition: visibility 0.3s;
}

.gb-proof-drawer.is-open,
.gb-proof-doc-preview.is-open {
  visibility: visible;
}

.gb-proof-drawer-backdrop,
.gb-proof-preview-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}

.gb-proof-drawer.is-open .gb-proof-drawer-backdrop,
.gb-proof-doc-preview.is-open .gb-proof-preview-backdrop {
  opacity: 1;
}

.gb-proof-drawer-panel,
.gb-proof-preview-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: #121212;
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gb-proof-drawer.is-open .gb-proof-drawer-panel,
.gb-proof-doc-preview.is-open .gb-proof-preview-panel {
  transform: translateX(0);
}

.gb-proof-drawer-head,
.gb-proof-preview-head {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.gb-proof-drawer-head h2,
.gb-proof-preview-head h2 {
  margin: 4px 0 0 0;
  font-size: 20px;
  color: #fff;
  font-weight: 800;
}

.gb-proof-drawer-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
}

.gb-proof-drawer-head button,
.gb-proof-preview-head button {
  background: none;
  border: none;
  color: #888;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.gb-proof-drawer-head button:hover,
.gb-proof-preview-head button:hover {
  color: #fff;
}

.gb-proof-drawer-body,
.gb-proof-preview-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gb-proof-drawer-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  align-self: flex-start;
}
.gb-proof-drawer-status.is-green { background: rgba(76,175,80,0.15); color: #4caf50; border: 1px solid rgba(76,175,80,0.25); }
.gb-proof-drawer-status.is-gold { background: rgba(245,166,35,0.15); color: var(--gold); border: 1px solid rgba(245,166,35,0.25); }
.gb-proof-drawer-status.is-blue { background: rgba(33,150,243,0.15); color: #2196f3; border: 1px solid rgba(33,150,243,0.25); }
.gb-proof-drawer-status.is-muted { background: rgba(255,255,255,0.05); color: #888; border: 1px solid rgba(255,255,255,0.1); }

.gb-proof-drawer-desc {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

.gb-proof-drawer-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}

.gb-proof-drawer-metrics div {
  display: flex;
  flex-direction: column;
}

.gb-proof-drawer-metrics strong {
  font-size: 18px;
  color: #fff;
  font-weight: 800;
}
.gb-proof-drawer-metrics strong.is-green {
  color: var(--green);
}

.gb-proof-drawer-metrics span {
  font-size: 10px;
  color: #777;
  margin-top: 4px;
  text-transform: uppercase;
}

.gb-proof-drawer-doc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gb-proof-drawer-doc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px 14px;
}

.gb-proof-drawer-doc-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}
.gb-proof-drawer-doc-icon.is-green { background: rgba(76,175,80,0.15); color: #4caf50; }
.gb-proof-drawer-doc-icon.is-muted { background: rgba(255,255,255,0.05); color: #666; }

.gb-proof-drawer-doc-row div {
  display: flex;
  flex-direction: column;
}

.gb-proof-drawer-doc-row strong {
  font-size: 13px;
  color: #eee;
}

.gb-proof-drawer-doc-row span {
  font-size: 11px;
  color: #666;
}

.gb-proof-drawer-missing {
  background: rgba(244, 67, 54, 0.05);
  border: 1px solid rgba(244, 67, 54, 0.15);
  border-radius: 8px;
  padding: 14px;
  margin-top: 10px;
}

.gb-proof-drawer-missing h4 {
  margin: 0;
  font-size: 13px;
  color: #f44336;
  font-weight: 700;
}

.gb-proof-drawer-missing p {
  margin: 6px 0 0 0;
  font-size: 12px;
  color: #bbb;
  line-height: 1.5;
}

.gb-proof-drawer-footer,
.gb-proof-preview-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
}

.gb-proof-drawer-footer button,
.gb-proof-preview-footer button {
  flex: 1;
  margin: 0 !important;
}

/* 3. Document Preview Specific Grid */
.gb-proof-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gb-proof-preview-field {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.03);
  padding: 10px 14px;
  border-radius: 8px;
}

.gb-proof-preview-field span {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.gb-proof-preview-field strong {
  font-size: 13.5px;
  color: #fff;
  font-weight: 600;
}
.gb-proof-preview-field strong.is-green { color: var(--green); }
.gb-proof-preview-field strong.is-gold { color: var(--gold); }
.gb-proof-preview-field strong.is-muted { color: #888; }

.gb-proof-preview-access {
  background: rgba(245, 166, 35, 0.03);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: 8px;
  padding: 16px;
  margin-top: 10px;
}

.gb-proof-preview-access h4 {
  margin: 0;
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
}

.gb-proof-preview-access p {
  margin: 6px 0 0 0;
  font-size: 12.5px;
  color: #aaa;
  line-height: 1.5;
}

/* 4. How It Works Modal */
.gb-proof-how-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10100;
  visibility: hidden;
  transition: visibility 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gb-proof-how-modal.is-open {
  visibility: visible;
}

.gb-proof-how-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s;
}

.gb-proof-how-modal.is-open .gb-proof-how-backdrop {
  opacity: 1;
}

.gb-proof-how-panel {
  position: relative;
  background: #121212;
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  z-index: 1;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gb-proof-how-modal.is-open .gb-proof-how-panel {
  transform: scale(1);
  opacity: 1;
}

.gb-proof-how-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gb-proof-how-head h2 {
  margin: 0;
  font-size: 20px;
  color: var(--gold);
  font-weight: 800;
}

.gb-proof-how-head button {
  background: none;
  border: none;
  color: #888;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.gb-proof-how-steps {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gb-proof-how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gb-proof-how-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.gb-proof-how-step div strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

.gb-proof-how-step div p {
  margin: 0;
  font-size: 13px;
  color: #aaa;
  line-height: 1.5;
}

.gb-proof-how-footer {
  padding: 16px 24px 24px 24px;
  display: flex;
  justify-content: flex-end;
}

.gb-proof-how-footer button {
  margin: 0 !important;
  padding: 10px 24px !important;
}

/* Make document list rows click feedback premium */
.gb-proof-doc-table tbody tr {
  transition: background 0.15s ease, border-color 0.15s ease;
}
.gb-proof-doc-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04) !important;
}
.gb-proof-doc-table tbody tr:active {
  background: rgba(255, 255, 255, 0.06) !important;
}


/* ==========================================================================
   DOCUMENT TRUST CENTER P0 — PAGE IDENTITY & ACTION RAIL (2026-07-17)
   ========================================================================== */
body.register-mode .gb-proof-page-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin: 12px 0 16px;
  padding: 18px 20px;
  border: 1px solid rgba(48, 69, 98, .78);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 12%, rgba(245, 166, 35, .08), transparent 34%),
    linear-gradient(135deg, rgba(15, 29, 48, .96), rgba(8, 19, 34, .96));
  box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
}

body.register-mode .gb-proof-page-intro > div:first-child {
  max-width: 790px;
}

body.register-mode .gb-proof-page-kicker,
body.register-mode .gb-proof-card-eyebrow,
body.register-mode .gb-proof-rail-head > span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 10px;
  font-weight: 800;
}

body.register-mode .gb-proof-page-intro h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -.02em;
}

body.register-mode .gb-proof-page-intro p {
  max-width: 760px;
  margin: 7px 0 0;
  color: #aab6c6;
  font-size: 13px;
  line-height: 1.55;
}

body.register-mode .gb-proof-page-context {
  display: grid;
  justify-items: end;
  gap: 4px;
  flex: 0 0 auto;
  color: #8f9db0;
  font-size: 11px;
  text-align: right;
}

body.register-mode .gb-proof-page-context strong {
  color: #dfe6ef;
  font-size: 12px;
}

body.register-mode .gb-proof-page-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 3px;
  padding: 5px 9px;
  border: 1px solid rgba(56, 181, 106, .26);
  border-radius: 999px;
  background: rgba(56, 181, 106, .08);
  color: #78d59d;
  font-weight: 700;
}

body.register-mode .gb-proof-page-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38b56a;
  box-shadow: 0 0 0 3px rgba(56, 181, 106, .12);
}

body.register-mode .gb-proof-main-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
}

body.register-mode .gb-proof-action-rail {
  gap: 12px;
}

body.register-mode .gb-proof-action-rail .gb-proof-side-card {
  padding: 15px;
  overflow: hidden;
}

body.register-mode .gb-proof-action-rail h3 {
  color: #f5f7fa;
  text-transform: none;
  letter-spacing: -.01em;
  font-size: 15px;
  line-height: 1.25;
}

body.register-mode .gb-proof-rail-head p,
body.register-mode .gb-proof-actions-card > p {
  margin: 5px 0 0;
  color: #92a0b4;
  font-size: 11.5px;
  line-height: 1.45;
}

body.register-mode .gb-proof-readiness-card {
  border-color: rgba(55, 78, 110, .92);
  background:
    radial-gradient(circle at 100% 0, rgba(50, 141, 219, .08), transparent 45%),
    linear-gradient(150deg, rgba(18, 32, 53, .99), rgba(10, 21, 37, .99));
}

body.register-mode .gb-proof-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

body.register-mode .gb-proof-summary-item {
  display: grid;
  gap: 2px;
  min-height: 78px;
  padding: 9px 10px;
  border: 1px solid rgba(53, 72, 99, .82);
  border-radius: 9px;
  background: rgba(255, 255, 255, .018);
  color: #dfe6ef;
  text-align: left;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

body.register-mode .gb-proof-summary-item:hover,
body.register-mode .gb-proof-summary-item.is-active {
  transform: translateY(-1px);
  border-color: currentColor;
  background: rgba(255, 255, 255, .045);
}

body.register-mode .gb-proof-summary-item > span {
  color: #aab6c6;
  font-size: 10.5px;
  font-weight: 700;
}

body.register-mode .gb-proof-summary-item > strong {
  color: currentColor;
  font-size: 20px;
  line-height: 1.1;
}

body.register-mode .gb-proof-summary-item > small {
  color: #77879c;
  font-size: 9.5px;
  line-height: 1.25;
}

body.register-mode .gb-proof-summary-item.is-green { color: #54c883; }
body.register-mode .gb-proof-summary-item.is-blue { color: #54a9ec; }
body.register-mode .gb-proof-summary-item.is-red { color: #ed7777; }
body.register-mode .gb-proof-summary-item.is-gold { color: #f5b335; }

body.register-mode .gb-proof-selection-card {
  border-color: rgba(245, 166, 35, .38);
  background: linear-gradient(150deg, rgba(33, 31, 29, .96), rgba(14, 23, 37, .98));
}

body.register-mode .gb-proof-selection-card.is-empty {
  border-color: var(--proof-line);
  background: linear-gradient(145deg, rgba(19, 31, 51, .98), rgba(12, 22, 38, .98));
}

body.register-mode .gb-proof-selection-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

body.register-mode .gb-proof-selection-head span {
  display: block;
  margin-bottom: 2px;
  color: #8e9caf;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
}

body.register-mode .gb-proof-selection-head button {
  padding: 3px 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 10.5px;
  cursor: pointer;
}

body.register-mode .gb-proof-selection-head button:disabled {
  color: #5f6c7d;
  cursor: default;
}

body.register-mode .gb-proof-selection-list {
  display: grid;
  gap: 6px;
  margin: 10px 0 12px;
}

body.register-mode .gb-proof-selection-list > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 7px 8px;
  border: 1px solid rgba(59, 78, 105, .78);
  border-radius: 7px;
  background: rgba(255, 255, 255, .025);
  color: #dbe3ed;
  text-align: left;
  font-size: 10.5px;
  cursor: pointer;
}

body.register-mode .gb-proof-selection-list > button span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.register-mode .gb-proof-selection-list > button b {
  color: #8f9bad;
  font-size: 15px;
  font-weight: 400;
}

body.register-mode .gb-proof-selection-list > small,
body.register-mode .gb-proof-selection-empty {
  margin: 0;
  color: #7e8ca0;
  font-size: 10.5px;
  line-height: 1.4;
}

body.register-mode .gb-proof-primary-action {
  width: 100%;
  min-height: 42px;
  margin: 0;
  box-shadow: 0 8px 22px rgba(245, 166, 35, .14);
}

body.register-mode .gb-proof-secondary-actions {
  display: grid;
  margin-top: 8px;
}

body.register-mode .gb-proof-secondary-actions button {
  min-height: 38px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(45, 63, 88, .75);
  background: transparent;
  color: #cbd5e1;
  text-align: left;
  font-size: 11.5px;
  cursor: pointer;
}

body.register-mode .gb-proof-secondary-actions button:last-child {
  border-bottom: 0;
}

body.register-mode .gb-proof-secondary-actions button:hover {
  color: var(--gold);
}

body.register-mode .gb-proof-risk-card {
  border-color: rgba(229, 91, 91, .42);
  background:
    radial-gradient(circle at 100% 0, rgba(229, 91, 91, .1), transparent 44%),
    linear-gradient(145deg, rgba(33, 25, 34, .98), rgba(14, 22, 37, .98));
}

body.register-mode .gb-proof-risk-card.is-clear {
  border-color: rgba(56, 181, 106, .35);
}

body.register-mode .gb-proof-risk-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
  color: #ef8b8b;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
}

body.register-mode .gb-proof-risk-label i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e55b5b;
}

body.register-mode .gb-proof-risk-label strong {
  margin-left: auto;
  color: #fff;
  font-size: 12px;
}

body.register-mode .gb-proof-risk-card p {
  margin: 5px 0 0;
  color: #9eabbc;
  font-size: 11px;
  line-height: 1.45;
}

body.register-mode .gb-proof-action-rail .gb-proof-side-button {
  min-height: 38px;
}

body.register-mode .gb-proof-summary-item:focus-visible,
body.register-mode .gb-proof-selection-list > button:focus-visible,
body.register-mode .gb-proof-secondary-actions button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 1250px) {
  body.register-mode .gb-proof-action-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.register-mode .gb-proof-action-rail .gb-proof-readiness-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  body.register-mode .gb-proof-page-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    padding: 16px;
  }

  body.register-mode .gb-proof-page-context {
    justify-items: start;
    width: 100%;
    text-align: left;
  }

  body.register-mode .gb-proof-action-rail {
    grid-template-columns: 1fr;
  }

  body.register-mode .gb-proof-action-rail .gb-proof-readiness-card {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  body.register-mode .gb-proof-summary-grid {
    grid-template-columns: 1fr;
  }

  body.register-mode .gb-proof-summary-item {
    min-height: 68px;
  }
}

/* DOCUMENT TRUST CENTER P0 — RESPONSIVE CORRECTION (2026-07-17) */
@media (max-width: 1250px) {
  body.register-mode .gb-proof-main-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 780px) {
  body.register-mode .gb-proof-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  body.register-mode .gb-proof-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.register-mode .gb-proof-package-grid,
  body.register-mode .gb-proof-coverage-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.register-mode .gb-proof-coverage-card,
  body.register-mode .gb-proof-coverage-card:nth-child(5),
  body.register-mode .gb-proof-coverage-card:last-child {
    grid-column: 1;
    width: 100%;
  }
}

/* ==========================================================================
   DOCUMENT TRUST CENTER P1 — PACKAGE & DOCUMENT DECISION DRAWERS (2026-07-17)
   ========================================================================== */
body.register-mode .gb-proof-drawer-panel {
  width: min(620px, 100vw);
  max-width: 620px;
  border-left: 1px solid rgba(61, 83, 112, .9);
  background:
    radial-gradient(circle at 100% 0, rgba(245, 166, 35, .06), transparent 34%),
    linear-gradient(180deg, #101c2e 0%, #0a1423 100%);
  box-shadow: -22px 0 70px rgba(0, 0, 0, .58);
}

body.register-mode .gb-proof-preview-drawer .gb-proof-drawer-panel {
  width: min(560px, 100vw);
  max-width: 560px;
}

body.register-mode .gb-proof-drawer-head {
  position: sticky;
  top: 0;
  z-index: 3;
  align-items: center;
  min-height: 78px;
  padding: 18px 22px;
  border-bottom-color: rgba(55, 76, 104, .82);
  background: rgba(11, 22, 38, .96);
  backdrop-filter: blur(14px);
}

body.register-mode .gb-proof-drawer-head h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.22;
}

body.register-mode .gb-proof-drawer-head button {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(67, 87, 113, .82);
  border-radius: 10px;
  background: rgba(255, 255, 255, .025);
  color: #b8c3d1;
  font-size: 25px;
}

body.register-mode .gb-proof-drawer-head button:hover,
body.register-mode .gb-proof-drawer-head button:focus-visible {
  border-color: rgba(245, 166, 35, .62);
  color: var(--gold);
  outline: none;
}

body.register-mode .gb-proof-drawer-body {
  gap: 0;
  padding: 0;
}

body.register-mode .gb-proof-package-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

body.register-mode .gb-proof-package-readiness-chip {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 7px;
  border: 1px solid rgba(80, 98, 124, .7);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  color: #9aa8ba;
  font-size: 8.5px;
  font-weight: 800;
  line-height: 1.15;
  text-align: right;
}

body.register-mode .gb-proof-package-readiness-chip.is-green { border-color: rgba(56,181,106,.35); color: #65cd8d; }
body.register-mode .gb-proof-package-readiness-chip.is-blue { border-color: rgba(50,141,219,.36); color: #64b0ec; }
body.register-mode .gb-proof-package-readiness-chip.is-gold { border-color: rgba(245,166,35,.4); color: #f5b335; }
body.register-mode .gb-proof-package-readiness-chip.is-danger { border-color: rgba(229,91,91,.42); color: #ee8585; }

body.register-mode .gb-proof-drawer-intro {
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(49, 69, 95, .7);
}

body.register-mode .gb-proof-drawer-eyebrow,
body.register-mode .gb-proof-drawer-section-head span,
body.register-mode .gb-proof-preview-stage > div > span,
body.register-mode .gb-proof-preview-access > span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 9.5px;
  font-weight: 800;
}

body.register-mode .gb-proof-drawer-intro > p {
  margin: 8px 0 0;
  color: #b0bccb;
  font-size: 13px;
  line-height: 1.55;
}

body.register-mode .gb-proof-drawer-audience {
  display: grid;
  gap: 3px;
  margin-top: 15px;
  padding: 11px 12px;
  border: 1px solid rgba(54, 75, 102, .76);
  border-radius: 9px;
  background: rgba(255, 255, 255, .022);
}

body.register-mode .gb-proof-drawer-audience span {
  color: #7f8ea2;
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

body.register-mode .gb-proof-drawer-audience strong {
  color: #e0e6ee;
  font-size: 12px;
  line-height: 1.4;
}

body.register-mode .gb-proof-package-readiness {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin: 18px 22px 12px;
  padding: 12px;
  border: 1px solid rgba(57, 78, 106, .8);
  border-radius: 10px;
  background: rgba(255, 255, 255, .022);
}

body.register-mode .gb-proof-package-readiness-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .045);
  color: currentColor;
  font-size: 17px;
  font-weight: 900;
}

body.register-mode .gb-proof-package-readiness strong {
  display: block;
  color: #f3f6f9;
  font-size: 13px;
}

body.register-mode .gb-proof-package-readiness p {
  margin: 3px 0 0;
  color: #8e9caf;
  font-size: 10.5px;
  line-height: 1.35;
}

body.register-mode .gb-proof-package-readiness > b {
  color: currentColor;
  font-size: 18px;
}

body.register-mode .gb-proof-package-readiness.is-green { border-color: rgba(56,181,106,.35); color: #5bc985; }
body.register-mode .gb-proof-package-readiness.is-blue { border-color: rgba(50,141,219,.38); color: #5aacec; }
body.register-mode .gb-proof-package-readiness.is-gold { border-color: rgba(245,166,35,.4); color: #f5b335; }
body.register-mode .gb-proof-package-readiness.is-danger { border-color: rgba(229,91,91,.42); color: #ed7c7c; }

body.register-mode .gb-proof-package-decision .gb-proof-drawer-metrics {
  margin: 0 22px;
  padding: 10px;
  border-radius: 10px;
  background: rgba(7, 16, 29, .56);
}

body.register-mode .gb-proof-package-decision .gb-proof-drawer-metrics > div {
  padding: 5px 3px;
  border-right: 1px solid rgba(53, 72, 98, .62);
}

body.register-mode .gb-proof-package-decision .gb-proof-drawer-metrics > div:last-child {
  border-right: 0;
}

body.register-mode .gb-proof-drawer-metrics strong.is-danger { color: #ed7777; }

body.register-mode .gb-proof-readiness-progress {
  height: 4px;
  margin: 12px 22px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #213049;
}

body.register-mode .gb-proof-readiness-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #328ddb, #55c985);
}

body.register-mode .gb-proof-requirements {
  padding: 22px;
}

body.register-mode .gb-proof-drawer-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 11px;
}

body.register-mode .gb-proof-drawer-section-head h3 {
  margin: 3px 0 0;
  color: #f4f7fa;
  font-size: 15px;
  line-height: 1.2;
}

body.register-mode .gb-proof-drawer-section-head > b {
  color: #b9c5d4;
  font-size: 12px;
}

body.register-mode .gb-proof-requirement-list {
  display: grid;
  gap: 8px;
}

body.register-mode .gb-proof-requirement-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 94px;
  padding: 11px;
  border: 1px solid rgba(54, 75, 103, .78);
  border-radius: 10px;
  background: rgba(255, 255, 255, .018);
}

body.register-mode .gb-proof-requirement-row.is-missing {
  border-style: dashed;
  border-color: rgba(229, 91, 91, .34);
  background: rgba(229, 91, 91, .035);
}

body.register-mode .gb-proof-requirement-index {
  display: grid;
  place-items: center;
  align-self: flex-start;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(50, 141, 219, .1);
  color: #69afe3;
  font-size: 10px;
  font-weight: 800;
}

body.register-mode .gb-proof-requirement-row.is-missing .gb-proof-requirement-index {
  background: rgba(229, 91, 91, .09);
  color: #e98282;
}

body.register-mode .gb-proof-requirement-copy {
  min-width: 0;
}

body.register-mode .gb-proof-requirement-label {
  display: block;
  margin-bottom: 3px;
  color: #7f8da0;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .055em;
}

body.register-mode .gb-proof-requirement-copy > strong {
  display: block;
  color: #eef2f7;
  font-size: 12px;
  line-height: 1.35;
}

body.register-mode .gb-proof-requirement-copy > p {
  margin: 4px 0 0;
  color: #8290a3;
  font-size: 10.5px;
  line-height: 1.4;
}

body.register-mode .gb-proof-requirement-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}

body.register-mode .gb-proof-requirement-badges span {
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: #94a2b4;
  font-size: 8.5px;
  font-weight: 700;
}

body.register-mode .gb-proof-requirement-badges .is-green,
body.register-mode .gb-proof-drawer-section-head .is-green { color: #62cc8a; }
body.register-mode .gb-proof-requirement-badges .is-blue,
body.register-mode .gb-proof-drawer-section-head .is-blue { color: #62afe9; }
body.register-mode .gb-proof-requirement-badges .is-danger,
body.register-mode .gb-proof-drawer-section-head .is-danger { color: #ec7d7d; }
body.register-mode .gb-proof-requirement-badges .is-public { color: #68cfa0; }
body.register-mode .gb-proof-requirement-badges .is-granted { color: #69d18f; }
body.register-mode .gb-proof-requirement-badges .is-restricted { color: #efb54c; }

body.register-mode .gb-proof-requirement-action {
  min-width: 82px;
  min-height: 40px;
  padding: 7px 10px;
  border: 1px solid rgba(245, 166, 35, .5);
  border-radius: 8px;
  background: transparent;
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 800;
  cursor: pointer;
}

body.register-mode .gb-proof-requirement-action:hover,
body.register-mode .gb-proof-requirement-action:focus-visible {
  background: rgba(245, 166, 35, .1);
  outline: none;
}

body.register-mode .gb-proof-package-actions {
  display: grid;
  gap: 9px;
  padding: 17px 22px 22px;
  border-top: 1px solid rgba(52, 72, 98, .74);
  background: rgba(7, 15, 27, .48);
}

body.register-mode .gb-proof-package-actions > .btn {
  width: 100%;
  min-height: 44px;
}

body.register-mode .gb-proof-package-actions > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

body.register-mode .gb-proof-package-actions > div .btn {
  min-height: 40px;
  margin: 0;
  font-size: 10.5px;
}

body.register-mode .gb-proof-package-actions > small {
  color: #718096;
  font-size: 9.5px;
  line-height: 1.4;
  text-align: center;
}

body.register-mode .gb-proof-preview-stage {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin: 22px 22px 16px;
  padding: 16px;
  border: 1px solid rgba(55, 77, 105, .82);
  border-radius: 11px;
  background:
    linear-gradient(145deg, rgba(24, 41, 65, .9), rgba(12, 25, 43, .96));
}

body.register-mode .gb-proof-preview-stage-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 70px;
  border: 1px solid rgba(245, 166, 35, .42);
  border-radius: 8px;
  background: rgba(245, 166, 35, .06);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
}

body.register-mode .gb-proof-preview-stage strong {
  display: block;
  margin-top: 4px;
  color: #f4f7fa;
  font-size: 14px;
  line-height: 1.35;
}

body.register-mode .gb-proof-preview-stage p {
  margin: 5px 0 0;
  color: #8998aa;
  font-size: 10.5px;
  line-height: 1.4;
}

body.register-mode .gb-proof-preview-meta {
  padding: 0 22px 18px;
}

body.register-mode .gb-proof-preview-grid {
  gap: 8px;
}

body.register-mode .gb-proof-preview-field {
  min-height: 70px;
  padding: 10px 11px;
  border-color: rgba(53, 73, 100, .72);
  background: rgba(255, 255, 255, .018);
}

body.register-mode .gb-proof-preview-field span {
  color: #7c8a9d;
  font-size: 9px;
}

body.register-mode .gb-proof-preview-field strong {
  overflow-wrap: anywhere;
  color: #e8edf3;
  font-size: 11.5px;
  line-height: 1.35;
}

body.register-mode .gb-proof-preview-field strong.is-blue { color: #63afea; }
body.register-mode .gb-proof-preview-field strong.is-danger { color: #ec7d7d; }

body.register-mode .gb-proof-preview-access {
  margin: 0 22px 22px;
  padding: 14px;
  border-color: rgba(64, 84, 110, .76);
  background: rgba(255, 255, 255, .02);
}

body.register-mode .gb-proof-preview-access h4 {
  margin-top: 4px;
  color: #f1f5f9;
}

body.register-mode .gb-proof-preview-access.is-public { border-color: rgba(56,181,106,.28); }
body.register-mode .gb-proof-preview-access.is-granted { border-color: rgba(56,181,106,.4); background: rgba(56,181,106,.05); }
body.register-mode .gb-proof-preview-access.is-restricted,
body.register-mode .gb-proof-preview-access.is-gold { border-color: rgba(245,166,35,.34); background: rgba(245,166,35,.035); }
body.register-mode .gb-proof-preview-access.is-danger { border-color: rgba(229,91,91,.4); background: rgba(229,91,91,.04); }

body.register-mode .gb-proof-preview-footer {
  display: grid;
  gap: 8px;
  padding: 16px 22px 20px !important;
  border-top-color: rgba(53, 73, 99, .78) !important;
  background: rgba(7, 15, 27, .82) !important;
}

body.register-mode .gb-proof-preview-footer .btn {
  width: 100%;
  min-height: 44px;
}

body.register-mode .gb-proof-status.is-public { color: #69d09a; border-color: rgba(56,181,106,.25); background: rgba(56,181,106,.07); }
body.register-mode .gb-proof-status.is-granted { color: #72d597; border-color: rgba(56,181,106,.34); background: rgba(56,181,106,.1); }

@media (max-width: 640px) {
  body.register-mode .gb-proof-drawer-panel,
  body.register-mode .gb-proof-preview-drawer .gb-proof-drawer-panel {
    width: 100vw;
    max-width: 100vw;
  }

  body.register-mode .gb-proof-drawer-head {
    min-height: 68px;
    padding: 13px 15px;
  }

  body.register-mode .gb-proof-drawer-head h2 {
    font-size: 17px;
  }

  body.register-mode .gb-proof-drawer-intro,
  body.register-mode .gb-proof-requirements {
    padding: 17px 15px;
  }

  body.register-mode .gb-proof-package-readiness,
  body.register-mode .gb-proof-package-decision .gb-proof-drawer-metrics,
  body.register-mode .gb-proof-readiness-progress,
  body.register-mode .gb-proof-preview-stage,
  body.register-mode .gb-proof-preview-access {
    margin-right: 15px;
    margin-left: 15px;
  }

  body.register-mode .gb-proof-package-decision .gb-proof-drawer-metrics {
    grid-template-columns: 1fr 1fr;
  }

  body.register-mode .gb-proof-package-decision .gb-proof-drawer-metrics > div:nth-child(2) {
    border-right: 0;
  }

  body.register-mode .gb-proof-package-decision .gb-proof-drawer-metrics > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(53, 72, 98, .62);
  }

  body.register-mode .gb-proof-requirement-row {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  body.register-mode .gb-proof-requirement-action {
    grid-column: 2;
    width: 100%;
  }

  body.register-mode .gb-proof-package-actions {
    padding: 15px;
  }

  body.register-mode .gb-proof-package-actions > div {
    grid-template-columns: 1fr;
  }

  body.register-mode .gb-proof-preview-meta {
    padding-right: 15px;
    padding-left: 15px;
  }

  body.register-mode .gb-proof-preview-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   DOCUMENT TRUST CENTER P2 — BALANCED LAYOUT, CENTERED PACKAGE DIALOG & PACKAGE BUILDER
   2026-07-18
   ========================================================================== */
@media (min-width: 1251px) {
  body.register-mode .gb-proof-main-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
  }
}

body.register-mode .gb-proof-package-head-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

body.register-mode .gb-proof-create-package {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(245, 166, 35, .72);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(245, 166, 35, .2), rgba(245, 166, 35, .08));
  color: #ffc04d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
}

body.register-mode .gb-proof-create-package:hover,
body.register-mode .gb-proof-create-package:focus-visible {
  border-color: #ffc04d;
  background: rgba(245, 166, 35, .17);
  outline: 2px solid rgba(245, 166, 35, .2);
  outline-offset: 2px;
}

body.register-mode .gb-proof-package-grid:has(> .gb-proof-package-card:nth-child(7)) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.register-mode .gb-proof-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.register-mode .gb-proof-main-insight {
  display: flex;
  flex-direction: column;
  min-height: 168px;
  padding: 18px;
}

body.register-mode .gb-proof-main-insight .gb-proof-side-button {
  margin-top: auto;
}

body.register-mode .gb-proof-action-rail > .gb-proof-risk-card,
body.register-mode .gb-proof-action-rail > .gb-proof-principle {
  display: none;
}

/* Package details are a centered decision dialog, not an oversized side curtain. */
body.register-mode #gb-proof-drawer {
  display: grid;
  place-items: center;
  padding: 28px;
}

body.register-mode #gb-proof-drawer .gb-proof-drawer-backdrop {
  inset: 0;
  width: auto;
  height: auto;
  background: rgba(2, 8, 18, .78);
  backdrop-filter: blur(7px);
}

body.register-mode #gb-proof-drawer .gb-proof-drawer-panel {
  position: relative;
  top: auto;
  right: auto;
  width: min(920px, calc(100vw - 56px));
  max-width: 920px;
  height: auto;
  max-height: calc(100vh - 56px);
  overflow: hidden;
  border: 1px solid rgba(72, 94, 123, .92);
  border-radius: 16px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .68);
  opacity: 0;
  transform: translateY(18px) scale(.985);
  transition: transform .24s cubic-bezier(.16, 1, .3, 1), opacity .2s ease;
}

body.register-mode #gb-proof-drawer.is-open .gb-proof-drawer-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.register-mode #gb-proof-drawer .gb-proof-drawer-head {
  min-height: 68px;
  padding: 14px 18px;
}

body.register-mode #gb-proof-drawer .gb-proof-drawer-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

body.register-mode #gb-proof-drawer .gb-proof-package-decision {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
}

body.register-mode #gb-proof-drawer .gb-proof-drawer-intro {
  grid-column: 1;
  border-right: 1px solid rgba(49, 69, 95, .7);
  border-bottom: 1px solid rgba(49, 69, 95, .7);
}

body.register-mode #gb-proof-drawer .gb-proof-package-readiness {
  grid-column: 2;
  align-self: stretch;
  margin: 18px 18px 18px 0;
}

body.register-mode #gb-proof-drawer .gb-proof-drawer-metrics,
body.register-mode #gb-proof-drawer .gb-proof-readiness-progress,
body.register-mode #gb-proof-drawer .gb-proof-requirements,
body.register-mode #gb-proof-drawer .gb-proof-package-actions {
  grid-column: 1 / -1;
}

body.register-mode #gb-proof-drawer .gb-proof-package-decision .gb-proof-drawer-metrics {
  margin-top: 16px;
}

body.register-mode #gb-proof-drawer .gb-proof-requirements {
  padding-top: 18px;
}

body.register-mode #gb-proof-drawer .gb-proof-requirement-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.register-mode #gb-proof-drawer .gb-proof-requirement-row {
  min-height: 112px;
}

/* Custom package configuration */
body.register-mode .gb-proof-package-builder-modal {
  z-index: 10030;
}

body.register-mode .gb-proof-package-builder {
  width: min(760px, 100%);
  padding: 24px;
  border-color: rgba(245, 166, 35, .58);
  background:
    radial-gradient(circle at 100% 0, rgba(245, 166, 35, .08), transparent 34%),
    linear-gradient(145deg, #121f33, #0b1627);
}

body.register-mode .gb-proof-builder-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 17px;
}

body.register-mode .gb-proof-builder-fields .is-wide {
  grid-column: 1 / -1;
}

body.register-mode .gb-proof-builder-fields textarea {
  min-height: 72px;
  resize: vertical;
}

body.register-mode .gb-proof-builder-categories {
  min-width: 0;
  margin: 18px 0 0;
  padding: 14px;
  border: 1px solid rgba(55, 76, 104, .82);
  border-radius: 10px;
}

body.register-mode .gb-proof-builder-categories legend {
  padding: 0 7px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

body.register-mode .gb-proof-builder-categories > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.register-mode .gb-proof-builder-categories label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid rgba(55, 76, 104, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .022);
  color: #dce4ed;
  cursor: pointer;
}

body.register-mode .gb-proof-builder-categories label:hover {
  border-color: rgba(245, 166, 35, .45);
}

body.register-mode .gb-proof-builder-categories input {
  width: 17px;
  min-height: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--gold);
}

body.register-mode .gb-proof-builder-error {
  min-height: 18px;
  margin: 10px 0 0 !important;
  color: #ee8585 !important;
  font-size: 11.5px !important;
}

@media (max-width: 1250px) {
  body.register-mode .gb-proof-package-grid:has(> .gb-proof-package-card:nth-child(7)) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.register-mode .gb-proof-action-rail > .gb-proof-risk-card,
  body.register-mode .gb-proof-action-rail > .gb-proof-principle {
    display: flex;
  }

  body.register-mode .gb-proof-insight-grid {
    display: none;
  }
}

@media (max-width: 820px) {
  body.register-mode #gb-proof-drawer {
    padding: 12px;
  }

  body.register-mode #gb-proof-drawer .gb-proof-drawer-panel {
    width: calc(100vw - 24px);
    max-width: none;
    max-height: calc(100vh - 24px);
    border-radius: 13px;
  }

  body.register-mode #gb-proof-drawer .gb-proof-package-decision {
    grid-template-columns: minmax(0, 1fr);
  }

  body.register-mode #gb-proof-drawer .gb-proof-drawer-intro,
  body.register-mode #gb-proof-drawer .gb-proof-package-readiness {
    grid-column: 1;
  }

  body.register-mode #gb-proof-drawer .gb-proof-drawer-intro {
    border-right: 0;
  }

  body.register-mode #gb-proof-drawer .gb-proof-package-readiness {
    margin: 14px 15px 0;
  }

  body.register-mode #gb-proof-drawer .gb-proof-requirement-list {
    grid-template-columns: minmax(0, 1fr);
  }

  body.register-mode .gb-proof-builder-fields,
  body.register-mode .gb-proof-builder-categories > div {
    grid-template-columns: minmax(0, 1fr);
  }

  body.register-mode .gb-proof-builder-fields .is-wide {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  body.register-mode .gb-proof-package-head-actions {
    width: 100%;
    justify-content: stretch;
  }

  body.register-mode .gb-proof-package-head-actions > button {
    flex: 1 1 auto;
  }

  body.register-mode #gb-proof-drawer {
    padding: 0;
  }

  body.register-mode #gb-proof-drawer .gb-proof-drawer-panel {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-width: 0;
    border-radius: 0;
  }

  body.register-mode .gb-proof-package-builder-modal {
    padding: 0;
  }

  body.register-mode .gb-proof-package-builder {
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    border-width: 0;
    border-radius: 0;
  }
}
/* DOCUMENT TRUST CENTER P2 — MOBILE CUSTOM PACKAGE GRID FIX */
@media (max-width: 640px) {
  body.register-mode .gb-proof-package-grid:has(> .gb-proof-package-card:nth-child(7)) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  body.register-mode .gb-proof-package-grid:has(> .gb-proof-package-card:nth-child(7)) {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ========================================================================== 
   DOCUMENT TRUST CENTER P3 — READABILITY & COMPLETE ACTION RAIL
   2026-07-18
   ========================================================================== */
body.register-mode .gb-proof-v2,
body.register-mode .gb-proof-v2 button,
body.register-mode .gb-proof-v2 input,
body.register-mode .gb-proof-v2 select,
body.register-mode #gb-proof-drawer {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.register-mode .gb-proof-package-card,
body.register-mode .gb-proof-package-card *,
body.register-mode .gb-proof-coverage-card *,
body.register-mode .gb-proof-action-rail *,
body.register-mode #gb-proof-drawer * {
  min-width: 0;
}

body.register-mode .gb-proof-package-card {
  min-height: 248px;
  padding: 13px 11px 45px;
}

body.register-mode .gb-proof-package-card > strong {
  min-height: 40px;
  font-size: 14px;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

body.register-mode .gb-proof-package-desc {
  font-size: 12.5px;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

body.register-mode .gb-proof-package-stat,
body.register-mode .gb-proof-package-verified,
body.register-mode .gb-proof-package-action {
  font-size: 12.5px;
  line-height: 1.35;
}

body.register-mode .gb-proof-package-readiness-chip {
  max-width: calc(100% - 42px);
  min-height: 27px;
  padding: 4px 7px;
  justify-content: center;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
  font-size: 9.5px;
  line-height: 1.22;
}

body.register-mode .gb-proof-coverage-card {
  min-height: 96px;
  padding: 11px;
}

body.register-mode .gb-proof-ring strong { font-size: 14px; }
body.register-mode .gb-proof-coverage-copy strong { font-size: 13.5px; line-height: 1.35; overflow-wrap: anywhere; }
body.register-mode .gb-proof-coverage-copy span { font-size: 12.5px; }
body.register-mode .gb-proof-coverage-copy small,
body.register-mode .gb-proof-legend { font-size: 11.5px; }

body.register-mode .gb-proof-section-head h2 { font-size: 16px; line-height: 1.25; }
body.register-mode .gb-proof-section-head p { font-size: 13px; line-height: 1.5; }
body.register-mode .gb-proof-card-eyebrow,
body.register-mode .gb-proof-rail-head > span { font-size: 10.5px; }

body.register-mode .gb-proof-rail-head p,
body.register-mode .gb-proof-actions-card > p {
  font-size: 12.5px;
  line-height: 1.5;
}

body.register-mode .gb-proof-summary-item {
  min-height: 84px;
  padding: 10px;
}

body.register-mode .gb-proof-summary-item > span { font-size: 11.5px; line-height: 1.25; }
body.register-mode .gb-proof-summary-item > strong { font-size: 21px; }
body.register-mode .gb-proof-summary-item > small { font-size: 10.5px; line-height: 1.35; }
body.register-mode .gb-proof-selection-head span { font-size: 11px; }
body.register-mode .gb-proof-selection-head button { font-size: 11.5px; }
body.register-mode .gb-proof-selection-list > button,
body.register-mode .gb-proof-selection-list > small,
body.register-mode .gb-proof-selection-empty { font-size: 11.5px; line-height: 1.45; }
body.register-mode .gb-proof-secondary-actions button { font-size: 12.5px; line-height: 1.4; }
body.register-mode .gb-proof-primary-action,
body.register-mode .gb-proof-action-rail .gb-proof-side-button { white-space: normal; line-height: 1.35; }

body.register-mode .gb-proof-rail-sources,
body.register-mode .gb-proof-rail-requests {
  border-color: rgba(55, 78, 110, .86);
  background: linear-gradient(145deg, rgba(18, 31, 51, .98), rgba(11, 22, 38, .98));
}

body.register-mode .gb-proof-compact-card-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

body.register-mode .gb-proof-rail-source-grid {
  gap: 6px;
  margin-top: 9px;
}

body.register-mode .gb-proof-rail-source-grid div {
  min-height: 42px;
  padding: 7px 5px;
}

body.register-mode .gb-proof-rail-source-grid strong { font-size: 12px; }
body.register-mode .gb-proof-rail-source-grid span { font-size: 10.5px; }

body.register-mode .gb-proof-rail-count {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(245, 166, 35, .46);
  border-radius: 9px;
  background: rgba(245, 166, 35, .08);
  color: var(--gold);
  font-size: 15px;
}

body.register-mode .gb-proof-rail-empty {
  margin: 9px 0 0;
  color: #91a0b4;
  font-size: 11.5px;
  line-height: 1.45;
}

body.register-mode .gb-proof-rail-requests .gb-proof-side-button {
  min-height: 36px;
  margin-top: 10px;
  font-size: 11.5px;
}

body.register-mode .gb-proof-filters label { font-size: 12px; }
body.register-mode .gb-proof-filters select,
body.register-mode .gb-proof-filters input { min-height: 40px; font-size: 13.5px; }
body.register-mode .gb-proof-doc-table th,
body.register-mode .gb-proof-coverage-table th { font-size: 11.5px; line-height: 1.35; }
body.register-mode .gb-proof-doc-table td,
body.register-mode .gb-proof-coverage-table td { font-size: 13px; line-height: 1.4; }
body.register-mode .gb-proof-doc-name strong { font-size: 13.5px; line-height: 1.35; }
body.register-mode .gb-proof-doc-name small { font-size: 11.5px; line-height: 1.35; }
body.register-mode .gb-proof-status { font-size: 11px; line-height: 1.25; }
body.register-mode .gb-proof-row-action { min-height: 32px; font-size: 11.5px; white-space: normal; }
body.register-mode .gb-proof-pagination { font-size: 12.5px; }

body.register-mode #gb-proof-drawer .gb-proof-drawer-head h2 { font-size: 21px; }
body.register-mode #gb-proof-drawer .gb-proof-drawer-eyebrow,
body.register-mode #gb-proof-drawer .gb-proof-drawer-section-head span { font-size: 10.5px; }
body.register-mode #gb-proof-drawer .gb-proof-drawer-intro > p { font-size: 14px; line-height: 1.58; }
body.register-mode #gb-proof-drawer .gb-proof-drawer-audience span { font-size: 10.5px; }
body.register-mode #gb-proof-drawer .gb-proof-drawer-audience strong { font-size: 13px; line-height: 1.45; }
body.register-mode #gb-proof-drawer .gb-proof-package-readiness strong { font-size: 14px; }
body.register-mode #gb-proof-drawer .gb-proof-package-readiness p { font-size: 11.5px; line-height: 1.4; }
body.register-mode #gb-proof-drawer .gb-proof-package-readiness > b { font-size: 20px; }
body.register-mode #gb-proof-drawer .gb-proof-drawer-metrics strong { font-size: 20px; }
body.register-mode #gb-proof-drawer .gb-proof-drawer-metrics span { font-size: 11px; line-height: 1.3; }
body.register-mode #gb-proof-drawer .gb-proof-drawer-section-head h3 { font-size: 16px; }
body.register-mode #gb-proof-drawer .gb-proof-drawer-section-head > b { font-size: 13px; }
body.register-mode #gb-proof-drawer .gb-proof-requirement-row { min-height: 126px; }
body.register-mode #gb-proof-drawer .gb-proof-requirement-label { font-size: 10px; line-height: 1.3; }
body.register-mode #gb-proof-drawer .gb-proof-requirement-copy > strong { font-size: 13px; line-height: 1.4; overflow-wrap: anywhere; }
body.register-mode #gb-proof-drawer .gb-proof-requirement-copy > p { font-size: 11.5px; line-height: 1.45; }
body.register-mode #gb-proof-drawer .gb-proof-requirement-badges span { font-size: 9.5px; line-height: 1.25; }
body.register-mode #gb-proof-drawer .gb-proof-requirement-action { min-width: 88px; min-height: 42px; font-size: 11.5px; white-space: normal; }

@media (min-width: 1251px) {
  body.register-mode .gb-proof-support-verification,
  body.register-mode .gb-proof-support-requests { display: none; }
}

@media (max-width: 1250px) {
  body.register-mode .gb-proof-rail-sources,
  body.register-mode .gb-proof-rail-requests { display: none; }
}

@media (max-width: 640px) {
  body.register-mode .gb-proof-package-card { min-height: 246px; }
  body.register-mode .gb-proof-package-card > strong { font-size: 13.5px; }
  body.register-mode .gb-proof-package-desc { font-size: 12px; }
  body.register-mode .gb-proof-package-readiness-chip { font-size: 9px; }
  body.register-mode #gb-proof-drawer .gb-proof-requirement-row { min-height: 0; }
}
/* P3 desktop column completion and duplicate support-card correction */
@media (min-width: 1251px) {
  body.register-mode .gb-proof-main-grid { align-items: stretch; }
  body.register-mode .gb-proof-action-rail {
    align-self: stretch;
    grid-template-rows: auto auto auto auto minmax(160px, 1fr);
  }
  body.register-mode .gb-proof-action-rail > .gb-proof-rail-requests {
    display: flex;
    flex-direction: column;
  }
  body.register-mode .gb-proof-rail-requests .gb-proof-side-button { margin-top: auto; }
  body.register-mode .gb-proof-support-grid > .gb-proof-support-verification,
  body.register-mode .gb-proof-support-grid > .gb-proof-support-requests { display: none; }
}
/* ========================================================================== 
   DOCUMENT TRUST CENTER P4 — GUIDANCE, CENTERED PACKAGES & FORM CONTROLS
   2026-07-18
   ========================================================================== */
body.register-mode .gb-proof-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(190px, auto);
  align-items: center;
  gap: 22px;
}

body.register-mode .gb-proof-page-intro > .gb-proof-page-intro-copy {
  max-width: 720px;
}

body.register-mode .gb-proof-learn-action {
  display: grid;
  place-items: center;
  justify-self: center;
}

body.register-mode .gb-proof-learn-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 178px;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid rgba(245, 166, 35, .72);
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(245, 166, 35, .15), rgba(245, 166, 35, .045));
  color: #ffc04d;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .055em;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

body.register-mode .gb-proof-learn-toggle b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(245, 166, 35, .13);
  font-size: 14px;
}

body.register-mode .gb-proof-learn-toggle:hover,
body.register-mode .gb-proof-learn-toggle:focus-visible,
body.register-mode .gb-proof-learn-toggle[aria-expanded="true"] {
  border-color: #ffc04d;
  background: rgba(245, 166, 35, .13);
  outline: none;
  transform: translateY(-1px);
}

body.register-mode .gb-proof-service-guide {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 2px;
  padding-top: 20px;
  border-top: 1px solid rgba(61, 82, 110, .72);
  animation: gbProofGuideIn .24s ease both;
}

body.register-mode .gb-proof-service-guide[hidden] { display: none !important; }

@keyframes gbProofGuideIn {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

body.register-mode .gb-proof-guide-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 14px;
}

body.register-mode .gb-proof-guide-head span,
body.register-mode .gb-proof-guide-audiences > section > span {
  display: block;
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}

body.register-mode .gb-proof-guide-head h3 {
  margin: 4px 0 0;
  color: #f5f8fb;
  font-size: 18px;
  line-height: 1.3;
}

body.register-mode .gb-proof-guide-head > p {
  max-width: 430px;
  margin: 0;
  color: #9eacbd;
  font-size: 12.5px;
  line-height: 1.5;
  text-align: right;
}

body.register-mode .gb-proof-guide-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

body.register-mode .gb-proof-guide-steps article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  min-height: 126px;
  padding: 12px;
  border: 1px solid rgba(55, 76, 104, .76);
  border-radius: 10px;
  background: rgba(255, 255, 255, .022);
}

body.register-mode .gb-proof-guide-steps article > b {
  display: grid;
  place-items: center;
  align-self: flex-start;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(245, 166, 35, .48);
  border-radius: 9px;
  background: rgba(245, 166, 35, .08);
  color: var(--gold);
  font-size: 13px;
}

body.register-mode .gb-proof-guide-steps strong {
  color: #eef3f8;
  font-size: 13px;
  line-height: 1.35;
}

body.register-mode .gb-proof-guide-steps p {
  margin: 5px 0 0;
  color: #92a1b4;
  font-size: 11.5px;
  line-height: 1.48;
}

body.register-mode .gb-proof-guide-audiences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

body.register-mode .gb-proof-guide-audiences > section {
  padding: 14px 16px;
  border: 1px solid rgba(54, 76, 104, .82);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(18, 33, 54, .96), rgba(10, 22, 38, .96));
}

body.register-mode .gb-proof-guide-audiences > section:first-child { border-color: rgba(245, 166, 35, .4); }
body.register-mode .gb-proof-guide-audiences > section:last-child { border-color: rgba(56, 181, 106, .35); }
body.register-mode .gb-proof-guide-audiences > section:last-child > span { color: #62cc8a; }

body.register-mode .gb-proof-guide-audiences h4 {
  margin: 5px 0 8px;
  color: #f1f5f9;
  font-size: 14px;
  line-height: 1.35;
}

body.register-mode .gb-proof-guide-audiences ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 17px;
  color: #a5b2c2;
  font-size: 12px;
  line-height: 1.45;
}

body.register-mode .gb-proof-guide-functions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}

body.register-mode .gb-proof-guide-functions > span {
  padding: 6px 9px;
  border: 1px solid rgba(55, 76, 104, .74);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  color: #aeb9c8;
  font-size: 10.5px;
}

body.register-mode .gb-proof-guide-functions > a {
  margin-left: auto;
  padding: 7px 11px;
  border: 1px solid rgba(245, 166, 35, .55);
  border-radius: 7px;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 800;
  text-decoration: none;
}

/* Package cards are centered as one balanced set; incomplete rows stay centered. */
body.register-mode .gb-proof-packages-section .gb-proof-section-head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body.register-mode .gb-proof-packages-section .gb-proof-package-head-actions { justify-content: center; }

body.register-mode .gb-proof-packages-section .gb-proof-package-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

body.register-mode .gb-proof-packages-section .gb-proof-package-card {
  flex: 0 1 calc((100% - 50px) / 6);
  align-items: center;
  text-align: center;
}

body.register-mode .gb-proof-packages-section .gb-proof-package-card-top {
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

body.register-mode .gb-proof-packages-section .gb-proof-package-icon { margin-bottom: 0; }
body.register-mode .gb-proof-packages-section .gb-proof-package-card > strong,
body.register-mode .gb-proof-packages-section .gb-proof-package-desc,
body.register-mode .gb-proof-packages-section .gb-proof-package-stat,
body.register-mode .gb-proof-packages-section .gb-proof-package-verified { width: 100%; text-align: center; }
body.register-mode .gb-proof-packages-section .gb-proof-package-readiness-chip { text-align: center; }

/* Compact, branded category controls in the custom request and package forms. */
body.register-mode #req-custom-pack-params {
  padding: 15px !important;
  border-style: solid !important;
  border-color: rgba(245, 166, 35, .36) !important;
  background: linear-gradient(145deg, rgba(245, 166, 35, .05), rgba(255, 255, 255, .018)) !important;
}

body.register-mode #req-custom-pack-params > h4 {
  margin-bottom: 11px !important;
  font-size: 13.5px !important;
}

body.register-mode .gb-proof-custom-category-grid {
  gap: 8px !important;
}

body.register-mode .gb-proof-custom-category-grid > label,
body.register-mode .gb-proof-builder-categories label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid rgba(58, 79, 106, .78);
  border-radius: 8px;
  background: rgba(255, 255, 255, .022);
  color: #dbe4ee !important;
  font-size: 12px !important;
  line-height: 1.35;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease;
}

body.register-mode .gb-proof-custom-category-grid > label:hover,
body.register-mode .gb-proof-builder-categories label:hover,
body.register-mode .gb-proof-custom-category-grid > label:has(input:checked),
body.register-mode .gb-proof-builder-categories label:has(input:checked) {
  border-color: rgba(245, 166, 35, .58);
  background: rgba(245, 166, 35, .07);
}

body.register-mode .gb-proof-custom-category-grid input[type="checkbox"],
body.register-mode .gb-proof-builder-categories input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  flex: 0 0 22px !important;
  width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(107, 126, 151, .9) !important;
  border-radius: 6px !important;
  background: #0c1829 !important;
  box-shadow: inset 0 0 0 3px rgba(10, 22, 38, .9);
  cursor: pointer;
}

body.register-mode .gb-proof-custom-category-grid input[type="checkbox"]:checked,
body.register-mode .gb-proof-builder-categories input[type="checkbox"]:checked {
  border-color: #f5a623 !important;
  background-color: #f5a623 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%230b1627' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3 8.5l3 3L13 4.5'/%3E%3C/svg%3E") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 14px 14px !important;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, .1);
}

body.register-mode .gb-proof-custom-category-grid input[type="checkbox"]:focus-visible,
body.register-mode .gb-proof-builder-categories input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(245, 166, 35, .42);
  outline-offset: 2px;
}

@media (max-width: 1250px) {
  body.register-mode .gb-proof-packages-section .gb-proof-package-card { flex-basis: calc((100% - 20px) / 3); }
  body.register-mode .gb-proof-guide-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  body.register-mode .gb-proof-page-intro { grid-template-columns: minmax(0, 1fr) auto; }
  body.register-mode .gb-proof-learn-action { grid-column: 1 / -1; width: 100%; }
  body.register-mode .gb-proof-learn-toggle { width: 100%; }
  body.register-mode .gb-proof-service-guide { grid-row: auto; }
  body.register-mode .gb-proof-guide-head { align-items: flex-start; flex-direction: column; gap: 7px; }
  body.register-mode .gb-proof-guide-head > p { max-width: none; text-align: left; }
}

@media (max-width: 780px) {
  body.register-mode .gb-proof-packages-section .gb-proof-package-card { flex-basis: calc((100% - 10px) / 2); }
  body.register-mode .gb-proof-guide-audiences { grid-template-columns: minmax(0, 1fr); }
  body.register-mode .gb-proof-guide-functions > a { width: 100%; margin-left: 0; text-align: center; }
}

@media (max-width: 640px) {
  body.register-mode .gb-proof-page-intro { grid-template-columns: minmax(0, 1fr); align-items: stretch; }
  body.register-mode .gb-proof-page-context { justify-items: start; text-align: left; }
  body.register-mode .gb-proof-guide-steps { grid-template-columns: minmax(0, 1fr); }
  body.register-mode .gb-proof-guide-steps article { min-height: 0; }
  body.register-mode .gb-proof-custom-category-grid { grid-template-columns: minmax(0, 1fr) !important; }
}

@media (max-width: 420px) {
  body.register-mode .gb-proof-packages-section .gb-proof-package-card { flex-basis: 100%; }
}
/* P4 desktop package-row height alignment */
@media (min-width: 1251px) {
  body.register-mode .gb-proof-packages-section .gb-proof-package-card {
    height: 278px;
    min-height: 278px;
  }
}
/* P4.1 package section heading alignment */
@media (min-width: 781px) {
  body.register-mode .gb-proof-packages-section .gb-proof-section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
  }

  body.register-mode .gb-proof-packages-section .gb-proof-package-head-actions {
    justify-content: flex-end;
  }
}
/* P4.2 spacious and symmetric package cards */
@media (min-width: 1251px) {
  body.register-mode .gb-proof-packages-section .gb-proof-package-card {
    height: 350px;
    min-height: 350px;
    padding: 15px 11px 48px;
  }

  body.register-mode .gb-proof-packages-section .gb-proof-package-card-top {
    min-height: 38px;
  }

  body.register-mode .gb-proof-packages-section .gb-proof-package-card > strong {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    margin-top: 8px;
    line-height: 1.45;
  }

  body.register-mode .gb-proof-packages-section .gb-proof-package-desc {
    margin-top: 9px;
    line-height: 1.58;
  }

  body.register-mode .gb-proof-packages-section .gb-proof-package-stat {
    padding-top: 14px;
    line-height: 1.45;
  }

  body.register-mode .gb-proof-packages-section .gb-proof-package-verified {
    margin-top: 4px;
    line-height: 1.4;
  }
}
/* GuildBau catalog homepage IA refresh — 2026-07-18 */
.register-mode .shell:has(.catalog-home) {
  width: min(100%, 1280px) !important;
}

.register-mode .catalog-home {
  --catalog-surface: #111a2b;
  --catalog-surface-strong: #0d1625;
  --catalog-line: rgba(164, 179, 204, 0.17);
  --catalog-line-strong: rgba(164, 179, 204, 0.27);
  display: grid;
  gap: 72px;
  padding: 18px 0 8px;
}

.register-mode .catalog-home button,
.register-mode .catalog-home select,
.register-mode .catalog-home input {
  font: inherit;
}

.register-mode .catalog-header-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted-2);
  padding: 7px 3px;
  margin: 0 7px 0 0;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
}

.register-mode .catalog-header-link:hover,
.register-mode .catalog-header-link.is-active {
  color: #fff;
}

.register-mode .catalog-header-link.is-active {
  box-shadow: inset 0 -1px 0 var(--gold);
}

.register-mode .catalog-public-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
}

.register-mode .catalog-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 64px) 34px;
  border: 1px solid var(--catalog-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 166, 35, 0.09), transparent 38%),
    linear-gradient(145deg, rgba(18, 28, 46, 0.98), rgba(10, 17, 29, 0.98));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.register-mode .catalog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.018), transparent);
}

.register-mode .catalog-hero-copy {
  position: relative;
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.register-mode .catalog-eyebrow,
.register-mode .catalog-section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.register-mode .catalog-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(31px, 4.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.register-mode .catalog-hero h2 {
  margin: 12px 0 0;
  color: #f2f5fa;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 680;
  line-height: 1.25;
}

.register-mode .catalog-hero-copy > p {
  max-width: 680px;
  margin: 13px auto 0;
  color: var(--muted-1);
  font-size: 15px;
  line-height: 1.6;
}

.register-mode .catalog-type-switch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 520px);
  margin: 0 auto 18px;
  padding: 4px;
  border: 1px solid var(--catalog-line);
  border-radius: 12px;
  background: rgba(4, 9, 17, 0.62);
}

.register-mode .catalog-type-switch button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.register-mode .catalog-type-switch button:hover {
  color: #fff;
}

.register-mode .catalog-type-switch button.is-active {
  color: #181005;
  background: var(--gold);
  box-shadow: 0 7px 20px rgba(245, 166, 35, 0.17);
}

.register-mode .catalog-hero .catalog-filter-bar {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
  border-color: var(--catalog-line-strong);
  border-radius: 14px;
  background: rgba(5, 10, 18, 0.7);
  box-shadow: none;
}

.register-mode .catalog-hero .catalog-filter-grid {
  grid-template-columns: 1.15fr .85fr 1fr;
  gap: 12px;
}

.register-mode .catalog-hero .catalog-filter label,
.register-mode .catalog-recommendation-controls label > span {
  margin-bottom: 7px;
  color: #9ba8ba;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
}

.register-mode .catalog-hero .catalog-filter input,
.register-mode .catalog-hero .catalog-filter select,
.register-mode .catalog-recommendation-controls select {
  min-height: 46px;
  border: 1px solid var(--catalog-line);
  border-radius: 9px;
  background-color: #0b1322;
  color: #f7f9fc;
}

.register-mode .catalog-hero .catalog-filter input:focus,
.register-mode .catalog-hero .catalog-filter select:focus,
.register-mode .catalog-recommendation-controls select:focus {
  outline: 2px solid rgba(245, 166, 35, .15);
  border-color: rgba(245, 166, 35, .65);
}

.register-mode .catalog-hero .catalog-filter-actions {
  margin-top: 14px !important;
  padding-top: 14px !important;
}

.register-mode .catalog-hero .catalog-filter-actions > div {
  flex: 0 0 auto;
}

.register-mode .catalog-hero .catalog-filter-actions .mini-action {
  min-height: 40px;
  border-color: var(--catalog-line-strong) !important;
  color: #c6cfdb !important;
  background: transparent;
}

.register-mode .catalog-hero .catalog-filter-actions .btn-primary {
  min-width: 160px;
  min-height: 42px !important;
  border-radius: 9px;
}

.register-mode .catalog-quick-filters {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px auto 0;
}

.register-mode .catalog-quick-filters > span {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 750;
  margin-right: 2px;
}

.register-mode .catalog-quick-filters button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--catalog-line);
  border-radius: 999px;
  background: rgba(255,255,255,.018);
  color: #bcc6d4;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.register-mode .catalog-quick-filters button:hover {
  border-color: rgba(245,166,35,.48);
  color: #fff;
  background: rgba(245,166,35,.06);
}

.register-mode .catalog-quick-filters svg,
.register-mode .catalog-method-note svg,
.register-mode .catalog-profile-location svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.register-mode .catalog-section {
  display: grid;
  gap: 24px;
}

.register-mode .catalog-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--catalog-line);
}

.register-mode .catalog-section-heading h2,
.register-mode .catalog-excellence h2,
.register-mode .catalog-final-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.register-mode .catalog-section-heading p,
.register-mode .catalog-excellence p,
.register-mode .catalog-final-cta p {
  max-width: 720px;
  margin: 9px 0 0;
  color: var(--muted-1);
  font-size: 14px;
  line-height: 1.55;
}

.register-mode .catalog-method-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #aeb9c8;
  font-size: 11px;
  white-space: nowrap;
}

.register-mode .catalog-recommendation-controls {
  display: grid;
  grid-template-columns: .8fr 1.25fr 1fr 1.25fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--catalog-line);
  border-radius: 13px;
  background: rgba(15, 24, 40, .66);
}

.register-mode .catalog-recommendation-controls label {
  display: grid;
  min-width: 0;
}

.register-mode .catalog-recommendation-controls select {
  width: 100%;
  min-width: 0;
  padding: 0 32px 0 11px;
  font-size: 12px;
}

.register-mode .catalog-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.register-mode .catalog-profile-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 286px;
  padding: 20px;
  border: 1px solid var(--catalog-line);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(17, 27, 45, .97), rgba(10, 17, 29, .97));
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.register-mode .catalog-profile-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,166,35,.42);
  background: linear-gradient(145deg, rgba(20, 31, 50, .99), rgba(11, 19, 32, .99));
}

.register-mode .catalog-profile-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.register-mode .catalog-profile-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--catalog-line-strong);
  border-radius: 10px;
  background: #f6f7f9;
  color: #161b25;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .03em;
}

.register-mode .catalog-profile-avatar.is-person {
  border-radius: 50%;
  background: #1b2a42;
  color: #fff;
}

.register-mode .catalog-profile-avatar img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
}

.register-mode .catalog-profile-avatar.is-person img {
  padding: 0;
  object-fit: cover;
}

.register-mode .catalog-profile-identity,
.register-mode .catalog-profile-title-row {
  min-width: 0;
}

.register-mode .catalog-profile-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.register-mode .catalog-profile-card h3 {
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.register-mode .catalog-profile-identity p {
  margin: 5px 0 0;
  color: #9eabbd;
  font-size: 11.5px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.register-mode .verified-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .035em;
}

.register-mode .verified-status svg {
  width: 12px;
  height: 12px;
}

.register-mode .catalog-profile-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #aab5c5;
  font-size: 11.5px;
}

.register-mode .catalog-profile-metrics {
  display: grid;
  grid-template-columns: .9fr 1fr 1.15fr;
  gap: 8px;
  margin: 15px 0 18px;
}

.register-mode .catalog-profile-metrics > div {
  min-width: 0;
}

.register-mode .catalog-profile-metrics span {
  display: block;
  min-height: 25px;
  color: #7f8ea4;
  font-size: 9px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.register-mode .catalog-profile-metrics strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.register-mode .catalog-profile-metrics strong small {
  color: #7f8ea4;
  font-size: 9px;
}

.register-mode .catalog-profile-metrics strong.is-open {
  color: var(--green);
  font-size: 11px;
}

.register-mode .catalog-profile-metrics strong.is-muted {
  color: #bdc6d2;
  font-size: 10px;
}

.register-mode .catalog-profile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--catalog-line);
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  padding-top: 13px;
}

.register-mode .catalog-profile-link:hover {
  color: #ffc45f;
}

.register-mode .catalog-empty-state {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 32px;
  border: 1px dashed var(--catalog-line-strong);
  border-radius: 14px;
  color: var(--muted-2);
  text-align: center;
}

.register-mode .catalog-empty-state svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
}

.register-mode .catalog-empty-state h3,
.register-mode .catalog-empty-state p {
  margin: 0;
}

.register-mode .catalog-empty-state h3 {
  color: #fff;
  font-size: 16px;
}

.register-mode .catalog-empty-state p {
  font-size: 12px;
}

.register-mode .catalog-section-action {
  display: flex;
  justify-content: center;
}

.register-mode .catalog-secondary-cta {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(245,166,35,.48);
  border-radius: 9px;
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.register-mode .catalog-secondary-cta:hover {
  background: rgba(245,166,35,.08);
  border-color: var(--gold);
}

.register-mode .catalog-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.register-mode .catalog-industry-grid .category-card {
  min-height: 92px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border: 1px solid var(--catalog-line);
  background: rgba(15, 24, 40, .76);
  text-align: left;
}

.register-mode .catalog-industry-grid .category-card:hover {
  border-color: rgba(245,166,35,.42);
  background: rgba(19, 30, 49, .94);
}

.register-mode .catalog-industry-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(245,166,35,.08);
  color: var(--gold);
}

.register-mode .catalog-industry-icon svg {
  width: 21px;
  height: 21px;
}

.register-mode .catalog-industry-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.register-mode .catalog-industry-copy strong {
  color: #f5f7fb;
  font-size: 13px;
  line-height: 1.3;
}

.register-mode .catalog-industry-copy small {
  color: #8d9aae;
  font-size: 11px;
}

.register-mode .catalog-industry-arrow {
  color: #68768a;
  font-size: 16px;
}

.register-mode .catalog-ecosystem-strip {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--catalog-line);
  border-radius: 14px;
  background: rgba(13, 22, 37, .85);
  overflow: hidden;
}

.register-mode .catalog-ecosystem-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 22px;
  border-right: 1px solid var(--catalog-line);
}

.register-mode .catalog-ecosystem-title span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.register-mode .catalog-ecosystem-title strong {
  color: #fff;
  font-size: 14px;
}

.register-mode .catalog-ecosystem-strip dl {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
}

.register-mode .catalog-ecosystem-strip dl > div {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  padding: 18px 15px;
  border-right: 1px solid rgba(255,255,255,.055);
  text-align: center;
}

.register-mode .catalog-ecosystem-strip dl > div:last-child {
  border-right: 0;
}

.register-mode .catalog-ecosystem-strip dt {
  color: #8290a5;
  font-size: 9px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .045em;
}

.register-mode .catalog-ecosystem-strip dd {
  margin: 0;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
}

.register-mode .catalog-ecosystem-strip dl > div:nth-child(2) dd,
.register-mode .catalog-ecosystem-strip dl > div:nth-child(5) dd {
  color: var(--green);
}

.register-mode .catalog-excellence {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid rgba(245,166,35,.26);
  border-radius: 18px;
  background:
    radial-gradient(circle at 10% 50%, rgba(245,166,35,.12), transparent 28%),
    linear-gradient(120deg, rgba(19,27,43,.98), rgba(10,17,29,.98));
}

.register-mode .catalog-excellence-mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245,166,35,.35);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(245,166,35,.06);
}

.register-mode .catalog-excellence-mark svg {
  width: 34px;
  height: 34px;
}

.register-mode .catalog-excellence > button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 9px;
  background: var(--gold);
  color: #181005;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  white-space: nowrap;
}

.register-mode .catalog-excellence-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 17px;
}

.register-mode .catalog-excellence-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #96a3b5;
  font-size: 10px;
}

.register-mode .catalog-excellence-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.register-mode .catalog-excellence-legend i.is-green { background: var(--green); }
.register-mode .catalog-excellence-legend i.is-gold { background: var(--gold); }

.register-mode .catalog-final-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 30px 34px;
  border-radius: 16px;
  background: #101a2b;
  border: 1px solid var(--catalog-line);
}

.register-mode .catalog-final-cta h2 {
  font-size: clamp(22px, 2.5vw, 30px);
}

.register-mode .catalog-final-cta .btn {
  flex: 0 0 auto;
  width: auto;
  min-width: 170px;
  margin: 0;
}

@media (max-width: 1060px) {
  .register-mode .catalog-profile-grid,
  .register-mode .catalog-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .register-mode .catalog-recommendation-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .register-mode .catalog-ecosystem-strip {
    grid-template-columns: 1fr;
  }

  .register-mode .catalog-ecosystem-title {
    border-right: 0;
    border-bottom: 1px solid var(--catalog-line);
    text-align: center;
  }

  .register-mode .catalog-excellence {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .register-mode .catalog-excellence-mark {
    width: 64px;
    height: 64px;
  }

  .register-mode .catalog-excellence > button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .register-mode .catalog-home {
    gap: 48px;
    padding-top: 8px;
  }

  .register-mode .catalog-hero {
    padding: 34px 16px 22px;
    border-radius: 14px;
  }

  .register-mode .catalog-hero .catalog-filter-grid,
  .register-mode .catalog-recommendation-controls,
  .register-mode .catalog-profile-grid,
  .register-mode .catalog-industry-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .register-mode .catalog-profile-grid .catalog-profile-card:nth-child(n+5) {
    display: none;
  }

  .register-mode .catalog-hero .catalog-filter-actions,
  .register-mode .catalog-hero .catalog-filter-actions > div {
    width: 100%;
  }

  .register-mode .catalog-hero .catalog-filter-actions > div {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }

  .register-mode .catalog-hero .catalog-filter-actions .btn-primary {
    min-width: 0;
    width: 100% !important;
  }

  .register-mode .catalog-filter-note {
    display: none;
  }

  .register-mode .catalog-quick-filters {
    justify-content: flex-start;
  }

  .register-mode .catalog-quick-filters > span {
    flex-basis: 100%;
  }

  .register-mode .catalog-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .register-mode .catalog-method-note {
    white-space: normal;
  }

  .register-mode .catalog-ecosystem-strip dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .register-mode .catalog-ecosystem-strip dl > div {
    border-bottom: 1px solid rgba(255,255,255,.055);
  }

  .register-mode .catalog-ecosystem-strip dl > div:nth-child(2n) {
    border-right: 0;
  }

  .register-mode .catalog-ecosystem-strip dl > div:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .register-mode .catalog-excellence {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .register-mode .catalog-excellence > button {
    grid-column: 1;
    width: 100%;
  }

  .register-mode .catalog-final-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 20px;
  }

  .register-mode .catalog-final-cta .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .register-mode .catalog-type-switch {
    width: 100%;
  }

  .register-mode .catalog-type-switch button {
    font-size: 11.5px;
  }

  .register-mode .catalog-profile-title-row {
    display: grid;
  }

  .register-mode .verified-status {
    justify-self: start;
  }

  .register-mode .catalog-industry-grid .category-card {
    min-height: 82px;
    padding: 14px;
  }
}
@media (max-width: 760px) {
  .register-mode .catalog-hero [data-clear-catalog-filters] {
    display: none;
  }
}
/* GuildBau catalog results architecture — 2026-07-18 */
.register-mode .catalog-results-page {
  display: grid;
  gap: 22px;
  width: 100%;
}

.register-mode .catalog-results-header {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.28);
  border-radius: 18px;
  padding: clamp(18px, 2.8vw, 34px);
  background:
    radial-gradient(circle at 92% 0%, rgba(245, 166, 35, 0.12), transparent 34%),
    linear-gradient(150deg, rgba(18, 28, 47, 0.98), rgba(7, 13, 24, 0.98));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
}

.register-mode .catalog-results-nav,
.register-mode .catalog-results-search-title,
.register-mode .catalog-results-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.register-mode .catalog-results-back {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  color: #9fb0c9;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.register-mode .catalog-results-back:hover {
  color: var(--gold);
}

.register-mode .catalog-results-total {
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(74, 222, 128, 0.07);
  color: #7ee2a8;
  font-size: 11px;
  font-weight: 800;
}

.register-mode .catalog-results-heading {
  max-width: 790px;
  margin: 30px auto 24px;
  text-align: center;
}

.register-mode .catalog-results-heading h1 {
  margin: 7px 0 10px;
  color: #fff;
  font-size: clamp(27px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.register-mode .catalog-results-heading p {
  margin: 0;
  color: #9cabc1;
  font-size: 14px;
  line-height: 1.65;
}

.register-mode .catalog-results-search {
  border: 1px solid rgba(245, 166, 35, 0.26);
  border-radius: 15px;
  padding: 18px;
  background: rgba(4, 9, 17, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.register-mode .catalog-results-search-title h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 18px;
}

.register-mode .catalog-results-search .catalog-filter-bar {
  max-width: none;
  margin: 17px 0 0;
  padding: 17px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.register-mode .catalog-results-search .catalog-filter-grid,
.register-mode .catalog-results-search .catalog-filter-bar.is-expanded .catalog-filter-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.register-mode .catalog-results-search .catalog-filter:first-child {
  grid-column: span 2;
}

.register-mode .catalog-results-search .catalog-filter label {
  margin-bottom: 7px;
  color: #8493aa;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.register-mode .catalog-results-search .catalog-filter input,
.register-mode .catalog-results-search .catalog-filter select {
  min-height: 44px;
  border-color: rgba(132, 147, 170, 0.25);
  background: #0a1220;
}

.register-mode .catalog-results-search .catalog-filter input:focus,
.register-mode .catalog-results-search .catalog-filter select:focus {
  border-color: rgba(245, 166, 35, 0.78);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.09);
}

.register-mode .catalog-results-search [data-toggle-advanced-filters] {
  display: none !important;
}

.register-mode .catalog-results-search .catalog-filter-actions {
  margin-top: 17px !important;
  padding-top: 15px !important;
}

.register-mode .catalog-results-search .catalog-filter-note {
  max-width: 620px;
}

.register-mode .catalog-results-search .catalog-filter-actions .btn-primary {
  min-width: 180px;
}

.register-mode .catalog-results-access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.register-mode .catalog-results-access > div {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.025);
}

.register-mode .catalog-results-access strong {
  color: #dbe5f4;
  font-size: 11px;
}

.register-mode .catalog-results-access span {
  color: #7f8fa8;
  font-size: 10px;
  line-height: 1.5;
}

.register-mode .catalog-results-shell {
  border: 1px solid rgba(132, 147, 170, 0.17);
  border-radius: 16px;
  padding: clamp(16px, 2.4vw, 26px);
  background: linear-gradient(160deg, rgba(15, 24, 40, 0.92), rgba(7, 13, 23, 0.92));
}

.register-mode .catalog-results-toolbar {
  align-items: flex-end;
  margin-bottom: 18px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.register-mode .catalog-results-toolbar h2 {
  margin: 4px 0;
  color: #fff;
  font-size: 21px;
}

.register-mode .catalog-results-toolbar p {
  margin: 0;
  color: #8190a6;
  font-size: 12px;
}

.register-mode .catalog-results-sort {
  display: grid;
  gap: 6px;
  min-width: 190px;
}

.register-mode .catalog-results-sort span {
  color: #8290a5;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.register-mode .catalog-results-sort select {
  min-height: 40px;
  border: 1px solid rgba(132, 147, 170, 0.25);
  border-radius: 8px;
  padding: 8px 34px 8px 11px;
  background: #0a1220;
  color: #e7edf6;
}

.register-mode .catalog-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.register-mode .catalog-results-grid .result-section-break {
  grid-column: 1 / -1;
  margin: 12px 0 1px;
}

.register-mode .catalog-results-grid .partner-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  border-style: solid;
  border-color: rgba(132, 147, 170, 0.18);
  border-radius: 13px;
  padding: 16px;
  background: rgba(9, 16, 28, 0.84);
}

.register-mode .catalog-results-grid .partner-card:hover {
  border-color: rgba(245, 166, 35, 0.48);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.register-mode .catalog-results-grid .partner-title {
  min-width: 0;
}

.register-mode .catalog-results-grid .partner-title strong {
  overflow: hidden;
  color: #f3f6fb;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.register-mode .catalog-results-grid .partner-title .meta {
  overflow: hidden;
  color: #8796ac;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.register-mode .catalog-results-grid .partner-card > p.meta {
  display: -webkit-box;
  min-height: 39px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #9aa8bb !important;
  line-height: 1.55;
}

.register-mode .catalog-results-grid .partner-score-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 13px 0;
}

.register-mode .catalog-results-grid .partner-score {
  min-width: 0;
  padding: 9px 8px;
  background: rgba(17, 27, 44, 0.84);
}

.register-mode .catalog-results-grid .partner-score span {
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.register-mode .catalog-results-grid .partner-score strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.register-mode .catalog-results-grid .locked-line {
  margin-top: auto;
}

.register-mode .catalog-results-grid .partner-actions {
  margin-top: 13px !important;
}

.register-mode .catalog-results-grid .partner-actions .mini-action:first-child {
  border-color: rgba(245, 166, 35, 0.5);
  color: var(--gold);
}

.register-mode .catalog-results-pagination {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  text-align: center;
}

.register-mode .catalog-results-progress {
  width: min(440px, 100%);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(132, 147, 170, 0.17);
}

.register-mode .catalog-results-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #ffc45b);
  transition: width 0.3s ease;
}

.register-mode .catalog-results-pagination p {
  margin: 0;
  color: #8391a6;
  font-size: 11px;
}

.register-mode .catalog-load-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid rgba(245, 166, 35, 0.62);
  border-radius: 10px;
  padding: 9px 18px;
  background: rgba(245, 166, 35, 0.09);
  color: var(--gold);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.register-mode .catalog-load-more:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.16);
}

.register-mode .catalog-load-more > span {
  font-size: 20px;
  line-height: 1;
}

.register-mode .catalog-load-more small {
  border-left: 1px solid rgba(245, 166, 35, 0.28);
  padding-left: 9px;
  color: #d6a953;
  font-size: 9px;
}

.register-mode .catalog-results-complete {
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(74, 222, 128, 0.06);
  color: #75d59d;
  font-size: 10px;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .register-mode .catalog-results-search .catalog-filter-grid,
  .register-mode .catalog-results-search .catalog-filter-bar.is-expanded .catalog-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .register-mode .catalog-results-search .catalog-filter:first-child {
    grid-column: span 1;
  }

  .register-mode .catalog-results-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .register-mode .catalog-results-header,
  .register-mode .catalog-results-shell {
    border-radius: 12px;
    padding: 14px;
  }

  .register-mode .catalog-results-nav,
  .register-mode .catalog-results-search-title,
  .register-mode .catalog-results-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .register-mode .catalog-results-heading {
    margin: 24px 0 18px;
    text-align: left;
  }

  .register-mode .catalog-results-heading h1 {
    font-size: 29px;
  }

  .register-mode .catalog-results-search {
    padding: 13px;
  }

  .register-mode .catalog-results-search .catalog-filter-grid,
  .register-mode .catalog-results-search .catalog-filter-bar.is-expanded .catalog-filter-grid,
  .register-mode .catalog-results-access {
    grid-template-columns: 1fr;
  }

  .register-mode .catalog-results-search .catalog-filter-actions > div,
  .register-mode .catalog-results-search .catalog-filter-actions .btn,
  .register-mode .catalog-results-search .catalog-filter-actions .mini-action,
  .register-mode .catalog-results-sort {
    width: 100% !important;
  }

  .register-mode .catalog-results-search .catalog-filter-actions > div {
    display: grid !important;
  }

  .register-mode .catalog-results-grid .partner-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .register-mode .catalog-load-more {
    width: 100%;
    justify-content: center;
  }
}
/* GuildBau catalog compact hero and ambient background — 2026-07-18 */
body.register-mode:has(.catalog-home) {
  position: relative;
  background:
    radial-gradient(ellipse at 8% 4%, rgba(45, 102, 157, 0.25), transparent 34%),
    radial-gradient(ellipse at 92% 12%, rgba(245, 166, 35, 0.13), transparent 31%),
    radial-gradient(ellipse at 50% 92%, rgba(64, 129, 113, 0.12), transparent 40%),
    linear-gradient(135deg, #07101c 0%, #0b1526 46%, #11192a 100%);
  background-attachment: fixed;
}

body.register-mode:has(.catalog-home)::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: -18%;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 34%, rgba(73, 134, 197, 0.11), transparent 24%),
    radial-gradient(circle at 76% 28%, rgba(245, 166, 35, 0.08), transparent 22%),
    radial-gradient(circle at 62% 78%, rgba(75, 176, 139, 0.07), transparent 26%);
  filter: blur(38px);
  animation: catalogAmbientShift 18s ease-in-out infinite alternate;
}

@keyframes catalogAmbientShift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.035); }
}

body.register-mode:has(.catalog-home) .app {
  position: relative;
  z-index: 1;
  align-items: flex-start;
  padding: 14px 12px 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 32%);
}

.register-mode .shell:has(.catalog-home) {
  padding: 18px 24px 30px !important;
  border-color: rgba(245, 166, 35, 0.29);
  background:
    linear-gradient(145deg, rgba(19, 30, 49, 0.94), rgba(10, 18, 31, 0.96) 52%, rgba(16, 27, 43, 0.94));
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(40, 92, 142, 0.07),
    inset 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.register-mode .shell:has(.catalog-home) > .top-row {
  min-height: 50px;
  margin-bottom: 12px !important;
  gap: 13px !important;
}

.register-mode .shell:has(.catalog-home) > .top-row .logo {
  width: clamp(158px, 16vw, 194px);
  flex: 0 0 auto;
}

.register-mode .shell:has(.catalog-home) #top-bar-actions-container {
  gap: 5px !important;
}

.register-mode .shell:has(.catalog-home) .catalog-header-link {
  margin-right: 3px;
  padding: 5px 2px;
  font-size: 11px;
}

.register-mode .shell:has(.catalog-home) #top-bar-actions-container > .mini-action {
  min-height: 32px;
  margin-right: 4px !important;
  padding: 5px 9px !important;
  border-radius: 7px !important;
  font-size: 10.5px !important;
}

.register-mode .shell:has(.catalog-home) .user-bar-indicator {
  max-width: 290px;
  min-height: 32px;
  margin-right: 4px !important;
  padding: 5px 9px !important;
  gap: 6px !important;
  overflow: hidden;
  white-space: nowrap;
}

.register-mode .shell:has(.catalog-home) .user-bar-indicator span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
}

.register-mode .shell:has(.catalog-home) .user-bar-indicator span:last-child {
  font-size: 9.5px !important;
}

.register-mode .shell:has(.catalog-home) .public-language-control select {
  min-width: 84px;
  min-height: 34px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 10.5px;
}

.register-mode .shell:has(.catalog-home) .public-language-control::before {
  width: 18px;
  height: 12px;
}

.register-mode .catalog-home {
  gap: 58px;
  padding-top: 4px;
}

.register-mode .catalog-hero {
  padding: clamp(23px, 3vw, 34px) clamp(18px, 4vw, 48px) 22px;
  border-color: rgba(151, 177, 208, 0.19);
  background:
    radial-gradient(ellipse at 22% 0%, rgba(56, 119, 178, 0.16), transparent 38%),
    radial-gradient(ellipse at 82% 8%, rgba(245, 166, 35, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(17, 29, 48, 0.97), rgba(8, 16, 29, 0.98) 58%, rgba(15, 27, 43, 0.97));
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.23),
    inset 0 1px rgba(255, 255, 255, 0.03);
}

.register-mode .catalog-hero::before {
  background:
    linear-gradient(110deg, transparent 4%, rgba(75, 142, 202, 0.025) 34%, rgba(245, 166, 35, 0.035) 68%, transparent 96%);
}

.register-mode .catalog-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(67, 151, 129, 0.065), transparent 66%);
  filter: blur(8px);
}

.register-mode .catalog-hero-copy {
  max-width: 860px;
  margin-bottom: 17px;
}

.register-mode .catalog-hero .catalog-eyebrow {
  margin-bottom: 6px;
  font-size: 9.5px;
  letter-spacing: 0.15em;
}

.register-mode .catalog-hero h1 {
  font-size: clamp(29px, 3.5vw, 43px);
  line-height: 1.06;
}

/* LTRK member showcase — compact first view with an accessible full directory */
.register-mode .association-member-more {
  margin-top: 22px;
  border: 1px solid rgba(246, 173, 32, .34);
  border-radius: 14px;
  background: rgba(10, 21, 36, .72);
  overflow: hidden;
}

.register-mode .association-member-more > summary {
  min-height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #f6ad20;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.register-mode .association-member-more > summary::-webkit-details-marker { display: none; }
.register-mode .association-member-more > summary span { transition: transform .2s ease; }
.register-mode .association-member-more[open] > summary span { transform: rotate(180deg); }
.register-mode .association-member-more[open] > summary { border-bottom: 1px solid rgba(124, 149, 178, .2); }
.register-mode .association-member-more > .association-profile-grid { margin: 22px; }

@media (max-width: 620px) {
  .register-mode .association-member-more > summary {
    min-height: 54px;
    padding: 0 16px;
    font-size: 13px;
  }
  .register-mode .association-member-more > .association-profile-grid { margin: 14px; }
}

.register-mode .catalog-hero h1.catalog-hero-title {
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.register-mode .catalog-hero-scope {
  margin-top: 8px;
  color: #f2f5fa;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 760;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.register-mode .catalog-hero h2 {
  margin-top: 8px;
  font-size: clamp(16px, 1.65vw, 20px);
}

.register-mode .catalog-hero-copy > p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.48;
}

.register-mode .catalog-type-switch {
  width: min(100%, 480px);
  margin-bottom: 12px;
  padding: 3px;
  border-radius: 10px;
  background: rgba(3, 9, 17, 0.68);
}

.register-mode .catalog-type-switch button {
  min-height: 35px;
  border-radius: 7px;
  font-size: 11.5px;
}

.register-mode .catalog-type-switch button.is-active {
  box-shadow: 0 6px 17px rgba(245, 166, 35, 0.16);
}

.register-mode .catalog-hero .catalog-filter-bar {
  padding: 13px 14px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(4, 10, 19, 0.8), rgba(8, 16, 28, 0.75));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.register-mode .catalog-hero .catalog-filter-grid {
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 10px;
}

.register-mode .catalog-hero .catalog-filter label {
  margin-bottom: 5px;
  font-size: 8.5px;
}

.register-mode .catalog-hero .catalog-filter input,
.register-mode .catalog-hero .catalog-filter select {
  min-height: 40px;
  padding-top: 7px;
  padding-bottom: 7px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(13, 24, 42, 0.98), rgba(8, 17, 31, 0.98));
  font-size: 12px;
}

.register-mode .catalog-hero .catalog-scope-search input {
  border-color: rgba(245, 166, 35, 0.27);
}

.register-mode .catalog-hero .catalog-filter-actions {
  margin-top: 10px !important;
  padding-top: 10px !important;
}

.register-mode .catalog-hero .catalog-filter-note {
  font-size: 10px;
}

.register-mode .catalog-hero .catalog-filter-actions .mini-action {
  min-height: 34px;
  padding: 5px 9px;
  font-size: 10px;
}

.register-mode .catalog-hero .catalog-filter-actions .btn-primary {
  min-width: 150px;
  min-height: 36px !important;
  font-size: 11.5px;
}

.register-mode .catalog-quick-filters {
  display: grid;
  grid-template-columns: auto repeat(6, minmax(0, 1fr));
  width: min(100%, 1120px);
  gap: 8px;
  margin-top: 13px;
}

.register-mode .catalog-quick-filters > span {
  display: flex;
  align-items: center;
  margin: 0 2px 0 0;
  color: #9daabd;
  font-size: 9.5px;
  font-weight: 850;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.register-mode .catalog-quick-filters button {
  position: relative;
  justify-content: center;
  min-height: 42px;
  padding: 8px 10px;
  overflow: hidden;
  border-radius: 10px;
  color: #e8eef6;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.register-mode .catalog-quick-filters button:nth-of-type(1) {
  border-color: rgba(76, 201, 145, 0.35);
  background: linear-gradient(145deg, rgba(61, 176, 126, 0.14), rgba(26, 80, 66, 0.08));
  color: #8ce3b9;
}

.register-mode .catalog-quick-filters button:nth-of-type(2) {
  border-color: rgba(91, 156, 225, 0.35);
  background: linear-gradient(145deg, rgba(70, 133, 201, 0.14), rgba(33, 73, 113, 0.08));
  color: #9ccafa;
}

.register-mode .catalog-quick-filters button:nth-of-type(3) {
  border-color: rgba(156, 119, 222, 0.35);
  background: linear-gradient(145deg, rgba(137, 97, 208, 0.14), rgba(68, 47, 105, 0.08));
  color: #c4a8f1;
}

.register-mode .catalog-quick-filters button:nth-of-type(4) {
  border-color: rgba(68, 190, 193, 0.33);
  background: linear-gradient(145deg, rgba(54, 165, 170, 0.14), rgba(25, 80, 84, 0.08));
  color: #8edadd;
}

.register-mode .catalog-quick-filters button:nth-of-type(5) {
  border-color: rgba(245, 166, 35, 0.4);
  background: linear-gradient(145deg, rgba(245, 166, 35, 0.16), rgba(126, 82, 17, 0.08));
  color: #ffc35f;
}

.register-mode .catalog-quick-filters button:hover {
  z-index: 1;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  box-shadow:
    0 9px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px rgba(255, 255, 255, 0.07);
}

.register-mode .catalog-quick-filters button svg {
  width: 17px;
  height: 17px;
  padding: 2px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
}

@media (max-width: 1120px) {
  .register-mode .shell:has(.catalog-home) > .top-row {
    align-items: flex-start;
    flex-wrap: wrap !important;
  }

  .register-mode .shell:has(.catalog-home) #top-bar-actions-container {
    justify-content: flex-start;
    flex-wrap: wrap !important;
  }

  .register-mode .catalog-quick-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .register-mode .catalog-quick-filters > span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body.register-mode:has(.catalog-home) .app {
    padding: 8px 6px 28px;
  }

  .register-mode .shell:has(.catalog-home) {
    padding: 12px 11px 22px !important;
  }

  .register-mode .shell:has(.catalog-home) > .top-row {
    min-height: 42px;
    margin-bottom: 8px !important;
  }

  .register-mode .shell:has(.catalog-home) > .top-row .logo {
    width: 154px;
  }

  .register-mode .catalog-home {
    gap: 44px;
  }

  .register-mode .catalog-hero {
    padding: 24px 13px 16px;
  }

  .register-mode .catalog-hero-copy {
    margin-bottom: 14px;
    text-align: left;
  }

  .register-mode .catalog-hero h1 {
    font-size: 29px;
  }

  .register-mode .catalog-hero-copy > p {
    font-size: 12px;
  }

  .register-mode .catalog-hero .catalog-filter-grid,
  .register-mode .catalog-quick-filters {
    grid-template-columns: 1fr;
  }

  .register-mode .catalog-quick-filters > span {
    grid-column: auto;
  }

  .register-mode .catalog-quick-filters button {
    justify-content: flex-start;
    min-height: 40px;
  }

  .register-mode .catalog-hero .catalog-filter-actions {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.register-mode:has(.catalog-home)::before {
    animation: none;
  }

  .register-mode .catalog-quick-filters button {
    transition: none;
  }
}
/* Sixth quick action: high TrustScore */
.register-mode .catalog-quick-filters button:nth-of-type(6) {
  border-color: rgba(174, 220, 92, 0.36);
  background: linear-gradient(145deg, rgba(143, 194, 67, 0.15), rgba(68, 96, 31, 0.08));
  color: #c7ef87;
}

/* Document Center three-perspective pilot, 2026-07-23 */
body.register-mode .gb-demo-perspective-bar {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(540px, 1.6fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  margin: 14px 0;
  padding: 13px 15px;
  border: 1px solid rgba(245,166,35,.25);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(21,32,52,.98), rgba(10,19,33,.98));
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
body.register-mode .gb-demo-perspective-intro { min-width: 0; }
body.register-mode .gb-demo-perspective-intro span,
body.register-mode .gb-proof-section-kicker,
body.register-mode .gb-workspace-eyebrow,
body.register-mode .gb-workspace-section-head > div > span,
body.register-mode .gb-workspace-audit > span {
  display: block;
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
body.register-mode .gb-demo-perspective-intro strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 14px;
}
body.register-mode .gb-demo-perspective-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 7px;
}
body.register-mode .gb-demo-perspective-tabs button {
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid #2b3d59;
  border-radius: 8px;
  background: rgba(255,255,255,.025);
  color: #b9c5d4;
  font: inherit;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}
body.register-mode .gb-demo-perspective-tabs button:hover {
  border-color: rgba(245,166,35,.55);
  color: #fff;
}
body.register-mode .gb-demo-perspective-tabs button.is-active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(245,166,35,.22), rgba(245,166,35,.08));
  color: #ffd88b;
  box-shadow: inset 0 0 0 1px rgba(245,166,35,.12);
}
body.register-mode .gb-demo-perspective-tabs button span,
body.register-mode .gb-demo-perspective-tabs button strong,
body.register-mode .gb-demo-perspective-tabs button small { display: block; }
body.register-mode .gb-demo-perspective-tabs button span { color: #7f91a8; font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
body.register-mode .gb-demo-perspective-tabs button strong { margin-top: 3px; color: inherit; font-size: 11.5px; }
body.register-mode .gb-demo-perspective-tabs button small { margin-top: 2px; color: #7f91a8; font-size: 9.5px; font-weight: 500; }
body.register-mode .gb-demo-perspective-tabs button.is-active span,
body.register-mode .gb-demo-perspective-tabs button.is-active small { color: #d7af69; }
body.register-mode .gb-demo-perspective-mark {
  justify-self: end;
  padding: 7px 10px;
  border: 1px solid rgba(117,167,255,.28);
  border-radius: 999px;
  color: #a9c8ff;
  background: rgba(117,167,255,.08);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}
body.register-mode .gb-proof-demo-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 9px 12px;
  border: 1px solid rgba(117,167,255,.22);
  border-radius: 8px;
  background: rgba(117,167,255,.06);
  color: #b8c9e5;
  font-size: 12px;
}
body.register-mode .gb-proof-demo-note::before {
  content: "DEMO";
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(117,167,255,.15);
  color: #bcd4ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}
body.register-mode .gb-proof-readiness-overview {
  margin: 0 0 12px;
  padding: 18px;
  border: 1px solid rgba(245,166,35,.34);
  border-radius: 12px;
  background: radial-gradient(circle at 93% 16%, rgba(245,166,35,.11), transparent 26%), linear-gradient(145deg, #131e31, #0d1728);
}
body.register-mode .gb-proof-readiness-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
body.register-mode .gb-proof-readiness-head h2 { margin: 3px 0 4px; color: #fff; font-size: 20px; }
body.register-mode .gb-proof-readiness-head p { max-width: 760px; margin: 0; color: #9dacbf; }
body.register-mode .gb-proof-readiness-status {
  min-width: 180px;
  padding: 10px 12px;
  border: 1px solid rgba(76,175,125,.32);
  border-radius: 9px;
  background: rgba(76,175,125,.08);
  text-align: right;
}
body.register-mode .gb-proof-readiness-status span { display: block; color: #8ea2b8; font-size: 10px; text-transform: uppercase; }
body.register-mode .gb-proof-readiness-status strong { display: block; margin-top: 3px; color: #88ddb0; font-size: 14px; }
body.register-mode .gb-proof-readiness-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 9px;
}
body.register-mode .gb-proof-readiness-metrics article {
  padding: 12px;
  border: 1px solid #263650;
  border-radius: 9px;
  background: rgba(255,255,255,.025);
}
body.register-mode .gb-proof-readiness-metrics span { display: block; color: #91a0b3; font-size: 11px; }
body.register-mode .gb-proof-readiness-metrics strong { display: block; margin-top: 4px; color: #fff; font-size: 23px; }
body.register-mode .gb-proof-readiness-metrics small { display: block; margin-top: 2px; color: #7f8da1; font-size: 10.5px; }
body.register-mode .gb-proof-public-single-grid { grid-template-columns: minmax(0,1fr) !important; }
body.register-mode .gb-proof-public-single-grid > .gb-proof-primary-side,
body.register-mode .gb-proof-public-single-grid .gb-proof-insight-grid { display: none !important; }
body.register-mode .gb-proof-public-single-grid .gb-proof-main-column { width: 100%; }
body.register-mode .gb-proof-public-single-grid .gb-proof-filter-grid { grid-template-columns: repeat(5,minmax(0,1fr)); }
body.register-mode .gb-proof-package-access {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 9px;
  margin-top: 6px;
  color: #91a0b3;
  font-size: 10.5px;
}
body.register-mode .gb-proof-package-access b { color: #d8e1ec; font-weight: 700; }
body.register-mode .gb-proof-verification-section { scroll-margin-top: 16px; }
body.register-mode .gb-proof-verification-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
}
body.register-mode .gb-proof-verification-card {
  min-height: 145px;
  padding: 14px;
  border: 1px solid #263650;
  border-radius: 9px;
  background: rgba(255,255,255,.022);
}
body.register-mode .gb-proof-verification-card span { color: var(--gold); font-size: 10px; font-weight: 800; text-transform: uppercase; }
body.register-mode .gb-proof-verification-card h3 { margin: 5px 0 6px; color: #fff; font-size: 14px; }
body.register-mode .gb-proof-verification-card p { margin: 0; color: #98a7ba; font-size: 12.5px; line-height: 1.5; }

body.register-mode .app:has(.gb-document-workspace) {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}
body.register-mode .shell:has(.gb-document-workspace) {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #080f1c !important;
  box-shadow: none !important;
}
body.register-mode .shell:has(.gb-document-workspace) > .top-row { display: none !important; }
body.register-mode .shell:has(.gb-document-workspace) > #screen { width: 100% !important; max-width: none !important; margin: 0 !important; padding: 0 !important; }
body.register-mode .gb-document-workspace {
  width: min(100%, 1480px);
  min-width: 0;
  margin: 0 auto;
  padding: 14px clamp(14px,2.2vw,30px) 30px;
  color: #f7f9fc;
  --workspace-line: #263752;
  --workspace-surface: #121d30;
  --workspace-soft: #17243a;
}
body.register-mode .gb-workspace-global-header {
  display: grid;
  grid-template-columns: 175px 1fr auto;
  gap: 15px;
  align-items: center;
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid #22324d;
  border-radius: 12px;
  background: linear-gradient(135deg, #121d30, #0c1525);
}
body.register-mode .gb-workspace-brand {
  display: flex;
  align-items: center;
  width: 158px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
body.register-mode .gb-workspace-brand img { display: block; max-width: 100%; max-height: 39px; object-fit: contain; }
body.register-mode .gb-workspace-global-context { min-width: 0; }
body.register-mode .gb-workspace-global-context span { display: block; color: #7f8fa5; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
body.register-mode .gb-workspace-global-context strong { display: block; margin-top: 2px; color: #fff; font-size: 14px; }
body.register-mode .gb-workspace-global-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
body.register-mode .gb-workspace-global-actions > button {
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid #30445f;
  border-radius: 7px;
  background: rgba(255,255,255,.025);
  color: #c9d4e1;
  font: inherit;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
}
body.register-mode .gb-workspace-user { display: inline-flex; align-items: center; gap: 7px; color: #dce4ee; font-size: 11.5px; white-space: nowrap; }
body.register-mode .gb-workspace-user i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(76,175,125,.12); }
body.register-mode .gb-workspace-layout {
  display: grid;
  grid-template-columns: 252px minmax(0,1fr);
  gap: 12px;
  align-items: start;
}
body.register-mode .gb-workspace-sidebar {
  position: sticky;
  top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: calc(100vh - 24px);
  overflow: auto;
  padding: 14px;
  border: 1px solid var(--workspace-line);
  border-radius: 12px;
  background: linear-gradient(160deg, #131f33, #0d1728);
}
body.register-mode .gb-workspace-sidebar-brand { padding: 5px 5px 12px; border-bottom: 1px solid #25364f; }
body.register-mode .gb-workspace-sidebar-brand span { display: block; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
body.register-mode .gb-workspace-sidebar-brand strong { display: block; margin-top: 5px; color: #fff; font-size: 15px; }
body.register-mode .gb-workspace-sidebar-brand small { display: block; margin-top: 4px; color: #8696aa; font-size: 11px; line-height: 1.35; }
body.register-mode .gb-workspace-sidebar nav { display: grid; gap: 4px; }
body.register-mode .gb-workspace-sidebar nav button {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 7px;
  align-items: center;
  min-height: 38px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #b8c4d3;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
body.register-mode .gb-workspace-sidebar nav button:hover,
body.register-mode .gb-workspace-sidebar nav button.is-active { border-color: rgba(245,166,35,.3); background: rgba(245,166,35,.08); color: #fff; }
body.register-mode .gb-workspace-sidebar nav button span { min-width: 0; font-size: 11.5px; font-weight: 700; }
body.register-mode .gb-workspace-sidebar nav button small { color: #75879c; font-size: 9.5px; white-space: nowrap; }
body.register-mode .gb-workspace-sidebar-note { margin-top: auto; padding: 11px; border: 1px solid rgba(117,167,255,.2); border-radius: 8px; background: rgba(117,167,255,.06); }
body.register-mode .gb-workspace-sidebar-note span,
body.register-mode .gb-workspace-sidebar-note small { display: block; color: #8497b2; font-size: 9.5px; }
body.register-mode .gb-workspace-sidebar-note strong { display: block; margin: 3px 0; color: #bdd3f8; font-size: 11.5px; }
body.register-mode .gb-workspace-main { display: grid; gap: 12px; min-width: 0; }
body.register-mode .gb-workspace-main > * { scroll-margin-top: 12px; }
body.register-mode .gb-workspace-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 20px;
  border: 1px solid rgba(245,166,35,.27);
  border-radius: 12px;
  background: radial-gradient(circle at 90% 12%, rgba(245,166,35,.1), transparent 25%), linear-gradient(145deg, #152238, #0d1728);
}
body.register-mode .gb-workspace-hero h1 { margin: 5px 0 6px; max-width: 820px; color: #fff; font-size: clamp(20px,2.1vw,29px); line-height: 1.16; }
body.register-mode .gb-workspace-hero p { max-width: 760px; margin: 0; color: #9aaabd; font-size: 13px; line-height: 1.5; }
body.register-mode .gb-workspace-hero-actions,
body.register-mode .gb-workspace-head-actions { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
body.register-mode .gb-workspace-hero-actions { justify-content: flex-end; min-width: 260px; }
body.register-mode .gb-workspace-priority-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 9px;
}
body.register-mode .gb-workspace-priority-grid article {
  display: flex;
  flex-direction: column;
  min-height: 162px;
  padding: 13px;
  border: 1px solid var(--workspace-line);
  border-top: 2px solid #708198;
  border-radius: 10px;
  background: linear-gradient(145deg, #132037, #0e192a);
}
body.register-mode .gb-workspace-priority-grid article.is-red { border-top-color: var(--red); }
body.register-mode .gb-workspace-priority-grid article.is-gold { border-top-color: var(--gold); }
body.register-mode .gb-workspace-priority-grid article.is-blue { border-top-color: var(--blue); }
body.register-mode .gb-workspace-priority-grid article.is-green { border-top-color: var(--green); }
body.register-mode .gb-workspace-priority-grid span { color: #8fa0b4; font-size: 10.5px; font-weight: 700; text-transform: uppercase; }
body.register-mode .gb-workspace-priority-grid strong { margin-top: 5px; color: #fff; font-size: 25px; }
body.register-mode .gb-workspace-priority-grid p { margin: 3px 0 10px; color: #91a1b4; font-size: 11.5px; line-height: 1.4; }
body.register-mode .gb-workspace-priority-grid button,
body.register-mode .gb-workspace-section button,
body.register-mode .gb-workspace-table button,
body.register-mode .gb-workspace-audit button {
  min-height: 31px;
  padding: 5px 9px;
  border: 1px solid rgba(245,166,35,.35);
  border-radius: 6px;
  background: rgba(245,166,35,.06);
  color: #f7bd5e;
  font: inherit;
  font-size: 10.5px;
  font-weight: 750;
  cursor: pointer;
}
body.register-mode .gb-workspace-priority-grid button { width: 100%; margin-top: auto; }
body.register-mode .gb-workspace-section {
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--workspace-line);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(19,31,51,.98), rgba(12,22,38,.98));
}
body.register-mode .gb-workspace-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
body.register-mode .gb-workspace-section-head h2 { margin: 4px 0 2px; color: #fff; font-size: 16px; }
body.register-mode .gb-workspace-section-head p { max-width: 760px; margin: 0; color: #91a1b4; font-size: 12px; }
body.register-mode .gb-workspace-two-column { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(300px,.9fr); gap: 12px; align-items: start; }
body.register-mode .gb-workspace-table-wrap,
body.register-mode .gb-comparison-wrap { width: 100%; overflow-x: auto; border: 1px solid #25364f; border-radius: 9px; }
body.register-mode .gb-workspace-table,
body.register-mode .gb-comparison-table { width: 100%; border-collapse: collapse; min-width: 760px; }
body.register-mode .gb-workspace-table th,
body.register-mode .gb-comparison-table th { padding: 9px 11px; border-bottom: 1px solid #2a3c57; background: rgba(255,255,255,.025); color: #8192a8; font-size: 9.5px; text-align: left; text-transform: uppercase; letter-spacing: .06em; }
body.register-mode .gb-workspace-table td,
body.register-mode .gb-comparison-table td { padding: 10px 11px; border-bottom: 1px solid rgba(38,55,82,.7); color: #cbd5e1; font-size: 11.5px; vertical-align: middle; }
body.register-mode .gb-workspace-table tr:last-child td,
body.register-mode .gb-comparison-table tr:last-child td { border-bottom: 0; }
body.register-mode .gb-workspace-table td strong { display: block; color: #f2f5f9; font-size: 11.5px; }
body.register-mode .gb-workspace-table td small { display: block; margin-top: 2px; color: #7f8fa3; font-size: 9.5px; }
body.register-mode .gb-state-pill { display: inline-flex; align-items: center; min-height: 23px; padding: 3px 7px; border: 1px solid #42536a; border-radius: 999px; color: #b7c4d4; background: rgba(255,255,255,.035); font-size: 9.5px; font-weight: 800; white-space: nowrap; }
body.register-mode .gb-state-pill.is-green { border-color: rgba(76,175,125,.38); color: #86d9ab; background: rgba(76,175,125,.09); }
body.register-mode .gb-state-pill.is-gold { border-color: rgba(245,166,35,.38); color: #ffc764; background: rgba(245,166,35,.09); }
body.register-mode .gb-state-pill.is-blue { border-color: rgba(117,167,255,.38); color: #a9c8ff; background: rgba(117,167,255,.09); }
body.register-mode .gb-state-pill.is-red { border-color: rgba(232,93,93,.38); color: #ff9a9a; background: rgba(232,93,93,.09); }
body.register-mode .gb-workspace-card-list article { display: grid; grid-template-columns: 36px minmax(0,1fr) auto; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(38,55,82,.7); }
body.register-mode .gb-workspace-card-list article:last-child { border-bottom: 0; }
body.register-mode .gb-workspace-card-list article strong { color: #f3f6fa; font-size: 12px; }
body.register-mode .gb-workspace-card-list article p { margin: 3px 0 0; color: #8596aa; font-size: 10.5px; }
body.register-mode .gb-avatar-mark { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(117,167,255,.32); border-radius: 9px; background: rgba(117,167,255,.08); color: #b7d0ff; font-size: 10px; font-weight: 900; }
body.register-mode .gb-avatar-mark.is-green { border-color: rgba(76,175,125,.34); background: rgba(76,175,125,.08); color: #8ee0b3; }
body.register-mode .gb-avatar-mark.is-gold { border-color: rgba(245,166,35,.34); background: rgba(245,166,35,.08); color: #ffd17a; }
body.register-mode .gb-risk-list,
body.register-mode .gb-task-list { display: grid; gap: 7px; }
body.register-mode .gb-risk-list article,
body.register-mode .gb-task-list article { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 3px 10px; padding: 10px; border: 1px solid #263752; border-left: 2px solid #6f8198; border-radius: 8px; background: rgba(255,255,255,.018); }
body.register-mode .gb-risk-list article.is-red,
body.register-mode .gb-task-list article.is-red { border-left-color: var(--red); }
body.register-mode .gb-risk-list article.is-gold,
body.register-mode .gb-task-list article.is-gold { border-left-color: var(--gold); }
body.register-mode .gb-risk-list strong,
body.register-mode .gb-task-list strong { color: #f0f4f8; font-size: 11.5px; }
body.register-mode .gb-risk-list p,
body.register-mode .gb-task-list span { grid-column: 1; margin: 1px 0 0; color: #8798ac; font-size: 10.5px; }
body.register-mode .gb-risk-list button,
body.register-mode .gb-task-list button { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
body.register-mode .gb-comparison-summary {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
  margin-top: 9px;
}
body.register-mode .gb-comparison-summary article {
  padding: 11px;
  border: 1px solid #263752;
  border-radius: 8px;
  background: rgba(255,255,255,.018);
}
body.register-mode .gb-comparison-summary span { color: #8496ab; font-size: 9.5px; font-weight: 800; text-transform: uppercase; }
body.register-mode .gb-comparison-summary strong { display: block; margin-top: 4px; color: #f2f5f9; font-size: 12px; }
body.register-mode .gb-comparison-summary p { margin: 4px 0 8px; color: #899aae; font-size: 10.5px; }
body.register-mode .gb-decision-pack {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(180px,.45fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(76,175,125,.34);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(76,175,125,.09), rgba(13,23,40,.98));
}
body.register-mode .gb-decision-pack h2 { margin: 5px 0; color: #fff; font-size: 17px; }
body.register-mode .gb-decision-pack p { margin: 0; color: #9aabba; font-size: 12px; }
body.register-mode .gb-decision-pack-metrics { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; }
body.register-mode .gb-decision-pack-metrics span { padding: 6px 8px; border: 1px solid rgba(76,175,125,.25); border-radius: 6px; color: #9eddbb; font-size: 10.5px; }
body.register-mode .gb-decision-status-flow { display: grid; gap: 6px; }
body.register-mode .gb-decision-status-flow span { position: relative; padding: 7px 9px 7px 23px; border: 1px solid #2b3c55; border-radius: 7px; color: #899aae; background: rgba(255,255,255,.018); font-size: 10px; white-space: nowrap; }
body.register-mode .gb-decision-status-flow span::before { content: ""; position: absolute; left: 9px; top: 50%; width: 6px; height: 6px; margin-top: -3px; border-radius: 50%; background: #65778e; }
body.register-mode .gb-decision-status-flow span.is-done { border-color: rgba(76,175,125,.28); color: #90d8b1; }
body.register-mode .gb-decision-status-flow span.is-done::before { background: var(--green); }
body.register-mode .gb-decision-status-flow span.is-current { border-color: rgba(245,166,35,.38); color: #ffd078; background: rgba(245,166,35,.07); }
body.register-mode .gb-decision-status-flow span.is-current::before { background: var(--gold); box-shadow: 0 0 0 3px rgba(245,166,35,.12); }
body.register-mode .gb-empty-state { padding: 18px; border: 1px dashed #34465f; border-radius: 9px; color: #93a3b6; text-align: center; }
body.register-mode .gb-workspace-audit { display: flex; align-items: center; gap: 10px 16px; padding: 13px 15px; border: 1px solid #25364f; border-radius: 10px; background: rgba(255,255,255,.018); }
body.register-mode .gb-workspace-audit strong { flex: 1; color: #d9e1eb; font-size: 11.5px; }
body.register-mode .gb-workspace-audit small { color: #7f90a4; font-size: 10px; white-space: nowrap; }
body.register-mode .gb-profile-readiness { padding: 12px; border: 1px solid #263752; border-radius: 9px; background: rgba(255,255,255,.018); }
body.register-mode .gb-profile-readiness > div:first-child { display: flex; align-items: center; justify-content: space-between; color: #91a2b5; font-size: 11px; }
body.register-mode .gb-profile-readiness > div:first-child strong { color: #fff; font-size: 19px; }
body.register-mode .gb-progress-track { height: 7px; margin: 8px 0 11px; overflow: hidden; border-radius: 99px; background: #0c1524; }
body.register-mode .gb-progress-track i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--gold),#ffd170); }
body.register-mode .gb-profile-readiness ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 6px 14px; margin: 0; padding: 0; list-style: none; }
body.register-mode .gb-profile-readiness li { color: #a4b1c1; font-size: 10.5px; }
body.register-mode .gb-profile-readiness li::before { content: "!"; display: inline-grid; place-items: center; width: 15px; height: 15px; margin-right: 6px; border-radius: 50%; background: rgba(245,166,35,.1); color: var(--gold); font-size: 9px; font-weight: 900; }
body.register-mode .gb-profile-readiness li.is-done::before { content: "\2713"; background: rgba(76,175,125,.1); color: var(--green); }
body.register-mode .gb-library-metrics { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; margin-bottom: 10px; }
body.register-mode .gb-library-metrics article { padding: 10px 12px; border: 1px solid #263752; border-radius: 8px; background: rgba(255,255,255,.018); }
body.register-mode .gb-library-metrics span { display: block; color: #8596aa; font-size: 10px; }
body.register-mode .gb-library-metrics strong { display: block; margin-top: 2px; color: #fff; font-size: 19px; }
body.register-mode .gb-workspace-package-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; }
body.register-mode .gb-workspace-package-grid article,
body.register-mode .gb-invite-grid article { display: flex; flex-direction: column; min-height: 150px; padding: 13px; border: 1px solid #263752; border-radius: 9px; background: rgba(255,255,255,.02); }
body.register-mode .gb-workspace-package-grid article span { color: #fff; font-size: 12px; font-weight: 800; }
body.register-mode .gb-workspace-package-grid article strong { margin-top: 7px; color: var(--gold); font-size: 17px; }
body.register-mode .gb-workspace-package-grid article p { margin: 5px 0 11px; color: #8798ac; font-size: 10.5px; line-height: 1.4; }
body.register-mode .gb-workspace-package-grid article button { width: 100%; margin-top: auto; }
body.register-mode .gb-access-request-grid { display: grid; gap: 8px; }
body.register-mode .gb-access-request-grid article { display: grid; grid-template-columns: minmax(260px,1fr) minmax(170px,.55fr) auto; gap: 12px; align-items: center; padding: 12px; border: 1px solid #263752; border-left: 2px solid #6f8198; border-radius: 9px; background: rgba(255,255,255,.018); }
body.register-mode .gb-access-request-grid article.is-priority { border-left-color: var(--gold); }
body.register-mode .gb-access-request-grid article > div > span { color: #8fa0b4; font-size: 10px; }
body.register-mode .gb-access-request-grid article > div > strong { display: block; margin-top: 3px; color: #f2f5f9; font-size: 12px; }
body.register-mode .gb-access-request-grid article > div > p { margin: 3px 0 0; color: #8293a7; font-size: 10.5px; }
body.register-mode .gb-request-risk { padding: 8px 10px; border: 1px solid rgba(76,175,125,.25); border-radius: 7px; background: rgba(76,175,125,.06); }
body.register-mode .gb-request-risk span,
body.register-mode .gb-request-risk small { display: block; color: #9eddbc !important; }
body.register-mode .gb-request-risk small { margin-top: 2px; color: #7f998c !important; font-size: 9.5px; }
body.register-mode .gb-invite-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
body.register-mode .gb-invite-grid h3 { margin: 10px 0 4px; color: #fff; font-size: 14px; }
body.register-mode .gb-invite-grid p { margin: 0 0 11px; color: #8798ac; font-size: 11px; }
body.register-mode .gb-invite-grid button { width: 100%; margin-top: auto; }
body.register-mode .gb-invite-progress { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 11px; }
body.register-mode .gb-invite-progress span { padding: 6px 8px; border: 1px solid #2a3b55; border-radius: 6px; color: #8fa0b4; font-size: 9.5px; }
body.register-mode .gb-invite-progress strong { color: #fff; }

@media (max-width: 1120px) {
  body.register-mode .gb-demo-perspective-bar { grid-template-columns: 1fr; }
  body.register-mode .gb-demo-perspective-mark { justify-self: start; }
  body.register-mode .gb-workspace-layout { grid-template-columns: 210px minmax(0,1fr); }
  body.register-mode .gb-workspace-priority-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  body.register-mode .gb-workspace-two-column { grid-template-columns: 1fr; }
  body.register-mode .gb-decision-pack { grid-template-columns: 1fr 1fr; }
  body.register-mode .gb-decision-pack .gb-workspace-hero-actions { grid-column: 1 / -1; justify-content: flex-start; }
  body.register-mode .gb-access-request-grid article { grid-template-columns: 1fr 1fr; }
  body.register-mode .gb-access-request-grid .gb-workspace-head-actions { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  body.register-mode .gb-demo-perspective-tabs { grid-template-columns: 1fr; }
  body.register-mode .gb-workspace-global-header { grid-template-columns: 138px 1fr; }
  body.register-mode .gb-workspace-global-actions { grid-column: 1 / -1; justify-content: flex-start; flex-wrap: wrap; }
  body.register-mode .gb-workspace-layout { grid-template-columns: 1fr; }
  body.register-mode .gb-workspace-sidebar { position: static; max-height: none; }
  body.register-mode .gb-workspace-sidebar nav { grid-template-columns: repeat(2,minmax(0,1fr)); }
  body.register-mode .gb-workspace-hero { align-items: flex-start; flex-direction: column; }
  body.register-mode .gb-workspace-hero-actions { justify-content: flex-start; min-width: 0; }
  body.register-mode .gb-workspace-package-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  body.register-mode .gb-proof-public-single-grid .gb-proof-filter-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  body.register-mode .gb-proof-verification-grid { grid-template-columns: 1fr; }
  body.register-mode .gb-proof-readiness-head { align-items: flex-start; flex-direction: column; }
  body.register-mode .gb-proof-readiness-status { width: 100%; text-align: left; }
  body.register-mode .gb-proof-readiness-metrics { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 560px) {
  body.register-mode .gb-demo-perspective-bar,
  body.register-mode .gb-workspace-global-header,
  body.register-mode .gb-workspace-sidebar,
  body.register-mode .gb-workspace-hero,
  body.register-mode .gb-workspace-section,
  body.register-mode .gb-proof-readiness-overview { border-radius: 9px; padding: 12px; }
  body.register-mode .gb-workspace-global-header { grid-template-columns: 1fr; }
  body.register-mode .gb-workspace-global-context { grid-row: 2; }
  body.register-mode .gb-workspace-global-actions { grid-column: 1; }
  body.register-mode .gb-workspace-user { display: none; }
  body.register-mode .gb-workspace-sidebar nav,
  body.register-mode .gb-workspace-priority-grid,
  body.register-mode .gb-workspace-package-grid,
  body.register-mode .gb-invite-grid,
  body.register-mode .gb-library-metrics,
  body.register-mode .gb-proof-readiness-metrics,
  body.register-mode .gb-profile-readiness ul { grid-template-columns: 1fr; }
  body.register-mode .gb-workspace-sidebar nav button { min-height: 42px; }
  body.register-mode .gb-workspace-section-head,
  body.register-mode .gb-decision-pack,
  body.register-mode .gb-workspace-audit { align-items: flex-start; flex-direction: column; display: flex; }
  body.register-mode .gb-comparison-summary { grid-template-columns: 1fr; }
  body.register-mode .gb-workspace-head-actions { width: 100%; }
  body.register-mode .gb-workspace-head-actions button { flex: 1; }
  body.register-mode .gb-access-request-grid article { grid-template-columns: 1fr; }
  body.register-mode .gb-access-request-grid .gb-workspace-head-actions { grid-column: auto; }
  body.register-mode .gb-risk-list article,
  body.register-mode .gb-task-list article { grid-template-columns: 1fr; }
  body.register-mode .gb-risk-list button,
  body.register-mode .gb-task-list button { grid-column: 1; grid-row: auto; width: 100%; }
  body.register-mode .gb-proof-public-single-grid .gb-proof-filter-grid { grid-template-columns: 1fr; }
}


/* Public Document Center visual polish, 2026-07-24 */
body.register-mode .gb-source-profile .gb-demo-perspective-bar {
  grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 28px);
  margin: 12px 0 18px;
  padding: 14px 18px;
  border-color: rgba(127, 153, 188, .22);
  background: linear-gradient(90deg, rgba(245, 166, 35, .035), transparent 28%), linear-gradient(145deg, #121d30, #0c1626);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
}
body.register-mode .gb-source-profile .gb-demo-perspective-intro { display: grid; align-content: center; gap: 3px; }
body.register-mode .gb-source-profile .gb-demo-perspective-intro strong { margin: 0; font-size: 14px; line-height: 1.3; }
body.register-mode .gb-source-profile .gb-demo-perspective-intro small { color: #8393a8; font-size: 10.5px; line-height: 1.35; }
body.register-mode .gb-source-profile .gb-demo-perspective-tabs { gap: 9px; }
body.register-mode .gb-source-profile .gb-demo-perspective-tabs button {
  position: relative;
  min-height: 58px;
  padding: 9px 13px;
  overflow: hidden;
  border-color: #2a3b55;
  border-radius: 9px;
  background: #111c2e;
  text-align: center;
  box-shadow: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
body.register-mode .gb-source-profile .gb-demo-perspective-tabs button::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: transparent; }
body.register-mode .gb-source-profile .gb-demo-perspective-tabs button:hover { border-color: #49617f; background: #152238; transform: translateY(-1px); }
body.register-mode .gb-source-profile .gb-demo-perspective-tabs button.is-active {
  border-color: rgba(245, 166, 35, .72);
  background: linear-gradient(145deg, rgba(245, 166, 35, .13), rgba(20, 31, 49, .98));
  color: #ffd286;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
}
body.register-mode .gb-source-profile .gb-demo-perspective-tabs button.is-active::before { background: var(--gold); }
body.register-mode .gb-source-profile .gb-demo-perspective-tabs button strong { font-size: 11.5px; line-height: 1.25; }
body.register-mode .gb-source-profile .gb-demo-perspective-tabs button small { margin-top: 3px; line-height: 1.25; }

body.register-mode .gb-source-profile .gb-proof-readiness-overview {
  display: grid;
  gap: 14px;
  margin: 0 0 14px;
  padding: clamp(18px, 2vw, 24px);
  border-color: rgba(127, 153, 188, .24);
  background: radial-gradient(circle at 100% 0, rgba(245, 166, 35, .07), transparent 31%), linear-gradient(145deg, #121d30, #0d1727);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .13);
}
body.register-mode .gb-source-profile .gb-proof-readiness-copy { display: grid; gap: 4px; }
body.register-mode .gb-source-profile .gb-proof-readiness-copy h2 { margin: 0; color: #f7f9fc; font-size: clamp(20px, 1.6vw, 25px); line-height: 1.2; letter-spacing: -.02em; }
body.register-mode .gb-source-profile .gb-proof-readiness-copy p { max-width: 780px; margin: 0; color: #91a1b5; font-size: 12.5px; }
body.register-mode .gb-source-profile .gb-proof-readiness-metrics { gap: 10px; }
body.register-mode .gb-source-profile .gb-proof-readiness-metrics > button {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  min-width: 0;
  min-height: 108px;
  padding: 13px 14px;
  overflow: hidden;
  border: 1px solid #2a3b55;
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(23, 36, 57, .96), rgba(15, 26, 43, .96));
  color: #f4f7fb;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
body.register-mode .gb-source-profile .gb-proof-readiness-metrics > button::after { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: #536781; }
body.register-mode .gb-source-profile .gb-proof-readiness-metrics > button:nth-child(2)::after { background: var(--green); }
body.register-mode .gb-source-profile .gb-proof-readiness-metrics > button:nth-child(3)::after { background: var(--blue); }
body.register-mode .gb-source-profile .gb-proof-readiness-metrics > button:nth-child(4)::after { background: var(--gold); }
body.register-mode .gb-source-profile .gb-proof-readiness-metrics > button:hover { border-color: #4b6382; background: linear-gradient(145deg, rgba(29, 44, 69, .98), rgba(17, 30, 49, .98)); transform: translateY(-1px); }
body.register-mode .gb-source-profile .gb-proof-readiness-metrics > button span { color: #9aabc0; font-size: 10.5px; font-weight: 700; line-height: 1.3; }
body.register-mode .gb-source-profile .gb-proof-readiness-metrics > button strong { align-self: center; margin: 6px 0 5px; color: #fff; font-size: 28px; line-height: 1; }
body.register-mode .gb-source-profile .gb-proof-readiness-metrics > button small { color: #71839a; font-size: 9.5px; line-height: 1.35; }
body.register-mode .gb-source-profile .gb-proof-readiness-status {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 20px;
  align-items: center;
  min-width: 0;
  padding: 14px 15px;
  border-color: rgba(76, 175, 125, .27);
  background: linear-gradient(135deg, rgba(76, 175, 125, .07), rgba(13, 31, 39, .34));
  text-align: left;
}
body.register-mode .gb-source-profile .gb-proof-readiness-status span { grid-column: 1; color: #77c89d; font-size: 9.5px; font-weight: 800; letter-spacing: .08em; }
body.register-mode .gb-source-profile .gb-proof-readiness-status p { grid-column: 1; margin: 0; color: #c0cbd7; font-size: 12px; line-height: 1.48; }
body.register-mode .gb-source-profile .gb-proof-readiness-status .btn {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  width: auto !important;
  min-width: 220px;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 11.5px;
}

body.register-mode .gb-source-profile .gb-proof-verification-section {
  padding: 17px;
  border: 1px solid #263752;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(19, 31, 51, .98), rgba(12, 22, 38, .98));
  box-shadow: 0 9px 24px rgba(0, 0, 0, .1);
}
body.register-mode .gb-source-profile .gb-proof-verification-section .gb-proof-section-head { margin-bottom: 13px; }
body.register-mode .gb-source-profile .gb-proof-verification-grid { gap: 11px; }
body.register-mode .gb-source-profile .gb-proof-verification-card {
  display: flex;
  flex-direction: column;
  min-height: 205px;
  padding: 15px;
  border-color: #2a3b55;
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(22, 34, 54, .98), rgba(14, 24, 40, .98));
}
body.register-mode .gb-source-profile .gb-proof-verification-card.is-risk { border-top-color: rgba(232, 93, 93, .72); }
body.register-mode .gb-source-profile .gb-proof-verification-card > span { min-height: 18px; color: #e6ad50; font-size: 9.5px; line-height: 1.3; letter-spacing: .06em; }
body.register-mode .gb-source-profile .gb-proof-verification-card > strong { display: block; min-height: 38px; margin: 5px 0 7px; color: #f3f6fa; font-size: 14px; line-height: 1.35; }
body.register-mode .gb-source-profile .gb-proof-verification-card > p { margin: 0 0 14px; color: #8fa0b4; font-size: 11.5px; line-height: 1.5; }
body.register-mode .gb-source-profile .gb-proof-verification-card > button {
  width: 100%;
  min-height: 36px;
  margin-top: auto;
  padding: 7px 11px;
  border: 1px solid #3b506c;
  border-radius: 7px;
  background: rgba(117, 167, 255, .06);
  color: #b8cff5;
  font: inherit;
  font-size: 10.5px;
  font-weight: 750;
  text-align: center;
  cursor: pointer;
}
body.register-mode .gb-source-profile .gb-proof-verification-card > button:hover { border-color: rgba(117, 167, 255, .58); background: rgba(117, 167, 255, .11); color: #d7e5ff; }
body.register-mode .gb-source-profile .gb-proof-verification-card > button:disabled { opacity: .48; cursor: not-allowed; }

body.register-mode .gb-source-profile .gb-proof-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 410px);
  gap: 24px;
  align-items: center;
  margin-top: 14px;
  padding: 20px 22px;
  border-color: rgba(245, 166, 35, .4);
  background: linear-gradient(90deg, rgba(245, 166, 35, .045), transparent 38%), linear-gradient(135deg, #12233a, #0f1b2d);
}
body.register-mode .gb-source-profile .gb-proof-cta h2 { color: #f5aa2c; font-size: 20px; line-height: 1.25; }
body.register-mode .gb-source-profile .gb-proof-cta p { max-width: 820px; margin: 6px 0 0; color: #91a1b5; font-size: 12px; line-height: 1.5; }
body.register-mode .gb-source-profile .gb-proof-cta > div:last-child { display: grid; grid-template-columns: 1fr; gap: 8px; justify-content: stretch; }
body.register-mode .gb-source-profile .gb-proof-cta .btn { width: 100%; min-height: 40px; margin: 0; border-radius: 8px; font-size: 11.5px; }

@media (max-width: 980px) {
  body.register-mode .gb-source-profile .gb-demo-perspective-bar { grid-template-columns: 1fr; }
  body.register-mode .gb-source-profile .gb-proof-readiness-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.register-mode .gb-source-profile .gb-proof-verification-grid { grid-template-columns: 1fr; }
  body.register-mode .gb-source-profile .gb-proof-verification-card { min-height: 0; }
}
@media (max-width: 720px) {
  body.register-mode .gb-source-profile .gb-demo-perspective-tabs { grid-template-columns: 1fr; }
  body.register-mode .gb-source-profile .gb-proof-readiness-status { grid-template-columns: 1fr; }
  body.register-mode .gb-source-profile .gb-proof-readiness-status .btn { grid-column: 1; grid-row: auto; width: 100% !important; }
  body.register-mode .gb-source-profile .gb-proof-cta { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  body.register-mode .gb-source-profile .gb-proof-readiness-metrics { grid-template-columns: 1fr; }
  body.register-mode .gb-source-profile .gb-proof-readiness-metrics > button { min-height: 96px; }
}


/* Public perspective switcher container alignment, 2026-07-24 */
body.register-mode .gb-source-profile > .gb-demo-perspective-bar {
  width: min(calc(100% - 32px), 1480px);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 520px) {
  body.register-mode .gb-source-profile > .gb-demo-perspective-bar {
    width: calc(100% - 20px);
  }
}

/* GUILDBAU DOCUMENT CENTER PREDEPLOY FIXES 20260724 */
body.register-mode .gb-proof-request-status-strip {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 15px 18px;
  border: 1px solid rgba(50,179,132,.34);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(19,70,61,.42), rgba(15,28,45,.95));
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}
body.register-mode .gb-proof-request-status-strip > div { display: grid; gap: 3px; min-width: 0; }
body.register-mode .gb-proof-request-status-strip > div > span { color: #54c79b; font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
body.register-mode .gb-proof-request-status-strip strong { color: #fff; font-size: 15px; }
body.register-mode .gb-proof-request-status-strip small { color: #9aabc0; font-size: 11.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body.register-mode .gb-proof-request-status-strip > button,
body.register-mode .gb-proof-mobile-filter-toggle {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #f5a623;
  border-radius: 8px;
  background: rgba(245,166,35,.09);
  color: #ffc35a;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
body.register-mode .gb-proof-document-head-actions { display: flex; align-items: center; gap: 8px; }
body.register-mode .gb-proof-mobile-filter-toggle,
body.register-mode .gb-proof-mobile-sticky-action { display: none; }
body.register-mode .gb-proof-main-column { gap: 20px; }
body.register-mode .gb-proof-section { scroll-margin-top: 18px; }
body.register-mode .gb-source-profile .gb-proof-section-head p,
body.register-mode .gb-source-profile .gb-proof-page-intro p,
body.register-mode .gb-source-profile .gb-proof-readiness-copy p,
body.register-mode .gb-source-profile .gb-proof-cta p { font-size: 12.5px; line-height: 1.55; }
body.register-mode .gb-source-profile .gb-proof-package-card p,
body.register-mode .gb-source-profile .gb-proof-package-card small,
body.register-mode .gb-source-profile .gb-proof-readiness-metrics small { font-size: 11.5px; line-height: 1.45; }

body.register-mode .gb-workspace-template-grid,
body.register-mode .gb-workspace-project-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px;
}
body.register-mode .gb-workspace-template-grid article,
body.register-mode .gb-workspace-project-grid article {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 118px;
  padding: 15px;
  border: 1px solid #263a55;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(18,34,55,.94), rgba(13,24,39,.98));
}
body.register-mode .gb-workspace-template-grid article > span:not(.gb-state-pill) { color: #f5a623; font-size: 10px; font-weight: 900; letter-spacing: .1em; }
body.register-mode .gb-workspace-template-grid strong,
body.register-mode .gb-workspace-project-grid strong { color: #f6f8fb; font-size: 13px; line-height: 1.35; }
body.register-mode .gb-workspace-template-grid small,
body.register-mode .gb-workspace-project-grid small,
body.register-mode .gb-workspace-project-grid p { margin: 0; color: #93a2b6; font-size: 11.5px; line-height: 1.45; }
body.register-mode .gb-access-request-grid article.is-resolved { border-color: rgba(50,179,132,.48); background: linear-gradient(145deg, rgba(19,58,53,.6), rgba(13,25,39,.98)); }
body.register-mode .gb-access-request-grid article.is-resolved button:disabled { opacity: .46; cursor: default; }
body.register-mode .gb-workspace-saved-note { display: block; margin-top: 9px; padding-top: 9px; border-top: 1px solid #2b3b51; color: #55c999; font-size: 11.5px; line-height: 1.45; }

.gb-workspace-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 20px;
}
.gb-workspace-demo-backdrop { position: absolute; inset: 0; background: rgba(3,8,16,.78); backdrop-filter: blur(5px); }
.gb-workspace-demo-dialog {
  position: relative;
  z-index: 1;
  width: min(660px,100%);
  max-height: min(760px,calc(100vh - 32px));
  overflow: auto;
  border: 1px solid #38506f;
  border-radius: 14px;
  background: #101b2c;
  box-shadow: 0 28px 90px rgba(0,0,0,.55);
}
.gb-workspace-demo-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 20px 22px 16px; border-bottom: 1px solid #263a55; }
.gb-workspace-demo-head > div { display: grid; gap: 4px; }
.gb-workspace-demo-head span { color: #f5a623; font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.gb-workspace-demo-head h2 { margin: 0; color: #fff; font-size: 20px; line-height: 1.25; }
.gb-workspace-demo-head > button { width: 34px; height: 34px; border: 1px solid #344963; border-radius: 8px; background: #142238; color: #dbe5f1; font-size: 20px; cursor: pointer; }
.gb-workspace-demo-body { display: grid; gap: 15px; padding: 20px 22px; color: #a8b6c8; font-size: 13px; line-height: 1.55; }
.gb-workspace-demo-body p,
.gb-workspace-demo-body h3 { margin: 0; }
.gb-workspace-demo-body h3 { color: #fff; font-size: 15px; }
.gb-workspace-demo-actions { display: flex; justify-content: flex-end; gap: 9px; padding: 15px 22px 20px; border-top: 1px solid #263a55; }
.gb-workspace-demo-actions .btn { min-height: 40px; margin: 0; padding: 9px 16px; }
.gb-workspace-demo-field { display: grid; gap: 7px; }
.gb-workspace-demo-field span { color: #c6d1df; font-size: 11px; font-weight: 800; }
.gb-workspace-demo-field textarea { width: 100%; resize: vertical; padding: 11px 12px; border: 1px solid #344963; border-radius: 8px; background: #0b1524; color: #fff; font: inherit; font-size: 13px; line-height: 1.5; }
.gb-workspace-preview-summary { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; }
.gb-workspace-preview-summary article { display: grid; gap: 4px; padding: 12px; border: 1px solid #2c405c; border-radius: 9px; background: #0c1727; }
.gb-workspace-preview-summary span { color: #8fa1b7; font-size: 10px; }
.gb-workspace-preview-summary strong { color: #fff; font-size: 19px; }
.gb-workspace-demo-checklist { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.gb-workspace-demo-checklist li { padding: 9px 11px 9px 34px; border: 1px solid #293d57; border-radius: 8px; background: #0d1828; color: #c9d4e1; position: relative; }
.gb-workspace-demo-checklist li::before { content: "✓"; position: absolute; left: 12px; color: #45c491; font-weight: 900; }
.gb-workspace-requirement-list { display: grid; gap: 8px; }
.gb-workspace-requirement-list article { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 12px; border: 1px solid #30445f; border-radius: 8px; background: #0d1828; }
.gb-workspace-requirement-list strong { color: #f3f6fa; font-size: 12.5px; }
.gb-workspace-requirement-list span { color: #9cacbf; font-size: 11px; text-align: right; }
.gb-workspace-requirement-list article.is-done { border-color: rgba(50,179,132,.42); }
.gb-workspace-requirement-list article.is-done span { color: #54c79b; }
.gb-workspace-requirement-list article.is-missing { border-color: rgba(225,82,82,.48); }
.gb-workspace-requirement-list article.is-missing span { color: #f08383; }
.gb-workspace-correction { display: grid; gap: 11px; }
.gb-workspace-correction > span { justify-self: start; padding: 5px 9px; border-radius: 999px; background: rgba(245,166,35,.12); color: #ffc35a; font-size: 10.5px; font-weight: 800; }

@media (max-width: 960px) {
  body.register-mode .gb-workspace-template-grid,
  body.register-mode .gb-workspace-project-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 720px) {
  body.register-mode .gb-source-profile { padding-bottom: 78px; }
  body.register-mode .gb-proof-package-grid { grid-template-columns: 1fr !important; }
  body.register-mode .gb-proof-document-head-actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  body.register-mode .gb-proof-mobile-filter-toggle { display: inline-flex; align-items: center; justify-content: center; }
  body.register-mode .gb-proof-filters { display: none !important; grid-template-columns: 1fr !important; }
  body.register-mode .gb-proof-filters.is-mobile-open { display: grid !important; }
  body.register-mode .gb-proof-request-status-strip { grid-template-columns: 1fr; gap: 11px; }
  body.register-mode .gb-proof-request-status-strip > button { width: 100%; }
  body.register-mode .gb-proof-mobile-sticky-action {
    position: fixed;
    z-index: 1200;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    display: block;
    min-height: 48px;
    border: 1px solid #ffbd49;
    border-radius: 10px;
    background: #f5a623;
    color: #111827;
    box-shadow: 0 15px 36px rgba(0,0,0,.42);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
  }
  body.register-mode .gb-workspace-template-grid,
  body.register-mode .gb-workspace-project-grid { grid-template-columns: 1fr; }
  .gb-workspace-demo-modal { padding: 10px; }
  .gb-workspace-demo-dialog { max-height: calc(100vh - 20px); }
  .gb-workspace-demo-head,
  .gb-workspace-demo-body { padding-left: 16px; padding-right: 16px; }
  .gb-workspace-demo-actions { display: grid; grid-template-columns: 1fr; padding: 13px 16px 16px; }
  .gb-workspace-demo-actions .btn { width: 100%; }
  .gb-workspace-preview-summary { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .gb-workspace-requirement-list article { align-items: flex-start; flex-direction: column; }
  .gb-workspace-requirement-list span { text-align: left; }
}

/* PROJECT RECOMMENDATIONS AND COMMUNITY FEEDBACK — TRUST ARCHITECTURE */
.portfolio-v2-stats { grid-template-columns: repeat(5,minmax(0,1fr)); min-width:min(100%,760px); }
.portfolio-v2-social-grid { margin-top:10px; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:9px; }
.portfolio-v2-social-panel { min-width:0; padding:13px; display:flex; flex-direction:column; gap:9px; border:1px solid #31445a; border-radius:10px; background:linear-gradient(145deg,rgba(10,25,41,.94),rgba(7,17,29,.94)); }
.portfolio-v2-social-panel.is-recommendation { border-color:rgba(66,202,145,.34); box-shadow:inset 3px 0 0 rgba(66,202,145,.68); }
.portfolio-v2-social-panel.is-feedback { border-color:rgba(79,135,196,.38); box-shadow:inset 3px 0 0 rgba(79,135,196,.68); }
.portfolio-v2-social-title { display:flex; align-items:start; justify-content:space-between; gap:10px; }
.portfolio-v2-social-title span,.portfolio-v2-social-title strong,.portfolio-v2-social-title small { display:block; }
.portfolio-v2-social-title small { margin-bottom:3px; color:#54dba8; font-size:8px; font-weight:900; letter-spacing:.1em; }
.portfolio-v2-social-panel.is-feedback .portfolio-v2-social-title small { color:#7fb8f0; }
.portfolio-v2-social-title strong { color:#f5f8fb; font-size:13px; line-height:1.2; }
.portfolio-v2-social-title em { flex:0 0 auto; padding:4px 7px; border:1px solid currentColor; border-radius:999px; color:#55dbaa; font-size:8.5px; font-style:normal; font-weight:900; }
.portfolio-v2-social-panel.is-feedback .portfolio-v2-social-title em { color:#7fb8f0; }
.portfolio-v2-social-author { display:flex; align-items:start; justify-content:space-between; gap:9px; }
.portfolio-v2-social-author span,.portfolio-v2-social-author b,.portfolio-v2-social-author small { display:block; min-width:0; }
.portfolio-v2-social-author b { color:#fff; font-size:10.5px; }
.portfolio-v2-social-author b a,.project-social-list-item strong a { color:inherit; text-decoration-color:#64809a; text-underline-offset:2px; }
.portfolio-v2-social-author small { margin-top:2px; color:#8fa0b3; font-size:8.5px; line-height:1.3; }
.portfolio-v2-social-author i { flex:0 0 auto; max-width:145px; padding:4px 6px; border:1px solid #3a526d; border-radius:5px; color:#98aec5; font-size:7.5px; font-style:normal; font-weight:800; line-height:1.25; text-align:center; }
.portfolio-v2-social-author i.is-verified { color:#57dda9; border-color:rgba(66,202,145,.38); background:rgba(66,202,145,.07); }
.portfolio-v2-criteria { display:flex; flex-wrap:wrap; gap:4px; }
.portfolio-v2-criteria span { padding:3px 5px; border:1px solid rgba(66,202,145,.27); border-radius:5px; color:#72ddb6; background:rgba(66,202,145,.06); font-size:7.5px; font-weight:800; }
.portfolio-v2-criteria span.is-muted { color:#8b9caf; border-color:#33475d; background:transparent; }
.portfolio-v2-strength { display:flex; align-items:center; gap:7px; }
.portfolio-v2-strength b { color:#fff; font-size:10px; }
.portfolio-v2-strength small { color:#7f90a4; font-size:8px; }
.project-social-strength-bar { min-width:86px; display:grid; grid-template-columns:repeat(5,1fr); gap:3px; }
.project-social-strength-bar i { height:5px; border-radius:999px; background:#263b51; }
.project-social-strength-bar i.is-active { background:linear-gradient(90deg,#36bd88,#6ee4ba); box-shadow:0 0 8px rgba(66,202,145,.2); }
.portfolio-v2-social-quote { margin:0; color:#c5d1dd; font-size:8.5px; line-height:1.42; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; overflow:hidden; }
.portfolio-v2-social-empty { margin:0; min-height:35px; color:#899bae; font-size:9px; line-height:1.4; }
.portfolio-v2-social-actions { margin-top:auto; display:flex; flex-wrap:wrap; gap:5px; }
.portfolio-v2-social-actions button { min-height:29px; padding:0 8px; border:1px solid #40566f; border-radius:6px; color:#c2cfdb; background:#0b1929; cursor:pointer; font-size:8.5px; font-weight:850; }
.portfolio-v2-social-actions button.is-primary { color:#071b13; border-color:#4bd4a0; background:#55dca8; }
.portfolio-v2-social-panel.is-feedback .portfolio-v2-social-actions button.is-primary { color:#081522; border-color:#7fb8f0; background:#7fb8f0; }
.portfolio-v2-rule { margin:0; padding-top:7px; border-top:1px solid rgba(118,145,175,.16); color:#74869a; font-size:7.5px; line-height:1.35; }

.project-social-modal { position:fixed; inset:0; z-index:100000; display:grid; place-items:center; padding:22px; }
.project-social-modal-backdrop { position:absolute; inset:0; background:rgba(3,8,15,.86); backdrop-filter:blur(9px); }
.project-social-modal-card { position:relative; z-index:1; width:min(100%,860px); max-height:min(92vh,900px); overflow:hidden; display:flex; flex-direction:column; border:1px solid #38506b; border-radius:16px; background:linear-gradient(145deg,#101e30,#07111d); box-shadow:0 30px 90px rgba(0,0,0,.65); }
.project-social-modal-card > header { padding:19px 21px; display:flex; align-items:start; justify-content:space-between; gap:18px; border-bottom:1px solid #273b50; background:linear-gradient(90deg,rgba(245,166,35,.08),rgba(66,202,145,.05)); }
.project-social-modal-card > header small { display:block; margin-bottom:4px; color:#f5aa24; font-size:9px; font-weight:900; letter-spacing:.14em; }
.project-social-modal-card > header h2 { margin:0; color:#fff; font-size:23px; line-height:1.2; }
.project-social-modal-card > header p { margin:5px 0 0; color:#94a5b7; font-size:11px; }
.project-social-modal-card > header button { width:36px; height:36px; flex:0 0 auto; border:1px solid #435971; border-radius:9px; color:#d9e1e9; background:#0b1726; cursor:pointer; font-size:24px; line-height:1; }
.project-social-modal-body { min-height:0; padding:20px 21px 22px; overflow:auto; }
.project-social-lead { margin:0 0 15px; color:#aebdcb; font-size:12px; line-height:1.55; }
.project-social-invite { margin-bottom:10px; padding:12px; display:grid; grid-template-columns:minmax(0,1fr) auto; gap:12px; align-items:center; border:1px solid rgba(245,166,35,.38); border-radius:10px; background:rgba(245,166,35,.06); }
.project-social-invite span,.project-social-invite small,.project-social-invite strong { display:block; min-width:0; }
.project-social-invite small { margin-bottom:4px; color:#f6aa22; font-size:8px; font-weight:900; letter-spacing:.12em; }
.project-social-invite strong { overflow:hidden; color:#eaf0f5; font-size:10px; text-overflow:ellipsis; white-space:nowrap; }
.project-social-invite button { min-height:34px; padding:0 12px; border:1px solid #f2a51d; border-radius:7px; color:#111820; background:#f4aa24; cursor:pointer; font-size:10px; font-weight:900; }
.project-social-form { display:grid; gap:14px; }
.project-social-form-context { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:9px; }
.project-social-form-context span { padding:10px 12px; border:1px solid #2e4258; border-radius:8px; background:#0b1828; }
.project-social-form-context small,.project-social-form-context strong { display:block; }
.project-social-form-context small { color:#7f92a6; font-size:8px; font-weight:900; letter-spacing:.1em; }
.project-social-form-context strong { margin-top:3px; color:#fff; font-size:11px; }
.project-social-form fieldset { margin:0; padding:12px; display:grid; gap:7px; border:1px solid #31465d; border-radius:10px; }
.project-social-form legend { padding:0 7px; color:#dce5ed; font-size:11px; font-weight:850; }
.project-social-criterion { position:relative; min-height:55px; padding:9px 10px; display:grid; grid-template-columns:20px minmax(0,1fr) 28px; align-items:center; gap:9px; border:1px solid #293e54; border-radius:8px; background:#0a1726; cursor:pointer; }
.project-social-criterion:has(input:checked) { border-color:rgba(66,202,145,.48); background:rgba(66,202,145,.06); }
.project-social-criterion input { width:17px; height:17px; accent-color:#48cf9c; }
.project-social-criterion span b,.project-social-criterion span small { display:block; }
.project-social-criterion span b { color:#eef4f8; font-size:11px; }
.project-social-criterion span small { margin-top:2px; color:#8294a8; font-size:8.5px; }
.project-social-info { position:relative; width:25px; height:25px; padding:0; border:1px solid #425970; border-radius:50%; color:#adc0d1; background:#102238; cursor:help; font-size:11px; font-weight:900; }
.project-social-info [role="tooltip"] { position:absolute; z-index:5; right:0; bottom:calc(100% + 8px); width:255px; padding:10px; display:none; border:1px solid #526b84; border-radius:8px; color:#dce5ed; background:#07111e; box-shadow:0 10px 30px rgba(0,0,0,.5); font-size:10px; font-weight:500; line-height:1.45; text-align:left; }
.project-social-info:hover [role="tooltip"],.project-social-info:focus [role="tooltip"],.project-social-info:focus-visible [role="tooltip"] { display:block; }
.project-social-strength-live { padding:12px; display:flex; align-items:center; justify-content:space-between; gap:15px; border:1px solid rgba(66,202,145,.3); border-radius:9px; background:rgba(66,202,145,.05); }
.project-social-strength-live span:first-child small,.project-social-strength-live span:first-child strong { display:block; }
.project-social-strength-live span:first-child small { color:#74a992; font-size:8px; font-weight:900; letter-spacing:.1em; }
.project-social-strength-live span:first-child strong { color:#62dfaf; font-size:22px; }
.project-social-strength-live .project-social-strength-bar { width:180px; }
.project-social-strength-live .project-social-strength-bar i { height:9px; }
.project-social-eligibility { margin:0; padding:10px 12px; border:1px solid rgba(245,166,35,.32); border-radius:8px; color:#e6b85f; background:rgba(245,166,35,.05); font-size:10px; line-height:1.45; }
.project-social-eligibility.is-eligible { color:#69dfb2; border-color:rgba(66,202,145,.32); background:rgba(66,202,145,.05); }
.project-social-comment { display:grid; gap:7px; }
.project-social-comment > span { display:flex; justify-content:space-between; color:#dbe4ec; font-size:11px; font-weight:800; }
.project-social-comment > span small { color:#8092a6; font-weight:600; }
.project-social-comment textarea { width:100%; min-height:105px; padding:12px; resize:vertical; border:1px solid #344b63; border-radius:9px; color:#ecf2f7; background:#081522; font:inherit; font-size:12px; line-height:1.5; }
.project-social-comment textarea:focus { outline:2px solid rgba(245,166,35,.24); border-color:#eaa01d; }
.project-social-non-score { padding:11px 12px; display:grid; gap:3px; border:1px solid rgba(79,135,196,.38); border-radius:9px; background:rgba(79,135,196,.07); }
.project-social-non-score b { color:#8fc2f2; font-size:10px; }
.project-social-non-score span { color:#95a6b8; font-size:9px; line-height:1.45; }
.project-social-form-actions { display:flex; justify-content:flex-end; gap:8px; }
.project-social-form-actions button { min-height:40px; padding:0 15px; border:1px solid #40566e; border-radius:8px; color:#ced8e2; background:#0c1929; cursor:pointer; font-size:11px; font-weight:850; }
.project-social-form-actions button.is-primary { color:#101820; border-color:#f4aa23; background:#f5aa23; }
.project-social-list { display:grid; gap:10px; }
.project-social-list-item { padding:14px; display:grid; grid-template-columns:minmax(0,1fr) auto; gap:10px 14px; border:1px solid #32485f; border-radius:10px; background:#0b1828; }
.project-social-list-item.is-recommendation { border-left:3px solid #4ed5a1; }
.project-social-list-item.is-feedback { border-left:3px solid #78ace3; }
.project-social-list-item strong,.project-social-list-item small { display:block; }
.project-social-list-item strong { color:#fff; font-size:12px; }
.project-social-list-item small { margin-top:3px; color:#8496a9; font-size:9px; }
.project-social-list-item em { align-self:start; padding:5px 7px; border:1px solid #435970; border-radius:6px; color:#9bb0c4; font-size:8px; font-style:normal; font-weight:800; }
.project-social-list-item em.is-verified { color:#5bdcab; border-color:rgba(66,202,145,.4); }
.project-social-list-item .portfolio-v2-criteria,.project-social-list-item .portfolio-v2-strength,.project-social-list-item p,.project-social-list-item > small { grid-column:1/-1; }
.project-social-list-item p { margin:0; color:#c2ced9; font-size:10px; line-height:1.5; }
.project-social-list-empty { margin:0; padding:28px; border:1px dashed #385069; border-radius:10px; color:#8ea0b3; text-align:center; }

@media (min-width:1101px) {
  .portfolio-v2-list { grid-auto-rows:auto; }
  .portfolio-v2-project-card { height:auto; min-height:600px; overflow:visible; }
  .portfolio-v2-project-content { overflow:visible; }
  .portfolio-v2-cover { min-height:100%; height:auto; }
  .portfolio-v2-cover-button,.portfolio-v2-cover-button img { min-height:100%; height:100%; }
}
@media (max-width:1100px) {
  .portfolio-v2-stats { grid-template-columns:repeat(5,minmax(140px,1fr)); overflow-x:auto; }
  .portfolio-v2-social-grid { grid-template-columns:1fr; }
}
@media (max-width:620px) {
  .portfolio-v2-social-panel { padding:11px; }
  .portfolio-v2-social-author { display:grid; }
  .portfolio-v2-social-author i { max-width:none; justify-self:start; }
  .portfolio-v2-social-actions { display:grid; grid-template-columns:1fr; }
  .project-social-modal { padding:0; place-items:end center; }
  .project-social-modal-card { width:100%; max-height:94vh; border-radius:16px 16px 0 0; }
  .project-social-modal-card > header,.project-social-modal-body { padding-left:15px; padding-right:15px; }
  .project-social-modal-card > header h2 { font-size:19px; }
  .project-social-form-context { grid-template-columns:1fr; }
  .project-social-invite { grid-template-columns:1fr; }
  .project-social-info [role="tooltip"] { right:-4px; width:min(255px,75vw); }
  .project-social-strength-live { align-items:flex-start; flex-direction:column; }
  .project-social-strength-live .project-social-strength-bar { width:100%; }
  .project-social-form-actions { display:grid; grid-template-columns:1fr 1fr; }
  .project-social-list-item { grid-template-columns:1fr; }
  .project-social-list-item em { justify-self:start; }
}

/* PROJECT SOCIAL READABILITY AND VIEWPORT-CENTERED DIALOGS — 2026-08-11 */
.portfolio-v2-project-head h2 { font-size:26px; }
.portfolio-v2-project-head p { font-size:12.5px; }
.portfolio-v2-description { font-size:14px; line-height:1.55; }
.portfolio-v2-facts small { font-size:10.5px; }
.portfolio-v2-facts strong { font-size:12.5px; line-height:1.38; }
.portfolio-v2-social-panel { padding:15px; gap:11px; }
.portfolio-v2-social-title small { font-size:9.5px; }
.portfolio-v2-social-title strong { font-size:15px; }
.portfolio-v2-social-title em { padding:5px 8px; font-size:10px; }
.portfolio-v2-social-author b { font-size:12.5px; }
.portfolio-v2-social-author small { font-size:10.5px; line-height:1.4; }
.portfolio-v2-social-author i { max-width:180px; padding:5px 8px; font-size:9.5px; }
.portfolio-v2-criteria { gap:6px; }
.portfolio-v2-criteria span { padding:5px 7px; font-size:9.5px; }
.portfolio-v2-strength b { font-size:12.5px; }
.portfolio-v2-strength small { font-size:10px; }
.portfolio-v2-social-empty { min-height:40px; font-size:11px; line-height:1.5; }
.portfolio-v2-social-actions { gap:7px; }
.portfolio-v2-social-actions button { min-height:34px; padding:0 11px; font-size:10.5px; }
.portfolio-v2-rule { padding-top:9px; font-size:9.5px; line-height:1.45; }
.portfolio-v2-proof > b { font-size:13px; }
.portfolio-v2-card-actions button,.portfolio-v2-card-actions a { font-size:12px; }

.project-social-modal {
  display:flex;
  align-items:center;
  justify-content:center;
  width:100vw;
  height:100dvh;
  min-height:100vh;
  padding:24px;
}
.project-social-modal-card {
  width:min(calc(100vw - 48px),960px);
  max-height:calc(100dvh - 48px);
  margin:auto;
}
.project-social-modal-card > header { padding:22px 24px; }
.project-social-modal-card > header small { font-size:10px; }
.project-social-modal-card > header h2 { font-size:27px; }
.project-social-modal-card > header p { font-size:13px; }
.project-social-modal-body { padding:23px 24px 25px; }
.project-social-lead { font-size:13.5px; line-height:1.6; }
.project-social-invite small { font-size:9.5px; }
.project-social-invite strong { font-size:11.5px; }
.project-social-invite button { min-height:38px; font-size:11px; }
.project-social-form-context small { font-size:9.5px; }
.project-social-form-context strong { font-size:12.5px; }
.project-social-form legend { font-size:13px; }
.project-social-criterion { min-height:64px; padding:11px 12px; }
.project-social-criterion span b { font-size:13px; }
.project-social-criterion span small { font-size:10.5px; }
.project-social-info { width:29px; height:29px; font-size:12px; }
.project-social-info [role="tooltip"] { font-size:11.5px; }
.project-social-strength-live span:first-child small { font-size:9.5px; }
.project-social-strength-live span:first-child strong { font-size:25px; }
.project-social-eligibility { font-size:11.5px; }
.project-social-comment > span { font-size:12.5px; }
.project-social-comment textarea { font-size:13.5px; }
.project-social-non-score b { font-size:11.5px; }
.project-social-non-score span { font-size:10.5px; }
.project-social-form-actions button { min-height:43px; font-size:12px; }
.project-social-list-item strong { font-size:13.5px; }
.project-social-list-item small { font-size:10.5px; }
.project-social-list-item em { font-size:9.5px; }
.project-social-list-item p { font-size:11.5px; }

@media (max-width:620px) {
  .portfolio-v2-project-head h2 { font-size:23px; }
  .portfolio-v2-social-panel { padding:13px; }
  .project-social-modal { align-items:flex-end; height:100dvh; min-height:100vh; padding:0; }
  .project-social-modal-card { width:100%; max-height:94dvh; margin:0; border-radius:16px 16px 0 0; }
  .project-social-modal-card > header h2 { font-size:21px; }
}

/* THREE RECOMMENDATION DEMO VIEWS — RECOMMENDER / PUBLIC / PROFILE OWNER */
.portfolio-v2-demo-role {
  margin-bottom:3px;
  padding:9px 12px;
  display:grid;
  grid-template-columns:auto auto 1fr;
  align-items:center;
  gap:8px;
  border:1px solid #334b64;
  border-radius:8px;
  background:rgba(10,24,39,.8);
}
.portfolio-v2-demo-role span {
  padding:4px 7px;
  border-radius:999px;
  color:#08131f;
  background:#91a5ba;
  font-size:9px;
  font-weight:950;
  letter-spacing:.09em;
}
.portfolio-v2-demo-role strong { color:#f7fbff; font-size:11.5px; letter-spacing:.04em; }
.portfolio-v2-demo-role small { color:#98aabd; font-size:10.5px; text-align:right; }
.portfolio-v2-demo-role.is-recommender { border-color:rgba(81,219,169,.38); background:linear-gradient(90deg,rgba(42,162,119,.14),rgba(8,21,35,.82)); }
.portfolio-v2-demo-role.is-recommender span { background:#58dda9; }
.portfolio-v2-demo-role.is-public { border-color:rgba(111,171,230,.38); background:linear-gradient(90deg,rgba(61,127,194,.14),rgba(8,21,35,.82)); }
.portfolio-v2-demo-role.is-public span { background:#83bdf4; }
.portfolio-v2-demo-role.is-owner { border-color:rgba(245,166,35,.45); background:linear-gradient(90deg,rgba(245,166,35,.15),rgba(8,21,35,.82)); }
.portfolio-v2-demo-role.is-owner span { background:#f5a623; }
.portfolio-v2-project-card.is-demo-recommender { border-color:rgba(81,219,169,.48); }
.portfolio-v2-project-card.is-demo-public { border-color:rgba(111,171,230,.48); }
.portfolio-v2-project-card.is-demo-owner { border-color:rgba(245,166,35,.5); }
.portfolio-v2-recommendation-status {
  min-height:64px;
  padding:11px;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(83,220,170,.32);
  border-radius:8px;
  background:rgba(45,174,128,.08);
}
.portfolio-v2-recommendation-status > i {
  width:30px;
  height:30px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#071a13;
  background:#58dda9;
  font-size:14px;
  font-style:normal;
  font-weight:950;
}
.portfolio-v2-recommendation-status span,.portfolio-v2-recommendation-status strong,.portfolio-v2-recommendation-status small { display:block; }
.portfolio-v2-recommendation-status strong { color:#f4fbf8; font-size:12px; }
.portfolio-v2-recommendation-status small { margin-top:3px; color:#9cb2a9; font-size:10px; line-height:1.4; }
.portfolio-v2-recommendation-status.is-submitted { border-color:rgba(96,182,238,.36); background:rgba(58,126,183,.09); }
.portfolio-v2-recommendation-status.is-submitted > i { background:#84c2ed; }
.portfolio-v2-owner-invite {
  min-height:70px;
  padding:11px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border:1px solid rgba(245,166,35,.3);
  border-radius:8px;
  background:rgba(245,166,35,.07);
}
.portfolio-v2-owner-invite span,.portfolio-v2-owner-invite small,.portfolio-v2-owner-invite strong,.portfolio-v2-owner-invite em { display:block; }
.portfolio-v2-owner-invite small { color:#d49a39; font-size:8.5px; font-weight:900; letter-spacing:.08em; }
.portfolio-v2-owner-invite strong { margin-top:3px; color:#fff; font-size:12px; }
.portfolio-v2-owner-invite em { margin-top:2px; color:#a8b6c5; font-size:9.5px; font-style:normal; }
.portfolio-v2-owner-invite > i {
  padding:6px 8px;
  border:1px solid rgba(245,166,35,.42);
  border-radius:999px;
  color:#f5bd55;
  font-size:9px;
  font-style:normal;
  font-weight:900;
  white-space:nowrap;
}
.portfolio-v2-owner-invite > i.is-sent { border-color:rgba(83,220,170,.38); color:#58dda9; }
.project-social-invite-fields { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
.project-social-invite-fields label,.project-social-invite-fields span { display:block; }
.project-social-invite-fields span { margin-bottom:6px; color:#a9b8c7; font-size:11px; font-weight:800; }
.project-social-invite-fields input {
  width:100%;
  min-height:43px;
  padding:0 11px;
  border:1px solid #3b536d;
  border-radius:8px;
  color:#f4f8fc;
  background:#0a1929;
  font:inherit;
}
.project-social-owner-notice {
  padding:12px;
  display:grid;
  gap:4px;
  border:1px solid rgba(245,166,35,.34);
  border-radius:8px;
  background:rgba(245,166,35,.07);
}
.project-social-owner-notice b { color:#ffc45f; font-size:12px; }
.project-social-owner-notice span { color:#9facb9; font-size:11px; line-height:1.45; }
@media (max-width:820px) {
  .portfolio-v2-demo-role { grid-template-columns:auto 1fr; }
  .portfolio-v2-demo-role small { grid-column:1 / -1; text-align:left; }
  .project-social-invite-fields { grid-template-columns:1fr; }
}
@media (max-width:620px) {
  .portfolio-v2-demo-role { padding:9px; }
  .portfolio-v2-owner-invite { align-items:flex-start; flex-direction:column; }
}

/* LDS professional profile pilot — 2026-08-08 */
.register-mode .association-catalog-hero > .association-quick-filters {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
  width: 100%;
}

.register-mode .association-catalog-hero > .association-quick-filters button {
  width: 100%;
  justify-content: center;
}

.register-mode .verified-status.is-public-source {
  border-color: rgba(245, 166, 35, 0.42);
  background: rgba(245, 166, 35, 0.1);
  color: #f5b33a;
}

.register-mode .association-profile-grid .catalog-profile-avatar.is-person {
  width: 68px;
  height: 68px;
  border: 2px solid rgba(245, 166, 35, 0.42);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.register-mode .gb-source-profile.is-professional-source .logo-box.is-professional-photo {
  border-radius: 24px;
  border-color: rgba(245, 166, 35, 0.58);
  background: #152238;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.register-mode .gb-source-profile.is-professional-source .logo-box.is-professional-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
  object-fit: cover;
}

.register-mode .gb-source-profile .status-pill.source {
  border-color: rgba(245, 166, 35, 0.48);
  background: rgba(245, 166, 35, 0.11);
  color: #f6ba4e;
}

.register-mode .gb-source-profile .professional-source-intro {
  padding: 24px;
  border-color: rgba(245, 166, 35, 0.22);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.055), rgba(19, 36, 61, 0.7));
}

.register-mode .gb-source-profile .professional-source-intro p {
  max-width: 1000px;
  margin: 0;
  color: #d9e2ef;
  line-height: 1.72;
  white-space: pre-line;
}

.register-mode .gb-source-profile .professional-source-intro a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.register-mode .gb-source-profile.is-professional-source .brands-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.register-mode .gb-source-profile.is-professional-source .brand-card {
  min-height: 190px;
}

@media (max-width: 980px) {
  .register-mode .association-catalog-hero > .association-quick-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .register-mode .gb-source-profile.is-professional-source .brands-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .register-mode .association-catalog-hero > .association-quick-filters,
  .register-mode .gb-source-profile.is-professional-source .brands-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .register-mode .association-profile-grid .catalog-profile-avatar.is-person {
    width: 58px;
    height: 58px;
  }

  .register-mode .gb-source-profile .professional-source-intro {
    padding: 18px;
  }
}

/* Catalog trust map v2.9 — leaders, taxonomy and monthly snapshots */
.register-mode .catalog-home > .catalog-recommendations,
.register-mode .catalog-home > .catalog-monthly-leaders,
.register-mode .catalog-home > .catalog-specializations:not(.is-active) {
  display: none;
}

.register-mode .catalog-home > .catalog-industries {
  margin-top: 42px;
  border-color: rgba(246, 173, 32, .34);
  background: radial-gradient(circle at 88% 0, rgba(246, 173, 32, .07), transparent 36%), #0d1828;
}

.register-mode .catalog-specialization-profile-grid {
  margin-top: 22px;
}

.register-mode .catalog-specialization-profile-grid .catalog-empty-state {
  grid-column: 1 / -1;
}

.register-mode .catalog-leader-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(360px, .8fr);
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(246, 173, 32, .38);
  border-radius: 15px;
  background: radial-gradient(circle at 90% 0, rgba(246, 173, 32, .12), transparent 38%), rgba(10, 20, 34, .9);
}

.register-mode .catalog-leader-callout-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  color: #f6ad20;
  background: rgba(246, 173, 32, .1);
}

.register-mode .catalog-leader-callout-icon svg { width: 27px; height: 27px; }
.register-mode .catalog-leader-callout-copy { display: grid; gap: 4px; }
.register-mode .catalog-leader-callout-copy > span { color: #f6ad20; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.register-mode .catalog-leader-callout-copy > strong { color: #fff; font-size: 20px; }
.register-mode .catalog-leader-callout-copy p { margin: 0; color: #a9b6c8; font-size: 12px; line-height: 1.5; }

.register-mode .catalog-leader-callout-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.register-mode .catalog-leader-callout-signals button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  text-align: left;
  border: 1px solid #34465d;
  border-radius: 11px;
  color: #fff;
  background: rgba(18, 31, 50, .95);
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease;
}

.register-mode .catalog-leader-callout-signals button:hover { transform: translateY(-2px); border-color: #f6ad20; }
.register-mode .catalog-leader-callout-signals button > b { font-size: 20px; }
.register-mode .catalog-leader-callout-signals button > span { display: grid; gap: 2px; }
.register-mode .catalog-leader-callout-signals strong { font-size: 12px; }
.register-mode .catalog-leader-callout-signals small { color: #94a5ba; font-size: 10px; }

.register-mode .catalog-specialization-profile-grid .catalog-leader-card.is-monthly-ranked {
  position: relative;
}

.register-mode .catalog-specialization-profile-grid .catalog-leader-card.is-podium {
  border-width: 2px;
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, .25);
}

.register-mode .catalog-specialization-profile-grid .catalog-leader-card.is-rank-1 {
  border-color: #f6ad20;
  background: linear-gradient(145deg, rgba(58, 42, 16, .5), rgba(10, 19, 32, .98) 48%);
}

.register-mode .catalog-specialization-profile-grid .catalog-leader-card.is-rank-2 { border-color: #aebdcc; }
.register-mode .catalog-specialization-profile-grid .catalog-leader-card.is-rank-3 { border-color: #b87a4a; }

.register-mode .catalog-leader-rank em {
  margin-left: auto;
  padding: 5px 8px;
  border-radius: 999px;
  color: #111827;
  background: #f6ad20;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.register-mode .catalog-leaders-method {
  max-width: 760px;
  margin-top: 8px;
  color: #92a1b7;
  font-size: 13px;
  line-height: 1.55;
}

.register-mode .catalog-ranking-info {
  position: relative;
  align-self: flex-start;
  z-index: 2;
}

.register-mode .catalog-ranking-info summary {
  list-style: none;
  cursor: pointer;
  color: #f6ad20;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(246, 173, 32, .38);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(246, 173, 32, .06);
}

.register-mode .catalog-ranking-info summary::-webkit-details-marker { display: none; }

.register-mode .catalog-ranking-info p {
  position: absolute;
  right: 0;
  width: min(390px, 80vw);
  padding: 14px;
  margin: 8px 0 0;
  border: 1px solid #31435b;
  border-radius: 12px;
  background: #111c2d;
  color: #dbe5f2;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  line-height: 1.55;
}

.register-mode .catalog-leader-card {
  border-color: #2c4059;
  background: linear-gradient(145deg, rgba(18, 30, 48, .98), rgba(10, 19, 32, .98));
}

.register-mode .catalog-leader-rank {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -2px 0 13px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(129, 151, 181, .16);
}

.register-mode .catalog-leader-rank strong {
  color: #f6ad20;
  font-size: 20px;
}

.register-mode .catalog-leader-rank span,
.register-mode .catalog-leader-specialization {
  color: #9fb0c7;
  font-size: 12px;
  font-weight: 700;
}

.register-mode .catalog-leader-specialization { display: block; margin-top: 4px; }

.register-mode .catalog-leader-card .catalog-profile-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.register-mode .catalog-leader-card .catalog-profile-metrics > div {
  min-width: 0;
  padding: 9px 7px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .025);
}

.register-mode .catalog-profile-metrics strong.is-index { color: #f6ad20; }

.register-mode .catalog-leader-evidence {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) auto;
  gap: 7px 10px;
  align-items: center;
  margin-top: 14px;
  padding: 11px 0 13px;
  border-top: 1px solid rgba(129, 151, 181, .14);
}

.register-mode .catalog-leader-evidence > span {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #26364a;
}

.register-mode .catalog-leader-evidence > span i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #39c98c, #76e2b3);
}

.register-mode .catalog-leader-evidence small { color: #9eacc0; font-size: 11px; }
.register-mode .catalog-leader-evidence em { grid-column: 2; grid-row: 1 / span 2; font-style: normal; font-size: 11px; font-weight: 800; color: #4bd39a; }
.register-mode .catalog-leader-evidence em.is-muted { color: #9eacc0; }

.register-mode .catalog-industry-grid .category-card.is-active {
  border-color: #f6ad20;
  background: linear-gradient(135deg, rgba(246, 173, 32, .13), rgba(17, 29, 47, .95));
  box-shadow: 0 0 0 1px rgba(246, 173, 32, .12) inset;
}

.register-mode .catalog-specializations,
.register-mode .catalog-monthly-leaders {
  scroll-margin-top: 92px;
}

.register-mode .catalog-monthly-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.register-mode .catalog-monthly-heading h2 { margin: 5px 0; color: #fff; font-size: clamp(26px, 3vw, 38px); }
.register-mode .catalog-monthly-heading p { margin: 0; max-width: 760px; color: #a2b0c3; line-height: 1.55; }

.register-mode .catalog-text-button {
  border: 0;
  background: transparent;
  color: #f6ad20;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.register-mode .catalog-specialization-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 14px;
  min-width: min(100%, 390px);
}

.register-mode .catalog-specialization-jump {
  display: grid;
  gap: 7px;
  min-width: min(100%, 270px);
}

.register-mode .catalog-specialization-jump > span {
  color: #f6ad20;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.register-mode .catalog-specialization-jump select {
  width: 100%;
  min-height: 42px;
  padding: 0 38px 0 13px;
  border: 1px solid rgba(123, 148, 181, .34);
  border-radius: 10px;
  outline: 0;
  background: #0d192b;
  color: #f4f7fb;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.register-mode .catalog-specialization-jump select:hover,
.register-mode .catalog-specialization-jump select:focus-visible {
  border-color: #f6ad20;
  background: #101f34;
  box-shadow: 0 0 0 3px rgba(246, 173, 32, .12);
}

.register-mode .catalog-specialization-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.register-mode .catalog-specialization-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px 18px;
  text-align: left;
  color: #f2f6fb;
  border: 1px solid #2b3c53;
  border-radius: 13px;
  background: #111c2d;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.register-mode .catalog-specialization-card:hover,
.register-mode .catalog-specialization-card.is-active {
  transform: translateY(-2px);
  border-color: #f6ad20;
  background: rgba(246, 173, 32, .08);
}

.register-mode .catalog-specialization-card span { display: grid; gap: 5px; }
.register-mode .catalog-specialization-card strong { font-size: 14px; }
.register-mode .catalog-specialization-card small { color: #8fa0b6; font-size: 12px; }
.register-mode .catalog-specialization-card i { color: #f6ad20; font-style: normal; font-size: 20px; }

.register-mode .catalog-specialization-prompt {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 22px;
  border: 1px dashed #34475f;
  border-radius: 14px;
  background: rgba(15, 26, 43, .62);
}

.register-mode .catalog-specialization-prompt > span {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  height: 42px;
  border-radius: 50%;
  color: #091321;
  background: #f6ad20;
  font-size: 18px;
  font-weight: 900;
}

.register-mode .catalog-specialization-prompt strong { color: #fff; font-size: 16px; }
.register-mode .catalog-specialization-prompt p { margin: 5px 0 0; color: #9eacc0; }

.register-mode .catalog-specialization-leaders {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid #33475f;
  border-radius: 16px;
  background: linear-gradient(145deg, #111d30, #0a1423);
  scroll-margin-top: 92px;
}

.register-mode .catalog-specialization-leaders-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.register-mode .catalog-specialization-leaders-head h3 { margin: 5px 0; color: #fff; font-size: clamp(22px, 2vw, 30px); }
.register-mode .catalog-specialization-leaders-head p { margin: 0; color: #9eacc0; }

.register-mode .catalog-specialization-ranking {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  border-top: 1px solid #27384e;
}

.register-mode .catalog-specialization-ranking li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 70px 82px auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  border-bottom: 1px solid #27384e;
}

.register-mode .catalog-specialization-ranking li > div { display: grid; gap: 4px; }
.register-mode .catalog-specialization-ranking strong { color: #fff; font-size: 14px; }
.register-mode .catalog-specialization-ranking small { color: #91a1b7; }
.register-mode .catalog-rank-number { color: #f6ad20; font-size: 18px; font-weight: 900; }
.register-mode .catalog-rank-index { color: #f6ad20; font-weight: 900; }
.register-mode .catalog-rank-trust { color: #62d9a4; font-size: 17px; font-weight: 900; }
.register-mode .catalog-rank-trust small { font-size: 10px; }
.register-mode .catalog-specialization-ranking button {
  border: 0;
  background: transparent;
  color: #f6ad20;
  font-weight: 800;
  cursor: pointer;
}

.register-mode .catalog-specialization-ranking .catalog-specialization-empty { grid-template-columns: 1fr; }

.register-mode .catalog-full-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: end;
  gap: 16px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(246, 173, 32, .32);
  border-radius: 13px;
  background: rgba(246, 173, 32, .055);
}

.register-mode .catalog-full-category > div { display: grid; gap: 5px; }
.register-mode .catalog-full-category strong { color: #fff; font-size: 16px; }
.register-mode .catalog-full-category span { color: #9eacc0; font-size: 12px; }
.register-mode .catalog-full-category label { display: grid; gap: 5px; }
.register-mode .catalog-full-category select,
.register-mode .catalog-full-category button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #3b4d63;
  border-radius: 9px;
  color: #fff;
  background: #101b2c;
  font-weight: 800;
}
.register-mode .catalog-full-category button { border-color: #f6ad20; color: #111827; background: #f6ad20; cursor: pointer; }

.register-mode .catalog-monthly-leaders {
  margin-top: 42px;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(246, 173, 32, .34);
  border-radius: 18px;
  background: radial-gradient(circle at 90% 0, rgba(246, 173, 32, .09), transparent 38%), #0d1828;
}

.register-mode .catalog-monthly-leaders .catalog-excellence-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(246, 173, 32, .45);
  border-radius: 50%;
  color: #f6ad20;
  background: rgba(246, 173, 32, .08);
}

.register-mode .catalog-monthly-leaders .catalog-excellence-mark svg { width: 28px; height: 28px; }

.register-mode .catalog-monthly-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.register-mode .catalog-monthly-card {
  display: grid;
  gap: 8px;
  min-height: 154px;
  padding: 17px;
  border: 1px solid #2c4057;
  border-radius: 13px;
  background: rgba(17, 29, 47, .92);
}

.register-mode .catalog-monthly-card > span { color: #f6ad20; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.register-mode .catalog-monthly-card strong { color: #fff; font-size: 16px; line-height: 1.3; }
.register-mode .catalog-monthly-card small { color: #95a5bb; }
.register-mode .catalog-monthly-card > div { display: flex; align-items: center; gap: 10px; }
.register-mode .catalog-monthly-card > div b { color: #f6ad20; font-size: 22px; }
.register-mode .catalog-monthly-card > div em { color: #62d9a4; font-style: normal; font-size: 12px; font-weight: 800; }
.register-mode .catalog-monthly-card button { justify-self: start; margin-top: auto; padding: 0; border: 0; color: #f6ad20; background: transparent; font-weight: 800; cursor: pointer; }

.register-mode .catalog-monthly-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid #2c3c50;
  color: #94a4ba;
  font-size: 12px;
}
.register-mode .catalog-monthly-footer p { margin: 0; }
.register-mode .catalog-monthly-footer button { flex: 0 0 auto; border: 0; color: #f6ad20; background: transparent; font-weight: 800; cursor: pointer; }

@media (max-width: 980px) {
  .register-mode .catalog-leader-callout { grid-template-columns: auto minmax(0, 1fr); }
  .register-mode .catalog-leader-callout-signals { grid-column: 1 / -1; }
  .register-mode .catalog-leader-card .catalog-profile-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .register-mode .catalog-specialization-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .register-mode .catalog-monthly-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .register-mode .catalog-specialization-ranking li { grid-template-columns: 42px minmax(0, 1fr) 60px 74px; padding: 10px 0; }
  .register-mode .catalog-specialization-ranking li button { grid-column: 2 / -1; justify-self: start; padding: 5px 0; }
  .register-mode .catalog-full-category { grid-template-columns: 1fr 1fr; }
  .register-mode .catalog-full-category > div { grid-column: 1 / -1; }
  .register-mode .catalog-monthly-heading { grid-template-columns: auto minmax(0, 1fr); }
  .register-mode .catalog-monthly-heading .catalog-ranking-info { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .register-mode .catalog-leader-callout { grid-template-columns: 1fr; padding: 15px; }
  .register-mode .catalog-leader-callout-signals { grid-column: auto; grid-template-columns: 1fr; }
  .register-mode .catalog-leader-callout-icon { width: 44px; height: 44px; }
  .register-mode .catalog-ranking-info p { position: static; width: auto; }
  .register-mode .catalog-specialization-grid,
  .register-mode .catalog-monthly-grid { grid-template-columns: 1fr; }
  .register-mode .catalog-specialization-toolbar,
  .register-mode .catalog-specialization-jump { width: 100%; min-width: 0; }
  .register-mode .catalog-specialization-toolbar { align-items: stretch; flex-direction: column; }
  .register-mode .catalog-specialization-leaders { padding: 16px; }
  .register-mode .catalog-specialization-leaders-head { display: grid; }
  .register-mode .catalog-specialization-ranking li { grid-template-columns: 36px minmax(0, 1fr) 58px; }
  .register-mode .catalog-specialization-ranking .catalog-rank-trust { display: none; }
  .register-mode .catalog-full-category { grid-template-columns: 1fr; align-items: stretch; }
  .register-mode .catalog-full-category > div { grid-column: auto; }
  .register-mode .catalog-full-category select,
  .register-mode .catalog-full-category button { width: 100%; }
  .register-mode .catalog-monthly-footer { display: grid; }
  .register-mode .catalog-leader-evidence { grid-template-columns: 1fr; }
  .register-mode .catalog-leader-evidence em { grid-column: 1; grid-row: auto; }
}

/* Public profile conclusions: one data-led summary for companies and professionals. */
.profile-conclusions-section {
  margin: 30px 0 26px;
}

.profile-conclusions-heading {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.profile-conclusions-heading h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.profile-conclusions-heading p {
  max-width: 980px;
  margin: 0;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.6;
}

.profile-conclusions-card {
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 166, 35, 0.09), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(76, 175, 125, 0.045), transparent 32%),
    linear-gradient(145deg, rgba(15, 28, 48, 0.98), rgba(9, 18, 32, 0.98));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.profile-conclusion-overview {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.075), rgba(255, 255, 255, 0.01) 48%, rgba(76, 175, 125, 0.035));
}

.profile-conclusion-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-conclusion-overview h3 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.32;
}

.profile-conclusion-overview p {
  max-width: 680px;
  margin: 6px 0 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.55;
}

.profile-conclusion-overview-stats {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.profile-conclusion-overview-stats > span {
  display: inline-flex;
  min-height: 34px;
  gap: 6px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 999px;
  background: rgba(4, 12, 24, 0.48);
  color: #b9c3d0;
  font-size: 11.5px;
  white-space: nowrap;
}

.profile-conclusion-overview-stats i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7f8998;
}

.profile-conclusion-overview-stats strong {
  color: #fff;
  font-size: 14px;
}

.profile-conclusion-overview-stats .is-positive i {
  background: #4caf7d;
}

.profile-conclusion-overview-stats .is-attention i {
  background: var(--gold);
}

.profile-conclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-conclusion-column {
  min-width: 0;
  padding: 26px 28px 16px;
}

.profile-conclusion-column + .profile-conclusion-column {
  border-left: 1px solid rgba(148, 163, 184, 0.14);
}

.profile-conclusion-column-head {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 10px;
}

.profile-conclusion-column-head > span {
  width: 3px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gold), rgba(245, 166, 35, 0.22));
}

.profile-conclusion-column h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 17px;
  line-height: 1.35;
}

.profile-conclusion-source-button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 7px 12px;
  border: 1px solid rgba(245, 166, 35, 0.48);
  border-radius: 8px;
  background: rgba(245, 166, 35, 0.085);
  color: #ffc35d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.profile-conclusion-source-button:hover {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.15);
  color: #fff1cf;
}

.profile-conclusion-list {
  display: grid;
}

.profile-conclusion-row {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 16px 10px;
  border-radius: 9px;
  transition: background 0.18s ease;
}

.profile-conclusion-row + .profile-conclusion-row {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.profile-conclusion-row:hover {
  background: rgba(255, 255, 255, 0.018);
}

.profile-conclusion-row.is-attention {
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.035), transparent 72%);
}

.profile-conclusion-dot {
  width: 7px;
  height: 7px;
  margin-top: 6px;
  border-radius: 50%;
  background: #7f8998;
  box-shadow: 0 0 0 3px rgba(127, 137, 152, 0.09);
}

.profile-conclusion-row.is-positive .profile-conclusion-dot {
  background: #4caf7d;
  box-shadow: 0 0 0 3px rgba(76, 175, 125, 0.1);
}

.profile-conclusion-row.is-attention .profile-conclusion-dot {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.profile-conclusion-copy {
  display: grid;
  grid-template-columns: minmax(175px, 0.8fr) minmax(0, 1.2fr);
  gap: 5px 20px;
  align-items: baseline;
}

.profile-conclusion-label {
  color: #dce4ef;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.profile-conclusion-copy strong {
  color: #f8fafc;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.profile-conclusion-row.is-positive .profile-conclusion-copy strong {
  color: #80d9ab;
}

.profile-conclusion-row.is-attention .profile-conclusion-copy strong {
  color: #ffc35d;
}

.profile-conclusion-copy small {
  grid-column: 2;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.55;
}

.profile-conclusion-copy em {
  grid-column: 2;
  color: #718096;
  font-size: 10.5px;
  font-style: normal;
  line-height: 1.35;
}

.profile-conclusion-copy em a {
  color: #8da0b7;
  text-decoration: none;
}

.profile-conclusion-copy em a:hover {
  color: var(--gold);
}

.profile-conclusion-summary {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 4px 24px 0;
  padding: 17px 18px;
  border: 1px solid rgba(245, 166, 35, 0.18);
  border-radius: 11px;
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.055), rgba(255, 255, 255, 0.014));
}

.profile-conclusion-summary span {
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.profile-conclusion-summary p {
  margin: 0;
  color: #d2dae5;
  font-size: 14px;
  line-height: 1.6;
}

.profile-conclusion-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 22px;
}

.profile-conclusion-actions,
.profile-conclusion-share {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.profile-conclusion-actions .btn {
  min-height: 40px;
  font-size: 14px;
}

.profile-conclusion-share {
  justify-content: flex-end;
  color: var(--muted-2);
  font-size: 11px;
}

.profile-conclusion-share > span {
  margin-right: 2px;
}

.profile-conclusion-share button,
.profile-conclusion-share a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  color: #cbd5e1;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.profile-conclusion-share button:hover,
.profile-conclusion-share a:hover {
  border-color: rgba(245, 166, 35, 0.5);
  color: var(--gold);
}

@media (max-width: 900px) {
  .profile-conclusion-overview {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-conclusion-overview-stats {
    justify-content: flex-start;
  }

  .profile-conclusions-grid {
    grid-template-columns: 1fr;
  }

  .profile-conclusion-column + .profile-conclusion-column {
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    border-left: 0;
  }

  .profile-conclusion-source-button {
    margin-left: auto;
  }

  .profile-conclusion-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-conclusion-share {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .profile-conclusion-column {
    padding: 18px 16px 10px;
  }

  .profile-conclusion-column-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .profile-conclusion-source-button {
    width: 100%;
    margin: 6px 0 0;
  }

  .profile-conclusion-copy {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .profile-conclusion-copy small {
    grid-column: 1;
  }

  .profile-conclusion-copy em {
    grid-column: 1;
  }

  .profile-conclusion-overview {
    padding: 18px 16px;
  }

  .profile-conclusion-summary {
    grid-template-columns: 1fr;
    gap: 7px;
    margin: 3px 16px 0;
  }

  .profile-conclusion-footer {
    padding: 16px;
  }

  .profile-conclusion-actions,
  .profile-conclusion-actions .btn {
    width: 100%;
  }

  .profile-conclusion-share > span {
    flex-basis: 100%;
  }
}

/* GuildBau association catalog — 2026-08-08 */
.register-mode .association-catalog-home {
  display: grid;
  gap: 26px;
}

.register-mode .association-catalog-home > .association-type-switch {
  width: min(700px, 100%);
  margin: 0 auto;
}

.register-mode .catalog-type-switch {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(860px, 100%);
  padding: 0;
  border: 0;
  background: transparent;
}

.register-mode .catalog-type-switch button {
  min-height: 46px;
  border: 1px solid #2e425d;
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(17, 29, 47, .96), rgba(9, 19, 33, .98));
  color: #b7c4d4;
  box-shadow: inset 0 1px rgba(255, 255, 255, .025), 0 8px 20px rgba(0, 0, 0, .12);
}

.register-mode .catalog-type-switch button:hover,
.register-mode .catalog-type-switch button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(245, 166, 35, .62);
  color: #fff;
  outline: none;
}

.register-mode .catalog-type-switch button.is-active {
  border-color: #f5a623;
  background: linear-gradient(180deg, #ffb52e, #f5a623);
  color: #181005;
  box-shadow: 0 10px 24px rgba(245, 166, 35, .2);
}

.register-mode .association-catalog-hero {
  display: grid;
  gap: 22px;
}

.register-mode .association-catalog-hero .catalog-hero-copy {
  max-width: 980px;
  margin-inline: auto;
}

.register-mode .association-filter-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #2a3a50;
  border-radius: 13px;
  background: rgba(5, 14, 26, .76);
}

.register-mode .association-filter-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(2, minmax(190px, 1fr));
  gap: 12px;
}

.register-mode .association-filter-grid label,
.register-mode .association-member-controls {
  min-width: 0;
}

.register-mode .association-filter-grid label {
  display: grid;
  gap: 7px;
}

.register-mode .association-filter-grid label > span {
  color: #93a3b7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.register-mode .association-filter-grid input,
.register-mode .association-filter-grid select,
.register-mode .association-member-controls input,
.register-mode .association-member-controls select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #2d405a;
  border-radius: 9px;
  background: #091524;
  color: #fff;
  font: inherit;
  font-size: 12px;
}

.register-mode .association-filter-grid input:focus,
.register-mode .association-filter-grid select:focus,
.register-mode .association-member-controls input:focus,
.register-mode .association-member-controls select:focus {
  border-color: #f5a623;
  outline: 2px solid rgba(245, 166, 35, .18);
  outline-offset: 1px;
}

.register-mode .association-advanced-filters {
  padding-top: 14px;
  border-top: 1px solid #26384f;
}

.register-mode .association-advanced-filters[hidden] {
  display: none;
}

.register-mode .association-filter-actions,
.register-mode .association-filter-actions > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  flex-wrap: wrap;
}

.register-mode .association-filter-actions button,
.register-mode .association-member-controls button,
.register-mode .association-back {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid #344861;
  border-radius: 8px;
  background: #0b1727;
  color: #bdc8d6;
  font: inherit;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
}

.register-mode .association-filter-actions button:hover,
.register-mode .association-member-controls button:hover,
.register-mode .association-back:hover {
  border-color: #f5a623;
  color: #f5a623;
}

.register-mode .association-filter-actions button.is-primary {
  min-width: 160px;
  border-color: #f5a623;
  background: #f5a623;
  color: #111827;
}

.register-mode .association-quick-filters,
.register-mode .association-member-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 7px;
  scrollbar-width: thin;
}

.register-mode .association-quick-filters button,
.register-mode .association-member-tabs button {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 8px 13px;
  border: 1px solid #2f425a;
  border-radius: 999px;
  background: rgba(255, 255, 255, .02);
  color: #9cadc1;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.register-mode .association-quick-filters button:hover,
.register-mode .association-quick-filters button.is-active,
.register-mode .association-member-tabs button:hover,
.register-mode .association-member-tabs button.is-active {
  border-color: #f5a623;
  background: rgba(245, 166, 35, .1);
  color: #f5a623;
}

.register-mode .association-results {
  margin-top: 0;
}

.register-mode .association-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.register-mode .association-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid #293b54;
  border-radius: 14px;
  background: linear-gradient(145deg, #101b2c, #0b1626);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.register-mode .association-card:hover,
.register-mode .association-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(245, 166, 35, .68);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .24);
  outline: none;
}

.register-mode .association-card-head,
.register-mode .association-detail-identity {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.register-mode .association-card-head > div:last-child,
.register-mode .association-detail-identity > div:last-child {
  min-width: 0;
}

.register-mode .association-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
  color: #f5a623;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.register-mode .association-logo.is-large {
  width: 88px;
  height: 88px;
  flex-basis: 88px;
  border-radius: 16px;
  font-size: 17px;
}

.register-mode .association-logo.is-dark-surface {
  border-color: rgba(83, 166, 210, .48);
  background: linear-gradient(145deg, #10263b, #081523);
}

.register-mode .association-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.register-mode .association-status,
.register-mode .association-badges span,
.register-mode .association-membership-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid rgba(245, 166, 35, .42);
  border-radius: 999px;
  background: rgba(245, 166, 35, .08);
  color: #f5a623;
  font-size: 9.5px;
  font-weight: 900;
}

.register-mode .association-card h2 {
  margin: 8px 0 4px;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}

.register-mode .association-card-head p,
.register-mode .association-description {
  margin: 0;
  color: #91a1b5;
  font-size: 11.5px;
  line-height: 1.55;
}

.register-mode .association-description {
  display: -webkit-box;
  min-height: 54px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.register-mode .association-tags,
.register-mode .association-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.register-mode .association-tags span {
  padding: 5px 8px;
  border: 1px solid #2c3d54;
  border-radius: 999px;
  color: #a3b1c2;
  font-size: 9.5px;
  font-weight: 750;
}

.register-mode .association-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid #28394e;
}

.register-mode .association-card footer strong {
  color: #f5a623;
  font-size: 11px;
}

.register-mode .association-card footer button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #f5a623;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.register-mode .association-detail-hero {
  padding: 20px;
  border-color: #2a3d56;
  background:
    radial-gradient(circle at 88% 8%, rgba(245, 166, 35, .1), transparent 30%),
    linear-gradient(145deg, #111d2f, #0b1727 72%);
}

.register-mode .association-detail-hero h1 {
  margin: 9px 0 7px;
  text-align: left;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.08;
}

.register-mode .association-detail-hero .association-detail-identity > div:last-child > p {
  max-width: 760px;
  margin: 0 0 10px;
  color: #aeb9c8;
  font-size: 13px;
  line-height: 1.55;
}

.register-mode .association-profile-hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, .85fr);
  align-items: stretch;
  gap: 22px;
}

.register-mode .association-profile-hero-main .association-detail-identity {
  align-items: flex-start;
  min-width: 0;
  padding: 10px;
}

.register-mode .association-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.register-mode .association-profile-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid #38506d;
  border-radius: 8px;
  color: #d7e0ea;
  background: #0b1727;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

.register-mode .association-profile-action:hover,
.register-mode .association-profile-action:focus-visible {
  border-color: #f5a623;
  color: #f5a623;
  outline: none;
}

.register-mode .association-profile-action.is-primary {
  border-color: #f5a623;
  background: #f5a623;
  color: #111827;
}

.register-mode .association-profile-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.register-mode .association-profile-metrics article {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 15px;
  border: 1px solid #2b3e57;
  border-radius: 11px;
  background: rgba(17, 29, 47, .92);
}

.register-mode .association-profile-metrics article.is-verified {
  border-color: rgba(72, 202, 151, .34);
  background: rgba(31, 116, 86, .1);
}

.register-mode .association-profile-metrics span {
  color: #91a1b5;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.register-mode .association-profile-metrics strong {
  color: #fff;
  font-size: 27px;
  line-height: 1;
}

.register-mode .association-profile-metrics .is-verified strong { color: #53d5a3; }

.register-mode .association-profile-metrics small {
  color: #7f90a5;
  font-size: 9.5px;
  line-height: 1.3;
}

.register-mode .association-profile-hero-foot {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(460px, 1.28fr);
  gap: 10px;
  margin-top: 14px;
}

.register-mode .association-trust-note {
  max-width: none;
  margin: 0;
  padding: 13px 15px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(245, 166, 35, .25);
  border-radius: 10px;
  background: rgba(245, 166, 35, .055);
  color: #a8b5c6;
  font-size: 10px;
  line-height: 1.45;
}

.register-mode .association-trust-note strong {
  color: #f5a623;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.register-mode .association-trust-note span { display: block; }

.register-mode .association-source-summary {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 13px 15px;
  border: 1px solid rgba(76, 213, 166, .25);
  border-radius: 10px;
  background: rgba(27, 122, 94, .08);
}

.register-mode .association-source-summary span {
  color: #4cd5a6;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.register-mode .association-source-summary strong {
  color: #dbe6ef;
  font-size: 11px;
}

.register-mode .association-ltrk-demo {
  display: grid;
  grid-template-columns: minmax(230px, .85fr) minmax(300px, 1.15fr);
  align-items: center;
  gap: 14px;
  margin-top: 0;
  padding: 12px 14px;
  border: 1px solid rgba(76, 213, 166, .28);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(27, 122, 94, .14), rgba(13, 31, 51, .66));
}

.register-mode .association-ltrk-demo > div {
  display: grid;
  gap: 5px;
}

.register-mode .association-ltrk-demo span {
  color: #4cd5a6;
  font-size: 9.5px;
  font-weight: 950;
  letter-spacing: .09em;
}

.register-mode .association-ltrk-demo strong {
  color: #f4f8fc;
  font-size: 11px;
  line-height: 1.4;
}

.register-mode .association-ltrk-demo p {
  margin: 0;
  color: #aebbd0;
  font-size: 10px;
  line-height: 1.45;
}

.register-mode .association-website {
  display: inline-flex;
  margin-top: 13px;
  color: #f5a623;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.register-mode .association-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.register-mode .association-stats article {
  display: grid;
  gap: 7px;
  padding: 17px;
  border: 1px solid #2b3d55;
  border-radius: 12px;
  background: #101b2c;
}

.register-mode .association-stats span {
  color: #91a1b5;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.register-mode .association-stats strong {
  color: #fff;
  font-size: 25px;
}

.register-mode .association-member-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, .4fr) auto;
  gap: 10px;
  margin: 14px 0 10px;
}

.register-mode .association-demo-readiness {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(245, 166, 35, .38);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245, 166, 35, .12), rgba(28, 86, 112, .16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.register-mode .association-demo-readiness > span {
  color: #f5a623;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.register-mode .association-demo-readiness h3,
.register-mode .association-demo-readiness p {
  margin: 0;
}

.register-mode .association-demo-readiness h3 {
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
}

.register-mode .association-demo-readiness p {
  max-width: 820px;
  color: #aebbd0;
  font-size: 13px;
  line-height: 1.65;
}

.register-mode .association-demo-readiness > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 4px;
}

.register-mode .association-demo-readiness > div strong {
  padding: 11px 13px;
  border: 1px solid rgba(121, 178, 209, .28);
  border-radius: 9px;
  background: rgba(7, 17, 31, .46);
  color: #dce8f4;
  font-size: 11px;
  text-align: center;
}

.register-mode .association-profile-wrap {
  display: flex;
  min-width: 0;
}

.register-mode .association-profile-wrap .catalog-profile-card {
  width: 100%;
  height: 100%;
  min-height: 430px;
  padding: 18px;
}

.register-mode .association-membership-note {
  position: static;
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  max-width: none;
  margin-top: auto;
  padding: 8px 10px;
  border-radius: 8px;
  pointer-events: auto;
}

.register-mode .association-membership-note > span {
  min-width: 0;
}

.register-mode .association-membership-note a {
  padding-left: 8px;
  border-left: 1px solid rgba(245, 166, 35, .32);
  color: #ffd07b;
  white-space: nowrap;
  text-decoration: none;
}

.register-mode .association-membership-note a:hover,
.register-mode .association-membership-note a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.register-mode .association-profile-wrap .catalog-profile-link {
  min-height: 42px;
  margin-top: 9px;
  padding: 11px 0 0;
  font-size: 13px;
}

.register-mode .association-profile-wrap .catalog-leader-evidence {
  margin-top: 12px;
  padding-bottom: 11px;
}

@media (max-width: 1080px) {
  .register-mode .association-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .register-mode .association-profile-hero-main {
    grid-template-columns: 1fr;
  }

  .register-mode .association-profile-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .register-mode .association-profile-metrics article {
    min-height: 92px;
  }
}

@media (max-width: 760px) {
  .register-mode .catalog-type-switch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    overflow: visible;
  }

  .register-mode .catalog-type-switch button {
    min-width: 0;
    width: 100%;
  }

  .register-mode .association-filter-grid,
  .register-mode .association-member-controls {
    grid-template-columns: 1fr;
  }

  .register-mode .association-demo-readiness > div {
    grid-template-columns: 1fr;
  }

  .register-mode .association-ltrk-demo {
    grid-template-columns: 1fr;
  }

  .register-mode .association-profile-hero-foot {
    grid-template-columns: 1fr;
  }

  .register-mode .association-profile-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .register-mode .association-filter-actions,
  .register-mode .association-filter-actions > div {
    align-items: stretch;
    width: 100%;
  }

  .register-mode .association-filter-actions button {
    flex: 1 1 auto;
  }

  .register-mode .association-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .register-mode .association-card-grid,
  .register-mode .association-stats {
    grid-template-columns: 1fr;
  }

  .register-mode .association-card,
  .register-mode .association-filter-panel {
    padding: 14px;
  }

  .register-mode .association-detail-identity {
    display: grid;
  }

  .register-mode .association-detail-hero {
    padding: 14px;
  }

  .register-mode .association-detail-hero h1 {
    font-size: 27px;
  }

  .register-mode .association-profile-hero-main .association-detail-identity {
    padding: 4px;
  }

  .register-mode .association-profile-metrics article {
    min-height: 86px;
    padding: 12px;
  }

  .register-mode .association-profile-metrics strong {
    font-size: 23px;
  }

  .register-mode .association-profile-actions,
  .register-mode .association-profile-action {
    width: 100%;
  }

  .register-mode .association-logo.is-large {
    width: 72px;
    height: 72px;
  }

  .register-mode .association-membership-note {
    position: static;
    margin: auto 0 0;
    flex-wrap: wrap;
  }

  .register-mode .association-profile-wrap .catalog-profile-card {
    min-height: 0;
  }
}

/* Association membership marks in public company and professional profile headers */
.register-mode .gb-source-profile .hero-card:has(> .profile-associations) {
  grid-template-columns: minmax(0, 1.7fr) 92px minmax(0, 1.25fr) !important;
  gap: 18px !important;
}

.register-mode .gb-source-profile .profile-associations {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  padding-top: 7px;
  align-self: start;
}

.register-mode .gb-source-profile .profile-associations-label {
  color: #8493aa;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.register-mode .gb-source-profile .profile-associations-list {
  display: grid;
  justify-items: stretch;
  gap: 6px;
}

.register-mode .gb-source-profile .profile-association-code,
.register-mode .gb-source-profile .profile-association-more {
  min-width: 0;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(138, 158, 188, .3);
  border-radius: 8px;
  background: rgba(18, 31, 51, .84);
  color: #c8d4e6;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
  text-decoration: none;
  transition: border-color .16s ease, background-color .16s ease, color .16s ease;
}

.register-mode .gb-source-profile .profile-association-code:hover,
.register-mode .gb-source-profile .profile-association-code:focus-visible,
.register-mode .gb-source-profile .profile-association-more:hover,
.register-mode .gb-source-profile .profile-association-more:focus-visible {
  border-color: #f6ad20;
  background: rgba(246, 173, 32, .12);
  color: #f6ad20;
  outline: 0;
}

.register-mode .gb-source-profile .profile-association-more {
  border-color: rgba(246, 173, 32, .4);
  background: rgba(246, 173, 32, .12);
  color: #f6ad20;
}

@media (max-width: 1180px) {
  .register-mode .gb-source-profile .hero-card:has(> .profile-associations) {
    grid-template-columns: minmax(0, 1fr) 86px !important;
  }

  .register-mode .gb-source-profile .hero-card:has(> .profile-associations) > .hero-right-grid {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .register-mode .gb-source-profile .hero-card:has(> .profile-associations) {
    grid-template-columns: 1fr !important;
  }

  .register-mode .gb-source-profile .profile-associations {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 0;
  }

  .register-mode .gb-source-profile .profile-associations-label {
    text-align: left;
  }

  .register-mode .gb-source-profile .profile-associations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .register-mode .gb-source-profile .profile-association-code,
  .register-mode .gb-source-profile .profile-association-more {
    min-width: 62px;
    padding: 0 10px;
  }

  .register-mode .gb-source-profile .hero-card:has(> .profile-associations) > .hero-right-grid {
    grid-column: auto;
  }
}

/* Compact profile conclusions architecture — summary first, details on demand. */
.profile-conclusions-section {
  margin: 24px 0 20px;
}

.profile-conclusions-heading {
  display: flex;
  gap: 24px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.profile-conclusions-heading p {
  max-width: 820px;
  text-align: right;
  line-height: 1.45;
}

.profile-conclusions-card {
  border-radius: 16px;
}

.profile-conclusion-overview {
  gap: 18px;
  padding: 14px 18px;
}

.profile-conclusion-eyebrow {
  margin-bottom: 3px;
}

.profile-conclusion-overview h3 {
  line-height: 1.25;
}

.profile-conclusion-overview p {
  margin-top: 4px;
  line-height: 1.45;
}

.profile-conclusion-overview p small {
  color: #7f8ca0;
  font-size: 11px;
  line-height: inherit;
}

.profile-conclusion-overview-stats > span {
  min-height: 30px;
  padding: 5px 9px;
}

.profile-conclusions-grid {
  align-items: start;
}

.profile-conclusion-column {
  position: relative;
  padding: 14px 18px 10px;
}

.profile-conclusion-column > summary,
.profile-conclusion-row > summary,
.profile-conclusion-share > summary {
  list-style: none;
}

.profile-conclusion-column > summary::-webkit-details-marker,
.profile-conclusion-row > summary::-webkit-details-marker,
.profile-conclusion-share > summary::-webkit-details-marker {
  display: none;
}

.profile-conclusion-column-head {
  margin-bottom: 4px;
  cursor: default;
  pointer-events: none;
}

.profile-conclusion-column:has(> .profile-conclusion-source-button) > .profile-conclusion-column-head {
  padding-right: 102px;
}

.profile-conclusion-group-toggle {
  display: none;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

.profile-conclusion-source-button {
  position: absolute;
  top: 11px;
  right: 18px;
  min-height: 30px;
  padding: 6px 10px;
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.025);
  color: #cbd5e1;
  font-size: 11.5px;
  box-shadow: none;
}

.profile-conclusion-source-button:hover,
.profile-conclusion-source-button:focus-visible {
  border-color: rgba(245, 166, 35, 0.58);
  background: rgba(245, 166, 35, 0.08);
  color: var(--gold);
  outline: none;
}

.profile-conclusion-list {
  gap: 0;
}

.profile-conclusion-row {
  display: block;
  padding: 0;
}

.profile-conclusion-row-summary {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}

.profile-conclusion-row-summary:hover,
.profile-conclusion-row-summary:focus-visible {
  background: rgba(255, 255, 255, 0.022);
  outline: none;
}

.profile-conclusion-dot {
  margin-top: 0;
}

.profile-conclusion-copy {
  display: grid;
  grid-template-columns: minmax(165px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
  align-items: baseline;
}

.profile-conclusion-row-toggle {
  min-width: 45px;
  color: #8290a4;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}

.profile-conclusion-row[open] .profile-conclusion-row-toggle {
  font-size: 0;
}

.profile-conclusion-row[open] .profile-conclusion-row-toggle::after {
  content: "Aizvērt";
  font-size: 10.5px;
}

.profile-conclusion-details {
  display: flex;
  gap: 6px 14px;
  align-items: baseline;
  flex-wrap: wrap;
  margin: -2px 8px 0 27px;
  padding: 0 0 9px;
}

.profile-conclusion-details small {
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.45;
}

.profile-conclusion-details em {
  color: #718096;
  font-size: 10.5px;
  font-style: normal;
  line-height: 1.35;
}

.profile-conclusion-details em a {
  color: #8da0b7;
  text-decoration: none;
}

.profile-conclusion-details em a:hover {
  color: var(--gold);
}

.profile-conclusion-footer {
  min-height: 58px;
  padding: 10px 18px 14px;
}

.profile-conclusion-actions .btn {
  min-height: 38px;
}

.profile-conclusion-share {
  position: relative;
  display: block;
  color: #cbd5e1;
  font-size: 11px;
}

.profile-conclusion-share > summary {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: #cbd5e1;
  font-weight: 800;
  cursor: pointer;
}

.profile-conclusion-share > summary:hover,
.profile-conclusion-share > summary:focus-visible {
  border-color: rgba(245, 166, 35, 0.5);
  color: var(--gold);
  outline: none;
}

.profile-conclusion-share-options {
  position: absolute;
  right: 0;
  bottom: calc(100% + 7px);
  z-index: 5;
  display: flex;
  gap: 6px;
  min-width: max-content;
  padding: 7px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 9px;
  background: #0b1728;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

@media (max-width: 900px) {
  .profile-conclusions-heading {
    display: grid;
    gap: 5px;
  }

  .profile-conclusions-heading p {
    text-align: left;
  }

  .profile-conclusion-column-head {
    cursor: pointer;
    pointer-events: auto;
  }

  .profile-conclusion-group-toggle {
    display: inline-flex;
    margin-left: auto;
    color: #8290a4;
    font-size: 10.5px;
    font-weight: 700;
  }

  .profile-conclusion-column:not([open]) .profile-conclusion-group-toggle {
    font-size: 0;
  }

  .profile-conclusion-column:not([open]) .profile-conclusion-group-toggle::after {
    content: "Atvērt";
    font-size: 10.5px;
  }

  .profile-conclusion-column:has(> .profile-conclusion-source-button) > .profile-conclusion-column-head {
    padding-right: 0;
  }

  .profile-conclusion-source-button {
    position: static;
    margin: 2px 0 5px 12px;
  }
}

@media (max-width: 620px) {
  .profile-conclusions-section {
    margin: 20px 0 16px;
  }

  .profile-conclusion-overview {
    padding: 14px;
  }

  .profile-conclusion-overview-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .profile-conclusion-overview-stats > span {
    min-width: 0;
    justify-content: center;
    padding-inline: 6px;
    white-space: normal;
    text-align: center;
  }

  .profile-conclusion-column {
    padding: 13px 14px 8px;
  }

  .profile-conclusion-copy {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .profile-conclusion-row-summary {
    align-items: start;
    min-height: 0;
    padding: 10px 6px;
  }

  .profile-conclusion-row-toggle {
    padding-top: 4px;
  }

  .profile-conclusion-details {
    display: grid;
    gap: 4px;
    margin-left: 25px;
  }

  .profile-conclusion-source-button {
    width: auto;
    max-width: 100%;
    margin: 3px 0 6px;
  }

  .profile-conclusion-footer {
    gap: 9px;
    padding: 12px 14px 14px;
  }

  .profile-conclusion-actions,
  .profile-conclusion-actions .btn,
  .profile-conclusion-share,
  .profile-conclusion-share > summary {
    width: 100%;
  }

  .profile-conclusion-share-options {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
    margin-top: 7px;
    box-shadow: none;
  }
}
