/* LION Shared Styles - v0.1 */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
}

header, nav {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    padding: 1rem 0;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
}

.hero {
    background: #f8fafc;
    padding: 4rem 2rem;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===============================
   LION Alerts - Black & White Landing Page
   =============================== */

:root {
    --black: #050505;
    --dark: #111111;
    --gray-900: #181818;
    --gray-700: #3f3f46;
    --gray-500: #71717a;
    --gray-300: #d4d4d8;
    --gray-200: #e4e4e7;
    --gray-100: #f4f4f5;
    --white: #ffffff;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--black);
    background: var(--white);
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--gray-200);
}

.nav-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--black);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
}

.brand strong {
    display: block;
    font-size: 19px;
    letter-spacing: -0.04em;
}

.brand small {
    display: block;
    color: var(--gray-500);
    font-size: 12px;
    margin-top: 2px;
}

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

.nav-links a {
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--black);
}

.nav-links .nav-cta {
    background: var(--black);
    color: var(--white);
    padding: 11px 18px;
    border-radius: 999px;
}

.landing-page {
    overflow: hidden;
}

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

.landing-hero {
    position: relative;
    padding: 92px 0 86px;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
}

.hero-pill,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 8px 14px;
    background: var(--white);
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 20px 0 22px;
    color: var(--black);
    font-size: clamp(46px, 6vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.075em;
    max-width: 780px;
}

.hero-lead {
    max-width: 700px;
    margin: 0 0 32px;
    color: var(--gray-700);
    font-size: 20px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 850;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.btn-light {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-200);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-trust span {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
}

.hero-preview {
    position: relative;
    min-height: 520px;
}

.preview-card,
.mini-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
}

.main-preview {
    position: absolute;
    top: 32px;
    right: 0;
    width: min(480px, 100%);
    border-radius: 30px;
    padding: 28px;
}

.preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 800;
}

.status-dot {
    color: var(--white);
    background: var(--black);
    border-radius: 999px;
    padding: 7px 12px;
}

.preview-stat {
    padding: 26px;
    border-radius: 24px;
    background: var(--black);
    color: var(--white);
    margin-bottom: 18px;
}

.preview-stat span {
    display: block;
    color: var(--gray-300);
    font-size: 14px;
    margin-bottom: 8px;
}

.preview-stat strong {
    display: block;
    font-size: 62px;
    line-height: 1;
    letter-spacing: -0.06em;
}

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

.preview-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
    background: var(--gray-100);
    color: var(--gray-700);
}

.preview-list strong {
    color: var(--black);
}

.mini-card {
    position: absolute;
    border-radius: 22px;
    padding: 20px;
    width: 190px;
}

.mini-card strong {
    display: block;
    font-size: 30px;
    letter-spacing: -0.04em;
    margin-bottom: 4px;
}

.mini-card span {
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 700;
}

.mini-card-one {
    left: 0;
    bottom: 100px;
}

.mini-card-two {
    right: 40px;
    bottom: 10px;
}

.landing-section,
.process-section {
    padding: 90px 0;
    background: var(--white);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.split-section h2,
.final-cta h2 {
    margin: 16px 0 14px;
    color: var(--black);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.section-heading p,
.split-section p,
.final-cta p {
    color: var(--gray-700);
    font-size: 18px;
    line-height: 1.65;
}

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

.feature-card,
.process-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 44px;
    border-radius: 15px;
    background: var(--black);
    color: var(--white);
    font-weight: 900;
}

.feature-card h3,
.process-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    letter-spacing: -0.035em;
}

.feature-card p,
.process-card p {
    margin: 0;
    color: var(--gray-700);
    line-height: 1.6;
}

.split-section {
    padding: 96px 0;
    background: var(--black);
    color: var(--white);
}

.split-section .section-kicker {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--gray-200);
}

.split-section h2 {
    color: var(--white);
}

.split-section p {
    color: var(--gray-300);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 58px;
    align-items: center;
}

.check-panel {
    display: grid;
    gap: 12px;
}

.check-panel div {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 800;
}

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

.process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 26px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    font-weight: 900;
}

.final-cta {
    padding: 92px 0;
    text-align: center;
    background: var(--black);
    color: var(--white);
}

