:root {
    --bg: #f6f7f4;
    --surface: #ffffff;
    --ink: #22252a;
    --muted: #697078;
    --line: #dfe3dc;
    --accent: #0f766e;
    --accent-dark: #115e59;
    --danger: #b42318;
    --success: #267346;
    --warm: #c2410c;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0) 260px),
        var(--bg);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

.topbar {
    align-items: center;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 28px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
}

.nav {
    align-items: center;
    display: flex;
    gap: 18px;
}

.nav a,
.link-button {
    background: transparent;
    border: 0;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    padding: 0;
    text-decoration: none;
}

.nav a:hover,
.link-button:hover {
    color: var(--ink);
}

.logout-form {
    margin: 0;
}

.page {
    margin: 0 auto;
    max-width: 1180px;
    padding: 32px 24px 56px;
}

.auth-shell {
    display: grid;
    min-height: calc(100vh - 160px);
    place-items: center;
}

.auth-panel {
    max-width: 420px;
    width: 100%;
}

.section-heading {
    margin-bottom: 22px;
}

.section-heading h1,
.section-heading h2,
.panel h2 {
    margin: 0;
}

.section-heading p {
    color: var(--muted);
    margin: 6px 0 0;
}

.eyebrow {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.panel,
.metric-card,
.product-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.panel {
    box-shadow: 0 12px 30px rgba(34, 37, 42, 0.05);
    padding: 22px;
}

.panel + .panel,
.alert + .panel {
    margin-top: 18px;
}

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

.metric-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
}

.metric-card {
    padding: 18px;
}

.metric-card span,
.muted {
    color: var(--muted);
}

.metric-card strong {
    display: block;
    font-size: 32px;
    margin-top: 8px;
}

.content-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    margin-bottom: 18px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    border-collapse: collapse;
    min-width: 680px;
    width: 100%;
}

th,
td {
    border-bottom: 1px solid var(--line);
    padding: 10px 8px;
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: 13px;
}

