*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }

body {
    background: #000;
    font-family: 'Bebas Neue', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #0047FF;
    z-index: 100;
    will-change: clip-path;
    pointer-events: none;
}

.menu__inner {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 60px 20px;
}

.menu__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex: 1;
}

.menu__links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.menu__link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 400;
    color: #fff;
    cursor: none;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.menu__link a {
    color: inherit;
    text-decoration: none;
}

.menu__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #fff;
    transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.menu__link:hover { color: rgba(255, 255, 255, 0.6); }
.menu__link:hover::after { width: 100%; }

.menu__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex: 0 0 45%;
}

.menu__video {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.menu__info {
    display: flex;
    gap: 48px;
    justify-content: flex-end;
}

.menu__info-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.menu__info-col span,
.menu__info-col a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #fff;
    text-decoration: none;
    line-height: 1.8;
}

.menu__info-col a:hover { opacity: 0.5; }

.menu__bottom { width: 100%; }

.menu__holm {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(100px, 20vw, 260px);
    font-weight: 900;
    color: #fff;
    line-height: 0.85;
    letter-spacing: -0.02em;
    width: 100%;
}

.about-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
}

.about-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    color: #fff;
    text-decoration: none;
}

.about-logo:hover { opacity: 0.6; }

.about-nav__right {
    display: flex;
    align-items: center;
}

.slider__cart {
    background: transparent;
    border: none;
    color: #fff;
    cursor: none;
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -6px; right: -6px;
    background: #0047FF;
    color: #fff;
    font-size: 0.7rem;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.cart-count.visible { opacity: 1; }

.menu-btn {
    background: white;
    color: black;
    border: none;
    padding: 14px 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    cursor: none;
    z-index: 999;
}

.menu-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #000;
    border-radius: 50px;
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: -1;
}

.menu-btn:hover { color: #fff; }
.menu-btn:hover::before { transform: scaleY(1); }

.about-main {
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 120px 80px 80px;
    gap: 40px;
}

.about-notice {
    opacity: 0;
}

.about-notice p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #fff;
    line-height: 1.8;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    opacity: 0;
}

.about-name {
    font-size: clamp(5rem, 10vw, 13rem);
    color: #fff;
    line-height: 0.85;
    letter-spacing: 0.02em;
}

.about-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1.8;
}

.about-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    opacity: 0;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    width: 100%;
    border-radius: 100px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.2s ease;
    position: relative;
    overflow: hidden;
}

.about-pill--white {
    background: #fff;
    color: #000;
    transition: color 0.4s ease;
}

.about-pill--white::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0047FF;
    border-radius: 100px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 0;
}

.about-pill--white:hover {
    color: #fff;
}

.about-pill--white:hover::before {
    transform: scaleX(1);
}

.about-pill--white span {
    position: relative;
    z-index: 1;
}

.about-pill--blue {
    background: #0047FF;
    color: #fff;
    transition: color 0.4s ease;
}

.about-pill--blue::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 100px;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 0;
}

.about-pill--blue:hover {
    color: #0047FF;
}

.about-pill--blue:hover::before {
    transform: scaleX(1);
}

.about-pill--blue span {
    position: relative;
    z-index: 1;
}

.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

* { cursor: none; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (769px – 1024px)
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    * { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }

    .about-nav  { padding: 20px 40px; }
    .menu-btn   { padding: 12px 24px; font-size: 1.1rem; }

    .about-main  { padding: 100px 60px 60px; gap: 32px; }
    .about-split { gap: 40px; }
    .about-name  { font-size: clamp(4rem, 8vw, 10rem); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    * { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }

    /* ── Navbar ─────────────────────────────────── */
    .about-nav { padding: 16px 20px; }
    .menu-btn  { padding: 10px 16px; font-size: 1rem; }

    /* ── About main ─────────────────────────────── */
    .about-main {
        height: auto;
        min-height: 100vh;
        padding: 100px 24px 60px;
        gap: 32px;
    }

    /* ── Name + text — stack vertically ─────────── */
    .about-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-name { font-size: clamp(3rem, 14vw, 5rem); }
    .about-text { font-size: 1rem; line-height: 1.6; }

    /* ── Buttons — stack vertically ─────────────── */
    .about-links {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .about-pill { font-size: 1.4rem; padding: 20px; }

    /* ── Notice text ─────────────────────────────── */
    .about-notice p { font-size: 0.85rem; line-height: 1.7; }

    /* ── Menu — identical to homepage ───────────── */
    .menu__inner    { padding: 80px 24px 24px; }
    .menu__top      { flex-direction: column; gap: 24px; }
    .menu__right    { display: none; }
    .menu__link     { font-size: clamp(40px, 12vw, 60px); }
    .menu__info     { flex-direction: column; gap: 8px; justify-content: flex-start; }
    .menu__info-col { text-align: left; }
    .menu__holm     { font-size: clamp(56px, 18vw, 100px); }
}
