:root {
    --bg: #f4f6f5;
    --surface: #ffffff;
    --surface-soft: #eef3ef;
    --ink: #0b111c;
    --muted: #69727a;
    --line: #dfe6e2;
    --primary: #0b111c;
    --primary-hover: #172233;
    --blue: #168a4a;
    --green: #168a4a;
    --mint: #8dfca6;
    --mint-soft: #eaffef;
    --graphite: #151b23;
    --slate: #30363c;
    --danger: #dc2626;
}

.admin-action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    margin: 14px 0;
}

.admin-tile {
    display: grid;
    align-content: start;
    min-height: 190px;
    color: inherit;
}

.admin-tile h2 {
    margin-top: 16px;
}

.status-danger {
    display: inline-flex;
    width: max-content;
    align-items: center;
    border-radius: 999px;
    padding: 4px 9px;
    background: #fff1f2;
    color: var(--danger);
    font-size: .76rem;
    font-weight: 520;
    text-transform: capitalize;
}

.inline-form,
.compact-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.inline-form input,
.inline-form select {
    max-width: 360px;
}

.compact-form {
    flex-wrap: wrap;
}

.compact-form input,
.compact-form select {
    min-width: 120px;
    max-width: 190px;
}

.danger-button {
    border-color: #fecaca;
    background: #fff1f2;
    color: var(--danger);
}

.ticket-thread {
    display: grid;
    gap: 12px;
}

.ticket-message {
    display: grid;
    gap: 8px;
    width: min(760px, 100%);
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fbfcfe;
}

.ticket-message.admin-reply {
    margin-left: auto;
    border-color: rgba(22, 138, 74, .22);
    background: var(--mint-soft);
}

.ticket-message div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
}

.ticket-message p {
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .admin-action-grid {
        grid-template-columns: 1fr;
    }

    .inline-form {
        align-items: stretch;
        flex-direction: column;
    }

    .inline-form input,
    .inline-form select {
        max-width: none;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% -12%, rgba(141, 252, 166, .18), transparent 28rem),
        radial-gradient(circle at 90% 8%, rgba(11, 17, 28, .08), transparent 30rem),
        var(--bg);
    color: var(--ink);
    font-family: "Avenir Next", Inter, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -.01em;
}

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

h1,
h2,
h3,
h4,
strong {
    font-weight: 610;
}

.shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 48px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0 24px;
}

.brand,
.topbar nav,
.actions,
.page-heading,
.panel-heading,
.split {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar nav,
.actions,
.panel-heading,
.split {
    justify-content: space-between;
}

.brand-logo-wrap {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(1.08) saturate(1.04);
}

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

.brand-copy strong {
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 560;
    letter-spacing: -.035em;
}

.brand-copy small {
    color: var(--muted);
    font-size: .74rem;
    font-weight: 400;
    letter-spacing: -.01em;
}

.brand small,
.muted,
label small,
.panel-heading p,
.dashboard-head p,
.page-heading p,
.qr-row small,
.copy-box span,
.stat-card span,
.auth-card p,
.usage-card span,
.mini-card span {
    color: var(--muted);
}

.topbar nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    color: #3f4654;
    font-weight: 500;
}

.button,
button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 14px;
    background: var(--surface);
    color: var(--ink);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.button-primary {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--mint);
    box-shadow: inset 0 0 0 1px rgba(141, 252, 166, .16);
}

.button-primary:hover {
    background: var(--primary-hover);
    color: #caffd4;
}

.link-button {
    border: 0;
    padding: 0;
    background: transparent;
    color: #3f4654;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
}

.notice {
    margin-bottom: 16px;
    padding: 11px 13px;
    border: 1px solid rgba(22, 138, 74, .22);
    border-radius: 12px;
    background: var(--mint-soft);
    color: #14532d;
}

.notice-soft {
    border-color: #e5e7eb;
    background: #fff;
    color: var(--ink);
}

.notice-danger {
    border-color: #fecaca;
    background: #fff1f2;
    color: #991b1b;
}

.dashboard-head {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 18px;
    align-items: end;
    margin: 10px 0 18px;
}

.site-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .86fr);
    gap: 34px;
    align-items: center;
    min-height: 620px;
    padding: 56px 0 38px;
}

.site-hero-copy h1,
.section-head h2,
.workflow-section h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(2.35rem, 5.6vw, 5.2rem);
    line-height: .98;
    font-weight: 620;
    letter-spacing: -.055em;
}

.hero-lede {
    max-width: 660px;
    margin: 22px 0 0;
    color: #4a5262;
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    line-height: 1.75;
}

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

.button-large {
    min-height: 46px;
    padding: 0 20px;
    border-radius: 13px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-proof span,
.plan-pill {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, .72);
    color: #4b5565;
    font-size: .82rem;
    font-weight: 560;
}

.product-showcase {
    overflow: hidden;
    border: 1px solid rgba(17, 19, 24, .08);
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 14%, rgba(141, 252, 166, .24), transparent 22rem),
        radial-gradient(circle at 85% 16%, rgba(11, 17, 28, .12), transparent 20rem),
        linear-gradient(145deg, #ffffff, #eef4ef);
    box-shadow: 0 30px 80px rgba(17, 24, 39, .12);
}

.showcase-toolbar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(17, 19, 24, .07);
    background: rgba(255, 255, 255, .6);
}

.showcase-toolbar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #cbd5e1;
}

.showcase-toolbar strong {
    margin-left: auto;
    color: #4b5565;
    font-size: .82rem;
    font-weight: 560;
}

.showcase-body {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 18px;
    align-items: center;
    padding: 28px;
}

