/* ==================================================
HEADER
================================================== */
.dr1061header {
	position: fixed;
	top:32px;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: linear-gradient(
    	135deg,
    	#030712 0%,
    	#0f2747 45%,
    	#1d4ed8 100%
	);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	backdrop-filter: blur(14px);
	box-shadow: 0 5px 30px rgba(0, 0, 0, .25);
}

.dr1061header::after{
    content:"";
    position:absolute;
    inset:0;

    background:

    linear-gradient(
        90deg,
        transparent,
        rgba(0,229,255,.05),
        transparent
    ),

    repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 60px,
        rgba(0,229,255,.03) 61px,
        transparent 62px
    );

    pointer-events:none;
}

/* ==================================================
CONTAINER
================================================== */
.dr1061header-container {
	max-width: 1400px;
	margin: auto;
	min-height: 84px;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ==================================================
LOGO
================================================== */
.dr1061header-logo {
	flex: 1;
	min-width: 0;
}

.dr1061header-logo a {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}

.dr1061header-logo-image img {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(0, 212, 255, .30);
	flex-shrink: 0;
}

.dr1061header-logo-content{
    padding-right:16px;
    box-sizing:border-box;
}

.dr1061header-site-title {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.1;
	color: #ffffff;
}

.dr1061header-site-tagline {
	margin-top: 4px;
	font-size: 13px;
	color: rgba(185, 199, 255, .85);
	white-space: normal;
}

/* ==================================================
NAVIGATION
================================================== */
.dr1061header-nav {
	display: flex;
	align-items: center;
}

.dr1061header-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
}

.dr1061menu-item {
	position: relative;
}

.dr1061menu-item>a {
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: .3s;
}

.dr1061menu-item>a{
    position:relative;
}

.dr1061menu-item>a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;

    width:0;
    height:2px;

    background:
    linear-gradient(
        90deg,
        #00e5ff,
        #00ffc6
    );

    transition:.35s;
}

.dr1061menu-item>a:hover::after{
    width:100%;
}

/* ==================================================
DROPDOWN BUTTON
================================================== */
.dr1061dropdown-toggle {
	border: none;
	background: transparent;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	padding: 0;
}

.dr1061dropdown-toggle:hover {
	color: #00d4ff;
}

.dr1061dropdown-toggle i {
	font-size: 12px;
	transition: transform .3s ease;
}

/* ==================================================
DROPDOWN MENU (DESKTOP)
================================================== */
.dr1061dropdown-menu {
	position: absolute;
	top: 130%;
	left: 0;
	min-width: 280px;
	list-style: none;
	margin: 0;
	padding: 12px 0;
	background: rgba(10, 20, 45, .98);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 14px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .30);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: .3s ease;
}

.dr1061dropdown-menu li a {
	display: block;
	padding: 12px 18px;
	color: #ffffff;
	text-decoration: none;
	transition: .3s;
}

.dr1061dropdown-menu li a:hover {
	background: rgba(0, 212, 255, .08);
	color: #00d4ff;
}

