:root {
    --bg: #050505;
    --bg-soft: #111111;
    --bg-card: #141414;
    --gold: #d4af37;
    --gold-soft: #8f7a2b;
    --accent: #ffdd8a;
    --text: #f5f5f5;
    --muted: #9b9b9b;
    --border: #262626;
}

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

html,
body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #202020, #050505);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
}

.bg-gradient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.22) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(255, 221, 138, 0.16) 0, transparent 55%);
    z-index: -2;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
    z-index: -1;
}

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

.shell {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.96), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    gap: 1.5rem;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, var(--accent), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #000;
    box-shadow: 0 0 26px rgba(212, 175, 55, 0.8);
}

.logo-title {
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 1rem;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.price-pill {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    background: radial-gradient(circle at 0 0, rgba(212, 175, 55, 0.3), rgba(10, 10, 10, 0.95));
    font-size: 0.78rem;
    display: grid;
    gap: 0.1rem;
}

.price-label {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    font-size: 0.7rem;
}

.price-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

.price-sub {
    font-size: 0.72rem;
    color: var(--muted);
}

.btn-primary {
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 221, 138, 0.6);
    background: linear-gradient(135deg, var(--gold), #f3e0a9);
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9);
}

/* HERO */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2.5rem;
    padding-top: 3rem;
    padding-bottom: 2.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 15, 15, 0.9);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 14px rgba(255, 221, 138, 0.9);
}

h1 {
    margin-bottom: 1.2rem;
}

.h1-main {
    display: block;
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.h1-sub {
    display: block;
    font-size: 1rem;
    color: var(--muted);
    margin-top: 0.3rem;
}

.hero-text {
    font-size: 0.96rem;
    color: var(--muted);
    max-width: 32rem;
    margin-bottom: 1.4rem;
}

.hero-text strong {
    color: var(--accent);
}

.hero-list {
    list-style: none;
    font-size: 0.9rem;
    margin-bottom: 1.7rem;
    color: var(--muted);
}

.hero-list li {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.hero-list span {
    color: var(--accent);
}

.contact-box {
    border-radius: 1.1rem;
    border: 1px solid var(--border);
    background: radial-gradient(circle at 0 0, rgba(212, 175, 55, 0.18), rgba(10, 10, 10, 0.95));
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    font-size: 0.86rem;
}

.contact-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.contact-text strong {
    color: var(--accent);
}

.btn-outline {
    border-radius: 999px;
    padding: 0.45rem 1rem;
    border: 1px solid rgba(255, 221, 138, 0.9);
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.btn-outline:hover {
    background: rgba(255, 221, 138, 0.1);
    transform: translateY(-1px);
}

/* HERO CARD */

.hero-card {
    border-radius: 1.4rem;
    background: linear-gradient(145deg, #151515, #090909);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.9);
    padding: 1.4rem;
}

.hero-card-inner {
    display: grid;
    gap: 1rem;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
}

.badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: #8fffbd;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2ed573;
    box-shadow: 0 0 14px rgba(46, 213, 115, 0.9);
}

.domain-name {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.domain-tagline {
    font-size: 0.9rem;
    color: var(--muted);
}

.facts {
    font-size: 0.86rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 0.6rem 0;
    display: grid;
    gap: 0.35rem;
}

.fact-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.fact-row dt {
    color: var(--muted);
}

.fact-row dd {
    font-weight: 500;
    color: var(--accent);
}

.card-note {
    font-size: 0.82rem;
    color: var(--muted);
}

/* SECTION 2 */

.section {
    padding-bottom: 3rem;
}

.section-title {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.section-intro {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 36rem;
    margin-bottom: 1.6rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
    margin-bottom: 2rem;
}

.card {
    background: linear-gradient(145deg, #151515, #0b0b0b);
    border-radius: 1.1rem;
    border: 1px solid var(--border);
    padding: 1rem;
    font-size: 0.88rem;
}

.card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.card p {
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.mini-list {
    list-style: none;
    font-size: 0.8rem;
    color: #c8c8c8;
}

.mini-list li::before {
    content: "• ";
    color: var(--accent);
}

.keywords {
    border-radius: 1.1rem;
    border: 1px dashed var(--border);
    background: #0b0b0b;
    padding: 1rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.keywords strong {
    display: block;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
}

/* FOOTER */

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.6rem 0 2.2rem;
    font-size: 0.78rem;
    color: var(--muted);
    background: rgba(5, 5, 5, 0.98);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-mail {
    color: var(--accent);
    text-decoration: none;
}

.footer-mail:hover {
    text-decoration: underline;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        order: -1;
    }

    .header {
        position: static;
    }

    .header .shell {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 550px) {
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .shell {
        padding: 0 1rem;
    }
}
