/* ================================ */
/* ACCIDENTAL PM - SHARED STYLES    */
/* ================================ */

/* ================================ */
/* CSS VARIABLES */
/* ================================ */
:root {
    /* Landing page colors */
    --color-bg: #FAFAFA;
    --color-bg-alt: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-secondary: #4A4A4A;
    --color-text-tertiary: #717171;
    --color-text-muted: #9CA3AF;
    --color-accent: #2563EB;
    --color-accent-hover: #1D4ED8;
    --color-accent-light: #EFF6FF;
    --color-accent-subtle: #F8FAFF;
    --color-success: #059669;
    --color-success-light: #ECFDF5;
    --color-border: #E5E5E5;
    --color-border-light: #F0F0F0;

    /* Product UI colors (from style guide) */
    --color-white: #FFFFFF;
    --color-gray-50: #F8FAFC;
    --color-gray-100: #F1F5F9;
    --color-gray-200: #E2E8F0;
    --color-gray-300: #CBD5E1;
    --color-gray-400: #94A3B8;
    --color-gray-500: #64748B;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1E293B;
    --color-gray-900: #0F172A;
    --color-warning: #D97706;
    --color-warning-light: #FEF3C7;
    --color-error: #DC2626;
    --color-primary: #2563EB;
    --color-primary-light: #DBEAFE;
    --color-orange: #F97316;
    --color-purple: #8B5CF6;
    --color-teal: #14B8A6;
    --color-pink: #EC4899;

    /* Typography */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;

    /* Layout */
    --max-width: 1100px;
    --section-spacing: 120px;
    --transition: 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================ */
/* NAVIGATION */
/* ================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-light);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

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

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--color-accent) 0%, #3B82F6 100%);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ================================ */
/* HERO SECTION */
/* ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 140px 32px 100px;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 60px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
    background: var(--color-accent-light);
    padding: 8px 16px;
    border-radius: 20px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-text);
    max-width: 800px;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-bottom: 16px;
}

.hero-highlight {
    font-size: 19px;
    line-height: 1.7;
    color: var(--color-text);
    font-weight: 600;
    max-width: 600px;
    margin-bottom: 16px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--color-accent) 0%, #3B82F6 100%);
    border-radius: 10px;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* ================================ */
/* PROBLEM SECTION */
/* ================================ */
.problem-section {
    background: var(--color-text);
    color: var(--color-bg);
    padding: var(--section-spacing) 32px;
}

.problem-inner {
    max-width: 720px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.problem-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-point {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(250, 250, 250, 0.85);
}

.problem-closer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 18px;
    font-style: italic;
    color: rgba(250, 250, 250, 0.7);
}

/* ================================ */
/* SOLUTION SECTION */
/* ================================ */
.solution-section {
    padding: var(--section-spacing) 32px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.solution-description {
    font-size: 19px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
}

.flow-container {
    background: var(--color-bg-alt);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-border-light);
}

.flow-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
}

.flow-step {
    flex: 1;
    max-width: 200px;
    text-align: center;
}

.flow-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--color-accent-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.flow-title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.flow-desc {
    font-size: 14px;
    color: var(--color-text-tertiary);
    line-height: 1.5;
}

.flow-arrow {
    color: var(--color-text-muted);
    padding-top: 20px;
}

.solution-footer {
    margin-top: 40px;
    font-size: 18px;
    color: var(--color-text-secondary);
}

/* ================================ */
/* BEFORE/AFTER SHOWCASE */
/* ================================ */
.showcase-section {
    padding: var(--section-spacing) 0;
}

.showcase-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    padding: 0 32px;
}

.showcase-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-top: 16px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 32px;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.showcase-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.showcase-item:nth-child(even) {
    direction: rtl;
}

.showcase-item:nth-child(even) > * {
    direction: ltr;
}

.showcase-item:last-child {
    margin-bottom: 0;
}

/* Before Card */
.before-card {
    background: #2D2D2D;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.before-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,0.02) 10px,
            rgba(255,255,255,0.02) 20px
        );
    pointer-events: none;
}

.before-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
}

.before-title {
    font-family: var(--font-serif);
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.before-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.before-visual {
    margin-top: 24px;
}

/* After Card */
.after-card {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-gray-200);
    overflow: hidden;
    min-height: 300px;
}

.after-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-success);
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-gray-100);
    background: var(--color-gray-50);
}

.after-content {
    padding: 0;
}

/* ================================ */
/* PRODUCT UI COMPONENTS */
/* ================================ */

/* Shared Product Styles */
.product-ui {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--color-gray-900);
}

.product-ui .avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.product-ui .avatar-success { background: var(--color-success); }
.product-ui .avatar-orange { background: var(--color-orange); }
.product-ui .avatar-purple { background: var(--color-purple); }
.product-ui .avatar-teal { background: var(--color-teal); }
.product-ui .avatar-gray { background: var(--color-gray-400); }

