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

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #999999;
    --accent: #666666;
    --border-light: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
}

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

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0));
    backdrop-filter: blur(10px);
    padding: 20px 0;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: -80px;
    padding: 120px 40px 60px;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 600;
    letter-spacing: 8px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-description {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-description p {
    margin: 10px 0;
    font-weight: 300;
}

.hero-cta {
    font-size: 20px;
    font-weight: 500;
    margin-top: 40px;
    letter-spacing: 4px;
}

.hero-image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1400px;
    height: 70vh;
    z-index: 0;
    opacity: 0.3;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

/* Manifesto Section */
.manifesto {
    padding: 120px 40px;
    text-align: center;
}

.manifesto-text {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 2px;
    font-weight: 300;
    color: var(--text-muted);
}

/* Understanding Section */
.understanding {
    padding: 80px 40px;
    background: var(--secondary-dark);
}

.understanding h2,
.copywriting h2,
.integration h2,
.personal-story h2,
.services h2,
.credentials h2,
.writing-section h2,
.contact-section h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 60px;
    line-height: 1.8;
    font-weight: 300;
}

.understanding-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.understanding-item h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.understanding-item ul {
    list-style: none;
    font-size: 14px;
    line-height: 2;
    color: var(--text-muted);
}

.understanding-item p {
    font-size: 14px;
    line-height: 2;
    color: var(--text-muted);
}

/* Copywriting Section */
.copywriting {
    padding: 80px 40px;
}

.copywriting-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}


.copywriting-content ul {
    list-style: none;
    font-size: 14px;
    line-height: 2.5;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.copywriting-description {
    font-size: 14px;
    color: var(--text-muted);
    margin: 20px 0;
}

/* Integration Section */
.integration {
    padding: 80px 40px;
    background: var(--secondary-dark);
}

.integration-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.integration-content p {
    font-size: 14px;
    line-height: 2;
    color: var(--text-muted);
    margin: 20px 0;
}

.integration-grid {
    margin: 40px 0;
}

.integration-grid h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 15px 0;
    letter-spacing: 1px;
}

.integration-content ul {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 30px auto;
}

.integration-content ul li {
    font-size: 14px;
    line-height: 2;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.integration-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
}

.integration-note {
    font-size: 14px;
    line-height: 2;
    color: var(--text-muted);
    margin: 20px 0;
}

/* Personal Story Section */
.personal-story {
    padding: 100px 40px;
}

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

.story-content p {
    font-size: 15px;
    line-height: 2;
    color: var(--text-muted);
    margin: 25px 0;
    font-weight: 300;
}

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

.story-highlight {
    font-size: 16px !important;
    color: var(--text-light) !important;
    margin: 40px 0 !important;
    padding: 30px;
    border-left: 2px solid var(--accent);
}

/* Services Section */
.services {
    padding: 100px 40px;
    background: var(--secondary-dark);
}

.help-intro {
    text-align: center;
    max-width: 700px;
    margin: 40px auto 80px;
}

.help-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
}

.help-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.help-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    padding: 40px;
    transition: all 0.3s ease;
}

.help-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.help-card h3 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.help-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.help-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.help-examples span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    padding: 6px 12px;
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.work-approach {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    padding: 40px;
}

.work-approach h3 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.work-approach p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.work-approach em {
    color: var(--text-light);
    font-style: italic;
}

.work-cta {
    text-align: center;
}

.work-cta p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.work-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--text-light);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.work-btn:hover {
    background: var(--text-muted);
    transform: translateY(-2px);
}

/* Credentials Section */
.credentials {
    padding: 100px 40px;
}

.credentials-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.credentials-content p {
    font-size: 14px;
    line-height: 2;
    color: var(--text-muted);
    margin: 20px 0;
}

.credentials-highlight {
    font-size: 18px !important;
    color: var(--text-light) !important;
    margin: 40px 0 !important;
    font-weight: 400;
}

.signature {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-top: 40px;
    color: var(--text-light);
}

/* Writing Section */
.writing-section {
    padding: 100px 40px;
    background: var(--secondary-dark);
}

.writing-content {
    max-width: 1200px;
    margin: 0 auto;
}

.writing-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0 40px;
}

.writing-preview .writing-card.featured {
    grid-column: span 2;
    background: rgba(255, 255, 255, 0.04);
}

.writing-actions {
    text-align: center;
    margin: 40px 0;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--border-light);
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.view-all-btn:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-2px);
}

.writing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    padding: 30px;
    transition: all 0.3s ease;
    text-align: left;
}

.writing-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.writing-card h3 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.writing-meta {
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.writing-card p:not(.writing-meta) {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.read-more {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    transform: translateX(5px);
    color: var(--text-light);
}

.writing-cta {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
}

.writing-cta p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: var(--text-muted);
}

.email-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.subscribe-btn {
    padding: 12px 30px;
    background: var(--text-light);
    color: var(--primary-dark);
    border: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.subscribe-btn:hover {
    background: var(--text-muted);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 120px 40px;
}

.contact-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--text-light);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.contact-button:hover {
    background: var(--text-muted);
    transform: translateY(-2px);
}

.contact-social {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--text-light);
}

/* Footer */
footer {
    padding: 60px 40px;
    border-top: 1px solid var(--border-light);
}

footer .container {
    text-align: center;
}

.footer-text {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }
    
    .hero-title {
        letter-spacing: 4px;
    }
    
    .understanding-grid,
    .help-areas,
    .writing-preview {
        grid-template-columns: 1fr;
    }
    
    .writing-preview .writing-card.featured {
        grid-column: span 1;
    }
    
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}