:root {
    --bg: #080a0a;
    --bg-elevated: #0d1010;
    --panel: #111515;
    --panel-soft: #151919;
    --line: rgba(225, 229, 219, 0.14);
    --line-strong: rgba(225, 229, 219, 0.28);
    --text: #f1f1e9;
    --muted: #a7aaa3;
    --muted-strong: #c8cac3;
    --amber: #f29a2e;
    --amber-bright: #ffb14c;
    --amber-soft: rgba(242, 154, 46, 0.13);
    --green: #a8c594;
    --display: "Bahnschrift Condensed", "Arial Narrow", "Segoe UI", sans-serif;
    --body: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    --shell: min(1240px, calc(100% - 48px));
    --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
    --radius: 2px;
}

/* Independent manual listing flow */
.manual-create-section {
    padding-top: 48px;
}

.manual-create-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 32px;
    align-items: start;
}

.manual-listing-form,
.manual-form-aside {
    min-width: 0;
}

.form-progress-card {
    grid-column: 1 / -1;
    padding: 20px;
    border: 1px solid var(--line-strong);
    background: rgba(15, 18, 17, 0.86);
}

.form-progress-card > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.form-progress-card span,
.form-progress-card p {
    color: var(--muted);
}

.form-progress-card p {
    margin: 10px 0 0;
    font-size: 0.84rem;
}

.form-progress-track {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.form-progress-track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--amber), #ffd18a);
    transition: width 180ms ease;
}

.manual-listing-form .form-section {
    padding: 28px;
}

.manual-listing-form .form-section legend {
    display: flex;
    gap: 10px;
    align-items: center;
}

.manual-listing-form .form-section legend span {
    color: var(--amber);
    font-family: var(--display);
    letter-spacing: 0.08em;
}

.privacy-warning {
    padding: 16px 18px;
    border-left: 3px solid var(--amber);
    background: rgba(206, 127, 39, 0.09);
}

.privacy-warning strong,
.privacy-warning p {
    display: block;
}

.privacy-warning p {
    margin: 5px 0 0;
    color: var(--muted);
}

.form-secondary-link {
    justify-content: center;
    padding: 14px 16px;
    border: 1px solid var(--line);
}

.form-secondary-link span {
    color: var(--muted);
    font-size: 0.84rem;
}

.form-secondary-link a {
    color: var(--amber);
    font-weight: 700;
}

.marketplace-field-grid.tier-input-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.field-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.field-error {
    margin: 7px 0 0;
    color: #ff9b86;
    font-size: 0.88rem;
}

.marketplace-form :is(input, select, textarea)[aria-invalid="true"] {
    border-color: #d43c31;
    box-shadow: 0 0 0 1px rgba(212, 60, 49, 0.24);
}

.marketplace-form .field:has([aria-invalid="true"]) > label,
.marketplace-form label:has([aria-invalid="true"]) > span {
    color: #ff9b86;
}

.retained-upload-note {
    margin: 10px 0 0;
    color: #b8d7bb;
}

.final-check-section {
    display: grid;
    gap: 20px;
}

