/* ==========================================================================
   Packet Clarity — portal styles
   Shared by every portal page except client.php
   Mirrors the tokens/idioms of packetclarity.com/assets/css/site.css
   ========================================================================== */

/* --------------------------------------------------------------- Tokens -- */
:root {
    --brand:        #2f6fed;
    --brand-strong: #1d4ed8;
    --brand-soft:   #eaf1ff;
    --accent:       #22d3ee;

    --ink:   #0a1020;
    --ink-2: #414c66;
    --ink-3: #6d7891;

    --bg:   #ffffff;
    --bg-2: #f5f7fb;
    --line: #e3e8f1;

    --dark:      #070c18;
    --dark-2:    #0d1626;
    --dark-line: #1c2740;
    --dark-ink:  #eef2f9;
    --dark-ink-2:#9cadc7;

    --ok:      #0f9d76;
    --ok-soft: #e9f8f3;
    --ok-line: #b4e6d5;

    --bad:      #dc2626;
    --bad-soft: #fef2f2;
    --bad-line: #f9c9c9;

    --radius-sm: 10px;
    --radius:    14px;
    --radius-lg: 22px;

    --shadow-sm: 0 1px 2px rgba(10, 16, 32, .06);
    --shadow:    0 14px 34px -14px rgba(10, 16, 32, .20), 0 2px 6px rgba(10, 16, 32, .04);
    --shadow-lg: 0 34px 70px -24px rgba(10, 16, 32, .30);

    --font: "Inter", system-ui, -apple-system, "Segoe UI Variable Text", "Segoe UI",
            Roboto, Helvetica, Arial, sans-serif;
    --mono: ui-monospace, "Cascadia Mono", "SFMono-Regular", Menlo, Consolas, monospace;

    --shell:  1140px;
    --gutter: 24px;

    --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ---------------------------------------------------------------- Reset -- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-2);
    background: var(--bg-2);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

ul, ol { list-style: none; }

a { color: var(--brand); }

h1, h2, h3, h4 {
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -.02em;
    font-weight: 700;
    text-wrap: balance;
}

h1 { font-size: clamp(1.75rem, 1.35rem + 1.3vw, 2.2rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.3rem, 1.1rem + .7vw, 1.6rem); }
h3 { font-size: 1.075rem; }

p { text-wrap: pretty; }

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --------------------------------------------------------------- Layout -- */
.container {
    width: 100%;
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.page {
    flex: 1;
    padding-block: clamp(30px, 4vw, 46px) clamp(48px, 6vw, 76px);
    background:
        radial-gradient(900px 420px at 50% -260px, rgba(47, 111, 237, .09), transparent 70%),
        var(--bg-2);
}

.page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px 26px;
    flex-wrap: wrap;
    padding-bottom: 22px;
    margin-bottom: clamp(24px, 3vw, 34px);
    border-bottom: 1px solid var(--line);
}

.page-head p {
    margin-top: 8px;
    max-width: 64ch;
    color: var(--ink-3);
}

.page-head-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.eyebrow {
    display: block;
    margin-bottom: 8px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand);
}

.stack     { display: grid; gap: clamp(20px, 2.6vw, 30px); }
.stack-sm  { display: grid; gap: 14px; }
.grid-2    { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 20px; }
.mono      { font-family: var(--mono); }
.muted     { color: var(--ink-3); }

.section-head { margin-bottom: 18px; }
.section-head p { margin-top: 6px; color: var(--ink-3); font-size: .95rem; }

/* -------------------------------------------------------------- Buttons -- */
.btn {
    --btn-bg: transparent;
    --btn-fg: var(--ink);
    --btn-bd: transparent;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border: 1px solid var(--btn-bd);
    border-radius: 10px;
    background: var(--btn-bg);
    color: var(--btn-fg);
    font: inherit;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: transform .18s var(--ease), background-color .18s var(--ease),
                border-color .18s var(--ease), color .18s var(--ease),
                box-shadow .18s var(--ease);
}

.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    --btn-bg: var(--brand);
    --btn-fg: #fff;
    --btn-bd: var(--brand);
    box-shadow: 0 10px 22px -10px rgba(47, 111, 237, .75);
}
.btn-primary:hover {
    --btn-bg: var(--brand-strong);
    --btn-bd: var(--brand-strong);
    box-shadow: 0 14px 26px -10px rgba(47, 111, 237, .85);
}