.mock-qr-card,
.mock-panel,
.analytics-cards article {
    border: 1px solid rgba(17, 19, 24, .08);
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 40px rgba(17, 24, 39, .08);
}

.mock-qr-card {
    display: grid;
    gap: 14px;
    place-items: center;
    padding: 22px;
}

.mock-qr {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    width: 190px;
    height: 190px;
    padding: 18px;
    border-radius: 24px;
    background: white;
}

.mock-qr span {
    border-radius: 5px;
    background: #e8edf5;
}

.mock-qr span.on {
    background: var(--ink);
}

.mock-qr em {
    position: absolute;
    overflow: hidden;
    inset: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 16px;
    background: white;
    color: var(--blue);
    font-style: normal;
    font-weight: 620;
    box-shadow: 0 8px 24px rgba(17, 24, 39, .14);
}

.mock-qr em img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    object-position: center;
    filter: contrast(1.16) saturate(1.08);
}

.mock-panel {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.mock-panel div,
.workflow-steps article {
    display: grid;
    gap: 5px;
    padding: 14px;
    border-radius: 15px;
    background: #f8fafc;
}

.mock-panel span,
.analytics-cards span,
.workflow-steps span {
    color: var(--muted);
}

.mock-panel strong {
    font-size: 1.08rem;
    font-weight: 620;
}

.how-modal {
    width: min(940px, calc(100% - 28px));
    border: 0;
    border-radius: 30px;
    padding: 0;
    background: transparent;
    color: var(--ink);
}

.how-modal::backdrop {
    background: rgba(11, 17, 28, .68);
    backdrop-filter: blur(10px);
}

.how-modal-shell {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 24px;
    border: 1px solid rgba(141, 252, 166, .22);
    border-radius: 30px;
    padding: clamp(22px, 4vw, 34px);
    background:
        radial-gradient(circle at 18% 12%, rgba(141, 252, 166, .22), transparent 20rem),
        linear-gradient(145deg, #ffffff, #eef4ef);
    box-shadow: 0 32px 90px rgba(11, 17, 28, .28);
}

.how-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
}

.how-modal-close button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: var(--muted);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.how-modal-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
    align-items: end;
}

.how-modal-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.how-modal-copy p:not(.eyebrow) {
    max-width: 620px;
    color: #4a5262;
    line-height: 1.7;
}

.how-modal-points {
    display: grid;
    gap: 8px;
}

.how-modal-points span {
    border: 1px solid rgba(11, 17, 28, .08);
    border-radius: 999px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, .78);
    color: #3f4654;
    font-size: .86rem;
}

.how-animation {
    position: relative;
    display: grid;
    grid-template-areas:
        "design qr route measure"
        "design qr destinations chart";
    grid-template-columns: 1fr 180px 1.05fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.flow-card,
.destination-stack,
.mini-chart,
.animated-qr {
    border: 1px solid rgba(11, 17, 28, .08);
    border-radius: 22px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 44px rgba(11, 17, 28, .08);
}

.flow-card {
    display: grid;
    gap: 7px;
    align-content: center;
    padding: 18px;
    animation: floatStep 4.8s ease-in-out infinite;
}

.flow-card span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 999px;
    background: var(--ink);
    color: var(--mint);
    font-size: .78rem;
}

.flow-card strong {
    font-size: 1.12rem;
}

.flow-card small,
.destination-stack span {
    color: var(--muted);
}

.flow-design {
    grid-area: design;
}

.flow-route {
    grid-area: route;
    animation-delay: .45s;
}

.flow-measure {
    grid-area: measure;
    animation-delay: .9s;
}

.animated-qr {
    position: relative;
    display: grid;
    grid-area: qr;
    align-self: stretch;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    width: 100%;
    min-height: 252px;
    padding: 18px;
}

.animated-qr span {
    border-radius: 4px;
    background: #d9e2dd;
    animation: qrPulse 2.8s ease-in-out infinite;
}

.animated-qr span.on {
    background: var(--ink);
}

.animated-qr img {
    position: absolute;
    inset: 50%;
    width: 52px;
    height: 52px;
    object-fit: contain;
    transform: translate(-50%, -50%);
    border-radius: 14px;
    background: #ffffff;
    padding: 5px;
    box-shadow: 0 10px 26px rgba(11, 17, 28, .14);
}

.scan-beam {
    position: absolute;
    top: 50%;
    left: 18%;
    width: 64%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mint), transparent);
    box-shadow: 0 0 26px rgba(141, 252, 166, .8);
    animation: scanSweep 3s ease-in-out infinite;
}

.destination-stack {
    display: grid;
    grid-area: destinations;
    gap: 8px;
    padding: 16px;
}

.destination-stack span {
    border-radius: 12px;
    padding: 9px 11px;
    background: #f7faf8;
}

.mini-chart {
    display: flex;
    grid-area: chart;
    align-items: end;
    justify-content: center;
    gap: 12px;
    min-height: 126px;
    padding: 20px;
}

