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

:root {
    --blue: #0D99FF;
    --blue-dark: #0077CC;
    --bg: #fafcfb;
    --card: #FFFFFF;
    --text: #1A1A2E;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --main: #2BB34D;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    min-height: 100vh;
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 540px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

.header {
    text-align: center;
    margin-bottom: 28px;
}

.logo {
    height: 68px;
    width: auto;
    margin-bottom: 5px;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 17px;
}

.time-estimate {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.time-estimate svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    background: var(--card);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: white;
    color: var(--main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 28px;
}

.step-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.app-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #F8FAFC;
    border-radius: 14px;
    padding: 16px;
    margin-top: 16px;
}

.app-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.app-icon.testflight,
.app-icon.egolf-app {
    background: none;
}

.app-info {
    flex: 1;
    min-width: 0;
}

.app-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.app-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-secondary {
    background: var(--main);
    color: white;
}

.btn-primary {
    background: var(--main);
    color: white;
    width: 100%;
    padding: 16px 24px;
    font-size: 17px;
    border-radius: 14px;
    margin-top: 20px;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.official-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0f8fd;
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    margin-left: 8px;
}

.official-badge svg {
    width: 12px;
    height: 12px;
}

.note {
    text-align: center;
    margin-top: 32px;
    padding: 16px;
    background: #FFFBEB;
    border-radius: 12px;
    border: 1px solid #FDE68A;
}

.note p {
    font-size: 14px;
    color: #92400E;
}

.note strong {
    font-weight: 600;
}

.arrow-down {
    display: flex;
    justify-content: center;
    padding: 4px 0;
}

.arrow-down svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    opacity: 0.5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

@media (hover: hover) {
    .step:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
    }

    .btn-secondary:hover {
        background: #477954;
        transform: scale(1.02);
    }

    .btn-primary:hover {
        transform: scale(1.02);
        box-shadow: 0 4px 16px rgba(85, 255, 119, 0.35);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 32px 20px 48px;
    }

    h1 {
        font-size: 28px;
    }

    .step {
        padding: 24px 20px;
    }
}