/* Landing Page Styles - Chaotic */

/* CSS Variables (matching main app) */
:root {
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-tertiary: #21262d;
    --bg-hover: #30363d;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --border-color: #30363d;
    --accent-color: #6366f1;
    --accent-hover: #5558e3;
    --success-color: #238636;
    --warning-color: #d29922;
    --error-color: #f85149;
}

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

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-hover);
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: white;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    background:
        radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        var(--bg-primary);
}

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

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 6rem 2rem;
}

.section-alt {
    background: var(--bg-secondary);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.problem-text p {
    margin-bottom: 1.5rem;
}

.problem-text strong {
    color: var(--accent-color);
}

/* Terminal Mock */
.terminal-mock {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.terminal-mock.small {
    max-width: 500px;
    margin: 0 auto;
}

.terminal-header {
    background: var(--bg-tertiary);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27ca40; }

.terminal-title {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 0.875rem;
    line-height: 1.8;
}

.terminal-line {
    margin-bottom: 0.25rem;
}

.terminal-line .prompt {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.terminal-line.success {
    color: var(--success-color);
}

.terminal-line.error {
    color: var(--error-color);
}

.terminal-line.dim {
    color: var(--text-muted);
    font-style: italic;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.5; }
}

/* Insight Section */
.insight-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.insight-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    background: var(--bg-tertiary);
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.insight-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.2s, transform 0.2s;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.feature-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

/* Formula */
.formula {
    background: var(--bg-tertiary);
    padding: 1rem;
    border-radius: 6px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 0.875rem;
    margin: 1rem 0;
    text-align: center;
}

.state-arrears {
    color: var(--warning-color);
    font-weight: 600;
}

/* Ritual List */
.ritual-list {
    list-style: none;
    margin: 1rem 0;
}

.ritual-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.ritual-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Gates List */
.gates-list {
    margin-top: 1rem;
}

.gate-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0;
    align-items: flex-start;
}

.gate-label {
    font-weight: 600;
    font-size: 0.875rem;
    min-width: 60px;
}

.gate-label.auto { color: var(--success-color); }
.gate-label.review { color: var(--warning-color); }
.gate-label.gate { color: var(--error-color); }

.gate-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Architecture Section */
.architecture-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.arch-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    min-width: 280px;
    transition: border-color 0.2s;
}

.arch-card:hover {
    border-color: var(--accent-color);
}

.arch-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.arch-icon.cli {
    background: linear-gradient(135deg, var(--bg-hover), var(--bg-tertiary));
    color: var(--success-color);
}

.arch-icon.web {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
}

.arch-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.arch-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.arch-features {
    list-style: none;
    text-align: left;
}

.arch-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.arch-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.arch-divider {
    color: var(--text-muted);
}

/* Comparison Table */
.table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-tertiary);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-color);
    font-weight: 500;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Demo Section */
.demo-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    margin-top: -2rem;
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
}

