:root {
    --color-primary: #10b981;
    /* Emerald 500 - Matches "Formula Foundry" Green */
    --color-primary-dark: #059669;
    --color-navy: #0f172a;
    /* Slate 900 - Dark text */
    --color-slate: #64748b;
    /* Slate 500 - Subtext */
    --color-bg: #ffffff;
    --color-surface: #f8fafc;
    --color-border: #e2e8f0;

    --font-main: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: var(--font-main);
    color: var(--color-navy);
    background-color: var(--color-bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

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

/* --- Navigation --- */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-navy);
}

.logo-icon-img {
    height: 24px;
    width: auto;
    border-radius: 4px;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 32px;
        font-size: 14px;
        font-weight: 500;
        color: var(--color-slate);
    }

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 99px;
    /* Pill shape */
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

/* Background Effects */
.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: -2;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: -150px;
    z-index: -1;
    pointer-events: none;
}

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

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 99px;
    color: #166534;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.badge .dot {
    width: 6px;
    height: 6px;
    background: #16a34a;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--color-navy);
}

.highlight {
    color: var(--color-primary);
}

.hero-subtext {
    font-size: 18px;
    color: var(--color-slate);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-outline {
    background: white;
    border: 1px solid var(--color-border);
    color: var(--color-navy);
    padding: 14px 28px;
    border-radius: 99px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--color-slate);
    background: var(--color-surface);
}

.hero-note {
    font-size: 12px;
    color: #94a3b8;
    margin-left: 12px;
}

/* --- Hero Visual (Browser Mock) --- */
.hero-visual {
    position: relative;
}

.browser-window {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.browser-window:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.browser-header {
    background: #f1f5f9;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
}

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

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.dots span:nth-child(1) {
    background: #ef4444;
}

.dots span:nth-child(2) {
    background: #f59e0b;
}

.dots span:nth-child(3) {
    background: #10b981;
}

.address-bar {
    flex: 1;
    background: white;
    border-radius: 6px;
    height: 24px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 11px;
    color: #94a3b8;
    border: 1px solid #e2e8f0;
}

.browser-body {
    height: 340px;
    background: #ffffff;
    position: relative;
    padding: 20px;
}

/* Mock Website */
/* Mock Website */
.mock-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.mock-logo {
    font-weight: 700;
    font-size: 13px;
    color: #334155;
}

.mock-links {
    display: flex;
    gap: 12px;
}

.mock-links span {
    font-size: 10px;
    color: #94a3b8;
}

.mock-links span.active {
    color: #3b82f6;
    font-weight: 600;
}

.mock-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 0 20px;
}

