/* Wozera Presentation Styles */

:root {
    --primary-color: #4a9eff;
    --accent-color: #00d4aa;
    --warning-color: #ff6b6b;
    --bg-dark: #0a0a0a;
    --bg-medium: #1a1a1a;
    --bg-light: #2a2a2a;
    --text-light: #f0f0f0;
    --text-muted: #a0a0a0;
    --border-color: #444;
}

/* Global overrides */
.reveal {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.reveal h1, .reveal h2, .reveal h3 {
    text-transform: none;
    font-weight: 600;
}

.reveal h2 {
    font-size: 1.8em;
    margin-bottom: 0.3em;
}

.reveal h3 {
    font-size: 1.2em;
    color: var(--primary-color);
}

/* Title Slide */
.title-slide {
    text-align: center;
}

.brand-name {
    font-size: 4em !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3em !important;
}

.tagline {
    font-size: 1.4em;
    color: var(--text-light);
    margin-bottom: 2em;
}

.presenter-info {
    color: var(--text-muted);
    font-size: 0.9em;
}

/* Subtitles */
.subtitle {
    font-size: 0.85em;
    color: var(--text-muted);
    margin-bottom: 0.3em;
}

/* Common Box Styles */
.box {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    background: var(--bg-light);
    margin: 0.5em;
}

/* Problem Grid (Slide 2) */
.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 0.15em;
    margin: 0.2em auto;
    max-width: 800px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 1.5em;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.25em 1em;
}

.problem-label {
    font-weight: 600;
    color: var(--warning-color);
    width: 200px;
    min-width: 200px;
    flex-shrink: 0;
    font-size: 0.75em;
    text-align: left;
}

.problem-desc {
    color: var(--text-muted);
    font-size: 0.7em;
    text-align: left;
    flex: 1;
}

.callout {
    margin-top: 0.5em;
    padding: 0.5em 1em;
    background: rgba(74, 158, 255, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    font-size: 0.75em;
}

/* Flow Diagram (Slide 3) */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    margin: 1em 0;
}

.flow-box {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8em 1.2em;
    font-size: 0.85em;
    text-align: center;
}

.flow-box.highlight {
    border-color: var(--accent-color);
    background: rgba(0, 212, 170, 0.1);
}

.flow-box small {
    display: block;
    color: var(--text-muted);
    font-size: 0.8em;
}

.flow-arrow {
    color: var(--primary-color);
    font-size: 1.5em;
}

.flow-arrow-labeled {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5em;
}

.arrow-label {
    font-size: 0.5em;
    color: var(--accent-color);
    font-weight: 600;
    line-height: 1;
    margin-bottom: -0.5em;
}

.example-box {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.8em 1.5em;
    margin: 1em auto;
    font-family: 'Fira Code', monospace;
    font-size: 0.9em;
}

.example-box code {
    background: transparent;
}

.example-box .result {
    color: var(--accent-color);
    font-weight: 600;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    margin: 1em 0;
}

.process-step {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.6em 1em;
    font-size: 0.75em;
    text-align: center;
}

.process-step small {
    color: var(--text-muted);
}

.process-step.minimal {
    border-color: var(--accent-color);
    border-style: dashed;
}

/* Two Column Layout */
.two-column {
    display: flex;
    gap: 2em;
    justify-content: space-between;
}

.column {
    flex: 1;
    text-align: left;
}

/* Flywheel (Slide 4) */
.reason-list {
    margin-top: 0.5em;
}

.reason {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.5em 0.8em;
    margin-bottom: 0.4em;
    font-size: 0.7em;
}

.reason small {
    color: var(--text-muted);
}

.flywheel {
    text-align: center;
    margin-top: 0.5em;
}

/* Align flywheel column heading with content */
.flywheel-column {
    text-align: center;
}

.flywheel-column h3 {
    text-align: center;
}

.flywheel-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flywheel-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    margin-top: 0.2em;
}

.flywheel-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 0.5em;
}

.flywheel-left .flywheel-arrow.up {
    margin: 0;
}

