/* Tomoro Brand Styles */
/* Based on ChatGPT Value Accelerator brand guidelines */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Primary Colors */
    --primary-dark: #041828;
    --secondary-dark: #08171D;

    /* Accent Colors */
    --accent-lime: #D8FF00;
    --accent-mint: #02FFA7;
    --accent-magenta: #FF0058;
    --accent-blue: #5796C9;
    --accent-royal: #2C55D5;
    --accent-olive: #B3CB63;

    /* Secondary */
    --secondary-light: #9AC2C5;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-dark: #041828;

    /* Backgrounds */
    --bg-dark: #041828;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --border-subtle: rgba(255, 255, 255, 0.1);
}

/* Base Styles */
.reveal {
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-primary);
    background: var(--primary-dark);
}

.reveal .slides {
    background: var(--primary-dark);
}

.reveal .slides section {
    background: var(--primary-dark);
}

.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4 {
    font-family: 'Space Grotesk', 'Trebuchet MS', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.reveal h1 { font-size: 2.8em; margin-bottom: 0.3em; }
.reveal h2 { font-size: 1.7em; margin-bottom: 0.8em; text-align: left; }
.reveal h3 { font-size: 1.05em; margin-bottom: 0.4em; }
.reveal h4 { font-size: 0.9em; margin-bottom: 0.3em; color: var(--text-secondary); }

.reveal p {
    line-height: 1.6;
    margin-bottom: 0.8em;
    color: var(--text-secondary);
}

.reveal section {
    text-align: left;
    padding: 40px 60px;
}

.reveal ul {
    margin-left: 1.2em;
}

.reveal li {
    margin-bottom: 0.4em;
    line-height: 1.5;
    color: var(--text-secondary);
}

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

/* Title Slide */
.title-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center !important;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
}

.title-slide::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(216, 255, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.title-slide .title-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.title-slide .logo {
    margin-bottom: 2em;
}

.title-slide .logo img {
    height: 32px;
    width: auto;
}

.title-slide h1 {
    color: var(--text-primary);
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 0.3em;
}

.title-slide .subtitle {
    font-size: 1.25em;
    color: var(--accent-lime);
    font-weight: 500;
    margin-bottom: 1.5em;
}

.title-slide .title-divider {
    width: 80px;
    height: 3px;
    background: var(--accent-lime);
    margin: 0 auto 1.5em;
}

.title-slide .tagline {
    font-size: 1em;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Slide Header with Logo */
.slide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5em;
}

.slide-header h2 {
    margin-bottom: 0;
}

.slide-header .logo-small img {
    height: 20px;
    width: auto;
    opacity: 0.7;
}

/* Content Blocks */
.content-block {
    padding: 1.2em 1.5em;
    border-radius: 12px;
    margin-bottom: 1.2em;
}

.highlight-block {
    background: linear-gradient(135deg, rgba(216, 255, 0, 0.15) 0%, rgba(216, 255, 0, 0.05) 100%);
    border: 1px solid rgba(216, 255, 0, 0.3);
}

.highlight-block .lead {
    font-size: 1.15em;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    color: var(--text-primary);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5em;
    margin: 1.5em 0;
}

.two-column .column {
    padding: 1.2em;
    border-radius: 12px;
}

.two-column .column:first-child {
    background: var(--bg-card);
    border-left: 3px solid var(--text-muted);
}

.two-column .column:last-child {
    background: rgba(216, 255, 0, 0.08);
    border-left: 3px solid var(--accent-lime);
}

.two-column h3 {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5em;
    color: var(--text-muted);
}

.two-column .column:last-child h3 {
    color: var(--accent-lime);
}

.two-column p {
    font-size: 0.9em;
    margin: 0;
}

.bottom-note {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid var(--border-subtle);
}

.bottom-note p:first-child {
    font-size: 1.05em;
    color: var(--accent-lime);
}

.bottom-note p:last-child {
    color: var(--text-muted);
    font-size: 0.85em;
}

/* Section Intro */
.section-intro {
    font-size: 1em;
    color: var(--text-secondary);
    margin-bottom: 1.5em;
}

/* Three Shifts Visual */
.three-shifts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2em;
    margin: 1.2em 0;
}

