:root {
    --rq-bg: #060b18;
    --rq-bg-soft: #0b1226;
    --rq-panel: rgba(15, 24, 48, 0.86);
    --rq-panel-strong: #111c37;
    --rq-border: rgba(155, 178, 255, 0.17);

    --rq-text: #f7f9ff;
    --rq-muted: #aebbd4;
    --rq-gold: #ffd45a;
    --rq-gold-strong: #ffbf24;
    --rq-blue: #55b7ff;
    --rq-purple: #8257ff;
    --rq-green: #65e69c;
    --rq-red: #ff7272;

    --rq-max: 1220px;
    --rq-radius: 22px;
    --rq-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.rq-site {
    margin: 0;
    min-height: 100vh;
    color: var(--rq-text);
    background:
        radial-gradient(circle at 75% 10%, rgba(80, 86, 255, .16), transparent 34%),
        radial-gradient(circle at 15% 15%, rgba(26, 147, 255, .10), transparent 32%),
        linear-gradient(180deg, #07101f 0%, #050916 52%, #070b15 100%);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

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

/* HEADER */

.rq-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background: rgba(5, 10, 24, .88);
    backdrop-filter: blur(18px);
}

.rq-header-inner {
    width: min(var(--rq-max), calc(100% - 36px));
    min-height: 78px;
    margin: 0 auto;

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

.rq-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: white;
    text-decoration: none;
}

.rq-brand-mark {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 212, 90, .45);
    border-radius: 12px;

    color: #10192a;
    background:
        linear-gradient(135deg, #ffe479, #ffb91f);

    box-shadow: 0 8px 30px rgba(255, 191, 36, .15);

    font-weight: 1000;
    letter-spacing: -.04em;
}

.rq-brand-copy {
    display: grid;
    line-height: 1;
}

.rq-brand-copy strong {
    letter-spacing: .07em;
    font-size: .93rem;
}

.rq-brand-copy small {
    margin-top: 6px;

    color: var(--rq-gold);
    font-size: .72rem;
    font-weight: 800;
}

.rq-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.rq-nav > a {
    color: #c7d1e3;
    text-decoration: none;
    font-size: .91rem;
    font-weight: 750;
}

.rq-nav > a:hover,
.rq-nav > a.is-active {
    color: white;
}

.rq-nav > a.is-active:not(.rq-button)::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 7px;
    border-radius: 10px;
    background: var(--rq-gold);
}

.rq-nav-login {
    margin-left: 5px;
}

.rq-menu-toggle {
    display: none;
    width: 45px;
    height: 42px;
    padding: 9px;

    border: 1px solid var(--rq-border);
    border-radius: 10px;

    background: #111a31;
}

.rq-menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: white;
}

/* BUTTONS */

.rq-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 0 22px;

    border: 0;
    border-radius: 11px;

    color: #121728 !important;
    background:
        linear-gradient(135deg, #ffe16d, #ffb91e);

    box-shadow:
        0 15px 40px rgba(255, 191, 36, .18);

    text-decoration: none;
    font-weight: 950 !important;
}

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

.rq-button-small {
    min-height: 42px;
    padding: 0 17px;
    font-size: .84rem !important;
}

