

.static-page-hero {
    padding: var(--alsodid-spacing-2xl) 0 var(--alsodid-spacing-xl);
    text-align: center;
    
    background: linear-gradient(180deg, rgba(var(--alsodid-primary-rgb), 0.07) 0%, rgba(var(--alsodid-bg-darker-rgb), 0) 100%);
}

.static-page-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--alsodid-spacing-md);
}

.static-page-title {
    margin: 0 0 var(--alsodid-spacing-sm);
    color: var(--alsodid-primary);
}

.static-page-subtitle {
    font-size: 1.05rem;
    color: var(--alsodid-text-tertiary);
    max-width: 52ch;
    margin: 0 auto;
}

.static-page-body {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--alsodid-spacing-md) var(--alsodid-spacing-2xl);
}

.static-section {
    padding: var(--alsodid-spacing-xl) 0;
}

.static-section-alt {
    margin: 0 calc(var(--alsodid-spacing-md) * -1);
    padding: var(--alsodid-spacing-xl) var(--alsodid-spacing-md);
    background: color-mix(in srgb, var(--alsodid-elevate) 2.5%, transparent);
    border-top: 1px solid var(--alsodid-glass-border);
    border-bottom: 1px solid var(--alsodid-glass-border);
}

.static-section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.static-section-roomy {
    padding: calc(var(--alsodid-spacing-xl) * 1.5) 0;
}
.static-section-roomy .entry-content {
    max-width: 65ch;
}
.static-section-roomy .entry-content p {
    line-height: 1.7;
}

.static-last-updated {
    color: var(--alsodid-text-muted);
    font-size: 0.85rem;
    margin-top: -0.5rem;
}

.static-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--alsodid-spacing-lg);
    margin-top: var(--alsodid-spacing-lg);
}

.static-card {
    
    background: color-mix(in srgb, var(--alsodid-elevate) 4.5%, transparent);
    padding: var(--alsodid-spacing-lg) var(--alsodid-spacing-lg) calc(var(--alsodid-spacing-lg) * 1.1);
    transition: background var(--alsodid-transition-base);
}

.static-card:hover { background: color-mix(in srgb, var(--alsodid-elevate) 8%, transparent); }

.static-card-icon {
    display: block;
    font-size: 1.75rem;
    margin-bottom: var(--alsodid-spacing-sm);
}

.static-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.static-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.static-card .btn {
    margin-top: var(--alsodid-spacing-sm);
}

.static-card-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.static-cta {
    padding: var(--alsodid-spacing-xl);
    border-radius: var(--alsodid-radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--alsodid-spacing-sm);
}

.static-cta .entry-content { margin: 0; }

.static-toc {
    background: color-mix(in srgb, var(--alsodid-elevate) 4.5%, transparent);
    padding: var(--alsodid-spacing-md) var(--alsodid-spacing-lg);
    margin-bottom: var(--alsodid-spacing-xl);
}

.static-toc h3 {
    margin: 0 0 var(--alsodid-spacing-xs);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
    color: var(--alsodid-text-tertiary);
}

.static-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem var(--alsodid-spacing-md);
}

.static-toc a {
    font-size: 0.9rem;
    color: var(--alsodid-text-secondary);
}

.static-toc a:hover { color: var(--alsodid-primary); }

.feedback-form-wrapper {
    max-width: 560px;
    margin: var(--alsodid-spacing-lg) auto 0;
}

.feedback-form {
    padding: var(--alsodid-spacing-lg);
    border-radius: var(--alsodid-radius-lg);
    background: var(--alsodid-glass);
    border: 1px solid var(--alsodid-glass-border);
}

.form-group { margin-bottom: var(--alsodid-spacing-md); }
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--alsodid-text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--alsodid-primary);
    box-shadow: 0 0 0 3px rgba(var(--alsodid-primary-rgb), 0.15);
}

.form-group select option { background: var(--alsodid-bg-light); color: var(--alsodid-text-primary); }

.feedback-form .btn { width: 100%; margin-top: var(--alsodid-spacing-xs); }

