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

:root {
    --iot-bg-dark: #121212;
    --iot-bg-section: #121212;
    --iot-primary-cyan: #4D8AFF;
    --iot-primary-blue: #0055FF;
    --iot-text-main: #E2E8F0;
    --iot-text-muted: #94A3B8;
    --iot-glow-cyan: 0 0 20px rgba(77, 138, 255, 0.4);
    --iot-gradient-accent: linear-gradient(135deg, #0055FF, #00D2FF);
    --iot-border-glass: rgba(77, 138, 255, 0.15);
    --iot-card-bg: rgba(255, 255, 255, 0.02);
    --iot-cyan: #7FA5FF;
    --iot-blue: #0055FF;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: #cccccc4c !important;
    opacity: 1 !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #cccccc4c !important;
    opacity: 1 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #cccccc4c !important;
    opacity: 1 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #cccccc4c !important;
    opacity: 1 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #cccccc4c !important;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #cccccc4c !important;
}

html,
body {
    background-color: var(--iot-bg-dark);
}

.iot-theme-bg {
    background-color: var(--iot-bg-dark);
    color: var(--iot-text-main);
    padding-top: 76px;
}

.iot-navbar {
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--iot-border-glass);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.iot-nav-link {
    color: var(--iot-text-main) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.iot-nav-link:hover {
    color: var(--iot-primary-cyan) !important;
    text-shadow: 0 0 10px rgba(77, 138, 255, 0.3);
}

.iot-nav-link.active {
    color: var(--iot-primary-cyan) !important;
    text-shadow: 0 0 10px rgba(77, 138, 255, 0.5);
    font-weight: 600;
}

.iot-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--iot-gradient-accent);
    box-shadow: var(--iot-glow-cyan);
}

.custom-toggler {
    border-color: var(--iot-primary-cyan) !important;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(77, 138, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.iot-title-font {
    font-family: 'Outfit', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.iot-large-font {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 10px;
}

.iot-medium-font {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.iot-title-shadow {
    text-shadow: 0 4px 20px rgba(0,0,0,0.9);
}

.iot-color-blue {
    background: var(--iot-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 15px rgba(0, 210, 255, 0.15);
    display: inline-block;
}


.iot-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.iot-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.iot-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.iot-header-content-area {
    z-index: 3;
}

.iot-header-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--iot-text-muted);
    font-weight: 400;
    max-width: 560px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 28px;
}

.iot-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.iot-text-paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--iot-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.iot-text-link {
    color: var(--iot-primary-cyan);
    text-decoration: none;
    border-bottom: 1px dashed rgba(77, 138, 255, 0.5);
    transition: all 0.3s ease;
}

.iot-text-link:hover {
    color: #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    text-shadow: 0 0 8px rgba(77, 138, 255, 0.8);
}

.iot-beta-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--iot-primary-cyan);
    background: rgba(77, 138, 255, 0.08);
    border: 1px solid var(--iot-primary-cyan);
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(77, 138, 255, 0.2);
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(77, 138, 255, 0.1); }
    100% { box-shadow: 0 0 25px rgba(77, 138, 255, 0.4); }
}

.iot-hero-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 48px 0 72px;
    background-color: var(--iot-bg-dark);
    overflow: hidden;
}