.rq-button-secondary {
    color: white !important;
    background:
        linear-gradient(135deg, #203154, #141e36);

    border: 1px solid #425b86;
    box-shadow: none;
}

/* HOMEPAGE HERO */

.rq-home-hero {
    position: relative;
    overflow: hidden;

    min-height: 690px;

    border-bottom: 1px solid rgba(255,255,255,.08);

    background:
        linear-gradient(90deg, rgba(3,7,17,.96) 0%, rgba(3,7,17,.83) 43%, rgba(3,7,17,.18) 72%, rgba(3,7,17,.70) 100%),
        radial-gradient(circle at 78% 28%, rgba(255, 111, 44, .31), transparent 22%),
        radial-gradient(circle at 63% 18%, rgba(81, 109, 255, .25), transparent 30%),
        linear-gradient(145deg, #11172d 0%, #17334a 48%, #592919 75%, #0a1021 100%);
}

.rq-home-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;

    height: 47%;

    background:
        radial-gradient(ellipse at 50% 105%, rgba(49, 127, 61, .86) 0%, rgba(15, 57, 35, .87) 45%, rgba(4, 20, 18, .95) 90%);

    clip-path: polygon(0 35%, 18% 27%, 37% 42%, 54% 22%, 72% 33%, 100% 16%, 100% 100%, 0 100%);
}

.rq-home-hero::after {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;
    right: 4%;
    top: 13%;

    opacity: .65;

    background:
        radial-gradient(circle, rgba(255,111,53,.34), transparent 44%);

    filter: blur(10px);
}

.rq-hero-inner {
    position: relative;
    z-index: 2;

    width: min(var(--rq-max), calc(100% - 36px));
    min-height: 690px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
    align-items: center;
    gap: 70px;

    padding: 80px 0;
}

.rq-eyebrow {
    margin: 0 0 15px;

    color: var(--rq-gold);

    text-transform: uppercase;
    letter-spacing: .15em;

    font-size: .76rem;
    font-weight: 1000;
}

.rq-hero-copy h1 {
    max-width: 760px;
    margin: 0;

    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: .91;
    letter-spacing: -.06em;
}

.rq-hero-copy h1 span {
    display: block;

    margin-top: 15px;

    color: var(--rq-gold);

    font-size: .51em;
    line-height: 1;
    letter-spacing: -.035em;
}

.rq-hero-lead {
    max-width: 690px;
    margin: 27px 0 0;

    color: #d0d9ea;

    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
    line-height: 1.68;
}

.rq-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 32px;
}

.rq-platform-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;

    margin-top: 30px;

    color: #94a8c5;

    font-size: .79rem;
    font-weight: 800;
}

.rq-platform-line span::before {
    content: "✦";
    margin-right: 8px;
    color: var(--rq-gold);
}

/* QUEST CARD */

.rq-quest-card {
    position: relative;

    padding: 26px;

    border: 1px solid rgba(255, 212, 90, .34);
    border-radius: 26px;

    background:
        linear-gradient(150deg, rgba(20, 33, 65, .96), rgba(9, 16, 33, .95));

    box-shadow: var(--rq-shadow);
}

.rq-quest-card::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    pointer-events: none;

    background:
        linear-gradient(135deg, rgba(255,212,90,.08), transparent 35%);
}

.rq-quest-kicker {
    color: var(--rq-gold);

    font-size: .72rem;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.rq-quest-card h2 {
    margin: 10px 0 3px;

    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -.045em;
}

.rq-quest-card h3 {
    margin: 0 0 15px;

    color: #a7d5ff;

    font-size: 1rem;
}

.rq-quest-card p {
    color: #b9c7dc;
    line-height: 1.62;
}

.rq-x-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;

    margin: 22px 0;

    padding: 17px;

    border: 1px solid #293d61;
    border-radius: 14px;

    background: #081326;
}

.rq-x-panel strong {
    display: block;

    color: var(--rq-gold);

    font-size: 1.55rem;
}

.rq-x-panel small {
    color: #8298b7;
}

.rq-x-value {
    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    color: #101523;
    background: var(--rq-gold);

    font-weight: 1000;
}

.rq-quest-list {
    display: grid;
    gap: 11px;

    margin: 20px 0 0;
    padding: 0;

    list-style: none;
}

.rq-quest-list li {
    position: relative;

    padding-left: 24px;

    color: #cbd5e6;
    line-height: 1.45;
}

.rq-quest-list li::before {
    content: "✓";

    position: absolute;
    left: 0;

    color: var(--rq-green);
    font-weight: 1000;
}

/* GENERIC SECTIONS */

.rq-section {
    padding: 94px 0;
}

.rq-section-soft {
    background:
        linear-gradient(180deg, rgba(17,28,55,.44), rgba(5,9,20,.05));
}

.rq-container {
    width: min(var(--rq-max), calc(100% - 36px));
    margin: 0 auto;
}

.rq-section-heading {
    max-width: 770px;
    margin-bottom: 38px;
}

