:root {
    --brand: #0f52ba;
    --brand-soft: rgba(15, 82, 186, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1f2937;
    background-color: #f4f6fb;
}

a {
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    opacity: 0.85;
}

/* Brand logo sizing in header */
.brand-logo {
    height: 64px;
    width: auto;
    display: inline-block;
}

.hero-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 65%, #edf3ff 100%);
}

.hero-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
}

@media (min-width: 768px) {
    .hero-avatar {
        width: 250px;
        height: 250px;
    }
}

.status-badge {
    background-color: var(--brand-soft);
    color: var(--brand);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--brand-soft);
    font-size: 1.25rem;
}

footer a:hover {
    color: var(--brand);
}

.modal-backdrop.show {
    opacity: 0.45;
}

.landing-hero {
    position: relative;
    border-radius: 1.75rem;
    background: linear-gradient(135deg, #0f52ba 0%, #274f9f 60%, #3e6fd6 100%);
    color: #ffffff;
    overflow: hidden;
}

.landing-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.15), transparent 60%);
    opacity: 0.6;
}

.landing-hero .card-body {
    position: relative;
    z-index: 1;
}

.landing-eyebrow {
    letter-spacing: 0.18em;
    font-size: 0.75rem;
}

.landing-pricing {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
}

.landing-feature-card {
    border-radius: 1.25rem;
}

.landing-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    font-size: 1.5rem;
}

@media (max-width: 575.98px) {
    .landing-hero {
        border-radius: 1.25rem;
    }
}

/* Quill editor sizing and scrollbars */
.ql-container {
    min-height: 240px; /* gives the editor an initial height */
}
.ql-container .ql-editor {
    min-height: 200px;
    max-height: 420px; /* constrain height */
    overflow-y: auto;  /* enable vertical scrolling */
}