.feedback-success-message {
    text-align: center;
    padding: var(--alsodid-spacing-xl) var(--alsodid-spacing-lg);
    border-radius: var(--alsodid-radius-lg);
    background: rgba(var(--alsodid-primary-rgb), 0.08);
    border: 1px solid rgba(var(--alsodid-primary-rgb), 0.2);
    animation: alsodid-static-slide-in 0.4s ease-out;
}

.feedback-error-message {
    padding: var(--alsodid-spacing-sm) var(--alsodid-spacing-md);
    border-radius: var(--alsodid-radius-md);
    background: rgba(var(--alsodid-liked-rgb), 0.08);
    border: 1px solid rgba(var(--alsodid-liked-rgb), 0.25);
    color: var(--alsodid-text-primary);
    font-size: 0.9rem;
    margin-top: var(--alsodid-spacing-sm);
    animation: alsodid-static-slide-in 0.3s ease-out;
}

@keyframes alsodid-static-slide-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.updates-timeline {
    position: relative;
    padding: var(--alsodid-spacing-lg) 0;
}

.updates-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--alsodid-primary) 0%, var(--alsodid-secondary) 100%);
}

.update-item {
    position: relative;
    margin-bottom: var(--alsodid-spacing-xl);
    padding: 0 50%;
}

.update-item:nth-child(odd) {
    padding-left: 0;
    padding-right: 50%;
    text-align: right;
}

.update-item::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--alsodid-primary);
    border: 4px solid var(--alsodid-bg-darker);
    border-radius: 50%;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.update-date {
    font-size: 0.85rem;
    color: var(--alsodid-primary);
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 0.4rem;
}

.update-content {
    padding: var(--alsodid-spacing-md);
    border-radius: var(--alsodid-radius-md);
    background: var(--alsodid-glass);
    border: 1px solid var(--alsodid-glass-border);
}

.update-content h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.update-content p { margin: 0 0 var(--alsodid-spacing-sm); font-size: 0.9rem; }

.update-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.update-item:nth-child(odd) .update-tags { justify-content: flex-end; }

.update-tag {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(var(--alsodid-primary-rgb), 0.12);
    color: var(--alsodid-primary);
    border: 1px solid rgba(var(--alsodid-primary-rgb), 0.25);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--alsodid-spacing-md);
    margin-top: var(--alsodid-spacing-lg);
}

.roadmap-card {
    padding: var(--alsodid-spacing-lg);
    transition: border-color var(--alsodid-transition-base);
}

.roadmap-card:hover {
    border-color: rgba(var(--alsodid-primary-rgb), 0.3);
}

.roadmap-card h3 { margin: 0 0 0.5rem; }
.roadmap-card p { margin: 0; font-size: 0.9rem; }

.cta-buttons {
    display: flex;
    gap: var(--alsodid-spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--alsodid-spacing-md);
}

@media (max-width: 760px) {
    .about-intent-tree-hero {
        text-align: left;
        margin-bottom: var(--alsodid-spacing-lg);
    }

    .about-intent-tree-title-row {
        justify-content: flex-start;
    }

    .about-intent-tree-hero > p {
        margin-left: 0;
    }

    .about-intent-tree::before {
        left: 28px;
        transform: none;
    }

    .about-intent-tree-step {
        grid-template-columns: 56px minmax(0, 1fr);
        min-height: 0;
        margin-bottom: 18px;
    }

    .about-intent-tree-step--left .about-intent-tree-card,
    .about-intent-tree-step--right .about-intent-tree-card {
        grid-column: 2;
        grid-row: 1;
    }

    .about-intent-tree-node {
        grid-column: 1;
        grid-row: 1;
        width: 46px;
        height: 46px;
    }

    .about-intent-tree-step--left .about-intent-tree-card::after,
    .about-intent-tree-step--right .about-intent-tree-card::after {
        left: -28px;
        right: auto;
        width: 28px;
    }

    .about-intent-tree-card {
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .static-page-hero { padding: var(--alsodid-spacing-xl) 0 var(--alsodid-spacing-lg); }
    .static-section-alt { margin: 0 calc(var(--alsodid-spacing-sm) * -1); padding: var(--alsodid-spacing-lg) var(--alsodid-spacing-sm); }
    .static-card-grid { grid-template-columns: 1fr; }

    .updates-timeline { padding-left: 28px; }
    .updates-timeline::before { left: 0; }
    .update-item,
    .update-item:nth-child(odd) {
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }
    .update-item::before,
    .update-item:nth-child(odd)::before { left: -28px; transform: none; }
    .update-item:nth-child(odd) .update-tags { justify-content: flex-start; }

    .roadmap-grid { grid-template-columns: 1fr; }

    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .feedback-success-message { animation: none; }
    .static-card:hover,
    .roadmap-card:hover { transform: none; }
}

.about-page-kicker {
    display: inline-block;
    margin-bottom: var(--alsodid-spacing-xs);
    color: var(--alsodid-text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: normal;
    text-transform: none;
}

.about-reading-copy {
    max-width: 72ch;
}

.about-reading-copy > p {
    margin-top: var(--alsodid-spacing-sm);
    line-height: 1.7;
    color: var(--alsodid-text-secondary);
}

.about-section-heading {
    max-width: 760px;
    margin-bottom: var(--alsodid-spacing-lg);
}

.about-section-heading > p {
    margin: var(--alsodid-spacing-xs) 0 0;
    color: var(--alsodid-text-secondary);
    line-height: 1.6;
}

.about-principle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--alsodid-spacing-lg);
    margin-top: var(--alsodid-spacing-lg);
}

