:root {
    --bg-color: #808080;
    --text-color: #ffffff;
    --accent-primary: #ffffff;
    --accent-secondary: #e0e0e0;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-main: 'Space Grotesk', sans-serif;
}

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

body {
    background-color: #d8d8d8;
    /* Fallback for computed style check */
    background: radial-gradient(circle at 50% 50%, #d8d8d8 0%, #a0a0a0 100%);
    /* Lighter, prettier grey */
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation - Modern Floating Pill */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    /* Adjusted padding for pill shape */
    position: fixed;
    width: 90%;
    /* Floating width */
    max-width: 1200px;
    top: 20px;
    /* Detached from top */
    left: 50%;
    transform: translateX(-50%);
    /* Centered */
    z-index: 100;
    /* Smooth hide/show transition */

    /* Enhanced Glassmorphism */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    /* Slightly smaller to fit pill */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.nav-links a:first-child {
    margin-left: auto;
}

.nav-links .cta-button {
    margin-left: auto;
}

.nav-links a:not(.cta-button) {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    border-radius: 20px;
}

.nav-links a:not(.cta-button):hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Dark Mode Navbar (for light backgrounds) */
.navbar.nav-dark-mode .nav-links a:not(.cta-button) {
    color: #1a1a1a;
    /* Dark text */
    text-shadow: none;
}

.navbar.nav-dark-mode .nav-links a:not(.cta-button):hover {
    background: rgba(0, 0, 0, 0.05);
    /* Darker hover background */
    text-shadow: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 101;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-color);
}

/* Intermediate Nav Styles (Tablet/Shrinking Desktop) */
@media (max-width: 1024px) {
    .nav-links {
        gap: 0;
        justify-content: space-between;
    }

    .nav-links a:first-child,
    .nav-links .cta-button {
        margin-left: 0;
    }

    /* Add a pseudo-element to create an even gap on the left */
    .nav-links::before {
        content: '';
        display: block;
    }
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
    .nav-links::before {
        display: none;
    }

    .navbar {
        width: 100%;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 1rem 1.5rem;
        max-width: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: 100%;
        /* Move off-screen to the right */
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: #000;
        /* Solid black background */
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.2s ease-out;
        /* Snappier transition */
        justify-content: center;
        /* Center vertically */
        padding-top: 0;
        /* Reset padding */
        transform: none !important;
        /* Override inline style */
        z-index: 100;
        /* Below hamburger (101) */
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        margin: 16px 0;
    }

    .nav-links a:not(.cta-button) {
        font-size: 2rem;
        /* Larger font */
        color: white !important;
        /* Always white in mobile menu */
    }

    .nav-links a:first-child,
    .nav-links .cta-button {
        margin-left: 0;
    }

    .navbar.nav-dark-mode .hamburger .bar {
        background-color: #1a1a1a;
    }

    /* When menu is open, bars should be white (against dark menu bg) */
    .navbar .hamburger.active .bar {
        background-color: white !important;
    }
}


.cta-button {
    position: relative;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    /* Default gradient */
    /* Trying to match the image: Blue/Purple/Cyan mix */
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    background: linear-gradient(135deg, #2E3192 0%, #1BFFFF 100%);
    /* Brighter cyan/blue */
    background: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%);
    /* Greenish cyan */

    /* Beautiful blurred gradient that moves and transforms */
    background: linear-gradient(120deg, #00c6ff, #0072ff, #4facfe, #00f2fe, #30cfd0, #330867);
    background-size: 300% 300%;
    animation: gradient-move 8s ease infinite;
    color: white !important;
    border: none;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 198, 255, 0.4);
    /* Softer glow matching blue tones */
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Pseudo-element for that inner border look/glow */
.cta-button::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 50px;
    background: transparent;
    /* Or a slightly lighter gradient for border effect? */
    /* The image has a solid look, just a nice gradient. */
    z-index: -1;
}

/* Hover Effect */
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
    filter: brightness(1.1);
}

.arrow {
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translate(2px, -2px);
}