.mini-chart i {
    width: 24px;
    height: var(--h);
    border-radius: 999px 999px 8px 8px;
    background: linear-gradient(180deg, var(--mint), #168a4a);
    animation: growBar 2.6s ease-in-out infinite;
}

.mini-chart i:nth-child(2) {
    animation-delay: .2s;
}

.mini-chart i:nth-child(3) {
    animation-delay: .4s;
}

.mini-chart i:nth-child(4) {
    animation-delay: .6s;
}

.how-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@keyframes floatStep {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes qrPulse {
    0%,
    100% {
        opacity: .62;
    }

    50% {
        opacity: 1;
    }
}

@keyframes scanSweep {
    0%,
    100% {
        opacity: .1;
        transform: translateY(-72px);
    }

    50% {
        opacity: 1;
        transform: translateY(72px);
    }
}

@keyframes growBar {
    0%,
    100% {
        transform: scaleY(.72);
        transform-origin: bottom;
    }

    50% {
        transform: scaleY(1);
    }
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin: 8px 0 66px;
}

.logo-strip span {
    display: grid;
    min-height: 56px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    color: #667085;
    font-weight: 560;
}

.section-head {
    max-width: 760px;
    margin: 72px 0 22px;
}

.section-head.compact {
    margin: 0;
}

.section-head h2,
.workflow-section h2,
.final-cta h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 610;
}

.section-head p,
.workflow-section p,
.final-cta p {
    color: #5b6474;
    font-size: 1.02rem;
    line-height: 1.7;
}

.feature-grid,
.pricing-grid,
.analytics-cards {
    display: grid;
    gap: 14px;
}

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

.feature-card,
.pricing-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
}

.feature-card {
    padding: 22px;
}

.feature-icon {
    display: inline-grid;
    width: 38px;
    height: 38px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 12px;
    background: var(--mint-soft);
    color: var(--blue);
    font-weight: 620;
}

.feature-card h3,
.pricing-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 610;
}

.feature-card p,
.pricing-card p {
    margin: 0;
    color: #5b6474;
    line-height: 1.7;
}

.workflow-section,
.analytics-showcase,
.final-cta {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 28px;
    align-items: center;
    margin: 76px 0;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
}

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

.workflow-steps article {
    min-height: 112px;
    align-content: start;
}

.analytics-showcase {
    background:
        radial-gradient(circle at 88% 12%, rgba(141, 252, 166, .22), transparent 18rem),
        linear-gradient(135deg, rgba(11, 17, 28, .98), rgba(48, 54, 60, .94));
    color: white;
}

.analytics-showcase .eyebrow {
    color: var(--mint);
}

.analytics-showcase p,
.analytics-showcase .section-head p {
    color: rgba(255, 255, 255, .72);
}

.analytics-cards {
    grid-template-columns: 1fr;
}

.analytics-cards article {
    display: grid;
    gap: 9px;
    padding: 16px;
    background: rgba(255, 255, 255, .1);
    color: white;
    border-color: rgba(255, 255, 255, .16);
    box-shadow: none;
}

.analytics-cards span {
    color: rgba(255, 255, 255, .66);
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 24px;
}

.pricing-card.featured {
    border-color: rgba(22, 138, 74, .48);
    box-shadow: 0 22px 70px rgba(22, 138, 74, .13);
}

.plan-pill {
    position: absolute;
    top: 18px;
    right: 18px;
    border-color: rgba(22, 138, 74, .18);
    background: var(--mint-soft);
    color: var(--blue);
}

.price {
    font-size: 2rem;
    font-weight: 620;
    letter-spacing: -.035em;
}

.pricing-card .button {
    width: 100%;
    margin-top: 8px;
}

.final-cta {
    grid-template-columns: 1fr auto;
    margin-bottom: 16px;
    background:
        radial-gradient(circle at 14% 22%, rgba(141, 252, 166, .22), transparent 22rem),
        #fff;
}

.content-hero,
.article-hero {
    max-width: 880px;
    padding: 54px 0 24px;
}

.content-hero h1,
.article-hero h1 {
    margin: 0;
    font-size: clamp(2.25rem, 4.8vw, 4.7rem);
    line-height: .99;
    font-weight: 620;
    letter-spacing: -.055em;
}

.content-hero p,
.article-hero p {
    color: #5b6474;
    font-size: 1.08rem;
    line-height: 1.75;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0 64px;
}

.compact-resources {
    margin-bottom: 54px;
}

.resource-card {
    display: grid;
    gap: 12px;
    align-content: start;
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    background: #fff;
}

.resource-card span,
.article-meta,
.back-link {
    color: var(--blue);
    font-size: .78rem;
    font-weight: 620;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.resource-card h2 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.18;
    letter-spacing: -.035em;
}

.resource-card p {
    margin: 0;
    color: #5b6474;
    line-height: 1.7;
}

.resource-card small {
    margin-top: auto;
    color: var(--muted);
    font-weight: 520;
}

.article-shell {
    padding-bottom: 54px;
}

.article-meta {
    display: flex;
    gap: 12px;
    color: var(--muted);
}

.article-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 760px);
    gap: 36px;
    align-items: start;
}

.article-toc {
    position: sticky;
    top: 20px;
    display: grid;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    background: #fff;
}

.article-toc strong {
    margin-bottom: 6px;
}

.article-toc a {
    border-radius: 10px;
    padding: 8px 10px;
    color: #5b6474;
    font-weight: 520;
}

.article-toc a.active,
.article-toc a:hover {
    background: var(--mint-soft);
    color: var(--blue);
}

.article-content {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: clamp(22px, 4vw, 42px);
    background: #fff;
}

.article-content h2 {
    margin: 32px 0 10px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 610;
    letter-spacing: -.035em;
}

.article-content p,
.article-content li {
    color: #3f4654;
    font-size: 1.02rem;
    line-height: 1.85;
}

.article-content ul {
    display: grid;
    gap: 8px;
    padding-left: 22px;
}

.article-content code {
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 2px 5px;
    background: #f8fafc;
    color: var(--ink);
}

.article-cta {
    margin-top: 38px;
    border-radius: 20px;
    padding: 24px;
    background:
        radial-gradient(circle at 12% 22%, rgba(141, 252, 166, .18), transparent 20rem),
        #f8fafc;
}

