@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

:root {
    --orange: #FF4500;
    --orange-light: #FF6B35;
    --orange-dark: #CC3700;
    --orange-glow: rgba(255, 69, 0, 0.3);
    --white: #FFFFFF;
    --off-white: #F8F4F0;
    --dark: #0A0A0A;
    --dark-gray: #1A1A1A;
    --mid-gray: #888888;
}

html {
    scroll-behavior: auto;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    cursor: default;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    mix-blend-mode: difference;
}

.cursor.hovered {
    transform: scale(2);
    background: rgba(255, 69, 0, 0.15);
    border-color: var(--orange-light);
}

.cursor-dot.hovered {
    transform: scale(0);
}

/* Three.js Canvas */
#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: padding 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    padding: 15px 50px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-color: rgba(255, 255, 255, 0.05);
}

.nav-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}

.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Scroll progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    z-index: 200;
    transform-origin: left;
    transform: scaleX(0);
}

/* Content wrapper */
.content {
    position: relative;
    z-index: 10;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 50px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    text-align: center;
    line-height: 0.95;
    letter-spacing: -3px;
    overflow: hidden;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line-inner {
    display: block;
    transform: translateY(120%);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    margin-top: 40px;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 300;
    color: var(--mid-gray);
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mid-gray);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTION COMMON ===== */
.section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 50px;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ===== ABOUT SECTION ===== */
.about {
    min-height: 120vh;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--orange);
}

.about-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.about-heading .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--mid-gray);
    font-weight: 300;
    max-width: 500px;
    opacity: 0;
}

.about-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-shape {
    position: absolute;
    border-radius: 20px;
    border: 1px solid rgba(255, 69, 0, 0.2);
    backdrop-filter: blur(10px);
    background: rgba(255, 69, 0, 0.05);
}

.shape-1 {
    width: 250px;
    height: 250px;
    transform: rotate(15deg);
    animation: float1 8s ease-in-out infinite;
}

.shape-2 {
    width: 180px;
    height: 180px;
    transform: rotate(-20deg);
    animation: float2 10s ease-in-out infinite;
    left: 60%;
    top: 10%;
}

.shape-3 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transform: rotate(0deg);
    animation: float3 6s ease-in-out infinite;
    bottom: 15%;
    left: 20%;
    background: rgba(255, 69, 0, 0.1);
}

@keyframes float1 {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(20deg) translateY(-20px); }
}
@keyframes float2 {
    0%, 100% { transform: rotate(-20deg) translateX(0); }
    50% { transform: rotate(-15deg) translateX(15px); }
}
@keyframes float3 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

/* ===== PILLARS SECTION ===== */
.pillars {
    min-height: 150vh;
    flex-direction: column;
    justify-content: center;
}

.pillars-header {
    text-align: center;
    margin-bottom: 120px;
}

.pillars-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    letter-spacing: -2px;
}

.pillars-heading .line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
}

.pillar-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(80px);
    transition: border-color 0.4s ease;
}

.pillar-card:hover {
    border-color: rgba(255, 69, 0, 0.3);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15), rgba(255, 69, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.pillar-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.pillar-card p {
    color: var(--mid-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.pillar-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

/* ===== SHOWCASE SECTION ===== */
.showcase {
    min-height: 100vh;
    flex-direction: column;
    justify-content: center;
}

.showcase-track {
    display: flex;
    gap: 40px;
    padding: 0 50px;
    width: max-content;
}

.showcase-item {
    flex-shrink: 0;
    width: 500px;
    height: 350px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 69, 0, 0.3);
    box-shadow: 0 30px 60px rgba(255, 69, 0, 0.08);
}

.showcase-item-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.showcase-item .bg-gradient {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), scale 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-item:hover .bg-gradient {
    opacity: 0.75;
    transform: scale(1.08);
}

.showcase-item:nth-child(1) .bg-gradient {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.3), rgba(255, 69, 0, 0.05));
}
.showcase-item:nth-child(2) .bg-gradient {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.05));
}
.showcase-item:nth-child(3) .bg-gradient {
    background: linear-gradient(135deg, rgba(204, 55, 0, 0.3), rgba(204, 55, 0, 0.05));
}
.showcase-item:nth-child(4) .bg-gradient {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(255, 69, 0, 0.08));
}

.showcase-item .icon {
    font-size: 3rem;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-item:hover .icon {
    transform: scale(1.15) rotate(5deg);
}

.showcase-item .label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    z-index: 2;
    letter-spacing: -0.5px;
}

