.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 28px;
    background: color-mix(in srgb, var(--card) 86%, transparent);
    backdrop-filter: saturate(1.4) blur(12px);
    border-bottom: 1px solid var(--border);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
}

.brand img {
    max-height: 42px;
    max-width: 190px;
    object-fit: contain;
}

.brand-badge,
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep, #173d63));
    border: 1px solid color-mix(in srgb, var(--brand) 38%, transparent);
    box-shadow: var(--shadow-brand);
}

.brand-badge {
    width: 44px;
    height: 44px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-link {
    text-decoration: none;
    font-weight: 700;
    color: #334155;
}

.link-accent {
    color: var(--brand);
    text-decoration: none;
    font-weight: 700;
}

.btn,
.btn-buy,
.btn-submit,
.btn-pay,
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, filter 0.15s ease;
}

.btn:hover,
.btn-buy:hover,
.btn-submit:hover,
.btn-pay:hover,
.cta:hover {
    transform: translateY(-1px);
}

.btn:active,
.btn-buy:active,
.btn-submit:active,
.btn-pay:active,
.cta:active {
    transform: translateY(0);
}

/* Primary — solid brand fill */
.btn,
.btn-submit,
.btn-pay,
.btn-buy,
.cta {
    padding: 11px 18px;
    background: var(--brand);
    color: #fff;
    box-shadow: var(--shadow-brand);
}

.btn:hover,
.btn-submit:hover,
.btn-pay:hover,
.btn-buy:hover,
.cta:hover {
    background: var(--brand-deep, #1d4ed8);
}

/* Secondary — quiet outline on card surface */
.btn.secondary,
.btn-buy.secondary {
    background: var(--card);
    color: var(--brand);
    border-color: var(--border);
    box-shadow: 0 1px 2px color-mix(in srgb, var(--text, #0f172a) 5%, transparent);
}

.btn.secondary:hover,
.btn-buy.secondary:hover {
    background: var(--brand-soft, rgba(37, 99, 235, 0.06));
    border-color: var(--brand-line, rgba(37, 99, 235, 0.2));
    color: var(--brand-deep, var(--brand));
}

.btn-submit,
.btn-pay {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
}

/* Sign-in: secondary suite SSO path (full-width under primary submit) */
a.btn-suite-login-alt {
    width: 100%;
    margin-top: 16px;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    box-sizing: border-box;
}

.suite-login-alt-hint {
    margin: 12px 0 0;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--muted);
}

.btn-buy,
.cta {
    padding: 11px 16px;
}

.btn-pay:disabled,
.cta.disabled {
    background: #94a3b8;
    color: #f8fafc;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 32px 88px;
    color: #fff;
    background: var(--hero-gradient);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.18), transparent 24%),
        linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.04) 48%, transparent 88%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -48% auto;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 32px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: start;
}

.hero h1 {
    margin: 0 0 18px;
    max-width: 760px;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-weight: 800;
    font-size: clamp(2.4rem, 3.6vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
}

.hero p {
    margin: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.6;
}

.hero-card {
    padding: 28px;
    border-radius: var(--radius-lg, 28px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-card h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.8;
}

.hero-card p {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

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

.hero-stat {
    padding: 16px;
    border-radius: 18px;
    background: rgba(10, 20, 34, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.6rem;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.section-shell {
    padding: 48px 0 80px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 26px;
}

.section-head h2,
.section-title-display {
    margin: 0;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
}

.section-head p {
    margin: 6px 0 0;
    max-width: 660px;
    color: var(--muted);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 26px;
}

.card,
.content-card,
.sidebar-card,
.surface-card,
.auth-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    border-color: var(--brand-line, rgba(37, 99, 235, 0.18));
}

.card-art,
.hero-art {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--brand);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.58), transparent 28%),
        linear-gradient(135deg, var(--brand-soft-strong, rgba(37, 99, 235, 0.14)), rgba(15, 23, 42, 0.08));
}

.card-art {
    height: 208px;
}

.hero-art {
    height: 280px;
}

.card-art img,
.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body,
.content-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
}

