:root {
    --bg: #0a0a0a;
    --text: #ffffff;
    --accent: #4CAF50;
    --card-bg: #1a1a1a;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s;
    mix-blend-mode: difference;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-family: 'Roboto Mono', monospace;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
}

.hero-content {
    z-index: 2;
}

h1 {
    font-size: 8vw;
    line-height: 0.9;
    margin-bottom: 30px;
    font-weight: 300;
}

p {
    font-size: 1.2rem;
    color: #888;
    max-width: 400px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s, background 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
    background: #eee;
}

.hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    perspective: 1000px;
}

.clock-mockup {
    display: flex;
    gap: 10px;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.5s;
}

.hero:hover .clock-mockup {
    transform: rotateY(-5deg) rotateX(5deg);
}

.card {
    width: 80px;
    height: 120px;
    background: #222;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 60px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border-bottom: 2px solid #111;
}

.sep {
    font-size: 60px;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    align-items: center;
}

/* Features */
.features {
    padding: 100px 10%;
}

.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 150px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    width: 40%;
}

.feature-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-visual {
    width: 50%;
    height: 400px;
    background: #1a1a1a;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.visual-1 {
    background: linear-gradient(45deg, #111, #222);
}
.visual-2 {
    background: linear-gradient(45deg, #222, #111);
}
.visual-3 {
    background: linear-gradient(45deg, #111, #222);
}

/* Download */
.download {
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0f0f0f;
}

.download h2 {
    font-size: 4vw;
    margin-bottom: 40px;
}

.cta-btn.large {
    padding: 20px 60px;
    font-size: 1.2rem;
}


footer {
    padding: 50px;
    text-align: center;
    color: #444;
    font-size: 12px;
    border-top: 1px solid #111;
}