.demo-pane {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.pane-header {
    background: var(--bg-hover);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.pane-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.demo-terminal {
    padding: 1.5rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 0.8rem;
    line-height: 1.8;
    min-height: 300px;
}

.demo-terminal .terminal-line {
    opacity: 0;
    animation: typeIn 0.3s forwards;
    animation-delay: var(--delay);
}

@keyframes typeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demo-terminal .output {
    color: var(--text-secondary);
}

.demo-terminal .error-code {
    color: var(--error-color);
    font-weight: 600;
}

.demo-terminal .remedy {
    color: var(--text-muted);
    font-style: italic;
}

.demo-terminal .cursor {
    animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.demo-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.divider-line {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

.divider-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
}

/* Web UI Demo */
.demo-webui {
    padding: 1.5rem;
    min-height: 300px;
}

.webui-notification {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(248, 81, 73, 0.1);
    border: 1px solid var(--error-color);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideIn 0.3s forwards;
    animation-delay: var(--delay);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.webui-notification.pulse {
    animation: slideIn 0.3s forwards, pulseGlow 2s infinite 3s;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(248, 81, 73, 0); }
    50% { box-shadow: 0 0 20px 4px rgba(248, 81, 73, 0.3); }
}

.notification-icon {
    color: var(--error-color);
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.notification-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.webui-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.25rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-title {
    font-weight: 600;
}

.badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-arrears {
    background: rgba(210, 153, 34, 0.2);
    color: var(--warning-color);
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ritual-checklist {
    font-size: 0.875rem;
}

.checklist-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    color: var(--text-muted);
    cursor: default;
}

.checklist-item input {
    width: 14px;
    height: 14px;
    accent-color: var(--accent-color);
}

/* CTA Section */
.cta-section {
    background:
        radial-gradient(ellipse at bottom, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        var(--bg-primary);
    text-align: center;
    padding: 8rem 2rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-terminal {
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

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

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .demo-container {
        grid-template-columns: 1fr;
    }

    .demo-divider {
        flex-direction: row;
        padding: 1rem 0;
    }

    .divider-line {
        width: 100px;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--border-color), transparent);
    }

    .divider-text {
        writing-mode: horizontal-tb;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 1rem;
    }

    .nav {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .architecture-grid {
        flex-direction: column;
    }

    .arch-divider {
        transform: rotate(90deg);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ============================================
   MANIFESTO PAGE STYLES
   ============================================ */

.manifesto-page {
    background:
        radial-gradient(ellipse at top, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        var(--bg-primary);
}

.manifesto {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
}

.manifesto-content {
    max-width: 720px;
    margin: 0 auto;
}

.manifesto-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.manifesto-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: manifestoFadeIn 0.8s ease-out;
}

.manifesto-subtitle {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 1.25rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: manifestoFadeIn 0.8s ease-out 0.2s backwards;
}

@keyframes manifestoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Manifesto Body */
.manifesto-body {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.manifesto-section {
    margin-bottom: 3rem;
    animation: manifestoFadeIn 0.6s ease-out backwards;
}

.manifesto-section:nth-child(1) { animation-delay: 0.3s; }
.manifesto-section:nth-child(2) { animation-delay: 0.4s; }
.manifesto-section:nth-child(3) { animation-delay: 0.5s; }
.manifesto-section:nth-child(4) { animation-delay: 0.6s; }
.manifesto-section:nth-child(5) { animation-delay: 0.7s; }
.manifesto-section:nth-child(6) { animation-delay: 0.8s; }

.manifesto-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.manifesto-section h3 {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.manifesto-section p {
    margin-bottom: 1.25rem;
}

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

.manifesto-section code {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 0.9em;
    background: var(--bg-tertiary);
    padding: 0.2em 0.5em;
    border-radius: 4px;
    color: var(--accent-color);
}

/* Principle Sections (indented with left border) */
.manifesto-principle {
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--bg-tertiary);
    transition: border-color 0.3s;
}

.manifesto-principle:hover {
    border-left-color: var(--accent-color);
}

/* Emphasis paragraph */
.manifesto-emphasis {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

/* Conclusion */
.manifesto-conclusion {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    padding: 2rem;
    background:
        linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, transparent 100%),
        var(--bg-secondary);
    border-radius: 12px;
    margin-top: 2rem;
}

/* CTA Buttons */
.manifesto-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    animation: manifestoFadeIn 0.6s ease-out 1s backwards;
}

/* Manifesto Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .manifesto-title,
    .manifesto-subtitle,
    .manifesto-section,
    .manifesto-cta {
        animation: none;
    }
}

/* Manifesto Responsive */
@media (max-width: 768px) {
    .manifesto {
        padding: 6rem 1.5rem 3rem;
    }

    .manifesto-title {
        font-size: 2.25rem;
    }

    .manifesto-subtitle {
        font-size: 1rem;
    }

    .manifesto-body {
        font-size: 1rem;
    }

    .manifesto-section h2 {
        font-size: 1.5rem;
    }

    .manifesto-principle {
        margin-left: 0.75rem;
        padding-left: 1rem;
    }

    .manifesto-emphasis {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .manifesto-conclusion {
        font-size: 1.25rem;
        padding: 1.5rem;
    }

    .manifesto-cta {
        flex-direction: column;
    }

    .manifesto-cta .btn-large {
        width: 100%;
    }
}
