:root {
    --bg: #050816;
    --panel: #0d1125;
    --panel2: #131936;
    --accent: #6d7dff;
    --text: #ffffff;
    --muted: #b8bfd9;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}
.background-glow {
    position: fixed;
    top: -300px;
    right: -200px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(109,125,255,.25),
            transparent 70%
        );
    pointer-events: none;
}
header {
    max-width: 1400px;
    margin: auto;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
}
.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
nav {
    display: flex;
    gap: 30px;
}
nav a {
    color: var(--muted);
    text-decoration: none;
}
.header-buttons {
    display: flex;
    gap: 15px;
}
.btn {
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
.btn-primary {
    background: var(--accent);
    color: white;
}
.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,.1);
    color: white;
}
.hero {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 40px;
}
.pill {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #12183a;
    color: #9aa5ff;
    margin-bottom: 25px;
}
.hero h1 {
    font-size: 48px;
    line-height: 1.05;
    margin-bottom: 30px;
}
.hero h1 span {
    color: var(--accent);
    display: block;
}
.hero p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.8;
    max-width: 650px;
}
.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}
.platforms {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    color: var(--muted);
}
.workspace {
    position: relative;
}
.window {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    overflow: hidden;
    min-height: 500px;
}
.window-bar {
    display: flex;
    gap: 10px;
    padding: 20px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }
.window-content {
    padding: 0px;
    background: #04060d;
}
.chart {
    margin-top: 30px;
    height: 220px;
    border-radius: 20px;
    background:
        linear-gradient(
            180deg,
            rgba(109,125,255,.3),
            rgba(109,125,255,.05)
        );
}
.app-dock {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(10,15,35,.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 15px 20px;
}
.apps {
    max-width: 1400px;
    margin: auto;
    padding: 120px 40px;
}
.apps h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
}
.card-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}
.card {
    background: var(--panel);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 35px;
    transition: .2s;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(109,125,255,.4);
}
.card h3 {
    margin-bottom: 12px;
}
.card p {
    color: var(--muted);
    line-height: 1.7;
}
@media(max-width:1000px){
    .hero{
        grid-template-columns:1fr;
    }
    .hero h1{
        font-size:54px;
    }
    nav{
        display:none;
    }
}