/* Mobile button improvements */
@media (max-width: 768px) {
    .cta-button {
        padding: 0.6rem 1.8rem;
        font-size: 0.9rem;
        line-height: 1.2;
        min-height: auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .secondary-btn.dark-btn {
        padding: 0.6rem 1.8rem;
        font-size: 0.9rem;
        line-height: 1.2;
        min-height: auto;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    padding-top: 100px;
    /* Increased padding for floating header */
    position: relative;
}

.hero-content {
    flex: 1;
    width: 100%;
    z-index: 2;
}

h1 {
    font-size: 4rem;
    /* Intermediate size */
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: -1px;
    color: #000;
}

h1 .light-text {
    font-weight: 300;
    /* Lighter weight for second part */
    color: #fff;
    /* White color for second part */
    display: block;
    /* Force new line */
}

.subtitle {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 3rem;
    max-width: 600px;
    /* Increased from 550px */
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
    }

    .hero-content {
        margin-left: 0;
        padding-right: 0;
        min-width: auto;
        margin-bottom: 3rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        margin: 0 auto 2rem;
    }

    .featured-logos {
        justify-content: center;
    }
}

/* Featured In Section */
.featured-in {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.featured-label {
    font-size: 0.9rem;
    color: #ddd;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.featured-logos span {
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: serif;
    text-transform: uppercase;
}

.featured-logos span:nth-child(2) {
    font-family: sans-serif;
    letter-spacing: -1px;
}

.featured-logos span:nth-child(3) {
    font-family: monospace;
}

/* Hero Visual - The Hologram */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

video {
    width: 100%;
    height: auto;
    mix-blend-mode: screen;
    opacity: 0.9;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(60px);
    z-index: -1;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Info Section */
.info-section {
    min-height: 100vh;
    /* Full viewport height */
    padding: 0 5%;
    /* Remove top/bottom padding, use flex centering */
    /* Aesthetic Spotlight Gradient - MORE PRONOUNCED */
    background: radial-gradient(circle at 25% 50%,
            /* Tighter spotlight on devices */
            rgba(255, 255, 255, 0.25) 0%,
            /* Brighter center */
            rgba(200, 200, 255, 0.15) 20%,
            /* Hint of blue tint */
            rgba(40, 45, 55, 0.8) 50%,
            /* Rapid falloff to dark */
            rgba(10, 12, 16, 0.95) 100%
            /* Very dark edges */
        ),
        linear-gradient(135deg, #1a1f26 0%, #0d1014 100%);
    /* Darker base for contrast */

    display: flex;
    align-items: center;
    /* Vertically center */
    justify-content: center;
    /* Horizontally center content wrapper */
    position: relative;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
    /* Heavy vignette */
}

.info-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    gap: 4rem;
}

.info-visual {
    padding-right: 1rem;
    flex: 1.2;
}

.info-container {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

/* Laptop Container */
.laptop-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    /* Increased from 450px */
    margin: 0 auto 0 0;
    /* Align left (margin-right: auto removed) */
    top: 15px;
    /* Move entire container down 15px total (10 + 5) */
    line-height: 0;
    /* Eliminate any vertical spacing gaps */
    user-select: none;
    /* Prevent highlighting/selection of the laptop structure */
}

.laptop-frame {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;
    /* Prevent dragging the image */
}

.laptop-screen {
    position: absolute;
    /* Elimination of top gap */
    top: 2.2%;
    left: 10.6%;
    width: 78.8%;
    height: 94%;
    z-index: 1;
    background: #000;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.laptop-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures video fills screen */
    transform: scale(1.01);
    /* Slight zoom to prevent any sub-pixel gaps */
}

@media (max-width: 1024px) {
    .info-content-wrapper {
        flex-direction: column-reverse;
        gap: 3rem;
        text-align: center;
    }

    .info-container {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }

    .laptop-container {
        margin: 0 auto 2rem 0;
    }
}

/* iPhone Container */
.iphone-container {
    position: absolute;
    bottom: 45%;
    /* Nudged up from 40% */
    right: -1%;
    width: 22%;
    /* Slightly smaller relative to laptop */
    aspect-ratio: 9 / 19.5;
    /* iPhone aspect ratio */
    z-index: 3;
    pointer-events: none;
}

.iphone-frame {
    width: 100%;
    display: block;
    position: relative;
    z-index: 4;
}

.iphone-screen {
    position: absolute;
    top: calc(4% - 1px);
    /* Shift up by 1 pixel */
    left: 14.5%;
    width: calc(70.9% - 2px);
    /* Cut 2 more pixels off right */
    height: calc(65% - 5px);
    /* Subtract exactly 5px from the current height */
    z-index: 3;
    background: #000;
    border-radius: 12%;
    /* Restore full rounded corners so bottom is smoothed */
    overflow: hidden;
}

.iphone-screen video {
    width: 100%;
    height: 125%;
    /* Keep video taller to maintain aspect ratio while container cuts it */
    object-fit: cover;
    object-position: 49% top;
    /* Final tweak */
}

/* iPad/Tablet Container */
.ipad-container {
    position: absolute;
    bottom: calc(15% - 10px);
    /* Moved down 10px */
    right: -12%;
    /* Shifted right to center visually with larger size */
    width: 44%;
    /* 2x bigger (22% * 2) */
    aspect-ratio: 4/3;
    z-index: 4;
    pointer-events: none;
    background: #000;
    border-radius: 0.8rem;
    border: 4px solid #1a1a1a;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    overflow: hidden;
}

.ipad-screen {
    width: 100%;
    height: 100%;
    background: #000;
}

.ipad-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.info-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #eee;
}

.info-section a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.info-section a:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    color: #fff;
}

/* Animatron Section */
.animatron-section {
    min-height: 100vh;
    /* Full viewport height */
    padding: 0 5% 2rem;
    /* Reduced bottom padding */
    background: #ffffff;
    /* Pure white background for high contrast with black particles */
    display: flex;
    /* Revert to flex to handle layout */
    flex-direction: column;
    /* Vertical stack */
    align-items: center;
    /* Vertically center content */
    justify-content: center;
    color: #333;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

#warp-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind content */
    opacity: 0.6;
    /* Subtle effect */
}

.animatron-section .info-container {
    position: relative;
    z-index: 1;
    /* Ensure text is above canvas */
    max-width: 900px;
    text-align: center;
    /* Force center alignment */
    margin: 0 auto;
    /* Center the container itself just in case */
    padding-top: 12rem;
    /* Increased padding to move elements even lower */
}

.animatron-section h2 {
    font-size: 3rem;
    color: #1a1a1a;
    /* Dark heading */
    background: none;
    -webkit-text-fill-color: initial;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Make responsive */
@media (max-width: 768px) {
    .animatron-section {
        flex-direction: column;
        padding: 4rem 5%;
    }

    .animatron-content {
        flex-direction: column;
        gap: 2rem;
    }

    .animatron-text {
        text-align: center;
    }

    .animatron-visual {
        width: 100%;
        height: 300px;
    }
}

.silver-gradient-text {
    background: linear-gradient(90deg, #888888 0%, #ffffff 25%, #888888 50%, #ffffff 75%, #888888 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 8s linear infinite;
    display: inline-block;
}

/* New Animatron Buttons */
.animatron-cta-group {
    display: flex;
    justify-content: center;
    /* Center buttons relative to the text block */
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Responsive Adjustment for Animatron Buttons */
@media (max-width: 768px) {
    .animatron-cta-group {
        justify-content: center;
        align-items: center;
        /* Center on mobile */
        flex-direction: column;
        gap: 1rem;
    }
    
    .animatron-cta-group .cta-button,
    .animatron-cta-group .secondary-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        line-height: 1.3;
        min-height: auto;
        text-align: center;
        white-space: nowrap;
        max-width: 280px;
        width: auto;
        margin: 0 auto;
        display: block;
    }
}

.animatron-cta-group .cta-button {
    padding: 0.8rem 2.5rem;
}

.secondary-btn.dark-btn {
    background: transparent;
    color: #333;
    border: 1px solid #ccc;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.secondary-btn.dark-btn:hover {
    border-color: #333;
    background: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

@keyframes shine {
    to {
        background-position: -200% center;
        /* Move background to the left to create left-to-right shine effect */
    }
}

.animatron-section .highlight-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    /* Dark highlight */
    margin-bottom: 1rem;
    max-width: 1200px;
    /* Ensure enough width for single line */
    width: 100%;
}

.animatron-section p {
    font-size: 1.2rem;
    color: #555;
    /* Dark grey text */
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}

/* Solutions Section */
.solutions-section {
    min-height: 100vh;
    background: #f5f5f5;
    /* Very light grey */
    padding: 5rem 5%;
    /* Add layout properties as needed */
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5rem 5% 2rem;
    /* Reduced bottom padding */
    background: white;
    /* Clean white background */
}

.feature-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card {
    background: #fff;
    border: none;
    padding: 0;
    /* Remove padding to let image flush */
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Stack from top */
    cursor: pointer;
    overflow: hidden;
    /* Clip image corners */
    height: 100%;
    /* Fill link height */
}

.feature-card img {
    width: 100%;
    height: 200px;
    /* Fixed height for images */
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.feature-card .card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #1a1a1a;
    /* Dark text */
    line-height: 1.3;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    /* Grey description */
    font-size: 1rem;
}

/* Responsible AI Section */
.responsible-ai {
    background-color: #ffffff;
    /* Match blog post section (white) */
    padding: 4rem 5% 8rem;
    /* Reduced top padding */
    color: #1a1a1a;
}

.responsible-container {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #e0e0e0;
    /* Lighter border to match clean theme */
    padding-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.responsible-header h2 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -1px;
    font-family: var(--font-main);
    /* Consistent font */
}

.responsible-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    font-family: var(--font-main);
    /* Consistent font */
}

@media (max-width: 768px) {
    .responsible-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .responsible-header h2 {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    padding: 5rem 5% 2rem;
    border-top: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    /* Added 5th column for Connect */
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        text-align: center;
    }
}

.footer-column.logo-col .logo {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #888888 0%, #ffffff 25%, #888888 50%, #ffffff 75%, #888888 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: shine 4s linear infinite;
    /* Shining silver animation */
}

.footer-column.logo-col p {
    color: #888;
    line-height: 1.6;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: left;
    /* Align to left */
    color: #555;
    font-size: 0.9rem;
    max-width: 1400px;
    /* Match grid width */
    margin: 0 auto;
    /* Center the container */
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Blog Page Specific Styles */
.blog-body {
    background: #f9f9f9 !important;
}

.blog-page {
    padding-top: 120px;
    /* Account for fixed header */
    min-height: 100vh;
}

.blog-header {
    text-align: center;
    padding: 4rem 5%;
    margin-bottom: 2rem;
}

.blog-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-shadow: none;
    /* Reset shadow */
}

.blog-header p {
    font-size: 1.2rem;
    color: #666;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 0 5% 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-date {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more {
    margin-top: auto;
    /* Push to bottom */
    color: #0072ff;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
    text-decoration: underline;
}

/* About Page Styles */
.about-body {
    background: #fff !important;
}

.about-page {
    padding-top: 120px;
    min-height: 100vh;
}

/* Legal Page Styles */
.legal-body {
    background: #ffffff !important;
}

.legal-page {
    padding-top: 120px;
    min-height: 100vh;
    color: #333;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5% 8rem;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.last-updated {
    color: #666;
    margin-bottom: 4rem;
    font-style: italic;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #0072ff;
    text-decoration: none;
    font-weight: 600;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* HoloGlass Page Styles */
.hologlass-page {
    padding-top: 100px;
    min-height: 100vh;
    background: #000000;
    color: #fff;
    font-family: var(--font-main);
    overflow-x: hidden;
}

.hologlass-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: radial-gradient(circle at 70% 40%, rgba(76, 29, 149, 0.15) 0%, rgba(0, 0, 0, 0) 60%),
        radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.1) 0%, rgba(0, 0, 0, 0) 50%),
        #000000;
    position: relative;
    overflow: hidden;
}

