@import url('https://cdn.jsdelivr.net/npm/geist@1.3.0/dist/fonts/geist-sans/style.css');

:root {
    --bg: oklch(0.08 0 0);
    --surface: oklch(0.12 0 0);
    --surface-hover: oklch(0.16 0 0);
    --border: oklch(0.2 0 0);
    --text-main: oklch(0.95 0 0);
    --text-muted: oklch(0.7 0 0);
    --accent: oklch(0.75 0.15 80); /* Rich Gold */
    --accent-hover: oklch(0.8 0.15 80);
    --radius: 1.5rem;
    --font-geist: 'Geist Sans', 'Geist', -apple-system, sans-serif;
}

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

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-geist);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3 {
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a:not(.btn) {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav a:not(.btn):hover {
    color: var(--text-main);
}

/* Hero */
.hero {
    padding: 8rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 1.5rem;
    padding-bottom: 8rem;
}

.bento-item {
    background-color: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

.bento-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-feature {
    grid-column: span 8;
    grid-row: span 2;
    flex-direction: row;
}

.main-feature img {
    width: 50%;
}

.secondary-feature {
    grid-column: span 4;
    grid-row: span 2;
}

.secondary-feature img {
    height: 50%;
}

.tertiary-feature {
    grid-column: span 12;
    flex-direction: row;
}

.tertiary-feature img {
    width: 40%;
}

@media (max-width: 900px) {
    .main-feature, .secondary-feature, .tertiary-feature {
        grid-column: span 12;
        flex-direction: column;
    }
    .main-feature img, .secondary-feature img, .tertiary-feature img {
        width: 100%;
        height: 300px;
    }
}

/* Pricing */
.pricing {
    padding-bottom: 8rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--accent);
    background-color: var(--surface-hover);
    transform: scale(1.02);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* FAQ */
.faq {
    padding-bottom: 8rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question::after {
    content: "+";
    color: var(--accent);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Contact */
.contact {
    padding-bottom: 8rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background-color: var(--surface);
    border-radius: var(--radius);
    padding: 4rem;
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 1rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-success {
    display: none;
    background-color: rgba(120, 255, 120, 0.1);
    color: #a8f0a8;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
}
