/* ==========================================================================
   Design System & Variable Declarations (Awwwards / Technical Dark)
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-dark: #050608;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.04);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(0, 245, 144, 0.15);

    --text-primary: #f4f4f5;
    --text-secondary: #9ca3af;
    --text-muted: #52525b;

    --accent: #00f590;
    /* Stark, fresh neon mint green */
    --accent-glow: rgba(0, 245, 144, 0.1);

    --accent-warn: #f43f5e;
    /* Sleek coral red */
    --accent-warn-glow: rgba(244, 63, 94, 0.1);

    --accent-highlight: #f59e0b;
    /* Warm gold */
    --accent-highlight-glow: rgba(245, 158, 11, 0.1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout & Animation */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    /* Elegant Subtle Border Radii (Anti-AI Slop - Not bubbly, but not harsh) */
    --radius-small: 4px;
    --radius-medium: 6px;
    --radius-large: 12px;
}

/* Reset & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow: hidden;
    /* Hide scrollbars for presentation mode */
    height: 100vh;
    width: 100vw;
    display: flex;
    position: relative;
}

/* Technical Grid Overlay */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

/* Background Ambient Glows */
.ambient-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 245, 144, 0.06) 0%, rgba(5, 6, 8, 0) 70%);
}

.glow-2 {
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.03) 0%, rgba(5, 6, 8, 0) 70%);
}

/* ==========================================================================
   Presentation Layout (Full Screen)
   ========================================================================== */
.deck-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    overflow: hidden;
}

/* Slide Container styling */
.slides-wrapper {
    flex: 1;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.98);
    transition: var(--transition-smooth);
    padding: 3.5rem 6rem 6rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Prevents vertical cutoff on small viewports */
    overflow-y: auto;
    /* Enable vertical scrolling within a slide if content is taller than viewport */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
    z-index: 1;
}

/* Slide States */
.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 2;
}

.slide.prev-slide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px) scale(0.98);
    z-index: 1;
}

/* ==========================================================================
   Navigation & Interface Elements
   ========================================================================== */

/* Progress Indicator */
.deck-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.03);
    z-index: 100;
}

.deck-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #10b981);
    width: 0%;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(0, 245, 144, 0.4);
}

/* Left Sidebar - Navigation Flow */
.sidebar-nav {
    width: 280px;
    height: 100%;
    background: rgba(5, 6, 8, 0.7);
    border-right: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 2rem;
    z-index: 50;
    position: relative;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent);
}

.logo-svg {
    stroke-width: 2px;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.nav-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 3rem 0;
}

.nav-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    user-select: none;
    border-left: 2px solid transparent;
}

.nav-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

.nav-item.active {
    color: var(--accent);
    font-weight: 500;
    background: rgba(0, 245, 144, 0.04);
    border-left: 2px solid var(--accent);
    border-radius: 0 var(--radius-small) var(--radius-small) 0;
    padding-left: calc(0.75rem - 2px);
}

.nav-number {
    font-family: var(--font-heading);
    opacity: 0.4;
    font-size: 0.75rem;
}

.nav-item.active .nav-number {
    opacity: 1;
}

/* Sidebar Footer Info */
.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shortcuts-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    line-height: 1.4;
}

.shortcuts-info code {
    background: rgba(255, 255, 255, 0.04);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
    color: var(--text-secondary);
    font-family: monospace;
}