.content-body {
    padding: 34px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--brand-soft, rgba(37, 99, 235, 0.08));
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.title,
.page-title {
    margin: 0;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.title {
    font-size: 1.28rem;
}

.page-title {
    font-size: clamp(2rem, 3.6vw, 3rem);
    letter-spacing: -0.025em;
}

.copy,
.subhead,
.description,
.text-muted {
    color: var(--muted);
    line-height: 1.6;
}

.copy {
    margin: 0;
    flex: 1;
}

.description {
    color: #334155;
    line-height: 1.72;
}

.meta,
.detail-list {
    display: grid;
    gap: 8px;
    color: #334155;
    font-size: 0.94rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.price,
.total {
    color: var(--brand);
    font-weight: 900;
    line-height: 1;
}

.price {
    font-size: 1.45rem;
}

.total {
    margin-top: 10px;
    font-size: 2rem;
}

.empty {
    padding: 34px;
    color: var(--muted);
    border: 1px dashed var(--border);
    border-radius: 16px;
    background: var(--card);
    box-shadow: var(--shadow-soft);
}

.vendor-tile {
    padding: 24px;
}

.vendor-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.vendor-brand img {
    max-height: 52px;
    max-width: 160px;
    object-fit: contain;
}

.vendor-mark {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--tile-color, var(--brand)), var(--brand-darker, #0f172a));
    box-shadow: 0 16px 28px color-mix(in srgb, var(--text, #0f172a) 18%, transparent);
}

.vendor-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    text-decoration: none;
    font-weight: 800;
}

.shell {
    max-width: 1160px;
    margin: 0 auto;
    padding: 42px 22px 80px;
}

.layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
    gap: 32px;
    align-items: start;
}

.sidebar-card {
    padding: 28px;
    border-radius: 16px;
}

.sticky-card {
    position: sticky;
    top: 24px;
    box-shadow: var(--shadow-strong);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.meta-item,
.summary-box {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: color-mix(in srgb, var(--bg) 55%, #ffffff);
}

.summary-box {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 22px;
}

.meta-label,
.price-label,
.field-label,
.form-group label,
label {
    display: block;
    margin-bottom: 10px;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-feature-settings: "kern", "ss01";
}

.meta-value {
    font-weight: 700;
    line-height: 1.4;
}

.section-title {
    margin: 0 0 12px;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.availability.good {
    background: #dcfce7;
    color: #166534;
}

.availability.low {
    background: #fef3c7;
    color: #b45309;
}

.availability.full {
    background: #fee2e2;
    color: #991b1b;
}

.support-box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.94rem;
}

.support-box strong {
    color: var(--text);
}

.error-box,
.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
    line-height: 1.55;
}

.error-box,
.alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.notice {
    padding: 18px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #f8fafc;
    color: #475569;
    line-height: 1.55;
}

.notice.alert {
    background: #fffbeb;
    border-color: #fcd34d;
    color: #92400e;
}

.gateway-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--brand-soft, #eef2ff);
    color: var(--brand-darker, #4338ca);
    border: 1px solid var(--brand-line, #c7d2fe);
    font-size: 0.8rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea,
input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--text);
    font-size: 0.97rem;
    font-family: var(--font-body);
    line-height: 1.4;
    box-shadow: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
input::placeholder,
textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover,
input:hover,
select:hover,
textarea:hover {
    border-color: color-mix(in srgb, var(--border) 50%, #94a3b8 50%);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent);
}

.checkbox-row,
.checkbox-group {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: color-mix(in srgb, var(--bg) 45%, #ffffff);
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-row input,
.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    accent-color: var(--brand);
    flex-shrink: 0;
}

.checkbox-group + .btn-submit,
.checkbox-row + .btn-submit {
    margin-top: 18px;
}

/* The global label rule force-uppercases every <label>; checkbox/consent labels
   are sentence copy, so reset them to read normally inside the consent block. */
.checkbox-row label,
.checkbox-group label {
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.5;
}

.checkbox-row label a,
.checkbox-group label a {
    font-weight: 600;
}

.auth-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 1040px;
    overflow: hidden;
    display: flex;
    border-radius: 20px;
    border: 1px solid var(--border);
    /* Layered shadow: hairline rim + soft mid + long depth. Reads as a single
       glass card lifted off the page instead of a flat rectangle with a
       single big blur. */
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.6) inset,
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 12px 30px rgba(15, 23, 42, 0.07),
        0 40px 80px rgba(15, 23, 42, 0.14);
}

.auth-visual {
    position: relative;
    width: 45%;
    padding: 68px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.22), transparent 32%),
        radial-gradient(circle at 12% 92%, color-mix(in srgb, var(--brand) 38%, transparent) 0%, transparent 38%),
        linear-gradient(145deg, var(--brand) 0%, var(--brand-deep, #1f3d5d) 56%, var(--brand-darker, #0f2237) 100%);
}

/* Subtle dot grid overlay — adds texture without competing with the copy. */
.auth-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    background-position: 0 0;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.25));
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.25));
    pointer-events: none;
}

/* Decorative branded orb in the lower right — picks up the live --brand color. */
.auth-visual::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -110px;
    bottom: -130px;
    border-radius: 999px;
    background: radial-gradient(circle, color-mix(in srgb, var(--brand) 45%, transparent) 0%, transparent 65%);
    filter: blur(4px);
    pointer-events: none;
}

