@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    --bg-main: hsl(222, 47%, 9%);
    --bg-card: hsla(222, 47%, 14%, 0.7);
    --bg-card-hover: hsla(222, 47%, 18%, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-active: hsla(145, 80%, 50%, 0.4);
    
    --text-primary: hsl(210, 40%, 98%);
    --text-secondary: hsl(215, 20%, 75%);
    --text-muted: hsl(215, 15%, 50%);
    
    --accent-emerald: hsl(150, 84%, 37%);
    --accent-mint: hsl(145, 80%, 50%);
    --accent-amber: hsl(35, 92%, 52%);
    --accent-violet: hsl(263, 90%, 51%);
    --accent-indigo: hsl(240, 80%, 65%);
    --accent-crimson: hsl(346, 84%, 55%);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px hsla(145, 80%, 50%, 0.15);
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-sans: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(at 10% 10%, hsla(150, 84%, 37%, 0.06) 0px, transparent 50%),
        radial-gradient(at 90% 10%, hsla(263, 90%, 51%, 0.06) 0px, transparent 50%),
        radial-gradient(at 50% 90%, hsla(35, 92%, 52%, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Header & Navigation Styles */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: hsla(222, 47%, 7%, 0.75);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-mint), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
}

.logo svg {
    stroke: url(#logo-grad);
    width: 2.2rem;
    height: 2.2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

nav a:hover, nav li.active a {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
}

nav li.active a {
    background-color: hsla(145, 80%, 50%, 0.1);
    border-color: var(--border-active);
    box-shadow: 0 0 10px rgba(145, 250, 180, 0.05);
}

/* Container & Sections */
main {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.tab-content {
    display: none;
    animation: fadeIn var(--transition-normal);
}

.tab-content.active {
    display: block;
}

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

/* Cards & Layout Grid */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card-hover);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: var(--transition-normal);
}

.card.card-green:hover::before {
    background: linear-gradient(90deg, var(--accent-emerald), var(--accent-mint));
}

.card.card-amber:hover::before {
    background: linear-gradient(90deg, var(--accent-amber), #ffbb00);
}

.card.card-violet:hover::before {
    background: linear-gradient(90deg, var(--accent-violet), var(--accent-indigo));
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Home view styles */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0 4rem;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-img {
        order: -1;
    }
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero h1 span.gradient-text {
    background: linear-gradient(135deg, var(--accent-mint) 30%, var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent-emerald);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.btn:hover {
    background-color: var(--accent-mint);
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(52, 211, 153, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--text-secondary);
    box-shadow: none;
}

.btn-violet {
    background-color: var(--accent-violet);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.2);
}

.btn-violet:hover {
    background-color: var(--accent-indigo);
    box-shadow: 0 4px 15px rgba(165, 180, 252, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: inherit;
}

@media (max-width: 900px) {
    .hero-buttons {
        justify-content: center;
    }
}

.hero-img svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(16, 185, 129, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

/* Section Header Styles */
.section-title {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-mint), var(--accent-violet));
    border-radius: 2px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 800px;
}

/* Simulation Section Styles */
.simulator-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
}

@media (max-width: 1000px) {
    .simulator-layout {
        grid-template-columns: 1fr;
    }
}

.sim-control-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sim-visualizer {
    background: hsla(222, 47%, 6%, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
}

.sim-visualizer svg {
    max-width: 100%;
    height: auto;
}

.control-group {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1rem;
}

.control-group label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.control-group label span {
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.slider-input {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    margin: 0.5rem 0;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent-mint);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-mint);
    transition: var(--transition-fast);
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-solar::-webkit-slider-thumb {
    background: var(--accent-amber);
    box-shadow: 0 0 10px var(--accent-amber);
}

.toggle-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-toggle {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 34px;
    transition: var(--transition-normal);
}

.slider-toggle:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: var(--transition-normal);
}

input:checked + .slider-toggle {
    background-color: var(--accent-mint);
}

input:checked + .slider-toggle:before {
    transform: translateX(24px);
}

.switch-solar input:checked + .slider-toggle {
    background-color: var(--accent-amber);
}

.sim-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
}

.sim-badge.active {
    background: hsla(145, 80%, 50%, 0.15);
    border-color: var(--accent-mint);
    color: var(--accent-mint);
    animation: blink 2s infinite;
}

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

.pest-image-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pest-leaf-thumb {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0.25rem;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.pest-leaf-thumb:hover {
    background: rgba(255,255,255,0.05);
}

.pest-leaf-thumb.active {
    border-color: var(--accent-violet);
    background: rgba(139, 92, 246, 0.1);
}

.pest-leaf-thumb svg {
    width: 2.5rem;
    height: 2.5rem;
}

.pest-leaf-label {
    font-size: 0.7rem;
    font-weight: 600;
}

.ia-terminal {
    background: #060b13;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-mint);
    margin-top: 1rem;
    height: 80px;
    overflow-y: auto;
}

.pulse-wire {
    stroke-dasharray: 8;
    animation: dash 1s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -16;
    }
}

/* Virtual School Styles */
.lesson-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.lesson-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.lesson-item svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: var(--accent-mint);
}

.quiz-container {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.quiz-question {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.quiz-option-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.quiz-option-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    color: var(--text-primary);
}

.quiz-option-btn.selected {
    border-color: var(--accent-mint);
    background: rgba(16, 185, 129, 0.15);
    color: var(--text-primary);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.quiz-option-btn.incorrect {
    border-color: var(--accent-crimson);
    background: rgba(239, 68, 68, 0.15);
    color: var(--text-primary);
}

.card-simulation {
    perspective: 1000px;
    width: 100%;
    max-width: 380px;
    height: 240px;
    margin: 1.5rem auto;
}

.credit-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-lg);
    border-radius: 15px;
    background: linear-gradient(135deg, var(--accent-violet), var(--accent-indigo));
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.credit-card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #ffd700, #b8860b);
    border-radius: 6px;
}

.credit-card-number {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    letter-spacing: 2px;
    word-spacing: 5px;
    color: white;
}

.credit-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.credit-card-holder {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credit-card-val {
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.cert-preview-card {
    background: #fff;
    color: #111;
    border: 15px double #b8860b;
    padding: 2rem;
    font-family: 'Georgia', serif;
    text-align: center;
    position: relative;
    max-width: 600px;
    margin: 1.5rem auto;
    box-shadow: var(--shadow-lg);
}

.cert-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #b8860b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.cert-subtitle {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

.cert-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 1rem 0;
    font-style: italic;
    color: #222;
}

.cert-body {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 1rem auto 1.5rem;
    max-width: 400px;
}

.cert-footer {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    font-size: 0.7rem;
    border-top: 1px dashed #ccc;
    padding-top: 1rem;
}

.cert-seal {
    width: 60px;
    height: 60px;
    background: radial-gradient(#ffd700, #cc9900);
    border-radius: 50%;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    opacity: 0.85;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: bold;
    color: #8b5a00;
    transform: rotate(-15deg);
    border: 2px dashed #b8860b;
}

/* Financial Section Styles */
.finance-dashboard {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
}

@media (max-width: 1000px) {
    .finance-dashboard {
        grid-template-columns: 1fr;
    }
}

.finance-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
}

.metric-card-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.metric-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-mono);
}