.final-cta h2 {
    color: var(--white);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta p {
    color: var(--gray-300);
    margin-bottom: 28px;
}

@media (max-width: 900px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-grid,
    .split-grid,
    .feature-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero {
        padding: 64px 0 70px;
    }

    .hero-preview {
        min-height: auto;
    }

    .main-preview,
    .mini-card {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .hero-copy h1 {
        font-size: clamp(42px, 12vw, 62px);
    }
}

/* ===============================
   Header Fix - LION Landing Page
   Put this at the VERY BOTTOM
   =============================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid #e5e7eb;
}

.site-header .nav-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

/* This fixes the ugly blue block */
.site-header nav,
.site-header .nav-links {
    background: transparent !important;
    background-color: transparent !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}

.site-header .brand {
    display: flex !important;
    align-items: center;
    gap: 12px;
    color: #050505 !important;
    text-decoration: none !important;
    flex-shrink: 0;
}

.site-header .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #050505;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
}

.site-header .brand strong {
    display: block !important;
    color: #050505 !important;
    font-size: 19px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.site-header .brand small {
    display: block !important;
    margin-top: 4px;
    color: #71717a !important;
    font-size: 12px;
    line-height: 1;
}

.site-header .nav-links {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.site-header .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: #3f3f46 !important;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-header .nav-links a:hover {
    background: #f4f4f5;
    color: #050505 !important;
}

/* Register button */
.site-header .nav-links .nav-cta {
    margin-left: 8px;
    padding: 0 20px;
    background: #050505 !important;
    color: #ffffff !important;
    border-radius: 999px;
}

.site-header .nav-links .nav-cta:hover {
    background: #18181b !important;
    color: #ffffff !important;
}

@media (max-width: 850px) {
    .site-header .nav-container {
        min-height: auto;
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header .nav-links {
        width: 100% !important;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .site-header .nav-links a {
        background: #f4f4f5;
    }

    .site-header .nav-links .nav-cta {
        margin-left: 0;
    }
}

/* Beta onboarding */

.beta-page {
    min-height: calc(100vh - 78px);
    background:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        #f7f7f7;
    background-size: 44px 44px;
}

.beta-section {
    padding: 80px 0;
}

.beta-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.beta-intro {
    position: sticky;
    top: 120px;
}

.beta-intro h1,
.review-container h1,
.confirmation-card h1 {
    margin: 20px 0;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.beta-intro > p,
.confirmation-card > p {
    color: #52525b;
    font-size: 18px;
    line-height: 1.7;
}

.beta-step-list {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.beta-step-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
}

.beta-step-list strong {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #050505;
    color: #fff;
}

.beta-form-card,
.confirmation-card {
    padding: 38px;
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    font-size: 14px;
    font-weight: 800;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d4d4d8;
    border-radius: 14px;
    background: #fafafa;
    color: #050505;
    font: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #050505;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.consent-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #52525b;
    line-height: 1.5;
}

.consent-field input {
    margin-top: 4px;
}

.beta-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.form-message {
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 14px;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.review-container {
    max-width: 850px;
}

.review-list {
    display: grid;
    gap: 12px;
    margin: 30px 0;
}

.review-list > div {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 18px;
    border-radius: 16px;
    background: #f4f4f5;
}

.review-list span {
    color: #71717a;
    font-weight: 700;
}

.review-list strong {
    overflow-wrap: anywhere;
}

.review-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.review-actions form {
    margin: 0;
}

.confirmation-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-card .review-actions {
    justify-content: center;
}

@media (max-width: 900px) {
    .beta-section {
        padding: 48px 0;
    }

    .beta-layout,
    .form-row {
        grid-template-columns: 1fr;
    }

    .beta-intro {
        position: static;
    }

    .beta-form-card,
    .confirmation-card {
        padding: 24px;
        border-radius: 24px;
    }

    .review-list > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .review-actions {
        flex-direction: column;
    }

    .review-actions .btn,
    .review-actions form,
    .review-actions button {
        width: 100%;
    }
}

.auth-page {
    min-height: calc(100vh - 78px);
    padding: 70px 20px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        #f7f7f7;
    background-size: 44px 44px;
}

.auth-card {
    width: min(520px, 100%);
    margin: 0 auto;
    padding: 38px;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.auth-card h1 {
    margin: 18px 0 12px;
    font-size: clamp(38px, 7vw, 56px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.auth-card > p {
    color: #71717a;
    line-height: 1.6;
}

.auth-footer {
    margin-top: 24px;
    text-align: center;
}

.auth-footer a {
    color: #050505;
    font-weight: 800;
}

.account-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.account-summary > div {
    padding: 16px;
    border-radius: 16px;
    background: #f4f4f5;
}

.account-summary span {
    display: block;
    margin-bottom: 4px;
    color: #71717a;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .auth-page {
        padding: 40px 14px;
    }

    .auth-card {
        padding: 24px;
        border-radius: 24px;
    }

    .account-summary {
        grid-template-columns: 1fr;
    }
}

/* Review page */

.review-page,
.thank-you-page {
    min-height: calc(100vh - 78px);
    background:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        #f7f7f7;
    background-size: 44px 44px;
}

.review-section,
.thank-you-section {
    padding: 70px 20px;
}

.review-card,
.thank-you-card {
    width: min(720px, 100%);
    margin: 0 auto;
    padding: 36px;
    background: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.1);
}

.review-card h1,
.thank-you-card h1 {
    margin: 18px 0 12px;
    font-size: clamp(36px, 6vw, 54px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.review-intro,
.thank-you-card > p {
    color: #71717a;
    font-size: 17px;
    line-height: 1.6;
}

.review-account {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 16px;
}

.review-account > div {
    padding: 16px;
    background: #f4f4f5;
    border-radius: 16px;
}

.review-account span,
.review-item span {
    display: block;
    margin-bottom: 6px;
    color: #71717a;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.review-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.review-item {
    padding: 18px;
    background: #fafafa;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
}

.review-item strong,
.review-item p {
    margin: 0;
    color: #18181b;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.review-item-full {
    grid-column: 1 / -1;
}

.review-actions,
.thank-you-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}

.review-actions form {
    margin: 0;
}

.thank-you-card {
    text-align: center;
    max-width: 680px;
}

.thank-you-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #050505;
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
}

.thank-you-actions {
    justify-content: center;
}

@media (max-width: 650px) {
    .review-section,
    .thank-you-section {
        padding: 40px 14px;
    }

    .review-card,
    .thank-you-card {
        padding: 24px;
        border-radius: 22px;
    }

    .review-account,
    .review-summary {
        grid-template-columns: 1fr;
    }

    .review-item-full {
        grid-column: auto;
    }

    .review-actions,
    .thank-you-actions {
        flex-direction: column;
    }

    .review-actions form,
    .review-actions button,
    .thank-you-actions .btn {
        width: 100%;
    }
}

body.modal-open {
    overflow: hidden;
}

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.review-modal.is-open {
    display: flex;
}

.review-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.56);
    backdrop-filter: blur(8px);
}

.review-modal-card {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}

.review-modal-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.review-modal-header h2 {
    margin: 14px 0 0;
    font-size: 34px;
    letter-spacing: -0.045em;
}

.modal-close {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid #e4e4e7;
    border-radius: 14px;
    background: #ffffff;
    color: #050505;
    font-size: 25px;
    cursor: pointer;
}

.modal-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 26px;
}

.modal-summary > div {
    padding: 16px;
    background: #f7f7f7;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
}

.modal-summary span {
    display: block;
    margin-bottom: 6px;
    color: #71717a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.modal-summary strong,
.modal-summary p {
    margin: 0;
    color: #18181b;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.modal-summary-full {
    grid-column: 1 / -1;
}

.review-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 26px;
}

.review-modal-actions button {
    border: 0;
    cursor: pointer;
}

.review-modal-actions button:disabled {
    opacity: 0.65;
    cursor: wait;
}

@media (max-width: 650px) {
    .review-modal {
        align-items: flex-end;
        padding: 10px;
    }

    .review-modal-card {
        max-height: 92vh;
        padding: 22px;
        border-radius: 24px 24px 18px 18px;
    }

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

    .modal-summary-full {
        grid-column: auto;
    }

    .review-modal-actions {
        flex-direction: column-reverse;
    }

    .review-modal-actions .btn {
        width: 100%;
    }
}

/* Email verification pages */

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

.verification-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #111111;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
}

.verification-icon-error {
    background: #f1f1f1;
    color: #111111;
    border: 1px solid #dddddd;
}

.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
}

.auth-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    background: #ffffff;
    color: #111111;
    text-decoration: none;
    font-weight: 700;
}

.btn-secondary:hover {
    background: #f4f4f4;
}

.verification-note {
    margin-top: 24px;
    color: #686868;
    font-size: 14px;
    line-height: 1.6;
}

.form-field small {
    display: block;
    margin-top: 7px;
    color: #686868;
    font-size: 13px;
}

@media (max-width: 600px) {
    .verification-card {
        text-align: left;
    }

    .verification-icon {
        margin-left: 0;
    }
}

.coming-soon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-coming-soon {
    display: inline-flex;
    align-items: center;
    padding: 3px 6px;
    border-radius: 999px;
    background: #f1f1f1;
    color: #777777;
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .nav-coming-soon {
        display: none;
    }
}