:root {
    --bg: #fff9fb;
    --bg-soft: #fff6f8;
    --bg-card: #ffffff;
    --border: #f0dde4;
    --text: #3e2e33;
    --muted: #8b6f79;
    --accent: #f29ab5;
    --accent-soft: #fbd3df;
    --gold: #d4af37;
}

* {
    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, #ffeef4, #fff9fb);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
}

.bg-gradients {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 0% 0%, rgba(242, 154, 181, 0.3) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.18) 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.9' numOctaves='2' stitchTiles='noStitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%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: 40;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(255, 249, 251, 0.96), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

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

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

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    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: #fff;
    box-shadow: 0 0 20px rgba(242, 154, 181, 0.7);
}

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

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

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

.price-pill {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    background: radial-gradient(circle at 0 0, rgba(255, 245, 230, 0.9), rgba(255, 249, 251, 0.95));
    font-size: 0.78rem;
    display: grid;
    gap: 0.1rem;
}

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

.price-value {
    font-size: 1rem;
    font-weight: 700;
    color: #b8871b;
}

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

.btn-primary {
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--accent), #ffbfd6);
    color: #401822;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(242, 154, 181, 0.6);
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 14px 34px rgba(242, 154, 181, 0.8);
}

/* HERO */

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    border: 1px solid #f4dde5;
    background: rgba(255, 255, 255, 0.85);
    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 12px rgba(242, 154, 181, 0.8);
}

h1 {
    margin-bottom: 1.1rem;
}

.h1-main {
    display: block;
    font-size: clamp(2.3rem, 4vw, 3rem);
    letter-spacing: 0.08em;
    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: 34rem;
    margin-bottom: 1.4rem;
}

.hero-text strong {
    color: #b25273;
}

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

.hero-list li {
    display: flex;
    gap: 0.55rem;
    margin-bottom: 0.3rem;
    align-items: flex-start;
}

.hero-list span {
    font-size: 1.05rem;
}

.contact-box {
    border-radius: 1.2rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.9rem 1.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.18em;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.contact-text strong {
    color: #b25273;
}

.btn-outline {
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    border: 1px solid #f0b4c8;
    background: linear-gradient(135deg, #fff, #ffe9f0);
    color: #b25273;
    text-decoration: none;
    font-size: 0.8rem;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 8px 18px rgba(240, 180, 200, 0.5);
}

.btn-outline:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(240, 180, 200, 0.7);
}

/* HERO CARD */

.hero-card {
    border-radius: 1.4rem;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(255, 235, 244, 0.98));
    border: 1px solid var(--border);
    box-shadow: 0 22px 60px rgba(223, 177, 196, 0.55);
    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.8rem;
    border-radius: 999px;
    border: 1px solid #f0dde4;
    background: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: #3b9d6f;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #3b9d6f;
    box-shadow: 0 0 12px rgba(59, 157, 111, 0.8);
}

.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.4rem;
}

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

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

.fact-row dd {
    font-weight: 500;
    color: #b25273;
}

.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.4rem;
    margin-bottom: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1.1rem;
    border: 1px solid var(--border);
    padding: 1rem;
    font-size: 0.88rem;
    box-shadow: 0 16px 40px rgba(223, 177, 196, 0.35);
}

.card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #b25273;
}

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

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

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

/* Keywords */

.keywords {
    border-radius: 1.1rem;
    border: 1px dashed var(--border);
    background: rgba(255, 255, 255, 0.9);
    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.8);
    padding: 1.6rem 0 2.1rem;
    font-size: 0.78rem;
    color: var(--muted);
    background: rgba(255, 249, 251, 0.96);
}

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

.footer-mail {
    color: #b25273;
    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;
        margin-bottom: 1.2rem;
    }

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

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

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

    .shell {
        padding: 0 1rem;
    }
}
