:root {
    --bg: #030303;
    --surface: #0A0A0A;
    --border: #1F1F1F;
    --text-main: #EDEDED;
    --text-muted: #888888;
    --accent: #D4C5A9;

    --font-serif: 'Instrument Serif', serif;
    --font-sans: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

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

body::after {
    content: "";
    position: fixed; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 99;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.mono { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: -0.02em; }
.serif { font-family: var(--font-serif); }
.text-muted { color: var(--text-muted); }
.accent { color: var(--accent); }

/* HEADER */
header {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}
.status-badge {
    background: rgba(212, 197, 169, 0.1);
    color: var(--accent);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 197, 169, 0.2);
    font-size: 0.7rem;
}

/* HERO */
.hero {
    padding: 8rem 0 4rem;
    max-width: 820px;
}
h1 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.hero-sub {
    font-size: 1.35rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: var(--font-serif);
    font-style: italic;
}
.hero-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.hero-meta span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}
.hero-qualifier {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ALPHA STATUS */
.alpha-status {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}
.alpha-status-label {
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.05em;
}
.alpha-status-items {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.status-item {
    font-family: var(--font-mono);
    font-size: 0.75rem;
}
.status-live {
    color: #4ade80;
}
.status-coming {
    color: var(--text-muted);
}

/* PROOF TABLE */
.proof {
    margin-bottom: 5rem;
}
.proof-header {
    margin-bottom: 2rem;
}
.proof-header h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.proof-header p {
    color: var(--text-muted);
    font-size: 1rem;
}
.proof-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
}
.proof-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}
.proof-table th {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
}
.proof-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.proof-table tr:last-child td {
    border-bottom: none;
}
.proof-table .category { color: var(--text-muted); }
.proof-table .result { color: var(--accent); }
.proof-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border);
}
.proof-note strong { color: var(--text-main); }
.proof-source {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 1rem;
    opacity: 0.7;
}

/* SAMPLES */
.samples { margin-bottom: 5rem; }
.samples-header {
    margin-bottom: 2rem;
}
.samples-header h2 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.samples-header p {
    color: var(--text-muted);
    font-size: 1rem;
}
.samples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
@media(max-width: 1000px) { .samples-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 640px) { .samples-grid { grid-template-columns: 1fr; } }

.sample-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.75rem;
    border-radius: 4px;
}
.sample-media {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #151515;
    background: #050505;
    aspect-ratio: 4/5;
}
.sample-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.sample-media img:hover { opacity: 1; }
.sample-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.6rem;
    align-items: baseline;
}
.sample-title { font-size: 0.9rem; font-weight: 400; }
.sample-tags {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* DIFFERENTIATION */
.different {
    margin-bottom: 5rem;
    padding: 2.5rem;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: 4px;
}
.different h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
}
.different p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 750px;
    margin-bottom: 1rem;
    line-height: 1.7;
}
.different p:last-of-type { margin-bottom: 0; }
.different strong {
    color: var(--text-main);
    font-weight: 500;
}

/* TRY YOUR PRODUCT CTA */
.try-product {
    background: linear-gradient(135deg, rgba(212, 197, 169, 0.1) 0%, rgba(212, 197, 169, 0.02) 100%);
    border: 1px solid rgba(212, 197, 169, 0.25);
    padding: 3rem;
    margin-bottom: 5rem;
    border-radius: 4px;
}
.try-product h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 400;
}
.try-product > p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.try-product > p strong {
    color: var(--text-main);
    font-weight: 400;
}
.try-product-no-install {
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.try-product-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    margin: 1.5rem 0;
}
@media(max-width: 768px) { .try-product-form { grid-template-columns: 1fr; } }
.try-product-form input {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
}
.try-product-form input:focus {
    outline: none;
    border-color: var(--accent);
}
.try-product-form input::placeholder { color: var(--text-muted); }
.try-product-form button {
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 600;
    transition: background 0.3s;
}
.try-product-form button:hover { background: var(--text-main); }
.try-product-details {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.try-product-requirements {
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border);
}
.try-product-requirements h3 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.try-product-requirements ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}
.try-product-requirements li {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.try-product-requirements li::before {
    content: "✓ ";
    color: var(--accent);
}
.try-product-privacy {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    margin-top: 1rem;
    opacity: 0.9;
}

/* HOW IT WORKS */
.how-it-works {
    margin-bottom: 5rem;
}
.how-it-works-header {
    margin-bottom: 2rem;
}
.how-it-works-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.how-it-works-header p {
    color: var(--text-muted);
    font-size: 1rem;
}
.steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.step {
    display: grid;
    grid-template-columns: 3rem 1fr auto;
    gap: 1.5rem;
    align-items: start;
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
}
@media(max-width: 640px) {
    .step {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .step-time { text-align: left; }
}
.step-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    background: rgba(212, 197, 169, 0.1);
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.step-content h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    font-weight: 500;
}
.step-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.step-time {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: right;
    white-space: nowrap;
}
.step-example {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: var(--bg);
    border-radius: 3px;
    font-size: 0.8rem;
}
.step-example .label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}
.step-example .before {
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}
.step-example .after {
    color: var(--text-main);
    font-style: italic;
}
.step-note {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    margin-top: 0.5rem;
    opacity: 0.9;
}
.steps-footer {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(212, 197, 169, 0.05);
    border: 1px dashed var(--border);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.steps-footer strong {
    color: var(--text-main);
}

/* TRUST / QUALITY */
.trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 5rem;
}
@media(max-width: 768px) { .trust { grid-template-columns: 1fr; } }
.trust-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 4px;
}
.trust-card h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0.4rem 0 0.6rem;
}
.trust-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
}
.trust-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--accent);
}

/* FAQ */
.faq {
    margin-bottom: 5rem;
}
.faq h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media(max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item {
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
}
.faq-item h3 {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
}
.faq-item p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* FOOTER */
footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-contact {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-contact a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 197, 169, 0.35);
}
.footer-contact a:hover {
    border-bottom-color: rgba(212, 197, 169, 0.8);
}
