/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500&family=Cinzel:wght@400;500;600;700&display=swap');

:root {
    /* Blue-Silver Palette */
    --bg-gradient: radial-gradient(circle at 50% 30%, #d3dce3 0%, #cfd9e0 50%, #aab7c4 100%);
    --text-primary: #1c2530;
    --text-secondary: #405060;
    --accent-blue: #7090b0;
    --accent-shine: rgba(255, 255, 255, 0.8);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: #b8c4d0;
    position: relative;
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-gradient);
}

h1,
h2,
h3 {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    color: #1a2a3a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

p {
    font-weight: 300;
    color: var(--text-secondary);
    font-size: 1.25rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: 1400px;
    /* User requested match to About section */
    margin: 0 auto;
    padding: 0 3rem;
    /* User requested match to About section */
}

.section {
    padding: 4rem 0;
    /* Reduced from 8rem to close gaps */
    position: relative;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}

.header.scrolled {
    background: rgba(240, 245, 250, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #34495e;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    /* Changed to accommodate top text + bottom cards */
    justify-content: center;
    text-align: center;
    padding-top: 140px;
    padding-bottom: 60px;
    /* Reduced from 100px */
    position: relative;
    flex-direction: column;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #5d758a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.5));
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #607d8b;
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.2s;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    color: #455a64;
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.4s;
}

/* Hero Action */
.hero-actions {
    margin-bottom: 6rem;
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.6s;
}

/* Premium Feature Cards */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
    /* Force single row on larger screens */
    opacity: 0;
    animation: fadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.8s;
    margin-top: 2rem;
    width: 100%;
    max-width: 1200px;
}

.feature-card-plate {
    /* Glass / Shine Effect */
    background: linear-gradient(135deg, rgba(230, 235, 245, 0.6) 0%, rgba(255, 255, 255, 0.4) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        10px 20px 40px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);

    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    width: 280px;
    /* Reduced width */
    min-height: 340px;
    /* Reduced height */

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Shine overlay */
.feature-card-plate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    /* Silver Shine (Backup) */
    /* background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%); */

    /* Golden Shine (New) */
    background: linear-gradient(to right, rgba(255, 215, 0, 0) 0%, rgba(255, 223, 0, 0.6) 50%, rgba(255, 215, 0, 0) 100%);

    transform: skewX(-25deg);
    transition: all 1.5s;
    pointer-events: none;
}

.feature-card-plate:hover::before {
    left: 200%;
}

.feature-card-plate:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(240, 245, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    box-shadow:
        0 25px 50px rgba(0, 60, 100, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8),
        /* Add subtle golden glow to border on hover */
        0 0 15px rgba(255, 215, 0, 0.2);
}

/* Layout for content inside card */
.plate-header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.plate-body {
    width: 100%;
}

/* 3D Image Icons */
/* 3D Image Icons */
.icon-img-container {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    /* Essential for 3D rotation */
    position: relative;
}

.pedestal {
    position: absolute;
    width: 85%;
    height: 75%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(220, 235, 255, 0.3));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    bottom: 0;
    transform: rotateX(25deg) translateZ(0);
    box-shadow:
        0 15px 35px rgba(112, 144, 176, 0.2),
        inset 0 0 15px rgba(255, 255, 255, 0.8);
    z-index: 1;
    /* Above card background */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card-plate:hover .pedestal {
    transform: rotateX(20deg) translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
    box-shadow: 0 20px 45px rgba(112, 144, 176, 0.3), 0 0 20px rgba(255, 255, 255, 0.5);
}

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(112, 144, 176, 0.4));
    /* Default complex animation */
    animation: float-rotate-vertical 8s ease-in-out infinite;
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
    /* Ensure icon is above pedestal */
}

/* Specific delays and variations for natural feel */
.hero-features a:nth-child(1) .icon-img {
    animation-delay: 0s;
    animation-duration: 7s;
}

.hero-features a:nth-child(2) .icon-img {
    animation-delay: 1s;
    animation-direction: reverse;
    /* Alternate spin direction */
    animation-duration: 8s;
}