.impressum-btn {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.impressum-btn:hover {
    color: var(--accent);
}

/* Bottom Floating Navigation (Prev/Next buttons) */
.controls-floating {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 100;
}

.slide-counter {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-right: 0.75rem;
}

.btn-nav {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: var(--accent);
}

.btn-nav:active:not(:disabled) {
    transform: translateY(0);
}

.btn-nav:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

/* ==========================================================================
   Typography & Basic Content Blocks
   ========================================================================== */
.slide-header {
    margin-top: auto;
    /* Push down to center */
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.slide-tag {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    max-width: 48rem;
    background: linear-gradient(135deg, #ffffff 0%, #d4d4d8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-content {
    margin-bottom: auto;
    /* Push up to center */
    flex: 1;
    display: grid;
    gap: 2.5rem;
    position: relative;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 44rem;
}

/* Card grids for general contents */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.premium-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    padding: 2rem;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.premium-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    background: var(--bg-card-hover);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-title-svg {
    color: var(--accent);
    flex-shrink: 0;
}

.card-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ==========================================================================
   Slide Specific Styles
   ========================================================================== */

/* Slide 1: Einstieg (Intro) */
.slide-intro {
    align-items: flex-start;
    justify-content: center;
}

.slide-intro .slide-title {
    font-size: 3.5rem;
    max-width: 55rem;
    margin-bottom: 1.5rem;
}

.slide-intro .lead-text {
    font-size: 1.15rem;
    max-width: 50rem;
    margin-bottom: 2.5rem;
}

.btn-primary {
    background: var(--accent);
    border: none;
    color: var(--bg-dark);
    padding: 0.9rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-small);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #00d67e;
    box-shadow: 0 5px 15px rgba(0, 245, 144, 0.2);
}

.btn-primary svg {
    transition: transform 0.2s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* Slide 2: Zentraler Knotenpunkt */
.knotenpunkt-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.stat-showcase {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-large);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.stat-header {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent-warn);
    line-height: 1;
}

.stat-unit {
    font-size: 1.5rem;
    color: var(--accent-warn);
    font-weight: 600;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.mobile-preview-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CSS Smartphone Mockup */
.phone-mockup {
    width: 200px;
    height: 350px;
    background: #0d0e12;
    border: 6px solid #1c1d24;
    border-radius: var(--radius-large);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    position: relative;
}

/* Bad Site Preview (broken, tiny text) */
.phone-preview-bad {
    background: #ffffff;
    color: #000;
    font-size: 6px;
    height: 100%;
    padding: 0.5rem;
}

.phone-preview-bad header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.25rem;
    font-weight: bold;
    font-size: 7px;
}

.phone-preview-bad .zoom-alert {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #ef4444;
    padding: 4px;
    margin-top: 1.5rem;
    border-radius: 2px;
    text-align: center;
    font-size: 6px;
}

.phone-preview-bad .text-line {
    height: 3px;
    background: #e4e4e7;
    margin: 4px 0;
    border-radius: 1px;
}

.phone-preview-bad .btn-unclickable {
    background: #2563eb;
    color: white;
    width: 30px;
    height: 10px;
    font-size: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1px;
    margin-top: 1.5rem;
}

/* Good Site Preview */
.phone-preview-good {
    background: #090a0f;
    color: var(--text-primary);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phone-preview-good header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.phone-logo {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 2px;
}

.phone-menu {
    width: 10px;
    height: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.phone-menu span {
    height: 1.5px;
    background: white;
    width: 100%;
    display: block;
}

.phone-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.phone-heading {
    font-size: 9px;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.phone-button {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.4rem;
    border-radius: 3px;
    font-size: 7px;
    font-weight: bold;
    text-align: center;
}

.phone-animal-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    padding: 0.4rem;
    display: flex;
    gap: 0.4rem;
}

.phone-animal-img {
    width: 25px;
    height: 25px;
    background: #1c1d24;
    border-radius: 2px;
}

.phone-animal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.phone-animal-name {
    font-size: 6px;
    font-weight: 600;
}

.phone-animal-status {
    width: 12px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

/* Compare switch indicator */
.phone-comparison-toggle {
    margin-top: 1rem;
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: var(--radius-medium);
    gap: 4px;
    align-self: center;
}

.toggle-option {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    border-radius: var(--radius-small);
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-secondary);
}

.toggle-option.active {
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 600;
}

.toggle-option.active.bad {
    background: var(--accent-warn);
    color: var(--text-primary);
}

/* ==========================================================================
   Slide 3: Digital-Pate Layout & Tab Styling (Redesigned)
   ========================================================================== */
.pate-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
}

.pate-tabs-container {
    margin-top: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    overflow: hidden;
    background: var(--bg-card);
}

.pate-tabs-header {
    display: flex;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}

.pate-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-right: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    white-space: nowrap;
}

.pate-tab-btn:last-child {
    border-right: none;
}

.pate-tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.015);
}

