/* =========================
   BASE
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    background: radial-gradient(ellipse at top, rgba(120, 55, 190, 0.35) 0%, rgba(40, 10, 70, 0.25) 18%, #050006 58%, #000 100%);
    color: #e7e8ec;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   LAYOUT
========================= */
.page {
    width: 100%;
    max-width: 1100px;
    padding: 64px 32px 48px;
    text-align: center;
}

/* =========================
   MONOGRAM (TRIANGLE)
========================= */
.monogram {
    font-family: "Cinzel", serif;
    font-size: clamp(80px, 11vw, 150px);
    line-height: 0.95;
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "c c"
        "s i";
    width: fit-content;
    gap: 8px 22px;
}

.monogram .c {
    grid-area: c;
    justify-self: center;
}

.monogram .s {
    grid-area: s;
    justify-self: end;
}

.monogram .i {
    grid-area: i;
    justify-self: start;
}

.monogram span {
    display: block;
    /* subtle depth only – NO gray halo */
    text-shadow:
        0 8px 18px rgba(0, 0, 0, 0.55);
}

/* Purple with real depth (heavier, not bleached) */
.monogram .c {
    background: linear-gradient(180deg, #8b5cff 0%, #6b35d7 55%, #3c168f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.monogram .s,
.monogram .i {
    background: linear-gradient(180deg, #8f66ff 0%, #6a3bdc 55%, #381486 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* =========================
   TITLE (REAL SILVER)
========================= */
.title {
    margin: 0;
    font-family: "Cinzel", serif;
    font-size: clamp(34px, 4.8vw, 64px);
    letter-spacing: 0.14em;
    text-transform: uppercase;

    /* silver */
    background: linear-gradient(180deg,
            #ffffff 0%,
            #eef1f6 14%,
            #cfd6df 42%,
            #a7b0bd 70%,
            #7f8a99 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* depth – not glow */
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.28),
        0 10px 26px rgba(0, 0, 0, 0.75);
}

.title .sub {
    display: block;
    margin-top: 14px;
    font-size: 0.72em;
    letter-spacing: 0.20em;
}

/* =========================
   DIVIDER / TAGLINE
========================= */
.divider {
    width: 120px;
    height: 1px;
    margin: 28px auto 18px;
    background: linear-gradient(90deg, transparent, rgba(205, 210, 220, 0.75), transparent);
}

.tagline {
    margin: 0 0 36px;
    font-size: 13px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(230, 232, 238, 0.72);
}

/* =========================
   DESCRIPTION
========================= */
.description {
    max-width: 820px;
    margin: 0 auto 46px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(235, 237, 242, 0.88);
}

/* =========================
   CTA PILLS (RESTORED)
========================= */
.cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin: 0 0 54px;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 28px;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    background: linear-gradient(180deg, rgba(30, 30, 34, 0.78), rgba(8, 8, 10, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.14);

    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cta:hover {
    filter: brightness(1.10);
    transform: translateY(-1px);
}

/* =========================
   FOOTER
========================= */
.footer {
    font-size: 12px;
    color: rgba(230, 232, 238, 0.52);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .page {
        padding: 56px 20px 40px;
    }

    .description {
        font-size: 15px;
    }
}

@media (max-width: 520px) {
    .monogram {
        gap: 6px 18px;
        font-size: 92px;
    }

    .title {
        letter-spacing: 0.12em;
    }

    .cta {
        width: 100%;
        max-width: 340px;
    }
}