label,
fieldset {
    display: grid;
    gap: 7px;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

legend {
    font-weight: 700;
    margin-bottom: 8px;
}

input,
select,
textarea {
    background: #fff;
    border: 1px solid #cfd6ce;
    border-radius: 6px;
    color: var(--ink);
    font: inherit;
    min-height: 42px;
    padding: 9px 11px;
    width: 100%;
}

input[type="file"] {
    cursor: pointer;
    padding: 8px 10px;
}

textarea {
    resize: vertical;
}

.field-hint {
    color: var(--muted);
    font-size: 12px;
}

.form-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full-span {
    grid-column: 1 / -1;
}

.form-actions {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.primary-button,
.secondary-button,
.small-button {
    align-items: center;
    border-radius: 6px;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    text-decoration: none;
}

button.primary-button,
button.secondary-button,
button.small-button {
    cursor: pointer;
    font: inherit;
}

.primary-button {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
}

.primary-button:hover {
    background: var(--accent-dark);
}

.secondary-button,
.small-button {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
}

.small-button {
    min-height: 34px;
    padding: 6px 10px;
}

.alert {
    border-radius: 8px;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.alert-error {
    background: #fff1f0;
    border: 1px solid #fecaca;
    color: var(--danger);
}

.alert-success {
    background: #eefcf3;
    border: 1px solid #bbf7d0;
    color: var(--success);
}

.checkbox-grid,
.product-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.check-card {
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    gap: 10px;
    padding: 12px;
}

.check-card input {
    margin-top: 4px;
    min-height: auto;
    width: auto;
}

.product-link-card {
    display: grid;
}

.product-link-main {
    align-items: flex-start;
    display: flex;
    gap: 10px;
}

.asset-option-list {
    border-top: 1px solid var(--line);
    display: grid;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
}

.asset-option {
    align-items: center;
    background: rgba(15, 118, 110, 0.06);
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 6px;
    display: flex;
    gap: 8px;
    padding: 8px;
}

.asset-option span {
    font-size: 13px;
    font-weight: 700;
}

.check-card small,
.tag {
    color: var(--warm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.inline-check {
    align-items: center;
    display: flex;
    gap: 10px;
}

.inline-check input {
    min-height: auto;
    width: auto;
}

.generated-link input {
    font-family: Consolas, Monaco, monospace;
}

.rank-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rank-list li {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.product-card {
    display: grid;
    overflow: hidden;
}

.product-card img {
    aspect-ratio: 16 / 9;
    background: #e9ece8;
    object-fit: cover;
    width: 100%;
}

.product-card-body {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.product-card-body .primary-button,
.product-card-body .secondary-button {
    width: fit-content;
}

.product-card h2 {
    font-size: 20px;
    margin: 0;
}

.product-card p {
    margin: 0;
}

.showroom-hero {
    align-items: stretch;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 320px;
    margin-bottom: 24px;
    padding: 34px;
}

.showroom-hero h1 {
    font-size: 52px;
    line-height: 1;
    margin: 0;
}

.showroom-subtitle {
    color: var(--muted);
    font-size: 20px;
    margin: 14px 0 0;
    max-width: 720px;
}

.showroom-client {
    align-items: center;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 24px;
    padding: 14px;
    width: fit-content;
}

.showroom-client span {
    color: var(--muted);
}

.showroom-notice {
    align-content: start;
    background: #123c35;
    border-radius: 8px;
    color: #d1fae5;
    display: grid;
    gap: 10px;
    padding: 20px;
}

.showroom-notice strong {
    color: #ffffff;
}

.showroom-notice a {
    color: #99f6e4;
    font-weight: 700;
    margin-top: 6px;
    text-decoration: none;
}

.showroom-toolbar {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.showroom-toolbar h2 {
    margin: 0;
}

.showroom-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.showroom-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    overflow: hidden;
}

.showroom-card > img {
    aspect-ratio: 16 / 9;
    background: #e9ece8;
    object-fit: cover;
    width: 100%;
}

.showroom-card-body {
    display: grid;
    gap: 14px;
    padding: 20px;
}

.showroom-card-body h2,
.showroom-card-body p {
    margin: 0;
}

.showroom-card-body p {
    color: var(--muted);
}

.showroom-card-meta,
.showroom-card-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.showroom-card-meta span {
    background: #f1f5f9;
    border: 1px solid #dbe3dd;
    border-radius: 999px;
    color: #334155;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 9px;
    text-transform: uppercase;
}

.showroom-card-meta .visibility-badge {
    background: #ecfdf5;
    border-color: #99f6e4;
    color: var(--accent-dark);
}

.product-detail {
    display: grid;
    gap: 18px;
}

.product-detail img {
    border-radius: 8px;
    max-height: 420px;
    object-fit: cover;
    width: 100%;
}

.rich-text {
    color: var(--ink);
}

.product-hero {
    align-items: stretch;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    margin-bottom: 24px;
    overflow: hidden;
}

.product-hero-copy {
    display: grid;
    gap: 18px;
    padding: 34px;
}

.product-hero-copy h1 {
    font-size: 48px;
    line-height: 1;
    margin: 0;
}

.product-tagline {
    color: var(--muted);
    font-size: 20px;
    margin: 0;
    max-width: 680px;
}

.product-hero-meta,
.product-hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-hero-meta span,
.visibility-badge {
    background: #f1f5f9;
    border: 1px solid #dbe3dd;
    border-radius: 999px;
    color: #334155;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    text-transform: uppercase;
}

.product-hero-meta .visibility-badge {
    background: #ecfdf5;
    border-color: #99f6e4;
    color: var(--accent-dark);
}

.product-hero-media {
    background: #e9ece8;
    min-height: 320px;
}

.product-hero-media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-section {
    margin-top: 24px;
}

.product-summary-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-summary-grid > .panel {
    margin-top: 0;
}

.summary-panel {
    display: grid;
    gap: 10px;
}

.summary-panel p {
    color: var(--muted);
    margin: 0;
}

.feature-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 10px;
    padding: 20px;
}

.feature-card h3,
.use-case-item h3,
.product-cta-panel h2 {
    margin: 0;
}

.feature-card p,
.use-case-item p {
    color: var(--muted);
    margin: 0;
}

.feature-icon {
    align-items: center;
    background: #ecfdf5;
    border-radius: 8px;
    color: var(--accent-dark);
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.protected-folder-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.protected-folder-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 18px;
    padding: 20px;
}

.protected-folder-card h3,
.protected-folder-card p {
    margin: 0;
}

.protected-folder-card p,
.protected-folder-card small {
    color: var(--muted);
}

.asset-file-type {
    background: #fff1f0;
    border: 1px solid #fecaca;
    border-radius: 999px;
    color: var(--danger);
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
    padding: 3px 8px;
}

.operational-flow {
    background: #123c35;
    border-radius: 8px;
    color: #ffffff;
    padding: 28px;
}

.operational-flow .eyebrow {
    color: #99f6e4;
}

.operational-flow h2,
.operational-flow p {
    margin: 0;
}

.operational-flow p {
    color: #d1fae5;
    font-size: 18px;
    margin-top: 12px;
}

.screenshot-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.screenshot-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin: 0;
    overflow: hidden;
}

.screenshot-card img {
    aspect-ratio: 16 / 10;
    background: #e9ece8;
    display: block;
    object-fit: cover;
    width: 100%;
}

.screenshot-card figcaption {
    display: grid;
    gap: 5px;
    padding: 14px 16px 16px;
}

.screenshot-card figcaption span {
    color: var(--muted);
}

.use-case-list {
    display: grid;
    gap: 14px;
}

.use-case-item {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
}

.confidentiality-note {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    color: #7c2d12;
    padding: 16px;
}

.product-cta-panel {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-top: 24px;
    padding: 24px;
}

body:has(.showroom-hero),
body:has(.product-hero),
body:has(.public-shell) {
    --public-bg: #090b12;
    --public-surface: #111722;
    --public-surface-strong: #171f2e;
    --public-line: rgba(196, 220, 210, 0.18);
    --public-text: #edf5f2;
    --public-muted: #aab8b3;
    --public-mint: #a7f3d0;
    --public-mint-strong: #5ee6b5;
    --public-wine: #31131f;
    --public-violet: #241a3f;
    background:
        linear-gradient(145deg, #090b12 0%, #161024 48%, #2a111f 100%),
        var(--public-bg);
    color: var(--public-text);
}

body:has(.showroom-hero) .topbar,
body:has(.product-hero) .topbar,
body:has(.public-shell) .topbar {
    background: rgba(9, 11, 18, 0.84);
    border-bottom-color: var(--public-line);
    backdrop-filter: blur(18px);
}

body:has(.showroom-hero) .brand,
body:has(.product-hero) .brand,
body:has(.public-shell) .brand {
    color: var(--public-text);
}

body:has(.showroom-hero) .nav a,
body:has(.product-hero) .nav a,
body:has(.public-shell) .nav a {
    color: var(--public-muted);
}

body:has(.showroom-hero) .nav a:hover,
body:has(.product-hero) .nav a:hover,
body:has(.public-shell) .nav a:hover {
    color: var(--public-mint);
}

body:has(.showroom-hero) .page,
body:has(.product-hero) .page,
body:has(.public-shell) .page {
    max-width: 1240px;
}

body:has(.showroom-hero) .eyebrow,
body:has(.product-hero) .eyebrow,
body:has(.public-shell) .eyebrow {
    color: var(--public-mint);
}

body:has(.showroom-hero) .showroom-hero,
body:has(.product-hero) .product-hero {
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.98), rgba(49, 19, 31, 0.94)),
        var(--public-surface);
    border-color: var(--public-line);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    color: var(--public-text);
    position: relative;
}

body:has(.showroom-hero) .showroom-hero::after,
body:has(.product-hero) .product-hero::after {
    background: linear-gradient(90deg, rgba(167, 243, 208, 0.22), rgba(94, 230, 181, 0));
    content: "";
    height: 1px;
    left: 34px;
    position: absolute;
    right: 34px;
    top: 0;
}

body:has(.showroom-hero) .showroom-hero h1,
body:has(.product-hero) .product-hero h1 {
    color: #ffffff;
}

body:has(.showroom-hero) .showroom-subtitle,
body:has(.product-hero) .product-tagline,
body:has(.product-hero) .section-heading p,
body:has(.showroom-hero) .section-heading p {
    color: var(--public-muted);
}

body:has(.showroom-hero) .showroom-client,
body:has(.product-hero) .product-hero-meta span,
body:has(.showroom-hero) .showroom-card-meta span {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--public-line);
    color: #d9e7e1;
}

body:has(.showroom-hero) .showroom-client span {
    color: var(--public-muted);
}

body:has(.showroom-hero) .showroom-notice {
    background: rgba(9, 11, 18, 0.56);
    border: 1px solid var(--public-line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: var(--public-muted);
}

body:has(.showroom-hero) .showroom-notice strong {
    color: #ffffff;
}

body:has(.showroom-hero) .showroom-notice a,
body:has(.showroom-hero) .inline-link,
body:has(.product-hero) .inline-link {
    color: var(--public-mint);
}

body:has(.showroom-hero) .showroom-toolbar h2,
body:has(.product-hero) .section-heading h2,
body:has(.product-hero) .product-cta-panel h2 {
    color: var(--public-text);
}

body:has(.showroom-hero) .showroom-card,
body:has(.product-hero) .feature-card,
body:has(.product-hero) .screenshot-card,
body:has(.product-hero) .protected-folder-card,
body:has(.product-hero) .use-case-item,
body:has(.product-hero) .summary-panel,
body:has(.product-hero) .product-cta-panel,
body:has(.public-shell) .panel {
    background: rgba(17, 23, 34, 0.86);
    border-color: var(--public-line);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    color: var(--public-text);
}

body:has(.showroom-hero) .showroom-card {
    transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

body:has(.showroom-hero) .showroom-card:hover {
    border-color: rgba(167, 243, 208, 0.42);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
    transform: translateY(-2px);
}

body:has(.showroom-hero) .showroom-card > img,
body:has(.product-hero) .product-hero-media img,
body:has(.product-hero) .screenshot-card img {
    background: #0b1020;
    object-fit: contain;
}

body:has(.showroom-hero) .showroom-card-body h2,
body:has(.product-hero) .feature-card h3,
body:has(.product-hero) .protected-folder-card h3,
body:has(.product-hero) .use-case-item h3,
body:has(.product-hero) .summary-panel h2,
body:has(.product-hero) .screenshot-card figcaption strong {
    color: #ffffff;
}

body:has(.showroom-hero) .showroom-card-body p,
body:has(.product-hero) .feature-card p,
body:has(.product-hero) .protected-folder-card p,
body:has(.product-hero) .protected-folder-card small,
body:has(.product-hero) .use-case-item p,
body:has(.product-hero) .summary-panel p,
body:has(.product-hero) .screenshot-card figcaption span,
body:has(.product-hero) .muted {
    color: var(--public-muted);
}

body:has(.showroom-hero) .visibility-badge,
body:has(.product-hero) .visibility-badge {
    background: rgba(167, 243, 208, 0.12);
    border-color: rgba(167, 243, 208, 0.42);
    color: var(--public-mint);
}

body:has(.showroom-hero) .primary-button,
body:has(.product-hero) .primary-button {
    background: var(--public-mint);
    border-color: var(--public-mint);
    color: #082018;
    box-shadow: 0 10px 24px rgba(94, 230, 181, 0.22);
}

body:has(.showroom-hero) .primary-button:hover,
body:has(.product-hero) .primary-button:hover {
    background: var(--public-mint-strong);
    border-color: var(--public-mint-strong);
}

body:has(.showroom-hero) .secondary-button,
body:has(.product-hero) .secondary-button,
body:has(.public-shell) .secondary-button {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--public-line);
    color: var(--public-text);
}

body:has(.showroom-hero) .secondary-button:hover,
body:has(.product-hero) .secondary-button:hover,
body:has(.public-shell) .secondary-button:hover {
    border-color: rgba(167, 243, 208, 0.42);
    color: var(--public-mint);
}

body:has(.product-hero) .feature-icon {
    background: rgba(167, 243, 208, 0.12);
    color: var(--public-mint);
}

body:has(.product-hero) .operational-flow {
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.28), rgba(49, 19, 31, 0.82)),
        var(--public-surface-strong);
    border: 1px solid var(--public-line);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

body:has(.product-hero) .operational-flow p {
    color: #d9e7e1;
}

body:has(.product-hero) .confidentiality-note {
    background: rgba(49, 19, 31, 0.72);
    border-color: rgba(251, 191, 36, 0.22);
    color: #f8d7b0;
}

body:has(.public-shell) .alert-error {
    background: rgba(127, 29, 29, 0.32);
    border-color: rgba(248, 113, 113, 0.34);
    color: #fecaca;
}

.inline-link {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.inline-link:hover {
    text-decoration: underline;
}

.event-pill {
    background: #ecfdf5;
    border: 1px solid #99f6e4;
    border-radius: 999px;
    color: var(--accent-dark);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
}

.timeline-list,
.plain-list {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline-list li {
    border-left: 3px solid var(--accent);
    padding-left: 14px;
}

.timeline-list strong {
    display: block;
    margin-top: 8px;
}

.timeline-list p {
    margin: 4px 0 0;
}

.plain-list li {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 4px;
    padding-bottom: 12px;
}

.plain-list span {
    color: var(--warm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.asset-summary {
    color: var(--muted);
    display: block;
    font-size: 12px;
}

.public-shell {
    margin: 8vh auto 0;
    max-width: 640px;
}

@media (max-width: 780px) {
    .topbar,
    .nav,
    .form-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar {
        gap: 14px;
        padding: 18px;
    }

    .page {
        padding: 24px 16px 40px;
    }

    .metric-grid,
    .content-grid,
    .form-grid,
    .showroom-hero,
    .product-hero,
    .product-summary-grid {
        grid-template-columns: 1fr;
    }

    .showroom-hero {
        padding: 24px;
    }

    .showroom-hero h1 {
        font-size: 36px;
    }

    .showroom-subtitle {
        font-size: 18px;
    }

    .showroom-notice {
        min-height: auto;
    }

    .showroom-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .product-hero-copy {
        padding: 24px;
    }

    .product-hero-copy h1 {
        font-size: 34px;
    }

    .product-hero-media {
        min-height: 220px;
    }

    .product-cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Inspect-inspired global theme */
:root {
    --bg: #080a10;
    --surface: rgba(18, 24, 35, 0.92);
    --surface-strong: #151d2a;
    --surface-soft: rgba(255, 255, 255, 0.055);
    --ink: #edf5f2;
    --muted: #aab8b3;
    --line: rgba(207, 222, 216, 0.16);
    --accent: #9df3cf;
    --accent-dark: #5ee6b5;
    --danger: #fca5a5;
    --success: #8cf0bd;
    --warm: #f8c78a;
    --inspect-violet: #231936;
    --inspect-wine: #351520;
    --inspect-graphite: #111722;
}

body {
    background:
        linear-gradient(180deg, rgba(157, 243, 207, 0.08), rgba(157, 243, 207, 0) 280px),
        linear-gradient(115deg, rgba(35, 25, 54, 0.38), rgba(53, 21, 32, 0) 52%),
        linear-gradient(145deg, #080a10 0%, #111722 42%, #351520 100%);
    color: var(--ink);
    font-family: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
}

a {
    color: var(--accent);
}

.topbar {
    background: rgba(8, 10, 16, 0.88);
    border-bottom-color: var(--line);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.brand {
    color: #ffffff;
    letter-spacing: 0;
}

.nav a,
.link-button {
    color: var(--muted);
}

.nav a:hover,
.link-button:hover {
    color: var(--accent);
}

.page {
    max-width: 1240px;
}

.eyebrow {
    color: var(--accent);
}

.section-heading h1,
.section-heading h2,
.panel h2,
.metric-card strong,
.product-card h2,
.showroom-card-body h2,
.product-hero-copy h1,
.product-cta-panel h2 {
    color: #ffffff;
}

.section-heading p,
.muted,
.metric-card span,
th,
.product-card p,
.showroom-card-body p,
.feature-card p,
.protected-folder-card p,
.protected-folder-card small,
.use-case-item p,
.summary-panel p,
.screenshot-card figcaption span {
    color: var(--muted);
}

.panel,
.metric-card,
.product-card,
.showroom-card,
.feature-card,
.screenshot-card,
.protected-folder-card,
.use-case-item,
.summary-panel,
.product-cta-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
        var(--surface);
    border-color: var(--line);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    color: var(--ink);
}

.panel-header {
    border-bottom: 1px solid rgba(207, 222, 216, 0.08);
    padding-bottom: 14px;
}

.metric-card {
    position: relative;
    overflow: hidden;
}

.metric-card::after {
    background: linear-gradient(90deg, rgba(157, 243, 207, 0.42), rgba(157, 243, 207, 0));
    bottom: 0;
    content: "";
    height: 2px;
    left: 18px;
    position: absolute;
    right: 18px;
}

table {
    color: var(--ink);
}

th,
td {
    border-bottom-color: rgba(207, 222, 216, 0.12);
}

tr:hover td {
    background: rgba(255, 255, 255, 0.025);
}

input,
select,
textarea {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--line);
    color: var(--ink);
}

input::placeholder,
textarea::placeholder {
    color: rgba(170, 184, 179, 0.74);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(157, 243, 207, 0.56);
    box-shadow: 0 0 0 3px rgba(157, 243, 207, 0.12);
    outline: none;
}

select option {
    background: #111722;
    color: var(--ink);
}

.primary-button {
    background: var(--accent);
    border-color: var(--accent);
    color: #071610;
    box-shadow: 0 12px 28px rgba(94, 230, 181, 0.22);
}

.primary-button:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.secondary-button,
.small-button {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--line);
    color: var(--ink);
}

.secondary-button:hover,
.small-button:hover {
    border-color: rgba(157, 243, 207, 0.42);
    color: var(--accent);
}

.alert-error {
    background: rgba(127, 29, 29, 0.28);
    border-color: rgba(252, 165, 165, 0.32);
    color: #fecaca;
}

.alert-success {
    background: rgba(20, 83, 45, 0.28);
    border-color: rgba(140, 240, 189, 0.32);
    color: #bbf7d0;
}

.check-card {
    background: rgba(255, 255, 255, 0.045);
    border-color: var(--line);
}

.check-card:hover {
    border-color: rgba(157, 243, 207, 0.38);
}

.check-card small,
.tag,
.plain-list span {
    color: var(--warm);
}

.generated-link input {
    background: rgba(157, 243, 207, 0.08);
    color: var(--accent);
}

.rank-list li,
.plain-list li {
    border-bottom-color: rgba(207, 222, 216, 0.12);
}

.product-card,
.showroom-card {
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover,
.showroom-card:hover {
    border-color: rgba(157, 243, 207, 0.42);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
    transform: translateY(-2px);
}

.product-card img,
.showroom-card > img,
.product-hero-media img,
.screenshot-card img {
    background: #0d121d;
    object-fit: contain;
}

.inline-link {
    color: var(--accent);
}

.event-pill,
.visibility-badge,
.showroom-card-meta .visibility-badge,
.product-hero-meta .visibility-badge {
    background: rgba(157, 243, 207, 0.12);
    border-color: rgba(157, 243, 207, 0.42);
    color: var(--accent);
}

.showroom-hero,
.product-hero {
    background:
        linear-gradient(145deg, rgba(17, 24, 39, 0.98), rgba(53, 21, 32, 0.94)),
        var(--surface-strong);
    border-color: var(--line);
    box-shadow: 0 28px 88px rgba(0, 0, 0, 0.4);
}

.showroom-hero h1,
.product-hero h1 {
    color: #ffffff;
}

.showroom-subtitle,
.product-tagline {
    color: var(--muted);
}

.showroom-client,
.product-hero-meta span,
.showroom-card-meta span {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--line);
    color: #dbe7e2;
}

.showroom-client span {
    color: var(--muted);
}

.showroom-notice {
    background: rgba(8, 10, 16, 0.58);
    border: 1px solid var(--line);
    color: var(--muted);
}

.showroom-notice strong {
    color: #ffffff;
}

.showroom-notice a {
    color: var(--accent);
}

.feature-icon {
    background: rgba(157, 243, 207, 0.12);
    color: var(--accent);
}

.operational-flow {
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.24), rgba(53, 21, 32, 0.84)),
        var(--surface-strong);
    border: 1px solid var(--line);
}

.operational-flow p {
    color: #dce9e4;
}

.confidentiality-note {
    background: rgba(53, 21, 32, 0.72);
    border-color: rgba(248, 199, 138, 0.25);
    color: #f8d7b0;
}

.auth-shell .panel {
    max-width: 460px;
}

.public-shell {
    color: var(--ink);
}

.product-edit-form,
.admin-form-section {
    display: grid;
    gap: 18px;
}

.form-stack {
    display: grid;
    gap: 16px;
}

.filter-panel {
    align-items: end;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    margin-bottom: 18px;
}

.detail-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-bottom: 18px;
}

.detail-grid > div {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 4px;
    padding: 14px;
}

.status-pill {
    background: rgba(157, 243, 207, 0.12);
    border: 1px solid rgba(157, 243, 207, 0.42);
    border-radius: 999px;
    color: var(--accent);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
}

.session-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.session-list li {
    border-bottom: 1px solid rgba(207, 222, 216, 0.12);
    display: grid;
    gap: 4px;
    padding-bottom: 12px;
}

.session-list small {
    color: var(--muted);
    overflow-wrap: anywhere;
}

.contact-map-hero {
    margin-bottom: 24px;
}

.contact-map-layout {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.brazil-map-panel {
    align-content: center;
    display: grid;
}

.brazil-map-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(7, minmax(34px, 1fr));
}

.state-map-spacer {
    min-height: 46px;
}

.state-map-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    cursor: pointer;
    display: grid;
    gap: 2px;
    min-height: 46px;
    padding: 6px;
    text-align: center;
}

.state-map-button strong {
    color: #ffffff;
    font-size: 13px;
}

.state-map-button span {
    color: var(--muted);
    font-size: 11px;
}

.state-map-button.has-contact {
    background: rgba(157, 243, 207, 0.1);
    border-color: rgba(157, 243, 207, 0.34);
}

.state-map-button.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #071610;
}

.state-map-button.is-active strong,
.state-map-button.is-active span {
    color: #071610;
}

.state-contact-panel {
    min-height: 360px;
}

.contact-card-list {
    display: grid;
    gap: 14px;
}

.mini-business-card,
.business-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
        rgba(17, 23, 34, 0.88);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
}

.mini-business-card {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 74px minmax(0, 1fr);
    padding: 14px;
}

.mini-business-card h3,
.mini-business-card p {
    margin: 0;
}

.mini-business-card p {
    color: var(--muted);
}

.mini-business-photo,
.business-card-photo {
    background: #ffffff;
    border-radius: 8px;
    display: grid;
    overflow: hidden;
    place-items: center;
}

.mini-business-photo {
    height: 64px;
    width: 64px;
}

.mini-business-photo img,
.business-card-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.mini-business-photo span,
.business-card-photo span {
    color: #552b59;
    font-weight: 800;
}

.contact-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.compact-actions {
    margin-top: 12px;
}

.compact-actions .primary-button,
.compact-actions .secondary-button {
    min-height: 34px;
    padding: 6px 10px;
}

.contact-card-hero {
    margin: 0 auto;
    max-width: 940px;
}

.business-card {
    align-items: stretch;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1fr);
    padding: 24px;
}

