:root {
    --bg: #0f1020;
    --bg-2: #16182b;
    --panel: rgba(24, 27, 46, 0.92);
    --panel-soft: rgba(32, 35, 58, 0.78);
    --panel-border: rgba(255, 255, 255, 0.08);
    --text: #f5f7ff;
    --muted: #a1a7c7;
    --brand: #f2618b;
    --brand-2: #7c5cff;
    --cyan: #5ce1e6;
    --green: #3ed18f;
    --orange: #ff9b5f;
    --danger: #ff6b7f;
    --shadow: 0 24px 80px rgba(4, 8, 30, 0.48);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(124, 92, 255, 0.18), transparent 24%),
        radial-gradient(circle at bottom right, rgba(242, 97, 139, 0.12), transparent 24%),
        linear-gradient(180deg, #111224 0%, #0a0c18 100%);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body.modal-open {
    overflow: hidden;
}

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

h1, h2, h3 {
    margin: 0 0 12px;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 14px;
}

th {
    color: #f8faff;
    font-weight: 600;
}

input, select, textarea, button {
    font: inherit;
}

input, select, textarea {
    width: 100%;
    margin-top: 6px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 10, 24, 0.66);
    color: var(--text);
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: #8088ad;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 18px;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    transition: transform .18s ease, opacity .18s ease, background .18s ease;
    background: linear-gradient(135deg, var(--brand), #ff7e72);
    color: white;
    box-shadow: 0 16px 40px rgba(242, 97, 139, 0.22);
}

button:hover,
.btn:hover {
    transform: translateY(-1px);
}

.btn-ghost,
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #ffd5e2;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--brand));
    box-shadow: 0 0 18px rgba(92, 225, 230, 0.6);
}

.card {
    background: linear-gradient(180deg, rgba(26, 29, 49, 0.97), rgba(17, 19, 34, 0.97));
    border: 1px solid var(--panel-border);
    border-radius: 26px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.grid {
    display: grid;
    gap: 22px;
}

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

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

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

.dashboard-grid-wide {
    grid-template-columns: 1.1fr 1fr .9fr;
}

.table-wrap {
    overflow: auto;
}

.table-wrap.tall {
    max-height: 560px;
}

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

.alert {
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.alert.success {
    background: rgba(62, 209, 143, 0.14);
    color: #a9f4ce;
}

.alert.error {
    background: rgba(255, 107, 127, 0.16);
    color: #ffc1ca;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 36px;
}

.auth-card {
    width: min(980px, 100%);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--panel-border);
    background: linear-gradient(180deg, rgba(19, 22, 39, 0.98), rgba(11, 12, 24, 0.98));
    box-shadow: var(--shadow);
}

.brand-block,
.auth-card .stack {
    padding: 42px;
}

.brand-block {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(92, 225, 230, 0.22), transparent 30%),
        radial-gradient(circle at bottom left, rgba(242, 97, 139, 0.22), transparent 26%),
        linear-gradient(160deg, rgba(124, 92, 255, 0.22), rgba(0, 0, 0, 0));
}

.panel-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 300px 1fr;
}