/* DESKTOP HOVER */
@media ( min-width :901px) {
	.dr1061has-dropdown:hover .dr1061dropdown-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

/* ==================================================
CTA BUTTON
================================================== */
.dr1061header-cta {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 12px;
	text-decoration: none;
	color: #ffffff !important;
	font-weight: 600;
	background: linear-gradient(135deg, #00d4ff, #005cff);
	box-shadow: 0 10px 25px rgba(0, 92, 255, .35);
	transition: .3s ease;
}

.dr1061header-cta:hover {
	transform: translateY(-2px);
}

/* ==================================================
MOBILE TOGGLE
================================================== */
.dr1061header-toggle {
	display: none;
	border: none;
	background: transparent;
	color: #ffffff;
	font-size: 24px;
	cursor: pointer;
}

.dr1061ai-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 8px;
    border-radius: 50%;
    background: #00d4ff;
    box-shadow: 0 0 12px #00d4ff, 0 0 24px rgba(0,212,255,.5);
    animation: pulseAI 1.5s infinite;
}

.dr1061header-logo-content {
    min-width: 0;
}

.dr1061header-site-tagline {
    word-break: break-word;
}

@keyframes pulseAI {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* ==================================================
MOBILE
================================================== */
@media ( max-width :900px) {
	.dr1061main {
		padding-top: 76px;
	}
	.dr1061header-container {
		min-height: 76px;
		padding: 0 16px;
	}
	.dr1061header-toggle {
		display: block;
	}
	.dr1061header-logo-image img {
		width: 52px;
		height: 52px;
	}
	.dr1061header-site-title {
		font-size: 20px;
	}

	/* ✅ TAGLINE VISIBLE */
	.dr1061header-site-tagline {
		display: block;
		font-size: 11px;
		line-height: 1.3;
		opacity: 0.9;
	}

	/* MOBILE NAV */
	.dr1061header-nav {
		position: fixed;
		top: 76px;
		left: 0;
		right: 0;
		background: linear-gradient(180deg, #071327, #102452);
		padding: 24px;
		display: none;
		max-height: calc(100vh - 76px);
		overflow-y: auto;
	}
	.dr1061header-nav.active {
		display: block;
	}
	.dr1061header-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.dr1061menu-item {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, .05);
	}
	.dr1061menu-item>a {
		display: block;
		padding: 16px 0;
	}
	.dr1061dropdown-toggle {
		width: 100%;
		justify-content: space-between;
		padding: 16px 0;
	}

	/* 🔥 IMPORTANT: HEIGHT BASED DROPDOWN */
	.dr1061dropdown-menu {
		position: static;
		min-width: 100%;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		border: none;
		border-radius: 0;
		box-shadow: none;
		padding: 0;
		height: 0;
		overflow: hidden;
		transition: height .35s ease;
	}
	.dr1061has-dropdown.active .dr1061dropdown-toggle i {
		transform: rotate(180deg);
	}
	.dr1061dropdown-menu li a {
		padding: 12px 0 12px 18px;
		font-size: 14px;
	}
	.dr1061menu-cta {
		border-bottom: none;
		margin-top: 12px;
	}
	.dr1061header-cta {
		width: 100%;
		text-align: center;
	}
}

/* ==================================================
SMALL PHONES
================================================== */
@media ( max-width :600px) {
	.dr1061header-site-title {
		font-size: 18px;
	}

	/* ✅ DO NOT HIDE */
	.dr1061header-site-tagline {
		display: block;
		font-size: 10px;
		line-height: 1.2;
		opacity: 0.85;
		max-width: 180px;
	}
}

.dr1061header-logo{
    position:relative;
}

.dr1061header-logo::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    left:-20px;
    top:50%;
    transform:translateY(-50%);
    background:
    radial-gradient(
        circle,
        rgba(0,229,255,.25),
        transparent 70%
    );

    filter:blur(25px);
    pointer-events:none;
}

.dr1061ai-status{
    display:inline-flex;
    align-items:center;
    gap:6px;

    margin-left:12px;
    padding:4px 10px;

    border-radius:999px;

    background:
    rgba(0,255,198,.12);

    border:
    1px solid rgba(0,255,198,.35);

    font-size:11px;
    font-weight:700;

    color:#00ffc6;

    letter-spacing:.08em;
}

.dr1061ai-status::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;

    background:#00ffc6;

    box-shadow:
    0 0 12px #00ffc6,
    0 0 24px #00ffc6;
}

.dr1061header-cta{

    background:
    linear-gradient(
        135deg,
        #00e5ff,
        #00ffc6
    );

    color:#001018!important;

    font-weight:800;

    letter-spacing:.04em;

    box-shadow:
    0 0 20px rgba(0,229,255,.4),
    0 0 40px rgba(0,255,198,.2);
}

.dr1061ecosystem-bar{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    min-height:34px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:6px 12px;

    text-align:center;

    background:linear-gradient(
        90deg,
        #020617,
        #061326,
        #020617
    );

    color:#7df9ff;

    z-index:10000;
}

@media (max-width:768px){

    .dr1061ecosystem-bar{
        flex-direction:column;
        gap:2px;
        padding:6px 10px;
    }

    .dr1061ecosystem-separator{
        display:none;
    }
}

.dr1061ecosystem-separator{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#00ffc6;
    box-shadow:0 0 10px #00ffc6;
}

.dr1061ecosystem-top,
.dr1061ecosystem-bottom{
    width:100%;
    text-align:center;
}

.dr1061ecosystem-top{
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
}

.dr1061ecosystem-bottom{
    font-size:10px;
    color:rgba(125,249,255,.8);
}

@media (max-width:600px){

    .dr1061header-logo-content{
        padding-right:12px;
    }

    .dr1061header-site-title{
        font-size:18px;
        flex-wrap:wrap;
        gap:6px;
    }

}