.instant-generator,
.tool-content-grid,
.faq-grid {
    display: grid;
    gap: 18px;
}

.instant-generator {
    grid-template-columns: minmax(0, .78fr) minmax(360px, 1.22fr);
    align-items: center;
    margin: 18px 0 76px;
    border: 1px solid rgba(11, 17, 28, .08);
    border-radius: 30px;
    padding: clamp(22px, 4vw, 34px);
    background:
        radial-gradient(circle at 6% 12%, rgba(141, 252, 166, .24), transparent 22rem),
        radial-gradient(circle at 96% 4%, rgba(11, 17, 28, .08), transparent 24rem),
        rgba(255, 255, 255, .78);
    box-shadow: 0 24px 70px rgba(11, 17, 28, .08);
}

.instant-generator-copy h2,
.tool-hero h1,
.faq-panel h2 {
    margin: 0;
    font-size: clamp(2rem, 4.4vw, 4rem);
    line-height: 1;
    font-weight: 610;
    letter-spacing: -.055em;
}

.instant-generator-copy p:not(.eyebrow),
.tool-hero p,
.faq-panel p {
    color: #4f5868;
    line-height: 1.75;
}

.instant-generator-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 16px;
    align-items: start;
    border: 1px solid rgba(11, 17, 28, .08);
    border-radius: 26px;
    padding: 18px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 45px rgba(11, 17, 28, .08);
}

.instant-generator-form {
    display: grid;
    gap: 12px;
}

.qr-wizard .instant-generator-card {
    grid-template-columns: minmax(0, 1fr) 280px;
}

.wizard-steps,
.trust-strip,
.wizard-type-grid,
.feedback-list,
.contact-layout {
    display: grid;
    gap: 12px;
}

.wizard-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.wizard-steps li,
.trust-strip article,
.type-option {
    border: 1px solid rgba(11, 17, 28, .08);
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
}

.wizard-steps li {
    display: grid;
    gap: 5px;
    padding: 12px;
}

.wizard-steps strong {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 999px;
    background: var(--ink);
    color: var(--mint);
    font-size: .76rem;
}

.wizard-steps span {
    color: #4b5565;
    font-size: .84rem;
    font-weight: 560;
}

.wizard-type-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.type-option {
    display: inline-grid;
    flex: 1 1 104px;
    min-width: 96px;
    max-width: 136px;
    min-height: 58px;
    gap: 2px;
    align-content: center;
    padding: 10px 12px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.type-option:hover,
.type-option.active {
    transform: translateY(-1px);
    border-color: rgba(22, 138, 74, .38);
    background: var(--mint-soft);
    box-shadow: 0 12px 28px rgba(22, 138, 74, .08);
}

.type-option strong {
    overflow: hidden;
    font-size: .88rem;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.type-option span {
    overflow: hidden;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 500;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wizard-fields,
.wizard-customize {
    display: grid;
    gap: 12px;
}

.wizard-fields {
    border: 1px solid #e7ede9;
    border-radius: 18px;
    padding: 14px;
    background: #fbfcfe;
}

.qr-type-fields {
    display: none;
    gap: 12px;
}

.qr-type-fields.active {
    display: grid;
}

.instant-generator-preview {
    display: grid;
    min-height: 260px;
    place-items: center;
    border: 1px dashed rgba(11, 17, 28, .14);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 0%, rgba(141, 252, 166, .18), transparent 44%),
        #fbfcfe;
}

.instant-generator-preview img {
    width: min(100%, 230px);
    height: auto;
}

.instant-generator-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    grid-column: 1 / -1;
}

.instant-generator-actions .button {
    min-width: 150px;
}

.instant-generator-card .muted-note {
    grid-column: 1 / -1;
    margin: 0;
}

.tool-hero {
    display: grid;
    max-width: 980px;
    padding: 50px 0 12px;
}

.tool-hero h1 {
    max-width: 900px;
}

.tool-hero p:not(.eyebrow) {
    max-width: 720px;
    font-size: 1.08rem;
}

.tool-content-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin: 26px 0;
}

.clean-ordered-list {
    display: grid;
    gap: 10px;
    margin: 12px 0 0;
    padding-left: 22px;
    color: #3f4654;
    line-height: 1.7;
}

.faq-panel {
    margin: 56px 0;
    padding: 24px;
}

.faq-hero {
    max-width: 980px;
}

.faq-index {
    margin: 18px 0 34px;
    padding: 22px;
}

.faq-index-grid,
.faq-category-stack,
.faq-accordion {
    display: grid;
    gap: 12px;
}

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

.faq-index-grid a {
    display: grid;
    gap: 5px;
    border: 1px solid #e7ede9;
    border-radius: 16px;
    padding: 14px;
    background: #fbfcfe;
}

.faq-index-grid strong {
    font-size: .95rem;
}

.faq-index-grid span {
    color: var(--muted);
    font-size: .8rem;
}

.faq-category {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: clamp(20px, 4vw, 28px);
    background:
        radial-gradient(circle at 0% 0%, rgba(141, 252, 166, .14), transparent 26rem),
        #fff;
}

.faq-category-head {
    position: sticky;
    top: 18px;
}

.faq-category-head h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.1;
    letter-spacing: -.04em;
}

.faq-item {
    border: 1px solid #e7ede9;
    border-radius: 18px;
    padding: 0;
    background: #fbfcfe;
}

.faq-item summary {
    cursor: pointer;
    padding: 17px 18px;
    color: var(--ink);
    font-weight: 610;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--blue);
    font-weight: 620;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: #4f5868;
    line-height: 1.75;
}

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

