:root {
    --background: #181B1F;
    --surface: #23262A;
    --primary: #0A84FF;
    --accent: #30D158;
    --text: #EDEDED;
    --muted: #A0A1A7;
    --header: #202328;
}

body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    background: var(--background);
    color: var(--text);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

a, a:visited {
    color: inherit;
}

.parallax-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2;
    pointer-events: none;
    background: linear-gradient(120deg, #0A84FF77 0%, #181B1F80 60%, #30D15877 100%);
    background-size: 140% 140%;
    animation: parallaxMove 18s ease-in-out infinite alternate;
}

@keyframes parallaxMove {
    0% { background-position: 0% 0%;}
    100% { background-position: 100% 80%;}
}

header {
    background: rgba(32, 35, 40, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo {
    margin-right: 2rem;
    display:flex;
    align-items:center;
    justify-content:center;
}
.nav {
    margin-left:auto;
    display: flex;
    gap: 0.5rem;
}
.nav a {
    color: var(--text);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}
.nav a:hover {
    color: var(--primary);
    background: rgba(10, 132, 255, 0.1);
}
.nav a:active {
    transform: scale(0.96);
}
.hero {
    padding: 3.5rem 2rem 2.2rem 2rem;
    text-align: center;
    background: rgba(24,24,32, 0.32);
    margin-bottom: 1.1rem;
    border-radius: 1.2rem;
    box-shadow: 0 6px 40px #0006;
}
main {
    max-width: 800px;
    margin: 2rem auto;
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 4px 24px #0006;
    padding: 2rem 2rem 2.6rem 2rem;
}
h1 { font-size: 2.6rem; font-weight: 700; margin: 0 0 0.6em 0; }
h2 {
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}
h2:first-child {
    margin-top: 0;
}
.features-list {
    list-style: disc inside;
    line-height: 1.7;
    margin-top: 1.2rem;
}

.get-started {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 1.2rem;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 12px #0154b966;
    cursor:pointer;
    transition: background 0.18s;
}
.get-started:hover {
    background: #176edd;
}
.screenshot {
    width:100%;
    border-radius:10px;
    margin-top:2.2rem;
    display:flex;
    align-items:center;
    justify-content:center;
}
footer {
    margin: 6rem auto 0 auto;
    text-align:center;
    color:var(--muted);
    font-size:.98rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
th, td {
    padding: 0.8rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
th {
    background: rgba(10,132,255,0.15);
    color: var(--primary);
    font-weight: 600;
}
tr:hover {
    background: rgba(255,255,255,0.03);
}
td:has(+ td):not(:first-child) {
    font-size: 1.3rem;
}
table td:nth-child(2),
table td:nth-child(3) {
    color: var(--accent);
    font-weight: 600;
}
table td:nth-child(2):contains('✗'),
table td:nth-child(3):contains('✗') {
    color: #FF453A;
    opacity: 0.9;
}

/* Feature Showcase */
.feature-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.feature-item {
    background: rgba(20,22,28,0.39);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10,132,255,0.2);
}
.feature-item h3 {
    color: var(--primary);
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}
.feature-item p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 1rem 0 0 0;
}
.feature-item img {
    margin-bottom: 0.5rem;
}

/* Pricing Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.card {
    background: rgba(20,22,28,0.39);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
}
.card h3 {
    color: var(--primary);
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
}
.card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0.5rem 0 1rem 0;
}
.card ul {
    list-style: disc inside;
    line-height: 1.7;
    color: var(--text);
}

@media (max-width:600px){
    main { padding: 0.5rem;}
    .hero {padding:1.8rem 0.7rem;}
}
