:root {
    --night: #071526;
    --night-light: #12375b;
}

body {
    min-height: 100vh;
    background: #f7f9fc;
    color: #14213d;
}

.navbar {
    min-height: 72px;
}

.navbar,
.hero,
.search-page {
    background: var(--night);
}

.brand-plate {
    display: inline-flex;
    align-items: center;
    width: 218px;
    min-height: 48px;
    padding: .55rem .8rem;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: .8rem;
    background: linear-gradient(135deg, #fff, #f1f7f8);
    box-shadow: 0 .6rem 1.6rem rgba(0, 0, 0, .18);
}

.brand-plate img {
    display: block;
    width: 100%;
    height: auto;
}

.hero {
    color: #fff;
    background-image:
        radial-gradient(circle at 75% 20%, rgba(13, 202, 240, .2), transparent 28rem),
        linear-gradient(135deg, var(--night), var(--night-light));
}

.domain-search {
    max-width: 48rem;
    margin-top: 2rem;
    padding: .45rem;
    border-radius: .8rem;
    background: rgba(255, 255, 255, .18);
}

.bot-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.glass-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
}

.feature {
    padding: 1.6rem;
    border: 1px solid #e5eaf0;
    border-radius: 1rem;
    background: #fff;
}

.feature > .bi {
    display: inline-block;
    margin-bottom: 1rem;
    color: #0d6efd;
    font-size: 2rem;
}

.search-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.search-page main {
    flex: 1;
}

.search-card {
    max-width: 52rem;
}

.availability-result {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid;
    border-radius: 1rem;
}

.availability-result > .bi {
    flex: 0 0 auto;
    font-size: 2rem;
}

.availability-free {
    border-color: #a7dbc1;
    color: #155d43;
    background: #effaf4;
}

.availability-taken {
    border-color: #d8dee8;
    color: #465369;
    background: #f5f7fa;
}

.faq-section {
    border-top: 1px solid #e5eaf0;
    background: #fff;
}

.section-label {
    color: #087f8c;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.faq-list {
    display: grid;
    gap: .75rem;
}

.faq-item {
    border: 1px solid #dde5ed;
    border-radius: .9rem;
    background: #f8fafc;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary .bi {
    transform: rotate(45deg);
}

.faq-item summary .bi {
    transition: transform .15s ease;
}

.faq-item p {
    margin: 0;
    padding: 0 1.2rem 1.1rem;
    color: #5d6879;
}

@media (max-width: 575.98px) {
    .navbar {
        min-height: 64px;
    }

    .brand-plate {
        width: 172px;
        min-height: 41px;
        padding: .45rem .65rem;
    }

    .navbar .btn {
        padding-right: .6rem;
        padding-left: .6rem;
        font-size: .8rem;
    }

    .navbar .btn-light {
        display: none;
    }
}