.faq-grid article {
    border: 1px solid #e7ede9;
    border-radius: 18px;
    padding: 18px;
    background: #fbfcfe;
}

.faq-grid h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    letter-spacing: -.025em;
}

.faq-grid p {
    margin: 0;
    font-size: .95rem;
}

.tool-card {
    min-height: 230px;
}

.trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: -36px 0 72px;
}

.trust-strip article {
    display: grid;
    gap: 7px;
    padding: 18px;
    background:
        radial-gradient(circle at 100% 0%, rgba(141, 252, 166, .17), transparent 48%),
        rgba(255, 255, 255, .82);
}

.trust-strip strong {
    font-size: 1rem;
}

.trust-strip span {
    color: var(--muted);
    line-height: 1.55;
}

.comparison-table-wrap {
    margin: 28px 0 62px;
    overflow-x: auto;
    padding: 24px;
}

.comparison-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    border-bottom: 1px solid var(--line);
    padding: 15px 12px;
    text-align: left;
    vertical-align: top;
    line-height: 1.55;
}

.comparison-table th {
    color: var(--ink);
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.comparison-table td:first-child {
    color: var(--ink);
    font-weight: 610;
}

.contact-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    margin-bottom: 62px;
}

.contact-form,
.contact-aside,
.feedback-card {
    display: grid;
    gap: 14px;
}

.contact-form {
    padding: clamp(20px, 4vw, 28px);
}

.contact-aside {
    position: sticky;
    top: 18px;
}

.feedback-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    background: #fbfcfe;
}

.feedback-card h2 {
    margin: 10px 0 4px;
    font-size: 1.16rem;
}

.feedback-card p {
    margin: 0;
    line-height: 1.7;
}

.inline-feedback-form {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 46px;
    padding: 28px 0 8px;
    border-top: 1px solid var(--line);
    color: #5b6474;
}

.site-footer p {
    max-width: 420px;
    line-height: 1.6;
}

.footer-credit {
    margin-top: 8px;
    font-size: .86rem;
}

.footer-credit a {
    color: var(--blue);
    font-weight: 560;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}

.footer-brand .brand-logo-wrap {
    width: 42px;
    height: 42px;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-content: start;
    justify-content: flex-end;
    font-weight: 520;
}

.dashboard-head h1,
.page-heading h1,
.creator-hero h1,
.auth-card h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.04;
    font-weight: 620;
    letter-spacing: -.045em;
}

.dashboard-head p,
.page-heading p,
.creator-hero p,
.auth-card p {
    max-width: 620px;
    line-height: 1.65;
}

.creator-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 18px;
    align-items: stretch;
    margin: 8px 0 14px;
}

.creator-hero > div,
.creator-tip-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 12% 0%, rgba(141, 252, 166, .2), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .9));
}

.creator-hero > div {
    padding: clamp(22px, 4vw, 36px);
}

.creator-hero h1 {
    max-width: 760px;
    font-size: clamp(2.35rem, 5vw, 4.55rem);
}

.creator-hero p {
    margin: 18px 0 0;
    color: #47505d;
    font-size: 1.03rem;
}

.creator-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.creator-steps span,
.step-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    border: 1px solid rgba(22, 138, 74, .18);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(234, 255, 239, .78);
    color: #14532d;
    font-size: .82rem;
    font-weight: 560;
}

.creator-steps strong {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    background: var(--ink);
    color: var(--mint);
    font-size: .76rem;
    font-weight: 610;
}

.creator-tip-card {
    display: grid;
    align-content: end;
    gap: 8px;
    padding: 22px;
    background:
        radial-gradient(circle at 90% 10%, rgba(141, 252, 166, .25), transparent 38%),
        var(--graphite);
    color: #f8fafc;
}

.creator-tip-card span {
    color: var(--mint);
    font-size: .76rem;
    font-weight: 620;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.creator-tip-card strong {
    font-size: 1.25rem;
    letter-spacing: -.035em;
}

.creator-tip-card p {
    margin: 0;
    color: #c8d0d9;
}

.creator-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin: 0 0 16px;
}

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

.eyebrow {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: .72rem;
    font-weight: 620;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.usage-card,
.panel,
.stat-card,
.auth-card,
.mini-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
}

.usage-card {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.usage-card strong {
    font-size: 1.25rem;
    font-weight: 610;
}

.stats-grid,
.analytics-grid,
.detail-grid,
.form-grid,
.admin-grid,
.plan-grid {
    display: grid;
    gap: 14px;
    margin: 14px 0;
}

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

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

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

.form-grid {
    align-items: start;
}

.form-grid .form-panel:nth-child(2) {
    position: sticky;
    top: 16px;
}

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

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
    margin: 14px 0;
}

.payment-card {
    display: grid;
    align-content: start;
    gap: 12px;
}

.payment-card h2 {
    margin-bottom: 0;
}

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

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

.payment-row {
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    background: #fbfcfe;
}

.payment-row small {
    color: var(--muted);
}

.payment-handoff {
    display: grid;
    gap: 14px;
}

.workspace-stack {
    display: grid;
    gap: 16px;
    margin: 14px 0;
}

.workspace-card {
    display: grid;
    gap: 18px;
}

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

.workspace-inline-form {
    margin-top: 12px;
}

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

.domain-card {
    display: grid;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    background: #fbfcfe;
}

.domain-card > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.editable-plan-grid {
    align-items: start;
}

.billing-editor-card {
    min-height: auto;
}

.subscription-edit-form {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) 130px repeat(3, 128px) auto;
    gap: 8px;
    align-items: center;
    min-width: 820px;
}

