/* --- Variables & Base Setup --- */
:root {
    --primary: #f2b90d;
    --primary-rgb: 242, 185, 13;
    --gold-muted: #cfb56e;
    --bg-dark: #0a1120;
    --bg-darker: #07121d;
    --surface-dark: #121520;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --cyan: #3d81a3;
    --cyan-rgb: 61, 129, 163;
    --cyan-hover: #5aa4d1;
    --cyan-light: #87ceeb;
    --cyan-light-rgb: 135, 206, 235;
    --cyan-light-hover: #b3e5fc;
    --cyan-light-hover-rgb: 179, 229, 252;

    --font-sans: 'Noto Sans', sans-serif;
    --font-display: 'Newsreader', serif;
    --navy: #0A192F;
    --gold: #CCA35F;
    --gold-hover: #D4AF6A;
    --white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.70);
    
    --bg-dark: #0a192f;
    --bg-card: #112240;
    --bg-card-hover: rgba(17, 34, 64, 0.8);
  
    --color-primary: #f2b90d;
    --color-primary-alpha: rgba(242, 185, 13, 0.2);
  
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --border-light: rgba(255, 255, 255, 0.05);
  
    /* Make sure these fonts are imported in your project */
    --font-display: 'Newsreader', serif;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif,'Noto Sans';
    --font-serif: 'Cinzel', serif;
    --font-mono: 'Space Mono', monospace;
    --font-sans: 'Manrope', sans-serif;
    /* Spacing */
    --container-px: 1.25rem;
    --max-width: 1140px;

    /* Effects */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION — Sticky + Backdrop Blur
   ═══════════════════════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

/* Scrolled state — applied via JS */
#navbar.scrolled {
    background: rgba(10, 25, 47, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.6rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--white);
    z-index: 1001;
    /* stays above overlay */
}

.nav-links li a {
    text-decoration: none;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.logo-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--white);
}

/* Nav Links — hidden on mobile by default */
.nav-links {
    display: none;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 4px;
    min-height: 44px;
    /* Touch target */
    display: inline-flex;
    align-items: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary-navy);
    /* Matches your Navbar */
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-top: 2px solid var(--accent-gold);
    /* A touch of luxury */
}

/* Links inside the dropdown */
.dropdown-content a {
    color: var(--text-light);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hover Effects */
.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
}

/* Show the dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Optional: Highlight the "New" badge */
.badge {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: bold;
}

/* Simple Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile-only CTA in overlay — hidden on desktop */
.mobile-cta-item {
    display: list-item;
    /* visible in overlay */
    margin-top: 1rem;
}

.mobile-overlay-cta {
    min-height: 48px;
    padding: 0.9rem 2.5rem !important;
    font-size: 1rem !important;
    border-radius: 50px;
}

/* Desktop CTA Button (in navbar bar) */
.nav-cta {
    display: none;
    padding: 0.55rem 1.5rem;
    border: 1.5px solid var(--text-light);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: all var(--transition);
    min-height: 44px;
    display: none;
    align-items: center;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* Hamburger — visible on mobile */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    /* Touch-target */
    height: 44px;
    /* Touch-target */
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* ─── Mobile Menu Overlay (Full Screen) ─── */
.nav-links.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--navy);
    gap: 0;
    z-index: 999;
    padding: 5rem 2rem 3rem;
}

.nav-links.active li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-links.active li:last-child {
    border-bottom: none;
}

.nav-links.active a {
    font-size: 1.5rem;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 400;
    padding: 1.25rem 0;
    min-height: 56px;
    display: flex;
    justify-content: center;
}

.nav-links.active a::after {
    display: none;
    /* remove underline in overlay */
}

/* Mobile overlay CTA special styling */
.nav-links.active .mobile-cta-item {
    border-bottom: none;
    margin-top: 1.5rem;
    padding-top: 0.5rem;
}

.nav-links.active .mobile-overlay-cta {
    font-family: var(--font-body);
    font-weight: 600;
}


