:root {
    --primary: #7c3aed;
    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --soft: #f7f3ff;
    --shadow: 0 24px 80px rgba(31, 41, 55, .12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fff 0%, #faf7ff 42%, #fff 100%);
    line-height: 1.6;
}

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

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 20px 0;
    border-bottom: 1px solid rgba(229, 231, 235, .75);
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(14px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.05;
}

.brand img {
    width: 46px;
    height: 46px;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    margin-top: 3px;
}

.nav nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #374151;
    font-weight: 650;
    font-size: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 850;
    color: white;
    background: linear-gradient(135deg, var(--primary), #a66bff);
    box-shadow: 0 14px 30px rgba(124, 58, 237, .26);
    cursor: pointer;
}

.btn.outline,
.outline {
    background: white;
    color: var(--primary);
    border: 1px solid #d8b4fe;
    box-shadow: none;
}

.btn.small {
    padding: 10px 16px;
}

.full {
    width: 100%;
}

.hero {
    padding: 82px 0 56px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--primary);
    background: #f1e8ff;
    border: 1px solid #e9d5ff;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
    font-size: 13px;
}

h1 {
    font-size: clamp(42px, 6vw, 74px);
    line-height: 1.03;
    letter-spacing: -2.4px;
    margin-bottom: 24px;
}

h1 span {
    color: var(--primary);
}

.lead {
    color: #4b5563;
    font-size: 20px;
    max-width: 610px;
    margin-bottom: 28px;
}

.checks {
    display: grid;
    gap: 10px;
    margin-bottom: 32px;
    color: #374151;
    font-weight: 650;
}

.checks div:before {
    content: "✓";
    color: var(--primary);
    margin-right: 10px;
    font-weight: 900;
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.tabs span {
    background: #f3f4f6;
    color: #4b5563;
    border-radius: 10px;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 800;
}

.tabs .active {
    background: #efe7ff;
    color: var(--primary);
}

.editor {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
}

.panel label,
label {
    display: block;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 8px;
}

.panel input,
input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    color: #374151;
}

.suggestion {
    margin-top: 18px;
    padding: 16px;
    background: #faf5ff;
    border: 1px solid #eadcff;
    border-radius: 16px;
    font-size: 14px;
}

.suggestion p {
    color: #4b5563;
}

.preview {
    min-height: 340px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fafafa, #f3f4f6);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.mug {
    width: 230px;
    height: 250px;
    background: white;
    border-radius: 28px;
    display: grid;
    place-items: center;
    position: relative;
    box-shadow:
            inset 0 -14px 20px rgba(0, 0, 0, .055),
            0 18px 46px rgba(0, 0, 0, .12);
    text-align: center;
    font-size: 29px;
    font-weight: 950;
    line-height: 1.08;
    text-transform: uppercase;
}

.mug:after {
    content: "";
    position: absolute;
    right: -52px;
    width: 84px;
    height: 124px;
    border: 18px solid #fff;
    border-left: 0;
    border-radius: 0 70px 70px 0;
    box-shadow: 10px 14px 30px rgba(0, 0, 0, .08);
}

.section {
    padding: 76px 0;
}

h2 {
    text-align: center;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -1.4px;
    margin-bottom: 14px;
}

h2.left {
    text-align: left;
}

.subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    margin: 0 auto 44px;
    max-width: 760px;
}

.muted {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 28px;
}

.cards {
    display: grid;
    gap: 20px;
}

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

.cards.three {
    grid-template-columns: repeat(3, 1fr);
}

.card,
.table-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(31, 41, 55, .06);
}

.icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f1e8ff;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 18px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.card p,
.steps p {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 54px;
    align-items: center;
}

.video-box {
    min-height: 390px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: white;
    display: grid;
    place-items: center;
    position: relative;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.video-box:before {
    content: "";
    position: absolute;
    inset: 38px;
    border-radius: 26px;
    background: radial-gradient(circle at center, #f3e8ff, #fff 58%);
}

.shirt {
    position: relative;
    width: 260px;
    height: 300px;
    background: #fff;
    clip-path: polygon(
            25% 0,
            38% 0,
            44% 10%,
            56% 10%,
            62% 0,
            75% 0,
            100% 20%,
            86% 38%,
            78% 30%,
            78% 100%,
            22% 100%,
            22% 30%,
            14% 38%,
            0 20%
    );
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 28px;
    font-weight: 950;
}

.play {
    position: absolute;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: white;
    font-size: 28px;
}

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

.steps > div {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
}

.steps span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f1e8ff;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-weight: 950;
}

.pricing {
    border: 1px solid var(--border);
    border-radius: 36px;
    padding: 52px;
    background: linear-gradient(135deg, #faf5ff, #fff);
}

.price {
    font-size: 54px;
    line-height: 1;
    font-weight: 950;
    margin: 18px 0;
    letter-spacing: -2px;
}

.price small {
    color: var(--muted);
    font-size: 16px;
    font-weight: 750;
}

.highlight {
    border: 2px solid var(--primary);
}

ul {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

li:before {
    content: "✓";
    color: var(--primary);
    margin-right: 10px;
    font-weight: 900;
}

.final-cta {
    padding: 50px 0 84px;
}

.cta {
    border-radius: 32px;
    padding: 48px;
    background: linear-gradient(135deg, #f3e8ff, #fff);
    border: 1px solid #eadcff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.footer {
    border-top: 1px solid var(--border);
    padding: 56px 0 32px;
    color: #4b5563;
    background: #fff;
}

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

.footer a {
    display: block;
    margin-top: 9px;
}

.auth-page {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: 60px 0;
}

.auth-card {
    width: min(460px, 92%);
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow);
}

.auth-card h1 {
    font-size: 34px;
    letter-spacing: -1px;
}

.center {
    text-align: center;
    margin-top: 18px;
}

.center a {
    color: var(--primary);
    font-weight: 800;
}

.alert {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #9f1239;
    border-radius: 12px;
    padding: 12px;
    margin: 12px 0;
}

.dashboard {
    padding: 60px 0;
    min-height: 70vh;
}

.dashboard h1 {
    font-size: 44px;
}

.table-card {
    margin: 22px 0;
    overflow: auto;
}

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

th,
td {
    text-align: left;
    border-bottom: 1px solid var(--border);
    padding: 12px;
}

code {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px 7px;
}

@media (max-width: 980px) {

    .nav nav {
        display: none;
    }

    .hero-grid,
    .split,
    .cards.three,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {

    .editor,
    .cards.four {
        grid-template-columns: 1fr;
    }

    .pricing,
    .cta {
        padding: 30px;
    }

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

    h1 {
        letter-spacing: -1.4px;
    }
}