.product-ui .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Conversational UI Component */
.conv-ui {
    padding: 24px;
}

.conv-message {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.conv-message:last-child {
    margin-bottom: 0;
}

.conv-bubble {
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 85%;
    line-height: 1.5;
}

.conv-message.system .conv-bubble {
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    border-bottom-left-radius: 4px;
}

.conv-message.user .conv-bubble {
    background: var(--color-primary);
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.conv-typing {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: var(--color-gray-100);
    border-radius: 12px;
    width: fit-content;
}

.conv-typing span {
    width: 6px;
    height: 6px;
    background: var(--color-gray-400);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.conv-typing span:nth-child(2) { animation-delay: 0.2s; }
.conv-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

/* Threads Component */
.threads-ui {
    padding: 0;
}

.thread-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-gray-100);
}

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

.thread-content {
    flex: 1;
}

.thread-title {
    font-weight: 500;
    color: var(--color-gray-900);
    margin-bottom: 4px;
}

.thread-meta {
    font-size: 13px;
    color: var(--color-gray-500);
}

.thread-status {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
}

.thread-status.open {
    background: var(--color-warning-light);
    color: var(--color-warning);
}

.thread-status.resolved {
    background: var(--color-success-light);
    color: var(--color-success);
}

/* Inbox Component */
.inbox-ui {
    padding: 0;
}

.inbox-item {
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-gray-100);
}

.inbox-item:last-child {
    border-bottom: none;
}

.inbox-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.inbox-item-title {
    font-weight: 500;
    color: var(--color-gray-900);
}

.draft-preview {
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.draft-preview-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-500);
    margin-bottom: 8px;
}

.draft-preview-content {
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.6;
}

.inbox-actions {
    display: flex;
    gap: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
    transition: all 0.15s;
}

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

.btn-ghost {
    background: transparent;
    color: var(--color-gray-600);
    border: 1px solid var(--color-gray-200);
}

/* Communications Component */
.comms-ui {
    padding: 0;
}

.comm-entry {
    display: flex;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-gray-100);
}

.comm-entry:last-child {
    border-bottom: none;
}

.comm-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comm-icon svg {
    width: 16px;
    height: 16px;
}

.comm-icon.meeting { background: #DBEAFE; color: #2563EB; }
.comm-icon.update { background: #D1FAE5; color: #059669; }
.comm-icon.note { background: #F3E8FF; color: #8B5CF6; }

.comm-content {
    flex: 1;
}

.comm-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.comm-title {
    font-weight: 500;
    color: var(--color-gray-900);
}

.comm-date {
    font-size: 12px;
    color: var(--color-gray-400);
}

.comm-summary {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.5;
}

/* Roadmap Component */
.roadmap-ui {
    padding: 0;
}

.milestone {
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-gray-100);
}

.milestone:last-child {
    border-bottom: none;
}

.milestone-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.milestone-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.milestone-dot.complete { background: var(--color-success); }
.milestone-dot.in-progress { background: var(--color-primary); }
.milestone-dot.upcoming { background: var(--color-gray-300); }

.milestone-name {
    font-weight: 600;
    color: var(--color-gray-900);
}

.milestone-date {
    font-size: 13px;
    color: var(--color-gray-500);
    margin-left: auto;
}

.activity-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 10px 22px;
    font-size: 14px;
}

.activity-progress {
    width: 40px;
    height: 4px;
    background: var(--color-gray-200);
    border-radius: 2px;
    overflow: hidden;
}

.activity-progress-fill {
    height: 100%;
    border-radius: 2px;
}

.activity-progress-fill.done { background: var(--color-success); }
.activity-progress-fill.in-progress { background: var(--color-primary); }
.activity-progress-fill.blocked { background: var(--color-error); }

.activity-name {
    flex: 1;
    color: var(--color-gray-700);
}

.blocked-text {
    color: var(--color-gray-500);
}

.activity-owner {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-gray-500);
}

/* Details/Scope Component */
.details-ui {
    padding: 24px;
}

.scope-section-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-500);
    margin-bottom: 16px;
}

.scope-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.scope-column h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scope-column.in h4 { color: var(--color-success); }
.scope-column.out h4 { color: var(--color-error); }

.scope-list {
    list-style: none;
}

.scope-list li {
    font-size: 14px;
    color: var(--color-gray-700);
    padding: 6px 0;
    border-bottom: 1px solid var(--color-gray-100);
    line-height: 1.4;
}

.scope-list li:last-child {
    border-bottom: none;
}

/* Briefing Component */
.briefing-ui {
    padding: 24px;
}

.briefing-greeting {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-400);
    margin-bottom: 4px;
}

.briefing-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 20px;
}

.briefing-section {
    margin-bottom: 20px;
}

.briefing-section:last-child {
    margin-bottom: 0;
}

.briefing-section-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-500);
    margin-bottom: 8px;
}

.briefing-prose {
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.65;
}