.sidebar {
    padding: 26px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(circle at top left, rgba(242, 97, 139, 0.12), transparent 24%),
        linear-gradient(180deg, #131528 0%, #0b0d18 100%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reseller-theme .sidebar {
    background:
        radial-gradient(circle at top left, rgba(92, 225, 230, 0.14), transparent 24%),
        linear-gradient(180deg, #131d2f 0%, #0b1220 100%);
}

.sidebar-brand {
    padding: 12px 10px;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.profile-card strong {
    display: block;
    font-size: 14px;
}

.profile-card span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
}

.avatar-badge {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    box-shadow: 0 14px 36px rgba(124, 92, 255, 0.28);
}

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

.nav-list a {
    padding: 14px 16px;
    border-radius: 16px;
    color: #f7f8ff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-list a:hover {
    background: linear-gradient(135deg, rgba(242, 97, 139, 0.18), rgba(124, 92, 255, 0.18));
    border-color: rgba(255, 255, 255, 0.12);
}

.panel-content {
    padding: 32px;
}

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

.panel-hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 22px;
    overflow: hidden;
}

.panel-hero-copy h2 {
    font-size: clamp(28px, 3vw, 40px);
}

.hero-visual {
    position: relative;
    min-height: 210px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(92, 225, 230, 0.28), transparent 28%),
        linear-gradient(135deg, rgba(242, 97, 139, 0.18), rgba(124, 92, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.orb-pink {
    top: 26px;
    right: 36px;
    width: 88px;
    height: 88px;
    background: rgba(242, 97, 139, 0.58);
}

.orb-cyan {
    bottom: 24px;
    left: 30px;
    width: 62px;
    height: 62px;
    background: rgba(92, 225, 230, 0.6);
}

.hero-screen {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 28px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(9, 12, 24, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-screen span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #c3c9e7;
    margin-bottom: 8px;
}

.hero-screen strong {
    font-size: 24px;
}

.stat {
    position: relative;
    overflow: hidden;
}

.stat::after {
    content: "";
    position: absolute;
    inset: auto -20px -24px auto;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 97, 139, 0.2), transparent 70%);
}

.stat span {
    color: #d2d7ef;
    font-size: 13px;
}

.stat strong {
    display: block;
    margin-top: 14px;
    font-size: 30px;
}

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

.quick-link {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.quick-link:hover {
    border-color: rgba(92, 225, 230, 0.24);
}

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

.category-pill-card {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow);
}

.category-pill-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
}

.category-pill-card small {
    color: var(--muted);
}

.store-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(124, 92, 255, 0.18), transparent 24%),
        radial-gradient(circle at top right, rgba(242, 97, 139, 0.1), transparent 22%),
        linear-gradient(180deg, #0f1020 0%, #090b17 100%);
}

