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

:root {
    --primary-black: #0B0B0D;
    --secondary-bone: #F5F3EF;
    --accent-gold: #B89B5E;
    --accent-gold-muted: #A88F5A;
    --text-dark: #1a1a1a;
    --text-muted: #6b6b6b;
    --text-light: #9a9a9a;
    --border-light: #e5e2dc;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--secondary-bone);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

/* HERO - Confidential briefing cover */
.hero {
    background: var(--primary-black);
    color: white;
    padding: 100px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(184, 155, 94, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
    animation: ambientDrift 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
}

@keyframes ambientDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(2%, 1%) scale(1.02);
    }
}

.hero-content {
    padding-bottom: 64px;
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(184, 155, 94, 0.3);
}

.hero h1 {
    color: #f8f7f5;
    font-size: 1.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    line-height: 1.22;
    letter-spacing: -0.015em;
}

.hero h1 .gold {
    color: var(--accent-gold);
    letter-spacing: 0.04em;
}

/* Document micro-details */
.doc-label {
    position: absolute;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(184, 155, 94, 0.4);
}

.doc-label-top-left {
    top: 24px;
    left: 24px;
}

.doc-label-top-right {
    top: 24px;
    right: 24px;
}

.doc-label-bottom-right {
    bottom: 60px;
    right: 24px;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: #a0a0a0;
    max-width: 480px;
    margin: 0 auto 14px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-qualifier {
    font-size: 0.75rem;
    color: #666666;
    margin: 0 auto 32px;
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    background: transparent;
    color: var(--accent-gold);
    padding: 14px 32px;
    border: 1px solid var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: rgba(184, 155, 94, 0.1);
}

.authority-line {
    border-top: 1px solid #1f1f1f;
    padding: 16px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.authority-line p {
    color: #555555;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Credibility footnote */
.credibility-note {
    padding: 24px 0 0;
    text-align: left;
    border-top: 1px solid var(--border-light);
    margin-top: 0;
}

.credibility-note p {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.3px;
    font-style: italic;
    position: relative;
    padding-left: 16px;
}

.credibility-note p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: var(--accent-gold);
}

/* Section Headers */
.section-header {
    padding: 80px 0 24px;
    text-align: left;
}

.section-header-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0;
}

/* Section Statements */
.section-statement {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 48px;
    max-width: 540px;
    letter-spacing: -0.01em;
}

/* OBSERVED FINDINGS (Pain Points) */
.pain-points {
    padding: 0 0 80px;
    background: var(--secondary-bone);
}

.pain-grid-wrapper {
    padding-left: 32px;
    position: relative;
}

.pain-grid-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-gold) 0%, rgba(184, 155, 94, 0.2) 100%);
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.pain-card {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.pain-card:last-child {
    border-bottom: none;
}

.pain-card::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 32px;
    width: 9px;
    height: 9px;
    background: var(--secondary-bone);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
}

.pain-number {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.pain-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.pain-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* DIAGNOSTIC MODULES (What You Get) */
.what-you-get {
    padding: 0 0 80px;
    background: #ffffff;
}

.what-you-get .section-header {
    border-top: 1px solid var(--border-light);
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-item {
    background: var(--secondary-bone);
    padding: 28px 24px;
    position: relative;
    border-top: 2px solid var(--accent-gold);
}

.benefit-number {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 1px;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    margin-bottom: 14px;
}

.benefit-content h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* CONTROLLED PROCEDURE (Process) */
.how-it-works {
    padding: 80px 0;
    background: var(--primary-black);
}

.how-it-works .section-header {
    padding-top: 0;
    border-top: none;
}

.how-it-works .section-header-label {
    color: var(--accent-gold);
}

.how-it-works .section-statement {
    color: #ffffff;
}

.steps-list {
    display: flex;
    gap: 0;
    position: relative;
}

.steps-list::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, rgba(184, 155, 94, 0.3) 50%, var(--accent-gold) 100%);
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.step-marker {
    width: 40px;
    height: 40px;
    background: var(--primary-black);
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.step-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.step-connector {
    display: none;
}

.step-content h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: #ffffff;
}

.step-content p {
    color: #888888;
    font-size: 13px;
    line-height: 1.65;
    max-width: 180px;
    margin: 0 auto;
}

/* EXPECTATIONS - Advisory disclaimer */
.promise {
    padding: 0 0 80px;
    background: var(--secondary-bone);
}

.promise .section-header {
    border-top: 1px solid var(--border-light);
}

.promise-content {
    padding-left: 24px;
    border-left: 2px solid var(--accent-gold);
}

.promise-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.7;
}

.promise-content p:last-child {
    margin-bottom: 0;
}

.promise-content strong {
    color: var(--text-dark);
    font-weight: 500;
}

/* REQUEST ACCESS (Form Section) */
.audit-form {
    padding: 0 0 100px;
    background: #ffffff;
}

.audit-form .section-header {
    padding-top: 80px;
    border-top: 1px solid var(--border-light);
}

.audit-form .section-statement {
    margin-bottom: 16px;
}

.form-intro {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.7;
    max-width: 440px;
}

.form-reassurance {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 40px;
    letter-spacing: 0.2px;
}

.form-container {
    max-width: 100%;
    margin: 0;
}

.ghl-form-placeholder {
    background: var(--secondary-bone);
    border: 1px solid var(--accent-gold);
    padding: 48px;
    text-align: center;
    position: relative;
    transition: border-color 0.2s ease;
}

.ghl-form-placeholder:hover {
    border-color: #9a8550;
}

.ghl-form-placeholder::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--accent-gold);
}

.form-selectivity-note {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.3px;
    margin-bottom: 24px;
    font-style: italic;
}

.placeholder-note {
    color: var(--text-light);
    font-size: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Closing editorial pull-quote */
.closing-thought {
    padding: 80px 0;
    background: var(--secondary-bone);
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.closing-thought-content {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.closing-thought-content::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent-gold);
    margin: 0 auto 32px;
}

.closing-thought p {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.closing-thought p .gold {
    color: var(--accent-gold);
}

/* Final CTA - Removed (form is the CTA) */
.final-cta {
    display: none;
}

/* Footer */
.footer {
    padding: 32px 0;
    background: var(--primary-black);
}

.footer p {
    color: #555555;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 28px;
    }
    
    .hero {
        padding: 70px 0 0;
    }
    
    .hero-content {
        padding-bottom: 48px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .section-header {
        padding: 60px 0 20px;
    }
    
    .section-statement {
        font-size: 1.25rem;
        margin-bottom: 36px;
    }
    
    .pain-points, .what-you-get, .promise, .audit-form {
        padding: 0 0 60px;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .pain-grid-wrapper {
        padding-left: 28px;
    }
    
    .pain-card::before {
        left: -32px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .steps-list {
        flex-direction: column;
        gap: 40px;
    }
    
    .steps-list::before {
        display: none;
    }
    
    .step-content p {
        max-width: 100%;
    }
    
    .ghl-form-placeholder {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .section-statement {
        font-size: 1.15rem;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 11px;
    }
    
    .pain-grid-wrapper {
        padding-left: 24px;
    }
    
    .pain-card::before {
        left: -28px;
        width: 7px;
        height: 7px;
    }
}