.flywheel-item.loop {
    border-color: var(--accent-color);
    color: var(--accent-color);
    font-size: 0.65em;
}

/* Flywheel animation - traveling dot */
.flywheel.animated .flywheel-arrow {
    position: relative;
    overflow: visible;
}

.flywheel.animated .flywheel-arrow::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 8px var(--accent-color);
}

/* Down arrows - dot travels top to bottom */
.flywheel.animated .flywheel-center .flywheel-arrow::after {
    left: 50%;
    transform: translateX(-50%);
    animation: travelDown 4s ease-in-out infinite;
}

.flywheel.animated .flywheel-center .flywheel-arrow:nth-child(2)::after {
    animation-delay: 0s;
}

.flywheel.animated .flywheel-center .flywheel-arrow:nth-child(4)::after {
    animation-delay: 1s;
}

/* Right arrow - dot travels left to right */
.flywheel.animated .flywheel-bottom .flywheel-arrow.right::after {
    top: 50%;
    transform: translateY(-50%);
    animation: travelRight 4s ease-in-out infinite;
    animation-delay: 2s;
}

/* Up arrow - dot travels bottom to top */
.flywheel.animated .flywheel-left .flywheel-arrow.up::after {
    left: 50%;
    transform: translateX(-50%);
    animation: travelUp 4s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes travelDown {
    0%, 20% { top: -2px; opacity: 0; }
    25% { opacity: 0.7; }
    45% { top: 100%; opacity: 0.7; }
    50%, 100% { opacity: 0; }
}

@keyframes travelRight {
    0%, 20% { left: -2px; opacity: 0; }
    25% { opacity: 0.7; }
    45% { left: 100%; opacity: 0.7; }
    50%, 100% { opacity: 0; }
}

@keyframes travelUp {
    0%, 20% { bottom: -2px; top: auto; opacity: 0; }
    25% { opacity: 0.7; }
    45% { bottom: 100%; opacity: 0.7; }
    50%, 100% { opacity: 0; }
}

.flywheel-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.5em 0.8em;
    display: inline-block;
    font-size: 0.75em;
    margin: 0.2em;
}

.flywheel-item.top {
    border-color: var(--primary-color);
}

.flywheel-arrow {
    color: var(--primary-color);
    font-size: 1.2em;
    display: block;
    margin: 0.1em 0;
}

.flywheel-arrow.right {
    display: inline-block;
    margin: 0 0.3em;
}

.flywheel-arrow.up {
    margin: 0;
}

.progress-bar-container {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin: 1em 0;
    padding: 0.8em;
    background: var(--bg-light);
    border-radius: 8px;
}

.progress-label {
    font-size: 0.8em;
    color: var(--text-muted);
}

.progress-label.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

/* Demo Slide (Slide 5) */
.demo-iframe {
    width: 95%;
    height: 520px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: #fff;
}

.demo-iframe.demo-fullsize {
    height: 75vh;
    max-height: 700px;
}

.demo-note {
    color: var(--text-muted);
    margin-top: 0.5em;
}

/* Benefits Grid (Slide 6) */
.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 0.8em;
    margin: 0.3em 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.4em 0.6em;
    max-width: 240px;
    text-align: left;
}

.benefit-icon {
    font-size: 1.1em;
    color: var(--accent-color);
}

.benefit-content {
    font-size: 0.65em;
}

.agent-box {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.4em 1em;
    margin: 0.3em auto;
    max-width: 850px;
    font-size: 0.7em;
    text-align: center;
}

.agent-box > p {
    margin: 0.2em 0;
}

.alert-examples {
    margin-top: 0.6em;
}

.alert {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    padding: 0.2em 0.5em;
    margin: 0.3em 0;
    font-size: 0.7em;
    font-style: italic;
}

/* Architecture Diagram (Slide 7) */
.architecture-diagram {
    text-align: center;
}