.auth-visual > * {
    position: relative;
    z-index: 1;
}

.auth-visual.auth-visual-wide {
    width: 50%;
    padding: 68px 58px;
    background:
        radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.18), transparent 28%),
        radial-gradient(circle at 8% 96%, color-mix(in srgb, var(--brand) 32%, transparent) 0%, transparent 36%),
        linear-gradient(145deg, var(--brand-darker, #0f2237) 0%, var(--brand-deep, #1a3b5f) 54%, var(--brand) 100%);
}

.auth-visual h2 {
    margin-bottom: 22px;
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: clamp(2.1rem, 3.4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
    /* Slightly off-white so it reads as crisp typography rather than electric white. */
    color: #f5f6fa;
    text-wrap: balance;
}

.auth-visual p {
    opacity: 0.86;
    font-size: 1.02rem;
    line-height: 1.55;
    letter-spacing: -0.005em;
    max-width: 34ch;
}

.auth-logo {
    max-height: 50px;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.auth-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-form {
    width: 55%;
    padding: 58px 62px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--card);
    /* Hairline divider between the dark visual half and the form so the two
       surfaces meet on a deliberate seam instead of touching directly. */
    box-shadow: inset 1px 0 0 rgba(15, 23, 42, 0.06);
}

.auth-form.auth-form-wide {
    width: 50%;
    padding: 64px 60px;
}

.auth-header {
    margin-bottom: 32px;
}

.auth-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
}

.auth-header h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: var(--text);
    text-wrap: balance;
}

.auth-header p {
    margin: 0;
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: 42ch;
}

/* Helper text under labelled fields (password rules, "pick your company"
   paragraph, etc.) — keep it readable without competing with the fields. */
.pwd-rules,
.form-group .helper,
.form-group small,
.form-group .field-hint {
    margin-top: 8px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.full-width {
    grid-column: 1 / -1;
}

.pwd-rules {
    margin-top: 6px;
    font-size: 0.75rem;
    color: #94a3b8;
}

.help-button {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1.2rem;
}

.auth-footer,
.signin-link {
    margin-top: 20px;
    color: #64748b;
    text-align: center;
    font-size: 0.9rem;
}

.auth-footer.right {
    text-align: right;
}

/* CustomerFacing/signin — consistent vertical rhythm + footer stack */
.auth-form.auth-form-wide > .auth-header-row {
    margin-bottom: 24px;
}

.auth-signin-notice {
    margin: 0 0 20px;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #64748b;
}

.auth-signin-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.auth-signin-form .form-group {
    margin-bottom: 14px;
}

.auth-signin-form .form-group:last-of-type {
    margin-bottom: 20px;
}

.signin-password-wrap {
    position: relative;
}

.signin-password-wrap input {
    padding-right: 48px;
}

.signin-password-toggle {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease;
}

.signin-password-toggle:hover {
    color: var(--brand, #2563eb);
    background: var(--brand-soft, rgba(37, 99, 235, 0.08));
}

.signin-password-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--brand, #2563eb);
}

.signin-password-toggle .signin-pw-ico {
    width: 20px;
    height: 20px;
}

.signin-password-toggle[aria-pressed="false"] .signin-pw-ico-hide {
    display: none;
}

.signin-password-toggle[aria-pressed="true"] .signin-pw-ico-show {
    display: none;
}

.auth-signin-footer {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.auth-signin-footer__line {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.45;
}

.auth-signin-footer__link {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.simple-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.simple-card {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 18px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-strong);
}

.simple-header {
    margin-bottom: 26px;
    text-align: center;
}

.simple-header h2 {
    margin: 12px 0 8px;
    font-family: var(--font-heading, 'Inter', system-ui, sans-serif);
    font-weight: 700;
    font-size: 1.85rem;
    letter-spacing: -0.02em;
}

.simple-header p {
    margin: 0;
    color: #64748b;
}

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

.mt-18 {
    margin-top: 18px;
}

.mb-40 {
    margin-bottom: 40px;
}

.small-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

.icon-inline {
    vertical-align: middle;
}

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

    .navbar {
        padding: 16px 18px;
        flex-wrap: wrap;
    }

    .container {
        width: min(100% - 32px, 1180px);
    }

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

    .sticky-card {
        position: static;
    }
}

@media (max-width: 900px) {
    .auth-card {
        flex-direction: column;
        max-width: 500px;
    }

    .auth-visual,
    .auth-visual.auth-visual-wide {
        display: none;
    }

    .auth-form,
    .auth-form.auth-form-wide {
        width: 100%;
        padding: 40px 30px;
        max-height: none;
    }

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