/* ===== INDEX PAGE STYLES ===== */

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--background);
}

#video-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 1;
}

.scene-bracket {
  position: absolute;
  width: 48px;
  height: 48px;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 0.7s ease 0.4s forwards;
  pointer-events: none;
}

.scene-bracket.top-left {
  top: 20vh;
  left: 15vw;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.scene-bracket.top-right {
  top: 20vh;
  right: 15vw;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.scene-bracket.bottom-left {
  bottom: 20vh;
  left: 15vw;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.scene-bracket.bottom-right {
  bottom: 20vh;
  right: 15vw;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Center Content */
.center-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 40;
  pointer-events: none;
}

.role-label-hero {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.55em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.name-heading {
  font-family: var(--font-heading);
  font-size: clamp(52px, 11vw, 148px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--foreground);
  text-align: center;
  line-height: 0.9;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.76, 0, 0.24, 1) 0.2s forwards;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.name-line {
  display: block;
}

.name-first {
  font-weight: 300;
  letter-spacing: 0.25em;
  font-size: clamp(18px, 3.5vw, 50px);
  color: rgba(255, 255, 255, 0.5);
}

.name-last {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-hint {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
  z-index: 100;
}

@media (max-width: 600px) {
  .hero-hint {
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    letter-spacing: 0.4em;
    border-bottom: none;
    text-align: center;
    width: 80%;
    top: 18vh;
  }
}

@media (max-width: 960px) and (orientation: landscape) {
  .hero-hint {
    top: 20vh !important;
    font-size: 9px !important;
  }

  .center-content {
    margin-top: 20px;
  }
}

/* Scroll Arrow */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
  cursor: pointer;
  pointer-events: auto;
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* Vertical Timeline (bottom-to-top) */
.video-timeline-wrapper {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 35vh;
  display: flex;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.video-timeline-wrapper.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-timeline {
  width: 2px;
  height: 100%;
  background: rgba(128, 128, 128, 0.2);
  border-radius: 2px;
  transition: width 0.2s;
  position: relative;
}

.video-timeline-wrapper:hover .video-timeline {
  width: 3px;
}

.video-timeline-progress {
  width: 100%;
  height: 0%;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: height 0.1s linear;
}

/* Timeline markers */
.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.timeline-marker:hover {
  background: var(--foreground);
  width: 28px;
}

/* Global thumbnail preview on timeline hover */
.video-timeline-wrapper:hover .thumbnail-global {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.thumbnail,
.thumbnail-global {
  position: absolute;
  top: 50%;
  left: calc(100% + 16px);
  transform: translateY(-50%) translateX(10px);
  background: var(--background);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--foreground);
  white-space: nowrap;
  border-radius: 4px;
}

.thumbnail img,
.thumbnail-global img {
  width: 120px;
  height: 68px;
  object-fit: cover;
  border-radius: 2px;
}

/* Cursor follower */
#cursor-text-follower {
  position: fixed;
  pointer-events: none;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.15em;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 100;
  transform: translate(-50%, -150%);
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

/* Mute Button */
.mute-btn {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 50;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  opacity: 1;
  transition: opacity 0.5s ease, background 0.3s, color 0.3s, border-color 0.3s;
}

.mute-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.mute-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--foreground);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Play/Pause Overlay */
.play-pause-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(0.8);
}

#video-background:fullscreen.show-controls .play-pause-overlay,
#video-background:-webkit-full-screen.show-controls .play-pause-overlay,
.play-pause-overlay.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.play-pause-icon-circle {
  background: rgba(0, 0, 0, 0.5);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.play-pause-icon-circle svg {
  width: 36px;
  height: 36px;
}

/* Reset brightness in Fullscreen */
#video-background:fullscreen video,
#video-background:-webkit-full-screen video {
  opacity: 1 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

#video-background:fullscreen .vignette,
#video-background:-webkit-full-screen .vignette {
  display: none !important;
}

/* ===== FULLSCREEN PLAYER ===== */
.fs-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 24px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1000;
  pointer-events: none;
}

#video-background:fullscreen .fs-controls,
#video-background:-webkit-full-screen .fs-controls {
  pointer-events: auto;
}

#video-background:fullscreen.show-controls .fs-controls,
#video-background:-webkit-full-screen.show-controls .fs-controls {
  opacity: 1;
}

.fs-btn {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: background 0.2s;
  flex-shrink: 0;
}

.fs-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Progress bar — YouTube Style */
.fs-progress-wrapper {
  flex: 1;
  height: 28px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.fs-progress-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 5px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0;
  transition: height 0.1s;
}

.fs-progress-wrapper:hover::before {
  height: 7px;
}

.fs-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 5px;
  transform: translateY(-50%);
  background: #f00;
  border-radius: 0;
  width: 0%;
  pointer-events: none;
  transition: height 0.1s;
  z-index: 2;
}