.btn-outline {
    --btn-fg: var(--brand);
    --btn-bd: rgba(47, 111, 237, .45);
    --btn-bg: var(--bg);
}
.btn-outline:hover {
    --btn-bg: var(--brand-soft);
    --btn-bd: var(--brand);
}

.btn-subtle {
    --btn-fg: var(--ink-2);
    --btn-bd: var(--line);
    --btn-bg: var(--bg);
}
.btn-subtle:hover { --btn-bd: #c9d3e4; --btn-bg: var(--bg-2); }

.btn-danger {
    --btn-fg: var(--bad);
    --btn-bd: var(--bad-line);
    --btn-bg: var(--bg);
}
.btn-danger:hover {
    --btn-bg: var(--bad);
    --btn-bd: var(--bad);
    --btn-fg: #fff;
}

.btn-ghost-light {
    --btn-fg: var(--dark-ink);
    --btn-bd: rgba(255, 255, 255, .22);
    --btn-bg: rgba(255, 255, 255, .04);
}
.btn-ghost-light:hover {
    --btn-bg: rgba(255, 255, 255, .10);
    --btn-bd: rgba(255, 255, 255, .40);
}

.btn-sm    { padding: 8px 14px; font-size: .875rem; border-radius: 9px; }
.btn-block { width: 100%; }

/* ----------------------------------------------------------- App header -- */
.app-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 12, 24, .85);
    border-bottom: 1px solid var(--dark-line);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
}

.app-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 64px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
    color: var(--dark-ink);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -.02em;
    text-decoration: none;
    white-space: nowrap;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(140deg, var(--brand), var(--accent));
    color: #04121d;
    box-shadow: 0 6px 16px -8px rgba(34, 211, 238, .9);
}
.logo-mark svg { width: 18px; height: 18px; }

.app-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.app-nav a {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--dark-ink-2);
    font-size: .94rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .18s var(--ease), background-color .18s var(--ease),
                border-color .18s var(--ease);
}

.app-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .07);
}

.app-nav a.active {
    color: #fff;
    background: rgba(47, 111, 237, .22);
    border-color: rgba(47, 111, 237, .55);
}

.app-nav .nav-sep {
    width: 1px;
    height: 22px;
    margin-inline: 8px;
    background: var(--dark-line);
}

.app-nav .btn { padding: 8px 16px; font-size: .9rem; }

/* CSS-only mobile menu */
.nav-toggle { display: none; }

.nav-burger {
    display: none;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-line);
    border-radius: 10px;
    color: var(--dark-ink);
    background: rgba(255, 255, 255, .04);
    cursor: pointer;
}
.nav-burger svg { width: 20px; height: 20px; }

/* ---------------------------------------------------------------- Cards -- */
.card {
    position: relative;
    padding: clamp(20px, 2.4vw, 28px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
    box-shadow: var(--shadow-sm);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease),
                border-color .22s var(--ease);
}

.card-hover:hover {
    transform: translateY(-3px);
    border-color: rgba(47, 111, 237, .35);
    box-shadow: var(--shadow);
}

.card > h2,
.card > h3 { margin-bottom: 8px; }
.card p    { color: var(--ink-3); font-size: .95rem; }

.card-flush { padding: 0; overflow: hidden; }

.icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(47, 111, 237, .22);
    border-radius: 12px;
    background: linear-gradient(160deg, var(--brand-soft), #fff);
    color: var(--brand);
    flex: none;
}
.icon svg { width: 21px; height: 21px; }

/* --------------------------------------------------------- Get-started -- */
.action-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.action-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.action-card-head h3 { margin: 0; }
.action-card-head .tag { margin-left: auto; }

.action-card > p { flex: 1; }

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

.inline-form input[type="text"] {
    flex: 1 1 190px;
    min-width: 0;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg);
    font: inherit;
    font-size: .95rem;
    color: var(--ink);
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}

.inline-form input[type="text"]::placeholder { color: #a6b0c4; }

.inline-form input[type="text"]:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(47, 111, 237, .14);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--bg-2);
    font-family: var(--mono);
    font-size: .72rem;
    letter-spacing: .02em;
    color: var(--ink-3);
    white-space: nowrap;
}

.tag-brand { background: var(--brand-soft); border-color: rgba(47, 111, 237, .25); color: var(--brand-strong); }
.tag-ok    { background: var(--ok-soft);    border-color: var(--ok-line);            color: var(--ok); }

/* -------------------------------------------------------------- Clients -- */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
    gap: 20px;
}