.arch-row {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.arch-box {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1em 1.5em;
    font-size: 0.85em;
}

.arch-box small {
    color: var(--text-muted);
    display: block;
}

.agent-box-main {
    border-color: var(--primary-color);
    background: rgba(74, 158, 255, 0.1);
}

.arch-arrows {
    display: flex;
    justify-content: center;
    gap: 8em;
    color: var(--primary-color);
    font-size: 1.5em;
    margin: 0.3em 0;
    position: relative;
}

.arch-arrows::before {
    content: '';
    position: absolute;
    top: 0.35em;
    left: 50%;
    transform: translateX(-50%);
    width: 17em;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.4;
}

.apps-row {
    gap: 1.5em;
}

.arch-arrow-down {
    color: var(--primary-color);
    font-size: 1.5em;
    margin: 0.3em 0;
}

.foundation {
    border-color: var(--accent-color) !important;
    background: rgba(0, 212, 170, 0.1);
    position: relative;
}

.today-focus {
    position: absolute;
    right: -120px;
    color: var(--accent-color);
    font-size: 0.8em;
}

.today-focus-label {
    color: var(--accent-color);
    font-size: 0.8em;
    margin-top: 0.3em;
    font-weight: 600;
}

/* Business Model (Slide 8) */
.market-stats {
    color: var(--text-muted);
    font-size: 0.85em;
    margin-bottom: 0.5em;
}

.business-grid {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
    max-width: 800px;
    margin: 0 auto;
}

.business-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5em 1em;
    text-align: left;
}

.business-item h3 {
    margin: 0 0 0.2em 0;
    font-size: 0.9em;
    white-space: nowrap;
}

.business-item ul {
    margin: 0;
    padding-left: 1.5em;
    font-size: 0.75em;
    color: var(--text-muted);
}

.business-item li {
    margin: 0.1em 0;
}

/* Traction (Slide 9) */
.checklist {
    margin-top: 0.5em;
}

.check-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.4em 0.8em;
    margin-bottom: 0.3em;
    font-size: 0.7em;
    text-align: left;
    color: var(--accent-color);
}

.milestone-list {
    margin-top: 0.5em;
}

.milestone {
    background: var(--bg-light);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 0.4em 0.8em;
    margin-bottom: 0.3em;
    font-size: 0.7em;
    text-align: left;
    color: var(--primary-color);
}

/* The Ask (Slide 10) */
.ask-amount {
    font-size: 1.3em;
    color: var(--accent-color);
    margin-bottom: 0.5em;
}

.funds-breakdown {
    margin-top: 0.3em;
}

.fund-item {
    display: flex;
    align-items: center;
    gap: 0.6em;
    margin-bottom: 0.3em;
    background: var(--bg-light);
    border-radius: 6px;
    padding: 0.35em 0.6em;
}

.fund-percent {
    background: var(--primary-color);
    color: var(--bg-dark);
    font-weight: 600;
    padding: 0.2em 0.5em;
    border-radius: 4px;
    font-size: 0.75em;
}

.fund-detail {
    font-size: 0.7em;
    text-align: left;
}

.fund-detail small {
    color: var(--text-muted);
}

.timeline {
    margin-top: 0.3em;
}

.timeline-item {
    display: flex;
    gap: 0.6em;
    margin-bottom: 0.25em;
    background: var(--bg-light);
    border-radius: 6px;
    padding: 0.3em 0.6em;
    font-size: 0.65em;
}

.timeline-month {
    color: var(--accent-color);
    font-weight: 600;
    min-width: 65px;
}

.timeline-desc {
    color: var(--text-muted);
}

/* Comparison Table (Appendix) */
.comparison-table {
    border-collapse: collapse;
    margin: 0.5em auto;
    font-size: 0.8em;
}

.comparison-table th,
.comparison-table td {
    border: 1px solid var(--border-color);
    padding: 0.4em 1.2em;
    text-align: left;
}

.comparison-table th {
    background: var(--bg-light);
}

.comparison-table .highlight {
    color: var(--accent-color);
}