.shift {
    padding: 1.3em;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    position: relative;
    transition: all 0.3s ease;
}

.shift:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.shift-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.8em;
}

.shift-icon svg {
    width: 100%;
    height: 100%;
    color: var(--secondary-light);
}

.shift h3 {
    font-size: 0.95em;
    margin-bottom: 0.4em;
    color: var(--text-primary);
}

.shift p {
    font-size: 0.8em;
    color: var(--text-muted);
    margin-bottom: 1em;
}

.shift-label {
    display: inline-block;
    font-size: 0.65em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3em 0.8em;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.highlight-shift {
    background: rgba(216, 255, 0, 0.08);
    border-color: rgba(216, 255, 0, 0.4);
}

.highlight-shift .shift-icon svg {
    color: var(--accent-lime);
}

.highlight-shift h3 {
    color: var(--accent-lime);
}

.highlight-label {
    background: var(--accent-lime);
    color: var(--text-dark);
}

.transformation-note {
    margin-top: 1.2em;
    padding: 0.8em 1.2em;
    background: rgba(216, 255, 0, 0.08);
    border-left: 3px solid var(--accent-lime);
    border-radius: 0 8px 8px 0;
}

.transformation-note p {
    margin: 0;
    font-size: 0.9em;
    color: var(--text-secondary);
}

.transformation-note strong {
    color: var(--accent-lime);
}

/* Definition Block */
.definition-block {
    background: var(--bg-card);
    padding: 1.3em 1.8em;
    border-radius: 12px;
    margin: 1em 0 1.5em;
    border-left: 4px solid var(--accent-lime);
}

.definition {
    font-size: 1.2em;
    font-style: italic;
    margin: 0;
    color: var(--text-primary);
}

.definition strong {
    color: var(--accent-lime);
    font-style: normal;
}

.explanation {
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 1.5em;
}

.not-list {
    background: var(--bg-card);
    padding: 1em 1.3em;
    border-radius: 8px;
}

.not-list h4 {
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.8em;
}

.not-list ul {
    margin: 0;
    padding-left: 1.2em;
}

.not-list li {
    font-size: 0.85em;
    color: var(--text-muted);
    margin-bottom: 0.3em;
}

/* Behaviours Grid */
.behaviours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8em;
    margin-bottom: 1.2em;
}

.behaviour {
    padding: 0.9em;
    background: var(--bg-card);
    border-radius: 8px;
    position: relative;
    border: 1px solid var(--border-subtle);
}

.behaviour-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--accent-lime);
    color: var(--text-dark);
    font-size: 0.7em;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 0.4em;
}

.behaviour h4 {
    font-size: 0.85em;
    margin-bottom: 0.3em;
    color: var(--text-primary);
}

.behaviour p {
    font-size: 0.75em;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Loop Visual */
.loop-visual {
    background: linear-gradient(135deg, rgba(216, 255, 0, 0.12) 0%, rgba(216, 255, 0, 0.04) 100%);
    padding: 0.9em 1.5em;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(216, 255, 0, 0.3);
}

.loop-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4em;
    flex-wrap: wrap;
}

.loop-step {
    display: inline-block;
    padding: 0.35em 0.9em;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85em;
}

.loop-arrow {
    color: var(--accent-lime);
    font-size: 1.1em;
    opacity: 0.7;
}

.loop-back {
    font-size: 1.4em;
}

.highlight-step {
    background: var(--accent-lime);
    color: var(--text-dark);
}

/* Barriers Visual */
.barriers-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2em;
    margin: 1.2em 0;
}

.barrier {
    text-align: center;
    padding: 1.3em;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

.barrier-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.8em;
}

.barrier-icon svg {
    width: 100%;
    height: 100%;
    color: var(--secondary-light);
}

.barrier h3 {
    font-size: 0.95em;
    margin-bottom: 0.5em;
    text-align: center;
    color: var(--text-primary);
}

.barrier p {
    font-size: 0.8em;
    color: var(--text-muted);
    margin: 0;
    text-align: left;
}

.barrier p strong {
    color: var(--text-secondary);
}

.barrier-conclusion {
    background: rgba(216, 255, 0, 0.08);
    padding: 0.9em 1.3em;
    border-radius: 8px;
    border-left: 3px solid var(--accent-lime);
}

