/* ==============================================
   GuestGuide Marketing — Design System
   Aesthetic: Coastal Luxury Editorial
   Fonts: Cormorant Garamond + DM Sans
   ============================================== */

/* ---- Variables ---- */
:root {
    --navy:     #0A2540;
    --navy-mid: #0E3460;
    --teal:     #0A7A6C;
    --teal-lt:  #14A899;
    --gold:     #C8883A;
    --gold-lt:  #E5A550;
    --sand:     #EAD7BB;
    --cream:    #FAF8F4;
    --white:    #FFFFFF;
    --dark:     #080F1A;
    --text:     #233548;
    --mid:      #526070;
    --light:    #EDE9E2;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-sm:   0 2px 8px rgba(10,37,64,.08);
    --shadow-md:   0 8px 32px rgba(10,37,64,.14);
    --shadow-lg:   0 24px 64px rgba(10,37,64,.20);
    --shadow-gold: 0 8px 32px rgba(200,136,58,.30);

    --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.15;
    font-weight: 500;
    color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
em { font-style: italic; color: var(--teal); }
p { color: var(--mid); font-weight: 300; }

/* ---- Layout Shell ---- */
.layout-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
section { overflow: hidden; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ---- Navigation ---- */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,37,64,.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -.02em;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.logo-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
    color: rgba(255,255,255,.70);
    font-size: .9rem;
    font-weight: 400;
    letter-spacing: .02em;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-login { color: rgba(255,255,255,.70); font-size: .9rem; transition: color var(--transition); }
.nav-login:hover { color: var(--white); }

/* ---- Buttons ---- */
.btn-primary-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--white) !important;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .01em;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn-primary-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,136,58,.45); }
.btn-ghost {
    display: inline-block;
    color: rgba(255,255,255,.85) !important;
    padding: .85rem 1.75rem;
    border-radius: 50px;
    font-size: .95rem;
    border: 1px solid rgba(255,255,255,.25);
    transition: all var(--transition);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.6); color: var(--white) !important; background: rgba(255,255,255,.08); }
.btn-outline {
    display: inline-block;
    color: var(--navy) !important;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 500;
    border: 2px solid var(--navy);
    transition: all var(--transition);
    text-align: center;
}
.btn-outline:hover { background: var(--navy); color: var(--white) !important; }

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 80%, rgba(14,122,108,.42) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 90% 10%, rgba(200,136,58,.24) 0%, transparent 55%),
        radial-gradient(ellipse 100% 100% at 50% 50%, rgba(10,52,96,.65) 0%, transparent 70%);
    animation: meshShift 14s ease-in-out infinite alternate;
}
@keyframes meshShift {
    0%   { opacity: .85; transform: scale(1); }
    100% { opacity: 1;   transform: scale(1.06); }
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 7rem 2rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(200,136,58,.15);
    border: 1px solid rgba(200,136,58,.35);
    color: var(--gold-lt);
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-title { color: var(--white); margin-bottom: 1.5rem; font-weight: 400; }
.hero-title em { color: var(--gold-lt); display: block; font-style: italic; }
.hero-sub {
    color: rgba(255,255,255,.68);
    font-size: 1.15rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.75;
}
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.hero-no-cc { font-size: .82rem; color: rgba(255,255,255,.38); font-weight: 300; margin-top: .5rem; }

/* ---- Guide Mockup ---- */
.guide-mockup {
    background: rgba(255,255,255,.97);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.10);
    overflow: hidden;
    transform: rotate(2.5deg) translateY(-12px);
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.guide-mockup:hover { transform: rotate(0deg) translateY(-18px); }
.mock-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.mock-logo {
    font-size: 1.6rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mock-title { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: white; }
.mock-section {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--light);
}
.mock-icon { font-size: 1.3rem; width: 30px; text-align: center; flex-shrink: 0; }
.mock-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--mid);
    font-weight: 500;
    margin-bottom: .15rem;
}
.mock-value { font-size: .9rem; color: var(--text); }
.mock-actions { padding: 1rem 1.5rem 1.5rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.mock-chip { background: var(--light); color: var(--navy); padding: .3rem .85rem; border-radius: 50px; font-size: .8rem; font-weight: 500; }

/* ---- Trust Bar ---- */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--mid); font-weight: 500; opacity: .55; }
.trust-logos { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.trust-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--mid);
    opacity: .45;
    letter-spacing: .01em;
    transition: opacity var(--transition);
}
.trust-logo:hover { opacity: .72; }

