/* ── Video Hero Banner ─────────────────────────────────────────────────────── */

.vhero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #001233;
}

.vhero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.vhero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 18, 51, 0.88) 0%, rgba(7, 116, 255, 0.45) 100%);
    z-index: 1;
}

.vhero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 160px 0 100px;
    text-align: center;
}

/* ── Top badge pill ──────────────────────────────────────────────────────────*/
.vhero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 100px;
    padding: 8px 22px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 28px;
}

.vhero__badge a {
    color: #C8FF92;
    font-weight: 700;
    text-decoration: none;
}

.vhero__badge a:hover {
    text-decoration: underline;
}

/* ── Chat typing indicator ───────────────────────────────────────────────────*/
.vhero__typing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    padding: 10px 18px;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.vhero__typing.visible {
    opacity: 1;
    transform: translateY(0);
}

.vhero__typing span {
    display: block;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.80);
    border-radius: 50%;
    animation: vhero-bounce 1.1s ease-in-out infinite;
}

.vhero__typing span:nth-child(2) { animation-delay: 0.18s; }
.vhero__typing span:nth-child(3) { animation-delay: 0.36s; }

@keyframes vhero-bounce {
    0%, 60%, 100% { transform: translateY(0);    opacity: 0.45; }
    30%            { transform: translateY(-7px); opacity: 1; }
}

/* ── Typewriter headline ─────────────────────────────────────────────────────*/
.vhero__title {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 18px;
    min-height: 2.4em;
}

.vhero__type-line {
    display: inline;
}

.vhero__type-accent {
    color: #C8FF92;
}

/* Blinking cursor */
.vhero__cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: #C8FF92;
    margin-left: 4px;
    vertical-align: middle;
    border-radius: 2px;
    animation: vhero-blink 0.75s step-end infinite;
}

@keyframes vhero-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── Subheadline ─────────────────────────────────────────────────────────────*/
.vhero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 40px;
    font-weight: 400;
}

.vhero__subtitle strong {
    color: #fff;
}

/* ── Domain search bar ───────────────────────────────────────────────────────*/
.vhero__search {
    max-width: 700px;
    margin: 0 auto 28px;
}

.vhero__search-wrap {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 7px 7px 7px 22px;
    gap: 14px;
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.35);
}

.vhero__search-icon {
    color: #bbb;
    font-size: 16px;
    line-height: 1;
}

.vhero__search-wrap input {
    width: 100% !important;
    border: none !important;
    outline: none !important;
    padding: 13px 0 !important;
    font-size: 16px !important;
    color: #001233;
    background: transparent !important;
    font-family: inherit;
    box-shadow: none !important;
}

.vhero__search-wrap input::placeholder {
    color: #aaa;
}

.vhero__search-wrap button {
    width: auto !important;
    background: #0774FF !important;
    color: #fff !important;
    border: none !important;
    border-radius: 7px;
    padding: 13px 34px !important;
    font-size: 15px !important;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    font-family: inherit;
    line-height: 1.4;
}

.vhero__search-wrap button:hover {
    background: #055ac5 !important;
}

/* ── TLD quick-pick pills ────────────────────────────────────────────────────*/
.vhero__tlds {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.vhero__tlds > span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.vhero__tlds a {
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    padding: 4px 14px;
    transition: background 0.2s, border-color 0.2s;
}

.vhero__tlds a:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
}

.vhero__tlds a em {
    font-style: normal;
    color: #C8FF92;
    margin-left: 4px;
    font-size: 12px;
}

/* ── Trust strip ─────────────────────────────────────────────────────────────*/
.vhero__trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    font-weight: 500;
    margin-top: 44px;
}

.vhero__trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
}

.vhero__trust-item i {
    font-size: 20px;
    color: #C8FF92;
}

.vhero__trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.20);
}

/* ── Responsive ──────────────────────────────────────────────────────────────*/
@media screen and (max-width: 992px) {
    .vhero__title {
        font-size: 48px;
    }
    .vhero__content {
        padding: 140px 0 90px;
    }
}

@media screen and (max-width: 768px) {
    .vhero__title {
        font-size: 38px;
        letter-spacing: -0.5px;
    }
    .vhero__trust {
        gap: 18px;
    }
    .vhero__trust-divider {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .vhero__title {
        font-size: 30px;
        letter-spacing: 0;
    }
    .vhero__subtitle {
        font-size: 15px;
    }
    .vhero__search-wrap {
        padding: 5px 5px 5px 16px !important;
        gap: 8px;
    }
    .vhero__search-wrap input {
        font-size: 14px !important;
        padding: 10px 0 !important;
    }
    .vhero__search-wrap button {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
    .vhero__content {
        padding: 120px 0 70px;
    }
}
