:root {
    --bg: #0B1220;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --primary: #22C55E;
    --border: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
}

.logo {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text);
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
    gap: 48px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    margin-top: 32px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.feature-item h3 {
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.content {
    max-width: 680px;
    margin: 60px auto;
}

.content h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.last-updated {
    color: var(--text-muted);
    margin-bottom: 48px;
    font-size: 14px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 20px;
    margin-bottom: 16px;
}

footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    border-top: 1px solid var(--border);
}

footer a {
    text-decoration: underline;
    text-decoration-color: var(--border);
    margin-left: 12px;
}

/* Minimal Phone Mockup */
.phone-mockup {
    width: 280px;
    height: 560px;
    border: 8px solid #202020;
    border-radius: 40px;
    background: #000;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0B1220 0%, #111827 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-content::after {
    content: "Cutback";
    font-weight: 800;
    font-size: 24px;
    opacity: 0.5;
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 36px;
    }
}