/* ---- Value Section ---- */
.value-section { padding: 8rem 2rem; background: var(--cream); }
.value-section .section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.section-eyebrow { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--teal); font-weight: 600; margin-bottom: 1rem; }
.value-text h2 { margin-bottom: 1.5rem; }
.value-text p { margin-bottom: 1.25rem; max-width: 480px; }
.text-link { color: var(--gold); font-weight: 500; font-size: .95rem; display: inline-flex; align-items: center; gap: .3rem; transition: gap var(--transition); }
.text-link:hover { gap: .6rem; }
.value-stats { display: flex; flex-direction: column; gap: 1.25rem; }
.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light);
    transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.stat-card.accent { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); border-color: transparent; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 600; color: var(--navy); line-height: 1; margin-bottom: .5rem; }
.stat-card.accent .stat-num { color: var(--white); }
.stat-label { font-size: .9rem; color: var(--mid); }
.stat-card.accent .stat-label { color: rgba(255,255,255,.70); }

/* ---- Features Section ---- */
.features-section { background: var(--white); padding: 8rem 2rem; }
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; max-width: 500px; margin: 0 auto; color: var(--mid); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    border: 1px solid var(--light);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.feature-card.featured { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); border-color: transparent; }
.feature-card.featured h3 { color: var(--white); }
.feature-card.featured p { color: rgba(255,255,255,.72); }
.feature-icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
.feature-card h3 { margin-bottom: .75rem; font-size: 1.3rem; }
.feature-card p { font-size: .95rem; line-height: 1.65; }
.feature-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--white);
    padding: .25rem .75rem;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .04em;
}

/* ---- How It Works ---- */
.how-section { background: var(--cream); padding: 8rem 2rem; }
.steps-row { display: flex; align-items: flex-start; gap: 2rem; }
.step { flex: 1; text-align: center; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 300; color: var(--sand); line-height: 1; margin-bottom: 1.25rem; }
.step h3 { margin-bottom: .75rem; font-size: 1.35rem; }
.step p { font-size: .95rem; max-width: 260px; margin: 0 auto; }
.step-arrow { font-size: 2rem; color: var(--sand); flex-shrink: 0; margin-top: 2rem; }

/* ---- Testimonials ---- */
.testimonials-section { background: var(--navy); padding: 8rem 2rem; }
.testimonials-section .section-eyebrow { color: var(--gold-lt); }
.testimonials-section h2 { color: var(--white); }
.testimonials-section h2 em { color: var(--gold-lt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: background var(--transition), transform var(--transition);
}
.testimonial:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.testimonial.featured-testimonial { background: rgba(255,255,255,.09); border-color: rgba(200,136,58,.30); }
.stars { color: var(--gold-lt); font-size: 1rem; letter-spacing: .1em; margin-bottom: 1.25rem; }
blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255,255,255,.82);
    line-height: 1.65;
    margin-bottom: 1.75rem;
    font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 1rem; }
.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--teal), var(--teal-lt));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}
.reviewer-name { font-size: .9rem; font-weight: 500; color: var(--white); margin-bottom: .15rem; }
.reviewer-prop { font-size: .82rem; color: rgba(255,255,255,.42); }

/* ---- Pricing ---- */
.pricing-section { background: var(--cream); padding: 8rem 2rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--light);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured-plan {
    background: linear-gradient(160deg, var(--navy) 0%, #0D3A6A 100%);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
}
.pricing-card.featured-plan:hover { transform: scale(1.04) translateY(-4px); }
.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: white;
    padding: .3rem 1.25rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    white-space: nowrap;
}
.plan-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
.pricing-card.featured-plan .plan-name { color: var(--white); }
.plan-price { margin-bottom: 1rem; display: flex; align-items: baseline; gap: .25rem; }
.price-val { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 600; color: var(--navy); line-height: 1; }
.pricing-card.featured-plan .price-val { color: var(--white); }
.price-period { font-size: 1rem; color: var(--mid); font-weight: 300; }
.pricing-card.featured-plan .price-period { color: rgba(255,255,255,.55); }
.plan-desc { font-size: .9rem; color: var(--mid); margin-bottom: 2rem; line-height: 1.55; min-height: 48px; }
.pricing-card.featured-plan .plan-desc { color: rgba(255,255,255,.62); }
.plan-features { list-style: none; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: .75rem; }
.plan-features li { font-size: .9rem; color: var(--text); font-weight: 400; }
.pricing-card.featured-plan .plan-features li { color: rgba(255,255,255,.85); }
.plan-features li.muted { opacity: .30; }
.pricing-card .btn-primary-gold, .pricing-card .btn-outline { width: 100%; text-align: center; display: block; }

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-lt) 50%, #0A5E54 100%);
    padding: 8rem 2rem;
    text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.cta-inner p { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 2.5rem; font-weight: 300; }
