/* AI Agent Guardrails Page Styles */

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 72px;
    margin-bottom: 24px;
    margin-top: 0;
    text-align: left;
    background: var(--gradient-title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
}

.hero .cta-buttons {
    justify-content: flex-start;
}

/* Claude Code terminal mock */
.hero-visual {
    display: flex;
    justify-content: center;
}

.cc-window {
    background: #0d1117;
    border-radius: 12px;
    border: 1px solid var(--glass-white-08);
    overflow: hidden;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03) inset;
    width: 100%;
    max-width: 460px;
}

.cc-chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cc-dots {
    display: flex;
    gap: 6px;
}

.cc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cc-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-placeholder);
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
    letter-spacing: 0.02em;
}

.cc-logo {
    width: 14px;
    height: 14px;
}

.cc-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
    font-size: 13px;
    line-height: 1.5;
}

.cc-agent-msg {
    color: var(--text-primary);
    font-size: 13px;
}

.cc-tool {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
}

.cc-tool-header {
    padding: 8px 12px;
    font-size: 12px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cc-tool-arrow {
    color: var(--text-placeholder);
    margin-right: 4px;
}

.cc-tool-file {
    color: var(--el-cyan);
}

.cc-tool-code {
    padding: 10px 12px;
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.cc-kw {
    color: var(--el-cyan);
    font-weight: 600;
}

.cc-hash {
    color: var(--text-placeholder);
}

.cc-fn {
    color: #dcbdfb;
}

.cc-str {
    color: #a5d6ff;
}

.cc-lunar {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
}

.cc-lunar-warn {
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.12);
    color: var(--warning);
}

.cc-lunar-pass {
    background: var(--glow-green-06);
    border: 1px solid rgba(0, 255, 136, 0.12);
    color: var(--el-green);
}

.cc-lunar-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    white-space: nowrap;
}

/* Problem Section — zigzag rows */
.problem-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.problem-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.problem-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Visual 1: Context file fading into noise */
.context-file {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--glass-white-08);
}

.cf-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-white-08);
}

.cf-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-white-20);
}

.cf-name {
    font-family: monospace;
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 6px;
}

.cf-body {
    position: relative;
    padding: 16px 20px 40px;
    background: var(--bg-deepest);
    font-family: monospace;
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--text-muted);
}

.cf-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cf-heading {
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 2px;
}

.cf-blank {
    height: 8px;
}

.cf-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-deepest) 100%);
    pointer-events: none;
}

.cf-overflow {
    padding: 10px 20px;
    background: var(--bg-deepest);
    font-family: monospace;
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.5;
    font-style: italic;
    border-top: 1px dashed var(--glass-white-08);
}

/* Visual 2: Blind timeline */
.blind-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.bt-point {
    flex-shrink: 0;
    text-align: center;
}

.bt-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--glass-white-20);
    margin: 0 auto 8px;
}

.bt-dot-fail {
    background: var(--error);
    box-shadow: 0 0 12px rgba(255, 100, 101, 0.4);
}

.bt-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.bt-blind {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
}

.bt-bar {
    width: 100%;
    height: 2px;
    margin-top: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--glass-white-20) 0px,
        var(--glass-white-20) 6px,
        transparent 6px,
        transparent 12px
    );
}

.bt-blind-label {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.6;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bt-failures {
    font-size: 13px;
    font-weight: 700;
    color: var(--error);
    margin-top: 4px;
    white-space: nowrap;
}

/* Problem → Solution pivot */
.problem-pivot {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-white-08);
}

.pivot-problem,
.pivot-solution {
    padding: 36px 40px;
}

.pivot-problem {
    background: var(--before-bg);
}

.pivot-solution {
    background: var(--after-bg);
}

.pivot-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 12px;
}

.pivot-problem .pivot-label {
    color: var(--before-red);
}

.pivot-solution .pivot-label {
    color: var(--el-green);
}