.subscription-edit-form input,
.subscription-edit-form select {
    min-height: 36px;
    padding: 8px 9px;
}

.filter-panel {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.filter-panel h2 {
    margin-bottom: 6px;
}

.inline-filter-form {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: flex-end;
    gap: 10px;
}

.inline-filter-form label {
    min-width: 140px;
    font-size: .82rem;
}

.check-inline {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fbfcfe;
    white-space: nowrap;
}

.check-inline input {
    width: auto;
}

.panel,
.stat-card,
.mini-card {
    padding: 18px;
}

.stat-card {
    display: grid;
    gap: 5px;
}

.stat-card strong {
    font-size: 1.65rem;
    font-weight: 610;
    letter-spacing: -.04em;
}

.panel h2,
.mini-card strong {
    display: block;
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 610;
}

.page-heading {
    justify-content: space-between;
    align-items: flex-end;
    margin: 8px 0 18px;
}

.qr-row {
    display: grid;
    grid-template-columns: 54px 1fr auto auto auto;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.qr-row img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: white;
}

.style-pack-panel {
    display: grid;
    gap: 18px;
    margin: 14px 0;
}

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

.style-pack-card {
    display: grid;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 250, 252, .96)),
        var(--surface);
}

.style-pack-card.is-current {
    border-color: rgba(22, 138, 74, .42);
    box-shadow: 0 18px 42px rgba(22, 138, 74, .11);
}

.style-pack-preview {
    display: grid;
    min-height: 190px;
    place-items: center;
    border-radius: 14px;
    background:
        radial-gradient(circle at 20% 0%, rgba(141, 252, 166, .2), transparent 42%),
        #f8fafc;
}

.style-pack-preview img {
    width: min(82%, 180px);
    height: auto;
}

.style-pack-card h3 {
    margin: 8px 0 4px;
    font-size: 1rem;
    font-weight: 610;
    letter-spacing: -.025em;
}

.style-pack-card p {
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
}

.style-pack-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.style-pack-actions .button {
    flex: 1;
    min-width: max-content;
}

.badge,
.status-good,
.status-muted {
    display: inline-flex;
    width: max-content;
    align-items: center;
    border-radius: 999px;
    padding: 4px 9px;
    background: var(--surface-soft);
    color: #424a5b;
    font-size: .76rem;
    font-weight: 520;
    text-transform: capitalize;
}

.status-good {
    background: #ecfdf5;
    color: var(--green);
}

.status-muted {
    color: #7b8496;
}

.empty-state {
    padding: 32px;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: 14px;
    background: #fbfcfe;
}

.form-panel,
.stack {
    display: grid;
    align-content: start;
    gap: 13px;
}

.form-panel {
    border-radius: 24px;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(251, 252, 254, .98)),
        var(--surface);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .04);
}

.form-section-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    margin-bottom: 4px;
}

.form-section-head h2 {
    margin-bottom: 4px;
}

.form-section-head p,
.sub-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.field-card,
.route-card,
.sub-panel {
    border: 1px solid #e7ede9;
    border-radius: 17px;
    padding: 14px;
    background: #fbfcfe;
}

.field-card:focus-within,
.route-card:focus-within,
.sub-panel:focus-within {
    border-color: rgba(22, 138, 74, .32);
    box-shadow: 0 14px 34px rgba(22, 138, 74, .08);
}

.route-card,
.sub-panel {
    display: grid;
    gap: 12px;
}

.sub-panel {
    background:
        radial-gradient(circle at 0% 0%, rgba(141, 252, 166, .12), transparent 30%),
        #fbfcfe;
}

.sub-panel h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 610;
}

label {
    display: grid;
    gap: 7px;
    color: #343b49;
    font-weight: 520;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px 12px;
    background: white;
    color: var(--ink);
    font: inherit;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(22, 138, 74, .55);
    outline: 3px solid rgba(141, 252, 166, .22);
}

input[type="color"] {
    min-height: 42px;
    padding: 4px;
    border-radius: 14px;
    cursor: pointer;
}

.color-columns label {
    border: 1px solid #e7ede9;
    border-radius: 16px;
    padding: 12px;
    background: #fbfcfe;
}

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

.style-sample {
    position: relative;
    min-height: 74px;
    overflow: hidden;
    border: 1px solid #e7ede9;
    border-radius: 16px;
    padding: 12px;
    background: #fbfcfe;
    color: #4b5563;
    font-size: .8rem;
    font-weight: 560;
}

.style-sample::after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 13px;
    width: 40px;
    height: 40px;
    opacity: .86;
    background-color: var(--ink);
}

.style-sample-square::after {
    border-radius: 4px;
    box-shadow:
        -28px 0 0 var(--ink),
        0 -28px 0 var(--ink),
        -28px -28px 0 var(--mint);
}

.style-sample-rounded::after {
    border-radius: 13px;
    box-shadow:
        -28px 0 0 var(--ink),
        0 -28px 0 var(--mint),
        -28px -28px 0 var(--ink);
}

.style-sample-dots::after {
    border-radius: 999px;
    box-shadow:
        -28px 0 0 var(--mint),
        0 -28px 0 var(--ink),
        -28px -28px 0 var(--ink);
}

.two-columns,
.three-columns {
    display: grid;
    gap: 12px;
}

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

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

.check-row {
    display: flex;
    align-items: center;
}

.check-row input {
    width: auto;
}

.batch-panel {
    display: grid;
    gap: 18px;
    margin-top: 18px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 0%, rgba(141, 252, 166, .16), transparent 34%),
        var(--surface);
}

