﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: #070812;
    color: #fff;
    overflow-x: hidden;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.page-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(73, 118, 255, .22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 194, 102, .16), transparent 34%),
        linear-gradient(135deg, #070812 0%, #10172d 48%, #070812 100%);
    z-index: -4;
}

.orb {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .35;
    z-index: -3;
}

.orb-one {
    top: 80px;
    left: -140px;
    background: #315dff;
}

.orb-two {
    right: -120px;
    bottom: 80px;
    background: #d7a84d;
}

.topbar {
    padding: 28px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.brand-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.03em;
    max-width: 520px;
    line-height: 1.2;
}

.brand-domain {
    margin-top: 4px;
    color: #f4c76c;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s ease;
}

.brand-block:hover .brand-domain {
    opacity: .8;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-logo .sq-loader {
    --sq-gap: 5px;
    --sq-grey: rgba(255, 255, 255, .30);
    --sq-blue: #f4c76c;
    --sq-radius: 2px;
    --fade-ms: 640ms;

    --sq-size: calc((54px - (2 * var(--sq-gap))) / 3 * 0.88);

    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, var(--sq-size));
    grid-template-rows: repeat(3, var(--sq-size));
    gap: var(--sq-gap);
    place-content: center;
    place-items: center;
}

.brand-logo .sq {
    width: var(--sq-size);
    height: var(--sq-size);
    background: var(--sq-grey);
    border-radius: var(--sq-radius);
    position: relative;
    overflow: hidden;
}

.brand-logo .sq-top {
    grid-column: 2;
    grid-row: 1;
}

.brand-logo .sq-left {
    grid-column: 1;
    grid-row: 2;
}

.brand-logo .sq-center {
    grid-column: 2;
    grid-row: 2;
}

.brand-logo .sq-right {
    grid-column: 3;
    grid-row: 2;
}

.brand-logo .sq-bottom {
    grid-column: 2;
    grid-row: 3;
}

.brand-logo .sq-blue {
    position: absolute;
    inset: 0;
    background: var(--sq-blue);
    opacity: 0;
    transform: scale(.96);
    transition:
        opacity var(--fade-ms) ease-in-out,
        transform var(--fade-ms) ease-in-out;
}

.brand-logo .sq.is-active .sq-blue {
    opacity: 1;
    transform: scale(1);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-action-btn {
    height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.02em;
    cursor: pointer;
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.top-action-btn:hover {
    transform: translateY(-2px);
}

.top-action-btn.primary {
    background: linear-gradient(135deg, #f4c76c, #c9922e);
    border-color: rgba(244, 199, 108, .4);
    color: #111;
}

.top-action-btn.primary:hover {
    background: linear-gradient(135deg, #ffd98d, #d89f38);
}

.top-action-btn.secondary:hover {
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .18);
}

.hero {
    padding: 70px 0 80px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(30px, 4vw, 54px);
    line-height: .96;
    letter-spacing: -.07em;
    max-width: 720px;
}

.hero p {
    margin-top: 28px;
    color: #c1c8dd;
    font-size: 19px;
    line-height: 1.75;
    max-width: 740px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.hero-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    border: 0;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #f4c76c, #bb8734);
    color: #15100a;
    box-shadow: 0 18px 45px rgba(244, 199, 108, .22);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
}

.hero-panel {
    padding: 28px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.hero-panel-line {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.hero-panel-line:last-child {
    border-bottom: 0;
}

.hero-panel-line span {
    color: #aeb8d6;
}

.hero-panel-line strong {
    text-align: right;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.hero-panel::before {
    content: "";
    position: absolute;
    top: -140%;
    left: -40%;
    width: 70%;
    height: 320%;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .06),
            rgba(244, 199, 108, .10),
            rgba(255, 255, 255, .06),
            transparent);
    transform: rotate(18deg);
    animation: heroPanelShine 7s linear infinite;
    pointer-events: none;
}

.hero-panel:hover {
    border-color: rgba(244, 199, 108, .22);
    box-shadow:
        0 28px 90px rgba(0, 0, 0, .34),
        0 0 0 1px rgba(244, 199, 108, .08) inset;
}

.hero-panel-line {
    transition:
        transform .22s ease,
        color .22s ease;
}

.hero-panel-line:hover {
    transform: translateX(4px);
}

.hero-panel-line:hover strong {
    color: #f4c76c;
}

@keyframes heroPanelShine {

    0% {
        transform: translateX(-160%) rotate(18deg);
    }

    100% {
        transform: translateX(260%) rotate(18deg);
    }
}

.domains-section {
    padding: 40px 0 90px;
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading span {
    color: #f4c76c;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 13px;
}

.section-heading h2 {
    margin-top: 12px;
    font-size: clamp(24px, 3vw, 40px);
    letter-spacing: -.04em;
    width: 100%;
    max-width: 100%;
    line-height: 1.15;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.domain-card {
    position: relative;
    min-height: 360px;
    padding: 32px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045)),
        rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .13);
    overflow: hidden;
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .24);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;

    display: flex;
    flex-direction: column;
}

.domain-card::before {
    content: "";
    position: absolute;
    inset: auto -80px -100px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(76, 125, 255, .22);
    filter: blur(50px);
}

.domain-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 255, 255, .28);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}