.pivot-statement {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.pivot-problem .pivot-statement {
    color: var(--text-secondary);
}

.pivot-solution .pivot-statement {
    color: var(--text-primary);
}

.pivot-divider {
    width: 1px;
    background: linear-gradient(180deg, var(--before-red) 0%, var(--el-green) 100%);
    opacity: 0.3;
}

/* Agent Hooks Timeline */
.hooks-timeline {
    max-width: 700px;
    margin: 0 auto 40px;
}

.tl-example {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}

.tl-labels {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    margin-bottom: 8px;
}

.tl-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tl-label-agent {
    text-align: right;
    color: var(--text-secondary);
}

.tl-label-lunar {
    text-align: left;
    color: var(--el-cyan);
}

.tl-labels::before {
    content: '';
    order: 1;
}

.tl-label-agent {
    order: 0;
}

.tl-label-lunar {
    order: 2;
}

.tl-track {
    position: relative;
}

.tl-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        180deg,
        var(--glass-white-08) 0%,
        var(--glass-white-20) 50%,
        var(--glass-white-08) 100%
    );
    transform: translateX(-50%);
}

.tl-entry {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
}

.tl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-white-20);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.tl-dot-fail {
    background: var(--warning);
    box-shadow: 0 0 10px var(--glow-amber-20);
}

.tl-dot-pass {
    background: var(--el-green);
    box-shadow: 0 0 10px var(--glow-green-20);
}

.tl-spacer {
    min-height: 1px;
}

.tl-agent .tl-content {
    text-align: right;
}

.tl-lunar .tl-content {
    text-align: left;
}

.tl-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tl-code {
    display: inline-block;
    font-family: monospace;
    font-size: 13px;
    color: var(--el-cyan);
    background: var(--glow-cyan-06);
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid var(--glow-cyan-15);
    white-space: nowrap;
}

.tl-hook-icon {
    flex-shrink: 0;
    opacity: 0.6;
}

.tl-result {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
}

.tl-lunar-glyph {
    width: 16px;
    height: 14px;
    flex-shrink: 0;
}

.tl-fail {
    color: var(--warning);
}

.tl-pass {
    color: var(--el-green);
}

.tl-evaluated {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    opacity: 0.7;
}

.tl-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Bookend entries — agent "thought stream" framing */
.tl-bookend {
    padding: 10px 0;
}

.tl-bookend .tl-content {
    opacity: 0.5;
}