.pate-tab-btn.active {
    color: var(--accent);
    background: rgba(0, 245, 144, 0.03);
    font-weight: 600;
    box-shadow: inset 0 -2px 0 var(--accent);
}

.pate-tabs-body {
    padding: 1.5rem;
}

.pate-tab-content {
    display: none;
    animation: fade-in-tab 0.35s ease forwards;
}

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

@keyframes fade-in-tab {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pate-tab-headline {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-icon {
    color: var(--accent);
}

.pate-tab-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.pate-preview-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.pate-concept-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.concept-price-tag {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.concept-price-detail {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pate-sponsor-intro {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    padding: 1.25rem;
}

.sponsor-demo-site {
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #07080a;
    border-radius: var(--radius-medium);
    height: 120px;
    position: relative;
    padding: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Sleek Badge Preview */
.sponsor-badge-floating {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(5, 6, 8, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-small);
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    animation: floating-badge 4s ease-in-out infinite;
}

@keyframes floating-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.sponsor-badge-text {
    font-size: 0.6rem;
    color: var(--text-secondary);
    line-height: 1.2;
}

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

.sponsor-badge-logo {
    width: 14px;
    height: 14px;
    border-radius: 2px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 8px;
    color: var(--bg-dark);
}

.sponsor-badge-glow {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 80px;
    height: 35px;
    background: radial-gradient(circle, rgba(0, 245, 144, 0.15) 0%, rgba(5, 6, 8, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
   Slide 6: Dashboard
   ========================================================================== */
.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 3rem;
    align-items: center;
}

.dashboard-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dashboard-feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    padding: 1.15rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dashboard-feature-item:hover,
.dashboard-feature-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.12);
}

.dashboard-feature-item.active {
    border-left: 2px solid var(--accent);
    border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
    padding-left: calc(1.15rem - 2px);
}

.dashboard-feature-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    font-family: var(--font-heading);
}

.tab-icon-svg {
    color: var(--text-secondary);
}

.dashboard-feature-item.active .tab-icon-svg {
    color: var(--accent);
}

.dashboard-feature-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.45;
    padding-left: 1.6rem;
}

.dashboard-preview-window {
    background: #0a0b0f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-large);
    height: 310px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.db-win-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.db-win-dots {
    display: flex;
    gap: 5px;
}

.db-win-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.db-win-dots span:nth-child(1) {
    background: #f43f5e;
}

.db-win-dots span:nth-child(2) {
    background: #eab308;
}

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

.db-win-title {
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.db-win-body {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.db-win-sidebar {
    width: 120px;
    background: rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.db-side-item {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-small);
    cursor: pointer;
    font-family: var(--font-heading);
}

.db-side-item.active {
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent);
    font-weight: 500;
}

.db-win-content {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    position: relative;
}

.cms-content-tab {
    display: none;
    animation: fade-in-tab 0.3s ease;
}

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

.cms-headline {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.cms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.cms-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cms-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cms-input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-small);
    padding: 0.4rem;
    font-size: 0.75rem;
    color: white;
}

.cms-button {
    grid-column: span 2;
    background: var(--accent);
    color: var(--bg-dark);
    text-align: center;
    padding: 0.45rem;
    border-radius: var(--radius-small);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.4rem;
}

.cms-animal-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cms-animal-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-small);
    padding: 0.4rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cms-animal-name {
    font-size: 0.75rem;
    font-weight: 600;
}

.cms-animal-badge {
    font-size: 0.6rem;
    background: rgba(0, 245, 144, 0.08);
    color: var(--accent);
    padding: 1px 5px;
    border-radius: var(--radius-small);
}

/* ==========================================================================
   Slide 7: Die Technik (Redesigned with clean monocolor rows)
   ========================================================================== */
.tech-cockpit-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 3rem;
    align-items: center;
}

.tech-cockpit-pillars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tech-pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    padding: 1.15rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.tech-pillar-card:hover,
.tech-pillar-card.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.12);
}

