/* ========================================
   Custom Properties (CSS Variables)
   ======================================== */
:root {
    --primary-blue: #3d5a80;
    --secondary-blue: #2b4560;
    --accent-blue: #5b7a9f;
    --dark-blue: #1a2a3a;
    --feature-olive: #8a947e;
    --text-white: #ffffff;
    --text-light-gray: #e8e8e8;
    --overlay-gradient: linear-gradient(135deg, rgba(29, 53, 87, 0.85) 0%, rgba(69, 123, 157, 0.75) 100%);
    --feature-card-bg: rgba(255, 255, 255, 0.08);
    --feature-card-backdrop: rgba(61, 90, 128, 0.3);
}

/* ========================================
   Global Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #E6E3DE;
    overflow-x: hidden;
    background: url('assets/images/bg/bg-svg.svg') no-repeat center center;
    background-size: cover;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

a {
    color: #E6E3DE;
    text-decoration: underline;
    font-size: inherit;
}

    a:hover {
        color: #E6E3DE;
    }

/* ========================================
   Logo & Typography
   ======================================== */
.logo-constrained {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #E6E3DE;
}

    .logo-text sup {
        font-size: 0.6em;
        top: -0.5em;
    }

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    padding: 0;
    min-height: 60vh;
}

.hero-content {
    padding: 0 1.5rem;
}

.coming-soon {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 325;
    line-height: 122%;
    letter-spacing: 7.2px;
    text-transform: uppercase;
    color: #E6E3DE;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-image-col {
    min-height: 60vh;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

    .hero-image-col img {
        width: 100%;
        max-width: 850px;
        height: auto;
        min-height: 60vh;
        object-fit: contain;
        object-position: top right;
    }

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #E6E3DE;
    text-shadow: 0 4px 6.6px rgba(0, 0, 0, 0.25);
    font-style: normal;
    line-height: 122%;
}

.hero-copy {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    color: #E6E3DE;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-description strong {
    font-weight: 600;
}

.cta-button {
    background-color: var(--accent-blue);
    padding: 0.75rem 2rem;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Features Section
   ======================================== */
.features-container {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.features-card {
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 44.474px;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: -9.119px 24.317px 35.26px 0 rgba(6, 20, 44, 0.50), 0 0 7.645px 0 rgba(255, 255, 255, 0.60) inset;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--feature-olive);
    transition: transform 0.3s ease;
}

.p-3:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: #E6E3DE;
}

