:root {
    --bg-color: #0B0B0E;
    --card-bg: #1A1A1D;
    --primary: #00A3FF;
    --primary-hover: #0082CC;
    --accent-red: #FF4D4D;
    --accent-gold: #FFD700;
    --text-main: #E0E0E0;
    --text-muted: #A0A0A0;
    --border-color: rgba(255, 255, 255, 0.08);
}

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

body {
    background: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(11, 11, 14, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary);
    margin-left: 5px;
    font-weight: 300;
}

#how-it-works {
    background: #111114;
    padding: 100px 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.step {
    flex: 1;
    text-align: left;
    position: relative;
}

.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    color: rgba(0, 163, 255, 0.1);
    -webkit-text-stroke: 1px var(--primary);
    margin-bottom: 20px;
}

.step h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.step p {
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.linkedin-top-link {
    color: var(--text-muted);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.linkedin-top-link:hover {
    color: var(--primary);
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
}

.hero {
    padding: 200px 0 100px;
    text-align: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 80px;
}

.badge {
    display: inline-block;
    background: rgba(0, 163, 255, 0.1);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid var(--primary);
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary-large {
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 163, 255, 0.3);
    transition: transform 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    background: var(--primary-hover);
}

.cta-urgency {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: var(--border-color);
}

.hero-image {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.hero-image img {
    width: 100%;
    display: block;
}

.hero-image .glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 163, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

#features {
    padding: 100px 0;
}

/* Pain Points Section */
.pain-points {
    padding: 100px 0;
    background: #0E0E12;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pain-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 16px;
    border-left: 3px solid var(--accent-red);
    transition: background 0.3s ease;
}

.pain-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pain-item h4 {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.pain-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Before/After Section */
.before-after {
    padding: 80px 0;
}

.comparison-card {
    display: flex;
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.comp-half {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.chaos {
    background: rgba(255, 77, 77, 0.03);
    border-right: 1px solid var(--border-color);
}

.clarity {
    background: rgba(0, 163, 255, 0.03);
}

.comp-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.chaos .comp-label { color: var(--accent-red); }
.clarity .comp-label { color: var(--primary); }

.comp-half ul {
    list-style: none;
}

.comp-half li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.chaos li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--accent-red);
}

.clarity li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.clarity li {
    font-weight: 600;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 20px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.feature-card p {
    color: var(--text-muted);
}

.brief-preview .container {
    display: block;
}

.demo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

.brief-card {
    flex: 1;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.brief-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
}

.status-pass {
    background: rgba(0, 255, 0, 0.1);
    color: #4CAF50;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
}

.output-comparison {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    width: 100%;
}

.raw-input {
    flex: 0.6;
    background: #000;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
}

.raw-input .label {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--bg-color);
    padding: 2px 10px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
}

.raw-input pre {
    color: #666;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    line-height: 1.4;
    white-space: pre-wrap;
}

.arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 300;
}

.micro-proof {
    margin-top: 25px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
    font-style: italic;
    opacity: 0.8;
}

.intake-form {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.intake-form textarea {
    margin-bottom: 20px;
    resize: none;
}

.trust-indicators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.trust-tag {
    font-size: 0.75rem;
    color: var(--primary);
    background: rgba(0, 243, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    text-align: center;
    font-weight: 500;
}

@media (max-width: 768px) {
    .trust-indicators-grid {
        grid-template-columns: 1fr;
    }
}

.intake-form select option {
    background: #0a0c10;
    color: var(--text-main);
}

/* Qualifiers */
.qualifiers {
    padding: 100px 0;
    background: #111114;
}

.qualifier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.qualifier-box {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.qualifier-box.for {
    background: rgba(0, 163, 255, 0.02);
    border-color: rgba(0, 163, 255, 0.2);
}

.qualifier-box.not-for {
    background: rgba(255, 255, 255, 0.01);
    opacity: 0.8;
}

.qualifier-box h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.qualifier-box ul {
    list-style: none;
}

.qualifier-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.qualifier-box.for li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.qualifier-box.not-for li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #444;
}

.scope-anchor {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.scope-sub {
    font-size: 0.77rem;
    color: var(--primary);
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.scope-anchor strong {
    color: var(--primary);
}

/* Trust Anchor */
.trust-anchor {
    margin: 20px 0 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-block;
    border-left: 2px solid var(--primary);
}

.trust-anchor p {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    font-style: italic;
    color: var(--text-main) !important;
}

.table-row {
    display: grid;
    grid-template-columns: 140px 120px 100px 100px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
}

.table-row.header {
    border-bottom: 2px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 700;
}

.alert-critical {
    color: var(--accent-red);
    font-weight: 700;
}

.alert-warning {
    color: var(--accent-gold);
    font-weight: 700;
}

.trend-up { color: var(--accent-red); }
.trend-down { color: #4CAF50; }
.trend-stable { color: var(--text-muted); }

.brief-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1000px;
}

.info-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.info-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.trust-anchor-expert {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: -10px;
    margin-bottom: 25px;
    text-align: left;
}

.trust-anchor-expert a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.trust-anchor-expert a:hover {
    text-decoration: underline;
}

.founder-credit {
    margin: 15px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.founder-credit a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
}

.founder-credit a:hover {
    color: var(--primary);
}

footer {
    padding: 150px 0 60px;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, #1A1A1D 0%, #001A33 100%);
    padding: 80px 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 163, 255, 0.3);
    margin-bottom: 120px;
}

.cta-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.cta-box p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .output-comparison, .qualifier-grid, .brief-preview .container {
        flex-direction: column;
    }
    .qualifier-grid {
        grid-template-columns: 1fr;
    }
    h1 { font-size: 2.5rem; }
    .hero-content { margin-bottom: 40px; }
}

