/* BONE & OBSIDIAN BRANDING */
:root {
    --bone: #F9F7F2;
    --obsidian: #1A1A1A;
    --indigo: #2A5C82;
    --mist: #E8E6E1;
}

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

body {
    background-color: var(--bone);
    color: var(--obsidian);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.headline {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.subheadline {
    font-size: 1.3rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.brand-name {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.7;
}

/* Value Propositions */
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.prop {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--mist);
}

.prop-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

/* Price Box */
.price-box {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border: 2px dashed var(--mist);
}

.price {
    font-size: 4rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--obsidian);
}

.price-note {
    color: #666;
    margin-top: 0.5rem;
}

/* PayPal Button */
#paypal-button-container {
    max-width: 300px;
    margin: 2rem auto;
}

/* Guarantee */
.guarantee {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
footer {
    margin-top: 4rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    border-top: 1px solid var(--mist);
    padding-top: 2rem;
}

/* Form Page Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-step {
    background: white;
    padding: 3rem;
    margin: 2rem 0;
    border-radius: 8px;
    border: 1px solid var(--mist);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h2 {
    margin-bottom: 1.5rem;
    color: var(--obsidian);
}

/* Drag and Drop */
.drag-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.drop-zone {
    min-height: 300px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.drop-zone.highlight {
    border-color: var(--indigo);
    background-color: rgba(42, 92, 130, 0.05);
}

.task-item {
    background: var(--bone);
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 4px;
    cursor: move;
    border: 1px solid var(--mist);
    transition: transform 0.2s ease;
}

.task-item:hover {
    transform: translateX(5px);
}

/* Signature Canvas */
.signature-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    background: white;
}

#signature-canvas {
    border: 1px solid #ccc;
    width: 100%;
    height: 200px;
    background: white;
}

/* Processing Screen */
.processing-container {
    text-align: center;
    padding: 4rem 2rem;
}

.terminal {
    background: var(--obsidian);
    color: #00ff00;
    padding: 2rem;
    border-radius: 8px;
    font-family: monospace;
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    min-height: 200px;
}

.terminal-line {
    margin: 0.5rem 0;
    opacity: 0;
    animation: typeIn 0.5s forwards;
}

@keyframes typeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .drag-container {
        grid-template-columns: 1fr;
    }
    
    .form-step {
        padding: 1.5rem;
    }
}