.store-header {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 34px;
    backdrop-filter: blur(18px);
    background: rgba(8, 10, 23, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.store-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #f8fbff;
}

.store-brand strong {
    font-size: 18px;
}

.store-brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(47, 106, 255, 0.22), rgba(86, 169, 255, 0.12));
    border: 1px solid rgba(86, 169, 255, 0.2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.store-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.store-nav a {
    padding: 10px 8px;
    color: #f1f3ff;
    background: transparent;
    font-size: 15px;
}

.store-nav a:hover {
    color: #ffffff;
}

.store-track-btn {
    min-width: 180px;
}

.store-content {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: 28px 0 44px;
    display: grid;
    gap: 26px;
}

.landing-hero,
.landing-showcase {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 24px;
}

.reference-hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(124, 92, 255, 0.18), transparent 24%),
        radial-gradient(circle at right center, rgba(92, 225, 230, 0.12), transparent 20%),
        linear-gradient(180deg, rgba(17, 20, 38, 0.98), rgba(10, 12, 23, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.reference-hero-copy h2 {
    font-size: clamp(38px, 4vw, 60px);
    max-width: 11ch;
}

.reference-hero-copy h2 span {
    color: #56a9ff;
}

.reference-hero-art {
    position: relative;
    min-height: 340px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 65% 24%, rgba(242, 97, 139, 0.18), transparent 18%),
        radial-gradient(circle at 30% 70%, rgba(86, 169, 255, 0.16), transparent 20%),
        linear-gradient(135deg, rgba(18, 22, 41, 0.96), rgba(10, 12, 24, 0.98));
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.hero-glow-a {
    width: 180px;
    height: 180px;
    top: -20px;
    right: -20px;
    background: rgba(86, 169, 255, 0.18);
}

.hero-glow-b {
    width: 160px;
    height: 160px;
    bottom: 16px;
    left: 10px;
    background: rgba(124, 92, 255, 0.14);
}

.hero-dashboard-card {
    position: absolute;
    inset: auto 24px 24px 24px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-dashboard-card span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #d8dcf2;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-dashboard-card strong {
    display: block;
    font-size: 28px;
    max-width: 11ch;
}

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

.step-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
    position: relative;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: #6e748f;
}

.step-chip::after {
    content: "";
    position: absolute;
    top: 24px;
    left: calc(100% - 8px);
    width: calc(100% - 36px);
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.step-chip:last-child::after {
    display: none;
}

.step-chip span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 700;
}

.step-chip strong {
    font-size: 16px;
}

.reference-section {
    display: grid;
    gap: 22px;
}

.section-heading {
    display: grid;
    gap: 10px;
}

.section-heading.center {
    text-align: center;
    justify-items: center;
}

.flow-shell {
    display: grid;
    gap: 22px;
}

.flow-steps .step-chip {
    opacity: 1;
}

.flow-steps .step-chip.is-active,
.flow-steps .step-chip.is-complete {
    color: #4d8cff;
}

.flow-steps .step-chip.is-active span,
.flow-steps .step-chip.is-complete span {
    background: #2f6aff;
    border-color: rgba(47, 106, 255, 0.4);
}

.flow-steps .step-chip.is-complete::after {
    background: rgba(47, 106, 255, 0.8);
}

.flow-panel {
    display: grid;
    gap: 28px;
}

.flow-stage {
    display: grid;
    gap: 16px;
}

.flow-stage-platforms {
    padding: 8px 0 12px;
}

.flow-catalog-shell {
    padding: 34px;
}

.flow-stage h4,
.modal-head h3,
.checkout-column h4 {
    margin: 0;
    font-size: 30px;
}

.flow-stage p {
    margin-top: -6px;
}

.flow-platform-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.flow-platform-card {
    cursor: pointer;
    min-height: 132px;
    gap: 12px;
}

.flow-platform-card.is-selected,
.platform-card.is-selected {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(242, 97, 139, 0.34), rgba(84, 30, 68, 0.9));
    box-shadow: 0 0 0 2px rgba(242, 97, 139, 0.2) inset;
}

.platform-card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    font-weight: 800;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.service-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.service-pill {
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.service-pill.is-selected {
    background: linear-gradient(135deg, rgba(242, 97, 139, 0.9), rgba(255, 92, 166, 0.88));
    border-color: rgba(255, 255, 255, 0.16);
}

.service-pill-star {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    color: #ffd6e8;
    font-weight: 800;
}

.flow-stage-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
}

.package-badge {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: right;
}

.package-badge span {
    display: block;
    margin-bottom: 6px;
    color: #ffd7e3;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

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

.package-card {
    position: relative;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 12px;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.16);
}

.package-card-head strong {
    display: block;
    font-size: 24px;
}

.package-card b {
    font-size: 22px;
    color: #ffb8d1;
}

.package-label {
    color: var(--muted);
    min-height: 28px;
}

.package-quality {
    color: #8f95b5;
    font-size: 14px;
}