.domain-card.premium {
    border-color: rgba(244, 199, 108, .55);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, .32),
        0 0 0 1px rgba(244, 199, 108, .18) inset;
}

.card-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.premium-badge {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffd98a, #b77b22);
    color: #17100a;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
}

.standard-badge {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #dce3f8;
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
}

.domain-name {
    font-size: clamp(22px, 2.4vw, 36px);
    line-height: 1.02;
    letter-spacing: -.06em;
    overflow-wrap: anywhere;
    word-break: break-word;
    margin-bottom: 18px;
    max-width: 100%;
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.domain-title {
    color: #f4c76c;
    font-weight: 800;
    margin-bottom: 12px;
}

.domain-description {
    color: #c1c8dd;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 94%;
}

.domain-bottom {
    display: block;
    margin-top: auto;
    padding-top: 26px;
}

.domain-price {
    text-align: right;
    flex-shrink: 0;
}

.domain-price span {
    display: block;
    color: #b8c3df;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -.02em;
}

.domain-price strong {
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
}

.domain-actions {
    display: grid;
    gap: 12px;
}

.domain-actions.has-visit {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.domain-actions.no-visit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.domain-actions button,
.visit-btn {
    width: 100%;
    border: 0;
    cursor: pointer;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    font-weight: 900;
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
    transition: transform .2s ease, opacity .2s ease;
}

.visit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
}

.visit-btn:hover {
    background: rgba(255, 255, 255, .12);
}

.domain-actions button:hover {
    transform: translateY(-2px);
}

.offer-btn {
    background: linear-gradient(135deg, #f4c76c, #b77b22);
    color: #15100a;
}

.ask-btn {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12) !important;
}

.info-section {
    padding: 40px 0 120px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.info-card {
    padding: 34px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
}

.info-number {
    display: inline-flex;
    margin-bottom: 24px;
    color: #f4c76c;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .14em;
}

.info-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    letter-spacing: -.03em;
}

.info-card p {
    color: #c1c8dd;
    line-height: 1.75;
}

.mini-faq {
    margin-top: 24px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(0, 0, 0, .22);
    color: #dce3f8;
    line-height: 1.55;
}

.footer-description {
    margin-top: 4px;
    color: #9ca8c7;
    line-height: 1.45;
    font-size: 15px;
    max-width: 640px;
}

.site-footer {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .02);
}

.footer-inner {
    min-height: 140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.footer-left {
    max-width: 620px;
}

.footer-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 8px;
}

.footer-domain {
    display: inline-flex;
    color: #f4c76c;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    text-decoration: none;
}

.footer-domain:hover {
    opacity: .8;
}

.footer-left p {
    color: #9ca8c7;
    line-height: 1.7;
    font-size: 15px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    transition:
        transform .2s ease,
        opacity .2s ease;
}

.footer-social-btn:hover {
    transform: translateY(-2px);
    opacity: .78;
}

.footer-social-btn i {
    font-size: 34px;
    line-height: 1;
}

