* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", Arial, sans-serif;
}

body {
    background: #0f0f0f;
    color: white;
    overflow: hidden;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f0f0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
}

#percent {
    font-size: 35px;
    font-weight: bold;
}

.progress-bar {
    width: 340px;
    height: 14px;
    background: #242424;
    border-radius: 20px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: white;
    border-radius: 20px;
    transition: width 0.1s linear;
}

#content {
    display: none;
    animation: fadeIn 1s ease forwards;
    background: #0f0f11;
    color: white;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero {
    width: 100%;
    height: 100%;
    background: #17191c;
    text-align: center;
    padding-top: 150px;
    transition: transform 1s ease, width 1s ease;
    position: absolute;
}

.hero .iam {
    font-size: 12px;
    letter-spacing: 4px;
    color: #999;
}

.hero h1 {
    font-size: 140px;
    letter-spacing: 8px;
    font-weight: 700;
}

.hero .role {
    margin-top: 10px;
    color: #aaa;
    font-size: 14px;
    letter-spacing: 3px;
    line-height: 20px;
}

#exploreBtn {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 40px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    letter-spacing: 3px;
    font-size: 14px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

#exploreBtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transition: 0.4s;
}

#exploreBtn:hover {
    color: #000;
}
#exploreBtn:hover::before {
    left: 0;
}

#text {
    position: fixed;
    bottom: 40px;
    right: 60px;
    writing-mode: vertical-rl;
    letter-spacing: 4px;
    font-size: 12px;
    color: #888;
}

#sidebar {
    width: 300px;
    height: 560px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 10;
    backdrop-filter: blur(28px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 50%;
    left: -35%;
    transform: translateY(-50%);
    padding: 34px 32px 30px;
    transition: left 1s ease, opacity 1s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#sidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at 20% 20%,
            rgba(255, 255, 255, 0.18),
            transparent 60%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(255, 255, 255, 0.12) 0%,
            transparent 65%
        );
    pointer-events: none;
    opacity: 0.5;
}

.logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2b2b2e, #18181a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    flex: 0 0 auto;
}

.info {
    margin-top: 26px;
}

#sidebar .name {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#sidebar .roles {
    color: #c9c9c9;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 18px;
    font-weight: 500;
}

.sidebar-art {
    margin-top: 18px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(179, 212, 255, 0.05) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 10px 12px 6px;
    position: relative;
    overflow: hidden;
}

.sidebar-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 85% 20%,
        rgba(255, 255, 255, 0.18),
        transparent 70%
    );
    pointer-events: none;
    mix-blend-mode: screen;
}
.sidebar-art .art {
    width: 100%;
    height: 120px;
    display: block;
}

.socials {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 34px;
}

.socials li {
    list-style: none;
}

.socials .social-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    transition: transform 0.25s ease, background 0.25s ease,
        border-color 0.25s ease, color 0.2s ease;
}

.socials .social-btn .icon-svg {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    transition: transform 0.8s cubic-bezier(0.22, 0.65, 0.25, 1);
}

.socials .social-btn:hover {
    transform: translateY(-2px);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: inherit;
}

.socials li:nth-child(1) .social-btn:hover {
    background: #1877f2;
    color: #ffffff;
}

.socials li:nth-child(2) .social-btn:hover {
    background: #1da1f2;
    color: #ffffff;
}

.socials li:nth-child(3) .social-btn:hover {
    background: #0a66c2;
    color: #ffffff;
}

.socials li:nth-child(4) .social-btn:hover {
    background: #24292e;
    color: #ffffff;
}
.cta-btn {
    margin-top: auto;
    padding: 16px 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        #ffffff 50%,
        #ffffff 100%
    );
    background-size: 220% 100%;
    background-position: 0% 0%;
    color: #f2f2f2;
    font-weight: 600;
    letter-spacing: 1.4px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
    transition: background-position 0.55s ease, color 0.55s ease,
        box-shadow 0.55s ease;
}

.cta-btn:hover {
    background-position: 100% 0%;
    color: #000;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55),
        0 0 20px rgba(255, 255, 255, 0.35);
}

.open .hero {
    transform: translateX(-200%);
    width: 30%;
}