.tech-pillar-card.active {
    border-left: 2.5px solid var(--accent);
    border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
    padding-left: calc(1.15rem - 2.5px);
}

.tech-pillar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tech-pillar-icon {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.tech-pillar-card.active .tech-pillar-icon {
    color: var(--accent);
}

.tech-pillar-number {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tech-pillar-card.active .tech-pillar-number {
    color: var(--accent);
}

.tech-pillar-meta {
    padding-top: 0.1rem;
}

.tech-pillar-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
}

.tech-pillar-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
}

/* Right display panel */
.tech-cockpit-display {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-detail-text-wrapper {
    min-height: 80px;
    position: relative;
}

.tech-detail-paragraph {
    display: none;
    animation: fade-in-tab 0.3s ease;
}

.tech-detail-paragraph.active {
    display: block;
}

.tech-detail-paragraph p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Visualizer Window */
.tech-cockpit-visualizer {
    background: #0a0b0f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-large);
    height: 220px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.tech-visualizer-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.7rem;
}

.tech-visualizer-dots {
    display: flex;
    gap: 5px;
}

.tech-visualizer-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.tech-visualizer-dots span:nth-child(1) {
    background: #f43f5e;
}

.tech-visualizer-dots span:nth-child(2) {
    background: #eab308;
}

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

.tech-visualizer-title {
    color: var(--text-secondary);
}

.tech-visualizer-status {
    color: var(--accent);
    font-weight: 500;
}

.tech-visualizer-body {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-visualizer-pane {
    display: none;
    height: 100%;
    width: 100%;
    animation: fade-in-tab 0.3s ease;
}

.tech-visualizer-pane.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Pane 1: Code Window */
.ide-code-window {
    font-family: monospace;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem;
    border-radius: var(--radius-small);
    border: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%;
    overflow-x: auto;
}

.ide-line {
    display: flex;
    gap: 0.75rem;
}

.ide-num {
    color: var(--text-muted);
    text-align: right;
    width: 15px;
    user-select: none;
}

.ide-keyword {
    color: #c084fc;
    font-weight: 500;
}

.ide-string {
    color: var(--accent);
}

.ide-comment {
    color: var(--text-muted);
    font-style: italic;
}

.ide-bool {
    color: #f59e0b;
}

/* Pane 2: Datenbanklos */
.nodb-graphics {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 0.5rem 1rem;
    margin-bottom: 0.75rem;
}

.nodb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.nodb-circle-glow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    background: rgba(0, 245, 144, 0.02);
    box-shadow: 0 0 12px rgba(0, 245, 144, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.nodb-circle-glow.speed-glow {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.02);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.08);
}

.speed-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #38bdf8;
}

.nodb-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nodb-val {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.nodb-val.font-accent {
    color: var(--accent);
}

.nodb-connector {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, var(--accent) 0%, #38bdf8 100%);
    margin: 0 1rem;
    position: relative;
    max-width: 80px;
}

.nodb-arrow-glow {
    position: absolute;
    top: -3px;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #38bdf8;
    border-right: 1.5px solid #38bdf8;
    transform: rotate(45deg);
}

.nodb-badge-row {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.nodb-badge {
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
}

.nodb-badge svg {
    color: var(--accent);
}

/* Pane 3: Hosting Invoice */
.hosting-invoice {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-medium);
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.font-accent {
    color: var(--accent);
    font-weight: 500;
}

.invoice-divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0.15rem 0;
}

.invoice-row.total-row {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.invoice-note {
    font-size: 0.62rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.3;
}

/* Pane 4: Ownership */
.control-accounts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
}

.account-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-medium);
    padding: 0.75rem;
    flex: 1;
    max-width: 170px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.account-card.owner {
    border-color: rgba(0, 245, 144, 0.15);
    box-shadow: 0 0 15px rgba(0, 245, 144, 0.03);
}