.metric-card-value.green {
    color: var(--accent-mint);
}

.metric-card-value.red {
    color: var(--accent-crimson);
}

.metric-card-value.amber {
    color: var(--accent-amber);
}

.recommendation-panel {
    background: hsla(150, 84%, 37%, 0.08);
    border: 1px solid hsla(145, 80%, 50%, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.recommendation-panel.warning {
    background: hsla(346, 84%, 55%, 0.08);
    border-color: hsla(346, 84%, 55%, 0.2);
}

.recommendation-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recommendation-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Document Reader (Markdown rendering simulation) */
.doc-reader {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    max-height: 700px;
    overflow-y: auto;
    font-family: var(--font-sans);
}

@media (max-width: 768px) {
    .doc-reader {
        padding: 1.5rem;
    }
}

.doc-reader h1, .doc-reader h2, .doc-reader h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.doc-reader h1 {
    font-size: 2.2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    color: var(--text-primary);
}

.doc-reader h2 {
    font-size: 1.6rem;
    color: var(--accent-mint);
    border-bottom: 1px dashed rgba(255,255,255,0.05);
    padding-bottom: 0.25rem;
}

.doc-reader h3 {
    font-size: 1.2rem;
}

.doc-reader p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.doc-reader ul {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.doc-reader li {
    margin-bottom: 0.5rem;
}

.doc-reader table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.doc-reader th, .doc-reader td {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.doc-reader th {
    background-color: rgba(255,255,255,0.04);
    font-weight: 600;
}

.doc-reader tr:nth-child(even) {
    background-color: rgba(255,255,255,0.01);
}

/* Presenter View Styles */
.pitch-container {
    background: #0b0f19;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.pitch-slide {
    display: none;
    animation: slideIn 0.4s ease-out;
}

.pitch-slide.active {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

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

.slide-number {
    font-family: var(--font-mono);
    color: var(--accent-mint);
    font-weight: 700;
    font-size: 0.9rem;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-body {
    font-size: 1.25rem;
    color: var(--text-secondary);
    flex-grow: 1;
}

.slide-body ul {
    margin-top: 1rem;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.slide-body li {
    font-size: 1.15rem;
}

.pitch-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.slide-dots {
    display: flex;
    gap: 0.5rem;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slide-dot.active {
    background-color: var(--accent-mint);
    transform: scale(1.3);
}

.pitch-nav-buttons {
    display: flex;
    gap: 1rem;
}

.slide-bg-decor {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.decor-green {
    background-color: var(--accent-emerald);
    top: -100px;
    right: -100px;
}

.decor-violet {
    background-color: var(--accent-violet);
    bottom: -100px;
    left: -100px;
}

.slide-visual-aid {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

.slide-metric-box {
    text-align: center;
    background: rgba(0,0,0,0.2);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    min-width: 150px;
}

.slide-metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-mint);
    font-family: var(--font-mono);
}

.slide-metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Printable Certificate styles override for printing */
@media print {
    body * {
        visibility: hidden;
    }
    .cert-preview-card, .cert-preview-card * {
        visibility: visible;
    }
    .cert-preview-card {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        max-width: 100%;
        border: 20px double #b8860b;
        box-shadow: none;
    }
}