.tl-thought {
    font-family: monospace;
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

.tl-dot-muted {
    width: 8px;
    height: 8px;
    background: var(--glass-white-08);
    border: 1px solid var(--glass-white-20);
}

.hooks-note {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* Pipeline section background */
.pipeline-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, #111828 50%, var(--bg-main) 100%);
    overflow: visible;
}

/* SDLC Timeline */
.sdlc-timeline {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 0 0;
}

.timeline-name-row {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
}

.stage-name {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
}

.timeline-stages {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    position: relative;
}

.timeline-stages::before {
    content: '';
    position: absolute;
    left: -60px;
    right: -60px;
    top: 8.5px;
    height: 3px;
    background: linear-gradient(
        90deg,
        rgba(168, 85, 247, 0.2) 0%,
        rgba(168, 85, 247, 0.75) 20%,
        rgba(0, 212, 255, 0.75) 50%,
        rgba(0, 255, 136, 0.75) 80%,
        rgba(0, 255, 136, 0.2) 100%
    );
    border-radius: 2px;
}

.timeline-label {
    position: absolute;
    top: -22px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.timeline-label-start {
    left: -60px;
    color: var(--ai-purple-light);
}

.timeline-label-end {
    right: -60px;
    color: var(--success);
}

.stage-icon {
    width: 32px;
    height: 32px;
    display: block;
    margin: 0 auto 6px;
}

.timeline-stage {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-stage:not(:last-child)::after {
    content: '›';
    position: absolute;
    top: -2px;
    right: -18px;
    font-size: 36px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    z-index: 3;
    line-height: 20px;
}

.stage-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    border: 3px solid var(--bg-main);
}

.stage-dot-purple {
    background: var(--ai-purple);
    box-shadow: 0 0 14px var(--glow-purple-30);
}

.stage-dot-cyan {
    background: var(--el-cyan);
    box-shadow: 0 0 14px var(--glow-cyan-30);
}

.stage-dot-green {
    background: var(--success);
    box-shadow: 0 0 14px var(--glow-green-30);
}

.stage-connector {
    width: 2px;
    height: 32px;
    flex-shrink: 0;
}

.stage-connector-purple {
    background: linear-gradient(180deg, var(--ai-purple) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.stage-connector-cyan {
    background: linear-gradient(180deg, var(--el-cyan) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.stage-connector-green {
    background: linear-gradient(180deg, var(--success) 0%, rgba(0, 255, 136, 0.1) 100%);
}

/* Enforce cards */
.enforce-card {
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
}

.enforce-card.purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 2px solid rgba(168, 85, 247, 0.4);
}

.enforce-card.cyan {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 2px solid rgba(0, 212, 255, 0.4);
}

.enforce-card.green {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12) 0%, rgba(0, 255, 136, 0.05) 100%);
    border: 2px solid rgba(0, 255, 136, 0.4);
}

.enforce-card-glyph {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 16px;
    height: 16px;
}

.enforce-card-icon {
    width: 36px;
    height: 36px;
}

.enforce-card-icon img {
    width: 36px;
    height: 36px;
}

.enforce-card-title {
    font-size: 18px;
    font-weight: 700;
}

.enforce-card.purple .enforce-card-title {
    color: var(--ai-purple-light);
}

.enforce-card.cyan .enforce-card-title {
    color: var(--el-cyan);
}

.enforce-card.green .enforce-card-title {
    color: var(--success);
}

.enforce-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.enforce-card-bullets li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    padding: 3px 0 3px 16px;
    position: relative;
}

.enforce-card-bullets li::before {
    content: '›';
    position: absolute;
    left: 2px;
    font-weight: 700;
    font-size: 14px;
}

.enforce-card.purple .enforce-card-bullets li::before {
    color: var(--ai-purple-light);
}

.enforce-card.cyan .enforce-card-bullets li::before {
    color: var(--el-cyan);
}

.enforce-card.green .enforce-card-bullets li::before {
    color: var(--success);
}

.enforce-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px 0 0;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.enforce-footer .footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-secondary);
}

.enforce-footer .footer-divider {
    font-size: 20px;
    color: var(--text-dark-gray);
}

/* Three Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    row-gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.property-item {
    display: flex;
    gap: 20px;
}

.property-icon {
    flex-shrink: 0;
}

.property-icon img {
    width: 48px;
    height: 48px;
}

.property-content h3 {
    font-size: 20px;
    color: var(--el-cyan);
    margin-bottom: 10px;
    min-height: 2.4em;
}

.property-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Comparison Table */
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--shadow-cta-hover);
}

.comparison-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    border-bottom: 1px solid var(--glow-cyan-10);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-section-dark) 100%);
}

.comparison-header .comparison-cell {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-header .lunar-header {
    gap: 10px;
}

.comparison-logo {
    height: 24px;
    width: auto;
    flex-shrink: 0;
}

.comparison-cell {
    padding: 20px 24px;
    font-size: 15px;
    color: var(--text-tertiary);
    background: linear-gradient(135deg, var(--bg-section-dark) 0%, var(--bg-main) 100%);
    border-right: 1px solid var(--glow-cyan-10);
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-row:nth-child(even) .comparison-cell {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-section-dark) 100%);
}

.comparison-cell.prompt-cell {
    border-left: 3px solid var(--before-red);
}

.comparison-cell.lunar-cell {
    border-left: 3px solid var(--el-cyan);
}

.comparison-cell .cell-bad {
    color: var(--before-red);
    font-weight: 600;
}

