.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.text-gradient {
    background: linear-gradient(135deg, #54b0bf 0%, #754ca4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#cyber-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #121212;
}
html {
    scroll-behavior: smooth;
}
section[id] {
    scroll-margin-top: 0px;
}
body {
    background-color: transparent;
}
.hero-section {
    background: linear-gradient(180deg, rgba(18,18,18,0.5) 0%, transparent 100%);
}
.interactive-hover-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}
.interactive-hover-button .btn-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #54b0bf;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}
.interactive-hover-button:hover .btn-bg {
    width: 300%;
    height: 300%;
}
.interactive-hover-button .btn-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.interactive-hover-button .btn-text {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.interactive-hover-button:hover .btn-text {
    transform: translateX(-10px);
    opacity: 0;
}
.interactive-hover-button .btn-icon {
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}
.interactive-hover-button:hover .btn-icon {
    right: 1.5rem;
    opacity: 1;
}
.interactive-hover-button:hover {
    border-color: transparent;
}
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    color: #54b0bf;
}
@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* Radial Semi-Chart Specific Styles */
.radial-chart-container {
    position: relative;
    width: 280px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
/* Team Card Styles */
.team-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.team-card .wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    border-radius: 9999px 9999px 0 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s ease-out;
}
.team-card:hover .wave-bg {
    transform: scaleY(1);
}
.team-card .member-photo {
    transition: transform 0.5s ease-out, border-color 0.5s ease-out;
}
.team-card:hover .member-photo {
    transform: scale(1.05);
}
.team-card .member-photo img {
    transition: transform 0.5s ease-out;
}
.team-card:hover .member-photo img {
    transform: scale(1.1);
}
.team-card .social-links {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.team-card:hover .social-links {
    opacity: 1;
}

.radial-progress {
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.5));
}
.chart-label-value {
    position: absolute;
    bottom: -5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 20;
    pointer-events: none;
}
