:root {
    --navy: #16213e;
    --navy-soft: #24345c;
    --blue: #246bfe;
    --blue-dark: #1854d8;
    --cyan: #dff5ff;
    --cyan-strong: #7bd8f6;
    --ink: #172033;
    --muted: #667085;
    --line: #dfe5ee;
    --surface: #ffffff;
    --surface-alt: #f6f8fc;
    --success: #0e7a52;
    --danger: #b42318;
    --warning: #a15c00;
    --shadow: 0 22px 70px rgba(19, 33, 68, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

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

a {
    color: inherit;
}

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

[hidden] {
    display: none !important;
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.narrow-shell {
    max-width: 850px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    transform: translateY(-150%);
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(22, 33, 62, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand > span:last-child {
    display: grid;
    line-height: 1.1;
}

.brand strong {
    color: var(--navy);
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.brand small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.7rem;
}

.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 4px;
    border-radius: 9px;
    background: var(--navy);
}

.brand-mark span {
    border-radius: 1px;
    background: #fff;
}

.brand-mark span:nth-child(5),
.brand-mark span:nth-child(7) {
    background: var(--cyan-strong);
}

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

.main-nav a,
.footer-links a {
    color: #344054;
    font-size: 0.92rem;
    font-weight: 650;
    text-decoration: none;
}

.main-nav a:hover,
.footer-links a:hover {
    color: var(--blue);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 110px;
    background:
        radial-gradient(circle at 85% 12%, rgba(123, 216, 246, 0.4), transparent 26%),
        linear-gradient(145deg, #f7fbff 0%, #ffffff 62%);
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(22, 33, 62, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 33, 62, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    align-items: center;
    gap: 70px;
}

.eyebrow {
    display: inline-block;
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--navy);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(2.65rem, 6vw, 5rem);
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.hero-lead {
    max-width: 680px;
    margin: 0;
    color: #475467;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 30px;
    color: #344054;
    font-size: 0.9rem;
    font-weight: 700;
}

.trust-row span::first-letter {
    color: var(--success);
}

.hero-action {
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: 760;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:not(:disabled):hover {
    transform: translateY(-1px);
}

.button:focus-visible,
.type-button:focus-visible,
.text-button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(36, 107, 254, 0.28);
    outline-offset: 3px;
}

.button-primary {
    background: var(--blue);
    box-shadow: 0 12px 30px rgba(36, 107, 254, 0.24);
    color: #fff;
}

.button-primary:hover {
    background: var(--blue-dark);
}

.button-secondary {
    border-color: var(--line);
    background: #fff;
    color: var(--navy);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.hero-visual {
    position: relative;
    display: grid;
    min-height: 430px;
    place-items: center;
}

.decorative-qr {
    position: relative;
    width: min(86vw, 380px);
    aspect-ratio: 1;
    border: 20px solid #fff;
    border-radius: 36px;
    background: var(--navy);
    box-shadow: var(--shadow);
}

.finder {
    position: absolute;
    width: 92px;
    height: 92px;
    border: 15px solid #fff;
}

.finder::after {
    position: absolute;
    inset: 17px;
    background: #fff;
    content: "";
}

.finder-one {
    top: 32px;
    left: 32px;
}

.finder-two {
    top: 32px;
    right: 32px;
}

.finder-three {
    bottom: 32px;
    left: 32px;
}

.pixel {
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
}

.p1 { top: 145px; left: 150px; }
.p2 { top: 182px; left: 118px; width: 55px; }
.p3 { top: 146px; right: 70px; }
.p4 { top: 210px; right: 35px; height: 60px; }
.p5 { bottom: 100px; left: 160px; width: 70px; }
.p6 { bottom: 45px; left: 205px; }
.p7 { bottom: 72px; right: 36px; width: 70px; }
.p8 { bottom: 135px; right: 96px; height: 50px; }
.p9 { top: 250px; left: 125px; }
.p10 { top: 260px; left: 205px; width: 42px; }

.privacy-card {
    position: absolute;
    right: -22px;
    bottom: 18px;
    display: flex;
    max-width: 290px;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(22, 33, 62, 0.08);
    border-radius: 16px;
    padding: 16px 18px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(22, 33, 62, 0.14);
}

.privacy-card > div {
    display: grid;
}

.privacy-card strong {
    color: var(--navy);
    font-size: 0.9rem;
}

.privacy-card small {
    color: var(--muted);
    font-size: 0.75rem;
}

.privacy-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #e8f8f1;
    color: var(--success);
}

.generator-section {
    position: relative;
    padding: 100px 0;
    background: var(--surface-alt);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading h2 {
    margin-top: 8px;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.section-heading.compact {
    margin-bottom: 34px;
}

.generator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.75fr);
    align-items: start;
    gap: 28px;
}

.builder-card,
.preview-card {
    border: 1px solid rgba(22, 33, 62, 0.08);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 15px 50px rgba(22, 33, 62, 0.07);
}

.builder-card {
    overflow: hidden;
}

.type-picker {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
    background: #fbfcfe;
}

.type-button {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-right: 1px solid var(--line);
    border-bottom: 3px solid transparent;
    padding: 9px;
    background: transparent;
    color: #475467;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 740;
}

.type-button:nth-child(5n) {
    border-right: 0;
}

.type-button.is-active {
    border-bottom-color: var(--blue);
    background: #fff;
    color: var(--blue);
}

.type-button span {
    font-size: 1rem;
}

#qr-form {
    padding: 32px;
}

.dynamic-fields {
    min-height: 122px;
}

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

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

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

.field > span {
    color: #344054;
    font-size: 0.84rem;
    font-weight: 740;
}

.field small {
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.45;
}

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

input,
textarea,
select {
    width: 100%;
    border: 1px solid #cfd7e3;
    border-radius: 11px;
    padding: 12px 13px;
    background: #fff;
    color: var(--ink);
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

input[type="color"] {
    min-height: 46px;
    padding: 5px;
    cursor: pointer;
}

input[type="file"] {
    padding: 9px;
    font-size: 0.82rem;
}

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

input:hover,
textarea:hover,
select:hover {
    border-color: #aab7c9;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(36, 107, 254, 0.08);
    outline: 0;
}

.checkbox-field {
    display: flex;
    min-height: 46px;
    align-items: center;
    align-self: end;
    gap: 10px;
    border: 1px solid #cfd7e3;
    border-radius: 11px;
    padding: 10px 13px;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.customisation {
    margin-top: 30px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.customisation summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--navy);
    font-weight: 800;
    list-style: none;
}

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

.customisation summary::after {
    content: "+";
    color: var(--blue);
    font-size: 1.4rem;
}

.customisation[open] summary::after {
    content: "−";
}

.customisation .field-grid {
    margin-top: 24px;
}

.logo-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.text-button {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--blue);
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 750;
}

.text-button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.muted {
    color: var(--muted);
    font-size: 0.78rem;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 26px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    color: var(--muted);
    font-size: 0.75rem;
}

.form-footer > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#byte-count.is-warning {
    color: var(--warning);
    font-weight: 750;
}

#byte-count.is-error {
    color: var(--danger);
}

.preview-card {
    position: sticky;
    top: 100px;
    padding: 28px;
}

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

.preview-heading h3 {
    margin: 3px 0 0;
}

.local-badge {
    border-radius: 999px;
    padding: 6px 10px;
    background: #e8f8f1;
    color: var(--success);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.preview-stage {
    position: relative;
    display: grid;
    min-height: 350px;
    margin-top: 22px;
    place-items: center;
    border: 1px dashed #cbd5e1;
    border-radius: 20px;
    padding: 22px;
    background:
        linear-gradient(45deg, #f5f7fb 25%, transparent 25%),
        linear-gradient(-45deg, #f5f7fb 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f5f7fb 75%),
        linear-gradient(-45deg, transparent 75%, #f5f7fb 75%);
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
    background-size: 20px 20px;
}

#qr-canvas {
    width: 100%;
    height: auto;
    max-width: 340px;
    box-shadow: 0 10px 28px rgba(22, 33, 62, 0.11);
}

.empty-preview {
    display: grid;
    place-items: center;
    color: var(--muted);
    text-align: center;
}

.empty-preview strong {
    margin-top: 10px;
    color: var(--navy);
}

.empty-preview span {
    font-size: 0.84rem;
}

.empty-icon {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border-radius: 18px;
    background: #edf2f8;
    color: #7c8ca4;
    font-size: 2.2rem;
}

.status-message {
    min-height: 24px;
    margin: 10px 0 0;
    color: var(--success);
    font-size: 0.77rem;
}

.status-message.is-error {
    color: var(--danger);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.download-grid .button {
    min-height: 45px;
    padding-inline: 10px;
    font-size: 0.78rem;
}

.scan-note {
    margin-top: 20px;
    border-left: 3px solid var(--cyan-strong);
    padding: 3px 0 3px 13px;
}

.scan-note strong {
    color: var(--navy);
    font-size: 0.8rem;
}

.scan-note p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.5;
}

.content-section {
    padding: 100px 0;
}

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

.feature-card {
    min-height: 270px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px;
    background: #fff;
}

.feature-number {
    display: inline-block;
    margin-bottom: 42px;
    color: var(--blue);
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.feature-card p,
.steps p,
.faq-section details p,
.prose p,
.prose li {
    color: var(--muted);
}

.feature-card p {
    margin: 0;
    font-size: 0.92rem;
}

.how-section {
    padding: 95px 0;
    background: var(--navy);
}

.how-section h2,
.how-section .eyebrow {
    color: #fff;
}

.how-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
}

.steps {
    display: grid;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
}

.steps li > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: var(--cyan-strong);
    font-weight: 850;
}

.steps strong {
    color: #fff;
}

.steps p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.68);
}

.faq-section {
    background: var(--surface-alt);
}

.faq-section details {
    border-top: 1px solid var(--line);
    padding: 22px 2px;
}

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

.faq-section summary {
    cursor: pointer;
    color: var(--navy);
    font-size: 1.02rem;
    font-weight: 780;
}

.faq-section details p {
    max-width: 730px;
    margin: 12px 0 0;
}

.site-footer {
    padding: 52px 0;
    background: #0e162c;
    color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 30px;
}

.footer-brand strong {
    color: #fff;
}

.footer-brand small {
    color: rgba(255, 255, 255, 0.58);
}

.site-footer p {
    max-width: 500px;
    margin: 18px 0 0;
    font-size: 0.84rem;
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.76);
}

.copyright {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.noscript-message {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    border-radius: 12px;
    padding: 15px;
    background: #fff3cd;
    color: #664d03;
    text-align: center;
}

/* Informational pages */
.page-hero {
    padding: 80px 0 50px;
    background: linear-gradient(145deg, #f5fbff, #fff);
}

.page-hero h1 {
    max-width: 900px;
    font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.prose-section {
    padding: 60px 0 100px;
}

.prose {
    max-width: 830px;
}

.prose h2 {
    margin-top: 48px;
    font-size: 2rem;
}

.prose h3 {
    margin-top: 34px;
}

.prose ul,
.prose ol {
    padding-left: 22px;
}

.notice-box {
    margin: 30px 0;
    border: 1px solid #b9e7d3;
    border-radius: 16px;
    padding: 20px;
    background: #edf9f4;
}

.notice-box strong {
    color: var(--success);
}

/* Digital business-card page */
.card-page {
    min-height: 100vh;
    background: #eef2f7;
}

.card-shell {
    width: min(calc(100% - 28px), 760px);
    margin-inline: auto;
    padding: 38px 0 60px;
}

.card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.card-topline a {
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 750;
    text-decoration: none;
}

.business-card-frame {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.business-card-frame img {
    width: 100%;
    height: auto;
}

.card-details {
    display: grid;
    gap: 18px;
    margin-top: 22px;
    border-radius: 22px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 14px 45px rgba(22, 33, 62, 0.08);
}

.card-details h1 {
    margin: 0;
    font-size: clamp(2rem, 7vw, 3.2rem);
}

.card-details .role {
    margin: -12px 0 0;
    color: var(--muted);
}

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

.card-meta {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.card-meta a {
    color: var(--blue);
    text-decoration: none;
    overflow-wrap: anywhere;
}

/* Printing only the generated QR */
@media print {
    body * {
        visibility: hidden !important;
    }

    .preview-card,
    .preview-card * {
        visibility: visible !important;
    }

    .preview-card {
        position: absolute;
        inset: 0;
        width: 100%;
        border: 0;
        box-shadow: none;
    }

    .preview-heading,
    .download-grid,
    .scan-note,
    .status-message {
        display: none !important;
    }

    .preview-stage {
        min-height: auto;
        border: 0;
        background: #fff;
    }

    #qr-canvas {
        width: min(90vw, 180mm);
        max-width: none;
        box-shadow: none;
    }
}

@media (max-width: 1040px) {
    .hero-grid,
    .generator-layout,
    .how-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy h1,
    .hero-copy .hero-lead {
        margin-inline: auto;
    }

    .trust-row {
        justify-content: center;
    }

    .hero-visual {
        min-height: 390px;
    }

    .generator-layout {
        gap: 22px;
    }

    .preview-card {
        position: static;
    }

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

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

    .how-grid {
        gap: 36px;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

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

    .main-nav {
        display: none;
    }

    .hero {
        padding: 68px 0 78px;
    }

    h1 {
        font-size: clamp(2.35rem, 12vw, 3.7rem);
    }

    .hero-visual {
        min-height: 340px;
    }

    .decorative-qr {
        width: min(82vw, 310px);
        border-width: 16px;
        border-radius: 28px;
    }

    .finder {
        width: 74px;
        height: 74px;
        border-width: 12px;
    }

    .finder::after {
        inset: 14px;
    }

    .finder-one,
    .finder-two {
        top: 25px;
    }

    .finder-one,
    .finder-three {
        left: 25px;
    }

    .finder-two {
        right: 25px;
    }

    .finder-three {
        bottom: 25px;
    }

    .privacy-card {
        right: 0;
        bottom: 0;
    }

    .generator-section,
    .content-section {
        padding: 72px 0;
    }

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

    .type-button:nth-child(5n) {
        border-right: 1px solid var(--line);
    }

    .type-button:nth-child(3n) {
        border-right: 0;
    }

    #qr-form,
    .preview-card {
        padding: 22px;
    }

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

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

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

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

    .feature-number {
        margin-bottom: 24px;
    }

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

    .copyright {
        grid-column: auto;
    }

    .card-action-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .brand small {
        display: none;
    }

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

    .type-button:nth-child(3n) {
        border-right: 1px solid var(--line);
    }

    .type-button:nth-child(2n) {
        border-right: 0;
    }

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

    .preview-stage {
        min-height: 290px;
        padding: 16px;
    }

    .privacy-card {
        max-width: 255px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