.cta-form { display: flex; gap: .75rem; max-width: 520px; margin: 0 auto 1.25rem; }
.cta-input {
    flex: 1;
    padding: .85rem 1.5rem;
    border-radius: 50px;
    border: none;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: .95rem;
    font-family: 'DM Sans', sans-serif;
    transition: background var(--transition);
    outline: none;
}
.cta-input::placeholder { color: rgba(255,255,255,.52); }
.cta-input:focus { background: rgba(255,255,255,.22); }
.cta-small { font-size: .82rem; color: rgba(255,255,255,.48); font-weight: 300; }

/* ---- Footer ---- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.52); padding: 4rem 2rem 3rem; }
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; display: flex; }
.footer-brand p { font-size: .9rem; line-height: 1.65; max-width: 260px; color: rgba(255,255,255,.42); }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.32); font-weight: 600; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul a { font-size: .9rem; color: rgba(255,255,255,.48); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    color: rgba(255,255,255,.24);
    flex-wrap: wrap;
    gap: 1rem;
}

/* ---- Blazor Framework ---- */
#blazor-error-ui {
    background: #fef3cd;
    border-top: 1px solid #e0c060;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,.2);
    display: none;
    left: 0;
    padding: .6rem 1.25rem .7rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
#blazor-error-ui .dismiss { cursor: pointer; float: right; }
.blazor-error-boundary { background: #b32121; padding: 1rem 1rem 1rem 3.7rem; color: white; }
.blazor-error-boundary::after { content: "An error has occurred." }

/* ---- Validation (keep Blazor defaults) ---- */
.valid.modified:not([type=checkbox]) { outline: 1px solid #26b050; }
.invalid { outline: 1px solid #e50000; }
.validation-message { color: #e50000; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .guide-mockup { transform: none; max-width: 420px; margin: 0 auto; }
    .value-section .section-inner { grid-template-columns: 1fr; gap: 3rem; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-card.featured-plan { transform: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
}
@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .steps-row { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); margin: 0; }
    .cta-form { flex-direction: column; }
    .footer-inner { grid-template-columns: 1fr; }
    .trust-logos { gap: 1.5rem; }
    .nav-inner { padding: 0 1rem; gap: 0.75rem; }
    .nav-right { gap: 0.5rem; }
    .nav-right .btn-primary-gold { padding: 0.5rem 0.85rem; font-size: 0.8rem; }
    .nav-right .nav-login { font-size: 0.8rem; }
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

/* ===== SIGNUP FORM (interactive island) ===== */
.cta-form-wrapper { width: 100%; }

.cta-sent {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(45, 212, 191, 0.12);
    border: 1px solid rgba(45, 212, 191, 0.4);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: #f1f5f9;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    max-width: 560px;
    margin: 0 auto;
}

.sent-icon { font-size: 1.75rem; flex-shrink: 0; }

.cta-sent strong { display: block; color: #2dd4bf; font-size: 1rem; margin-bottom: 4px; }
.cta-sent p { margin: 0; color: #94a3b8; }
.cta-sent em { color: #e2e8f0; font-style: normal; font-weight: 600; }

.cta-error {
    color: #f87171;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    text-align: center;
}

.input-error { border-color: #f87171 !important; }

/* ===== SPINNER ===== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

/* ===== VERIFY PAGE ===== */
.verify-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, #1a2744 0%, #0a0e1a 70%);
    padding: 2rem 1rem;
    font-family: 'DM Sans', sans-serif;
}

.verify-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.verify-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f8fafc;
    text-decoration: none;
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
    display: block;
}
.verify-logo .teal { color: #2dd4bf; }

.verify-header { text-align: center; margin-bottom: 2rem; width: 100%; }

.verify-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.6rem;
}

.verify-sub {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.verify-sub strong { color: #e2e8f0; }

.verify-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-top: 1rem;
    margin-bottom: 0.35rem;
    display: block;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #f1f5f9;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #2dd4bf;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15);
}

.form-input::placeholder { color: #475569; }

.otp-input {
    font-size: 1.75rem;
    font-family: monospace;
    letter-spacing: 0.4em;
    text-align: center;
    padding: 1rem;
}

.form-error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    border-radius: 8px;
    color: #fca5a5;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    margin-top: 0.75rem;
}

.btn-verify {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0a0e1a;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn-verify:hover:not(:disabled) {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.45);
}

.btn-verify:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.resend-hint {
    text-align: center;
    font-size: 0.85rem;
    color: #475569;
    margin-top: 1.25rem;
}

.resend-hint a {
    color: #2dd4bf;
    text-decoration: none;
}
.resend-hint a:hover { text-decoration: underline; }

/* ===== VERIFY SUCCESS STATE ===== */
.verify-success {
    text-align: center;
    padding: 1rem 0;
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: pop 0.4s ease-out;
}

@keyframes pop {
    0%   { transform: scale(0.5); opacity: 0; }
    75%  { transform: scale(1.1); }
    100% { transform: scale(1);   opacity: 1; }
}

.verify-success h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.verify-success p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.success-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(45, 212, 191, 0.2);
    border-top-color: #2dd4bf;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 1.5rem auto 0;
}

@media (max-width: 500px) {
    .verify-card { padding: 2rem 1.25rem; }
    .verify-title { font-size: 1.6rem; }
    .otp-input { font-size: 1.35rem; letter-spacing: 0.3em; }
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* ===== PRIVACY POLICY PAGE ===== */
.privacy-section {
    padding: 5rem 1.5rem 6rem;
    background: var(--bg-dark);
    min-height: 80vh;
}
.privacy-inner {
    max-width: 780px;
    margin: 0 auto;
    color: #94a3b8;
    line-height: 1.8;
}
.privacy-inner h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 0.4rem;
}
.privacy-updated {
    font-size: 0.85rem;
    color: rgba(255,255,255,.32);
    margin-bottom: 3rem;
}
.privacy-inner h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 0.5rem;
}
.privacy-inner h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 1.25rem;
    margin-bottom: 0.4rem;
}
.privacy-inner p { margin-bottom: 0.9rem; }
.privacy-inner ul {
    padding-left: 1.4rem;
    margin-bottom: 0.9rem;
}
.privacy-inner ul li { margin-bottom: 0.35rem; }
.privacy-inner a { color: var(--teal); text-decoration: underline; }
.privacy-inner a:hover { color: var(--white); }
.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
}
.privacy-table th {
    text-align: left;
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,.05);
    color: #e2e8f0;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.privacy-table td {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
    vertical-align: top;
}
.privacy-table tr:last-child td { border-bottom: none; }

/* Signup form legal note */
.cta-legal {
    font-size: 0.78rem;
    color: rgba(255,255,255,.3);
    text-align: center;
    margin-top: 0.75rem;
}
.cta-legal a { color: rgba(255,255,255,.45); text-decoration: underline; }

/* ==============================================
   Blog
   ============================================== */

/* Hero */
.blog-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 6rem 1.5rem 4rem;
    text-align: center;
}
.blog-hero-inner { max-width: 680px; margin: 0 auto; }
.blog-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-lt);
    margin-bottom: 1rem;
}
.blog-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}
.blog-hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,.7);
    line-height: 1.6;
}