/* --- Hero Layout --- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
    /* Account for fixed header space if needed */
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Backgrounds --- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bg-base {
    position: absolute;
    inset: 0;
    background-color: var(--bg-dark);
}

.bg-constellation {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(var(--primary) 1px, transparent 1px),
        radial-gradient(var(--primary) 1px, transparent 1px);
    background-position: 0 0, 25px 25px;
    background-size: 100px 100px;
    opacity: 0.15;
}

.bg-silk {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 0%, rgba(30, 41, 59, 0.4) 0%, rgba(10, 17, 32, 0) 70%);
}

/* --- Content & Typography --- */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding-top: 2.5rem;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
        padding-top: 0;
    }
}

.hero-text-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
}

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

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.text-highlight {
    font-style: normal;
    font-weight: 500;
    background: linear-gradient(to right, #f2b90d, #cfb56e, #f2b90d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

.hero-description {
    color: var(--text-gray);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.625;
    max-width: 36rem;
    margin: 0 auto;
    border-left: 2px solid rgba(var(--primary-rgb), 0.3);
    padding-left: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-description {
        margin: 0;
    }
}

/* --- Badge --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    background-color: rgba(var(--primary-rgb), 0.05);
    width: fit-content;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .badge {
        margin: 0;
    }
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--primary);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --- Buttons --- */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
    padding: 0 2rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

a.btn-primary {
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--text-white);
}

.btn-icon {
    margin-left: 0.5rem;
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    letter-spacing: 0.025em;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- Prism Visual (Right Column) --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

@media (min-width: 1024px) {
    .hero-visual {
        justify-content: flex-end;
    }
}

.prism-wrapper {
    position: relative;
    width: 16rem;
    height: 16rem;
    animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
    .prism-wrapper {
        width: 24rem;
        height: 24rem;
    }
}

.prism-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(var(--primary-rgb), 0.2), transparent);
    border-radius: 50%;
    filter: blur(24px);
}

.prism-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12rem;
    height: 12rem;
}

@media (min-width: 768px) {
    .prism-face {
        width: 18rem;
        height: 18rem;
    }
}

.face-1 {
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    transform: translate(-50%, -50%) rotate(45deg);
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.1);
    z-index: 20;
}

.face-2 {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) rotate(22.5deg);
    z-index: 10;
}

.face-3 {
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transform: translate(-50%, -50%) rotate(67.5deg);
    z-index: 10;
}

.prism-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16rem;
    height: 16rem;
    object-fit: contain;
    opacity: 0.8;
    mix-blend-mode: overlay;
}

/* --- Animations --- */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* ═══════════════════════════════════════════════════════════
   TABLET BREAKPOINT (≥768px)
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {

    /* ── Nav ── */
    #navbar {
        padding: 1rem 0;
    }

    .nav-links {
        display: flex;
    }

    .nav-cta {
        display: inline-flex;
    }

    .hamburger {
        display: none;
    }

    /* Hide the mobile-only CTA inside nav-links on desktop */
    .mobile-cta-item {
        display: none !important;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
    }

    .logo-text {
        font-size: 1.15rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   LARGE DESKTOP (≥1024px)
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
    .nav-links {
        gap: 3rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   DUAL SWITCHER SECTION
   ═══════════════════════════════════════════════════════════ */
.dual-switcher {
    position: relative;
    padding: 6rem 1rem;
    /* Equivalent to py-24 px-4 */
    background-color: var(--navy);
    font-family: var(--font-display);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.switcher-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .switcher-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .switcher-grid {
        gap: 3rem;
    }
}

/* --- Card Styles (Glassmorphism) --- */
.switcher-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 300px;
    padding: 2rem;
    border-radius: 1.5rem;
    overflow: hidden;

    /* Glass Panel Effect */
    background: rgba(18, 21, 32, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s ease;
}

@media (min-width: 1024px) {
    .switcher-card {
        padding: 3rem;
    }
}

.switcher-card:hover {
    border-color: rgba(var(--cyan-light-rgb), 0.5);
}

/* --- Backgrounds & Gradients --- */
.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.switcher-card:hover .card-bg {
    opacity: 0.4;
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark), transparent, transparent);
    z-index: 1;
}