.iot-hero-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 991.98px) {
    .iot-hero-wrapper {
        min-height: 0;
        padding: 32px 0 48px;
    }

    .iot-hero-content {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}

.iot-hero-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 50%, rgba(0, 85, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(77, 138, 255, 0.1) 0%, transparent 50%),
        linear-gradient(rgba(77, 138, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 138, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.iot-section {
    padding: 72px 0;
    position: relative;
    z-index: 2;
}

.iot-section-head {
    margin-bottom: 40px;
}

.iot-section-head h2 {
    margin-bottom: 14px;
}

.iot-section-head p {
    margin-bottom: 0;
}

.iot-section-block {
    margin-bottom: 32px;
}

.iot-section-foot {
    margin-top: 32px;
}

.iot-section-foot p {
    margin-bottom: 0;
}

.iot-section > .container > .row:last-child p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .iot-section {
        padding: 52px 0;
    }

    .iot-section-head {
        margin-bottom: 32px;
    }
}

.iot-service-bg {
    background-color: var(--iot-bg-dark);
}

.iot-btn {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.iot-btn-main {
    background: var(--iot-gradient-accent);
    color: #FFFFFF !important;
    border: none;
    box-shadow: var(--iot-glow-cyan);
}

.iot-btn-main:hover {
    box-shadow: 0 0 30px rgba(77, 138, 255, 0.6);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.iot-btn-transparent {
    background: rgba(77, 138, 255, 0.03);
    color: var(--iot-primary-cyan) !important;
    border: 1px solid var(--iot-primary-cyan);
    box-shadow: inset 0 0 10px rgba(77, 138, 255, 0.1);
    backdrop-filter: blur(5px);
}

.iot-btn-transparent:hover {
    background: rgba(77, 138, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(77, 138, 255, 0.25), var(--iot-glow-cyan);
    transform: translateY(-2px);
    border-color: #FFFFFF;
    color: #FFFFFF !important;
}

.iot-image-container {
    position: relative;
    border-radius: 8px;
    padding: 1px;
    background: var(--iot-gradient-accent);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    z-index: 2;
}

.iot-rounded-tech {
    border-radius: 7px;
    background: var(--iot-bg-dark);
    display: block;
    width: 100%;
}

.iot-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(77, 138, 255, 0.2);
    filter: blur(60px);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.iot-feature-card {
    background-color: var(--iot-card-bg);
    border: 1px solid var(--iot-border-glass);
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.iot-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--iot-primary-cyan);
    box-shadow: 0 10px 30px rgba(77, 138, 255, 0.1);
}

.iot-feature-icon {
    font-size: 1.1rem;
    color: var(--iot-primary-cyan);
    margin-right: 10px;
    display: inline-block;
}

.iot-beta-section {
    background-color: var(--iot-bg-dark);
    border-top: 1px solid var(--iot-border-glass);
    overflow: hidden;
}

.iot-beta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.1) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.iot-beta-perk {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.iot-beta-perk:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(77, 138, 255, 0.3);
}

.iot-footer {
    background-color: var(--iot-bg-section);
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--iot-border-glass);
}

.iot-footer-link {
    color: var(--iot-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.iot-footer-link:hover {
    color: var(--iot-primary-cyan);
}

.iot-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--iot-text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

.iot-social-icon:hover {
    background-color: var(--iot-primary-blue);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: var(--iot-glow-cyan);
}

.iot-input-dark {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
}

.iot-input-dark:focus {
    box-shadow: none !important;
    border-color: var(--iot-primary-cyan) !important;
}

.iot-input-dark::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.text-muted{
    color: #ccc !important;
}

.hide {
    display: none;
}

.form_error_action {
    background: #ffb9b9 !important;
}

.form_success_action {
    background: #39df0f !important;
}

.success {
    color: #fff;
    background-color: #22BB33;
    border-color: #3c763d;
    padding: 5px;
}

.error {
    color: #fff;
    background-color: #ff0000;
    border-color: #830505;
    padding: 5px;
}

.iot-theme-bg {
    display: flex;
    flex-direction: column;
    background: var(--iot-bg-dark);
    min-height: 100vh;
    color: #e2e8f0;
}

.iot-main-filler {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

.iot-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-control, .form-select {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 15px;
}

.form-control:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--iot-cyan);
    color: #fff;
    box-shadow: 0 0 10px rgba(127, 165, 255, 0.2);
}

.iot-btn-main {
    background: linear-gradient(45deg, #0055FF, #4D8AFF);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.iot-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
    color: white;
}

.iot-badge {
    background: rgba(127, 165, 255, 0.1);
    color: var(--iot-cyan);
    border: 1px solid var(--iot-cyan);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer a:link, .footer a:active, .footer a:visited {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: #7FA5FF;
    text-decoration: none;
}

#cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

#cookie-consent-banner.cookie-banner-hidden {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
}

#cookie-consent-banner .cookie-content p {
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    #cookie-consent-banner {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
    }
}

.iot-navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 2.5rem;
}

.iot-navbar-logo {
    height: 48px;
    width: 192px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 991.98px) {
    .iot-navbar-brand {
        margin-right: 1rem;
    }
    .iot-navbar-logo {
        height: 36px;
        width: 144px;
    }
}

.iot-footer-logo {
    height: 64px;
    width: 256px;
    max-width: 100%;
    display: inline-block;
}

@media (max-width: 575.98px) {
    .iot-footer-logo {
        height: 48px;
        width: 192px;
    }
}

.iot-hero-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 16px;
    border: 1px solid var(--iot-border-glass);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-family: 'JetBrains Mono', 'Inter', monospace;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4facfe;
}

