@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #111111;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: opacity 0.2s, transform 0.2s;
    cursor: pointer;
    border: none;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-primary {
    background: #EF4444;
    color: #ffffff;
}

.btn-sm {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
}

.btn-lg {
    font-size: 1.125rem;
    padding: 0.875rem 2.5rem;
}

/* Hero */
.hero {
    text-align: center;
    padding: 4rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.2rem;
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-screenshot {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222222;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.hero-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features */
.features {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: #1a1a1a;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 2rem;
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #999999;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials h2 {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: #1a1a1a;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 2rem;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #999999;
    margin-top: 0.15rem;
}

.testimonial-credits {
    font-size: 0.85rem;
    color: #EF4444;
    margin-top: 0.15rem;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cccccc;
    margin: 0;
    font-style: normal;
}

/* Pricing */
.pricing {
    padding: 4rem 2rem 5rem;
    text-align: center;
}

.pricing-card {
    background: #1a1a1a;
    border: 1px solid #222222;
    border-radius: 16px;
    padding: 3rem;
    max-width: 400px;
    margin: 0 auto;
}

.pricing-card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #aaaaaa;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Copyright */
.copyright {
    color: #444444;
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }
}

/* Legal pages */
.legal {
    flex: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

.legal h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.legal h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal p, .legal li {
    font-size: 1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 0.75rem;
}

.legal ul, .legal ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal a {
    color: #ffffff;
    text-decoration: underline;
}

.legal h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-meta {
    color: #666666;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.legal-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.legal-table th,
.legal-table td {
    border: 1px solid #333333;
    padding: 0.75rem;
    text-align: left;
    color: #cccccc;
}

.legal-table th {
    color: #ffffff;
    font-weight: 600;
    background: #1a1a1a;
}

.legal-table td:last-child {
    text-align: center;
    white-space: nowrap;
}

footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #222222;
}

footer nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

footer a {
    color: #666666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

footer a:hover {
    color: #ffffff;
}