.client-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.client-card-head {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 20px;
    border-bottom: 1px solid var(--line);
}

.client-card-head .icon { width: 38px; height: 38px; border-radius: 10px; }
.client-card-head .icon svg { width: 18px; height: 18px; }

.client-name {
    min-width: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.meta-list {
    flex: 1;
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 18px 20px;
}

.meta-list > div {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 6px 12px;
    align-items: baseline;
}

.meta-list dt {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--ink-3);
}

.meta-list dd {
    min-width: 0;
    font-family: var(--mono);
    font-size: .82rem;
    color: var(--ink-2);
    word-break: break-all;
}

.meta-list dd a { text-decoration: none; }
.meta-list dd a:hover { text-decoration: underline; }

.card-actions {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid var(--line);
    background: var(--bg-2);
}

.card-actions form { display: contents; }

/* ---------------------------------------------------------- Empty state -- */
.empty {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: clamp(40px, 6vw, 68px) 24px;
    border: 1px dashed #cfd8e8;
    border-radius: var(--radius-lg);
    background: var(--bg);
    text-align: center;
}

.empty .icon { margin-bottom: 10px; }
.empty p { max-width: 46ch; color: var(--ink-3); }
.empty .btn { margin-top: 16px; }

/* ------------------------------------------------------------- Messages -- */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid;
    border-radius: var(--radius-sm);
    font-size: .93rem;
}

.alert svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }

.alert-info  { background: var(--brand-soft); border-color: rgba(47, 111, 237, .28); color: #1c3f8f; }
.alert-ok    { background: var(--ok-soft);    border-color: var(--ok-line);           color: #0b6b52; }
.alert-error { background: var(--bad-soft);   border-color: var(--bad-line);          color: #971c1c; }

.callout {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(47, 111, 237, .22);
    border-left: 3px solid var(--brand);
    border-radius: var(--radius-sm);
    background: linear-gradient(100deg, var(--brand-soft), rgba(234, 241, 255, .35));
}

.callout h3 { font-size: .98rem; margin-bottom: 4px; }
.callout p  { color: var(--ink-2); font-size: .93rem; }
.callout p + p { margin-top: 8px; }

/* -------------------------------------------------------- Install steps -- */
.steps { counter-reset: step; display: grid; }

.step {
    position: relative;
    padding: 0 0 22px 50px;
}

.step:last-child { padding-bottom: 0; }

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(47, 111, 237, .25);
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand-strong);
    font-size: .82rem;
    font-weight: 700;
    line-height: 1;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 38px;
    bottom: 6px;
    width: 1px;
    background: var(--line);
}

.step > p {
    padding-top: 3px;
    color: var(--ink-2);
    font-size: .96rem;
}

.step code {
    padding: 2px 6px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--bg-2);
    font-family: var(--mono);
    font-size: .85em;
    color: var(--ink);
}

.shot {
    display: inline-block;
    max-width: 100%;
    margin-top: 12px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg-2);
}

.shot img {
    width: auto;
    max-width: 100%;
    max-height: 320px;
    border-radius: 6px;
}

/* ----------------------------------------------------------- Code block -- */
.codeblock {
    border: 1px solid var(--dark-line);
    border-radius: var(--radius);
    background: var(--dark-2);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.codeblock-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px 10px 18px;
    border-bottom: 1px solid var(--dark-line);
    background: rgba(255, 255, 255, .03);
}

.codeblock-bar span {
    font-family: var(--mono);
    font-size: .78rem;
    color: var(--dark-ink-2);
}

.codeblock pre {
    margin: 0;
    padding: 18px;
    overflow-x: auto;
}

.codeblock code {
    display: block;
    font-family: var(--mono);
    font-size: .82rem;
    line-height: 1.75;
    color: #d7e3f5;
    white-space: pre;
    tab-size: 2;
}

.btn-copy {
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: var(--dark-ink);
    font: inherit;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .18s var(--ease), border-color .18s var(--ease);
}
.btn-copy:hover { background: rgba(255, 255, 255, .13); border-color: rgba(255, 255, 255, .34); }

/* ----------------------------------------------------------- Data lists -- */
.detail-list { display: grid; }

.detail-list > div {
    display: grid;
    grid-template-columns: minmax(120px, .4fr) minmax(0, 1fr);
    gap: 6px 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.detail-list > div:first-child { padding-top: 0; }
.detail-list > div:last-child  { padding-bottom: 0; border-bottom: none; }

.detail-list dt {
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink-3);
}