@media (max-width: 575.98px) {
    .iot-hero-eyebrow {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
}

.iot-registry-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ffffff;
}

.iot-registry-icon {
    font-size: 1.1rem;
    flex: none;
    color: var(--iot-primary-cyan) !important;
    -webkit-text-fill-color: var(--iot-primary-cyan);
}

.iot-theme-bg .text-info,
.iot-theme-bg .border-info {
    color: #FFFFFF !important;
    border-color: var(--iot-primary-cyan) !important;
}

.iot-badge-blue {
    color: var(--iot-text-main);
    border-color: rgba(255, 255, 255, 0.18) !important;
    font-weight: 500;
}

.iot-registry-badges {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.iot-registry-tabs {
    display: grid;
    grid-template-columns: minmax(300px, 360px) 1fr;
    border: 1px solid var(--iot-border-glass);
    border-radius: 8px;
    background-color: var(--iot-card-bg);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.iot-registry-tabs .nav {
    flex-direction: column;
    border-right: 1px solid var(--iot-border-glass);
    padding: 12px;
    gap: 2px;
}

.iot-registry-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 64px;
    text-align: left;
    padding: 18px 22px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--iot-text-muted);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.iot-registry-tabs .nav-link .iot-registry-icon {
    font-size: 1.25rem;
}

.iot-registry-tabs .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.03);
    color: #FFFFFF;
}

.iot-registry-tabs .nav-link.active {
    background-color: rgba(77, 138, 255, 0.1);
    color: #FFFFFF;
    box-shadow: inset 2px 0 0 var(--iot-primary-cyan);
}

.iot-registry-tabs .tab-content {
    padding: 40px;
}

.iot-registry-panel h4 {
    margin-bottom: 16px;
    color: #FFFFFF;
}

.iot-registry-panel p {
    margin-bottom: 24px;
}

.iot-registry-panel .iot-registry-badges {
    margin-top: 0;
    padding-top: 0;
}

.iot-registry-panel-actions {
    margin-top: 28px;
}

@media (max-width: 991.98px) {
    .iot-registry-tabs {
        grid-template-columns: 1fr;
    }

    .iot-registry-tabs .nav {
        flex-direction: row;
        flex-wrap: wrap;
        border-right: 0;
        border-bottom: 1px solid var(--iot-border-glass);
    }

    .iot-registry-tabs .nav-link {
        width: auto;
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    .iot-registry-tabs .nav-link.active {
        box-shadow: inset 0 -2px 0 var(--iot-primary-cyan);
    }

    .iot-registry-tabs .tab-content {
        padding: 28px 24px;
    }
}

.iot-registry-list {
    border: 1px solid var(--iot-border-glass);
    border-radius: 8px;
    background-color: var(--iot-card-bg);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.iot-registry-row {
    display: grid;
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
    border-top: 1px solid var(--iot-border-glass);
    transition: background-color 0.3s ease;
}

.iot-registry-row:first-child {
    border-top: 0;
}

.iot-registry-row:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.iot-registry-row-name {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: #FFFFFF;
}

.iot-registry-row p {
    margin: 0;
}

.iot-registry-row .iot-registry-badges {
    margin-top: 0;
    padding-top: 0;
    justify-content: flex-end;
}

@media (max-width: 991.98px) {
    .iot-registry-row {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 24px;
    }

    .iot-registry-row .iot-registry-badges {
        justify-content: flex-start;
    }
}

.iot-beta-mark {
    height: 72px;
    width: 72px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767.98px) {
    .iot-beta-mark {
        height: 56px;
        width: 56px;
    }
}

.iot-dropdown-menu {
    --bs-dropdown-bg: #12161d;
    --bs-dropdown-border-color: rgba(255, 255, 255, .11);
    --bs-dropdown-border-radius: 12px;
    --bs-dropdown-padding-x: 8px;
    --bs-dropdown-padding-y: 8px;
    --bs-dropdown-link-color: #c7d0d9;
    --bs-dropdown-link-hover-color: #ffffff;
    --bs-dropdown-link-hover-bg: rgba(77, 138, 255, .12);
    --bs-dropdown-link-active-color: #ffffff;
    --bs-dropdown-link-active-bg: rgba(77, 138, 255, .18);
    --bs-dropdown-divider-bg: rgba(255, 255, 255, .11);
    --bs-dropdown-item-padding-x: 12px;
    --bs-dropdown-item-padding-y: 10px;
    --bs-dropdown-font-size: 0.92rem;
    margin-top: 10px;
    min-width: 290px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

.iot-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    white-space: nowrap;
}

.iot-dropdown-item iconify-icon,
.iot-dropdown-item i {
    font-size: 1.05rem;
    color: #4D8AFF;
    flex-shrink: 0;
}

.iot-dropdown-divider {
    opacity: 1;
    margin: 6px 4px;
}

.iot-dropdown-soon {
    margin-left: auto;
    font-size: 0.68rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #7b8794;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    padding: 2px 8px;
}

.iot-navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
}

@media (min-width: 992px) {

    .iot-navbar .nav-item.dropdown > .dropdown-menu {
        display: block;
        margin-top: 8px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    }

    .iot-navbar .nav-item.dropdown > .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -18px;
        left: 0;
        right: 0;
        height: 18px;
    }

    .iot-navbar .nav-item.dropdown:hover > .dropdown-menu,
    .iot-navbar .nav-item.dropdown:focus-within > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .iot-navbar .nav-item.dropdown:hover > .iot-nav-link {
        color: #ffffff;
    }
}

