/* Base Reset & Variables */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #030712; /* gray-950 */
    line-height: 1.5;
}

/* Layout Structure */
.container {
    width: 100%;
    max-width: 1280px; /* container mx-auto */
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem; /* px-4 */
}

.hero-wrapper {
    padding-top: 4rem;
    padding-bottom: 6rem;
    text-align: center;
}

/* Typography & Content */
h1 {
    font-size: 3.75rem; /* text-6xl fallback */
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -0.025em; /* tracking-tight */
    text-wrap: balance;
    color: #030712;
}

p {
    margin-top: 2rem; /* mt-8 */
    font-size: 1.25rem; /* text-xl */
    line-height: 1.75rem; /* /7 */
    font-weight: 500;
    color: rgba(3, 7, 18, 0.75); /* text-gray-950/75 */
}

/* Button Customizations */
.btn-container {
    margin-top: 3rem; /* mt-12 */
}

.btn-link {
    display: inline-block;
    text-decoration: none;
    background-color: #eef2ff; /* bg-indigo-50 */
    color: #4f46e5; /* text-indigo-600 */
    font-weight: 600;
    font-size: 0.875rem; /* text-sm */
    padding: 0.375rem 0.625rem; /* py-1.5 px-2.5 */
    border-radius: 0.375rem; /* rounded-md */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    transition: background-color 0.2s ease;
}

.btn-link:hover {
    background-color: #e0e7ff; /* hover:bg-indigo-100 */
}

/* Responsive Breakpoints (Mimicking Tailwind sm, md) */
@media (min-width: 640px) {
    .hero-wrapper {
        padding-top: 6rem;
        padding-bottom: 8rem; /* sm:pt-24 sm:pb-32 */
    }

    h1 {
        font-size: 6rem; /* sm:text-8xl */
    }

    p {
        font-size: 1.5rem; /* sm:text-2xl */
        line-height: 2rem; /* /8 */
    }
}

@media (min-width: 768px) {
    .hero-wrapper {
        padding-top: 8rem;
        padding-bottom: 12rem; /* md:pt-32 md:pb-48 */
    }

    h1 {
        font-size: 8rem; /* md:text-9xl */
    }
}