.package-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.package-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.package-highlight {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(86, 169, 255, 0.16);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.package-card.is-selected {
    border-color: rgba(86, 169, 255, 0.35);
    box-shadow: 0 0 0 1px rgba(86, 169, 255, 0.14) inset;
}

.package-action {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    padding: 0;
    background: rgba(6, 8, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    font-size: 28px;
    line-height: 1;
}

.floating-cart {
    position: fixed;
    right: 26px;
    bottom: 28px;
    z-index: 12;
    width: 64px;
    height: 64px;
    padding: 0;
    border-radius: 50%;
    background: #2f6aff;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 40px rgba(47, 106, 255, 0.35);
}

.floating-cart span {
    position: absolute;
    inset: auto auto 14px 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.floating-cart strong {
    position: absolute;
    top: -4px;
    right: -2px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ff4d5f;
    font-size: 12px;
}

.floating-cart-icon {
    position: static;
    transform: none;
    opacity: 1;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 20;
    background: rgba(4, 6, 15, 0.78);
    display: grid;
    place-items: center;
    padding: 24px;
}

.modal-card {
    position: relative;
    width: min(1040px, 100%);
    max-height: 90vh;
    overflow: auto;
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(32, 33, 43, 0.98), rgba(24, 25, 35, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    font-size: 28px;
}

.modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.modal-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 13px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-item-info strong,
.cart-item-price strong {
    display: block;
}

.cart-item-info strong {
    font-size: 28px;
}

.cart-item-info span,
.checkout-summary-card span,
.link-button {
    color: var(--muted);
}

.link-button {
    margin-top: 6px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.cart-footer {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.cart-total-row,
.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.cart-total-row strong,
.checkout-total-row strong {
    font-size: 30px;
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 12px;
}

.btn-success {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 16px 40px rgba(34, 197, 94, 0.18);
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 26px;
}

.checkout-column {
    display: grid;
    gap: 14px;
}

.checkout-summary-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-summary-card strong,
.checkout-summary-card b {
    display: block;
}

.checkout-summary-card b {
    margin-top: 10px;
    font-size: 24px;
}

.coupon-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: end;
}

.checkout-note {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-note span {
    display: block;
    margin-bottom: 6px;
    color: #d5dbff;
    font-weight: 600;
}

.checkout-submit-row {
    grid-column: 1 / -1;
}

.large-submit {
    width: 100%;
    min-height: 56px;
    font-size: 22px;
}

.empty-flow-state {
    display: grid;
    gap: 14px;
    justify-items: start;
}

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

.platform-card {
    min-height: 112px;
    display: grid;
    place-items: center;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.platform-card strong {
    font-size: 18px;
}

.platform-youtube { box-shadow: inset 0 0 0 1px rgba(255, 0, 0, 0.22); }
.platform-instagram { box-shadow: inset 0 0 0 1px rgba(214, 41, 118, 0.22); }
.platform-tiktok { box-shadow: inset 0 0 0 1px rgba(37, 244, 238, 0.22); }
.platform-facebook { box-shadow: inset 0 0 0 1px rgba(24, 119, 242, 0.22); }
.platform-kwai { box-shadow: inset 0 0 0 1px rgba(255, 126, 0, 0.22); }
.platform-twitch { box-shadow: inset 0 0 0 1px rgba(145, 70, 255, 0.22); }
.platform-telegram { box-shadow: inset 0 0 0 1px rgba(34, 158, 217, 0.22); }
.platform-other { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18); }

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

.benefit-card {
    min-height: 220px;
}

.assistant-band {
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(124, 92, 255, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(17, 20, 38, 0.98), rgba(10, 12, 23, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.assistant-shell {
    width: min(520px, 100%);
    margin: 24px auto 0;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 16px;
}

.assistant-field {
    display: grid;
    gap: 8px;
}

.assistant-field label {
    color: #eef2ff;
    font-weight: 600;
}

.assistant-input {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(6, 8, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
}

.assistant-btn {
    width: 100%;
}

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

.testimonial-card {
    min-height: 220px;
    display: grid;
    gap: 16px;
    align-content: start;
}

.stars {
    color: #ffd166;
    letter-spacing: .18em;
}

.testimonial-author strong,
.testimonial-author span {
    display: block;
}

.testimonial-author span {
    color: var(--muted);
    margin-top: 4px;
}

.final-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 32px 34px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(9, 34, 77, 0.94), rgba(14, 27, 56, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.store-footer {
    padding: 46px 34px 28px;
    background: rgba(3, 5, 12, 0.72);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.store-footer-grid {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 28px;
}

.store-footer-grid section {
    display: grid;
    align-content: start;
    gap: 10px;
}

.store-footer-grid h4 {
    margin: 0 0 8px;
}

.store-footer-grid a,
.store-footer-grid p {
    color: var(--muted);
}

.store-footer-bottom {
    width: min(1280px, calc(100% - 40px));
    margin: 28px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #7b819d;
}

.secure-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-copy h2 {
    font-size: clamp(34px, 4vw, 54px);
    max-width: 10ch;
}

.landing-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.landing-visual,
.storefront-hero,
.highlight-box {
    position: relative;
}

.landing-visual {
    min-height: 320px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(92, 225, 230, 0.24), transparent 24%),
        radial-gradient(circle at bottom left, rgba(242, 97, 139, 0.2), transparent 20%),
        linear-gradient(135deg, rgba(124, 92, 255, 0.22), rgba(20, 22, 43, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.visual-card {
    position: absolute;
    right: 28px;
    bottom: 30px;
    left: 28px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(7, 10, 24, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-card span,
.mini-product span,
.product-tag {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    color: #ffd4e1;
}

.visual-card strong {
    display: block;
    font-size: 28px;
    line-height: 1.2;
}

.floating-chip {
    position: absolute;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fefeff;
}

.chip-a { top: 28px; left: 24px; }
.chip-b { top: 90px; right: 26px; }
.chip-c { bottom: 116px; left: 58px; }

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

.feature-card {
    min-height: 220px;
}

.feature-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    font-weight: 800;
}

.mini-products {
    display: grid;
    gap: 14px;
}

.mini-product {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-product strong,
.highlight-box strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.mini-product small {
    color: #fff1b8;
    font-size: 14px;
}

.storefront-hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 22px;
}

.storefront-hero h2 {
    font-size: clamp(30px, 3vw, 46px);
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.store-badges span {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.highlight-box {
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(242, 97, 139, 0.14), transparent 24%),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-box p {
    margin-top: 10px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 22px;
    align-items: start;
}

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

.empty-shop-state {
    min-height: 280px;
    display: grid;
    align-content: center;
    gap: 14px;
}

.product-card {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(24, 27, 46, 0.96), rgba(14, 16, 28, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.product-card:hover {
    border-color: rgba(92, 225, 230, 0.22);
    transform: translateY(-2px);
}

.product-card h3 {
    margin-bottom: 8px;
}

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

.product-meta strong {
    font-size: 22px;
    color: #fff1b8;
}

.checkout-panel {
    position: sticky;
    top: 98px;
}

.panel-note {
    margin-bottom: 18px;
}

.checkout-disabled {
    display: grid;
    gap: 14px;
}

.inline-form {
    display: flex;
    gap: 12px;
}

.plain-list {
    padding-left: 18px;
    color: var(--muted);
}

@media (max-width: 1100px) {
    .cards-4,
    .stats-grid,
    .landing-grid,
    .product-wall,
    .platform-grid,
    .benefit-grid,
    .testimonial-grid,
    .flow-platform-grid,
    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .panel-hero,
    .landing-hero,
    .landing-showcase,
    .reference-hero,
    .storefront-hero,
    .checkout-form-grid,
    .shop-layout,
    .store-grid,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .auth-card,
    .panel-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .panel-header,
    .store-header,
    .inline-form,
    .final-cta,
    .flow-stage-head,
    .modal-head,
    .store-footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .store-content {
        width: min(100% - 24px, 1280px);
    }

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

@media (max-width: 640px) {
    .product-wall,
    .cards-4,
    .stats-grid,
    .landing-grid,
    .quick-actions,
    .platform-grid,
    .benefit-grid,
    .testimonial-grid,
    .step-bar,
    .flow-platform-grid,
    .package-grid,
    .modal-actions {
        grid-template-columns: 1fr;
    }

    .panel-content,
    .store-header,
    .brand-block,
    .auth-card .stack,
    .reference-hero,
    .assistant-band,
    .final-cta,
    .flow-catalog-shell,
    .store-footer {
        padding: 22px;
    }

    .store-footer-grid {
        width: min(100% - 24px, 1280px);
        grid-template-columns: 1fr;
    }
}