.hero-features a:nth-child(3) .icon-img {
    animation-delay: 2s;
    animation-duration: 9s;
}

/* Vertical Axis Rotation (Spinning Top motion) + Float */
@keyframes float-rotate-vertical {
    0% {
        transform: translateY(0) rotateY(-15deg);
    }

    25% {
        transform: translateY(-12px) rotateY(0deg);
    }

    50% {
        transform: translateY(-5px) rotateY(15deg);
    }

    75% {
        transform: translateY(-12px) rotateY(0deg);
    }

    100% {
        transform: translateY(0) rotateY(-15deg);
    }
}

/* Typography inside cards */
.plate-body h3 {
    font-size: 1.4rem;
    /* Adjusted for smaller card */
    color: #2c3e50;
    margin-bottom: 0.3rem;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.plate-body p {
    font-size: 0.9rem;
    color: #607d8b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
}

/* Mobile responsive for grid */
@media (max-width: 900px) {
    .hero-features {
        flex-wrap: wrap;
        /* Allow wrap on mobile */
    }

    .feature-card-plate {
        width: 100%;
        max-width: 350px;
    }
}


/* Button */
.btn {
    display: inline-block;
    padding: 1rem 3.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, #f0f4f8 0%, #dbe4ea 50%, #c4d0d9 51%, #dfe6ed 100%);
    color: #2c3e50;
    border: 1px solid #b0c4de;
    box-shadow: 0 6px 12px rgba(44, 62, 80, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 62, 80, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(to bottom, #ffffff 0%, #e6eff5 50%, #dbe4ea 51%, #f0f4f8 100%);
}

/* New About Section Layout */
/* User requested wider area for this section */
/* New About Section Layout */
/* User requested wider area for this section */
/* .about .container removed - now global */

.about-grid {
    display: grid;
    /* Increased text column ratio to reduce vertical height */
    grid-template-columns: 1.6fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.25rem;
    color: #405060;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text strong {
    color: #1a2a3a;
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: flex-end;
    /* Move image further to the right */
    position: relative;
    height: 400px;
    align-items: center;
    padding-right: 2rem;
}

/* Complex Geometry Visual (CSS Only) */
.geometry-complex {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(112, 144, 176, 0.1);
}

.geo-ring.outer {
    width: 100%;
    height: 100%;
    border-bottom: 1px solid rgba(112, 144, 176, 0.5);
    animation: rotate-ring 20s linear infinite;
}

.geo-ring.inner {
    width: 70%;
    height: 70%;
    border: 1px dashed rgba(112, 144, 176, 0.4);
    animation: rotate-ring 15s linear infinite reverse;
}

.geo-core {
    /* Maximized core size (User Request: 480px) - Large Visual */
    width: 480px;
    height: 480px;
    background: transparent;
    /* Removed background */
    border-radius: 50%;
    /* Removed backdrop-filter: blur(5px); */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed box-shadow: 0 0 40px rgba(255, 255, 255, 0.3); */
    animation: pulse-core 10s ease-in-out infinite;
    z-index: 2;
}

/* Center Image Style - User Request: Fill the ring */
.geo-center-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(112, 144, 176, 0.3));
    animation: pulse-img 10s ease-in-out infinite;
}

@keyframes pulse-img {

    /* Subtle pulse */
    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(112, 144, 176, 0.3));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(112, 144, 176, 0.6));
    }
}

.geo-orbit {
    position: absolute;
    width: 120%;
    height: 120%;
    animation: rotate-ring 30s linear infinite;
}

.orbit-dot {
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px #7090b0;
}

@keyframes rotate-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-core {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 5%, rgba(112, 144, 176, 0.4) 50%, transparent 95%);
    position: relative;
    margin: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: rotate(45deg);
    border: 1px solid rgba(112, 144, 176, 0.6);
    box-shadow:
        0 0 10px rgba(112, 144, 176, 0.6),
        0 0 20px rgba(255, 255, 255, 0.8);
    animation: pulse-core 4s ease-in-out infinite;
}