.barrier-conclusion p {
    margin: 0;
    font-size: 0.95em;
}

.barrier-conclusion strong {
    color: var(--accent-lime);
}

/* Delivery Modes */
.delivery-modes {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.8em;
    align-items: stretch;
    margin: 1.2em 0;
}

.mode {
    padding: 1.1em;
    background: var(--bg-card);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-subtle);
}

.mode-header h3 {
    font-size: 0.95em;
    margin-bottom: 0.4em;
    color: var(--text-primary);
}

.mode p {
    font-size: 0.8em;
    color: var(--text-muted);
    flex-grow: 1;
}

.mode-outcome {
    margin-top: 0.6em;
    padding-top: 0.6em;
    border-top: 1px solid var(--border-subtle);
}

.mode-outcome span {
    font-size: 0.75em;
    font-weight: 600;
    color: var(--accent-mint);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mode-connector {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mode-connector span {
    font-size: 1.5em;
    font-weight: 300;
    color: var(--accent-lime);
}

.wedge-section {
    background: var(--bg-card);
    padding: 0.9em 1.1em;
    border-radius: 8px;
    margin-bottom: 0.8em;
    border: 1px solid var(--border-subtle);
}

.wedge-section h4 {
    font-size: 0.85em;
    margin-bottom: 0.4em;
    color: var(--accent-mint);
}

.wedge-section p {
    font-size: 0.8em;
    color: var(--text-muted);
    margin: 0;
}

.sprint-note {
    font-size: 0.85em;
    color: var(--text-muted);
    padding: 0.7em 1em;
    background: rgba(216, 255, 0, 0.06);
    border-radius: 8px;
    border-left: 3px solid var(--accent-lime);
}

.sprint-note p {
    margin: 0;
}

.sprint-note strong {
    color: var(--accent-lime);
}

/* Deliverables */
.deliverables {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2em;
    margin: 1.5em 0;
}

.deliverable {
    padding: 1.3em;
    background: var(--bg-card);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.deliverable-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.8em;
}

.deliverable-icon svg {
    width: 100%;
    height: 100%;
    color: var(--accent-lime);
}

.deliverable h3 {
    font-size: 0.95em;
    margin-bottom: 0.5em;
    text-align: center;
    color: var(--text-primary);
}

.deliverable p {
    font-size: 0.8em;
    color: var(--text-muted);
    margin: 0;
    text-align: left;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2em;
    margin: 1.2em 0;
}

.metric-category {
    padding: 1.1em;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

.metric-category h3 {
    font-size: 0.9em;
    margin-bottom: 0.7em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid var(--accent-lime);
    color: var(--text-primary);
}

.metric-category ul {
    margin: 0;
    padding-left: 1.2em;
}

.metric-category li {
    font-size: 0.8em;
    color: var(--text-muted);
    margin-bottom: 0.35em;
}

/* Final CTA */
.final-cta {
    margin-top: 1.5em;
    padding: 1.3em 1.8em;
    background: linear-gradient(135deg, rgba(216, 255, 0, 0.2) 0%, rgba(216, 255, 0, 0.08) 100%);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(216, 255, 0, 0.4);
}

.cta-text {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--accent-lime);
    margin-bottom: 0.3em;
}

.cta-subtext {
    font-size: 1em;
    color: var(--text-secondary);
    margin: 0;
}

/* Reveal.js Overrides */
.reveal .slide-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    background: transparent;
    right: 20px;
    bottom: 20px;
}

.reveal .progress {
    height: 3px;
    color: var(--accent-lime);
    background: rgba(255, 255, 255, 0.1);
}

.reveal .controls {
    color: var(--accent-lime);
}

.reveal .controls button:hover {
    color: var(--text-primary);
}

/* Footer with logo */
.slide-footer {
    position: absolute;
    bottom: 20px;
    left: 60px;
    opacity: 0.5;
}

.slide-footer img {
    height: 16px;
    width: auto;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .reveal section {
        padding: 30px 40px;
    }

    .three-shifts,
    .behaviours-grid,
    .barriers-visual,
    .deliverables,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .delivery-modes {
        grid-template-columns: 1fr;
    }

    .mode-connector {
        transform: rotate(90deg);
    }
}
