/* Global Resets & Variables */
:root {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color-scheme: light;
    color: #000000;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    /* Prevent outer scrollbars */
}

/* Layout */
.main-container {
    width: 100%;
    height: 100%;
    padding: 12px;
    box-sizing: border-box;
    background-color: #ffffff;
    overflow: hidden;
    /* Strict no scroll */
}

.card {
    width: 100%;
    height: 100%;
    /* Fill the padded container */
    background-color: #f3f5f5;
    border-radius: 16px;
    overflow: hidden;
    /* Clip internal content if it overflows */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Content */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin-top: 65px;
    width: 100%;
    max-width: 711px;
    z-index: 10;
}

.brand {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    margin: 0;
    letter-spacing: 0.12px;
}

.text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    text-align: center;
}

.headline {
    font-family: 'Neuton', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0.31px;
    margin: 0;
    color: #000000;
}

.subhead {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.12px;
    margin: 0;
    color: #666666;
}

/* Button */
.cta-button {
    background-color: #21b1a9;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.12px;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #1a8f88;
}

/* Hero Image */
.image-container {
    width: 1058px;
    margin-top: 50px;
    box-shadow: 0px -4px 32px 0px rgba(0, 0, 0, 0.07);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}