.feature-title {
    font-size: 1rem;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.feature-description {
    color: #E6E3DE;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}



.data-footnote {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    opacity: 0.7;
    margin-bottom: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.safety-info-link {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ========================================
   Footer
   ======================================== */
.footer-section {
    background: linear-gradient(to right, #2E5B9D 0%, #2E3880 100%);
    color: #E6E3DE;
    border-top-right-radius: 80px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .footer-logo svg {
        color: #E6E3DE;
    }

.footer-brand-text {
    line-height: 1.3;
}

.footer-brand-name {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.footer-brand-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.footer-disclaimer {
    font-size: 0.875rem;
    margin: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 325;
    line-height: 137%; /* 19.18px */
}

.footer-legal {
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 325;
    line-height: 137%; /* 19.18px */
}

    .footer-legal p {
        margin-bottom: 0.25rem;
    }

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .footer-legal-links a {
        color: #E6E3DE;
        text-decoration: underline;
        font-size: 0.875rem;
    }

        .footer-legal-links a:hover {
            opacity: 0.7;
        }

.separator {
    margin: 0 0.25rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ========================================
   Responsive Design - Large Viewports
   ======================================== */
@media (min-width: 1400px) {
    .hero-image-col img {
        max-width: 700px;
    }
}

/* ========================================
   Responsive Design - Mobile Footer Centering
   ======================================== */
@media (max-width: 767px) {
    .features-container {
        margin-top: 2rem;
    }

    .footer-logo,
    .footer-legal {
        text-align: center;
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-disclaimer {
        text-align: center;
    }
}

/* ========================================
   Responsive Design - Tablet (768px - 991px)
   ======================================== */
@media (min-width: 768px) and (max-width: 991px) {
    /* Bleeding edge layout for tablet */
    .hero-section {
        position: relative;
        overflow-x: hidden;
        min-height: 60vh;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        padding-left: 2rem;
        padding-right: 2rem;
        min-height: 60vh;
    }

    .hero-image-bleeding {
        position: absolute;
        top: 0;
        right: 0;
        width: 50vw;
        z-index: 0;
    }

    .hero-image-bleeding img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .features-card {
        padding: 2.5rem;
    }
}

/* ========================================
   Responsive Design - Mobile Only (below 768px)
   ======================================== */
@media (max-width: 767px) {
    .hero-image-col,
    .hero-image-mobile {
        order: -1; /* Image first */
        position: relative;
        min-height: 50vh;
        z-index: 1; /* Behind text */
    }

        .hero-image-col img,
        .hero-image-mobile img {
            position: absolute;
            right: -1.5rem;
            top: 0;
            width: auto;
            max-width: 40vw;
            height: 100%;
            object-fit: contain;
            object-position: right top;
        }

    .hero-content {
        position: relative;
        margin-top: -40vh; /* Pull up to overlap image */
        z-index: 2; /* On top of image */
        min-height: 60vh;
    }
}

/* ========================================
   Responsive Design - Mobile Only
   ======================================== */
@media (max-width: 767px) {
    body {
        background: url('assets/images/bg/gradient-bg-svg.svg') no-repeat center center;
        background-size: cover;
    }

    .hero-section {
        padding: 1rem 0 0;
        overflow-x: hidden;
    }

    .coming-soon {
        font-size: 12px !important;
        margin-bottom: 0;
        color: #FFF;
        font-style: normal;
        font-weight: 325;
        line-height: 140%; /* 16.8px */
        letter-spacing: 3.6px;
        text-transform: uppercase;
    }

    .hero-title {
        font-size: 2.5rem !important;
        font-weight: 900;
        padding-top: 2rem;
        max-width: 80%;
        text-shadow: 0 4px 6.3px rgba(0, 0, 0, 0.25);
    }

    .hero-copy {
        color: #FFF;
    }

    .hero-description {
        font-size: 1rem;
    }

    .features-container {
        margin-top: 2rem;
        text-align: center;
    }

    .features-card {
        margin: 0 1.5rem;
    }

        .features-card .p-3 {
            text-align: center !important;
        }

        .features-card .text-start {
            text-align: center !important;
        }

        .features-card p {
            font-size: 18px;
        }

    .feature-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-title {
        font-size: 0.95rem;
    }

    .feature-description {
        font-size: 0.825rem;
    }

    .safety-info-link {
        padding: 1.5rem 1.5rem;
    }

    .footer-section {
        text-align: left;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        justify-content: flex-start;
    }

        .footer-logo img {
            max-width: 80%;
            height: auto;
        }

    .footer-disclaimer {
        text-align: left;
    }

    .footer-legal {
        text-align: left;
        justify-content: flex-start;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }
}

/* ========================================
   Responsive Design - Small Mobile
   ======================================== */
@media (max-width: 575px) {
    .logo-text {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .cta-button {
        padding: 0.625rem 1.5rem;
        font-size: 0.75rem;
    }
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid var(--text-white);
    outline-offset: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .features-card {
        border: 2px solid var(--text-white);
    }

    .feature-icon-wrapper {
        border: 2px solid var(--text-white);
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .hero-section {
        background: none;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-image-col {
        display: none;
    }

    .features-card {
        background: none;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .cta-button {
        display: none;
    }
}

.syno-btn {
    background: #45689E;
    color: #FFF;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 18.476px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 5.543px;
    text-transform: uppercase;
    padding: 18px 56px;
    border-radius: 73.905px;
    border: none;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    box-shadow: -4.49px 11.974px 17.362px 0 rgba(6, 20, 44, 0.50), 0 0 3.764px 0 rgba(255, 255, 255, 0.60) inset;
    width: 100%;
}

@media (min-width: 1200px) {
    .syno-btn {
        width: 50%;
    }
}

.syno-btn:hover,
.syno-btn:focus,
.syno-btn:active {
    background: #45689E;
    color: #fff;
    transform: none;
    box-shadow: -4.49px 11.974px 17.362px 0 rgba(6, 20, 44, 0.50), 0 0 3.764px 0 rgba(255, 255, 255, 0.60) inset;
}

/* Extra-wide container (1920px) */
.container-xxxl {
    --bs-gutter-x: 1.5rem; /* same gutters as Bootstrap */
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1920px; /* your desired width */
}

.logo-row {
    background: linear-gradient(90deg, #2D5493 0%, #A9744D 100%);
    padding: 24px 80px 23px 80px;
}

/* ========================================
   Bleeding Edge Layout (1400px version)
   ======================================== */
/* Desktop: Bleeding edge image extends from container edge to viewport edge */
@media (min-width: 992px) {
    /* Enable absolute positioning context */
    .hero-section {
        position: relative;
        overflow-x: hidden;
    }

    /* Image positioned absolutely, bleeding to right edge */
    .hero-image-bleeding {
        position: absolute;
        top: 0;
        right: 0;
        height: 60vh;
        /* Start where left column ends - always at viewport center when container is centered */
/*        left: 50vw;
*/        z-index: 0;
    }

    .hero-image-bleeding img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left center;
    }

    /* Ensure content stays above image */
    .hero-content {
        position: relative;
        z-index: 1;
        min-height: 60vh;
    }
}


/* Ultra-wide: Limit image width to prevent excessive stretching */
@media (min-width: 2400px) {
    .hero-image-bleeding {
        max-width: 1200px;
    }

    .hero-image-bleeding img {
        object-fit: contain;
    }
}
