.smm-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.smm-hero,
.smm-page {
    color: var(--market-text, #f4f7ef);
    background:
        linear-gradient(180deg, rgba(200, 255, 90, 0.06), transparent 28%),
        var(--market-bg, #070806);
}

.smm-hero {
    min-height: 72svh;
    display: flex;
    align-items: center;
    padding: 96px 0 64px;
    border-bottom: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
}

.smm-page {
    min-height: 68svh;
    padding: 54px 0 96px;
}

.smm-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
    gap: 48px;
    align-items: center;
}

.smm-eyebrow {
    margin: 0 0 12px;
    color: var(--market-accent, #c8ff5a);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.smm-hero h1,
.smm-section__header h2,
.smm-heading h1,
.smm-heading h2 {
    margin: 0;
    color: var(--market-text, #f4f7ef);
    font-weight: 900;
    letter-spacing: 0;
}

.smm-hero h1 {
    max-width: 760px;
    font-size: 56px;
    line-height: 1.04;
}

.smm-hero__lead {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--market-soft, #dfe8d6);
    font-size: 17px;
    line-height: 1.75;
}

.smm-hero__actions,
.smm-actions,
.smm-filter__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.smm-hero__actions {
    margin-top: 30px;
}

.smm-button,
.smm-button-outline {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
    border-radius: 8px;
    color: var(--market-text, #f4f7ef);
    background: rgba(255, 255, 255, 0.06);
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.smm-button:hover,
.smm-button-outline:hover {
    color: var(--market-text, #f4f7ef);
    transform: translateY(-2px);
    border-color: rgba(200, 255, 90, 0.46);
    background: rgba(255, 255, 255, 0.1);
}

.smm-button--primary,
.smm-button:not(.smm-button--ghost) {
    border-color: var(--market-accent, #c8ff5a);
    color: #101306;
    background: var(--market-accent, #c8ff5a);
}

.smm-button--primary:hover,
.smm-button:not(.smm-button--ghost):hover {
    color: #101306;
    background: #d6ff7a;
}

.smm-button--ghost,
.smm-button-outline {
    color: var(--market-soft, #dfe8d6);
    background: rgba(255, 255, 255, 0.055);
}

.smm-button--small {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
}

.smm-dashboard,
.smm-panel,
.smm-filter,
.smm-featured__item,
.smm-service-row,
.smm-platform-card,
.smm-how__grid > div,
.smm-card,
.smm-empty {
    border: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.smm-dashboard {
    padding: 22px;
    box-shadow: var(--market-shadow, 0 22px 70px rgba(0, 0, 0, 0.36));
}

.smm-dashboard__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.smm-dashboard__top span,
.smm-dashboard__metric span,
.smm-dashboard__row span,
.smm-service-row__facts span,
.smm-featured__item span,
.smm-featured__item small,
.smm-platform-card small,
.smm-summary__row span {
    color: var(--market-muted, #a6ad9f);
    font-size: 13px;
    font-weight: 800;
}

.smm-dashboard__top strong {
    display: block;
    margin-top: 5px;
    color: var(--market-text, #f4f7ef);
    font-size: 22px;
    line-height: 1.2;
}

.smm-live-dot {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    border: 1px solid rgba(142, 240, 192, 0.4);
    border-radius: 8px;
    color: #d9ffe9 !important;
    background: rgba(142, 240, 192, 0.12);
}

.smm-live-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--market-accent-2, #8ef0c0);
}

.smm-dashboard__metric {
    margin: 24px 0 18px;
    padding: 18px;
    border: 1px solid rgba(200, 255, 90, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(120deg, rgba(200, 255, 90, 0.13), rgba(142, 240, 192, 0.05)),
        rgba(0, 0, 0, 0.18);
}

.smm-dashboard__metric strong {
    display: block;
    margin-top: 5px;
    color: var(--market-accent, #c8ff5a);
    font-size: 34px;
    line-height: 1.1;
    font-weight: 900;
}

.smm-dashboard__rows {
    display: grid;
    gap: 12px;
}

.smm-dashboard__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    align-items: center;
}

.smm-dashboard__row span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--market-soft, #dfe8d6);
}

.smm-dashboard__row strong {
    color: var(--market-text, #f4f7ef);
    font-size: 14px;
}

.smm-dashboard__row i:last-child {
    grid-column: 1 / -1;
    height: 8px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.smm-dashboard__row i:last-child::before {
    content: "";
    display: block;
    width: var(--value);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--market-accent, #c8ff5a), var(--market-accent-2, #8ef0c0));
}

.smm-strip {
    border-bottom: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
    background: #0d0e0c;
}

.smm-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.smm-strip__grid div {
    padding: 24px 22px;
    border-left: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
}

.smm-strip__grid div:last-child {
    border-right: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
}

.smm-strip strong {
    display: block;
    color: var(--market-text, #f4f7ef);
    font-size: 24px;
    line-height: 1.2;
}

.smm-strip span {
    display: block;
    margin-top: 5px;
    color: var(--market-muted, #a6ad9f);
    font-size: 14px;
}

.smm-section {
    padding: 88px 0;
    color: var(--market-text, #f4f7ef);
    background: var(--market-bg, #070806);
}

.smm-section--muted {
    background: #0d0e0c;
    border-top: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
    border-bottom: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
}

.smm-section__header {
    max-width: 720px;
    margin-bottom: 28px;
}

.smm-section__header--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
}

.smm-section__header h2 {
    font-size: 36px;
    line-height: 1.12;
}

.smm-section__header p:not(.smm-eyebrow) {
    margin: 12px 0 0;
    color: var(--market-muted, #a6ad9f);
    font-size: 15px;
    line-height: 1.7;
}

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

.smm-platform-card {
    min-height: 148px;
    display: grid;
    align-content: space-between;
    padding: 18px;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.smm-platform-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 255, 90, 0.42);
    background: rgba(255, 255, 255, 0.07);
}

.smm-platform-card > span,
.smm-service-row__icon,
.smm-how__grid span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 255, 90, 0.34);
    border-radius: 8px;
    color: var(--market-accent, #c8ff5a);
    background: rgba(200, 255, 90, 0.08);
}

.smm-platform-card strong {
    margin-top: 18px;
    color: var(--market-text, #f4f7ef);
    font-size: 18px;
    line-height: 1.25;
}

.smm-filter {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr auto;
    gap: 12px;
    align-items: end;
    padding: 14px;
    margin-bottom: 18px;
}

.smm-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--market-soft, #dfe8d6);
    font-size: 14px;
    font-weight: 900;
}

.smm-input,
.smm-select,
.smm-textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
    border-radius: 8px;
    padding: 0 13px;
    color: var(--market-text, #f4f7ef);
    background: rgba(0, 0, 0, 0.3);
    font-size: 15px;
    outline: 0;
}

.smm-input:focus,
.smm-select:focus,
.smm-textarea:focus {
    border-color: rgba(200, 255, 90, 0.58);
    box-shadow: 0 0 0 3px rgba(200, 255, 90, 0.14);
}

.smm-select option {
    color: #101306;
}

.smm-textarea {
    min-height: 132px;
    padding: 13px;
    resize: vertical;
}

.smm-featured {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.smm-featured__item {
    min-height: 120px;
    padding: 14px;
    display: grid;
    align-content: space-between;
    gap: 10px;
}

.smm-featured__item strong {
    color: var(--market-text, #f4f7ef);
    font-size: 14px;
    line-height: 1.45;
}

.smm-featured__item small {
    color: var(--market-accent, #c8ff5a);
}

.smm-service-list {
    display: grid;
    gap: 10px;
}

.smm-service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease;
}

.smm-service-row:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 255, 90, 0.34);
    background: rgba(255, 255, 255, 0.065);
}

.smm-service-row__main {
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.smm-service-row__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 8px;
}

.smm-service-row__meta span,
.smm-pill {
    min-height: 25px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
    border-radius: 8px;
    color: var(--market-soft, #dfe8d6);
    background: rgba(255, 255, 255, 0.05);
    font-size: 12px;
    font-weight: 800;
}

.smm-pill--muted {
    color: var(--market-muted, #a6ad9f);
}

.smm-service-row h3,
.smm-card h3,
.smm-empty h3,
.smm-how__grid h3 {
    margin: 0;
    color: var(--market-text, #f4f7ef);
    font-size: 17px;
    line-height: 1.38;
    font-weight: 900;
}

.smm-service-row p,
.smm-empty p,
.smm-how__grid p,
.smm-heading p {
    margin: 8px 0 0;
    color: var(--market-muted, #a6ad9f);
    font-size: 14px;
    line-height: 1.65;
}

.smm-service-row__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.smm-service-row__facts div,
.smm-summary__row {
    padding: 11px;
    border: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.18);
}

.smm-service-row__facts strong,
.smm-summary__row strong {
    display: block;
    margin-top: 3px;
    color: var(--market-text, #f4f7ef);
    font-size: 14px;
    line-height: 1.35;
}

.smm-pagination {
    margin-top: 22px;
}

.smm-pagination .pagination {
    justify-content: flex-end;
}

.smm-pagination .pagination-item,
.smm-page .pagination-item {
    border: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
    color: var(--market-soft, #dfe8d6);
    background: rgba(255, 255, 255, 0.06);
}

.smm-pagination .pagination-item.active,
.smm-page .pagination-item.active {
    color: #101306;
    background: var(--market-accent, #c8ff5a);
}

.smm-how {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 32px;
    align-items: start;
}

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

.smm-how__grid > div {
    padding: 20px;
}

.smm-how__grid h3 {
    margin-top: 18px;
}

.smm-panel {
    padding: 22px;
}

.smm-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 20px;
}

.smm-heading h1 {
    font-size: 34px;
    line-height: 1.15;
}

.smm-heading h2 {
    font-size: 24px;
}

.smm-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
    gap: 16px;
}

.smm-card {
    padding: 16px;
}

.smm-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.smm-card__price,
.smm-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--market-muted, #a6ad9f);
}

.smm-card__price {
    margin-bottom: 12px;
}

.smm-card__price strong {
    color: var(--market-accent, #c8ff5a);
    font-size: 17px;
}

.smm-note {
    padding: 13px 14px;
    border: 1px solid rgba(255, 209, 102, 0.32);
    border-radius: 8px;
    color: #ffeec1;
    background: rgba(255, 209, 102, 0.1);
    margin: 14px 0;
    font-size: 14px;
    line-height: 1.65;
}

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

.smm-summary__total {
    border-color: rgba(200, 255, 90, 0.3);
}

.smm-summary__total strong {
    color: var(--market-accent, #c8ff5a);
    font-size: 22px;
}

.smm-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.smm-table th,
.smm-table td {
    border-bottom: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
    padding: 13px 10px;
    color: var(--market-soft, #dfe8d6);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

.smm-table th {
    color: var(--market-muted, #a6ad9f);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.smm-table a {
    color: var(--market-accent, #c8ff5a);
}

.smm-status {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 8px;
    color: var(--market-soft, #dfe8d6);
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 900;
}

.smm-status--success {
    color: #d7ffe9;
    background: rgba(142, 240, 192, 0.16);
}

.smm-status--warning {
    color: #ffeec1;
    background: rgba(255, 209, 102, 0.16);
}

.smm-status--danger {
    color: #ffd8d4;
    background: rgba(255, 111, 97, 0.16);
}

.smm-empty {
    padding: 24px;
}

.smm-dashboard__empty {
    padding: 18px;
    border: 1px solid var(--market-line, rgba(238, 246, 236, 0.14));
    border-radius: 8px;
    color: var(--market-muted, #a6ad9f);
}

.smm-page .alert {
    border-radius: 8px;
}

@media (max-width: 1120px) {
    .smm-hero__grid,
    .smm-how,
    .smm-grid {
        grid-template-columns: 1fr;
    }

    .smm-featured {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 900px) {
    .smm-hero {
        min-height: auto;
        padding: 72px 0 48px;
    }

    .smm-hero h1 {
        font-size: 42px;
    }

    .smm-section__header--split,
    .smm-filter {
        grid-template-columns: 1fr;
    }

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

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

    .smm-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .smm-container {
        width: min(100% - 28px, 1180px);
    }

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

    .smm-hero__lead {
        font-size: 15px;
    }

    .smm-section {
        padding: 64px 0;
    }

    .smm-section__header h2,
    .smm-heading h1 {
        font-size: 28px;
    }

    .smm-platform-grid,
    .smm-featured,
    .smm-how__grid,
    .smm-service-row__facts {
        grid-template-columns: 1fr;
    }

    .smm-service-row__main {
        grid-template-columns: 1fr;
    }

    .smm-hero__actions,
    .smm-actions,
    .smm-filter__actions {
        flex-direction: column;
    }

    .smm-button,
    .smm-button-outline {
        width: 100%;
    }

    .smm-dashboard,
    .smm-panel {
        padding: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .smm-button,
    .smm-button-outline,
    .smm-platform-card,
    .smm-service-row {
        transition-duration: 1ms;
    }
}
