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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(var(--color-accent-rgb), 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(var(--color-accent-rgb), 0.6);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-glow {
    animation: glow 3s infinite;
}

.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }
.animate-delay-400 { animation-delay: 400ms; }
.animate-delay-500 { animation-delay: 500ms; }

:root {
    color-scheme: dark;
    --font-sans: 'Inter', 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --color-bg: #0a0b0e;
    --color-surface: #121418;
    --color-surface-elevated: #181b20;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-strong: rgba(var(--color-accent-rgb), 0.55);
    --color-accent: #00b3ff;
    --color-accent-rgb: 0, 179, 255;
    --color-text: #ffffff;
    --color-text-muted: #b8bcc8;
    --color-text-dim: #9ca3af;
    --shadow-soft: 0 24px 60px rgba(8, 12, 22, 0.45);
    --shadow-ring: 0 0 0 1px rgba(var(--color-accent-rgb), 0.35);
    --shadow-hover: 0 32px 80px rgba(var(--color-accent-rgb), 0.15);
    --shadow-glow: 0 0 40px rgba(var(--color-accent-rgb), 0.4);
    --text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 179, 255, 0.1);
    --text-shadow-strong: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 179, 255, 0.2);
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    text-shadow: var(--text-shadow);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    text-shadow: var(--text-shadow-strong);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-shadow: var(--text-shadow-strong);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
    text-shadow: var(--text-shadow);
}

p, span, div {
    color: var(--color-text);
}

.text-muted {
    color: #d4d8e0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 179, 255, 0.1);
    font-weight: 500;
}

/* Specific fixes for descriptive paragraphs */
section p:not([class*="accent"]):not([class*="gradient"]) {
    color: #d4d8e0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 179, 255, 0.1);
    font-weight: 500;
}

/* Fix all service descriptions */
.fade-border p {
    color: #d4d8e0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 179, 255, 0.1);
    font-weight: 500;
}

/* Fix industry descriptions */
article p {
    color: #d4d8e0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 179, 255, 0.1);
    font-weight: 500;
}

/* Fix capability lists */
.fade-border li span {
    color: #d4d8e0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 179, 255, 0.1);
    font-weight: 500;
}

/* Fix why vertali descriptions */
.fade-border span {
    color: #d4d8e0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 179, 255, 0.1);
    font-weight: 500;
}

.text-accent {
    color: var(--color-accent) !important;
    text-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.5);
    font-weight: 600;
}

/* Additional fixes for specific text elements */
.max-w-xl p,
.max-w-3xl p {
    color: #d4d8e0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 179, 255, 0.1);
    font-weight: 500;
}

/* Fix all list items in services */
.fade-border ul li span {
    color: #d4d8e0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 179, 255, 0.1);
    font-weight: 500;
}

/* Fix testimonial quotes */
blockquote p {
    color: #d4d8e0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 179, 255, 0.1);
    font-weight: 500;
}

/* Fix footer descriptions */
footer p {
    color: #d4d8e0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 179, 255, 0.1);
    font-weight: 500;
}

/* Fix any remaining muted text */
.text-muted,
.muted {
    color: #d4d8e0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 179, 255, 0.1);
    font-weight: 500;
}

/* Super aggressive fix for ALL text */
* {
    color: inherit !important;
}

p, span, li, div:not([class*="btn"]):not([class*="card"]):not([class*="panel"]) {
    color: #d4d8e0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 179, 255, 0.1);
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6, strong, b {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 179, 255, 0.2) !important;
    font-weight: 700 !important;
}

.text-accent, .accent {
    color: var(--color-accent) !important;
    text-shadow: 0 0 15px rgba(var(--color-accent-rgb), 0.6) !important;
    font-weight: 700 !important;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(120, 119, 198, 0.1), transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 119, 198, 0.1), transparent 50%),
        radial-gradient(ellipse at 40% 40%, rgba(var(--color-accent-rgb), 0.15), transparent 50%),
        linear-gradient(135deg, #0a0b0e 0%, #0f1115 100%);
    color: var(--color-text);
    line-height: 1.65;
    scrollbar-gutter: stable both-edges;
    position: relative;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 18% -12%, rgba(var(--color-accent-rgb), 0.18), transparent 42%),
        radial-gradient(circle at 82% 16%, rgba(var(--color-accent-rgb), 0.12), transparent 48%);
    pointer-events: none;
    z-index: 1;
}

body > * {
    position: relative;
    z-index: 2;
}

body {
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--color-accent-rgb), 0.55) transparent;
}

body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

body::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 999px;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(var(--color-accent-rgb), 0.78), rgba(var(--color-accent-rgb), 0.4));
    border-radius: 999px;
    border: 1px solid rgba(10, 11, 14, 0.75);
    box-shadow: 0 4px 12px rgba(var(--color-accent-rgb), 0.28);
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(var(--color-accent-rgb), 0.9), rgba(var(--color-accent-rgb), 0.55));
}