/* Article list */
.blog-list-section { background: var(--cream); padding: 4rem 1.5rem 6rem; }
.blog-list-inner { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; }

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.blog-card-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.blog-dot { color: var(--light); }
.blog-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.6rem;
    line-height: 1.25;
}
.blog-card h2 a { color: inherit; text-decoration: none; }
.blog-card h2 a:hover { color: var(--teal); }
.blog-card-summary {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem;
    color: var(--mid);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.blog-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.blog-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--teal);
    background: rgba(10,122,108,.08);
    border-radius: 20px;
    padding: 0.2rem 0.65rem;
}
.blog-read-more {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    letter-spacing: 0.01em;
}
.blog-read-more:hover { color: var(--navy); }
.blog-empty {
    font-family: 'DM Sans', sans-serif;
    color: var(--mid);
    text-align: center;
    padding: 3rem 0;
}

/* Article page */
.blog-article { background: var(--cream); padding: 3rem 1.5rem 6rem; }
.blog-article-inner { max-width: 740px; margin: 0 auto; }
.blog-back {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--mid);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2rem;
}
.blog-back:hover { color: var(--teal); }

.blog-article-header {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light);
    margin-bottom: 2.5rem;
}
.blog-article-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.blog-article-summary {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    color: var(--mid);
    line-height: 1.65;
    margin-bottom: 1rem;
}