.comparison-cell .cell-good {
    color: var(--success);
    font-weight: 600;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.tool-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-section-dark) 100%);
    border-radius: 12px;
    padding: 30px 20px;
    border: 2px solid var(--shadow-cta-hover);
    text-align: center;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tool-card:hover {
    border-color: var(--el-cyan);
}

.tool-logo {
    width: 40px;
    height: 40px;
}

.tool-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.tools-note {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* CTA Section override */
.cta-section {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-section-dark) 100%);
    text-align: center;
}

.cta-section p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-closing {
    margin-top: 30px;
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .timeline-stages::before {
        left: -40px;
        right: -40px;
    }

    .timeline-label-start {
        left: -40px;
    }

    .timeline-label-end {
        right: -40px;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 48px;
        line-height: 56px;
        text-align: center;
    }

    .hero .subtitle {
        text-align: center;
    }

    .hero .cta-buttons {
        justify-content: center;
    }

    .cc-window {
        max-width: 400px;
        margin: 0 auto;
    }

    .properties-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .timeline-stages::before {
        left: -30px;
        right: -30px;
    }

    .timeline-label-start {
        left: -30px;
    }

    .timeline-label-end {
        right: -30px;
    }
}

@media (max-width: 900px) {
    .timeline-label {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero .subtitle {
        font-size: 18px;
    }

    .cc-body {
        padding: 16px;
        font-size: 12px;
    }

    .cc-tool-code {
        font-size: 12px;
    }

    .problem-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hooks-timeline {
        max-width: 100%;
    }

    .tl-labels {
        display: flex;
        justify-content: flex-start;
        padding-left: 24px;
    }

    .tl-labels::before {
        display: none;
    }

    .tl-label-agent {
        text-align: left;
    }

    .tl-label-lunar {
        display: none;
    }

    .tl-entry {
        grid-template-columns: 12px 1fr;
        gap: 12px;
        padding: 12px 0;
    }

    .tl-content {
        text-align: left;
    }

    .tl-dot {
        order: 0;
    }

    .tl-spacer {
        display: none;
    }

    .tl-agent .tl-content,
    .tl-lunar .tl-content {
        text-align: left;
        order: 2;
    }

    .tl-track::before {
        left: 6px;
    }

    .tl-code {
        font-size: 12px;
    }

    /* Timeline: stack vertically on mobile */
    .timeline-name-row {
        display: none;
    }

    .timeline-stages {
        flex-direction: column;
        gap: 16px;
    }

    .timeline-stages::before,
    .timeline-label,
    .stage-dot,
    .stage-connector {
        display: none;
    }

    .timeline-stage::after {
        display: none;
    }

    .comparison-row.comparison-header {
        display: none;
    }

    .comparison-row {
        display: flex;
        flex-direction: column;
    }

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid var(--glow-cyan-10);
    }

    .comparison-row .comparison-cell:last-child {
        border-bottom: none;
    }

    .comparison-row:not(.comparison-header) .comparison-cell:first-child {
        font-weight: 700;
        background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-section-dark) 100%);
    }

    .comparison-row .comparison-cell.prompt-cell::before {
        content: 'Prompt-based Rules';
        display: block;
        font-weight: 700;
        margin-bottom: 6px;
        color: var(--before-red);
    }

    .comparison-row .comparison-cell.lunar-cell::before {
        content: 'Lunar Agent Hooks';
        display: block;
        font-weight: 700;
        margin-bottom: 6px;
        color: var(--el-cyan);
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .enforce-footer {
        flex-direction: column;
        gap: 8px;
    }

    .enforce-footer .footer-divider {
        display: none;
    }

    .problem-pivot {
        grid-template-columns: 1fr;
    }

    .pivot-problem,
    .pivot-solution {
        padding: 28px 24px;
    }

    .pivot-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, var(--before-red) 0%, var(--el-green) 100%);
        opacity: 0.3;
    }
}

@media (max-width: 500px) {
    .property-icon img {
        width: 40px;
        height: 40px;
    }

    .cf-body {
        padding: 12px 14px 40px;
        font-size: 11px;
    }
}
