:root {
    /* Color Palette - Light and Nuanced */
    --bg-color: #fdfbf7; /* Very subtle warm off-white */
    --text-main: #1a1a1a;
    --text-muted: #555555;
    --accent-soft: #f0f2f5;
    --accent-primary: #2d3436;
    --accent-highlight: #d4e4ef; /* Soft blue */
    --accent-warm: #e8dcd8;      /* Soft warm beige */

    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center; /* Center on mobile */
    align-items: center;
    padding: 0 0 1rem 0;      /* Reduced bottom padding on mobile */
    width: 100%;
    margin-bottom: 1.5rem;    /* Reduced margin on mobile */
}

@media (min-width: 768px) {
    .navbar {
        justify-content: space-between; /* Space between logo, nav, and coming soon */
        padding: 0 0 2rem 0;
        margin-bottom: 2rem;
    }
}

.nav-buttons {
    display: none; /* Hidden on mobile */
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .nav-buttons {
        display: flex;
        align-items: center;
    }
}

.glass-button {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    position: relative;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03),
        0 1px 3px rgba(0, 0, 0, 0.02),
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.glass-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0) 100%);
    border-radius: 20px 20px 0 0;
    pointer-events: none;
}

.glass-button:hover {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.18) 0%,
            rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04),
        0 2px 6px rgba(0, 0, 0, 0.03),
        inset 0 2px 4px rgba(255, 255, 255, 0.7),
        inset 0 -2px 4px rgba(0, 0, 0, 0.12);
}

.glass-button.active {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.12) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(255, 255, 255, 0.1),
        inset 0 2px 6px rgba(255, 255, 255, 0.8),
        inset 0 -2px 6px rgba(0, 0, 0, 0.15);
}

.glass-button.active::before {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0) 100%);
}

.glass-button.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05),
        0 2px 8px rgba(255, 255, 255, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.9),
        inset 0 -2px 6px rgba(0, 0, 0, 0.18);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .logo {
        flex-direction: row;
        gap: 0.75rem;
    }
}

.logo-image {
    height: 45px;
    width: 45px;
    border-radius: 22%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.nav-cta {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-cta:hover {
    border-color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 5% 4rem;
    text-align: center;
    position: relative;

    margin: 20px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.coming-soon {
    display: none;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .coming-soon {
        display: block;
    }
}

.hero-content {
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        margin: 40px;
        flex-wrap: wrap;
    }

    .navbar {
        width: 100%;
        order: -1;
    }

    .hero-content {
        max-width: 52%;
        padding-right: 2rem;
        text-align: left;
        overflow: visible;
    }

    .hero-image-container {
        max-width: 40%;
    }
}

.hero-title {
    font-size: 2rem;
    line-height: 0.95;
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.2rem; /* calmer size so it fits better */
        line-height: 1;
        margin-bottom: 3.5rem;
    }
}

.title-sans {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--text-main);
    z-index: 2;
}

@media (max-width: 767px) {
    .title-sans {
        font-size: 0.85em;
    }

    .title-serif-large {
        margin-top: -0.3em;
    }
}

