@font-face {
    font-family: 'HelveticaNeueBoldExt';
    src: url('../fonts/Helvetica Neue LT Std 73 Bold Extended/Helvetica Neue LT Std 73 Bold Extended/Helvetica Neue LT Std 73 Bold Extended.otf') format('opentype');
    font-weight: bold;
}

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

:root {
    --red: #e0201f;
    --dark: #1a1a1a;
}

body {
    font-family: 'HelveticaNeueBoldExt', -apple-system, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ── Header ── */
.header {
    padding: 52px 24px 0px;
    text-align: center;
}

.header-logo {
    height: 150px;
    width: auto;
}

/* ── Main ── */
.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(19%) sepia(95%) saturate(5433%) hue-rotate(354deg) brightness(91%) contrast(101%);
}

.status-badge-wrapper {
    filter: drop-shadow(0 6px 14px rgba(224, 32, 31, 0.28));
    transform: rotate(-0.5deg);
    margin-bottom: 24px;
}

.status-badge {
    background: var(--red);
    color: #ffffff;
    padding: 20px 40px;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,12 L5,11 L10,13 L18,10 L25,12 L35,11 L42,14 L50,11 L65,12 L75,10 L82,13 L95,11 L110,12 L125,10 L138,14 L150,11 L165,13 L180,10 L195,12 L210,11 L225,14 L240,11 L255,12 L270,10 L285,13 L305,11 L320,12 L335,10 L350,14 L365,11 L385,13 L400,11 L398,72 L385,71 L370,74 L355,70 L340,73 L325,71 L310,74 L290,70 L275,73 L260,71 L245,74 L230,70 L215,73 L195,71 L180,75 L165,71 L150,74 L135,70 L120,73 L105,71 L90,75 L75,71 L60,74 L45,70 L30,73 L15,71 L5,74 L0,70 Z' fill='black'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,12 L5,11 L10,13 L18,10 L25,12 L35,11 L42,14 L50,11 L65,12 L75,10 L82,13 L95,11 L110,12 L125,10 L138,14 L150,11 L165,13 L180,10 L195,12 L210,11 L225,14 L240,11 L255,12 L270,10 L285,13 L305,11 L320,12 L335,10 L350,14 L365,11 L385,13 L400,11 L398,72 L385,71 L370,74 L355,70 L340,73 L325,71 L310,74 L290,70 L275,73 L260,71 L245,74 L230,70 L215,73 L195,71 L180,75 L165,71 L150,74 L135,70 L120,73 L105,71 L90,75 L75,71 L60,74 L45,70 L30,73 L15,71 L5,74 L0,70 Z' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

.tagline {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 48px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── Social Icons ── */
.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 20px;
    border-top: 2px solid #f0f0f0;
}

.social-icon {
    width: 32px;
    height: 32px;
}

.social-icon:first-child {
    width: 36px;
    height: 36px;
    align-self: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}

/* ── Footer ── */
.footer {
    background-color: var(--red);
    background-image: url('../patterns/Pattern 1.svg');
    background-size: 1000px auto;
    background-repeat: repeat;
    min-height: 200px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .header-logo { height: 100px; }
    .header { padding: 28px 24px 8px; }
    .logo { width: 90px; height: 90px; }
    .main { padding: 16px 24px; align-items: flex-start; justify-content: flex-start; }
    .status-badge { font-size: 0.75rem; padding: 16px 24px; }
    .footer { min-height: 130px; background-size: 500px auto; }
}
