* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0f;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* Custom Cursor */
.cursor-dot {
  position: fixed;
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    border-color 0.2s;
  mix-blend-mode: difference;
}

.cursor-dot.hover {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.7);
}

.cursor-inner-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

/* Nav - Sticky with Glass-morphism */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(10, 10, 15, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  transition: opacity 0.2s;
}

.nav-links li a:hover {
  opacity: 0.7;
}

.nav-links .dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: none;
}

.nav-links .dropdown svg {
  width: 12px;
  height: 12px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0a0a0f;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: none;
  transition: all 0.2s;
}

.contact-btn:hover {
  background: #e0e0e0;
}

.contact-btn .arrow-circle {
  width: 28px;
  height: 28px;
  background: #0a0a0f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-btn .arrow-circle svg {
  width: 14px;
  height: 14px;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 80px 48px 80px;
  position: relative;
  min-height: calc(100vh - 76px);
}

/* cover image */
.cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Gradient glow */
.glow {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(88, 80, 236, 0.45) 0%,
    rgba(88, 80, 236, 0.15) 30%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.glow-secondary {
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(60, 60, 180, 0.2) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
  margin-top: 50px;
  letter-spacing: 0;
  text-align: left;
}

.hero-heading {
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 40px;
  text-align: left;
}

.hero-heading .italic-word {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

.hero-heading .product-word {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(135deg, #c8ffcf 0%, #8effa6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pill with hover effects */
.pill-wrapper {
  display: inline-block;
  position: relative;
  margin: 0 2px;
  cursor: none;
}

.pill {
  display: inline;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 70px;
  border: 1px solid rgba(255, 255, 255, 0.233);
  backdrop-filter: blur(5px);
  padding: 0px 20px;
  transition: all 0.35s ease;
  transform: rotate(0deg);
}

.pill:hover {
  scale: 1.2;
  rotate: 20deg;
}

.pill.comma {
  padding-right: 6px;
}

.pill-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  transition: color 0.3s ease;
}

.pill-text.plain {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 700;
}

/* Hover state - pill background + rotation */
.pill-wrapper:hover .pill {
  background: rgba(0, 255, 70, 0.12);
  box-shadow: 0 0 30px rgba(0, 255, 70, 0.08);
  transform: rotate(-2deg);
}

.pill-wrapper:hover .pill-text {
  color: #00ff46;
}

/* Floating icon badges */
.icon-badge {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 255, 70, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 70, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0, 255, 70, 0.08);
}

.icon-badge svg {
  width: 20px;
  height: 20px;
  fill: #00ff46;
}

/* Badge positions for pill 1 (brand) */
.pill-wrapper:nth-child(1) .icon-badge:nth-child(2) {
  top: -32px;
  left: 10%;
  transform: translateY(6px) scale(0.7) rotate(-8deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.02s;
}
.pill-wrapper:nth-child(1) .icon-badge:nth-child(3) {
  bottom: -28px;
  left: 30%;
  transform: translateY(6px) scale(0.7) rotate(5deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.06s;
}
.pill-wrapper:nth-child(1) .icon-badge:nth-child(4) {
  top: -18px;
  right: -5%;
  transform: translateY(6px) scale(0.7) rotate(-3deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

/* Badge positions for pill 2 (website) */
.pill-wrapper:nth-child(2) .icon-badge:nth-child(2) {
  top: -36px;
  left: 5%;
  transform: translateY(6px) scale(0.7) rotate(-6deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.02s;
}
.pill-wrapper:nth-child(2) .icon-badge:nth-child(3) {
  top: -30px;
  right: 2%;
  transform: translateY(6px) scale(0.7) rotate(4deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.06s;
}
.pill-wrapper:nth-child(2) .icon-badge:nth-child(4) {
  bottom: -30px;
  left: 25%;
  transform: translateY(6px) scale(0.7) rotate(-4deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

/* Badge positions for pill 3 (ux/ui design) */
.pill-wrapper:nth-child(3) .icon-badge:nth-child(2) {
  top: -34px;
  left: 8%;
  transform: translateY(6px) scale(0.7) rotate(-5deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.02s;
}
.pill-wrapper:nth-child(3) .icon-badge:nth-child(3) {
  top: -26px;
  right: 5%;
  transform: translateY(6px) scale(0.7) rotate(6deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.06s;
}
.pill-wrapper:nth-child(3) .icon-badge:nth-child(4) {
  bottom: -32px;
  right: 12%;
  transform: translateY(6px) scale(0.7) rotate(-3deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.pill-wrapper:hover .icon-badge {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

/* Video Widget - inline */
.video-widget {
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px 12px 4px;
  cursor: none;
  transition: transform 0.3s ease;
  position: relative;
  top: -2px;
}

.video-widget:hover {
  transform: scale(1.05);
}

.video-thumbnail {
  width: 120px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg, #7c5ce6 0%, #4a2d8f 40%, #2a1560 100%);
  box-shadow: 0 8px 32px rgba(100, 60, 200, 0.3);
}

.video-thumbnail-inner {
  width: 100%;
  height: 100%;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.thumb-row {
  display: flex;
  gap: 4px;
  width: 100%;
}

.thumb-bar {
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.thumb-bar.short {
  width: 30px;
}

.thumb-bar.medium {
  width: 50px;
}

.thumb-bar.long {
  width: 70px;
}

.thumb-bar.tiny {
  width: 20px;
}

.thumb-block {
  flex: 1;
  height: 28px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 4px;
}

.play-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 5px 14px 5px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.play-badge:hover {
  background: rgba(255, 255, 255, 0.3);
}

.play-circle {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-circle svg {
  width: 8px;
  height: 8px;
  margin-left: 2px;
}

/* Bottom info */
.bottom-info {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-top: 40px;
  text-align: left;
}

.info-block {
  max-width: 300px;
}

.info-block .code-icon {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 10px;
  font-weight: 400;
}

.info-block p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.info-block p strong {
  color: #fff;
  font-weight: 600;
}

/* Tags */
.tags {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", sans-serif;
  cursor: none;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.tag:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  scale: 1.2;
}

/* Extra content for scrolling demonstration */
.scroll-content {
  padding: 100px 48px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  nav {
    padding: 20px 24px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 40px 24px 60px;
  }
  .hero-heading {
    font-size: 38px;
    letter-spacing: -0.5px;
  }
  .pill {
    padding: 2px 12px;
  }
  .bottom-info {
    flex-direction: column;
    gap: 30px;
  }
  .video-thumbnail {
    width: 90px;
    height: 72px;
  }
  .icon-badge {
    width: 36px;
    height: 36px;
  }
  .icon-badge svg {
    width: 16px;
    height: 16px;
  }
  *,
  *::before,
  *::after {
    cursor: auto;
  }
  .cursor-dot,
  .cursor-inner-dot {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
}
.glass-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}
.glow-effect {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    rgba(76, 29, 149, 0.1) 30%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.glow-left {
  top: 20%;
  left: -200px;
  background: radial-gradient(
    circle,
    rgba(88, 28, 135, 0.6) 0%,
    rgba(30, 58, 138, 0.2) 50%,
    transparent 80%
  );
  filter: blur(80px);
}
.text-glow {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fade-in-up 0.3s ease-out forwards;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.animate-scroll {
  animation: scroll 30s linear infinite;
}
.animate-scroll:hover {
  animation-play-state: paused;
}
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
.float-slow {
  animation: float 6s ease-in-out infinite;
}
.float-medium {
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;
}
.float-fast {
  animation: float 4s ease-in-out infinite;
  animation-delay: 2s;
}
.float-widget {
  transition: transform 0.3s ease-out;
}
.float-widget:hover {
  transform: scale(1.1) !important;
  z-index: 50 !important;
}
.float-widget {
  transition: transform 0.3s ease-out;
}
.float-widget:hover {
  transform: scale(1.1) !important;
  z-index: 50 !important;
}
.arrow-icon {
  transform: rotate(315deg);
}
.bg-blue-glow {
  background: radial-gradient(
    circle at top right,
    rgba(37, 99, 235, 0.5) 0%,
    transparent 40%
  );
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4b5563;
}
.nebula-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle,
    rgba(29, 78, 216, 0.4) 0%,
    rgba(6, 182, 212, 0.15) 30%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  top: 20%;
  left: -20%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.italic-serif {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.avatar-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.serif-italic {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
}
.bg-glow {
  background: radial-gradient(
    circle at bottom left,
    rgba(29, 78, 216, 0.15),
    transparent 40%
  );
}
.experience-nebula-glow {
  background: radial-gradient(
    circle at 90% 50%,
    rgba(6, 182, 212, 0.15) 0%,
    rgba(0, 0, 0, 0) 50%
  );
}
.light-mode-glow {
  background: radial-gradient(
    circle at 90% 50%,
    rgba(6, 182, 212, 0.05) 0%,
    rgba(255, 255, 255, 0) 50%
  );
}
.accordion-content {
  transition:
    max-height 0.3s ease-out,
    opacity 0.3s ease-out;
  max-height: 2000px;
  opacity: 1;
  overflow: hidden;
}
.spline-wrapper {
  transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
  perspective: 1000px;
}
.accordion-content.collapsed {
  max-height: 0;
  opacity: 0;
}
.rotate-icon {
  transition: transform 0.3s ease;
}
.rotate-icon.collapsed {
  transform: rotate(-90deg);
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #050912;
}
::-webkit-scrollbar-thumb {
  background: #2a2e37;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #374151;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(156, 163, 175, 0.3);
  border-radius: 20px;
}
.text-gradient-white {
  background: linear-gradient(180deg, #ffffff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #d1d5db;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d1d5db;
  font-size: 0.75rem;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.bg-teal-dark {
  background-color: #0d3c40;
}
.squiggle-underline {
  position: relative;
  display: inline-block;
}
.squiggle-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='10' viewBox='0 0 100 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5C15 5 15 9 28 9C41 9 41 5 54 5C67 5 67 9 80 9C93 9 93 5 98 5' stroke='%23D1F349' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.circle-highlight {
  position: relative;
  display: inline-block;
}
.circle-highlight::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 140%;
  border: 2px solid #d1f349;
  border-radius: 50%;
  transform: rotate(-2deg);
}
.hover-gradient-blue:hover {
  background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
  color: white;
}
.hover-gradient-blue:hover .bg-white,
.hover-gradient-blue:hover .bg-gray-100 {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}