.hologlass-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
    opacity: 0.3;
    pointer-events: none;
}

.hologlass-content {
    flex: 1;
    max-width: 700px;
    z-index: 10;
    position: relative;
}

.hologlass-content .eyebrow {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #38bdf8;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: inline-block;
    background: rgba(56, 189, 248, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.hologlass-content h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(165, 180, 252, 0.3);
}

.hologlass-content .subtitle {
    color: #94a3b8;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 100%;
}

.cta-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hologlass-content .secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hologlass-content .secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hologlass-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 600px;
}

/* Creating the stunning HoloGlass CSS Art */
.glass-frame {
    width: 400px;
    height: 500px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    position: relative;
    backdrop-filter: blur(5px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(255, 255, 255, 0.02);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
    animation: float-glass 6s ease-in-out infinite;
}

.glass-frame:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.glass-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    filter: blur(20px);
    animation: pulse-core 4s ease-in-out infinite;
}

.halo {
    position: absolute;
    bottom: -10%;
    left: 10%;
    right: 10%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.4) 0%, transparent 70%);
    filter: blur(15px);
    border-radius: 50%;
    animation: pulse-shadow 4s ease-in-out infinite;
}

@keyframes float-glass {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(-12deg) rotateX(3deg) translateY(-20px);
    }
}

