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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #07070a;
  color: #f0f0f0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#bg-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(7,7,10,0.3) 0%, rgba(7,7,10,0.92) 100%);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 40px 24px;
  text-align: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  animation: fadeIn 0.8s ease;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 8px;
  color: #07070a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #ffffff;
}

.title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -1px;
  animation: fadeIn 0.8s ease 0.2s both;
}

/* Highlighted Text */
.highlight-wrap {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  vertical-align: baseline;
  padding: 0 2px;
}

.highlight-slide {
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: 0;
  transform: translateX(-101%);
}

.highlight-slide.from-left {
  transform: translateX(-101%);
}

.highlight-slide.visible {
  transform: translateX(0%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-text {
  position: relative;
  z-index: 1;
  mix-blend-mode: difference;
  color: #ffffff;
  padding: 0 2px;
}

.description {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeIn 0.8s ease 0.4s both;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease 0.6s both;
}

.contact-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-1px);
}

.contact-btn svg {
  transition: transform 0.3s ease;
}

.contact-btn:hover svg {
  transform: translateX(3px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .content {
    padding: 32px 20px;
  }

  .description {
    font-size: 15px;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }
}