.toggle-card {
    display: flex;
    align-items: center;
    width: max-content;
    border: 1px solid rgba(22, 138, 74, .18);
    border-radius: 999px;
    padding: 10px 14px;
    background: var(--mint-soft);
    color: var(--blue);
    font-size: .9rem;
    font-weight: 560;
    white-space: nowrap;
}

.toggle-card input {
    width: auto;
}

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

.variant-option {
    align-content: start;
    min-height: 158px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 15px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.variant-option:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 138, 74, .28);
    box-shadow: 0 14px 32px rgba(15, 23, 42, .06);
}

.variant-option:has(input:checked) {
    border-color: rgba(22, 138, 74, .45);
    box-shadow: 0 14px 32px rgba(22, 138, 74, .1);
}

.variant-option input {
    width: auto;
}

.variant-visual {
    position: relative;
    display: block;
    width: 64px;
    height: 64px;
    margin-bottom: 4px;
    border-radius: 16px;
    background:
        linear-gradient(90deg, var(--ink) 16px, transparent 16px 24px, var(--ink) 24px 40px, transparent 40px 48px, var(--ink) 48px),
        linear-gradient(var(--ink) 16px, transparent 16px 24px, var(--ink) 24px 40px, transparent 40px 48px, var(--ink) 48px);
    background-size: 64px 64px;
    box-shadow: inset 0 0 0 8px #fff;
}

.variant-brand_color,
.variant-rounded_rectangles,
.variant-soft_dots,
.variant-brand_logo {
    background:
        linear-gradient(90deg, var(--ink) 16px, transparent 16px 24px, var(--green) 24px 40px, transparent 40px 48px, var(--ink) 48px),
        linear-gradient(var(--ink) 16px, transparent 16px 24px, var(--green) 24px 40px, transparent 40px 48px, var(--ink) 48px);
}

.variant-rounded_rectangles,
.variant-brand_logo {
    border-radius: 20px;
}

.variant-soft_dots {
    border-radius: 999px;
}

.variant-brand_logo::after {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 8px;
    background: var(--mint);
    box-shadow: 0 0 0 5px #fff;
}

.variant-option > span:not(.variant-visual) {
    display: grid;
    gap: 7px;
}

.variant-option small,
.muted-note {
    color: var(--muted);
    font-weight: 420;
    line-height: 1.55;
}

.variant-option em {
    width: max-content;
    border-radius: 999px;
    padding: 3px 8px;
    background: #fff7ed;
    color: #c2410c;
    font-size: .72rem;
    font-style: normal;
    font-weight: 560;
}

.qr-preview,
.qr-placeholder,
.qr-detail-card {
    display: grid;
    place-items: center;
}

.qr-preview,
.qr-placeholder {
    min-height: 260px;
    border: 1px dashed var(--line);
    border-radius: 20px;
    background:
        radial-gradient(circle at 50% 0%, rgba(141, 252, 166, .13), transparent 40%),
        #fbfcfe;
}

.qr-preview img,
.qr-detail-card img {
    width: min(100%, 320px);
    height: auto;
}

.qr-placeholder {
    gap: 8px;
    align-content: center;
    color: var(--muted);
    text-align: center;
}

.qr-placeholder strong {
    color: var(--ink);
    font-size: 1rem;
}

.qr-placeholder small {
    max-width: 310px;
    margin: 0 auto;
    line-height: 1.5;
}

.qr-placeholder-art {
    width: 118px;
    height: 118px;
    margin-bottom: 6px;
    border-radius: 24px;
    background:
        linear-gradient(90deg, var(--ink) 18px, transparent 18px 28px, var(--green) 28px 46px, transparent 46px 58px, var(--ink) 58px 76px, transparent 76px 88px, var(--ink) 88px),
        linear-gradient(var(--ink) 18px, transparent 18px 28px, var(--ink) 28px 46px, transparent 46px 58px, var(--green) 58px 76px, transparent 76px 88px, var(--ink) 88px);
    background-size: 118px 118px;
    box-shadow:
        inset 0 0 0 16px #fff,
        0 18px 40px rgba(15, 23, 42, .1);
}

.copy-box {
    display: grid;
    width: 100%;
    gap: 6px;
    margin-top: 14px;
    padding: 12px;
    border-radius: 12px;
    background: #fbfcfe;
}

code {
    white-space: pre-wrap;
    word-break: break-all;
}

.details {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
}

.details dt {
    color: var(--muted);
    font-weight: 520;
}

.details dd {
    margin: 0;
    word-break: break-word;
}

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

.bar-list div {
    display: grid;
    grid-template-columns: minmax(86px, 128px) 1fr 36px;
    gap: 10px;
    align-items: center;
}

meter {
    width: 100%;
    height: 10px;
}

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

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

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