.business-card-photo {
    min-height: 360px;
}

.business-card-photo span {
    font-size: 82px;
}

.business-card-body {
    align-content: center;
    display: grid;
}

.business-card-body h1 {
    color: #ffffff;
    font-size: 46px;
    line-height: 1;
    margin: 0;
}

.contact-role {
    color: var(--accent);
    font-weight: 700;
    margin: 10px 0 0;
}

.contact-bio {
    color: var(--muted);
    margin: 18px 0 0;
}

.contact-detail-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
}

.contact-detail-list div {
    border-top: 1px solid rgba(207, 222, 216, 0.12);
    display: grid;
    gap: 3px;
    padding-top: 12px;
}

.contact-detail-list dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-detail-list dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.brazil-map-panel {
    overflow: hidden;
    position: relative;
}

.brazil-map-panel::before {
    background:
        radial-gradient(circle at 28% 22%, rgba(157, 243, 207, 0.14), transparent 28%),
        radial-gradient(circle at 78% 72%, rgba(92, 32, 60, 0.34), transparent 34%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.brazil-map-header,
.brazil-svg-map,
.map-footnote {
    position: relative;
}

.brazil-map-header {
    margin-bottom: 10px;
}

.brazil-map-header h2 {
    color: #ffffff;
    margin: 0;
}

.brazil-svg-map {
    display: block;
    margin: 0 auto;
    max-height: 650px;
    max-width: 560px;
    width: 100%;
}

.brazil-state {
    cursor: pointer;
    fill: rgba(255, 255, 255, 0.055);
    outline: none;
    stroke: rgba(207, 222, 216, 0.24);
    stroke-linejoin: round;
    stroke-width: 1.6;
    transition: fill 160ms ease, filter 160ms ease, stroke 160ms ease, transform 160ms ease;
}

.brazil-state:hover,
.brazil-state:focus {
    fill: rgba(157, 243, 207, 0.16);
    stroke: rgba(157, 243, 207, 0.64);
}

.brazil-state.has-contact {
    fill: rgba(157, 243, 207, 0.16);
    stroke: rgba(157, 243, 207, 0.5);
}

.brazil-state.is-active {
    fill: #9df3cf;
    filter: drop-shadow(0 8px 18px rgba(157, 243, 207, 0.28));
    stroke: #ffffff;
}

.brazil-state-label {
    fill: rgba(237, 245, 242, 0.86);
    font-size: 18px;
    font-weight: 800;
    pointer-events: none;
    text-anchor: middle;
}

.brazil-state-label.is-active {
    fill: #071610;
}

.map-footnote {
    color: var(--muted);
    font-size: 13px;
    margin: 14px 0 0;
    text-align: center;
}

.contact-card-hero {
    display: grid;
    gap: 22px;
    margin: 0 auto;
    max-width: 1120px;
}

.contact-state-summary {
    max-width: 760px;
}

.contact-state-summary h2,
.contact-state-summary p {
    margin: 0;
}

.contact-state-summary p:last-child {
    color: var(--muted);
    margin-top: 6px;
}

.inspect-business-card {
    background:
        linear-gradient(118deg, rgba(247, 251, 249, 0.98) 0%, rgba(238, 244, 241, 0.98) 55%, rgba(216, 205, 214, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
    color: #17202a;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(150px, 260px);
    min-height: 420px;
    overflow: hidden;
    padding: clamp(26px, 5vw, 58px);
    position: relative;
}

.inspect-business-card::before {
    background:
        radial-gradient(circle at 8% 12%, rgba(157, 243, 207, 0.28), transparent 28%),
        radial-gradient(circle at 92% 98%, rgba(107, 28, 64, 0.28), transparent 32%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.ibc-copy,
.ibc-photo,
.ibc-logo {
    position: relative;
    z-index: 1;
}

.ibc-copy {
    align-content: start;
    display: grid;
    min-width: 0;
}

.ibc-kicker {
    color: #65717a;
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.inspect-business-card h1 {
    color: #1d2730;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    line-height: 1;
    margin: 0;
}

.ibc-title {
    color: #29313b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4.8vw, 60px);
    font-style: italic;
    line-height: 1.05;
    margin: 8px 0 66px;
}

.ibc-lines {
    display: grid;
    gap: 16px;
    max-width: 780px;
}

.ibc-line {
    align-items: center;
    color: #101820;
    display: inline-grid;
    font-size: clamp(20px, 3.5vw, 42px);
    gap: 18px;
    grid-template-columns: 46px minmax(0, 1fr);
    line-height: 1.12;
    text-decoration: none;
}

.ibc-line span:last-child {
    overflow-wrap: anywhere;
}

.ibc-icon {
    color: #16202a;
    display: inline-grid;
    height: 42px;
    place-items: center;
    position: relative;
    width: 42px;
}

.ibc-icon-mail::before {
    border: 3px solid currentColor;
    border-radius: 3px;
    content: "";
    height: 23px;
    position: absolute;
    width: 34px;
}

.ibc-icon-mail::after {
    border-bottom: 3px solid currentColor;
    border-left: 3px solid currentColor;
    content: "";
    height: 17px;
    position: absolute;
    top: 9px;
    transform: rotate(-45deg);
    width: 17px;
}

.ibc-icon-phone::before {
    border: 5px solid currentColor;
    border-left-color: transparent;
    border-top-color: transparent;
    border-radius: 50%;
    content: "";
    height: 30px;
    position: absolute;
    transform: rotate(42deg);
    width: 30px;
}

.ibc-icon-phone::after {
    background: currentColor;
    border-radius: 999px;
    content: "";
    height: 8px;
    left: 10px;
    position: absolute;
    top: 9px;
    transform: rotate(42deg);
    width: 18px;
}

.ibc-bio {
    color: #52606c;
    font-size: 16px;
    margin: 24px 0 0;
    max-width: 720px;
}

.ibc-site-pill {
    align-self: end;
    border: 2px solid #16202a;
    border-radius: 999px;
    color: #16202a;
    display: inline-flex;
    font-size: clamp(22px, 3vw, 34px);
    font-style: italic;
    font-weight: 600;
    justify-self: start;
    margin-top: 82px;
    padding: 6px 22px 8px;
    text-decoration: none;
}

.ibc-photo {
    align-self: start;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(23, 32, 42, 0.08);
    border-radius: 4px;
    display: grid;
    height: clamp(132px, 18vw, 198px);
    justify-self: end;
    overflow: hidden;
    place-items: center;
    width: clamp(150px, 24vw, 260px);
}

.ibc-photo img {
    height: 100%;
    object-fit: cover;
    object-position: 84% 18%;
    width: 100%;
}

.ibc-photo span {
    color: #582b56;
    font-size: 72px;
    font-weight: 800;
}

.ibc-logo {
    align-items: center;
    bottom: clamp(26px, 5vw, 56px);
    display: inline-flex;
    justify-self: end;
    max-width: min(300px, 36%);
    position: absolute;
    right: clamp(26px, 5vw, 58px);
}

.ibc-logo img {
    display: block;
    height: auto;
    max-height: 82px;
    max-width: 100%;
    object-fit: contain;
}

.inspect-business-card--compact {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) 150px;
    min-height: 250px;
    padding: 24px;
}

.inspect-business-card--compact h1 {
    font-size: clamp(28px, 4vw, 40px);
}

.inspect-business-card--compact .ibc-title {
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 28px;
}

.inspect-business-card--compact .ibc-line {
    font-size: clamp(15px, 2vw, 20px);
    gap: 10px;
    grid-template-columns: 28px minmax(0, 1fr);
}

.inspect-business-card--compact .ibc-icon {
    height: 26px;
    transform: scale(0.64);
    transform-origin: left center;
    width: 26px;
}

.inspect-business-card--compact .ibc-photo {
    height: 132px;
    width: 150px;
}

.inspect-business-card--compact .ibc-site-pill {
    font-size: 18px;
    margin-top: 26px;
    padding: 4px 14px 6px;
}

.inspect-business-card--compact .ibc-logo {
    bottom: 22px;
    max-width: 150px;
    right: 24px;
}

.inspect-business-card--compact .ibc-logo img {
    max-height: 48px;
}

.admin-form-section + .admin-form-section {
    margin-top: 18px;
}

.repeater-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.screenshot-editor-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.repeater-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 12px;
    padding: 16px;
}

.repeater-card:focus-within {
    border-color: rgba(157, 243, 207, 0.48);
    box-shadow: 0 0 0 3px rgba(157, 243, 207, 0.1);
}

.protected-assets-panel {
    display: grid;
    gap: 18px;
}

.asset-upload-form {
    border-bottom: 1px solid rgba(207, 222, 216, 0.12);
    padding-bottom: 18px;
}

.protected-assets-empty {
    margin: 0;
}

.protected-asset-list {
    display: grid;
    gap: 12px;
}

.protected-asset-item {
    align-items: center;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 14px;
}

.protected-asset-item strong,
.protected-asset-item span {
    display: block;
}

.protected-asset-item span,
.protected-asset-item p {
    color: var(--muted);
    margin: 4px 0 0;
}

.sticky-actions {
    background: rgba(8, 10, 16, 0.82);
    border: 1px solid var(--line);
    border-radius: 8px;
    bottom: 16px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    padding: 12px;
    position: sticky;
    z-index: 5;
}

.row-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inline-form {
    margin: 0;
}

.danger-button,
button.danger-button {
    background: rgba(127, 29, 29, 0.22);
    border-color: rgba(252, 165, 165, 0.36);
    color: #fecaca;
}

.danger-button:hover,
button.danger-button:hover {
    background: rgba(127, 29, 29, 0.34);
    border-color: rgba(252, 165, 165, 0.58);
    color: #ffffff;
}

.danger-zone {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-top: 18px;
}

.danger-zone h2,
.danger-zone p {
    margin: 0;
}

.brand-lockup {
    align-items: center;
    display: inline-flex;
    gap: 12px;
}

.brand-logo-frame,
.auth-brand-logo,
.showroom-brand-copy img {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.brand-logo-frame {
    align-items: center;
    display: inline-flex;
    height: 38px;
    padding: 6px 10px;
}

.brand-logo-frame img {
    display: block;
    height: 24px;
    max-width: 132px;
    object-fit: contain;
    width: auto;
}

.brand-product {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.auth-brand {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.auth-brand-mark,
.showroom-brand-mark {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    overflow: hidden;
}

.auth-brand-mark {
    flex: 0 0 50px;
    height: 50px;
    width: 50px;
}

.auth-brand-mark img,
.showroom-brand-mark img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.auth-brand-logo {
    display: block;
    height: 42px;
    max-width: 190px;
    object-fit: contain;
    padding: 8px 12px;
    width: auto;
}

.showroom-brand-lockup {
    align-items: center;
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.showroom-brand-mark {
    flex: 0 0 64px;
    height: 64px;
    width: 64px;
}

.showroom-brand-copy {
    align-content: center;
    display: grid;
    gap: 6px;
}

.showroom-brand-copy img {
    display: block;
    height: 46px;
    max-width: 220px;
    object-fit: contain;
    padding: 8px 14px;
    width: auto;
}

.showroom-brand-copy span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 780px) {
    .topbar {
        background: rgba(8, 10, 16, 0.94);
    }

    .nav {
        width: 100%;
    }

    .primary-button,
    .secondary-button,
    .small-button {
        width: 100%;
    }

    .panel-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .row-actions,
    .danger-zone,
    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-map-layout,
    .business-card {
        grid-template-columns: 1fr;
    }

    .inspect-business-card,
    .inspect-business-card--compact {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 24px;
    }

    .inspect-business-card h1,
    .inspect-business-card--compact h1 {
        font-size: 34px;
    }

    .ibc-title,
    .inspect-business-card--compact .ibc-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .ibc-line,
    .inspect-business-card--compact .ibc-line {
        font-size: 17px;
        gap: 10px;
        grid-template-columns: 30px minmax(0, 1fr);
    }

    .ibc-icon,
    .inspect-business-card--compact .ibc-icon {
        height: 28px;
        transform: scale(0.68);
        transform-origin: left center;
        width: 28px;
    }

    .ibc-photo,
    .inspect-business-card--compact .ibc-photo {
        grid-row: 1;
        height: 128px;
        justify-self: start;
        width: 154px;
    }

    .ibc-site-pill,
    .inspect-business-card--compact .ibc-site-pill {
        font-size: 20px;
        margin-top: 34px;
    }

    .ibc-logo,
    .inspect-business-card--compact .ibc-logo {
        bottom: 22px;
        max-width: 148px;
        right: 22px;
    }

    .brazil-svg-map {
        max-height: none;
    }

    .business-card-photo {
        min-height: 240px;
    }

    .business-card-body h1 {
        font-size: 34px;
    }

    .brand-logo-frame img {
        max-width: 118px;
    }

    .brand-product {
        font-size: 12px;
    }

    .auth-brand {
        align-items: flex-start;
        flex-direction: column;
    }

    .showroom-brand-lockup {
        align-items: flex-start;
        flex-direction: column;
    }

    .showroom-brand-copy img {
        max-width: min(220px, 100%);
    }
}
