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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0D0E15;
    min-height: 100vh;
    color: #E2E8F0;
    display: flex;
    flex-direction: column;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: #94A3B8;
}

.nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.create-nav-btn {
    background: #818CF8;
    color: #000;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 20px 20px;
}

.beta-tag {
    background: rgba(148, 163, 184, 0.1);
    color: #94A3B8;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.beta-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #38BDF8;
    border-radius: 50%;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -1px;
}

.hero-title span {
    color: #A78BFA;
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    color: #94A3B8;
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.google-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #818CF8;
    color: #000;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.google-btn:hover {
    background: #6366F1;
}

.google-btn svg {
    width: 20px;
    height: 20px;
}

.security-text {
    font-size: 11px;
    color: #64748B;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    width: 100%;
    margin-top: 32px;
}

.showcase-block {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    width: 100%;
}

.code-window {
    flex: 2;
    background: #111219;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.window-header {
    background: #181922;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748B;
}

.mac-btns {
    display: flex;
    gap: 6px;
    margin-right: 12px;
}

.mac-btns span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mac-btns .close { background: #EF4444; }
.mac-btns .min { background: #F59E0B; }
.mac-btns .max { background: #10B981; }

.code-content {
    padding: 24px;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #E2E8F0;
}

.terminal-window {
    flex: 1;
    background: #1A1B23;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
}

.terminal-window h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #fff;
}

.terminal-window p {
    color: #94A3B8;
    font-size: 13px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.terminal-box {
    background: #000;
    padding: 16px;
    border-radius: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: #38BDF8;
}

.terminal-box div { margin-bottom: 4px; }

.feature-card {
    background: #1A1B23;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h4 {
    color: #fff;
    margin-bottom: 4px;
}

.feature-text p {
    color: #94A3B8;
    font-size: 12px;
    line-height: 1.4;
}

.stats-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: #64748B;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-bottom {
    margin-top: auto;
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748B;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}