.fs-progress-wrapper:hover .fs-progress-bar {
  height: 7px;
}

.fs-progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f00;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.1s, transform 0.1s;
  left: 0%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.fs-progress-wrapper:hover .fs-progress-thumb {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.fs-marker {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 14px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.6);
  z-index: 10;
  transition: background 0.2s, width 0.2s;
  cursor: pointer;
}

.fs-marker:hover {
  background: #fff;
  width: 4px;
}

.fs-marker .fs-thumb {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(14, 14, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 8px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--foreground);
  white-space: nowrap;
  z-index: 20;
}

.fs-marker:hover .fs-thumb {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.fs-thumb img {
  width: 140px;
  height: 79px;
  object-fit: cover;
  border-radius: 3px;
}

.fs-time-display {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  white-space: nowrap;
  min-width: 90px;
  text-align: center;
}

#video-background.cursor-hidden {
  cursor: none !important;
}

.fs-volume {
  width: 64px;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.fs-volume-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  width: 0%;
  border-radius: 0;
  pointer-events: none;
}

/* Resolution Selector */
.res-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.res-btn {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: background 0.2s;
}

.res-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.res-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: rgba(14, 14, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 6px 0;
  min-width: 90px;
  display: none;
  flex-direction: column;
}

.res-menu.open {
  display: flex;
}

.res-option {
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  border: none;
  text-align: left;
}

.res-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--foreground);
}

.res-option.active {
  color: var(--foreground);
  font-weight: 600;
}

/* ===== BELOW-FOLD CONTENT SECTIONS ===== */
.index-content {
  position: relative;
  z-index: 10;
  background: var(--background);
}

.index-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.index-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.index-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 12px;
}

.index-section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  line-height: 1.1;
}

.index-section-divider {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 32px;
}

/* Projects Overview Grid */
.projects-overview-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.project-overview-card {
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s;
}

.project-overview-card:hover {
  transform: translateY(-4px);
}

.project-card-inner {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s;
}

.project-overview-card:hover .project-card-inner {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.project-overview-img {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.project-overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-overview-card:hover .project-overview-img img {
  transform: scale(1.05);
}

.project-overview-body {
  padding: 14px 18px;
}

.project-overview-body h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.project-overview-body p {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4px;
  transition: all 0.3s;
}

.view-all-link:hover {
  color: var(--foreground);
  border-color: var(--foreground);
}

/* Tools Overview */
.tools-overview-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tool-overview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
}

.tool-overview-row:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.tool-overview-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tool-overview-info h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tool-overview-info p {
  font-size: 13px;
  color: var(--muted-foreground);
}

.tool-overview-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
}

/* About Quick */
.about-quick-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start !important;
}

.about-quick-text {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 15px;
  color: var(--muted-foreground);
  line-height: 2;
}

.about-quick-text strong {
  color: var(--foreground);
  font-weight: 500;
}

.about-quick-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-quick-skill {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 7px 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.about-quick-skill:hover {
  background: rgba(26, 110, 110, 0.12);
  border-color: rgba(26, 110, 110, 0.25);
  color: var(--foreground);
}

/* Get in Touch */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start !important;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 0;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted-foreground);
}

.contact-info-item svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-item a:hover {
  color: var(--foreground);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--foreground);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.6);
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  background: var(--foreground);
  color: var(--background);
  border: none;
  padding: 14px;
  font-family: var(--font-heading);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.contact-form button:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-hint {
    display: none !important;
  }

  .video-timeline-wrapper {
    display: none !important;
  }

  .index-section {
    padding: 60px 24px;
  }

  .index-section-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .about-quick-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .projects-overview-grid {
    display: flex;
    margin: -5px;
  }

  .project-overview-card {
    width: 50% !important;
    padding: 5px;
  }

  .name-first {
    font-size: clamp(14px, 5vw, 26px);
  }

  .name-heading {
    font-size: clamp(44px, 16vw, 100px);
  }

  .scene-bracket {
    display: none;
  }

  .video-timeline-wrapper {
    left: 12px;
    height: 28vh;
    width: 32px;
  }

  .mute-btn {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }

  /* Fullscreen player on mobile */
  .fs-controls {
    padding: 12px 16px 20px;
    gap: 10px;
  }

  .fs-time-display {
    display: none;
  }

  .fs-volume {
    width: 44px;
  }
}

@media (max-width: 480px) {
  .name-heading {
    font-size: clamp(38px, 18vw, 80px);
  }

  .hero-hint {
    display: none;
  }

  .scroll-indicator {
    bottom: 16px;
  }

  .index-section {
    padding: 48px 20px;
  }
}

@keyframes floatLight1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(100px, 50px);
  }
}

@keyframes floatLight2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-80px, -60px);
  }
}