.showcase-item .desc {
    font-size: 0.85rem;
    color: var(--mid-gray);
    z-index: 2;
    font-weight: 300;
    text-align: center;
    padding: 0 30px;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
    min-height: 120vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(255, 69, 0, 0.02) 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transform: translateY(40px);
}

.product-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
}

.product-title .highlight {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-tagline {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--orange-light);
    letter-spacing: 0.5px;
}

.product-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--mid-gray);
    font-weight: 300;
}

.product-stats {
    display: flex;
    gap: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--mid-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px var(--orange-glow);
}

.product-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-btn:hover::before {
    opacity: 1;
}

.product-btn span {
    position: relative;
    z-index: 1;
}

.product-gallery {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(60px);
}

.phone-mockup {
    position: relative;
    width: 210px;
    height: 420px;
    border-radius: 36px;
    border: 7px solid #161616;
    background: #080808;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 8px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fan Stagger Layout */
.product-gallery .phone-mockup:nth-child(1) {
    transform: rotate(-5deg) translateY(15px);
}

.product-gallery .phone-mockup:nth-child(2) {
    z-index: 2;
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 69, 0, 0.15);
}

.product-gallery .phone-mockup:nth-child(3) {
    transform: rotate(5deg) translateY(15px);
}

/* Hover Animations */
@media (hover: hover) {
    .phone-mockup:hover {
        z-index: 10 !important;
        transform: scale(1.06) translateY(-25px) rotate(0deg) !important;
        border-color: var(--orange-light) !important;
        box-shadow: 0 35px 70px rgba(255, 69, 0, 0.12) !important;
    }
}

/* ===== MARQUEE SECTION ===== */
.marquee-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.marquee-row {
    display: flex;
    white-space: nowrap;
    margin: 20px 0;
}

.marquee-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 800;
    letter-spacing: -4px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    color: transparent;
    padding: 0 40px;
    flex-shrink: 0;
}

.marquee-text.filled {
    -webkit-text-stroke: 0;
    color: var(--orange);
    opacity: 0.15;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    min-height: 120vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 50px;
}

.founder-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.founder-header {
    text-align: center;
    margin-bottom: 100px;
}

.founder-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
}

.founder-heading .line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
}

.founder-card {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 70px;
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
}

.founder-avatar {
    position: relative;
    width: 220px;
    height: 220px;
}

.founder-avatar-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 69, 0, 0.3);
    animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.founder-avatar-ring-2 {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 69, 0, 0.12);
    animation: ringPulse 4s ease-in-out infinite 1s;
}

.founder-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    overflow: hidden;
}

.founder-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.founder-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--white), var(--off-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-role {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
}

.founder-role .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    animation: dotBlink 2s ease-in-out infinite;
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.founder-bio {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--mid-gray);
    font-weight: 300;
    max-width: 520px;
}

.founder-bio strong {
    color: var(--white);
    font-weight: 500;
}

.founder-quote {
    position: relative;
    padding: 24px 0;
    margin-top: 8px;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -5px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    color: var(--orange);
    opacity: 0.2;
    line-height: 1;
}

.founder-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--off-white);
    font-weight: 300;
    line-height: 1.7;
    padding-left: 20px;
}

.founder-links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.founder-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--mid-gray);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.founder-links a:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 69, 0, 0.05);
}

.founder-links a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.founder-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.2), transparent);
    margin-top: 120px;
    opacity: 0;
}

