/* Coming Soon styling */
.coming-soon {
    margin-top: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4vw;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.97;
    line-height: 1.1;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    filter: none;
}
/* Copied from original style.css for minimal version */

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

:root {
    --navy-blue: #0a192f;
    --navy-blue-dark: #020c1b;
    --navy-blue-light: #112240;
    --navy-blue-lighter: #1e3a5f;
    --primary-color: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #06b6d4;
    --secondary-dark: #0891b2;
    --accent-color: #f59e0b;
    --accent-teal: #14b8a6;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(10, 25, 47, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(10, 25, 47, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(10, 25, 47, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(10, 25, 47, 0.15);
    --shadow-2xl: 0 25px 50px -12px rgba(10, 25, 47, 0.25);
    --gradient-primary: linear-gradient(135deg, #0a192f 0%, #1e40af 50%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #14b8a6 50%, #10b981 100%);
    --gradient-hero: linear-gradient(135deg, #0a192f 0%, #1e3a5f 30%, #1e40af 60%, #3b82f6 100%);
}

/* Loader styles for first-launch animation */
.no-scroll {
    overflow: hidden !important;
}

.site-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent 15%), var(--gradient-hero);
    backdrop-filter: blur(4px) saturate(120%);
    z-index: 100000;
    color: white;
}

.site-loader .loader-content {
    display: flex;
    gap: 2.2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15vw;
    font-weight: 900;
    letter-spacing: 2.2vw;
    transform: translateY(0);
    text-shadow: 0 10px 40px rgba(30,64,175,0.5), 0 4px 12px rgba(6,182,212,0.14);
    align-items: center;
    position: relative;
    justify-content: center;
}

.loader-tagline {
    margin-top: 3vw;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5vw;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    text-align: center;
    pointer-events: none;
    display: flex;
    gap: 1.2vw;
    justify-content: center;
    align-items: center;
}
.loader-tagline .tagline-word {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
    transition: opacity 0.5s cubic-bezier(.7,-0.2,.3,1.4), transform 0.5s cubic-bezier(.7,-0.2,.3,1.4);
    display: inline-block;
}
.loader-tagline .tagline-word.visible {
    opacity: 1;
    transform: translateY(0) scale(1.04);
}

.loader-letter {
    display: inline-block;
    opacity: 0;
    background: linear-gradient(180deg, rgba(255,255,255,1), rgba(230,230,255,0.95));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* K from left */
.loader-letter.khr-k {
    animation: khrInLeft 3.2s cubic-bezier(.7,-0.2,.3,1.4) forwards;
    animation-delay: 0s;
}
@keyframes khrInLeft {
    0% { opacity: 0; transform: translateX(-120vw) scale(0.7) skewX(-18deg) rotate(-12deg); filter: blur(18px); }
    60% { opacity: 1; transform: translateX(4vw) scale(1.12) skewX(2deg) rotate(2deg); filter: blur(0); }
    100% { opacity: 1; transform: translateX(0) scale(1) skewX(0) rotate(0); }
}

/* H from top */
.loader-letter.khr-h {
    animation: khrInTop 3.2s cubic-bezier(.7,-0.2,.3,1.4) forwards;
    animation-delay: 0.8s;
}
@keyframes khrInTop {
    0% { opacity: 0; transform: translateY(-120vh) scale(0.7) skewY(-12deg) rotate(-8deg); filter: blur(18px); }
    60% { opacity: 1; transform: translateY(2vw) scale(1.12) skewY(2deg) rotate(2deg); filter: blur(0); }
    100% { opacity: 1; transform: translateY(0) scale(1) skewY(0) rotate(0); }
}

/* R from right */
.loader-letter.khr-r {
    animation: khrInRight 3.2s cubic-bezier(.7,-0.2,.3,1.4) forwards;
    animation-delay: 1.6s;
}
@keyframes khrInRight {
    0% { opacity: 0; transform: translateX(120vw) scale(0.7) skewX(18deg) rotate(12deg); filter: blur(18px); }
    60% { opacity: 1; transform: translateX(-4vw) scale(1.12) skewX(-2deg) rotate(-2deg); filter: blur(0); }
    100% { opacity: 1; transform: translateX(0) scale(1) skewX(0) rotate(0); }
}

/* Burst out animation for all letters */
.site-loader.loader-hidden .loader-content {
    animation: loaderBurstErupt 2.2s cubic-bezier(.2,.9,.3,1) forwards;
}
@keyframes loaderBurstErupt {
    0% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1) translateY(0);
        box-shadow: 0 0 0 0 rgba(30,64,175,0.0);
    }
    40% {
        opacity: 1;
        filter: blur(0.5vw);
        transform: scale(1.25) translateY(-2vw) rotate(-2deg);
        box-shadow: 0 0 0 0 rgba(30,64,175,0.0);
    }
    70% {
        opacity: 1;
        filter: blur(2vw);
        transform: scale(2.8) translateY(-8vw) rotate(2deg);
        box-shadow: 0 0 120vw 40vw rgba(30,64,175,0.18), 0 0 80vw 20vw rgba(6,182,212,0.12);
    }
    100% {
        opacity: 0;
        filter: blur(8vw);
        transform: scale(6.5) translateY(-30vw) rotate(0deg);
        box-shadow: 0 0 200vw 100vw rgba(30,64,175,0.22), 0 0 120vw 60vw rgba(6,182,212,0.16);
        letter-spacing: 18vw;
    }
}