.open #sidebar {
    left: 40px;
    opacity: 1;
}
.open .mainContent {
    left: 360px;
    opacity: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    transition: opacity 600ms cubic-bezier(0.2, 0.65, 0.25, 1),
        transform 600ms cubic-bezier(0.2, 0.65, 0.25, 1);
    will-change: opacity, transform;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mainContent {
    position: absolute;
    top: 0;
    left: 100%;
    width: calc(100% - 360px);
    height: 100vh;
    background: linear-gradient(180deg, #0f0f11 0%, #0e0f10 100%);
    padding: 24px 48px 48px;
    overflow-y: auto;
    scroll-behavior: smooth;
    transition: left 1s ease, opacity 1s ease, box-shadow 0.4s ease;
    opacity: 0;
}

.topbar {
    position: sticky;
    top: 12px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 56px;
    padding: 0 4px;
    border-radius: 16px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    background: transparent;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    font-size: 13px;
    letter-spacing: 0.3px;
    color: #e2e2e2;
    text-decoration: none;
    border-radius: 28px;
    background: transparent;
    backdrop-filter: blur(14px) saturate(160%);
    border: none;
    box-shadow: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
    color: #fff;
    background: transparent;
    transform: translateY(-2px);
    box-shadow: none;
}

.nav-link.active {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

.talk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    border-radius: 28px;
    color: #eaeaea;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.25s ease,
        box-shadow 0.3s ease;
    backdrop-filter: blur(8px) saturate(140%);
}

.talk-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;

    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(214, 230, 255, 1) 40%,
        rgba(255, 255, 255, 1) 100%
    );

    transform: translateY(100%);
    transition: transform 0.45s ease;
}

.talk-btn .description {
    position: relative;
    z-index: 1;
}

.talk-btn:hover {
    transform: translateY(-2px);
    color: #0f0f0f;
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 26px rgba(180, 200, 255, 0.3);
}

.talk-btn:hover::before {
    transform: translateY(0%);
}

.talk-btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 16px rgba(180, 200, 255, 0.25);
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 48px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.container {
    width: min(100%, 980px);
    margin: 0 auto;
}

.muted {
    color: #b7b7b7;
    line-height: 1.7;
    margin-top: 12px;
}

.home-hero {
    margin-top: 28px;
}

.home-title {
    font-size: clamp(36px, 6.5vw, 64px);
    line-height: 1.1;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.home-title .accent {
    background: linear-gradient(90deg, #ffffff 0%, #b3d4ff 100%);
    background-clip: text;
    color: transparent;
}

.home-title .subtitle {
    font-weight: 600;
    color: #dcdcdc;
}

.home-actions {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 18px;
    font-size: 14px;
    letter-spacing: 0.3px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.3s ease, color 0.3s ease,
        background-position 0.5s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #141414;
    background: linear-gradient(90deg, #ffffff 0%, #cfe4ff 50%, #ffffff 100%);
    background-size: 180% 100%;
    background-position: 0% 0%;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 22px rgba(180, 200, 255, 0.22);
}
.btn-primary:hover {
    background-position: 100% 0%;
    box-shadow: 0 12px 32px rgba(180, 200, 255, 0.3);
}

.btn-ghost {
    color: #f0f0f0;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
}
.btn-ghost::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: -1;
}
.btn-ghost:hover {
    color: #111;
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.18);
}
.btn-ghost:hover::before {
    opacity: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: saturate(160%) blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.12);
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    color: #bdbdbd;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b3d4ff;
    display: inline-block;
}

.title {
    margin-top: 10px;
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.15;
    letter-spacing: 0.3px;
    font-weight: 700;
    color: #eaeaea;
}

.title span {
    background: linear-gradient(90deg, #ffffff 0%, #b3d4ff 100%);
    background-clip: text;
    color: transparent;
}

.projects-grid {
    margin-top: 72px;
    display: grid;
    gap: 34px;
    grid-template-columns: repeat(4, 1fr);
}

.project-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(108%) brightness(0.86);
    transition: transform 0.9s ease, filter 0.9s ease;
}

.project-wrapper:hover .project-img {
    transform: scale(1.06);
    filter: saturate(115%) brightness(0.92);
}

.project-wrapper {
    perspective: 1200px;
    position: relative;
}

.project-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1.1s cubic-bezier(0.22, 0.65, 0.25, 1);
    border-radius: 24px;
}

.project-wrapper:hover .project-card {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 18px 18px 22px;
    border-radius: 24px;
    backface-visibility: hidden;
    overflow: hidden;
    background: linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(179, 212, 255, 0.06) 45%,
            rgba(255, 255, 255, 0.02) 100%
        ),
        radial-gradient(
            circle at 28% 22%,
            rgba(255, 255, 255, 0.28) 0%,
            transparent 62%
        );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 26px -6px rgba(0, 0, 0, 0.55),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.18);
}

.card-face.front {
    align-items: flex-start;
    justify-content: flex-end;
}