.account-badge {
    position: absolute;
    top: -8px;
    left: 8px;
    font-size: 0.52rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--bg-dark);
    text-transform: uppercase;
}

.account-badge.admin-badge {
    background: var(--text-muted);
    color: var(--text-primary);
}

.account-name {
    font-weight: 600;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-top: 2px;
}

.account-desc {
    font-size: 0.65rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

.account-connector {
    color: var(--text-muted);
    opacity: 0.6;
    display: flex;
    align-items: center;
}

/* ==========================================================================
   Slide 8: Fokus
   ========================================================================== */
.fokus-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.cookie-blocker-graphic {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-large);
    padding: 2.5rem;
    position: relative;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
}

.cookie-banner-simulated {
    background: #0f1015;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-medium);
    padding: 1.25rem;
    width: 230px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    position: absolute;
    transform: rotate(-3deg);
    transition: var(--transition-smooth);
    z-index: 10;
}

.cookie-banner-simulated.blocked {
    transform: rotate(-10deg) translateY(200px) scale(0.8);
    opacity: 0;
}

.cookie-sim-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 3px;
    font-family: var(--font-heading);
}

.cookie-sim-desc {
    font-size: 0.65rem;
    color: var(--text-secondary);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.cookie-sim-buttons {
    display: flex;
    gap: 6px;
}

.cookie-sim-btn {
    flex: 1;
    font-size: 0.65rem;
    text-align: center;
    padding: 0.35rem;
    border-radius: var(--radius-small);
    background: rgba(255, 255, 255, 0.04);
}

.cookie-sim-btn.primary {
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 600;
}

.no-cookies-badge {
    background: rgba(0, 245, 144, 0.08);
    border: 1px solid rgba(0, 245, 144, 0.2);
    color: var(--accent);
    padding: 0.9rem 1.8rem;
    border-radius: var(--radius-medium);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: scale(0.9);
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.cookie-blocker-graphic.activated .no-cookies-badge {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 15px rgba(0, 245, 144, 0.15);
}

.fokus-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fokus-bullet-item {
    display: flex;
    gap: 0.8rem;
}

.fokus-bullet-icon {
    width: 22px;
    height: 22px;
    border-radius: var(--radius-small);
    background: rgba(0, 245, 144, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.fokus-bullet-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fokus-bullet-title {
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.fokus-bullet-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   Slide 9: Geschichte
   ========================================================================== */
.marius-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: flex-start;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-large);
    padding: 0.25rem;
    /* Drastically minimized padding */
    width: 100%;
    /* Fill column width */
    aspect-ratio: 3 / 4;
    /* Maintain 3:4 proportion */
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    display: block;
    position: sticky;
    top: 0px;
    /* Normal block element to ensure aspect-ratio works reliably */
}

.profile-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.profile-photo-wrapper {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    right: 0.25rem;
    bottom: 0.25rem;
    border-radius: calc(var(--radius-large) - 0.25rem);
    /* concentric border radius */
    overflow: hidden;
    background: #0d0e12;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 1rem 1rem 1rem;
    background: linear-gradient(to top,
            rgba(10, 11, 15, 0.95) 0%,
            rgba(10, 11, 15, 0.65) 50%,
            rgba(10, 11, 15, 0) 100%);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: left;
    z-index: 2;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.profile-role {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 500;
    line-height: 1.3;
}

/* High-Fidelity Paw-Heart Badge Container & Animated Ripples */
.paw-heart-badge-container {
    position: absolute;
    top: 1rem;
    right: 1rem;
    transform: none;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    display: none;
}

.paw-heart-badge {
    width: 68px;
    height: 68px;
    background: radial-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.5),
        0 0 18px rgba(0, 245, 144, 0.15);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.paw-heart-badge:hover {
    border-color: rgba(0, 245, 144, 0.4);
    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 245, 144, 0.25);
    transform: translateY(-1px);
}

.badge-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 30%,
            rgba(255, 255, 255, 0) 50%);
    transform: rotate(15deg);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.paw-heart-badge:hover .badge-glare {
    transform: rotate(20deg) translate(5px, 5px);
}

.paw-ripple-ring {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0, 245, 144, 0.25);
    background: transparent;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

.ring-1 {
    animation: paw-ripple 2.5s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.ring-2 {
    animation: paw-ripple 2.5s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
    animation-delay: 1.25s;
}

.paw-heart-icon {
    display: block;
    filter: drop-shadow(0 0 2px rgba(0, 245, 144, 0.3));
    animation: heart-beat-scale 2.5s infinite ease-in-out;
}

@keyframes paw-ripple {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
        border-color: rgba(0, 245, 144, 0.35);
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
        border-color: rgba(56, 189, 248, 0);
        box-shadow: 0 0 8px rgba(0, 245, 144, 0);
    }
}

@keyframes heart-beat-scale {

    0%,
    100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.18);
    }

    20% {
        transform: scale(1.03);
    }

    30% {
        transform: scale(1.12);
    }

    45% {
        transform: scale(1);
    }
}