th {
    color: var(--muted);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.truncate {
    max-width: 360px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cookie-consent {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 20;
    display: flex;
    width: min(640px, calc(100% - 36px));
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(22, 138, 74, .22);
    border-radius: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 70px rgba(11, 17, 28, .16);
    backdrop-filter: blur(18px);
}

.cookie-consent p {
    margin: 5px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.redirect-body {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
}

.redirect-card {
    display: grid;
    width: min(480px, 100%);
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 32px;
    background: var(--surface);
    box-shadow: 0 26px 80px rgba(11, 17, 28, .12);
    text-align: center;
}

.redirect-card img {
    width: 70px;
    height: 70px;
    margin: 0 auto 4px;
    object-fit: contain;
}

.redirect-card h1 {
    margin: 0;
    font-size: clamp(2rem, 8vw, 3.4rem);
    letter-spacing: -.07em;
}

.redirect-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.redirect-actions {
    justify-content: center;
    margin-top: 8px;
}

.auth-card {
    width: min(440px, 100%);
    margin: 8vh auto 0;
    padding: 26px;
}

.auth-switch a {
    color: var(--blue);
    font-weight: 560;
}

.seo-preview-image {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f8fafc;
}

.seo-preview-card {
    margin: 14px 0;
}

.seo-preview-card h2 {
    max-width: 720px;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.seo-preview-card span {
    color: var(--green);
    font-weight: 560;
}

.clean-list {
    display: grid;
    gap: 8px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    color: #4b5565;
}

.clean-list li::before {
    content: "•";
    margin-right: 8px;
    color: var(--blue);
}

nav[role="navigation"] {
    margin-top: 14px;
}

@media (max-width: 900px) {
    .site-hero,
    .instant-generator,
    .instant-generator-card,
    .tool-content-grid,
    .faq-category,
    .faq-index-grid,
    .faq-grid,
    .trust-strip,
    .contact-layout,
    .inline-feedback-form,
    .creator-hero,
    .showcase-body,
    .how-animation,
    .feature-grid,
    .workflow-section,
    .workflow-steps,
    .analytics-showcase,
    .pricing-grid,
    .final-cta {
        grid-template-columns: 1fr;
    }

    .instant-generator {
        align-items: stretch;
        margin: 12px 0 54px;
        border-radius: 26px;
        padding: 18px;
    }

    .qr-wizard .instant-generator-card {
        grid-template-columns: 1fr;
    }

    .instant-generator-card {
        gap: 14px;
        border-radius: 22px;
        padding: 14px;
    }

    .wizard-type-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        margin: 0 -2px;
        overflow-x: auto;
        padding: 0 2px 6px;
        scroll-padding-inline: 2px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .wizard-type-grid::-webkit-scrollbar {
        height: 0;
    }

    .type-option {
        flex: 0 0 104px;
        max-width: 104px;
        min-height: 56px;
        padding: 9px 10px;
        scroll-snap-align: start;
    }

    .wizard-fields,
    .wizard-customize {
        gap: 10px;
    }

    .wizard-fields {
        padding: 12px;
    }

    .instant-generator-preview {
        min-height: 218px;
        border-radius: 20px;
    }

    .instant-generator-preview img {
        width: min(100%, 210px);
    }

    .instant-generator-actions {
        gap: 8px;
    }

    .instant-generator-actions .button {
        flex: 1 1 180px;
        justify-content: center;
        min-width: 0;
    }

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

    .creator-hero {
        margin-top: 0;
    }

    .creator-tip-card {
        align-content: start;
    }

    .how-animation {
        grid-template-areas: none;
        min-height: auto;
    }

    .how-modal-copy {
        grid-template-columns: 1fr;
    }

    .flow-design,
    .flow-route,
    .flow-measure,
    .animated-qr,
    .destination-stack,
    .mini-chart {
        grid-column: auto;
        grid-row: auto;
        grid-area: auto;
    }

    .animated-qr {
        min-height: 190px;
    }

    .scan-beam {
        display: none;
    }

    .logo-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 42px;
    }

    .dashboard-head,
    .detail-grid,
    .form-grid,
    .analytics-grid,
    .stats-grid,
    .admin-grid,
    .plan-grid,
    .payment-grid,
    .workspace-grid,
    .resource-grid,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .form-grid .form-panel:nth-child(2) {
        position: static;
    }

    .topbar,
    .page-heading,
    .panel-heading,
    .filter-panel,
    .split {
        align-items: flex-start;
        flex-direction: column;
    }

    .inline-filter-form {
        width: 100%;
        justify-content: stretch;
    }

    .inline-filter-form label,
    .inline-filter-form .button {
        width: 100%;
    }

    .qr-row {
        grid-template-columns: 50px 1fr;
    }

    .qr-row > span:nth-child(n+3) {
        grid-column: 2;
    }

    .two-columns,
    .three-columns,
    .style-sample-grid,
    .variant-grid {
        grid-template-columns: 1fr;
    }

    .wizard-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 16px;
    }

    .contact-aside {
        position: static;
    }

    .content-hero,
    .article-hero {
        padding-top: 26px;
    }

    .resource-card {
        min-height: auto;
    }

    .article-toc {
        position: static;
    }

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

    .site-footer nav {
        justify-content: flex-start;
    }

    .cookie-consent {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-consent .actions {
        align-items: stretch;
        flex-direction: column;
    }

    .brand-logo-wrap {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 560px) {
    .instant-generator {
        margin: 8px 0 42px;
        border-radius: 22px;
        padding: 12px;
    }

    .instant-generator-copy h2 {
        font-size: clamp(1.85rem, 12vw, 2.8rem);
        letter-spacing: -.045em;
    }

    .instant-generator-card {
        border-radius: 20px;
        padding: 12px;
    }

    .wizard-steps {
        gap: 8px;
    }

    .wizard-steps li {
        min-height: 88px;
        padding: 10px;
    }

    .wizard-steps span {
        font-size: .78rem;
        line-height: 1.25;
    }

    .type-option {
        flex-basis: 96px;
        max-width: 96px;
        min-height: 54px;
    }

    .type-option strong {
        font-size: .82rem;
    }

    .type-option span {
        font-size: .64rem;
    }

    .wizard-fields {
        border-radius: 16px;
        padding: 10px;
    }

    .instant-generator-preview {
        min-height: 198px;
    }

    .instant-generator-preview img {
        width: min(100%, 188px);
    }

    .instant-generator-actions {
        flex-direction: column;
    }

    .instant-generator-actions .button {
        width: 100%;
    }
}