.mock-h1 {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.mock-p {
    font-size: 11px;
    color: #64748b;
    max-width: 240px;
}

.mock-row {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.mock-btn {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.mock-btn.primary {
    background: #3b82f6;
    color: white;
}

.mock-btn.secondary {
    background: #e2e8f0;
    color: #475569;
}

.mock-graphic {
    margin-top: 16px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    width: 100%;
    justify-content: center;
    background: #f8fafc;
    border-radius: 6px;
    padding-bottom: 10px;
    border: 1px solid #f1f5f9;
}

.bar {
    width: 20px;
    border-radius: 2px 2px 0 0;
}

.bar-1 {
    height: 40%;
    background: #cbd5e1;
}

.bar-2 {
    height: 70%;
    background: #94a3b8;
}

.bar-3 {
    height: 50%;
    background: #cbd5e1;
}

/* PushPilot Overlay Styles within Mock */
/* PushPilot Overlay Styles within Mock */
.pp-selector-box {
    position: absolute;
    top: 78px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 32px;
    border: 2px solid #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 4px;
    z-index: 10;
    opacity: 0;
    animation: boxAppear 8s infinite;
}

.pp-ui-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    animation: cardAppear 8s infinite;
}

.pp-header {
    background: #0f172a;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.pp-logo {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 2px;
}

.pp-body {
    padding: 12px;
}

.pp-input-wrapper {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 10px;
    min-height: 60px;
    /* Increased height for multi-line */
    display: flex;
    align-items: flex-start;
    /* Start from top */
}

.pp-text {
    font-size: 11px;
    color: #334155;
    line-height: 1.5;
    word-break: break-word;
    /* Allow wrapping */
    overflow: hidden;
    width: 100%;
    /* Full width */
    max-height: 0;
    /* Start hidden by height */
    border-right: 2px solid transparent;
    animation: typeText 8s infinite;
}

.pp-btn {
    background: #10b981;
    color: white;
    text-align: center;
    padding: 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    transition: transform 0.1s;
    animation: btnPress 8s infinite;
}

/* Cursor Mock */
.cursor-mock {
    position: absolute;
    width: 18px;
    height: 18px;
    z-index: 50;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    top: 110%;
    /* Start off screen */
    left: 110%;
    animation: cursorMove 8s infinite;
}

/* --- ANIMATION KEYFRAMES --- */

/* 1. Cursor moves to headline and clicks */
@keyframes cursorMove {
    0% {
        top: 100%;
        left: 100%;
        transform: scale(1);
    }

    /* Move to headline (Center of Selector Box which is top:78px height:32px) */
    15% {
        top: 94px;
        left: 50%;
        transform: scale(1);
    }

    17% {
        transform: scale(0.9);
    }

    /* Click Down */
    19% {
        transform: scale(1);
    }

    /* Click Up */
    25% {
        top: 94px;
        left: 50%;
    }

    /* Wait */

    /* Move to text box (Inside card at bottom right) */
    /* Card is right: 30px, width: 200px. Center roughly right: 130px */
    /* Input is near top of card body */
    35% {
        top: calc(100% - 130px);
        left: calc(100% - 130px);
    }

    /* Move to submit button (Bottom of card) */
    65% {
        top: calc(100% - 60px);
        left: calc(100% - 130px);
        transform: scale(1);
    }

    67% {
        transform: scale(0.9);
    }

    /* Click Submit */
    69% {
        transform: scale(1);
    }

    /* Exit */
    80% {
        top: 110%;
        left: 110%;
    }

    100% {
        top: 110%;
        left: 110%;
    }
}

/* 2. Box appears after click */
@keyframes boxAppear {

    0%,
    17% {
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* 3. Card pops up after box */
@keyframes cardAppear {

    0%,
    20% {
        opacity: 0;
        transform: translateY(10px);
    }

    25% {
        opacity: 1;
        transform: translateY(0);
    }

    75% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* 4. Text types out by revealing height for multi-line support */
@keyframes typeText {

    0%,
    30% {
        max-height: 0;
        border-right-color: #3b82f6;
    }

    55%,
    75% {
        max-height: 100px;
        border-right-color: #3b82f6;
    }

    80%,
    100% {
        max-height: 0;
        border-right-color: transparent;
    }
}

/* 5. Button Press effect */
@keyframes btnPress {

    0%,
    66% {
        background: #10b981;
        transform: scale(1);
    }

    67% {
        background: #059669;
        transform: scale(0.95);
    }

    70% {
        background: #10b981;
        transform: scale(1);
    }

    100% {
        background: #10b981;
        transform: scale(1);
    }
}

/* --- Features Section --- */
.process {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-slate);
    font-size: 18px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
    transform: translateY(-5px);
}

.highlight-card {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.step-number {
    font-size: 40px;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 16px;
    line-height: 1;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-navy);
}

.step-card p {
    font-size: 14px;
    color: var(--color-slate);
    margin-bottom: 24px;
}

.step-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

/* --- Intelligent Routing Section --- */
/* --- Intelligent Routing Section --- */
.paths {
    padding: 100px 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    overflow: hidden;
}

.routing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .routing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.route-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.route-card.highlight-card {
    border-color: #bbf7d0;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.1), 0 2px 4px -1px rgba(16, 185, 129, 0.06);
}

.route-visual {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.linear-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.github-bg {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.route-content {
    padding: 32px;
    background: white;
    flex: 1;
    border-top: 1px solid var(--color-border);
}

.route-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.route-icon.icon-task {
    background: #fee2e2;
    color: #ef4444;
}

.route-icon.icon-code {
    background: #dcfce7;
    color: #16a34a;
}

.route-icon svg {
    width: 24px;
    height: 24px;
}

.route-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-navy);
}

.route-content p {
    font-size: 15px;
    color: var(--color-slate);
    line-height: 1.6;
}

/* --- Mocks in cards --- */
.mock-ticket,
.mock-pr {
    background: white;
    width: 260px;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.route-card:hover .mock-ticket,
.route-card:hover .mock-pr {
    transform: scale(1.05);
}

/* Linear Mock Styles */
.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tag-linear {
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

.avatar {
    width: 16px;
    height: 16px;
    background: #e2e8f0;
    border-radius: 50%;
}

.ticket-title {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}

.ticket-meta {
    display: flex;
    gap: 8px;
}

.badge-design {
    font-size: 9px;
    padding: 2px 6px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 4px;
    font-weight: 600;
}

.badge-priority {
    font-size: 9px;
    padding: 2px 6px;
    background: #fef2f2;
    color: #ef4444;
    border-radius: 4px;
    font-weight: 600;
}

/* GitHub Mock Styles */
.pr-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: #64748b;
    font-family: monospace;
}

.pr-icon svg {
    width: 12px;
    height: 12px;
}

.pr-title {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}

.pr-stats {
    display: flex;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
}

.stat-green {
    color: #16a34a;
}

.stat-red {
    color: #ef4444;
}

.pr-check {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.check-circle {
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
}

.pr-check span {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
}

/* --- Footer --- */
footer {
    background: var(--color-navy);
    color: white;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-col p {
    color: #94a3b8;
    font-size: 14px;
}

.footer-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #94a3b8;
}

.footer-col a {
    display: block;
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

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

    h1 {
        font-size: 36px;
    }
}

/* Success Modal Styles */
.pp-success-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #e2e8f0;
    width: 200px;
    opacity: 0;
    animation: successAppear 8s infinite;
}

.pp-success-icon {
    width: 48px;
    height: 48px;
    background: #f0fdf4;
    border-radius: 50%;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
}

.pp-success-icon svg {
    width: 24px;
    height: 24px;
}

.pp-success-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.pp-success-text {
    font-size: 11px;
    color: #64748b;
}

/* Success Modal Animation */
@keyframes successAppear {

    0%,
    70% {
        opacity: 0;
        transform: translate(-50%, -40%) scale(0.9);
    }

    75% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    90% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    95% {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.9);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -60%) scale(0.9);
    }
}

/* --- Integrations Hub --- */
.integrations {
    padding: 100px 0;
    background: #f8fafc;
    border-top: 1px solid var(--color-border);
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.integration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.integ-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.integ-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
}

.integ-card.active {
    border-color: var(--color-primary);
}

.integ-header h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.integ-header p {
    color: var(--color-slate);
    font-size: 15px;
    margin-bottom: 30px;
}

.integ-visual {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 24px;
    height: 220px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

/* Mock Board */
.mock-board {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket {
    background: white;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.ticket.active {
    border-color: #3b82f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.ticket-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 4px;
}

.ticket-label.design {
    background: #fee2e2;
    color: #ef4444;
}

.ticket-label.feedback {
    background: #dbeafe;
    color: #3b82f6;
}

.ticket-title {
    font-size: 13px;
    font-weight: 600;
}

.ticket-meta {
    font-size: 11px;
    color: #94a3b8;
}

/* Mock GitHub */
.mock-github {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.gh-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 8px;
}

.gh-branch {
    font-family: monospace;
    font-size: 12px;
    background: #e2e8f0;
    padding: 2px 6px;
    border-radius: 4px;
}

.gh-status {
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
}

.gh-diff {
    font-family: monospace;
    font-size: 11px;
    padding: 10px;
    background: #0f172a;
    border-radius: 6px;
    color: #f8fafc;
    height: 100%;
}

.diff-line.removed {
    color: #f87171;
}

.diff-line.added {
    color: #4ade80;
}

.integ-logos {
    display: flex;
    gap: 20px;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
}

.logo-name {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
}

.integ-icon-manual,
.integ-icon-auto {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #f1f5f9;
}

/* --- Benefits Section --- */
.benefits {
    background: var(--color-navy);
    padding: 100px 0;
    color: white;
}

.benefits-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.benefits-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.benefits-header p {
    font-size: 18px;
    color: #94a3b8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.benefit-item p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}
/* --- Tech Stack Section --- */
.tech-stack {
    background: #f8fafc;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.tech-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
    opacity: 0.7;
}

.tech-item {
    font-weight: 600;
    color: var(--color-slate);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Team Roles Section --- */
.roles-section {
    padding: 100px 0;
}

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

.role-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.2s;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.role-icon {
    width: 48px;
    height: 48px;
    background: var(--color-surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.role-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-navy);
}

.role-list {
    list-style: none;
    margin-top: 20px;
}

.role-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    color: var(--color-slate);
    font-size: 14px;
}

.role-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* --- Comparison Section --- */
.comparison-section {
    background: #0f172a;
    color: white;
    padding: 100px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #334155;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 40px;
}

.comp-col {
    padding: 40px;
}

.comp-col.old {
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid #334155;
}

.comp-col.new {
    background: rgba(16, 185, 129, 0.1);
}

.comp-col.new h3 {
    color: white;
}

.comp-header {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.comp-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.comp-icon {
    margin-top: 4px;
}

.comp-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.comp-col.old .comp-text h4 {
    color: #cbd5e1;
}

.comp-text p {
    font-size: 14px;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .comp-col.old {
        border-right: none;
        border-bottom: 1px solid #334155;
    }
}