.about-principle-card {
    min-height: 210px;
    position: relative;
}

.about-principle-number {
    display: inline-flex;
    margin-bottom: var(--alsodid-spacing-md);
    color: var(--alsodid-primary);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.about-intent-tree-hero {
    max-width: 760px;
    margin: 0 auto var(--alsodid-spacing-xl);
    text-align: center;
}

.about-intent-tree-title-row {
    justify-content: center;
}

.about-intent-tree-title-row h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.about-intent-tree-hero > p {
    margin: var(--alsodid-spacing-sm) auto 0;
    max-width: 680px;
    color: var(--alsodid-text-secondary);
    line-height: 1.65;
}

.about-intent-tree {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: var(--alsodid-spacing-xs) 0;
}

.about-intent-tree::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        180deg,
        var(--alsodid-pixel-pink),
        var(--alsodid-pixel-purple) 25%,
        var(--alsodid-pixel-orange) 48%,
        var(--alsodid-pixel-blue) 72%,
        var(--alsodid-watched)
    );
    opacity: 0.8;
}

.about-intent-tree-step {
    --about-tree-accent: var(--alsodid-primary);
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
    align-items: center;
    min-height: 190px;
    margin-bottom: 26px;
}

.about-intent-tree-step--follow { --about-tree-accent: var(--alsodid-pixel-pink); }
.about-intent-tree-step--discover { --about-tree-accent: var(--alsodid-pixel-purple); }
.about-intent-tree-step--hype { --about-tree-accent: var(--alsodid-pixel-orange); }
.about-intent-tree-step--plan { --about-tree-accent: var(--alsodid-pixel-blue); }
.about-intent-tree-step--connect { --about-tree-accent: var(--alsodid-watched); }

.about-intent-tree-card {
    position: relative;
    min-height: 150px;
    padding: var(--alsodid-spacing-lg);
}

.about-intent-tree-step--left .about-intent-tree-card { grid-column: 1; }
.about-intent-tree-step--right .about-intent-tree-card { grid-column: 3; }

.about-intent-tree-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 34px;
    height: 2px;
    background: var(--about-tree-accent);
    opacity: 0.7;
}

.about-intent-tree-step--left .about-intent-tree-card::after { right: -34px; }
.about-intent-tree-step--right .about-intent-tree-card::after { left: -34px; }

.about-intent-tree-node {
    grid-column: 2;
    justify-self: center;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    z-index: 2;
    border: 2px solid var(--about-tree-accent);
    border-radius: 50%;
    background: var(--alsodid-surface);
    box-shadow: 0 0 0 7px color-mix(in srgb, var(--alsodid-elevate) 2.5%, transparent);
    color: var(--about-tree-accent);
    font-size: 0.78rem;
    font-weight: 900;
}

.about-intent-tree-eyebrow {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--about-tree-accent);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: normal;
    text-transform: none;
}