/* Article body prose */
.blog-article-body {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.75;
}
.blog-article-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}
.blog-article-body h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}
.blog-article-body p { margin-bottom: 1.1rem; }
.blog-article-body ul, .blog-article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.1rem;
}
.blog-article-body li { margin-bottom: 0.4rem; }
.blog-article-body strong { color: var(--navy); font-weight: 600; }
.blog-article-body a { color: var(--teal); text-decoration: underline; }
.blog-article-body a:hover { color: var(--navy); }
.blog-article-body blockquote {
    border-left: 3px solid var(--teal-lt);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: rgba(10,122,108,.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--mid);
}
.blog-article-body hr {
    border: none;
    border-top: 1px solid var(--light);
    margin: 2rem 0;
}
/* Checklist checkboxes */
.blog-article-body input[type="checkbox"] {
    accent-color: var(--teal);
    width: 1rem;
    height: 1rem;
    margin-right: 0.4rem;
    cursor: default;
}

.blog-article-footer { margin-top: 2.5rem; }
.blog-cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}
.blog-cta-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.blog-cta-box p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .blog-card { padding: 1.5rem; }
    .blog-article-header, .blog-article-body { padding: 1.5rem; }
    .blog-cta-box { padding: 1.75rem 1.25rem; }
}
.cta-legal a:hover { color: var(--white); }

/* ===== AI CHAT SPOTLIGHT ===== */
.chat-spotlight-section { background: var(--navy); padding: 8rem 2rem; }
.chat-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.chat-spotlight-text .section-eyebrow { color: var(--gold-lt); }
.chat-spotlight-text h2 { color: var(--white); margin-bottom: 1.5rem; }
.chat-spotlight-text > p { color: rgba(255,255,255,.68); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 480px; }

.chat-benefit-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.chat-benefit-list li { display: flex; align-items: flex-start; gap: 1rem; }
.benefit-icon {
    width: 28px;
    height: 28px;
    background: rgba(14,122,108,.35);
    border: 1px solid rgba(20,168,153,.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--teal-lt);
    flex-shrink: 0;
    margin-top: .2rem;
}
.chat-benefit-list strong { color: var(--white); font-size: .95rem; font-weight: 600; display: block; margin-bottom: .3rem; }
.chat-benefit-list p { color: rgba(255,255,255,.52); font-size: .88rem; margin: 0; }

/* Chat panel demo mockup */
.chat-spotlight-visual { position: relative; padding-bottom: 2rem; }

.chat-demo-panel {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 340px;
    margin-left: auto;
}

.chat-demo-header {
    background: #2d6a4f;
    color: var(--white);
    padding: .85rem 1rem;
    font-size: .88rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-demo-dot {
    width: 8px;
    height: 8px;
    background: #52c41a;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(82,196,26,.7);
}

.chat-demo-messages {
    padding: .85rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    min-height: 220px;
}

.chat-demo-welcome {
    background: #f1f3f2;
    border-radius: .75rem;
    padding: .6rem .85rem;
    font-size: .82rem;
    color: #526070;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
}

.chat-demo-msg {
    max-width: 82%;
    padding: .5rem .8rem;
    border-radius: 1rem;
    font-size: .82rem;
    line-height: 1.5;
    font-family: 'DM Sans', sans-serif;
}
.chat-demo-msg.user {
    background: #2d6a4f;
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: .25rem;
}
.chat-demo-msg.assistant {
    background: #f1f3f2;
    color: #1a1a1a;
    border-bottom-left-radius: .25rem;
}
.chat-demo-msg.assistant strong { color: #1b4332; }
.chat-demo-msg.typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: .65rem .9rem;
}
.typing-dot {
    width: 7px;
    height: 7px;
    background: #adb5bd;
    border-radius: 50%;
    animation: spotlightBounce 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes spotlightBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30%            { transform: translateY(-5px); }
}

.chat-demo-input-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem;
    border-top: 1px solid #e9ecef;
}
.chat-demo-input {
    flex: 1;
    border: 1px solid #ced4da;
    border-radius: 1.5rem;
    padding: .45rem .9rem;
    font-size: .8rem;
    color: #adb5bd;
    font-family: 'DM Sans', sans-serif;
}
.chat-demo-send {
    width: 32px;
    height: 32px;
    background: #2d6a4f;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-demo-fab {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52px;
    height: 52px;
    background: #2d6a4f;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
}

@media (max-width: 960px) {
    .chat-spotlight-grid { grid-template-columns: 1fr; gap: 3rem; }
    .chat-demo-panel { margin: 0 auto; }
    .chat-demo-fab { right: calc(50% - 170px - 26px); }
}