@media (max-width: 1024px) {
    .founder-card {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .founder-avatar {
        margin: 0 auto;
        width: 180px;
        height: 180px;
    }
    .founder-info {
        align-items: center;
    }
    .founder-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 80px 25px;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 100px 50px;
    position: relative;
}

.cta-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 60px var(--orange-glow);
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-light), var(--orange));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-btn:hover::before {
    opacity: 1;
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.footer-left {
    font-size: 0.85rem;
    color: var(--mid-gray);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-sep {
    opacity: 0.25;
    color: var(--mid-gray);
}

.footer-privacy-link {
    color: var(--mid-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy-link:hover {
    color: var(--orange);
}

.footer-right {
    display: flex;
    gap: 30px;
}

.footer-right a {
    color: var(--mid-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: var(--orange);
}

/* ===== NOISE OVERLAY ===== */
.noise {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.loader-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    opacity: 0;
}

.loader-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 2px;
}

.loader-percent {
    font-size: 0.75rem;
    color: var(--mid-gray);
    letter-spacing: 3px;
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cursor, .cursor-dot {
        display: none !important;
    }
    
    /* Collapse menu and show hamburger */
    .nav {
        padding: 20px 30px;
    }
    .nav.scrolled {
        padding: 12px 30px;
    }
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 16px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    .nav-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--white);
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile Menu Overlay */
    .mobile-menu {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }
    .mobile-menu.active {
        opacity: 1;
        pointer-events: all;
    }
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 40px;
        list-style: none;
        text-align: center;
        padding: 0;
        margin: 0;
    }
    .mobile-nav-links a {
        color: var(--white);
        text-decoration: none;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: color 0.3s ease;
    }
    .mobile-nav-links a:hover {
        color: var(--orange);
    }
    body.no-scroll {
        overflow: hidden;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .pillar-cards {
        grid-template-columns: 1fr;
    }
    .founder-quote::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .founder-quote p {
        padding-left: 0;
    }

    /* Showcase Native Scroll Override (up to 1024px for touch-first screens) */
    .showcase {
        min-height: auto;
        height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .showcase-track {
        width: auto;
        max-content: none;
        display: flex;
        overflow-x: auto;
        padding: 20px 25px;
        gap: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .showcase-track::-webkit-scrollbar {
        display: none;
    }
    .showcase-item {
        scroll-snap-align: start;
        flex-shrink: 0;
        width: 80vw;
        max-width: 400px;
        height: 280px;
    }

    /* Product Section mobile overrides */
    .product-section {
        min-height: auto;
        padding: 80px 25px;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .product-desc {
        font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    }
    .product-btn {
        align-self: center;
        padding: clamp(14px, 3.5vw, 20px) clamp(30px, 7vw, 50px);
        font-size: clamp(0.9rem, 2.2vw, 1rem);
    }
    .product-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: clamp(20px, 6vw, 40px);
    }
    .product-gallery {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: clamp(40px, 12vw, 60px) 0 clamp(30px, 9vw, 40px);
        position: relative;
        overflow: visible;
    }
    .phone-mockup {
        width: clamp(90px, 28vw, 130px);
        height: clamp(180px, 56vw, 260px);
        border-radius: clamp(14px, 4vw, 20px);
        border: clamp(3px, 1vw, 4px) solid #161616;
        margin: 0 clamp(-18px, -3.5vw, -12px);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, z-index 0.4s ease;
        cursor: pointer;
    }
    .product-gallery .phone-mockup:nth-child(1) {
        transform: rotate(-6deg) translateY(15px);
        z-index: 1;
    }
    .product-gallery .phone-mockup:nth-child(2) {
        transform: translateY(-15px);
        z-index: 2;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    }
    .product-gallery .phone-mockup:nth-child(3) {
        transform: rotate(6deg) translateY(15px);
        z-index: 1;
    }

    /* Interactive Highlight / Popup */
    .product-gallery.has-active .phone-mockup:not(.active-mockup) {
        opacity: 0.35;
        transform: scale(0.85) translateY(20px) rotate(0deg) !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4) !important;
    }
    .phone-mockup.active-mockup {
        opacity: 1 !important;
        z-index: 100 !important;
        transform: scale(1.3) translateY(-30px) rotate(0deg) !important;
        border-color: var(--orange-light) !important;
        box-shadow: 0 30px 60px rgba(255, 69, 0, 0.25) !important;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 20px 25px;
    }
    .nav.scrolled {
        padding: 12px 25px;
    }

    /* Section & Hero Adjustments */
    .section {
        padding: 60px 25px;
    }
    .hero {
        height: 85vh;
        padding: 0 25px;
    }
    .hero-title {
        letter-spacing: -1.5px;
    }

    /* About Section Shapes */
    .about-visual {
        height: 300px;
    }
    .shape-1 {
        width: 180px;
        height: 180px;
    }
    .shape-2 {
        width: 130px;
        height: 130px;
        left: 55%;
    }
    .shape-3 {
        width: 90px;
        height: 90px;
    }

    /* Pillars Adjustments */
    .pillars {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .pillars-header {
        margin-bottom: 50px;
    }
    .pillar-card {
        padding: 40px 30px;
    }

    .footer {
        flex-direction: column;
        gap: 20px;
        padding: 40px 25px;
    }
    .footer-left {
        justify-content: center;
        text-align: center;
    }
}

/* ===== CONTACT MODAL ===== */
.contact-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.contact-modal-card {
    background: rgba(18, 18, 18, 0.75);
    border: 1px solid rgba(255, 69, 0, 0.2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 69, 0, 0.05);
    border-radius: 28px;
    width: 90%;
    max-width: 520px;
    position: relative;
    overflow: hidden;
    padding: 50px 40px;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-modal-backdrop.active .contact-modal-card {
    transform: scale(1) translateY(0);
}

.contact-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--mid-gray);
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.contact-modal-close:hover {
    background: rgba(255, 69, 0, 0.15);
    border-color: var(--orange);
    color: var(--white);
    transform: rotate(90deg);
}

.contact-modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--white), var(--off-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-modal-sub {
    color: var(--mid-gray);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 35px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange-light);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 69, 0, 0.02);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.15);
}

.form-textarea {
    resize: none;
}

/* Validation Styling */
.form-group.has-error .form-input,
.form-group.has-error .form-textarea {
    border-color: #ff3333;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.1);
}

.form-error {
    display: block;
    color: #ff3333;
    font-size: 0.75rem;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(-5px);
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-group.has-error .form-error {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-bottom: -5px;
}

/* Button & Loading Loader */
.form-submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    border: none;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 30px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px var(--orange-glow);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: btnSpin 0.8s linear infinite;
    position: absolute;
}

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

/* Loading State on form submit */
.form-submit-btn.submitting {
    pointer-events: none;
}

.form-submit-btn.submitting .btn-text {
    opacity: 0;
}

.form-submit-btn.submitting .btn-loader {
    display: block;
}

/* Success State Styles */
.contact-success-state {
    display: none;
    text-align: center;
    padding: 30px 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 69, 0, 0.1);
    margin-bottom: 25px;
}

.checkmark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--orange-light);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--orange-light);
    animation: fillCheck 0.4s ease-in-out 0.4s forwards, scaleCheck 0.3s ease-in-out alternate both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--orange-light);
    fill: none;
    animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes strokeCircle {
    100% { stroke-dashoffset: 0; }
}