.marius-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.marius-intro-section {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.marius-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}



.marius-highlight-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-medium);
    padding: 1.25rem;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.marius-highlight-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.marius-card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-highlight {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    border-left: 2px solid var(--accent);
    padding-left: 1.25rem;
    margin: 0.5rem 0;
}

/* ==========================================================================
   Responsive Adaptation (High-End Clean Mobile Support)
   ========================================================================== */
@media (max-width: 1024px) {
    body {
        overflow: auto;
        /* Allow scroll on layout shift */
        height: auto;
    }

    body::after {
        background-size: 40px 40px;
        /* smaller grids on mobile */
    }

    .deck-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .sidebar-nav {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 1.25rem 1.5rem;
        flex-direction: row;
        align-items: center;
        background: var(--bg-dark);
        position: sticky;
        top: 0;
        z-index: 200;
    }

    .nav-links-list {
        display: none;
        /* Hide on mobile/tablet */
    }

    .shortcuts-info {
        display: none;
    }

    .profile-card {
        max-width: 280px;
        margin: 0 auto;
    }

    .slide {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        padding: 3.5rem 1.5rem 5rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        display: flex;
    }

    .slide.prev-slide {
        opacity: 1;
        visibility: visible;
    }

    .controls-floating {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        background: rgba(5, 6, 8, 0.9);
        padding: 0.4rem 0.8rem;
        border-radius: var(--radius-medium);
        backdrop-filter: blur(10px);
        border: 1px solid var(--border-color);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2.1rem;
    }

    .slide-intro .slide-title {
        font-size: 1.75rem;
    }

    .lead-text {
        font-size: 1.05rem;
    }

    .grid-2,
    .grid-3,
    .knotenpunkt-layout,
    .pate-layout,
    .dashboard-layout,
    .tech-cockpit-layout,
    .fokus-layout,
    .marius-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pate-tabs-header {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .pate-tab-btn {
        border-right: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .pate-tab-btn:nth-child(even) {
        border-right: none;
    }

    .pate-tab-btn:nth-child(n+3) {
        border-bottom: none;
    }

    .phone-mockup {
        height: 300px;
        width: 160px;
    }

    .cookie-blocker-graphic {
        height: 220px;
    }

    .dashboard-preview-window {
        height: 270px;
    }
}