.seller-identity-card {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.seller-identity-card span,
.seller-identity-card small {
    display: block;
    color: var(--muted);
}

.seller-identity-card strong {
    display: block;
    margin: 5px 0;
}

.identity-status {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid var(--line-strong);
    color: var(--muted);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.identity-status.is-connected {
    border-color: rgba(115, 179, 122, 0.45);
    color: #b8d7bb;
}

.privacy-confirmation {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: start;
    min-height: 48px;
    cursor: pointer;
}

.privacy-confirmation input {
    width: 22px;
    height: 22px;
    margin: 1px 0 0;
    accent-color: var(--amber);
}

.manual-form-aside {
    position: sticky;
    top: 96px;
    padding: 28px;
    border: 1px solid var(--line-strong);
    background:
        linear-gradient(145deg, rgba(206, 127, 39, 0.09), transparent 45%),
        var(--panel);
}

.manual-form-aside h2 {
    margin: 12px 0 24px;
}

.manual-form-aside ol {
    display: grid;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: manual-steps;
}

.manual-form-aside li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 4px 12px;
    counter-increment: manual-steps;
}

.manual-form-aside li::before {
    content: counter(manual-steps, decimal-leading-zero);
    grid-row: 1 / 3;
    color: var(--amber);
    font-family: var(--display);
}

.manual-form-aside li span {
    color: var(--muted);
    font-size: 0.9rem;
}

.not-evaluated-preview {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.not-evaluated-preview span,
.not-evaluated-preview strong {
    display: block;
}

.not-evaluated-preview span {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 0.8rem;
}

.not-evaluated-preview strong {
    color: #e8cfae;
}

.submission-success-section {
    min-height: calc(100vh - 240px);
    display: grid;
    place-items: center;
}

.submission-success-card {
    max-width: 760px;
    padding: 56px;
    border: 1px solid var(--line-strong);
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(206, 127, 39, 0.17), transparent 40%),
        var(--panel);
}

.submission-success-card > p:not(.eyebrow) {
    max-width: 580px;
    margin: 18px auto 28px;
    color: var(--muted);
}

.submission-success-card .hero-actions {
    justify-content: center;
}

.success-mark {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border: 1px solid rgba(115, 179, 122, 0.55);
    border-radius: 50%;
    color: #b8d7bb;
    font-size: 1.6rem;
}

@media (max-width: 980px) {
    .manual-create-layout {
        grid-template-columns: 1fr;
    }

    .manual-form-aside {
        position: static;
    }
}

@media (max-width: 680px) {
    .manual-create-section {
        padding-top: 28px;
    }

    .manual-listing-form .form-section,
    .manual-form-aside,
    .submission-success-card {
        padding: 20px;
    }

    .marketplace-field-grid.tier-input-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seller-identity-card,
    .field-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .submission-success-card .hero-actions {
        display: grid;
    }
}

@media (max-width: 420px) {
    .marketplace-field-grid.tier-input-grid {
        grid-template-columns: 1fr;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at 88% 8%, rgba(242, 154, 46, 0.055), transparent 30rem),
        linear-gradient(180deg, #080a0a, #0a0c0c 70%, #080a0a);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: 0.32;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

button,
a,
input,
select,
summary {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--amber-bright);
    outline-offset: 4px;
}

::selection {
    color: #090a09;
    background: var(--amber-bright);
}

[hidden] {
    display: none !important;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.narrow-shell {
    width: min(850px, var(--shell));
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 18px;
    color: #090a09;
    background: var(--amber-bright);
    font-weight: 800;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: linear-gradient(180deg, rgba(6, 8, 8, 0.94), rgba(6, 8, 8, 0.72));
    backdrop-filter: blur(14px);
    transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(7, 9, 9, 0.96);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: max-content;
}

.brand-symbol {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    filter: drop-shadow(0 5px 12px rgba(242, 154, 46, 0.16));
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy strong {
    font-family: var(--display);
    font-size: 24px;
    letter-spacing: 0.14em;
}

.brand-copy small {
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.main-nav a {
    position: relative;
    padding: 12px 14px;
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 650;
    transition: color 160ms ease, background 160ms ease;
}

.main-nav a::after {
    position: absolute;
    right: 14px;
    bottom: 6px;
    left: 14px;
    height: 2px;
    content: "";
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    color: var(--text);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.main-nav .nav-action {
    margin-left: 8px;
    border: 1px solid var(--line-strong);
    color: var(--text);
}

.main-nav .nav-action::after {
    display: none;
}

.main-nav .nav-action:hover {
    border-color: rgba(242, 154, 46, 0.6);
    background: var(--amber-soft);
}

.account-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    padding: 9px 13px;
    border: 1px solid rgba(63, 138, 224, 0.55);
    color: #dbeaff;
    background: rgba(38, 104, 181, 0.11);
    font-size: 14px;
    font-weight: 750;
    white-space: nowrap;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.account-login:hover,
.account-login[aria-current="page"] {
    border-color: #5a9be8;
    color: #ffffff;
    background: rgba(50, 126, 214, 0.22);
    transform: translateY(-1px);
}

.account-login:active {
    transform: translateY(0);
}

.account-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 27px;
    height: 22px;
    padding: 0 4px;
    border-radius: 5px;
    color: #ffffff;
    background: #397dcc;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: -0.04em;
}

.account-login-mobile {
    display: none;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line-strong);
    color: var(--text);
    background: transparent;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    min-height: 800px;
    padding-top: 76px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #070909 0%, rgba(7, 9, 9, 0.94) 29%, rgba(7, 9, 9, 0.37) 67%, rgba(7, 9, 9, 0.2) 100%),
        linear-gradient(0deg, #080a0a 0%, transparent 31%),
        url("../images/og.png") 72% 52% / cover no-repeat;
    filter: saturate(0.75) contrast(1.08);
}

.hero-backdrop::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, transparent 25%, black);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 72px;
    align-items: center;
    min-height: 724px;
}

.hero-copy {
    max-width: 690px;
    padding: 72px 0 50px;
}

.eyebrow,
.section-index,
.panel-kicker {
    color: var(--amber-bright);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
}

.eyebrow::before {
    width: 30px;
    height: 2px;
    content: "";
    background: var(--amber);
}

.hero h1 {
    max-width: 680px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(66px, 6vw, 94px);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero h1 span {
    display: block;
    color: var(--amber-bright);
}

.hero-lead {
    max-width: 610px;
    margin: 30px 0 0;
    color: #d4d5cf;
    font-size: 20px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-family: var(--body);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button-primary {
    color: #0b0b09;
    border-color: var(--amber);
    background: linear-gradient(135deg, var(--amber-bright), #e8811f);
    box-shadow: 0 14px 34px rgba(242, 154, 46, 0.16);
}

.button-primary:hover {
    background: linear-gradient(135deg, #ffc16d, #f29436);
}

.button-outline {
    color: var(--text);
    border-color: var(--line-strong);
    background: rgba(8, 10, 10, 0.55);
}

.button-outline:hover {
    border-color: rgba(242, 154, 46, 0.68);
    background: var(--amber-soft);
}

.button-danger {
    color: #ffeceb;
    border-color: rgba(216, 111, 99, 0.7);
    background: rgba(216, 111, 99, 0.12);
}

.button-danger:hover {
    border-color: var(--danger);
    background: rgba(216, 111, 99, 0.22);
}

.button-full {
    width: 100%;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 640px;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid var(--line-strong);
}

.hero-facts div {
    display: grid;
    gap: 3px;
    padding: 0 20px;
    border-right: 1px solid var(--line);
}

.hero-facts div:first-child {
    padding-left: 0;
}

.hero-facts div:last-child {
    border-right: 0;
}

.hero-facts strong {
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-facts span {
    color: var(--muted);
    font-size: 13px;
}

.hero-panel {
    align-self: end;
    margin-bottom: 72px;
    padding: 26px;
    border: 1px solid var(--line-strong);
    border-left: 3px solid var(--amber);
    background: rgba(8, 10, 10, 0.83);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero-panel h2 {
    margin: 8px 0 18px;
    font-family: var(--display);
    font-size: 30px;
    line-height: 1.05;
    text-transform: uppercase;
}

.hero-panel ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-panel li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.hero-panel li strong {
    color: var(--text);
    font-size: 13px;
    text-transform: uppercase;
}

.hero-panel > a {
    display: inline-flex;
    gap: 8px;
    margin-top: 20px;
    color: var(--amber-bright);
    font-size: 14px;
    font-weight: 750;
}

.section {
    padding: 104px 0;
}

.section-dark {
    border-block: 1px solid var(--line);
    background:
        linear-gradient(130deg, rgba(242, 154, 46, 0.025), transparent 35%),
        #090c0c;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 64px;
    align-items: end;
    margin-bottom: 42px;
}

.section-index {
    margin: 0 0 12px;
}

.split-heading h2,
.process-band h2,
.narrow-shell > h2 {
    max-width: 780px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(42px, 4.3vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-wrap: balance;
}

.split-heading > p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 16px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--amber-bright);
    font-size: 14px;
    font-weight: 750;
}

.text-link:hover span {
    transform: translateX(4px);
}

.text-link span {
    transition: transform 160ms ease;
}

.estimator-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
    border: 1px solid var(--line-strong);
    background: rgba(14, 17, 17, 0.92);
    box-shadow: var(--shadow);
}

.evaluation-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 38px;
}

.field {
    display: grid;
    align-content: start;
    gap: 8px;
}

.field-wide {
    grid-column: 1 / -1;
}

.field label {
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 750;
}

.field input,
.field select,
.field textarea,
.catalog-toolbar select {
    width: 100%;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    color: var(--text);
    background: #0b0e0e;
    font-family: var(--body);
    font-size: 16px;
    font-variant-numeric: tabular-nums;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover,
.catalog-toolbar select:hover {
    border-color: rgba(242, 154, 46, 0.44);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.catalog-toolbar select:focus {
    border-color: var(--amber);
    outline: 0;
    background: #101313;
    box-shadow: 0 0 0 3px rgba(242, 154, 46, 0.12);
}

.field textarea {
    resize: vertical;
    line-height: 1.55;
}

.listing-type-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.listing-type-filter a {
    padding: 10px 14px;
    border: 1px solid var(--line);
    color: var(--muted-strong);
    text-decoration: none;
}

.listing-type-filter a[aria-current="page"] {
    border-color: rgba(242, 154, 46, 0.65);
    color: var(--amber-bright);
    background: rgba(242, 154, 46, 0.09);
}

.listing-origin {
    width: fit-content;
    margin: 0 0 10px;
    padding: 5px 8px;
    border-left: 2px solid var(--amber);
    color: var(--muted-strong);
    background: rgba(242, 154, 46, 0.07);
    font-size: 12px;
    font-weight: 750;
}

.listing-origin-manual {
    border-left-color: #8ca1a1;
    background: rgba(140, 161, 161, 0.08);
}

.price-not-evaluated {
    color: var(--muted-strong) !important;
    font-size: 15px !important;
}

.empty-state {
    padding: 56px 32px;
    border: 1px solid var(--line);
    text-align: center;
    background: var(--panel);
}

.empty-state h2 {
    margin-top: 0;
}

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

.creation-choice-card,
.marketplace-form,
.snapshot-panel {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.creation-choice-card {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 36px;
}

.creation-choice-card h2,
.snapshot-panel h2 {
    margin: 0;
    font-family: var(--body);
}

.creation-choice-card p {
    margin: 0;
    color: var(--muted-strong);
}

.creation-choice-card .button {
    justify-self: start;
    margin-top: 8px;
}

.evaluation-listing-actions {
    display: grid;
    gap: 14px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.evaluation-listing-actions p {
    margin: 0;
    color: var(--muted-strong);
}

.evaluation-listing-actions > div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.listing-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 360px;
    gap: 28px;
    align-items: start;
}

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

.form-section {
    min-width: 0;
    margin: 8px 0 0;
    padding: 24px;
    border: 1px solid var(--line);
}

.form-section legend {
    padding: 0 8px;
    color: var(--amber-bright);
    font-weight: 750;
}

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

.form-error-summary {
    grid-column: 1 / -1;
    padding: 16px 18px;
    border-left: 3px solid #ff9d8c;
    background: rgba(255, 90, 70, 0.08);
    border: 1px solid rgba(255, 90, 70, 0.42);
    border-left-width: 4px;
    border-radius: 10px;
}

.form-error-summary ul {
    margin: 8px 0 0;
    padding-left: 20px;
    color: var(--muted-strong);
}

.snapshot-panel {
    position: sticky;
    top: 104px;
    padding: 28px;
}

.snapshot-stats,
.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0;
}

.snapshot-stats div,
.resource-grid div {
    display: grid;
    gap: 4px;
    padding: 13px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.snapshot-stats span,
.resource-grid span,
.seller-contact span {
    color: var(--muted);
    font-size: 12px;
}

.existing-images,
.selected-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.existing-image-card,
.selected-image-card {
    display: grid;
    align-content: start;
    gap: 8px;
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted-strong);
    font-size: 12px;
}

.existing-image-card.is-marked-for-removal {
    opacity: 0.5;
    border-color: rgba(255, 157, 140, 0.65);
}

.image-preview-frame {
    position: relative;
}

.existing-images img,
.selected-image-grid img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.main-photo-badge {
    position: absolute;
    left: 7px;
    bottom: 7px;
    padding: 5px 7px;
    background: rgba(9, 11, 11, 0.9);
    color: var(--amber-bright);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.selected-image-name {
    overflow: hidden;
    color: var(--text);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.selected-image-size {
    color: var(--muted);
}

.selected-image-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 3px;
}

.image-action-button,
.image-order-button {
    min-height: 36px;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.image-action-button {
    flex: 1 1 auto;
    padding: 7px 10px;
}

.image-order-button {
    width: 38px;
}

.image-order-button:disabled {
    cursor: default;
    opacity: 0.35;
}

.image-action-button:hover,
.image-order-button:not(:disabled):hover {
    border-color: var(--amber);
    color: var(--amber-bright);
}

.image-selection-summary {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 18px;
    margin: 4px 0 14px;
    color: var(--muted-strong);
    font-size: 13px;
}

.listing-gallery {
    display: grid;
    gap: 16px;
}

.listing-gallery .detail-image {
    min-height: 340px;
}

.seller-contact {
    display: grid;
    gap: 5px;
    margin: 18px 0;
    padding: 14px;
    border: 1px solid var(--line);
    overflow-wrap: anywhere;
}

.contact-access-card {
    gap: 12px;
    padding: 18px;
    border-color: rgba(242, 154, 46, 0.42);
    background: rgba(242, 154, 46, 0.055);
}

.contact-access-card p,
.contact-access-card form {
    margin: 0;
}

.contact-access-card time {
    color: var(--amber-light);
}

.contact-access-card .button {
    white-space: normal;
    text-align: center;
}

.contact-public-reason {
    padding: 10px 12px;
    border-left: 3px solid var(--amber);
    background: rgba(0, 0, 0, 0.18);
}

.public-flashes {
    position: relative;
    z-index: 4;
    padding-top: 16px;
}

.public-flash {
    margin: 0 0 8px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--amber);
    background: #151817;
}

.public-flash-success {
    border-left-color: #98bc94;
}

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

.notification-card {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.notification-card-unread {
    border-left: 3px solid var(--amber);
}

.notification-card h2,
.notification-card p {
    margin: 0 0 8px;
}

.notification-reference {
    color: var(--muted);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .creation-choice-grid,
    .listing-form-layout {
        grid-template-columns: 1fr;
    }

    .snapshot-panel {
        position: static;
    }
}

@media (max-width: 620px) {
    .marketplace-form,
    .marketplace-field-grid {
        grid-template-columns: 1fr;
    }

    .marketplace-form {
        padding: 24px 20px;
    }

    .existing-images,
    .selected-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .evaluation-listing-actions > div {
        display: grid;
        grid-template-columns: 1fr;
    }

    .evaluation-listing-actions .button {
        width: 100%;
        min-width: 0;
        white-space: normal;
    }
}

@media (max-width: 420px) {
    .existing-images,
    .selected-image-grid {
        grid-template-columns: 1fr;
    }
}

.field small,
.toolbar-note,
.form-message,
.contact-note {
    color: var(--muted);
    font-size: 13px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 4px;
}

.form-message {
    margin: 0;
}

.form-message.is-error {
    color: #ff9d8c;
}

.button-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(11, 14, 14, 0.35);
    border-top-color: #0b0e0e;
    border-radius: 50%;
    animation: evaluation-spin 700ms linear infinite;
}

@keyframes evaluation-spin {
    to {
        transform: rotate(360deg);
    }
}

.evaluation-result {
    position: relative;
    min-height: 100%;
    padding: 38px;
    border-left: 1px solid var(--line-strong);
    background:
        linear-gradient(150deg, rgba(242, 154, 46, 0.13), transparent 48%),
        #0b0e0e;
}

.evaluation-result::after {
    position: absolute;
    right: 18px;
    bottom: 15px;
    width: 90px;
    height: 90px;
    content: "";
    opacity: 0.08;
    border: 1px solid var(--amber);
    transform: rotate(45deg);
}

.result-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.result-head h2 {
    margin: 4px 0 0;
    font-family: var(--body);
    font-size: 25px;
    line-height: 1.25;
}

.result-head .eyebrow {
    margin: 0;
    font-size: 13px;
}

.result-head .eyebrow::before {
    display: none;
}

.result-note {
    align-self: start;
    padding: 7px 9px;
    border: 1px solid var(--line);
    color: var(--amber-bright);
    font-size: 13px;
    text-decoration: none;
}

.result-note:hover {
    border-color: rgba(242, 154, 46, 0.55);
}

.auth-page {
    position: relative;
    min-height: calc(100vh - 76px);
    padding: 126px 0 64px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 16% 34%, rgba(242, 154, 46, 0.1), transparent 28rem),
        linear-gradient(90deg, rgba(8, 10, 10, 0.94), rgba(8, 10, 10, 0.78)),
        url("../images/og.png") 62% 54% / cover no-repeat;
}

.auth-page::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, black, transparent 82%);
}

.auth-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 520px);
    gap: clamp(56px, 8vw, 118px);
    align-items: center;
    width: min(1120px, var(--shell));
}

.auth-intro {
    min-width: 0;
}

.auth-intro .eyebrow {
    margin-bottom: 20px;
}

.auth-intro h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(58px, 6vw, 82px);
    font-weight: 800;
    line-height: 0.94;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    text-wrap: balance;
}

.auth-lead {
    max-width: 520px;
    margin: 22px 0 0;
    color: #d4d5cf;
    font-size: 19px;
    line-height: 1.55;
}

.auth-assurance {
    display: grid;
    gap: 0;
    max-width: 520px;
    margin-top: 38px;
    border-top: 1px solid var(--line-strong);
}

.auth-assurance > div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.auth-assurance > div > span {
    padding-top: 2px;
    color: var(--amber-bright);
    font-family: var(--display);
    font-size: 14px;
    letter-spacing: 0.08em;
}

.auth-assurance p,
.auth-assurance strong {
    display: block;
    margin: 0;
}

.auth-assurance p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.auth-assurance strong {
    margin-bottom: 2px;
    color: var(--text);
    font-size: 15px;
}

.auth-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    width: 100%;
    min-width: 0;
    padding: 32px;
    border: 1px solid var(--line-strong);
    border-top: 3px solid var(--amber);
    background:
        linear-gradient(145deg, rgba(242, 154, 46, 0.045), transparent 38%),
        rgba(15, 18, 18, 0.96);
    box-shadow: var(--shadow);
}

.auth-card-header {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.auth-card-header .auth-kicker {
    margin: 0 0 5px;
    color: var(--amber-bright);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.auth-card-header h2 {
    margin: 0;
    font-family: var(--body);
    font-size: 27px;
    line-height: 1.2;
}

.auth-card-header > p:last-child {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.auth-card .form-error-summary {
    padding: 13px 15px;
}

.auth-card .form-error-summary strong,
.auth-card .form-error-summary p {
    display: block;
    margin: 0;
}

.auth-card .form-error-summary p {
    margin-top: 3px;
    color: #f4c0b7;
    font-size: 14px;
    line-height: 1.45;
}

.auth-field {
    gap: 7px;
    width: 100%;
}

.auth-field label {
    font-size: 14px;
    line-height: 1.4;
}

.auth-field input {
    min-height: 50px;
}

.auth-field input[aria-invalid="true"] {
    border-color: #d96f5e;
    box-shadow: 0 0 0 2px rgba(217, 111, 94, 0.1);
}

.auth-field small {
    line-height: 1.45;
}

.auth-card .field-error {
    margin: 0;
    color: #ffad9e;
    font-size: 13px;
    line-height: 1.45;
}

.auth-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.auth-label-row > span {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-consent {
    min-width: 0;
}

.auth-card .privacy-confirmation {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 11px;
    min-height: 0;
    color: var(--muted-strong);
    font-size: 14px;
    line-height: 1.5;
}

.auth-card .privacy-confirmation input {
    width: 20px;
    height: 20px;
}

.auth-card .privacy-confirmation a,
.auth-switch a {
    color: var(--amber-bright);
    font-weight: 750;
    text-decoration: underline;
    text-decoration-color: rgba(255, 177, 76, 0.4);
    text-underline-offset: 3px;
}

.auth-card .privacy-confirmation a:hover,
.auth-switch a:hover {
    text-decoration-color: currentColor;
}

.auth-consent > .field-error {
    margin: 6px 0 0 33px;
}

.auth-submit {
    width: 100%;
    min-height: 52px;
}

.auth-switch {
    margin: -2px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.auth-page-register {
    padding-top: 108px;
}

.auth-page-register .auth-card {
    gap: 15px;
    padding-block: 28px;
}

.auth-page-register .auth-card-header {
    padding-bottom: 15px;
}

.result-account {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.result-account div {
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.result-account span,
.breakdown span {
    color: var(--muted);
    font-size: 13px;
}

.result-account strong {
    font-size: 19px;
    font-variant-numeric: tabular-nums;
}

.vehicle-summary {
    margin: 0 0 24px;
}

.vehicle-summary h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

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

.tier-grid div {
    display: grid;
    gap: 3px;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.tier-grid span,
.rare-tanks > span {
    color: var(--muted);
    font-size: 12px;
}

.tier-grid strong {
    font-size: 18px;
    font-variant-numeric: tabular-nums;
}

.rare-tanks {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid var(--line);
}

.rare-tanks ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.rare-tanks li {
    padding: 5px 8px;
    color: var(--muted-strong);
    background: rgba(242, 154, 46, 0.09);
    font-size: 13px;
}

.breakdown h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.breakdown > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.breakdown strong {
    font-size: 16px;
    font-variant-numeric: tabular-nums;
}

.breakdown .breakdown-total {
    margin-top: 5px;
    padding-top: 16px;
    border-color: rgba(242, 154, 46, 0.45);
}

.breakdown-total span {
    color: var(--text);
    font-weight: 700;
}

.breakdown-total strong {
    color: var(--amber-bright);
    font-size: 24px;
}

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

.listing-card {
    min-width: 0;
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.listing-card:hover {
    z-index: 2;
    border-color: rgba(242, 154, 46, 0.48);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
    transform: translateY(-5px);
}

.listing-image {
    position: relative;
    display: block;
    height: 210px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #090b0b;
}

.listing-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(7, 9, 9, 0.75), transparent 55%);
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.06);
    transition: transform 400ms ease, filter 400ms ease;
}

.listing-card:hover .listing-image img {
    filter: saturate(0.9) contrast(1.08);
    transform: scale(1.035);
}

.listing-id {
    position: absolute;
    right: 14px;
    bottom: 12px;
    z-index: 1;
    padding: 6px 9px;
    color: var(--text);
    background: rgba(8, 10, 10, 0.78);
    font-size: 13px;
    font-weight: 750;
}

.listing-body {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    padding: 24px;
}

.listing-title {
    display: -webkit-box;
    min-height: 64px;
    margin: 0 0 18px;
    overflow: hidden;
    font-family: var(--body);
    font-size: 25px;
    font-weight: 750;
    line-height: 1.26;
    letter-spacing: -0.015em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.listing-title a:hover {
    color: var(--amber-bright);
}

.price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.price-row div {
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.015);
}

.price-row span,
.stats-pair span,
.rare-list > span,
.detail-price > span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.price-row strong {
    display: block;
    margin-top: 5px;
    font-family: var(--body);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.2;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.price-row div:first-child strong {
    color: var(--amber-bright);
}

.stats-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-block: 1px solid var(--line);
}

.stats-pair div {
    padding: 13px 4px;
}

.stats-pair div + div {
    padding-left: 17px;
    border-left: 1px solid var(--line);
}

.stats-pair strong {
    display: block;
    margin-top: 2px;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
}

.listing-card-engagement {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.hangar-block {
    margin-top: 18px;
}

.hangar-block h3 {
    margin: 0 0 10px;
    color: var(--muted-strong);
    font-family: var(--body);
    font-size: 14px;
    font-weight: 750;
}

.tier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.tier-grid div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.018);
}

.tier-grid strong {
    color: var(--amber-bright);
    font-family: var(--body);
    font-size: 16px;
    letter-spacing: 0.02em;
}

.tier-grid span {
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.rare-list {
    min-height: 85px;
    margin: 18px 0;
}

.rare-list p {
    margin: 5px 0 0;
    color: var(--muted-strong);
    font-size: 14px;
    line-height: 1.45;
}

.listing-body .button {
    margin-top: auto;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.feature-card {
    min-height: 275px;
    padding: 30px;
    background: var(--panel);
}

.feature-card > span {
    color: var(--amber);
    font-family: var(--display);
    font-size: 22px;
}

.feature-card h3 {
    margin: 52px 0 12px;
    font-family: var(--body);
    font-size: 21px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.process-band {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(242, 154, 46, 0.11), transparent 30%),
        #111414;
}

.process-band::after {
    position: absolute;
    top: -180px;
    right: -120px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(242, 154, 46, 0.15);
    border-radius: 50%;
    content: "";
}

.step-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 42px 0 34px;
}

.step-card {
    min-height: 220px;
    padding: 26px;
    border-top: 3px solid var(--amber);
    background: rgba(7, 9, 9, 0.72);
}

.step-card > span {
    color: var(--amber-bright);
    font-family: var(--display);
    font-size: 23px;
}

.step-card h3 {
    margin: 32px 0 10px;
    font-family: var(--body);
    font-size: 21px;
}

.step-card p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 15px;
}

.page-hero {
    position: relative;
    padding: 154px 0 74px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(8, 10, 10, 0.98), rgba(8, 10, 10, 0.74) 58%, rgba(8, 10, 10, 0.46)),
        linear-gradient(0deg, #090b0b, transparent 55%),
        url("../images/og.png") 82% 56% / cover no-repeat;
}

.page-hero::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 58px 58px;
}

.page-hero .shell {
    position: relative;
    z-index: 1;
}

.page-hero-compact {
    padding-bottom: 60px;
}

.page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(52px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.page-lead {
    max-width: 750px;
    margin: 22px 0 0;
    color: #cfd1cb;
    font-size: 18px;
    line-height: 1.6;
}

.breadcrumbs {
    margin-bottom: 26px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.breadcrumbs li:not(:last-child)::after {
    color: rgba(255, 255, 255, 0.32);
    content: "/";
}

.breadcrumbs a:hover {
    color: var(--amber-bright);
}

.page-section {
    min-height: 500px;
}

.evaluation-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) 340px;
    gap: 28px;
    align-items: start;
}

.content-panel,
.info-rail,
.detail-panel,
.purchase-card,
.article-sidebar {
    border: 1px solid var(--line);
    background: var(--panel);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.content-panel {
    overflow: hidden;
}

.content-panel .evaluation-form {
    border-top: 1px solid var(--line);
}

.content-panel .evaluation-result {
    border-top: 1px solid var(--line);
    border-left: 0;
}

.panel-heading {
    padding: 32px 38px;
}

.panel-heading > span {
    color: var(--amber-bright);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.panel-heading h2,
.info-rail h2 {
    margin: 8px 0;
    font-family: var(--body);
    font-size: 28px;
}

.panel-heading p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
}

.info-rail {
    position: sticky;
    top: 100px;
    padding: 28px;
}

.check-list {
    padding: 0;
    margin: 24px 0;
    list-style: none;
}

.check-list li {
    display: grid;
    gap: 3px;
    padding: 16px 0 16px 28px;
    border-top: 1px solid var(--line);
}

.check-list li::before {
    position: absolute;
    margin: 4px 0 0 -28px;
    color: var(--amber-bright);
    content: "◆";
    font-size: 11px;
}

.check-list strong {
    font-size: 16px;
}

.check-list span {
    color: var(--muted);
    font-size: 14px;
}

.faq-list {
    margin: 32px 0;
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 22px 52px 22px 0;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 18px;
    right: 4px;
    width: 32px;
    height: 32px;
    content: "+";
    color: var(--amber-bright);
    font-size: 26px;
    font-weight: 300;
    line-height: 28px;
    text-align: center;
    transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 760px;
    padding: 0 50px 24px 0;
    margin: 0;
    color: var(--muted-strong);
    font-size: 16px;
}

.faq-list-large summary {
    padding-block: 28px;
    font-size: 19px;
}

.catalog-section {
    padding-top: 54px;
}

.catalog-toolbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr)) auto;
    gap: 14px;
    align-items: end;
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.catalog-toolbar .button {
    min-height: 52px;
}

.toolbar-note {
    grid-column: 1 / -1;
    margin: 0;
}

.catalog-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin: 42px 0 24px;
}

.catalog-intro {
    max-width: 900px;
    margin: 0 0 24px;
    padding: 18px 20px;
    border-left: 3px solid var(--accent);
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted-strong);
    line-height: 1.7;
}

.catalog-intro p {
    margin: 0;
}

.catalog-heading div {
    display: grid;
}

.catalog-heading span {
    color: var(--muted);
    font-size: 13px;
}

.catalog-heading strong {
    font-size: 18px;
}

.catalog-heading a {
    color: var(--amber-bright);
    font-size: 14px;
    font-weight: 750;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line-strong);
    font-size: 14px;
    font-weight: 750;
}

.pagination span[aria-current] {
    color: #090a09;
    border-color: var(--amber);
    background: var(--amber);
}

.pagination a:hover {
    border-color: var(--amber);
    color: var(--amber-bright);
}

.detail-section {
    padding-top: 58px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.detail-main {
    display: grid;
    gap: 24px;
}

.detail-image {
    position: relative;
    height: 520px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #090b0b;
    box-shadow: var(--shadow);
}

.detail-image::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(0deg, rgba(6, 8, 8, 0.7), transparent 45%);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-image figcaption {
    position: absolute;
    right: 20px;
    bottom: 16px;
    z-index: 1;
    color: var(--muted-strong);
    font-size: 13px;
}

.detail-panel {
    padding: 34px;
}

.detail-panel h2 {
    margin: 0 0 18px;
    font-family: var(--body);
    font-size: 30px;
}

.detail-panel > p:not(.section-index) {
    max-width: 760px;
    color: var(--muted-strong);
    font-size: 17px;
}

.privacy-callout {
    margin-top: 26px;
    padding: 20px 22px;
    border-left: 3px solid var(--amber);
    background: var(--amber-soft);
}

.privacy-callout strong {
    font-size: 16px;
}

.privacy-callout p {
    margin: 5px 0 0;
    color: var(--muted-strong);
    font-size: 14px;
}

.tier-grid-large {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.tier-grid-large div {
    display: grid;
    justify-items: start;
    min-height: 104px;
    padding: 18px;
}

.tier-grid-large strong {
    font-size: 24px;
}

.tier-grid-large span {
    font-size: 16px;
}

.rare-detail {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.rare-detail h3 {
    margin: 0 0 12px;
    font-size: 17px;
}

.rare-detail ul {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.rare-detail li {
    padding: 8px 11px;
    border: 1px solid rgba(242, 154, 46, 0.35);
    color: #e6d1b7;
    background: rgba(242, 154, 46, 0.06);
    font-size: 14px;
}

.detail-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 18px;
}

.purchase-card {
    padding: 28px;
    border-top: 3px solid var(--amber);
}

.purchase-card .eyebrow::before {
    display: none;
}

.purchase-card .eyebrow {
    margin-bottom: 18px;
}

.detail-price {
    display: grid;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.detail-price strong {
    margin-top: 4px;
    color: var(--amber-bright);
    font-size: 31px;
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
}

.detail-price-service strong {
    color: var(--text);
    font-size: 22px;
}

.purchase-card .stats-pair {
    margin: 10px 0 22px;
}

.contact-note {
    margin: 12px 0 0;
    line-height: 1.45;
}

.detail-links {
    display: grid;
    border: 1px solid var(--line);
    background: var(--panel);
}

.detail-links a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--muted-strong);
    font-size: 14px;
    font-weight: 700;
}

.detail-links a:last-child {
    border-bottom: 0;
}

.detail-links a:hover {
    color: var(--amber-bright);
    background: var(--amber-soft);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 68px;
    align-items: start;
}

.article-content {
    min-width: 0;
}

.article-content > h2 {
    margin: 58px 0 16px;
    font-family: var(--body);
    font-size: 32px;
    line-height: 1.22;
}

.article-content > h2:first-child {
    margin-top: 0;
}

.article-content > p {
    max-width: 780px;
    margin: 0;
    color: var(--muted-strong);
    font-size: 17px;
}

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

.process-list li {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 22px;
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.process-list li > span {
    color: var(--amber-bright);
    font-family: var(--display);
    font-size: 25px;
}

.process-list h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.process-list p {
    margin: 0;
    color: var(--muted);
}

.notice-grid,
.principle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.notice-grid div,
.principle-grid div {
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.notice-grid strong,
.principle-grid h3 {
    font-size: 17px;
}

.notice-grid p,
.principle-grid p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.principle-grid span {
    color: var(--amber-bright);
    font-family: var(--display);
    font-size: 22px;
}

.principle-grid h3 {
    margin: 20px 0 0;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 16px;
    padding: 28px;
    border-top: 3px solid var(--amber);
}

.article-sidebar > strong {
    font-size: 23px;
}

.article-sidebar > p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 15px;
}

.next-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.next-step div {
    display: grid;
}

.next-step span {
    color: var(--muted);
    font-size: 13px;
}

.next-step strong {
    font-size: 19px;
}

.listing-seo-cta .next-step {
    align-items: center;
}

.listing-seo-cta .next-step p {
    max-width: 720px;
    margin: 8px 0 0;
    color: var(--muted-strong);
}

.listing-seo-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.evaluation-seo-section p {
    color: var(--muted-strong);
    line-height: 1.75;
}

.legal-content {
    max-width: 850px;
}

.legal-date {
    margin: 0 0 38px;
    color: var(--muted);
    font-size: 14px;
}

.legal-content h2 {
    margin: 38px 0 10px;
    font-family: var(--body);
    font-size: 24px;
}

.legal-content p {
    color: var(--muted-strong);
    font-size: 17px;
}

.legal-content .text-link {
    margin-top: 28px;
}

.error-page {
    display: grid;
    place-items: center;
    min-height: 720px;
    padding: 140px 0 80px;
    text-align: center;
}

.error-page .shell {
    max-width: 680px;
}

.error-code {
    display: block;
    color: rgba(242, 154, 46, 0.14);
    font-family: var(--display);
    font-size: clamp(120px, 21vw, 250px);
    font-weight: 900;
    line-height: 0.7;
}

.error-page .eyebrow {
    justify-content: center;
    margin-top: -14px;
}

.error-page h1 {
    margin: 0;
    font-family: var(--display);
    font-size: 58px;
    text-transform: uppercase;
}

.error-page p {
    color: var(--muted-strong);
    font-size: 17px;
}

.error-page .hero-actions {
    justify-content: center;
}

.site-footer {
    padding-top: 66px;
    border-top: 1px solid var(--line);
    background: #070909;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.85fr 0.85fr 1fr;
    gap: 52px;
    padding-bottom: 52px;
}

.footer-brand p {
    max-width: 330px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.footer-nav,
.footer-status {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-nav strong,
.footer-status > strong {
    margin-bottom: 6px;
    color: var(--text);
    font-size: 14px;
}

.footer-nav a {
    color: var(--muted);
    font-size: 14px;
}

.footer-nav a:hover {
    color: var(--amber-bright);
}

.footer-status p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 14px;
}

.footer-status p span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 14px rgba(242, 154, 46, 0.65);
}

.footer-status small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 18px;
    border-top: 1px solid var(--line);
    color: #787c77;
    font-size: 13px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    :root {
        --shell: min(100% - 40px, 1000px);
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 36px;
    }

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

    .listing-grid-home .listing-card:last-child {
        display: none;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-grid {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .tier-grid-large {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-status {
        grid-column: 2 / -1;
    }
}

@media (max-width: 1120px) {
    :root {
        --shell: min(100% - 36px, 760px);
    }

    .header-inner {
        min-height: 68px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        position: absolute;
        top: 68px;
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        border-bottom: 1px solid transparent;
        background: rgba(7, 9, 9, 0.98);
        opacity: 0;
        visibility: hidden;
        transition: max-height 240ms ease, opacity 180ms ease, visibility 180ms ease, border-color 180ms ease;
    }

    .main-nav.is-open {
        max-height: 430px;
        border-color: var(--line);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a,
    .main-nav .nav-action {
        width: var(--shell);
        margin: 0 auto;
        padding: 15px 0;
        border: 0;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav .account-login-mobile {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 68px;
    }

    .hero-backdrop {
        background:
            linear-gradient(90deg, rgba(7, 9, 9, 0.98), rgba(7, 9, 9, 0.72)),
            linear-gradient(0deg, #080a0a 0%, transparent 40%),
            url("../images/og.png") 68% 55% / cover no-repeat;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: 720px;
        padding-bottom: 50px;
    }

    .hero-copy {
        max-width: 650px;
        padding-top: 84px;
    }

    .hero h1 {
        font-size: clamp(58px, 10vw, 78px);
    }

    .hero-panel {
        display: none;
    }

    .section {
        padding: 76px 0;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .estimator-shell {
        grid-template-columns: 1fr;
    }

    .evaluation-result {
        border-top: 1px solid var(--line-strong);
        border-left: 0;
    }

    .evaluation-layout,
    .detail-grid,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .info-rail,
    .detail-sidebar,
    .article-sidebar {
        position: static;
    }

    .detail-sidebar {
        grid-row: 1;
    }

    .detail-image {
        height: 440px;
    }

    .step-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        min-height: 180px;
    }

    .catalog-toolbar {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-layout {
        gap: 36px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 34px;
    }
}

@media (max-width: 620px) {
    :root {
        --shell: calc(100% - 28px);
    }

    body {
        font-size: 16px;
    }

    .brand-copy strong {
        font-size: 22px;
    }

    .brand-copy small {
        font-size: 13px;
    }

    .brand-symbol {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .account-login-desktop {
        display: none;
    }

    .main-nav .account-login-mobile {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        color: #dbeaff;
        background: transparent;
    }

    .main-nav .account-login-mobile .account-badge {
        flex: 0 0 27px;
    }

    .hero-grid {
        min-height: 695px;
        align-items: start;
    }

    .hero-copy {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: clamp(48px, 15vw, 65px);
        line-height: 0.94;
    }

    .hero-lead {
        margin-top: 22px;
        font-size: 17px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-facts {
        grid-template-columns: 1fr 1fr;
        gap: 14px 0;
    }

    .hero-facts div {
        padding-left: 14px;
    }

    .hero-facts div:nth-child(2) {
        border-right: 0;
    }

    .hero-facts div:nth-child(3) {
        grid-column: 1 / -1;
        padding: 14px 0 0;
        border-top: 1px solid var(--line);
    }

    .section {
        padding: 64px 0;
    }

    .split-heading h2,
    .process-band h2,
    .narrow-shell > h2 {
        font-size: 43px;
    }

    .evaluation-form {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .field-wide {
        grid-column: auto;
    }

    .form-actions {
        display: grid;
    }

    .form-actions .button {
        width: 100%;
    }

    .evaluation-result {
        padding: 24px 20px;
    }

    .result-head {
        display: grid;
    }

    .result-note {
        justify-self: start;
    }

    .tier-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .listing-grid {
        grid-template-columns: 1fr;
    }

    .listing-grid-home .listing-card:last-child {
        display: block;
    }

    .listing-image {
        height: 200px;
    }

    .listing-body {
        min-height: auto;
        padding: 22px 18px;
    }

    .listing-title {
        min-height: 60px;
        font-size: 24px;
    }

    .price-row strong {
        font-size: 17px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 215px;
        padding: 24px;
    }

    .feature-card h3 {
        margin-top: 34px;
    }

    .page-hero {
        padding: 124px 0 54px;
        background:
            linear-gradient(90deg, rgba(8, 10, 10, 0.97), rgba(8, 10, 10, 0.67)),
            url("../images/og.png") 70% 55% / cover no-repeat;
    }

    .page-hero h1 {
        font-size: clamp(44px, 14vw, 60px);
    }

    .page-lead {
        font-size: 16px;
    }

    .catalog-toolbar {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .catalog-heading {
        display: grid;
        align-items: start;
    }

    .pagination a,
    .pagination span {
        min-width: 42px;
        padding: 0 11px;
    }

    .detail-image {
        height: 300px;
    }

    .detail-panel,
    .purchase-card,
    .article-sidebar,
    .info-rail {
        padding: 22px 18px;
    }

    .notification-card {
        display: grid;
        gap: 10px;
    }

    .notification-reference {
        white-space: normal;
    }

    .detail-price strong {
        font-size: 29px;
    }

    .tier-grid-large {
        grid-template-columns: 1fr 1fr;
    }

    .tier-grid-large div {
        min-height: 88px;
        padding: 14px;
    }

    .notice-grid,
    .principle-grid {
        grid-template-columns: 1fr;
    }

    .process-list li {
        grid-template-columns: 45px 1fr;
        gap: 14px;
        padding: 18px;
    }

    .next-step {
        display: grid;
    }

    .next-step .button {
        width: 100%;
    }

    .legal-content p,
    .article-content > p {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }

    .footer-brand,
    .footer-status {
        grid-column: 1 / -1;
    }

    .footer-status {
        grid-row: auto;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (max-width: 380px) {
    :root {
        --shell: calc(100% - 22px);
    }

    .hero h1 {
        font-size: 47px;
    }

    .hero-facts strong {
        font-size: 21px;
    }

    .price-row {
        grid-template-columns: 1fr;
    }

    .listing-title {
        min-height: auto;
    }

    .result-account {
        grid-template-columns: 1fr;
    }

    .tier-grid-large {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-status {
        grid-column: auto;
    }
}

@media (max-width: 900px) {
    .auth-page,
    .auth-page-register {
        padding: 118px 0 58px;
    }

    .auth-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
        align-items: start;
        width: min(620px, var(--shell));
    }

    .auth-intro h1 {
        font-size: clamp(52px, 10vw, 68px);
    }

    .auth-lead {
        max-width: 580px;
        margin-top: 17px;
        font-size: 17px;
    }

    .auth-assurance {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
        margin-top: 26px;
    }

    .auth-assurance > div {
        padding-right: 22px;
    }

    .auth-assurance > div + div {
        padding-left: 22px;
        border-left: 1px solid var(--line);
    }
}

@media (max-width: 620px) {
    .auth-page,
    .auth-page-register {
        min-height: 0;
        padding: 104px 0 44px;
        background:
            linear-gradient(180deg, rgba(8, 10, 10, 0.82), rgba(8, 10, 10, 0.97) 22rem),
            url("../images/og.png") 62% 20% / auto 440px no-repeat;
    }

    .auth-layout {
        gap: 24px;
    }

    .auth-intro .eyebrow {
        margin-bottom: 13px;
    }

    .auth-intro h1 {
        font-size: clamp(46px, 14vw, 58px);
        line-height: 0.96;
    }

    .auth-lead {
        margin-top: 13px;
        font-size: 16px;
        line-height: 1.5;
    }

    .auth-assurance {
        display: none;
    }

    .auth-card,
    .auth-page-register .auth-card {
        gap: 14px;
        padding: 22px 18px;
    }

    .auth-card-header,
    .auth-page-register .auth-card-header {
        padding-bottom: 14px;
    }

    .auth-card-header h2 {
        font-size: 24px;
    }

    .auth-card-header > p:last-child {
        margin-top: 5px;
    }

    .auth-field input {
        min-height: 50px;
    }

    .auth-label-row {
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

.main-nav .account-nav-link { display: none; }
.header-my-listings,
.header-notifications {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 9px 11px;
    border: 1px solid var(--line-strong);
    color: var(--text);
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
}
.header-notifications b {
    display: inline-grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    color: #15100a;
    background: var(--amber);
    font-size: 12px;
}
.account-page-shell { display: grid; gap: 22px; }
.account-toolbar { display: flex; justify-content: flex-end; gap: 10px; }
.my-listing-group { display: grid; gap: 14px; }
.my-listing-group-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.my-listing-group-heading h2 { margin: 0; font-size: clamp(24px, 3vw, 34px); }
.my-listing-group-heading span { color: var(--muted); }
.notification-list,
.my-listings-grid { display: grid; gap: 16px; }
.notification-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--surface);
}
.notification-item.is-unread { border-left: 4px solid var(--amber); background: var(--amber-soft); }
.notification-item h2 { margin: 5px 0 8px; font-size: 21px; }
.notification-item time,
.notification-type { color: var(--muted); font-size: 13px; }
.notification-actions { display: flex; align-items: center; gap: 9px; }
.my-listing-card {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
}
.my-listing-card > img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; }
.my-listing-body { display: grid; gap: 15px; padding: 22px; }
.my-listing-heading { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.my-listing-heading h2,
.my-listing-heading h3 { margin: 0; font-size: 25px; }
.my-listing-heading span { color: var(--amber); font-weight: 750; }
.my-listing-price { font-size: 24px; }
.my-listing-engagement,
.listing-engagement { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0; color: var(--muted); }
.listing-engagement { padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.listing-like-form { margin: 0; }
.listing-like-form .is-liked { color: var(--amber-bright); border-color: var(--amber); background: var(--amber-soft); }
.listing-closed-banner { display: flex; justify-content: space-between; gap: 18px; padding: 18px 20px; border: 1px solid rgba(242, 154, 46, 0.55); background: var(--amber-soft); }
.listing-closed-banner span { color: var(--muted); }
.my-listing-dates { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 0; }
.my-listing-dates div { padding: 11px; border: 1px solid var(--line); }
.my-listing-dates dt { color: var(--muted); font-size: 12px; }
.my-listing-dates dd { margin: 5px 0 0; }
.listing-rejection { padding: 12px; border-left: 3px solid var(--danger); background: rgba(216, 111, 99, 0.08); }
.my-listing-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.my-listing-actions form { margin: 0; }
.button:disabled { cursor: not-allowed; opacity: 0.5; }

@media (max-width: 1180px) {
    .header-my-listings { display: none; }
}
@media (max-width: 1040px) {
    .header-notifications { display: none; }
    .main-nav .account-nav-link { display: block; }
}
@media (max-width: 720px) {
    .notification-item,
    .my-listing-card { grid-template-columns: 1fr; }
    .notification-actions { align-items: stretch; flex-direction: column; }
    .my-listing-card > img { height: 220px; min-height: 0; }
    .my-listing-dates { grid-template-columns: 1fr; }
    .my-listing-heading { flex-direction: column; gap: 7px; }
    .listing-closed-banner { flex-direction: column; }
    .my-listing-actions,
    .my-listing-actions form,
    .my-listing-actions .button { width: 100%; }
}
