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

body {
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.page {
    max-width: 840px;
    margin: 0 auto;
    padding: 48px 24px 64px;
    text-align: center;
}

/* Logo */
.logo {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #999;
    margin-bottom: 56px;
}

.logo span {
    color: #1a1a1a;
}

/* Headline */
h1 {
    font-size: clamp(36px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #111;
    margin-bottom: 22px;
}

h1 em {
    font-style: italic;
    color: #2563eb;
}

/* Sub */
.sub {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    margin-bottom: 48px;
    line-height: 1.6;
}

/* Step label */
.step {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #2563eb;
    margin-bottom: 16px;
}

/* Video */
.video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 48px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    cursor: pointer;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: #2563eb;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.video-play svg {
    margin-left: 3px;
}

.video:hover .video-play {
    background: #a93226;
    transform: translate(-50%, -50%) scale(1.06);
}

/* CTA */
.cta {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background: #2563eb;
    padding: 20px 48px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.cta:hover {
    background: #a93226;
    transform: translateY(-1px);
}

/* Fine print */
.fine {
    font-size: 13px;
    color: #999;
    margin-top: 16px;
}

/* Mobile */
@media (max-width: 600px) {
    .page {
        padding: 32px 20px 48px;
    }

    .logo {
        margin-bottom: 40px;
    }

    h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .sub {
        font-size: 16px;
    }

    .cta {
        font-size: 17px;
        padding: 16px 32px;
        width: 100%;
    }

    .video-play {
        width: 60px;
        height: 60px;
    }
}