/* --- Card Content --- */
.card-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
}

.card-content a {
    text-decoration: none;
    list-style: none;
}

.card-content a:hover {
    transform: translateX(8px);
    transition: all 0.3s ease;
    color: var(--text-gray);
}

.card-icon-wrapper {
    margin-bottom: auto;
    /* Pushes the icon to the top and text to the bottom */
}

.card-icon {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.card-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 0.5rem 0;
}

.card-subtitle {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--primary);
    margin: 0 0 1rem 0;
    letter-spacing: 0.1em;
}

.card-description {
    color: var(--text-gray);
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

/* --- Interactive Links --- */
.card-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
    width: fit-content;
}

.switcher-card:hover .card-link {
    color: var(--cyan);
}

.link-icon {
    font-size: 1rem;
    margin-left: 0.25rem;
}

/*--------------------------------------------------------------------------------
----------------------------------AVYR SHOWCASE----------------------------------
----------------------------------------------------------------------------------*/

/* --- Layout --- */
.avyr-showcase {
    display: flex;
    margin-top: auto;
    padding: 6rem 0;
    background-color: var(--surface-dark);
    overflow: hidden;
    font-family: var(--font-sans);
}

.bg-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(var(--primary-rgb), 0.05);
    filter: blur(100px);
    pointer-events: none;
}


.showcase-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .showcase-layout {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

    .showcase-content {
        width: 70%;
    }

    .showcase-visual {
        width: 30%;
    }
}

/* --- Content & Typography --- */
.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-line {
    height: 1px;
    width: 2.5rem;
    background-color: var(--primary);
}

.showcase-badge .badge-text {
    font-family: var(--font-body);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    padding: 0;
    border-radius: 0;
    margin-left: 0;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-white);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

@media (min-width: 1024px) {
    .showcase-title {
        font-size: 3.25rem;
    }
}

.showcase-title .text-gradient {
    background: linear-gradient(to right, var(--primary), #fef08a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
}

.showcase-description {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.625;
    margin: 0;
}

/* --- Features List --- */
.showcase-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: var(--primary);
    margin-top: 0.15rem;
}