.about-intent-tree-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.28rem;
    letter-spacing: -0.025em;
}

.about-intent-tree-card p {
    margin: 0;
    color: var(--alsodid-text-secondary);
    line-height: 1.58;
}

.about-intent-tree-example {
    display: block;
    margin-top: var(--alsodid-spacing-md);
    padding-top: var(--alsodid-spacing-sm);
    border-top: 1px solid var(--alsodid-glass-border);
    color: var(--alsodid-text-tertiary);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.45;
}

.about-intent-tree-loop {
    max-width: 760px;
    margin: var(--alsodid-spacing-sm) auto 0;
    text-align: center;
}

.about-intent-tree-loop strong,
.about-intent-tree-loop span {
    display: block;
}

.about-intent-tree-loop strong {
    margin-bottom: 0.35rem;
}

.about-intent-tree-loop span {
    color: var(--alsodid-text-secondary);
    font-size: 0.82rem;
    line-height: 1.5;
}

.about-intent-tree-return {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    max-width: 760px;
    margin: var(--alsodid-spacing-lg) auto 0;
    color: var(--alsodid-text-secondary);
    font-size: 0.78rem;
}

.about-intent-tree-return strong {
    color: var(--alsodid-text-primary);
}

.about-intent-tree-return-arrow {
    color: var(--alsodid-watched);
    font-size: 1.25rem;
    font-weight: 900;
}

.about-role-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-role-card {
    position: relative;
    min-height: 170px;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
}

.about-role-card__accent {
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--alsodid-primary);
    opacity: 0.75;
}

.about-role-card:nth-child(2) .about-role-card__accent { background: var(--alsodid-role-cinematographer); }
.about-role-card:nth-child(3) .about-role-card__accent { background: var(--alsodid-role-editor); }
.about-role-card:nth-child(4) .about-role-card__accent { background: var(--alsodid-role-writer); }
.about-role-card:nth-child(5) .about-role-card__accent { background: var(--alsodid-role-producer); }
.about-role-card:nth-child(6) .about-role-card__accent { background: var(--alsodid-role-composer); }

.about-role-card:hover {
    color: inherit;
}

.about-action-card {
    min-height: 210px;
    justify-content: center;
}

.about-final-cta {
    margin-top: var(--alsodid-spacing-sm);
}

@media (max-width: 768px) {
    .about-principle-grid,
    .about-role-grid {
        grid-template-columns: 1fr;
    }

    .about-principle-card,
    .about-role-card,
    .about-action-card {
        min-height: 0;
    }

    .about-how-section {
        margin-left: calc(var(--alsodid-spacing-sm) * -1);
        margin-right: calc(var(--alsodid-spacing-sm) * -1);
    }
}

.static-page--about .hf-lane-heading-title-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
}

.static-page--about .hf-lane-heading-title-row .alsodid-pixel-spectrum-mark {
    position: static;
    flex: 0 0 auto;
    margin: 0;
    transform: none;
    align-self: center;
}

.static-page--about .hf-lane-heading-title-row h2,
.static-page--about .hf-lane-heading-title-row h3 {
    margin: 0;
    min-width: 0;
    line-height: 1.1;
}

.static-page--about .about-intent-tree-title-row {
    justify-content: center;
}

.static-page--about .about-intent-tree-title-row .alsodid-pixel-spectrum-mark {
    align-self: center;
}

.static-page--about .static-page-body {
    padding-top: clamp(28px, 4vw, 52px);
}

.static-page--about .about-intro-section {
    padding-top: 0;
}

.static-card-grid--single {
    grid-template-columns: minmax(0, 620px);
    justify-content: start;
}

@media (max-width: 768px) {
    .static-page--about .hf-lane-heading-title-row,
    .static-page--about .about-intent-tree-title-row {
        justify-content: flex-start;
        align-items: center;
    }

    .static-card-grid--single {
        grid-template-columns: 1fr;
    }
}

.about-closing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.about-closing-card {
    min-height: 240px;
    justify-content: center;
}

.about-closing-card--start {
    background: var(--alsodid-bg-grad-2);
}

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

    .about-closing-card {
        min-height: 0;
    }
}