.briefing-prose strong {
    color: var(--color-gray-900);
}

.briefing-highlight {
    background: var(--color-warning-light);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--color-gray-800);
    margin-top: 16px;
}

/* Before Card Visuals */
.blank-page-visual {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    font-family: monospace;
}

.blank-cursor {
    color: #666;
    font-size: 13px;
}

.blank-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: #888;
}

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

.scattered-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.scattered-item {
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    transform: rotate(var(--rotate, 0deg));
}

.scattered-item:nth-child(1) { --rotate: -2deg; }
.scattered-item:nth-child(2) { --rotate: 1deg; }
.scattered-item:nth-child(3) { --rotate: -1deg; }
.scattered-item:nth-child(4) { --rotate: 2deg; }

.nag-visual {
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 12px 16px;
}

.nag-message {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.nag-cringe {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-top: 8px;
}

.apps-visual {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0.6;
}

.calendar-chaos {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calendar-block {
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    border-left: 3px solid rgba(255,255,255,0.2);
}

.scope-chaos {
    position: relative;
}

.scope-box {
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.scope-arrow {
    position: absolute;
    font-size: 18px;
    color: rgba(255,100,100,0.6);
}

.scope-arrow:nth-child(1) { top: -10px; left: 50%; transform: translateX(-50%); }
.scope-arrow:nth-child(2) { bottom: -10px; left: 50%; transform: translateX(-50%) rotate(180deg); }
.scope-arrow:nth-child(3) { left: -10px; top: 50%; transform: translateY(-50%) rotate(-90deg); }
.scope-arrow:nth-child(4) { right: -10px; top: 50%; transform: translateY(-50%) rotate(90deg); }

.tabs-chaos {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.tab-item {
    background: rgba(255,255,255,0.1);
    padding: 6px 10px;
    border-radius: 4px 4px 0 0;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

/* Meeting agenda in inbox */
.meeting-agenda {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agenda-item {
    font-size: 13px;
    line-height: 1.5;
}

.agenda-item strong {
    color: var(--color-gray-900);
}

/* Progress chaos visual */
.progress-chaos {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.08);
    padding: 10px 14px;
    border-radius: 6px;
}

.progress-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.progress-status {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* Leader visual - hovering */
.hover-visual {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hover-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    padding: 10px 14px;
    border-radius: 6px;
}

.hover-icon {
    font-size: 16px;
    opacity: 0.6;
}

.hover-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ================================ */
/* TRANSFORMATION SECTION */
/* ================================ */
.transformation {
    padding: 80px 32px;
    background: var(--color-accent-subtle);
}

.transformation-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.transformation-state {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px;
    border-radius: 16px;
}

.transformation-before {
    background: var(--color-text);
    color: var(--color-bg);
}

.transformation-after {
    background: var(--color-success-light);
    color: var(--color-text);
}

.transformation-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.7;
}

.transformation-text {
    font-family: var(--font-serif);
    font-size: 20px;
    line-height: 1.5;
}

.transformation-arrow {
    flex-shrink: 0;
    color: var(--color-text-muted);
}

/* ================================ */
/* CTA SECTION */
/* ================================ */
.cta-section {
    padding: var(--section-spacing) 32px;
    text-align: center;
    background: var(--color-bg-alt);
}

.cta-lead {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--color-accent) 0%, #3B82F6 100%);
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.alt-audience {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.alt-audience a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-tertiary);
    text-decoration: none;
    font-size: 15px;
    transition: color var(--transition);
}

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

.alt-audience svg {
    width: 18px;
    height: 18px;
}

/* ================================ */
/* FOOTER */
/* ================================ */
footer {
    padding: 48px 32px;
    text-align: center;
    border-top: 1px solid var(--color-border-light);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-text-tertiary);
    margin-bottom: 16px;
}

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

/* ================================ */
/* RESPONSIVE */
/* ================================ */
@media (max-width: 900px) {
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .showcase-item:nth-child(even) {
        direction: ltr;
    }

    .flow-steps {
        flex-direction: column;
        align-items: center;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .transformation-row {
        flex-direction: column;
        gap: 32px;
    }

    .transformation-arrow {
        transform: rotate(90deg);
    }

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

@media (max-width: 600px) {
    .hero {
        padding: 120px 20px 60px;
    }

    .nav-inner {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-link {
        display: none;
    }

    .section-spacing {
        --section-spacing: 80px;
    }

    .before-card,
    .after-card {
        min-height: auto;
    }
}

/* ================================ */
/* ANIMATIONS */
/* ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero-eyebrow,
.hero-subtitle,
.hero-highlight,
.hero-cta {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-eyebrow { animation-delay: 0.1s; opacity: 0; }
.hero h1 { animation-delay: 0.2s; opacity: 0; }
.hero-subtitle, .hero-highlight { animation-delay: 0.3s; opacity: 0; }
.hero-cta { animation-delay: 0.4s; opacity: 0; }
