/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;700&display=swap');

/* --- Root Variables --- */
:root {
    --primary-purple: #571896;
    --light-violet: #852CDD;
    --brand-black: #080513;
    --brand-white: #B8B8BB;
    --font-family: 'EB Garamond', serif;
    --transition-speed: 0.4s;
}

/* --- Base & Animated Background --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--brand-white);
    background-color: var(--brand-black);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(133, 44, 221, 0.2), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(87, 24, 150, 0.2), transparent 40%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* --- Layout & Spacing --- */
.page-canvas {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 5vh 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-focus {
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

.content-flow section {
    width: 100%;
    padding: 15vh 0; /* Dramatic vertical spacing */
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s; /* Stagger the animation */
}

.logo-anchor img {
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
}

/* --- Typography --- */
h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 0 20px rgba(184, 184, 187, 0.3);
}

.subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    max-width: 55ch;
    margin: 1rem auto 2.5rem auto;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.8;
}

h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--brand-white);
    margin-bottom: 1.5rem;
}

p {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    line-height: 1.7;
    max-width: 60ch;
    margin: 0 auto;
    opacity: 0.75;
}

/* --- The Action Nexus (Buttons) --- */
.action-nexus {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
    cursor: pointer;
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px; /* Modern rounded buttons */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
}

.btn-primary {
    background: var(--brand-white);
    color: var(--primary-purple);
    border-color: var(--brand-white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--brand-white);
    transform: scale(1.05);
}

.btn-secondary {
    color: var(--brand-white);
}

.btn-secondary:hover {
    border-color: var(--light-violet);
    color: #fff;
    transform: scale(1.05);
}


/* --- Other Elements --- */
#setmore-widget-placeholder {
    margin-top: 2rem;
    padding: 40px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed var(--light-violet);
    color: var(--light-violet);
    opacity: 0.8;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .page-canvas {
        padding: 5vh 1rem;
    }
    .main-focus {
        min-height: 70vh;
    }
    .content-flow section {
        padding: 10vh 0;
    }
}
