/* ==========================================================================
   TECHNE PRO - THE NEW PURE (LIGHT NEOMORPHISM)
   ========================================================================== */

:root {
    --bg: #eef1f5;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --accent: #4834d4;
    --white: #ffffff;
    
    /* Neomorphism Shadows */
    --neo-shadow-light: 8px 8px 16px #d1d9e6, -8px -8px 16px #ffffff;
    --neo-shadow-inset: inset 2px 2px 5px #babecc, inset -5px -5px 10px #ffffff;
    
    --font-heading: 'Syncopate', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Spots */
.neo-background {
    position: fixed; inset: 0; z-index: -1;
    background: radial-gradient(circle at 10% 20%, #fdfbfb 0%, #ebedee 100%);
}
.light-spot {
    position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4;
}
.spot-1 { width: 500px; height: 500px; background: #dfe6e9; top: -10%; left: -10%; }
.spot-2 { width: 400px; height: 400px; background: #fab1a0; bottom: -5%; right: -5%; }

.container { width: 90%; max-width: 1300px; margin: 0 auto; }
section { padding: 4rem 0; } /* Drastically reduced for tighter cohesion */

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

/* Navigation */
.neo-nav {
    position: fixed; top: 2rem; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 1000px; height: 70px; z-index: 1000;
    background: rgba(238, 241, 245, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    box-shadow: var(--neo-shadow-light);
    display: flex; align-items: center; padding: 0 2rem;
}

.nav-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.neo-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-main); text-decoration: none; }
.neo-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

.neo-btn-sm {
    padding: 10px 25px; border-radius: 50px; background: var(--bg);
    box-shadow: var(--neo-shadow-light); border: none; color: var(--text-main);
    font-weight: 800; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; text-decoration: none;
}
.neo-btn-sm:hover { box-shadow: var(--neo-shadow-inset); }

/* Hero Canvas */
.hero-canvas { min-height: 85vh; display: flex; align-items: center; padding-top: 100px; }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.ultra-caption { font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 5px; color: var(--accent); text-transform: uppercase; display: block; margin-bottom: 1rem; }
.glaze-title { font-family: var(--font-heading); font-size: clamp(3rem, 8vw, 6rem); line-height: 0.9; font-weight: 900; letter-spacing: -2px; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.4rem; color: var(--text-muted); max-width: 450px; margin-bottom: 2.5rem; }

.hero-actions { display: flex; gap: 2rem; align-items: center; }
.neo-btn-main {
    padding: 20px 45px; border-radius: 50px; background: var(--bg);
    box-shadow: var(--neo-shadow-light); border: none; color: var(--text-main);
    font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: 0.3s;
}
.neo-btn-main:hover { transform: scale(0.98); box-shadow: var(--neo-shadow-inset); }

.neo-btn-circle {
    width: 60px; height: 60px; border-radius: 50%; background: var(--bg);
    box-shadow: var(--neo-shadow-light); display: flex; align-items: center; justify-content: center; color: var(--accent); text-decoration: none;
}

/* 3D Frame */
.neo-frame {
    background: var(--bg); box-shadow: var(--neo-shadow-light);
    border-radius: 40px; padding: 4rem; position: relative;
}
.floating-img { width: 100%; height: auto; border-radius: 20px; animation: float 6s infinite ease-in-out; }

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

/* Architecture Cards */
.neo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3rem; }
.neo-card {
    background: var(--bg); border-radius: 40px; padding: 4rem 3rem; box-shadow: var(--neo-shadow-light); text-align: center;
    transition: 0.4s var(--ease);
}
.neo-card:hover { transform: translateY(-10px); }
.neo-icon-box {
    width: 80px; height: 80px; margin: 0 auto 2.5rem; border-radius: 24px;
    background: var(--bg); box-shadow: var(--neo-shadow-light);
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--accent);
}
.neo-card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 1.5rem; }
.neo-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Horizon Visual */
.hero-container-flex { display: flex; align-items: center; gap: 10rem; }
.horizon-text { flex: 1; }
.horizon-visual { flex: 1.5; }
.rounded-neo { width: 100%; border-radius: 50px; box-shadow: var(--neo-shadow-light); }

/* Glass Bento */
.bento-layout { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 300px; gap: 2.5rem; }
.bento-box {
    background: var(--bg); border-radius: 40px; box-shadow: var(--neo-shadow-light); overflow: hidden; position: relative;
}
.bento-lg { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 4; min-height: 200px; display: flex; align-items: center; padding: 0 4rem; } 
.bento-box img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: 1s; }
.bento-box:hover img { transform: scale(1.1); }
.bento-overlay { position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,0.4)); display: flex; align-items: flex-end; padding: 2.5rem; }
.bento-overlay h3 { color: #fff; font-family: var(--font-heading); font-size: 1.4rem; }
.neo-bat { font-size: 3rem; display: block; margin: 3rem auto; color: var(--accent); }
.glass-bento-section { padding-bottom: 1rem; }

/* Reviews Theater */
.neo-reviews { padding-top: 0; } /* Overlap with previous section for zero gap */
.reviews-theater {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.rev-card-premium {
    background: var(--bg);
    border-radius: 50px;
    padding: 4rem 3.5rem;
    box-shadow: var(--neo-shadow-light);
    position: relative;
    transition: 0.5s var(--ease);
    display: flex;
    flex-direction: column;
}

.rev-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
}

.rev-quote-icon {
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.15;
    margin-bottom: 1.5rem;
}

.rev-rating {
    display: flex;
    gap: 5px;
    color: #f1c40f;
    margin-bottom: 2rem;
    font-size: 0.8rem;
}

.rev-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 4rem;
    flex-grow: 1;
}

.rev-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.rev-user-profile {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.rev-user-profile img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: var(--neo-shadow-light);
    border: 3px solid var(--white);
}

.rev-user-info h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
}

.rev-user-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}

.rev-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    padding: 6px 14px;
    background: var(--bg);
    box-shadow: var(--neo-shadow-light);
    border-radius: 100px;
}

/* Contact Form */
.contact-neo-frame {
    background: var(--bg); border-radius: 60px; box-shadow: var(--neo-shadow-light); padding: 6rem;
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: center;
}
.neo-form .input-row { display: flex; gap: 2rem; margin-bottom: 2rem; }
.neo-form input, .neo-form textarea {
    width: 100%; background: var(--bg); border: none; padding: 25px; border-radius: 25px;
    box-shadow: var(--neo-shadow-inset); font-family: inherit; font-size: 1rem; outline: none;
}
.neo-form textarea { height: 150px; margin-top: 2rem; }
.neo-form button { margin-top: 3rem; cursor: pointer; }

/* Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: 1.2s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.3s; }

/* Footer */
.neo-footer { padding: 10rem 0 5rem; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 6rem; }
.f-left p { color: var(--text-muted); max-width: 250px; margin-top: 1.5rem; }
.f-links { display: flex; gap: 5rem; }
.l-col p { font-size: 0.7rem; font-weight: 800; color: var(--accent); letter-spacing: 2px; margin-bottom: 1.5rem; }
.l-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 0.8rem; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 3rem; color: var(--text-muted); font-size: 0.8rem; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-layout, .hero-container-flex, .neo-grid, .contact-neo-frame { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .hero-container-flex { flex-direction: column; }
    .contact-neo-frame { padding: 4rem 2rem; }
    .neo-form .input-row { flex-direction: column; }
    .bento-layout { grid-template-columns: 1fr; }
    .bento-lg, .bento-wide { grid-column: span 1; }
    .neo-nav { width: 95%; padding: 0 1rem; }
    .nav-links { display: none; }
}