img, svg, video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible {
    outline: 3px solid rgba(var(--color-accent-rgb), 0.45);
    outline-offset: 4px;
}

::selection {
    background: rgba(var(--color-accent-rgb), 0.35);
    color: #ffffff;
}

.no-js body {
    overflow-y: auto;
}

.glow-ring {
    box-shadow: var(--shadow-ring);
}

.glass-surface {
    background: rgba(18, 20, 24, 0.82);
    backdrop-filter: blur(28px);
}

.grid-divider {
    position: relative;
}

.grid-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: clamp(56px, 8vw, 96px) 100%;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.12), transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.grid-divider > * {
    position: relative;
    z-index: 1;
}

.card-shadow {
    box-shadow: var(--shadow-soft);
}

.fade-border {
    position: relative;
    transition: all 0.3s ease;
    background: rgba(18, 20, 24, 0.95) !important;
}

.fade-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: 
        radial-gradient(circle at top left, rgba(var(--color-accent-rgb), 0.4), transparent 55%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 65%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.fade-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(45deg, transparent, rgba(var(--color-accent-rgb), 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.fade-border:hover::after,
.fade-border:focus-within::after {
    opacity: 1;
    transform: scale(1.02);
}

.fade-border:hover::before,
.fade-border:focus-within::before {
    opacity: 1;
}

.fade-border:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    background: rgba(20, 22, 28, 0.98) !important;
}

.fade-border > * {
    position: relative;
    z-index: 2;
}

.fade-border h1,
.fade-border h2,
.fade-border h3,
.fade-border h4,
.fade-border h5,
.fade-border h6 {
    color: #ffffff !important;
    text-shadow: var(--text-shadow-strong);
}

.fade-border p,
.fade-border span,
.fade-border li {
    color: #d4d8e0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 179, 255, 0.1);
    font-weight: 500;
}

.fade-border strong {
    color: #ffffff !important;
    text-shadow: var(--text-shadow);
}

.timeline-track {
    position: relative;
    padding-left: 3rem;
}

.timeline-track::before {
    content: '';
    position: absolute;
    inset-block: 0;
    left: 1.375rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 12%, rgba(255, 255, 255, 0.16) 88%, rgba(255, 255, 255, 0) 100%);
}

.timeline-node {
    position: relative;
}

.timeline-node::before {
    content: '';
    position: absolute;
    top: 0.4rem;
    left: -2.05rem;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 999px;
    background: var(--color-accent);
    box-shadow: 0 0 0 6px rgba(var(--color-accent-rgb), 0.18);
}

@media (max-width: 767px) {
    .timeline-track {
        padding-left: 2.5rem;
    }

    .timeline-track::before {
        left: 1.125rem;
    }

    .timeline-node::before {
        left: -1.8rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.75rem;
    border: 1px solid var(--color-border);
    background: rgba(18, 20, 24, 0.92);
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    font-weight: 700;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(var(--color-accent-rgb), 0.32), rgba(var(--color-accent-rgb), 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.btn > span {
    position: relative;
    z-index: 1;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(var(--color-accent-rgb), 0.6);
    box-shadow: var(--shadow-hover), var(--shadow-glow);
}

.btn:hover::before,
.btn:focus-visible::before {
    width: 300px;
    height: 300px;
}

.btn:hover::after,
.btn:focus-visible::after {
    opacity: 1;
}

.btn:active {
    transform: translateY(-1px) scale(1.01);
    transition: transform 0.1s;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(var(--color-accent-rgb), 0.85), rgba(var(--color-accent-rgb), 0.45));
    border-color: rgba(var(--color-accent-rgb), 0.6);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: transform 0.6s;
}

.btn-primary:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: linear-gradient(135deg, rgba(var(--color-accent-rgb), 0.95), rgba(var(--color-accent-rgb), 0.65));
    box-shadow: var(--shadow-glow), 0 0 60px rgba(var(--color-accent-rgb), 0.3);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-border);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: rgba(var(--color-accent-rgb), 0.1);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-control {
    border-radius: 16px;
    border: 1px solid var(--color-border);
    background: rgba(12, 14, 18, 0.92);
    background-color: rgba(12, 14, 18, 0.92);
    color: #ffffff !important;
    padding: 0.875rem 1.125rem;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

input.form-control,
textarea.form-control,
select.form-control {
    background: rgba(12, 14, 18, 0.92);
    background-color: rgba(12, 14, 18, 0.92);
    color: #ffffff !important;
}

.form-control::placeholder {
    color: var(--color-text-muted) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-control:disabled,
.form-control[readonly] {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-control:focus {
    border-color: rgba(var(--color-accent-rgb), 0.6);
    box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.25);
    outline: none;
    color: #ffffff !important;
}

.page-contact .form-control {
    background: rgba(18, 20, 24, 0.92);
    background-color: rgba(18, 20, 24, 0.92);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 46px rgba(4, 8, 16, 0.45);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-contact .form-control::placeholder {
    color: var(--color-text-muted) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-contact .form-control:focus {
    background-color: rgba(20, 23, 29, 0.98);
    border-color: rgba(var(--color-accent-rgb), 0.55);
    box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.22), 0 24px 58px rgba(4, 9, 18, 0.52);
    color: #ffffff !important;
}

.section-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .section-grid {
        gap: 4rem;
    }
}

.btn-compact {
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    font-size: 0.6875rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-muted) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
    font-weight: 600;
}

.status-badge.is-connected,
.status-badge.is-active {
    border-color: rgba(var(--color-accent-rgb), 0.55);
    background: rgba(var(--color-accent-rgb), 0.12);
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.5);
    font-weight: 700;
}

.status-badge.is-connecting {
    border-color: rgba(var(--color-accent-rgb), 0.32);
    background: rgba(var(--color-accent-rgb), 0.08);
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.status-badge.is-disconnected,
.status-badge.is-idle {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-muted) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.status-badge.is-error {
    border-color: rgba(255, 87, 122, 0.5);
    background: rgba(255, 87, 122, 0.12);
    color: #ffcedb !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.status-tile {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(18, 20, 24, 0.65);
}

.scene-label {
    min-height: 2.5rem;
    display: inline-flex;
    align-items: center;
    padding-inline: 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.35);
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.obs-scene-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.scene-entry {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 20, 24, 0.7);
    transition: border-color 180ms ease, box-shadow 220ms ease;
}

.scene-entry.is-program {
    border-color: rgba(var(--color-accent-rgb), 0.55);
    box-shadow: 0 0 0 1px rgba(var(--color-accent-rgb), 0.25);
}

.scene-entry.is-preview {
    box-shadow: 0 0 0 1px rgba(var(--color-accent-rgb), 0.25), 0 18px 44px rgba(var(--color-accent-rgb), 0.18);
}

.scene-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.scene-name {
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.scene-flags {
    display: inline-flex;
    gap: 0.5rem;
}

.scene-flags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: rgba(var(--color-accent-rgb), 0.16);
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.scene-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.chip-button {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: #ffffff !important;
    border-radius: 999px;
    padding: 0.6rem 1.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.chip-button:hover:not(:disabled),
.chip-button:focus-visible {
    border-color: rgba(var(--color-accent-rgb), 0.55);
    color: #ffffff !important;
    background: rgba(var(--color-accent-rgb), 0.12);
    transform: translateY(-1px);
    text-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.5);
}

.chip-button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.chip-button.primary {
    border-color: rgba(var(--color-accent-rgb), 0.55);
    background: linear-gradient(135deg, rgba(var(--color-accent-rgb), 0.22), rgba(var(--color-accent-rgb), 0.08));
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.3);
}

.activity-log {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.log-entry {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    align-items: center;
    border-radius: 1.25rem;
    padding: 0.9rem 1.25rem;
    background: rgba(18, 20, 24, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.log-entry--info {
    border-color: rgba(var(--color-accent-rgb), 0.25);
}

.log-entry--success {
    border-color: rgba(var(--color-accent-rgb), 0.5);
    background: rgba(var(--color-accent-rgb), 0.16);
}

.log-entry--warning {
    border-color: rgba(255, 180, 0, 0.35);
    background: rgba(255, 180, 0, 0.12);
}

.log-entry--error {
    border-color: rgba(255, 87, 122, 0.45);
    background: rgba(255, 87, 122, 0.16);
}

.log-time {
    font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.log-message {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.panel-description {
    font-size: 0.85rem;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.panel-description.muted {
    color: var(--color-text-muted) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.obs-control[data-connected='true'] .scene-entry {
    border-color: rgba(255, 255, 255, 0.12);
}

.remote-obs-cloud .step-indicator {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(18, 20, 24, 0.65);
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.remote-obs-cloud .step-indicator[data-active='true'] {
    border-color: rgba(var(--color-accent-rgb), 0.45);
    background: rgba(var(--color-accent-rgb), 0.12);
    color: #ffffff !important;
    transform: translateY(-1px);
    text-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.5);
}

.remote-obs-cloud .step-indicator__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.4);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.remote-obs-cloud .step-indicator[data-active='true'] .step-indicator__number {
    border-color: rgba(var(--color-accent-rgb), 0.5);
    background: rgba(var(--color-accent-rgb), 0.22);
    color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(var(--color-accent-rgb), 0.15);
    text-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.5);
}

.remote-obs-cloud .step-indicator__label {
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.remote-obs-cloud .step-indicator[data-active='true'] .step-indicator__label {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.5);
}

.hero-gradient {
    background: linear-gradient(135deg, 
        rgba(0, 179, 255, 0.1) 0%, 
        rgba(120, 119, 198, 0.05) 50%, 
        rgba(255, 119, 198, 0.1) 100%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, 
            rgba(0, 179, 255, 0.1) 0%, 
            rgba(120, 119, 198, 0.05) 50%, 
            rgba(255, 119, 198, 0.1) 100%);
    }
    50% {
        background: linear-gradient(135deg, 
            rgba(120, 119, 198, 0.1) 0%, 
            rgba(255, 119, 198, 0.05) 50%, 
            rgba(0, 179, 255, 0.1) 100%);
    }
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #00b3ff 50%, #00b3ff 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 179, 255, 0.6);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    from {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    to {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.remote-obs-cloud .step-panel {
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(18, 20, 24, 0.65);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    box-shadow: 0 28px 70px rgba(4, 10, 18, 0.5);
}

@media (max-width: 767px) {
    .remote-obs-cloud .step-panel {
        padding: 1.6rem;
    }
}

.remote-obs-cloud .plan-grid {
    display: grid;
    gap: clamp(1.75rem, 2.8vw, 2.75rem);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.remote-obs-cloud .plan-card {
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 20, 24, 0.6);
    padding: clamp(1.75rem, 2.5vw, 2.25rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    cursor: pointer;
    transition: border-color 200ms ease, transform 200ms ease, box-shadow 220ms ease;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.remote-obs-cloud .plan-card:hover,
.remote-obs-cloud .plan-card:focus-within {
    border-color: rgba(var(--color-accent-rgb), 0.45);
    transform: translateY(-3px);
    box-shadow: 0 32px 80px rgba(4, 10, 18, 0.55);
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.3);
}

.remote-obs-cloud .plan-card[data-selected='true'] {
    border-color: rgba(var(--color-accent-rgb), 0.6);
    box-shadow: 0 36px 90px rgba(4, 10, 18, 0.65);
    background: linear-gradient(140deg, rgba(var(--color-accent-rgb), 0.24), rgba(var(--color-accent-rgb), 0.05));
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.5);
}

.remote-obs-cloud .plan-card:focus-visible {
    outline: 3px solid rgba(var(--color-accent-rgb), 0.45);
    outline-offset: 4px;
}

.remote-obs-cloud .addon-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 14, 18, 0.7);
    padding: 1.1rem 1.35rem;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    cursor: pointer;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.remote-obs-cloud .addon-option:hover,
.remote-obs-cloud .addon-option:focus-within {
    border-color: rgba(var(--color-accent-rgb), 0.45);
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(4, 10, 18, 0.45);
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.3);
}

.remote-obs-cloud .addon-option:hover,
.remote-obs-cloud .addon-option:focus-within {
    border-color: rgba(var(--color-accent-rgb), 0.45);
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(4, 10, 18, 0.45);
}

.remote-obs-cloud .addon-option input[type='checkbox'] {
    appearance: none;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    margin-top: 0.2rem;
    position: relative;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.remote-obs-cloud .addon-option input[type='checkbox']:checked {
    border-color: rgba(var(--color-accent-rgb), 0.65);
    background: rgba(var(--color-accent-rgb), 0.22);
    box-shadow: 0 0 0 4px rgba(var(--color-accent-rgb), 0.18);
}

.remote-obs-cloud .addon-option input[type='checkbox']::after {
    content: '';
    position: absolute;
    inset: 0;
    display: block;
    mask-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"%3E%3Cpath d="M16.704 5.29a1 1 0 0 1 .006 1.414l-7.25 7.35a1 1 0 0 1-1.436.006L3.3 9.277a1 1 0 1 1 1.414-1.414l4.037 4.037 6.543-6.62a1 1 0 0 1 1.41.01Z" fill="white"/%3E%3C/svg%3E');
    background: transparent;
    opacity: 0;
    transition: opacity 180ms ease;
}

.remote-obs-cloud .addon-option input[type='checkbox']:checked::after {
    opacity: 1;
}

.remote-obs-cloud [data-summary-addons-list] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.remote-obs-cloud [data-summary-addons-list] li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.remote-obs-cloud [data-summary-addons-list] li::before {
    content: '';
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(var(--color-accent-rgb), 0.5);
    box-shadow: 0 0 0 4px rgba(var(--color-accent-rgb), 0.15);
    margin-right: 0.75rem;
}

.remote-obs-cloud [data-summary-addons-list] li.empty::before {
    display: none;
}

.remote-obs-cloud [data-summary-addons-list] li.empty {
    justify-content: flex-start;
    color: rgba(229, 229, 229, 0.6);
}

.remote-obs-cloud .step-panel header p {
    max-width: 48ch;
}