@keyframes pulse-core {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes pulse-shadow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Specs Section */
.hologlass-specs {
    padding: 8rem 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: linear-gradient(180deg, #000000 0%, #0f172a 100%);
    position: relative;
    z-index: 2;
}

.spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.spec-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.spec-card:hover::before {
    opacity: 1;
}

.spec-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.spec-card p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Details Section */
.hologlass-details {
    padding: 8rem 5%;
    background: #0f172a;
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.dark-panel {
    /* Just a utility class for the bg above */
}

.detail-text {
    flex: 1;
    z-index: 2;
}

.detail-text h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #fff;
}

.detail-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.link-arrow {
    color: #38bdf8;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 1rem;
    text-decoration: none;
    color: #7dd3fc;
}

.detail-visual {
    flex: 1;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.beam {
    width: 4px;
    height: 0;
    background: #38bdf8;
    box-shadow: 0 0 20px #38bdf8, 0 0 40px #38bdf8;
    animation: scan-beam 4s ease-in-out infinite;
    position: absolute;
}

@keyframes scan-beam {
    0% {
        height: 0;
        opacity: 0;
        top: 20%;
    }

    50% {
        height: 60%;
        opacity: 1;
        top: 20%;
    }

    100% {
        height: 0;
        opacity: 0;
        top: 80%;
    }
}

@media (max-width: 768px) {
    .hologlass-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hologlass-content h1 {
        font-size: 3.5rem;
    }

    .hologlass-specs {
        grid-template-columns: 1fr;
    }

    .hologlass-details {
        flex-direction: column;
        text-align: center;
        padding: 4rem 5%;
    }

    .glass-frame {
        width: 300px;
        height: 400px;
        margin-top: 3rem;
    }
}

/* Contact Page Styles */
/* Contact Page Styles */
.contact-body {
    background: #ffffff !important;
    /* Override global body bg */
}

.contact-page {
    padding-top: 120px;
    min-height: 100vh;
}

.about-hero {
    text-align: center;
    padding: 6rem 5% 4rem;
    background: radial-gradient(circle at 50% 50%, #f5f5f5 0%, #ffffff 100%);
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-shadow: none;
    text-transform: none;
    /* Match contact page normal casing */
    line-height: 1.1;
}

.about-hero .subtitle {
    color: #666;
    max-width: 1000px;
    margin: 0 auto;
    text-shadow: none;
    font-size: 1.3rem;
}

.mission-section {
    padding: 6rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.mission-content .lead-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.mission-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Mission Visual - Pure CSS Globe */
.mission-visual {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-container {
    position: relative;
    width: 370px;
    height: 370px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats-section {
    padding: 4rem 5%;
    background: #1a1a1a;
    /* Dark contrast band */
    color: white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #888888 0%, #ffffff 25%, #888888 50%, #ffffff 75%, #888888 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

.stat-card p {
    color: #aaa;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.team-member .role {
    color: #0072ff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-member .bio {
    color: #666;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .mission-section {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }
}

.contact-hero {
    text-align: center;
    padding: 4rem 5% 2rem;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-shadow: none;
    text-transform: none;
    /* Allow normal casing */
}

.contact-hero .subtitle {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5% 6rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fcfcfc;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #aaa;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.submit-btn {
    width: 100%;
    justify-content: center;
    cursor: pointer;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.info-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.info-card a {
    color: #0072ff;
    text-decoration: none;
    font-weight: 600;
}

.info-card a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-container {
        padding: 2rem;
    }
}

.ceo-quote-section {
    padding: 8rem 5%;
    background: #f9f9f9;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-container {
    max-width: 1000px;
    margin: 0 auto;
}

.quote-container blockquote {
    font-size: 2.5rem;
    line-height: 1.4;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-family: var(--font-main);
    position: relative;
}

.quote-container blockquote::before {
    content: '“';
    font-size: 8rem;
    color: #e0e0e0;
    position: absolute;
    top: -60px;
    left: -40px;
    z-index: -1;
    font-family: serif;
}

.quote-container cite {
    display: flex;
    flex-direction: column;
    font-style: normal;
    gap: 0.5rem;
}

.quote-container cite strong {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
}

.quote-container cite span {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .quote-container blockquote {
        font-size: 1.8rem;
    }
}