.title-serif-large {
    font-family: var(--font-serif);
    font-size: 2em;
    font-style: italic;
    font-weight: 300;
    overflow-wrap: anywhere; /* allow wrapping instead of clipping */

    background: linear-gradient(240deg,
            var(--text-main) 0%,
            var(--text-main) 40%,
            #a8d0e6 50%,
            var(--text-main) 60%,
            var(--text-main) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: ripple 4s linear infinite reverse;

    margin-left: 0;
    z-index: 1;
}

@media (min-width: 768px) {
    .title-serif-large {
        font-size: 2.5em;
        margin-top: -0.4em;
    }
}

@keyframes ripple {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 4.5rem;
    max-width: 100%;
}

@media (min-width: 768px) {
    .hero-subtitle {
        margin-bottom: 3.5rem;
    }
}

.rotating-text-container {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    height: 2.8rem;
    position: relative;
    min-width: 240px;
}

.rotating-text {
    display: inline-block;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    white-space: nowrap;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.rotating-text.pill-green { background: #2F5233; }
.rotating-text.pill-orange { background: #B5651D; }
.rotating-text.pill-blue { background: #1E3A5F; }
.rotating-text.pill-purple { background: #4A2560; }
.rotating-text.pill-teal { background: #2C6B6B; }
.rotating-text.pill-burgundy { background: #7F2C3E; }
.rotating-text.pill-navy { background: #1A3A52; }
.rotating-text.pill-olive { background: #5C6B3A; }
.rotating-text.pill-plum { background: #5C3A6B; }
.rotating-text.pill-slate { background: #3A5C6B; }

.rotating-text.slide-down {
    transform: translateY(150%);
}

.rotating-text.slide-from-top {
    transform: translateY(-200%);
    transition: none;
}

@media (max-width: 767px) {
    .rotating-text-container {
        display: block;
        width: fit-content;
        margin: 0.5rem auto 0;
    }

    .rotating-text {
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }

    .rotating-text.slide-down {
        transform: translateY(150%) translateX(-50%);
    }

    .rotating-text.slide-from-top {
        transform: translateY(-200%) translateX(-50%);
    }
}

/* Expertise Section */
.expertise-section {
    margin-top: 4rem;
    max-width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .expertise-section {
        margin-top: 4.5rem;
    }
}

.expertise-header {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.logo-ticker {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
    -webkit-mask-image: linear-gradient(to right,
            transparent,
            black 10%,
            black 90%,
            transparent);
}

.logo-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    align-items: center;
    height: 35px;
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item img {
    height: 100%;
    width: auto;
    max-width: 120px;
    max-height: 35px;
    object-fit: contain;
}

.logo-item:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .expertise-header {
        text-align: left;
    }
}

/* Capacity Badge */
.capacity-badge {
    position: absolute;
    top: -0.75rem;
    right: -0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #b91c1c;
    padding: 0.35rem 0.65rem;
    border-radius: 12px;
    border: 1px solid #b91c1c;
    z-index: 10;
}

@media (min-width: 480px) {
    .capacity-badge {
        top: 50%;
        transform: translateY(-50%);
        right: auto;
        left: calc(100% + 0.75rem);
        background: rgba(185, 28, 28, 0.1);
        border: 1px solid rgba(185, 28, 28, 0.2);
    }
}

.badge-mini-bar {
    width: 40px;
    height: 4px;
    background: rgba(185, 28, 28, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 480px) {
    .badge-mini-bar {
        width: 85px;
    }
}

.badge-mini-fill {
    height: 100%;
    width: 83%;
    background: linear-gradient(90deg, #b91c1c 0%, #ef4444 100%);
    border-radius: 4px;
    animation: fillBadgeBar 1.5s ease-out;
}

@keyframes fillBadgeBar {
    from { width: 0%; }
    to   { width: 83%; }
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

@media (min-width: 480px) {
    .badge-text {
        color: #b91c1c;
    }
}

/* Privacy Text */
.privacy-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

.hero-content .privacy-text {
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content .privacy-text {
        text-align: left;
    }
}

/* Forms */
.waitlist-form {
    display: flex;
    flex-direction: column; /* stacked by default */
    gap: 0.8rem;
    max-width: 100%;
    width: 100%;
    position: relative;
}

@media (min-width: 480px) {
    .waitlist-form {
        flex-direction: column; /* keep stacked on larger screens */
        max-width: 640px;       /* wider form */
    }
}

.waitlist-form.centered {
    margin: 0 auto;
}

input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

input[type="email"]::placeholder {
    color: var(--text-muted);
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--text-main);
    background: #fff;
}

button {
    padding: 1rem 1.5rem;
    background: var(--text-main);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Audienceful embed should fill the form width */
#audienceful-Gc67Pv {
    width: 100%;
}

#audienceful-Gc67Pv form {
    width: 100%;
}

/* Hero Image & Blobs */
.hero-image-container {
    position: relative;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .hero-image-container {
        margin-top: -0.75;
    }
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.6;
    animation: pulse 8s infinite alternate;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-highlight);
    top: -20%;
    right: -20%;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: var(--accent-warm);
    bottom: -10%;
    left: -10%;
    animation-delay: -4s;
}

/* Detailed Features Section */
.detailed-features {
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .detailed-features {
        padding: 4rem 8%;
        gap: 6rem;
    }
}

.feature-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

@media (min-width: 768px) {
    .feature-detail {
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
    }

    .feature-detail.reverse {
        flex-direction: row-reverse;
        transform: translateX(30px);
    }
}

.feature-detail.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-text-content {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .feature-text-content {
        flex: 1;
        justify-content: center;
        min-height: 300px;
    }
}

.perry-character {
    width: 67.5px;
    height: auto;
    display: block;
    margin: 0 auto 1.5rem auto;
    border-radius: 22%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .perry-character {
        width: 84.375px;
        margin: 0 auto 4rem auto;
        align-self: center;
    }
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-detail-title {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -0.02em;
    overflow: visible;
}

.highlight-serif {
    font-family: var(--font-serif);
    font-weight: 300;
    font-style: italic;
    display: block;
    padding-left: 0.05em;
    padding-right: 0.05em;

    background: linear-gradient(240deg,
            var(--text-main) 0%,
            var(--text-main) 40%,
            #a8d0e6 50%,
            var(--text-main) 60%,
            var(--text-main) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: ripple 4s linear infinite reverse;
}

@media (min-width: 768px) {
    .feature-detail-title {
        font-size: 3rem;
    }

    .highlight-serif {
        display: inline;
    }
}

.feature-detail-body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .feature-detail-body {
        font-size: 1.1rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 2rem 5%;
    text-align: center;
    background: var(--bg-color);
    margin: 20px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

@media (min-width: 768px) {
    .cta-section {
        margin: 40px;
        padding: 3rem 8%;
    }
}

.cta-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-logo {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }
}

.cta-logo-image {
    height: 45px;
    width: 45px;
    border-radius: 22%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cta-logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-title {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-title .serif-italic {
    font-family: var(--font-serif);
    font-weight: 300;
    font-style: italic;
    padding-left: 0.05em;
    padding-right: 0.05em;

    background: linear-gradient(240deg,
            var(--text-main) 0%,
            var(--text-main) 40%,
            #a8d0e6 50%,
            var(--text-main) 60%,
            var(--text-main) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: ripple 4s linear infinite reverse;
}

.cta-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-text {
        font-size: 1.1rem;
    }
}

/* Footer */
footer {
    padding: 2rem 5%;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Animations */
@keyframes float {
    0%   { transform: translateY(0px) rotate(-2deg); }
    50%  { transform: translateY(-15px) rotate(-2deg); }
    100% { transform: translateY(0px) rotate(-2deg); }
}

@keyframes pulse {
    0%   { transform: scale(1);   opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Dollar Bill Animation */
.dollar-bill-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.dollar-bill {
    position: absolute;
    width: 80px;
    height: 35px;
    background: linear-gradient(135deg, #85BB65 0%, #7FAA5E 100%);
    border: 2px solid #6A9A4E;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: serif;
    font-size: 28px;
    font-weight: bold;
    color: #2F5233;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.dollar-bill::before {
    content: '$';
}

.dollar-bill::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    border: 1px solid rgba(47, 82, 51, 0.3);
    border-radius: 2px;
}

@keyframes fall-1 {
    0%   { transform: translateY(-100px) translateX(0)   rotateZ(0deg)   rotateY(0deg);   opacity: 1; }
    100% { transform: translateY(120vh)  translateX(30px) rotateZ(360deg) rotateY(180deg); opacity: 0; }
}

@keyframes fall-2 {
    0%   { transform: translateY(-100px) translateX(0)    rotateZ(0deg)    rotateY(0deg);   opacity: 1; }
    100% { transform: translateY(120vh)  translateX(-40px) rotateZ(-400deg) rotateY(200deg); opacity: 0; }
}

@keyframes fall-3 {
    0%   { transform: translateY(-100px) translateX(0)   rotateZ(0deg)   rotateY(0deg);   opacity: 1; }
    100% { transform: translateY(120vh)  translateX(20px) rotateZ(320deg) rotateY(160deg); opacity: 0; }
}

@keyframes fall-4 {
    0%   { transform: translateY(-100px) translateX(0)    rotateZ(0deg)    rotateY(0deg);   opacity: 1; }
    100% { transform: translateY(120vh)  translateX(-30px) rotateZ(-380deg) rotateY(220deg); opacity: 0; }
}

@keyframes fall-5 {
    0%   { transform: translateY(-100px) translateX(0)   rotateZ(0deg)   rotateY(0deg);   opacity: 1; }
    100% { transform: translateY(120vh)  translateX(10px) rotateZ(340deg) rotateY(140deg); opacity: 0; }
}

/* Feature Blobs */
.blob-feature-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 228, 239, 0.4); /* accent-highlight with opacity */
    top: 10%;
    left: -10%;
    animation-delay: -2s;
}

.blob-feature-2 {
    width: 350px;
    height: 350px;
    background: rgba(232, 220, 216, 0.4); /* accent-warm with opacity */
    bottom: 20%;
    right: -5%;
    animation-delay: -5s;
}

.blob-feature-3 {
    width: 300px;
    height: 300px;
    background: rgba(240, 242, 245, 0.6); /* accent-soft */
    top: 50%;
    left: 40%;
    animation-delay: 0s;
}
