/* ===== LANDING PAGE HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
    mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 70%, transparent 100%);
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, var(--bg-dark) 35%, transparent 70%),
        linear-gradient(to top, var(--bg-dark) 5%, transparent 40%),
        linear-gradient(to bottom, var(--bg-dark) 0%, transparent 20%);
}

.hero-glow {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: pulse-glow 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 160px 40px 120px;
    width: 100%;
}

.hero-content-inner {
    max-width: 620px;
}

.hero-sub {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-top: 28px;
    max-width: 540px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-bg-image {
        width: 100%;
        opacity: 0.3;
    }

    .hero-content-inner {
        max-width: 100%;
    }
}

/* ===== CALLOUT SECTION ===== */
.callout-section {
    position: relative;
    padding: 160px 0;
    z-index: 1;
}

.callout-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 14, 24, 1) 50%, var(--bg-dark) 100%);
    z-index: -1;
}

/* ===== REALITY / VALUE VELOCITY SECTION ===== */
.reality-section {
    padding: 180px 0;
    position: relative;
    z-index: 1;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 200px 0 160px;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 50% 80%, var(--accent-glow) 0%, transparent 50%),
        linear-gradient(to bottom, var(--bg-dark) 0%, transparent 30%),
        linear-gradient(to top, var(--bg-dark) 0%, transparent 30%);
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
    position: relative;
    padding: 200px 0 120px;
    overflow: hidden;
}

.page-hero-glow {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

/* ===== MANIFESTO BLOCK (Who We Are) ===== */
.manifesto-block {
    padding: 120px 0;
}

.manifesto-text {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
}

.manifesto-text strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* ===== BLOG POST ===== */
.post-hero {
    padding: 200px 0 80px;
}

.post-meta {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.post-content {
    max-width: 720px;
    padding: 60px 0 120px;
}

.post-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.post-content h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 56px 0 20px;
}

.post-content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin: 40px 0 16px;
}

.post-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 20px 28px;
    margin: 32px 0;
    background: var(--bg-card);
    border-radius: 0 12px 12px 0;
}

.post-content blockquote p {
    color: var(--text-primary);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0;
}

.post-content code {
    font-size: 15px;
    background: var(--bg-card);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
}

.post-content a {
    color: var(--accent-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-content a:hover {
    color: var(--text-primary);
}

.back-link {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-bright);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--text-primary);
}