.rq-section-heading h2 {
    margin: 0;

    font-size: clamp(2.25rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.rq-section-heading p {
    margin: 18px 0 0;

    color: var(--rq-muted);

    font-size: 1.08rem;
    line-height: 1.7;
}

/* VALUE CARDS */

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

.rq-value-card,
.rq-feature-card {
    border: 1px solid var(--rq-border);
    border-radius: var(--rq-radius);

    background:
        linear-gradient(155deg, rgba(18, 30, 58, .90), rgba(7, 13, 28, .94));

    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.rq-value-card {
    padding: 28px;
}

.rq-value-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: #172548;

    font-size: 1.65rem;
}

.rq-value-card h3 {
    margin: 21px 0 9px;

    font-size: 1.32rem;
}

.rq-value-card p {
    margin: 0;

    color: var(--rq-muted);
    line-height: 1.65;
}

/* FEATURE GRID */

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

.rq-feature-card {
    overflow: hidden;
}

.rq-feature-art {
    min-height: 230px;

    display: flex;
    align-items: end;

    padding: 24px;

    background:
        radial-gradient(circle at 75% 30%, rgba(255,107,53,.32), transparent 27%),
        radial-gradient(circle at 30% 70%, rgba(70,116,255,.34), transparent 33%),
        linear-gradient(145deg, #15254b, #0b1428 55%, #241427);
}

.rq-feature-art-vocab {
    background:
        radial-gradient(circle at 70% 30%, rgba(130,87,255,.40), transparent 30%),
        linear-gradient(135deg, #17143b, #0c1735);
}

.rq-feature-art-tutor {
    background:
        radial-gradient(circle at 75% 25%, rgba(67,199,255,.29), transparent 30%),
        linear-gradient(135deg, #092e45, #10152d);
}

.rq-feature-art-community {
    background:
        radial-gradient(circle at 30% 30%, rgba(94,230,151,.26), transparent 30%),
        linear-gradient(135deg, #0c332e, #101529);
}

.rq-feature-art strong {
    max-width: 430px;

    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.rq-feature-body {
    padding: 25px;
}

.rq-feature-label {
    color: var(--rq-gold);

    font-size: .72rem;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.rq-feature-body h3 {
    margin: 8px 0;

    font-size: 1.55rem;
}

.rq-feature-body p {
    margin: 0;

    color: var(--rq-muted);
    line-height: 1.65;
}

.rq-feature-link {
    display: inline-flex;

    margin-top: 18px;

    color: #ffe176;

    text-decoration: none;
    font-weight: 900;
}

/* EDUCATOR SECTION */

.rq-educator-band {
    display: grid;
    grid-template-columns: 1fr .75fr;
    gap: 45px;
    align-items: center;

    padding: 40px;

    border: 1px solid var(--rq-border);
    border-radius: 28px;

    background:
        linear-gradient(135deg, rgba(34,49,91,.86), rgba(10,17,33,.95));
}

.rq-educator-band h2 {
    margin: 0;

    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.rq-educator-band p {
    color: #bbc8dc;
    line-height: 1.7;
}

.rq-educator-points {
    display: grid;
    gap: 12px;
}

.rq-educator-points div {
    padding: 15px 17px;

    border: 1px solid #33466e;
    border-radius: 12px;

    color: #d7deea;
    background: rgba(5,12,28,.55);

    font-weight: 750;
}

/* CTA */

.rq-final-cta {
    text-align: center;

    padding: 105px 0 115px;

    background:
        radial-gradient(circle at 50% 30%, rgba(119,82,255,.20), transparent 35%);
}

.rq-final-cta h2 {
    max-width: 800px;
    margin: 0 auto;

    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: .98;
    letter-spacing: -.06em;
}

.rq-final-cta h2 span {
    color: var(--rq-gold);
}

.rq-final-cta p {
    max-width: 660px;
    margin: 22px auto 30px;

    color: var(--rq-muted);

    font-size: 1.08rem;
    line-height: 1.7;
}

/* FOOTER */

.rq-footer {
    border-top: 1px solid rgba(255,255,255,.08);

    background: #030711;
}

.rq-footer-inner {
    width: min(var(--rq-max), calc(100% - 36px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: .85fr 1.5fr;
    gap: 70px;

    padding: 60px 0 45px;
}

.rq-footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.rq-brand-mark-footer {
    flex: 0 0 auto;
}

.rq-footer-brand strong {
    letter-spacing: .07em;
}

.rq-footer-brand p {
    margin: 7px 0 6px;

    color: var(--rq-gold);

    font-weight: 850;
}

.rq-footer-brand span {
    color: #8190aa;
    font-size: .78rem;
}

.rq-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.rq-footer-links > div {
    display: grid;
    align-content: start;
    gap: 10px;
}

.rq-footer-links strong {
    margin-bottom: 5px;
    color: white;
}

.rq-footer-links a,
.rq-footer-links span {
    color: #8797b1;
    text-decoration: none;
    font-size: .87rem;
    line-height: 1.5;
}

.rq-footer-links a:hover {
    color: white;
}

.rq-footer-bottom {
    width: min(var(--rq-max), calc(100% - 36px));
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    gap: 30px;

    padding: 22px 0 28px;

    border-top: 1px solid rgba(255,255,255,.06);

    color: #6f7d95;
    font-size: .76rem;
}

/* RESPONSIVE */

@media (max-width: 920px) {

    .rq-menu-toggle {
        display: block;
    }

    .rq-nav {
        position: absolute;
        left: 18px;
        right: 18px;
        top: 69px;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 11px;

        border: 1px solid #263857;
        border-radius: 15px;

        background: #091224;
        box-shadow: var(--rq-shadow);
    }

    .rq-nav.is-open {
        display: flex;
    }

    .rq-nav > a {
        padding: 13px 14px;
    }

    .rq-nav > a.is-active:not(.rq-button)::after {
        display: none;
    }

    .rq-hero-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .rq-home-hero,
    .rq-hero-inner {
        min-height: auto;
    }

    .rq-value-grid {
        grid-template-columns: 1fr;
    }

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

    .rq-educator-band {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {

    .rq-header-inner {
        width: min(100% - 24px, var(--rq-max));
        min-height: 68px;
    }

    .rq-brand-copy strong {
        font-size: .82rem;
    }

    .rq-brand-copy small {
        font-size: .66rem;
    }

    .rq-brand-mark {
        width: 39px;
        height: 39px;
    }

    .rq-hero-inner {
        width: min(100% - 28px, var(--rq-max));
        padding: 55px 0;
    }

    .rq-hero-copy h1 {
        font-size: clamp(3rem, 17vw, 4.8rem);
    }

    .rq-hero-actions {
        display: grid;
    }

    .rq-button {
        width: 100%;
    }

    .rq-section {
        padding: 70px 0;
    }

    .rq-container {
        width: min(100% - 28px, var(--rq-max));
    }

    .rq-quest-card {
        padding: 21px;
    }

    .rq-educator-band {
        padding: 26px;
    }

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

    .rq-footer-bottom {
        flex-direction: column;
        gap: 9px;
    }
}

/* =========================================================
   READINGQUESTOR ACCOUNT EXPERIENCE
   Phase 1.1
   ========================================================= */

.rq-auth-shell {
    min-height: calc(100vh - 78px);
    padding: 72px 0 100px;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(83, 87, 255, .14),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 35%,
            rgba(255, 193, 44, .08),
            transparent 28%
        );
}

.rq-auth-layout,
.rq-auth-register-layout {
    width: min(
        var(--rq-max),
        calc(100% - 36px)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(400px, .72fr);

    gap: 58px;

    align-items: center;
}

.rq-auth-register-layout {
    grid-template-columns:
        minmax(300px, .72fr)
        minmax(0, 1.18fr);
}

.rq-auth-story {
    padding: 30px 0;
}

.rq-auth-story h1 {
    margin: 0;

    font-size: clamp(
        3rem,
        6vw,
        5.8rem
    );

    line-height: .94;
    letter-spacing: -.06em;
}

.rq-auth-story h1 span {
    display: block;

    margin-top: 12px;

    color: var(--rq-gold);

    font-size: .7em;
}

.rq-auth-story > p:not(.rq-eyebrow) {
    max-width: 650px;

    margin: 24px 0;

    color: var(--rq-muted);

    font-size: 1.08rem;
    line-height: 1.7;
}

.rq-auth-story-points {
    display: grid;
    gap: 11px;

    margin-top: 26px;
}

.rq-auth-story-points div {
    padding: 12px 15px;

    border: 1px solid rgba(
        155,
        178,
        255,
        .13
    );

    border-radius: 11px;

    color: #d6def0;

    background:
        rgba(11, 20, 42, .55);
}

.rq-auth-fizad {
    margin-top: 30px;

    color: #7586a3;

    font-size: .78rem;
    line-height: 1.6;
}

.rq-auth-card {
    padding: 34px;

    border: 1px solid var(--rq-border);
    border-radius: 25px;

    background:
        linear-gradient(
            150deg,
            rgba(18, 30, 59, .97),
            rgba(7, 13, 28, .98)
        );

    box-shadow:
        0 30px 100px
        rgba(0, 0, 0, .34);
}

.rq-auth-card-wide {
    padding: 38px;
}

.rq-auth-card-centered {
    width: min(
        620px,
        calc(100% - 28px)
    );

    margin: 0 auto;
}

.rq-auth-card h2 {
    margin: 3px 0 10px;

    font-size: clamp(
        2.1rem,
        4vw,
        3.3rem
    );

    letter-spacing: -.05em;
}

.rq-auth-intro {
    margin: 0 0 27px;

    color: var(--rq-muted);

    line-height: 1.65;
}

.rq-auth-form {
    display: grid;
    gap: 18px;
}

.rq-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.rq-field {
    display: grid;
    gap: 8px;

    color: #e7ecf6;

    font-size: .88rem;
    font-weight: 800;
}

.rq-field-full {
    grid-column: 1 / -1;
}

.rq-field span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rq-field span small,
.rq-field > small {
    color: #7f92b2;

    font-size: .72rem;
    font-weight: 650;
}

.rq-field input,
.rq-field select,
.rq-field textarea {
    width: 100%;

    min-height: 50px;

    padding: 0 14px;

    border: 1px solid #344a70;
    border-radius: 10px;

    outline: none;

    color: white;

    background:
        rgba(4, 11, 26, .82);
}

.rq-field textarea {
    min-height: 120px;
    padding-top: 13px;
}

.rq-field input:focus,
.rq-field select:focus,
.rq-field textarea:focus {
    border-color: var(--rq-gold);

    box-shadow:
        0 0 0 3px
        rgba(255, 212, 90, .09);
}

.rq-auth-submit {
    width: 100%;

    margin-top: 5px;
}

.rq-auth-secondary {
    width: 100%;
}

.rq-recovery-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 20px;

    color: #91a8cb;

    font-size: .84rem;
}

.rq-recovery-links a,
.rq-auth-switch a {
    color: #ffe174;

    text-decoration: none;

    font-weight: 850;
}

.rq-auth-divider {
    position: relative;

    margin: 27px 0;

    text-align: center;

    color: #71819c;

    font-size: .75rem;
}

.rq-auth-divider::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 1px;

    background:
        rgba(255, 255, 255, .08);
}

.rq-auth-divider span {
    position: relative;

    padding: 0 12px;

    background: #0c162c;
}

.rq-auth-switch {
    margin: 23px 0 0;

    color: #8598b7;

    text-align: center;

    font-size: .86rem;
}

.rq-alert {
    margin: 18px 0;

    padding: 13px 15px;

    border-radius: 10px;

    line-height: 1.5;
}

.rq-alert-error {
    color: #ffd2d2;

    border: 1px solid
        rgba(255, 114, 114, .35);

    background:
        rgba(132, 30, 41, .27);
}

.rq-alert-success {
    color: #c9ffdd;

    border: 1px solid
        rgba(101, 230, 156, .30);

    background:
        rgba(21, 101, 61, .26);
}

.rq-safety-panel,
.rq-safety-note,
.rq-recovery-help {
    padding: 15px;

    border: 1px solid
        rgba(85, 183, 255, .24);

    border-radius: 11px;

    color: #a9bddb;

    background:
        rgba(11, 39, 62, .42);

    line-height: 1.55;
}

.rq-safety-panel {
    margin-top: 28px;
}

.rq-safety-panel strong,
.rq-safety-note strong,
.rq-recovery-help strong {
    color: #a7dcff;
}

.rq-safety-panel p {
    margin: 6px 0 0;
}

.rq-recovery-help {
    margin-top: 20px;

    font-size: .8rem;
}

@media (max-width: 900px) {

    .rq-auth-layout,
    .rq-auth-register-layout {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .rq-auth-story {
        padding-bottom: 0;
    }

    .rq-auth-story h1 {
        font-size: clamp(
            2.8rem,
            10vw,
            4.8rem
        );
    }
}

@media (max-width: 620px) {

    .rq-auth-shell {
        padding: 42px 0 70px;
    }

    .rq-auth-layout,
    .rq-auth-register-layout {
        width: min(
            100% - 24px,
            var(--rq-max)
        );
    }

    .rq-auth-card,
    .rq-auth-card-wide {
        padding: 23px;
    }

    .rq-form-grid {
        grid-template-columns: 1fr;
    }

    .rq-field-full {
        grid-column: auto;
    }
}