* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: #0f172a;
    font-family: Arial, Helvetica, sans-serif;
    padding: clamp(8px, 2.5vw, 12px);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

.landing-page {
    width: min(1200px, 100%);
}

.hero {
    position: relative;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
}

.overlay-link {
    position: absolute;
    display: block;
    border-radius: 10px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.overlay-link:hover,
.overlay-link:focus-visible {
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.75), 0 0 0 5px rgba(37, 99, 235, 0.7);
    transform: translateY(-1px);
}

/* Clickable areas: match CTA pills — slight trim on the right edge vs prior */
.left-link {
    left: 12.4%;
    top: 87.9%;
    width: 24.7%;
    height: 5.3%;
}

.right-link {
    left: 59.7%;
    top: 87.9%;
    width: 24.7%;
    height: 5.3%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