.feature-text strong {
    display: block;
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.feature-text span {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* --- Visual Mockup (Right Side) --- */
.perspective-wrapper {
    position: relative;
    perspective: 500px;
    width: 50%;
}

.laptop-wrapper {
    position: relative;
    z-index: 10;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.laptop-screen {
    position: relative;
    margin: 0 auto;
    background-color: #1f2937;
    /* gray-800 */
    border-radius: 0.75rem 0.75rem 0 0;
    border: 1px solid #374151;
    /* gray-700 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    cursor: pointer;
    /* To indicate interactivity */
}

.screen-bg {
    position: absolute;
    inset: 0;
    background-color: var(--bg-dark);
    background-size: cover;
    background-position: center;
}

.screen-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(11, 13, 20, 0.3);
    /* background-dark/30 */
}

/* --- Glass Elements (Inside Screen) --- */
.glass-element {
    position: absolute;
    background: rgba(18, 21, 32, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-element-1 {
    top: 1rem;
    right: 2.5rem;
    width: 10rem;
    height: 6rem;
    padding: 1rem;
    transform: translate(1rem, 1rem);
}

.glass-element-2 {
    bottom: 2.5rem;
    left: 2.5rem;
    width: 7rem;
    height: 4rem;
    padding: 0.75rem;
    border-left: 2px solid var(--primary);
    transform: translate(-1rem, 1rem);
}

/* Hover effects triggered by the laptop screen container */
.laptop-screen:hover .glass-element-1,
.laptop-screen:hover .glass-element-2 {
    transform: translate(0, 0);
}

/* Mockup inner UI elements */
.mockup-bar {
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.mockup-bar-short {
    height: 0.5rem;
    width: 3rem;
    background-color: rgba(var(--primary-rgb), 0.5);
}

.mockup-bar-gradient {
    height: 4rem;
    width: 100%;
    background: linear-gradient(to right, rgba(var(--primary-rgb), 0.2), transparent);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;

}

.mockup-bar-tiny {
    height: 0.5rem;
    width: 2rem;
    background-color: var(--text-gray-dark);
}

.mockup-metric {
    font-size: 0.625rem;
    color: #4ade80;
    /* green-400 */
    font-family: var(--font-mono);
}

.mockup-value {
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 700;
}

/* --- Laptop Base & Glow --- */
.laptop-base {
    margin: 0 auto;
    height: 1rem;
    width: 100%;
    max-width: 640px;
    background-color: #374151;
    /* gray-700 */
    border-radius: 0 0 0.75rem 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    border-top: 1px solid #4b5563;
    /* gray-600 */
}

.laptop-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-color: rgba(30, 58, 138, 0.2);
    /* blue-900/20 */
    filter: blur(64px);
    z-index: -10;
    border-radius: 50%;
}

/* --- Animations --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*==============================================================================================
DATA LAB SECTION
==============================================================================================*/
/* --- Section Layout --- */
.data-lab-section {
  background-color: var(--bg-dark);
  padding: 6rem 1.5rem; /* Equivalent to py-24 px-6 */
  font-family: var(--font-body);
}

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

/* --- Header Styles --- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--text-white);
  margin: 0;
}

.highlight-text {
  font-style: italic;
  color: var(--color-primary);
}

.section-subtitle {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* --- Responsive Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 column on mobile */
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  }
  
  .section-title {
    font-size: 3rem;
  }
}

/* --- Card Styles --- */
.data-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.data-card:hover {
  border-color: var(--color-primary);
  background-color: var(--bg-card-hover);
}

/* --- Icon & Interaction Styles --- */
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  background-color: var(--bg-dark);
  color: var(--color-primary);
  border: 1px solid var(--color-primary-alpha);
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.data-card:hover .card-icon {
  transform: scale(1.1); /* The hover pop effect */
}

.card-icon .material-symbols-outlined {
  font-size: 1.875rem;
}

/* --- Card Text Styles --- */
.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.card-description {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   FOOTER - Premium Design
   ========================================================================== */

.site-footer {
  background-color: var(--bg-darker);
  font-family: var(--font-sans);
  padding: 5rem 1.5rem 2.5rem; /* pt-20 pb-10 px-6 */
  border-top: 1px solid var(--border-light);
}

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

/* --- CTA Section --- */
.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 5rem;
  gap: 2rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 3.75rem); /* Responsive sizing */
  color: var(--text-white);
  font-weight: 500;
  margin: 0;
}

.cta-description {
  color: var(--text-gray-400);
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Primary Button --- */
.btn-primary {
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
  color: var(--bg-dark);
  height: 3.5rem;
  padding: 0 2.5rem;
  border: none;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 20px var(--color-primary-glow);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  box-shadow: 0 0 30px var(--color-primary-glow-hover);
}

.btn-text {
  position: relative;
  z-index: 10;
}

.cta-button a {
    text-decoration: none;
    color: var(--bg-dark);
}

.btn-hover-effect {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  border-radius: 0.25rem;
  transition: transform 0.3s ease;
  z-index: 1;
}

.btn-primary:hover .btn-hover-effect {
  transform: scale(1);
}

/* --- Navigation Grid --- */
.footer-navigation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  border-top: 1px solid var(--border-light);
  padding-top: 3rem;
}

@media (min-width: 768px) {
  .footer-navigation {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Brand Column */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.logo-icon {
  color: var(--color-primary);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.brand-description {
  color: var(--text-gray-500);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Links Columns */
.col-title {
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-gray-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

/* --- Bottom Bar --- */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-lighter);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.copyright {
  color: var(--text-gray-600);
  font-size: 0.75rem;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text-gray-500);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--text-white);
}