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


:root {

    --text-xs: clamp(0.7rem, 1.5vw, 0.85rem);
    --text-sm: clamp(0.85rem, 1.8vw, 0.95rem);
    --text-base: clamp(0.95rem, 2vw, 1.1rem);
    --text-lg: clamp(1.1rem, 2.5vw, 1.3rem);
    --text-xl: clamp(1.3rem, 3vw, 1.6rem);
    --text-2xl: clamp(1.6rem, 4vw, 2.2rem);
    --text-3xl: clamp(2.2rem, 5vw, 3rem);
    
    --space-xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-sm: clamp(0.75rem, 1.5vw, 1rem);
    --space-md: clamp(1rem, 2vw, 1.5rem);
    --space-lg: clamp(1.5rem, 3vw, 2.5rem);
    --space-xl: clamp(2rem, 4vw, 3.5rem);
    --space-2xl: clamp(3rem, 6vw, 5rem);
}


body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Noto Sans Javan', sans-serif;
    font-weight: 600;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: none;
}

h2 {
    font-family: 'Abhaya Libre', serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C0C0C0, transparent);
}
p {
    font-family: 'Noto Sans Javan', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 15px;
}


@media (max-width: 600px) {
    h2 {
      font-size: 1.1rem;
    }
    p {
      font-size: 0.98rem;
      line-height: 1.5;
    }
  }

.section-title {
    font-family: 'Abhaya Libre', serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C0C0C0, transparent);
}
@media (max-width: 768px) {
  h2 { font-size: 1.3rem; }
  p  { font-size: 1rem; }

  .section-title { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  h2 { font-size: 1.1rem; }
  p  { font-size: 0.95rem; }

  .section-title { font-size: 1rem; }
}

a, button, .btn {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

a {
    color: #C0C0C0;
    text-decoration: none;
}

a:hover {
    color: #D8D8D8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.4s ease;
    padding: 0;
    background: none;
    border: none;
    backdrop-filter: none;
    clip-path: none;
}

.logo img {
    width: 250px;
    height: auto;
    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.background-scene {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}
section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.background-scene canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: #FFFFFF;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999999;
    mix-blend-mode: difference;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-cursor.hover {
    transform: scale(0);
}

.custom-cursor.click {
    transform: scale(0.8);
}

.cursor-follower {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    mix-blend-mode: difference;
    backdrop-filter: blur(5px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cursor-follower.hover {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.05);
}

.cursor-follower.click {
    transform: scale(0.7);
}

.magnetic-wrap {
    position: relative;
    display: inline-block;
    
}

.magnetic-area {
    position: relative;
    transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1001;
    --scroll-progress: 0;
}

.scroll-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #C0C0C0, #D8D8D8, #F0F0F0);
    transform: scaleX(var(--scroll-progress));
    transform-origin: 0 50%;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

@keyframes progressPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(192, 192, 192, 0.5); }
    50% { box-shadow: 0 0 20px rgba(192, 192, 192, 0.8); }
}


.conversation-section {
    padding: 160px;
    background: rgba(192, 192, 192, 0.01);
    text-align: center;
}

.conversation-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 40px;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
}

.conversation-content .section-title {
    margin-bottom: 25px;
}

.conversation-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .conversation-section {
        padding: 120px 0;
    }
    .conversation-content {
        padding: 40px 30px;
    }
    .conversation-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .conversation-section {
        padding: 80px 0;
    }
    .conversation-content {
        padding: 30px 20px;
    }
}
