/* 
   Mohet-IT Solutions | Premium Tech-Outstanding Design 
   Innovation-Hub Aesthetics (GDPR Ready)
*/

@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/SpaceGrotesk-Regular.woff2') format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'Syne';
    src: url('../fonts/Syne-Bold.woff2') format('woff2');
    font-weight: 700;
}

:root {
    --bg-dark: #060809;
    --bg-card: rgba(15, 18, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-cyan: #00e5ff;
    --accent-cyan-glow: rgba(0, 229, 255, 0.4);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --font-main: 'Space Grotesk', sans-serif;
    --font-head: 'Syne', sans-serif;
}

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

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

.bg-mesh {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.03) 0%, transparent 40%);
    animation: meshRotate 20s infinite alternate linear;
}

@keyframes meshRotate {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1.1) rotate(3deg); }
}

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

header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #fff, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1, h2, h3 { font-family: var(--font-head); letter-spacing: -2px; line-height: 1; }

.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 30px;
    background: linear-gradient(to bottom, #fff 40%, rgba(255,255,255,0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 99px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 80px;
}

.bento-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.bento-item:hover {
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-10px);
}

.bento-item.large { grid-column: span 8; }
.bento-item.small { grid-column: span 4; }
.bento-item.full { grid-column: span 12; }

.dashboard-mockup {
    margin-top: 100px;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
}

.dashboard-mockup img {
    width: 100%;
    border-radius: 30px;
    display: block;
}

.footer {
    padding: 100px 0 50px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 150px;
}

.cyan-text {
    color: var(--accent-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: block;
}

.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: reveal 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 900px) {
    .bento-item { grid-column: span 12 !important; }
}