@keyframes strokeCheck {
    100% { stroke-dashoffset: 0; }
}

@keyframes scaleCheck {
    0%, 100% { transform: none; }
    50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fillCheck {
    100% { box-shadow: inset 0px 0px 0px 30px rgba(255, 69, 0, 0.1); }
}

.contact-success-state h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-success-state p {
    color: var(--mid-gray);
    font-size: 1rem;
    font-weight: 300;
    max-width: 320px;
    line-height: 1.6;
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
    .contact-modal-card {
        padding: 40px 24px;
        border-radius: 24px;
    }
    .contact-modal-title {
        font-size: 1.8rem;
    }
    .contact-modal-close {
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}

/* ===== PRIVACY PAGE ===== */
.privacy-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 25px 120px;
}

.privacy-inner {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.privacy-card {
    background: rgba(18, 18, 18, 0.5);
    border: 1px solid rgba(255, 69, 0, 0.15);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 69, 0, 0.02);
    border-radius: 32px;
    padding: 60px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.privacy-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--white), var(--off-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-last-updated {
    font-size: 0.85rem;
    color: var(--orange-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 40px;
}

.privacy-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--white);
    font-weight: 300;
}

.privacy-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.2), transparent);
    margin: 40px 0;
}

.privacy-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--white);
}

.privacy-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--mid-gray);
    font-weight: 300;
    margin-bottom: 24px;
}

.privacy-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
    list-style-type: none;
}

.privacy-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--mid-gray);
    font-weight: 300;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.privacy-content ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-size: 0.9rem;
}

.privacy-content ul li strong {
    color: var(--white);
    font-weight: 600;
}

.privacy-mail-link {
    display: inline-block;
    color: var(--orange-light);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed var(--orange-light);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.privacy-mail-link:hover {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.privacy-back-btn, .privacy-back-btn span {
    position: relative;
    z-index: 1;
}

.privacy-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.privacy-back-btn:hover {
    border-color: var(--orange);
    background: rgba(255, 69, 0, 0.05);
    color: var(--orange);
    transform: translateY(-2px);
}

/* Privacy Page Responsive overrides */
@media (max-width: 768px) {
    .privacy-section {
        padding-top: 60px;
        padding-bottom: 80px;
    }
    .privacy-card {
        padding: 35px 20px;
        border-radius: 24px;
    }
    .privacy-content h2 {
        font-size: 1.4rem;
        margin-top: 30px;
    }
    .privacy-content p, .privacy-content ul li {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}
