* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
                 "Helvetica Neue", Arial, sans-serif;
    background: #ffffff;
    color: #1d1d1f;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper {
    flex: 1;
}

/* HERO */

.hero {
    text-align: center;
    padding: 140px 20px 100px;
    max-width: 900px;
    margin: auto;
}

.eyebrow {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #86868b;
    margin-bottom: 20px;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.subtext {
    font-size: 20px;
    font-weight: 400;
    color: #515154;
    max-width: 650px;
    margin: auto;
    line-height: 1.6;
}

.spacer {
    height: 50px;
}

/* CTA BUTTON */

.cta-btn {
    display: inline-block;
    background: #ff3b30;
    color: #ffffff;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cta-btn:hover {
    background: #d92c24;
    transform: translateY(-2px);
}

/* DETAILS SECTION */

.details {
    padding: 80px 20px 120px;
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.block h2 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.block p {
    color: #515154;
    font-size: 16px;
    line-height: 1.6;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
    color: #86868b;
}