/* Shared Section Header Styles */
.section-header {
    text-align: center;
    max-width: 1200px;
    /* Increased to allow wider markers */
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    flex: 0 1 600px;
    /* Dramatically longer lines */
    height: 12px;
    /* Height to accommodate dot */
    background-repeat: no-repeat;
}

.section-header h2::before {
    background-image:
        radial-gradient(circle, #fff 5px, transparent 5.5px),
        linear-gradient(to left, rgba(255, 255, 255, 0.8), transparent);
    background-position: right center, right center;
    background-size: 12px 12px, 100% 4px;
}

.section-header h2::after {
    background-image:
        radial-gradient(circle, #fff 5px, transparent 5.5px),
        linear-gradient(to right, rgba(255, 255, 255, 0.8), transparent);
    background-position: left center, left center;
    background-size: 12px 12px, 100% 4px;
}

.section-header p {
    font-size: 1.25rem;
    /* Matches .about-text p */
    color: #405060;
    max-width: 900px;
    /* Keep text readable */
    margin: 0 auto;
}

/* Details Stack (Spirit/Unity/UI) */
.details-stack {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.detail-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.detail-row.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.detail-row.reverse .detail-content {
    order: 2;
}

.detail-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.detail-content p {
    font-size: 1.25rem;
}

.detail-visual {
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(230, 240, 250, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.8);
    position: relative;
    perspective: 1500px;
}

.detail-pedestal {
    width: 70%;
    height: 40%;
    bottom: 10%;
    transform: rotateX(30deg) translateZ(0);
    z-index: 1;
}

.suui-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(176, 196, 222, 0.4));
    animation: suui-float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes suui-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 15px rgba(176, 196, 222, 0.4));
    }

    50% {
        transform: translateY(-10px) scale(1.05);
        /* Float up and slightly grow */
        filter: drop-shadow(0 0 25px rgba(176, 196, 222, 0.7));
        /* Intensify glow */
    }
}

/* Image Break Section */
.image-break {
    width: 100%;
    height: 20vh;
    background: linear-gradient(135deg, #b0c4de 0%, #768fa5 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
}

.image-break-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.image-break h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-break-content p {
    font-size: 1.25rem;
}

/* Practice Section */
.practice-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(240, 245, 255, 0.3) 100%);
    backdrop-filter: blur(25px);
    padding: 5rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    margin-top: -5rem;
    position: relative;
    z-index: 5;
}

.practice-content p {
    font-size: 1.25rem;
    margin-bottom: 1.25rem
}

.practice-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
}

.conclusion {
    font-size: 1.35rem;
    color: #34495e;
    margin-top: 3rem;
    font-style: italic;
    border-left: 3px solid var(--accent-blue);
    padding-left: 2rem;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5));
    padding: 4rem 0;
    color: #78909c;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .about-visual {
        justify-content: center;
        padding-right: 0;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .detail-row,
    .detail-row.reverse {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Section */
.contact .section-header {
    margin-bottom: 2rem;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    border-radius: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    padding-left: 0.5rem;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1.2rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(112, 144, 176, 0.2);
}

.cf-turnstile {
    margin: 1rem 0;
}

.submit-btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.2rem;
}

.form-status {
    text-align: center;
    font-size: 1rem;
    min-height: 1.5rem;
    transition: opacity 0.3s ease;
}

.form-status.success {
    color: #2e7d32;
}

.form-status.error {
    color: #d32f2f;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 2.5rem 1.5rem;
    }
}

/* nebula-vail canvas */
#nebula-veil {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    /* Behind text, but above background texture */
    mix-blend-mode: screen;
    /* gives “glowy on grey” look */
    opacity: 0.85;
    /* High prominence as requested */
}

/* If your hero container should contain it */
.hero-or-wrapper {
    position: relative;
    overflow: hidden;
}

/* nebula-vail canvas */