.iot-registry-row-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.iot-feature-card .iot-registry-heading {
    margin-bottom: 14px;
}

.iot-feature-card .iot-registry-heading .iot-registry-icon {
    font-size: 1.25rem;
}

@media (max-width: 767.98px) {

    .iot-registry-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 20px;
    }

    .iot-registry-row-actions {
        justify-content: flex-start;
    }
}

.iot-registry-row-actions {
    display: grid;
    grid-template-columns: 130px 130px;
    align-items: center;
    justify-items: start;
    gap: 20px;
    white-space: nowrap;
}

.iot-registry-row-actions .iot-badge {
    margin-bottom: 0;
    justify-self: center;
}

.iot-registry-row-name {
    font-size: 1.05rem;
}

.iot-registry-row p {
    max-width: none;
}

.iot-registry-row-simple {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 32px;
    border-top: 1px solid var(--iot-border-glass);
}

.iot-registry-row-simple:first-child {
    border-top: 0;
}

.iot-registry-row-simple .iot-registry-icon {
    line-height: 1.5;
}

.iot-section-group {
    margin-top: 144px;
}

.iot-section-group .iot-section-head {
    margin-bottom: 28px;
}

.iot-section-group > .iot-section-block:last-child,
.iot-section-group .row:last-child {
    margin-bottom: 0;
}

.iot-cta {
    margin-top: 28px;
}

@media (max-width: 991.98px) {

    .iot-section-group {
        margin-top: 104px;
    }
}

.iot-explorer-form {
    margin-bottom: 28px;
}

.iot-explorer-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--iot-card-bg);
    border: 1px solid var(--iot-border-glass);
    border-radius: 8px;
    padding: 10px 10px 10px 18px;
}

.iot-explorer-search iconify-icon {
    font-size: 1.25rem;
    color: var(--iot-primary-cyan);
    flex: none;
}

.iot-explorer-search input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: none;
    color: var(--iot-text-main);
    font-size: 1rem;
    padding: 8px 0;
}

.iot-explorer-search input::placeholder {
    color: var(--iot-text-muted);
}

.iot-explorer-filters {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.iot-explorer-toggles {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 14px;
}

@media (max-width: 991.98px) {

    .iot-explorer-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {

    .iot-explorer-filters {
        grid-template-columns: minmax(0, 1fr);
    }
}

.iot-explorer-filters select {
    width: 100%;
    background-color: var(--iot-card-bg);
    border: 1px solid var(--iot-border-glass);
    border-radius: 8px;
    color: var(--iot-text-main);
    font-size: 0.9rem;
    padding: 10px 14px;
    outline: none;
}

.iot-explorer-filters select option {
    background-color: #12161d;
    color: var(--iot-text-main);
}

.iot-explorer-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--iot-text-muted);
    font-size: 0.9rem;
    cursor: pointer;
}