.card-face.back {
    transform: rotateY(180deg);
    justify-content: center;
    background: linear-gradient(140deg, #141416 0%, #0f1012 60%, #18191c 100%);
}

.project-title {
    font-size: 14px;
    letter-spacing: 0.4px;
}

.project-heading {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin: 0 0 12px;
}

.project-desc {
    font-size: 12px;
    line-height: 1.55;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 10px 18px;
    font-size: 12px;
    letter-spacing: 0.6px;
    font-weight: 600;
    text-decoration: none;
    color: #111;
    background: linear-gradient(90deg, #ffffff 0%, #d9eaff 50%, #ffffff 100%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(170, 190, 255, 0.25);
    transition: transform 0.25s ease, box-shadow 0.4s ease;
}

.project-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(170, 190, 255, 0.35);
    outline: none;
}

.about-stats {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    height: 120px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-value {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #ffffff 0%, #b3d4ff 100%);
    background-clip: text;
    color: transparent;
}
.stat-label {
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: 1.2px;
    color: #cfcfcf;
}

.about-grid {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 34px;
    align-items: start;
}
.about-bio .muted {
    margin: 0;
}
.about-actions {
    margin-top: 16px;
}

.about-details {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 18px;
}

.kv {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    row-gap: 10px;
}
.kv dt {
    color: #bdbdbd;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}
.kv dd {
    margin: 0;
    color: #f0f0f0;
    font-weight: 600;
}
.kv a {
    color: #dfeaff;
    text-decoration: none;
}
.kv a:hover {
    text-decoration: underline;
}

.btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    color: #4a2d38;
    background: linear-gradient(90deg, #ffdfe9 0%, #ffcfe3 45%, #ffbedd 100%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 6px 18px rgba(255, 170, 195, 0.28);
    text-decoration: none;
    transition: background-position 0.5s ease, transform 0.18s ease,
        box-shadow 0.35s ease, border-color 0.35s ease;
    background-size: 180% 100%;
    background-position: 0% 0%;
}
.btn-soft:hover {
    transform: translateY(-2px);
    background-position: 100% 0%;
    box-shadow: 0 12px 26px rgba(255, 160, 190, 0.35);
    border-color: rgba(255, 160, 190, 0.85);
}

.resume-card .title {
    margin-bottom: 6px;
}
.resume-intro {
    margin-top: 8px;
}

.resume-subtitle {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 22px;
    letter-spacing: 0.3px;
}

.timeline {
    list-style: none;
    display: grid;
    gap: 12px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 18px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.12);
}

.t-years {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #bdbdbd;
}

.t-role {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.t-org {
    margin-top: 4px;
    font-size: 12px;
    color: #cfcfcf;
}
.t-desc {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #dcdcdc;
}

.tools-grid {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-top: 4px;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    padding: 0;
}

.tool-card {
    position: relative;
    padding: 24px 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 140px;
    box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease,
        background 0.35s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55),
        inset 0 0 0 0.5px rgba(255, 255, 255, 0.18);
}

.tool-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
    pointer-events: none;
    user-select: none;
}

.tool-name {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #dcdcdc;
}

.contact-card .about-title {
    margin-top: 10px;
    margin-bottom: 24px;
    line-height: 1.12;
}
.contact-card .about-title .accent {
    background: linear-gradient(90deg, #ffffff 0%, #b3d4ff 100%);
    background-clip: text;
    color: transparent;
}

.contact-form {
    margin-top: 20px;
}

.contact-form .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 26px;
}

.field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 12px;
    letter-spacing: 0.9px;
    color: #b8b8b8;
}

.field .req {
    margin-left: 6px;
    background: linear-gradient(90deg, #ffffff 0%, #b3d4ff 100%);
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.field input,
.field textarea {
    width: 100%;
    padding: 10px 0 12px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    outline: none;
    font-size: 14px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff 0%, #b3d4ff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.field:focus-within::after {
    transform: scaleX(1);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9c9c9c;
}

.contact-form .span-2 {
    grid-column: span 2;
}

.actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 22px;
}

.btn-send {
    gap: 10px;
    height: 46px;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.btn-send::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(214, 230, 255, 0.9) 40%,
        rgba(255, 255, 255, 0.85) 80%
    );
    transform: translateX(-120%) skewX(-18deg);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.22, 0.65, 0.25, 1),
        opacity 0.4s ease;
    pointer-events: none;
}
.btn-send::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 20% 50%,
        rgba(255, 255, 255, 0.35) 0%,
        transparent 65%
    );
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}
.btn-send:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(180, 200, 255, 0.34);
}
.btn-send:hover::before {
    transform: translateX(110%) skewX(-18deg);
    opacity: 1;
}
.btn-send:hover::after {
    opacity: 1;
    transform: scale(1);
}
.btn-send:active {
    transform: translateY(0);
    box-shadow: 0 8px 22px rgba(180, 200, 255, 0.28);
}

.btn-send:hover i {
    transform: translateX(3px);
    transition: transform 0.4s cubic-bezier(0.22, 0.65, 0.25, 1);
}