.footer-note {
    color: #9ca8c7;
    font-size: 14px;
}

.footer-developer-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    color: #f4c76c;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -.01em;
    transition: opacity .2s ease;
}

.footer-developer-link span {
    color: #9ca8c7;
    font-size: 12px;
    font-weight: 500;
}

.footer-developer-link:hover {
    opacity: .8;
}

.toast-box {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 2000;
    display: grid;
    gap: 12px;
    width: min(360px, calc(100% - 32px));
}

.toast-message {
    padding: 16px 18px;
    border-radius: 16px;
    color: #fff;
    font-weight: 800;
    line-height: 1.45;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    transform: translateY(14px);
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
}

.toast-message.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-message.success {
    background: linear-gradient(135deg, #18a058, #0f7a42);
}

.toast-message.error {
    background: linear-gradient(135deg, #d92d20, #9f1f17);
}

@media (max-width: 620px) {
    .toast-box {
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
    }
}

.turnstile-box {
    display: flex;
    justify-content: center;
    min-height: 65px;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 15, .72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
    backdrop-filter: blur(12px);
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    position: relative;
    width: min(500px, 100%);
    border-radius: 28px;
    background: #ffffff;
    color: #111827;
    padding: 28px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .45);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    border: 0;
    background: #f3f4f6;
    color: #111827;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.modal-head span {
    display: inline-flex;
    color: #9a6a18;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.modal-head h2 {
    font-size: 26px;
    margin-bottom: 8px;
    letter-spacing: -.04em;
}

.modal-head p {
    color: #5f6878;
    line-height: 1.5;
    margin-bottom: 18px;
    font-size: 14px;
}

.contact-form {
    display: grid;
    gap: 12px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    color: #374151;
    font-size: 13px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d8dee9;
    background: #f9fafb;
    color: #111827;
    border-radius: 16px;
    padding: 13px 14px;
    outline: none;
    font-size: 16px;
}

.contact-form input:-webkit-autofill,
.contact-form textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #f9fafb inset;
    -webkit-text-fill-color: #111827;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #c28a2c;
    box-shadow: 0 0 0 4px rgba(194, 138, 44, .15);
}

.contact-form textarea {
    min-height: 90px;
    resize: vertical;
}

.contact-form button {
    margin-top: 4px;
    height: 52px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #111827, #2d3748);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 920px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        max-width: 520px;
    }

    .domains-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card.big {
        grid-row: auto;
    }
}

@media (max-width: 620px) {
    .card-top {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .premium-badge,
    .standard-badge {
        align-self: flex-start;
    }

    .domain-price {
        width: 100%;
        text-align: center;
    }

    .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .top-email {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: 45px;
    }

    .domain-price {
        text-align: left;
    }

    .domain-actions,
    .domain-actions.has-visit,
    .domain-actions.no-visit {
        grid-template-columns: 1fr;
    }

    .domain-actions button,
    .visit-btn {
        width: 100%;
    }

    .modal-overlay {
        padding: 10px;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
    }

    .modal-box {
        width: 100%;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
        padding: 18px 16px;
        border-radius: 18px;
        margin: 10px 0;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        font-size: 24px;
    }

    .modal-head span {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .modal-head h2 {
        font-size: 21px;
        padding-right: 40px;
    }

    .modal-head p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .contact-form {
        gap: 9px;
    }

    .contact-form label {
        gap: 5px;
        font-size: 12px;
    }

    .contact-form input,
    .contact-form textarea {
        border-radius: 12px;
        padding: 10px 12px;
        font-size: 15px;
    }

    .contact-form textarea {
        min-height: 70px;
    }

    .contact-form button {
        height: 46px;
        border-radius: 12px;
        font-size: 14px;
    }

    .turnstile-box {
        min-height: 58px;
        transform: scale(.92);
        transform-origin: center top;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 34px 0;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-developer-link {
        align-items: flex-start;
    }

    .top-actions {
        width: 100%;
        margin-top: 18px;
    }

    .top-action-btn {
        flex: 1;
        min-width: 0;
        padding: 0 12px;
        font-size: 13px;
    }
}