.iot-explorer-toggle input {
    accent-color: #0055FF;
    width: 16px;
    height: 16px;
}

.iot-explorer-count {
    margin-bottom: 20px;
}

.iot-explorer-name {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.iot-explorer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
}

.iot-explorer-meta span {
    font-size: 0.72rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--iot-text-muted);
    border: 1px solid var(--iot-border-glass);
    border-radius: 999px;
    padding: 3px 10px;
}

.iot-explorer-meta .iot-explorer-endorsed {
    color: var(--iot-cyan);
    border-color: var(--iot-cyan);
}

.iot-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    color: var(--iot-text-muted);
}

.iot-breadcrumb a {
    color: var(--iot-text-muted);
    text-decoration: none;
}

.iot-breadcrumb a:hover {
    color: var(--iot-primary-cyan);
}

.iot-breadcrumb-current {
    color: var(--iot-text-main);
}

.iot-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.iot-spec-table th,
.iot-spec-table td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--iot-border-glass);
    vertical-align: top;
}

.iot-spec-table thead th {
    color: var(--iot-text-main);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.iot-spec-table tbody th {
    color: var(--iot-text-muted);
    font-weight: 400;
    width: 40%;
}

.iot-spec-table td {
    color: var(--iot-text-main);
}

.iot-spec-table tr:last-child th,
.iot-spec-table tr:last-child td {
    border-bottom: 0;
}

.iot-spec-table code {
    color: var(--iot-primary-cyan);
    font-size: 0.85rem;
}

.iot-failure-list {
    margin: 0;
    padding-left: 20px;
    color: var(--iot-text-muted);
    font-size: 0.9rem;
}

.iot-failure-list li {
    margin-bottom: 10px;
}

.iot-failure-list li:last-child {
    margin-bottom: 0;
}

.iot-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(254, 188, 46, .07);
    border: 1px solid rgba(254, 188, 46, .3);
    border-radius: 8px;
    padding: 18px 22px;
    color: var(--iot-text-muted);
    font-size: 0.9rem;
}

.iot-notice .iot-registry-icon {
    color: #febc2e !important;
    -webkit-text-fill-color: #febc2e;
}

.iot-registry-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.iot-registry-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--iot-border-glass);
    background-color: var(--iot-card-bg);
    color: var(--iot-text-muted);
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.iot-registry-pill iconify-icon {
    font-size: 1.05rem;
    color: var(--iot-primary-cyan);
}

.iot-registry-pill span {
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: var(--iot-text-muted);
}

.iot-registry-pill:hover {
    color: var(--iot-text-main);
    border-color: var(--iot-primary-cyan);
}

.iot-registry-pill.active {
    color: #ffffff;
    border-color: var(--iot-primary-cyan);
    background: rgba(77, 138, 255, .12);
}

.iot-registry-pill.disabled {
    opacity: .45;
    cursor: not-allowed;
}

.iot-registry-pill.disabled iconify-icon {
    color: var(--iot-text-muted);
}

.iot-explorer-loading {
    opacity: .35;
    transition: opacity .15s ease;
    pointer-events: none;
}


.iot-explorer-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
}

.iot-verify-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 7px 13px;
    border-radius: 6px;
    border: 1px solid transparent;
    line-height: 1;
    white-space: nowrap;
}

.iot-verify-btn iconify-icon {
    font-size: 0.9rem;
    flex: none;
}

.iot-verify-btn.yes {
    background: rgba(40, 200, 64, .12);
    border-color: rgba(40, 200, 64, .45);
    color: #28c840;
}

.iot-verify-btn.no {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .14);
    color: #7b8794;
}

.iot-explorer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 0;
}

#explorer-results .iot-feature-card {
    display: flex;
    flex-direction: column;
    padding: 28px 26px;
}

#explorer-results .iot-feature-card > p {
    flex: 1 1 auto;
}

.iot-feature-card.iot-section-group,
.iot-notice.iot-section-group {
    margin-top: 24px;
}

.iot-section-group.row.g-4 {
    margin-top: 32px;
}

.iot-entry-column .iot-feature-card {
    height: auto;
}

.iot-entry-column .iot-feature-card + .iot-feature-card {
    margin-top: 24px;
}
