css
/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f7f7f5;
    color: #171717;
    -webkit-font-smoothing: antialiased;
}


/* =========================================
   PAGE
========================================= */

.page {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 30px;
}

.content {
    width: 100%;
    max-width: 920px;
}


/* =========================================
   HEADER
========================================= */

.header {
    display: flex;
    align-items: center;
    padding-top: 42px;
}

.logo {
    color: #111;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.logo span {
    font-weight: 400;
    color: #777;
}


/* =========================================
   ANNOUNCEMENT
========================================= */

.announcement {
    padding-top: 150px;
    padding-bottom: 100px;
}


/* =========================================
   BADGE
========================================= */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    border: 1px solid #dededb;
    border-radius: 100px;

    background: rgba(255, 255, 255, 0.65);

    color: #777;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.badge-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #999;
}


/* =========================================
   HEADING
========================================= */

h1 {
    margin-top: 30px;

    font-size: clamp(48px, 7vw, 86px);
    line-height: 0.98;

    font-weight: 600;
    letter-spacing: -0.065em;
}

h1 span {
    color: #888;
}


/* =========================================
   DIVIDER
========================================= */

.divider {
    width: 100%;
    height: 1px;

    margin: 65px 0 48px;

    background: #dededb;
}


/* =========================================
   TEXT
========================================= */

.text {
    max-width: 720px;
}

.text p {
    margin-bottom: 28px;

    color: #4d4d4d;

    font-size: 17px;
    line-height: 1.85;

    font-weight: 400;
}

.text p strong {
    color: #222;
    font-weight: 600;
}

.text .highlight {
    margin-top: 48px;
    margin-bottom: 48px;

    color: #171717;

    font-size: 20px;
    line-height: 1.6;

    font-weight: 600;
    letter-spacing: -0.02em;
}


/* =========================================
   SIGNATURE
========================================= */

.signature {
    margin-top: 65px;
}

.signature-line {
    width: 42px;
    height: 2px;

    margin-bottom: 22px;

    background: #171717;
}

.name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.role {
    margin-top: 5px;

    font-size: 13px;
    font-weight: 400;
    color: #888;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 28px 0 35px;

    border-top: 1px solid #dededb;

    color: #999;

    font-size: 11px;
    letter-spacing: 0.01em;
}

.footer-dot {
    width: 3px;
    height: 3px;

    border-radius: 50%;
    background: #aaa;
}


/* =========================================
   HOVER / INTERACTIONS
========================================= */

.logo {
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.6;
}


/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 768px) {

    .page {
        padding: 0 24px;
    }

    .header {
        padding-top: 30px;
    }

    .announcement {
        padding-top: 105px;
        padding-bottom: 75px;
    }

    h1 {
        font-size: clamp(44px, 11vw, 68px);
    }

    .divider {
        margin-top: 50px;
        margin-bottom: 38px;
    }

    .text p {
        font-size: 16px;
        line-height: 1.8;
    }

}


/* =========================================
   RESPONSIVE — MOBILE
========================================= */

@media (max-width: 480px) {

    .page {
        padding: 0 20px;
    }

    .header {
        padding-top: 24px;
    }

    .logo {
        font-size: 20px;
    }

    .announcement {
        padding-top: 85px;
        padding-bottom: 55px;
    }

    .badge {
        font-size: 11px;
        padding: 7px 11px;
    }

    h1 {
        margin-top: 24px;

        font-size: 45px;
        line-height: 1;
        letter-spacing: -0.06em;
    }

    .divider {
        margin: 42px 0 32px;
    }

    .text p {
        margin-bottom: 23px;

        font-size: 15px;
        line-height: 1.78;
    }

    .text .highlight {
        margin-top: 38px;
        margin-bottom: 38px;

        font-size: 18px;
    }

    .signature {
        margin-top: 48px;
    }

    .footer {
        flex-wrap: wrap;
        gap: 8px;
        line-height: 1.5;
    }

    .footer-dot {
        display: none;
    }

}