.site-loader .loader-content::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 45%);
    z-index: 0;
    filter: blur(24px);
    opacity: 0.9;
}

@keyframes loaderExit {
    0% { opacity: 1; transform: scale(1) translateY(0); }
    100% { opacity: 0; transform: scale(1.9) translateY(-48px); }
}

.site-loader.loader-hidden .loader-content {
    animation: loaderExit 0.42s cubic-bezier(.2,.9,.3,1) forwards;
}

.site-loader.loader-hidden {
    opacity: 0;
    transition: opacity 0.42s ease;
    pointer-events: none;
}

@media (max-width: 768px) {
    .site-loader .loader-content { font-size: 18vw; letter-spacing: 2vw; }
    .site-loader .loader-content::after { width: 60vw; height: 60vw; }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    /* cursor: none;  -- only hide when custom cursor is active */
    overflow-x: hidden;
}

.custom-cursor-enabled body {
    cursor: none;
}

/* Custom Cursor */
/* Custom Cursor - always visible, high contrast */
.cursor {
    width: 20px;
    height: 20px;
    border: 2.5px solid #fff;
    background: rgba(30,64,175,0.18);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 0 2px #1e40af, 0 0 12px 2px #fff8, 0 0 0 0 #0000;
    mix-blend-mode: normal;
}

.cursor.cursor-hover {
    width: 50px;
    height: 50px;
    border-color: #fff;
    background: rgba(30,64,175,0.32);
    box-shadow: 0 0 0 4px #1e40af, 0 0 24px 4px #fff8;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background 0.2s;
    box-shadow: 0 0 0 1.5px #1e40af, 0 0 8px 1.5px #fff8;
    mix-blend-mode: normal;
}

.cursor-follower.cursor-hover {
    transform: translate(-50%, -50%) scale(2);
    background: #fff;
    box-shadow: 0 0 0 3px #1e40af, 0 0 16px 3px #fff8;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.4;
    animation: float-particle linear infinite;
    box-shadow: 0 0 6px var(--primary-light);
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 1;
}

.logo-monogram {
    position: relative;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    z-index: 2;
    transition: all 0.4s ease;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.nav-logo:hover .logo-monogram {
    transform: scale(1.1);
    filter: brightness(1.3);
}

.nav-logo:hover .logo-glow {
    opacity: 1;
    width: 80px;
    height: 80px;
    animation: pulse-glow 2s ease infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.section-divider {
    width: 100%;
    height: 120px;
    color: var(--bg-light);
    margin-top: -1px;
    overflow: hidden;
}

.section-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: orb-float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.6) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 100px rgba(30, 64, 175, 0.4);
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.5) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    box-shadow: 0 0 80px rgba(6, 182, 212, 0.3);
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.4) 0%, transparent 70%);
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
    box-shadow: 0 0 90px rgba(20, 184, 166, 0.3);
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.name-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nameReveal 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.name-line-1 {
    animation-delay: 0.4s;
}

.name-line-2 {
    animation-delay: 0.6s;
    font-size: 0.9em;
    letter-spacing: 3px;
}

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

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    animation: fadeInUp 1s ease 0.8s both;
}

.tagline-word {
    /* No box styling */
    padding: 0;
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    transition: none;
}

.tagline-word:hover {
    /* No hover effect for box */
}

.tagline-separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease 1s both;
}

.hero-quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    animation: fadeInUp 1s ease 1.2s both;
    font-weight: 300;
    line-height: 1.8;
}

.footer {
    background-color: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .site-loader .loader-content { font-size: 18vw; letter-spacing: 2vw; }
    .site-loader .loader-content::after { width: 60vw; height: 60vw; }
    .hero-name { font-size: 2.5rem; }
    .name-line-2 { font-size: 0.85em; }
    .hero-tagline { font-size: 1.1rem; flex-wrap: wrap; }
    .section-header { flex-direction: column; gap: 1rem; }
    .section-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-quote { font-size: 1rem; }
    .container { padding: 0 1.5rem; }
}

@media (max-width: 768px) {
    body {
        cursor: auto !important;
    }
    .cursor,
    .cursor-follower {
        display: none !important;
    }
}