.why-not-intuit {
    margin-top: 0.5em;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-not-intuit h3 {
    margin-bottom: 0.3em;
    font-size: 1em;
}

.why-not-intuit ul {
    font-size: 0.75em;
    color: var(--text-muted);
    margin: 0;
    padding-left: 1.5em;
}

.why-not-intuit li {
    margin: 0.15em 0;
}

/* AI Comparison (Appendix) */
.comparison-boxes {
    display: flex;
    gap: 1.5em;
    margin: 1em 0;
}

.comparison-box {
    flex: 1;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1em;
    text-align: left;
    font-size: 0.8em;
}

.comparison-box.generic {
    background: var(--bg-light);
    border-color: var(--warning-color);
}

.comparison-box.wozera {
    background: rgba(0, 212, 170, 0.1);
    border-color: var(--accent-color);
}

.comparison-box h3 {
    margin-top: 0;
    font-size: 0.95em;
}

.scenario-table {
    width: 100%;
    font-size: 0.9em;
    margin: 0.5em 0;
}

.scenario-table td {
    padding: 0.2em 0;
}

/* Market Grid (Appendix) */
.market-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    max-width: 700px;
    margin: 1em auto;
}

.market-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1em;
    text-align: center;
}

.market-value {
    font-size: 2em;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
}

.market-label {
    font-size: 0.9em;
    font-weight: 600;
    display: block;
    margin: 0.3em 0;
}

.market-item small {
    color: var(--text-muted);
    font-size: 0.75em;
}

.market-total {
    background: rgba(0, 212, 170, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    padding: 1em;
    text-align: center;
    max-width: 400px;
    margin: 1em auto;
}

.market-total .market-value {
    color: var(--accent-color);
}

/* Footer Notes */
.footer-note {
    font-size: 0.7em;
    color: var(--text-muted);
    margin-top: 0.5em;
}

.footer-note.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive adjustments for projectors */
@media (min-width: 1600px) {
    .reveal h2 {
        font-size: 2.2em;
    }

    .demo-iframe {
        height: 600px;
    }
}

/* Industry Grid (Beyond Tax - Appendix) */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8em;
    max-width: 800px;
    margin: 1em auto;
}

.industry-grid .industry-item:nth-child(4),
.industry-grid .industry-item:nth-child(5) {
    grid-column: span 1;
}

.industry-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8em 1em;
    text-align: center;
}

.industry-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.3em;
}

.industry-item small {
    color: var(--text-muted);
    font-size: 0.8em;
}

/* Team Slide (Appendix) */
.team-section {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.team-section h3 {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 0.8em;
}

.team-grid {
    display: flex;
    gap: 2em;
    margin-bottom: 1em;
}

.team-column {
    flex: 1;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1em;
}

.team-column h4 {
    color: var(--primary-color);
    margin: 0 0 0.5em 0;
    font-size: 0.9em;
}

.team-column ul {
    margin: 0;
    padding-left: 1.2em;
    font-size: 0.75em;
    color: var(--text-muted);
}

.team-column li {
    margin: 0.3em 0;
}

.rare-combination {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 0.8em 1em;
    margin-bottom: 0.5em;
}

.rare-combination h4 {
    color: var(--accent-color);
    margin: 0 0 0.4em 0;
    font-size: 0.9em;
}

.rare-combination ul {
    margin: 0;
    padding-left: 1.2em;
    font-size: 0.75em;
    display: flex;
    gap: 2em;
    list-style: none;
}

.rare-combination li::before {
    content: "•";
    color: var(--accent-color);
    margin-right: 0.5em;
}

/* Technical Architecture (Appendix) */
.tech-architecture {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.arch-layer {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.arch-box-tech {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8em 2em;
    font-size: 0.9em;
    min-width: 300px;
}

.arch-box-tech.highlight {
    border-color: var(--accent-color);
    background: rgba(0, 212, 170, 0.1);
}

.arch-box-tech small {
    display: block;
    color: var(--text-muted);
    font-size: 0.8em;
    margin-top: 0.3em;
}

.storage-layer {
    gap: 1.5em;
}

.storage-layer .arch-box-tech {
    min-width: 200px;
    padding: 0.6em 1.5em;
}

/* Print styles */
@media print {
    .reveal .slides section {
        page-break-after: always;
    }
}
