html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.98), rgba(248, 248, 248, 0.96) 38%, rgba(244, 244, 244, 0.92) 100%);
    color: #0b0b0f;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

.home-page {
    min-height: 100vh;
    padding: 20px 28px 56px;
}

/* Header */

.site-header {
    width: 100%;
    min-height: 116px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 58px 0 30px;
}

.site-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ededed;
    text-decoration: none;
}

.site-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(42px, 5vw, 78px);
}

.site-nav a {
    color: #060606;
    text-decoration: none;
    font-size: 23px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.site-nav a:hover {
    opacity: 0.58;
}

/* Hero */

.hero-section {
    min-height: calc(100vh - 136px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-inner {
    width: min(100%, 980px);
    margin: 0 auto;
    padding-top: 16px;
}

.hero-eyebrow {
    margin: 0 0 36px;
    
    letter-spacing: 0.34em;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    color: #0c0c0e;
}

.hero-name {
    margin: 0 0 32px;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.04em;
    color: #050505;
}

.hero-title {
    margin: 0;
    font-size: clamp(54px, 5.7vw, 78px);
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: -0.055em;
    color: #6d7077;
}

.apple-mark {
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    font-weight: 500;
    margin: 0 0.12em;
}

.hero-subtitle {
    max-width: 690px;
    margin: 36px auto 0;
    font-size: clamp(22px, 2vw, 29px);
    line-height: 1.45;
    font-weight: 400;
    letter-spacing: -0.035em;
    color: #6f737b;
}

.hero-actions {
    margin-top: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.hero-button {
    min-width: 238px;
    height: 74px;
    border-radius: 999px;
    padding: 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.03em;
    text-decoration: none;
    transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.hero-button-primary {
    color: #fff;
    background: #020202;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.hero-button-secondary {
    color: #050505;
    background: rgba(255, 255, 255, 0.34);
    border: 1.5px solid rgba(0, 0, 0, 0.34);
}



.hero-button:hover {
    transform: translateY(-2px);
    opacity: 0.88;
}


.site-footer {
    margin-top: 96px;
    padding: 42px 0 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(250, 250, 252, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #6e6e73;
}

.site-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 28px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.footer-name {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}

.footer-text {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.45;
    color: #86868b;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    font-weight: 500;
    color: #424245;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #000;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 13px;
    color: #86868b;
}


.hero-button-stacked {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.hero-button-main {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.hero-button-sub {
    font-size: 11px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.38);
    letter-spacing: -0.01em;
    line-height: 1;
    padding-right: 40px;
}

.hero-button-arrow {
    font-size: 24px;
    line-height: 1;
}



@media (max-width: 768px) {
    .site-footer {
        margin-top: 72px;
        padding: 34px 0 24px;
    }

    .site-footer-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .footer-links {
        gap: 18px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* Responsive */

@media (max-width: 900px) {
    .home-page {
        padding: 14px 16px 44px;
    }

    .site-header {
        min-height: 92px;
        border-radius: 28px;
        padding: 0 26px 0 20px;
    }

    .site-avatar {
        width: 70px;
        height: 70px;
    }

    .site-nav {
        gap: 28px;
    }

    .site-nav a {
        font-size: 18px;
    }

    .hero-section {
        min-height: calc(100vh - 106px);
    }

    .hero-eyebrow {
        font-size: 14px;
        letter-spacing: 0.28em;
        margin-bottom: 28px;
    }

    .hero-name {
        margin-bottom: 26px;
    }

    .hero-title {
        font-size: clamp(42px, 9vw, 62px);
    }

    .hero-subtitle {
        font-size: 21px;
        max-width: 560px;
    }

    .hero-actions {
        margin-top: 56px;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 0 18px;
    }

    .site-nav {
        gap: 18px;
    }

    .site-nav a {
        font-size: 16px;
    }

    .site-avatar {
        width: 62px;
        height: 62px;
    }

    .hero-title {
        font-size: clamp(38px, 11vw, 52px);
    }

    .hero-subtitle {
        font-size: 19px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }

    .hero-button {
        width: min(100%, 280px);
        height: 64px;
        font-size: 20px;
    }
}