.detail-list dd {
    min-width: 0;
    color: var(--ink);
    font-size: .95rem;
    word-break: break-word;
}

.detail-list dd.mono { font-size: .84rem; color: var(--ink-2); }

.avatar {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(140deg, var(--brand), var(--accent));
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 10px 22px -12px rgba(47, 111, 237, .9);
    flex: none;
}

.identity {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.identity h2 { font-size: 1.25rem; margin: 0; }
.identity p  { margin-top: 2px; font-size: .93rem; }

/* ----------------------------------------------------------------- Auth -- */
.auth {
    flex: 1;
    display: grid;
    place-items: center;
    padding: clamp(32px, 6vw, 64px) var(--gutter);
    background:
        radial-gradient(760px 440px at 50% -6%, rgba(47, 111, 237, .40), transparent 70%),
        radial-gradient(520px 320px at 88% 104%, rgba(34, 211, 238, .18), transparent 70%),
        var(--dark);
}

.auth-inner {
    width: 100%;
    max-width: 430px;
}

.auth-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-bottom: 26px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -.02em;
    text-decoration: none;
}

.auth-card {
    padding: clamp(26px, 4vw, 38px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--bg);
    box-shadow: 0 40px 80px -32px rgba(0, 0, 0, .75);
}

.auth-head { margin-bottom: 26px; text-align: center; }
.auth-head h1 { font-size: 1.55rem; }
.auth-head p  { margin-top: 7px; font-size: .95rem; color: var(--ink-3); }

.auth-foot {
    margin-top: 22px;
    text-align: center;
    font-size: .9rem;
    color: var(--dark-ink-2);
}

.auth-foot a { color: #cfe0ff; font-weight: 600; text-decoration: none; }
.auth-foot a:hover { text-decoration: underline; }

/* ---------------------------------------------------------------- Forms -- */
.form-grid { display: grid; gap: 17px; }

.field label {
    display: block;
    margin-bottom: 7px;
    font-size: .865rem;
    font-weight: 600;
    color: var(--ink);
}

.field input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg);
    font: inherit;
    font-size: .96rem;
    color: var(--ink);
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}

.field input::placeholder { color: #a6b0c4; }

.field input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(47, 111, 237, .14);
}

.field-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.field-row a {
    font-size: .83rem;
    font-weight: 600;
    text-decoration: none;
}
.field-row a:hover { text-decoration: underline; }

.form-grid .btn-block { margin-top: 4px; padding: 13px 22px; }

.form-note {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    text-align: center;
    font-size: .92rem;
    color: var(--ink-3);
}

.form-note a { font-weight: 600; text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

/* --------------------------------------------------------------- Footer -- */
.app-footer {
    padding-block: 24px;
    border-top: 1px solid var(--line);
    background: var(--bg);
    color: var(--ink-3);
    font-size: .875rem;
}

.app-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 26px;
    flex-wrap: wrap;
}

.app-footer ul {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-footer a {
    color: var(--ink-3);
    text-decoration: none;
    transition: color .18s var(--ease);
}
.app-footer a:hover { color: var(--brand); }

/* ----------------------------------------------------------- Responsive -- */
@media (max-width: 820px) {
    .nav-burger { display: grid; }

    .app-nav {
        position: absolute;
        left: calc(var(--gutter) * -1);
        right: calc(var(--gutter) * -1);
        top: 100%;
        display: none;
        padding: 12px var(--gutter) 18px;
        background: rgba(7, 12, 24, .97);
        border-bottom: 1px solid var(--dark-line);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .nav-toggle:checked ~ .app-nav { display: block; }

    .app-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
    .app-nav a  { padding: 12px 14px; font-size: 1rem; }
    .app-nav .nav-sep { width: auto; height: 1px; margin: 8px 0; }
    .app-nav .btn { width: 100%; margin-top: 4px; padding: 12px 18px; }
}

@media (max-width: 560px) {
    .page-head { align-items: flex-start; }
    .page-head-actions .btn { flex: 1 1 auto; }
    .card-actions { flex-wrap: wrap; }
    .card-actions .btn { flex: 1 1 auto; }
    .meta-list > div { grid-template-columns: minmax(0, 1fr); }
    .detail-list > div { grid-template-columns: minmax(0, 1fr); }
    .identity { flex-direction: column; align-items: flex-start; }
}

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

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