html, body{
overflow-x: hidden;
}

body{
margin:0;
padding:0;
background:black;
}

#webvibe-hero{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
               'Helvetica Neue', sans-serif;
  background-color: black;
  color: #e7e7e7;
  min-height: 100vh;
  line-height: 1.5;
  position: relative;
}



#webvibe-hero *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* градиент и блур эффект */

#webvibe-hero .image-gradient{
position: absolute;
top: 0;
right: 0;
opacity: 0.5;
z-index: 0;
}

#webvibe-hero .layer-blur{
    height: 0;
    width: 30rem;
    position: absolute;
    top: 20%;
    right: 0;
    box-shadow: 0 0 700px 15px white;
    rotate: -30deg;
    z-index: 0;
}

/* container  */

#webvibe-hero .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* HEADER */

#webvibe-hero header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
}

#webvibe-hero header h1 {
    font-size:20px;
    font-weight:600;
    letter-spacing:2px;
}

#webvibe-hero nav {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-left: 5%;
    z-index: 999;
}

#webvibe-hero nav a {
    font-size: 13px;
    letter-spacing: 0.1rem;
    transition: color 0.2s ease;
    text-decoration: none;
    color: inherit;
}

#webvibe-hero nav a:hover {
    color: #7f42a7;
    font-weight: 600;
}

#webvibe-hero .btn-work{
    display: inline-flex;
    align-items: center;
    gap:10px;

    background-color: rgba(255,255,255,0.08);
    color:white;

    padding:0.4rem 1.3rem;
    border-radius:50px;
    border:1px solid rgba(255,255,255,0.2);

    font-size: 0.8rem;
    font-weight: 500;

    cursor:pointer;
    backdrop-filter: blur(10px);

    transition: all 0.25s ease;
}

#webvibe-hero .btn-work:hover{
    background-color: rgba(255,255,255,0.15);
}

#webvibe-hero .status-dot{
    width:10px;
    height:10px;
    background:#22ff55;
    border-radius:50%;
    animation: blink 1.5s infinite;
}

/* button animation */

@keyframes blink{
    0%{
        box-shadow:0 0 0 0 rgba(34,255,85,0.7);
    }

    70%{
        box-shadow:0 0 0 8px rgba(34,255,85,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(34,255,85,0);
    }
}

/* main content */

#webvibe-hero main{
 display: flex;   
 flex-direction: column;
 justify-content: center;
 min-height: calc(90vh - 6rem);
}

#webvibe-hero .content{
    margin-top: 50px;
    max-width: 55rem;
    margin-left: 10%;
    z-index: 9999;
    position:relative;
}

#webvibe-hero .tag-box{
    position: relative;
    width: 20rem;
    height: 2.5rem;
    border-radius: 50px;
    background: linear-gradient(to right, #bd41a9, #7f42a7, #6600c5,
    #5300a0, #f17fde, #bd41a9);
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

@keyframes animationGradient {
    to {
        background-position: 200%;
    }
}

#webvibe-hero .tag-box .tag {
    position: absolute;
    font-size: 12px;
    letter-spacing: 1px;
    inset: 3px 3px 3px 3px;
    background-color: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    cursor: pointer;
}

#webvibe-hero .tag-box .tag:hover{
    color: #5300a0;
}

#webvibe-hero .content h1 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    margin: 2rem 0;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);   
}

#webvibe-hero .description {
    font-size: 1rem;
    letter-spacing: 0.05em;
    max-width: 35rem;
    color: gray;
}

#webvibe-hero .buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

#webvibe-hero .btn-showcase {
    color: #7f42a7;
    text-decoration: none;
    border: 1px solid #2a2a2a;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease;
}

#webvibe-hero .btn-showcase:hover{
    background-color: #1a1a1a;
}

#webvibe-hero .btn-contact-me {
    text-decoration: none;
    background-color: lightgray;
    color: black;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease;
}

#webvibe-hero .btn-contact-me:hover{
    background-color: gray;
}

#webvibe-hero .robot-3d{
    position: absolute;
    top: 0;
    right: -25%;
}

/* tablets */

@media (max-width: 1370px) {

#webvibe-hero header{
    padding:1rem 2rem;
}

#webvibe-hero .content{
    margin-top:120px;
    margin-left:5%;
    max-width:34rem;
}

#webvibe-hero .robot-3d{
    scale:0.8;
    top:-10%;
    right:-20%;
}

}

/* mobile responsive */

@media (max-width: 768px) {

#webvibe-hero header{
    padding:1rem 0.3rem;
}

#webvibe-hero nav{
    display:none;
}

#webvibe-hero header h1{
    font-size:1.5rem;
}

#webvibe-hero .btn-work{
    padding:0.4rem 1.2rem;
}

#webvibe-hero .robot-3d{
    scale: 0.7;
    top: -25%;
    right: 0;
}

#webvibe-hero .robot-3d::after{
    content:"";
    position:absolute;
    bottom:10px;
    right:10px;
    width:220px;
    height:120px;
    background:black;
    z-index:9999;
}

#webvibe-hero .content{
    margin-top:40vh;
    max-width:40rem;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

#webvibe-hero .tag-box{
    width:12rem;
    margin:0 auto;
}

#webvibe-hero .content h1{
    font-size:2.5rem;
}

#webvibe-hero .description{
    font-size:1rem;
}

#webvibe-hero .buttons{
    justify-content:center;
}

#webvibe-hero .btn-contact-me{
    font-size:0.8rem;
    padding:0.5rem 1.2rem;
}

#webvibe-hero .btn-showcase{
    font-size:0.8rem;
    padding:0.5rem 1.2rem;
}

}

/* small phones */

@media (max-width: 380px) {

#webvibe-hero .content{
    margin-top: 35vh;
}

#webvibe-hero .robot-3d{
    scale: 0.55;
    top: -25%;
    left: 30%;
    right: auto;
    transform: translateX(-50%);
}

#webvibe-hero .content h1{
    font-size: 2rem;
}

#webvibe-hero .description{
    font-size: 0.9rem;
}

#webvibe-hero .tag-box{
    width: 10rem;
}

#webvibe-hero .btn-contact-me,
#webvibe-hero .btn-showcase{
    font-size: 0.75rem;
    padding: 0.45rem 1rem;
}

}

#webvibe-hero .content h1 {
    line-height: 1.2;
}

/* верхняя строка */
#webvibe-hero .title-small {
    font-size: clamp(0.7rem, 3vw, 2.8rem);
    font-weight: 500;
    opacity: 0.85;
}

/* нижняя строка (главный акцент) */
#webvibe-hero .title-big {
    font-size: clamp(1.3rem, 6vw, 5rem);
    font-weight: 700;
    display: block;
}