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

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  --glass-white: rgba(255, 255, 255, 0.1);
  --glass-black: rgba(0, 0, 0, 0.5);
  --glass-border: rgba(255, 255, 255, 0.18);

  --blur-amount: 12px;
  --border-radius: 16px;
  --transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter",
    sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  font-weight: 400;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.015) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.01) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(255, 255, 255, 0.01) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
}

.glass {
  background: var(--glass-white);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
}

.glass-dark {
  background: var(--glass-black);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  padding: 1.25rem 2rem;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #ffffff, #a3a3a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tag {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-center {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
}

.nav-link {
  color: var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.625rem 1.25rem;
  border-radius: 10px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--white);
  background: var(--glass-white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Nav Download Button */
.nav-download-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 10px;
  color: #00ff88;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.nav-download-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left 0.5s;
}

.nav-download-btn:hover::before {
  left: 100%;
}

.nav-download-btn:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 255, 136, 0.08) 100%);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

.nav-download-btn svg {
  transition: transform 0.3s;
}

.nav-download-btn:hover svg {
  transform: translateY(1px);
}

.nav-download-btn span {
  white-space: nowrap;
}

.nav-email-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--glass-white);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  position: relative;
  transition: all 0.3s ease;
}

.nav-email-form.form-success {
  border-color: rgba(0, 255, 136, 0.5);
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.05) 0%,
    rgba(0, 204, 102, 0.05) 100%
  );
}

.nav-email-form.form-error {
  border-color: rgba(255, 68, 68, 0.5);
  background: linear-gradient(
    135deg,
    rgba(255, 68, 68, 0.05) 0%,
    rgba(204, 0, 0, 0.05) 100%
  );
}

.nav-email-form input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.9rem;
  width: 180px;
  padding: 0.25rem;
}

.nav-email-form input::placeholder {
  color: var(--gray-500);
}

.nav-email-form button {
  background: var(--white);
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-email-form button:hover {
  transform: scale(1.05);
  background: var(--gray-200);
}

.nav-email-form button:disabled {
  cursor: not-allowed;
  transform: scale(1);
}

.nav-email-form button svg {
  width: 16px;
  height: 16px;
  color: var(--black);
}

/* Submit button states */
.nav-email-form button.submit-success {
  background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
  animation: successPulse 0.6s ease;
}

.nav-email-form button.submit-error {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  animation: errorShake 0.5s ease;
}

.nav-email-form button.submit-warning {
  background: linear-gradient(135deg, #ff9944 0%, #ff6600 100%);
  animation: warningBounce 0.5s ease;
}

/* Loading spinner */
.submit-spinner {
  animation: spinRotate 1s linear infinite;
}

@keyframes spinRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes successPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes errorShake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-2px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(2px);
  }
}

@keyframes warningBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-2px);
  }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at bottom, #1a1a1a 0%, #000000 100%);
}

.spline-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.spline-container spline-viewer {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at center,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Scan Line Effect */
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: scan 20s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  z-index: 2;
}

@keyframes scan {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vh);
  }
}

/* Floating UI Elements */
.floating-ui {
  position: absolute;
  z-index: 2;
  animation: float-subtle 15s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

.left-ui {
  top: 20%;
  left: -12%;
}

.right-ui {
  top: 20%;
  right: 5%;
}

.ui-card {
  padding: 1rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.ui-label {
  font-size: 0.7rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.ui-value {
  font-size: 1rem;
  color: #00ff88;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

@keyframes float-subtle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Hero Background Effects */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Circuit Pattern */
.circuit-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.015;
  background-image: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 35px,
      rgba(255, 255, 255, 0.05) 35px,
      rgba(255, 255, 255, 0.05) 70px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 35px,
      rgba(255, 255, 255, 0.05) 35px,
      rgba(255, 255, 255, 0.05) 70px
    );
  animation: circuit-flow 45s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes circuit-flow {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(35px, 35px);
  }
}

/* Data Streams */
.data-streams {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.stream {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: stream-flow 12s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

.stream:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.stream:nth-child(2) {
  left: 50%;
  animation-delay: 1s;
  animation-duration: 15s;
}

.stream:nth-child(3) {
  right: 10%;
  animation-delay: 2s;
  animation-duration: 18s;
}

@keyframes stream-flow {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

/* Hexagon Grid */
.hex-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  opacity: 0.01;
}

.hex {
  width: 200px;
  height: 200px;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  clip-path: polygon(
    30% 0%,
    70% 0%,
    100% 30%,
    100% 70%,
    70% 100%,
    30% 100%,
    0% 70%,
    0% 30%
  );
  animation: hex-rotate 60s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

.hex:nth-child(2) {
  animation-delay: -10s;
  animation-duration: 50s;
}

.hex:nth-child(3) {
  animation-delay: -20s;
  animation-duration: 70s;
}

@keyframes hex-rotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.05);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 30s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-particles span {
  position: absolute;
  display: block;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: float-up 30s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
}

.floating-particles span:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}
.floating-particles span:nth-child(2) {
  left: 20%;
  animation-delay: 2s;
  animation-duration: 30s;
}
.floating-particles span:nth-child(3) {
  left: 30%;
  animation-delay: 4s;
  animation-duration: 28s;
}
.floating-particles span:nth-child(4) {
  left: 40%;
  animation-delay: 0s;
  animation-duration: 35s;
}
.floating-particles span:nth-child(5) {
  left: 50%;
  animation-delay: 3s;
  animation-duration: 32s;
}
.floating-particles span:nth-child(6) {
  left: 60%;
  animation-delay: 5s;
  animation-duration: 33s;
}
.floating-particles span:nth-child(7) {
  left: 70%;
  animation-delay: 2s;
  animation-duration: 27s;
}
.floating-particles span:nth-child(8) {
  left: 80%;
  animation-delay: 1s;
  animation-duration: 34s;
}
.floating-particles span:nth-child(9) {
  left: 90%;
  animation-delay: 3s;
  animation-duration: 26s;
}
.floating-particles span:nth-child(10) {
  left: 95%;
  animation-delay: 6s;
  animation-duration: 31s;
}

@keyframes float-up {
  0% {
    bottom: -10px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    opacity: 0;
  }
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tech-frame {
  position: absolute;
  width: 150px;
  height: 150px;
  pointer-events: none;
}
.live2d-frame {
  position: absolute;
  width: 300px;
  height: 800px;
  pointer-events: none;
}

.tech-frame::before,
.tech-frame::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
}

.tech-frame::before {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  animation: frame-pulse 10s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

.tech-frame::after {
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  animation: frame-pulse 3s ease-in-out infinite reverse;
}

@keyframes frame-pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.01);
  }
}

.tech-frame-left {
  top: 10%;
  left: 5%;
}

.tech-frame-right {
  bottom: 10%;
  right: 5%;
}
.tech-live2d-right {
  bottom: 5%;
  right: -10%;
}
.corner-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
  animation: dot-pulse 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

.tech-frame-left .corner-dot {
  top: -3px;
  left: -3px;
}

.tech-frame-right .corner-dot {
  bottom: -3px;
  right: -3px;
}

@keyframes dot-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
  }
}

.hero-content {
  max-width: 900px;
  z-index: 2;
  position: relative;
  padding: 2.5rem 3rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  border-radius: 30px;
  border: 1px solid transparent;
  background-clip: padding-box;
  text-align: center;
  animation: hero-enter 2.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-flow 15s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes border-flow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-content::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 255, 136, 0.1),
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: holo-rotate 30s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  opacity: 0.3;
  z-index: -1;
  border-radius: 30px;
}

@keyframes holo-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border: 1px solid transparent;
  background-clip: padding-box;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00ff88;
  margin-bottom: 2rem;
  position: relative;
  animation: badge-glow 12s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(90deg, #00ff88, transparent, #00ff88);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-slide 15s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes border-slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes badge-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2),
      inset 0 0 10px rgba(0, 255, 136, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4),
      inset 0 0 15px rgba(0, 255, 136, 0.2);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-brand-text {
  display: inline-block;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #00ff88 25%,
    #ffffff 50%,
    #737373 75%,
    #ffffff 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  position: relative;
  letter-spacing: -0.03em;
  animation: gradient-flow 20s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Glitch Effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #737373 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glitch::before {
  animation: glitch-1 5s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-2px);
}

.glitch::after {
  animation: glitch-2 5s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  transform: translate(2px);
}

@keyframes glitch-1 {
  0%,
  100% {
    opacity: 0;
  }
  98% {
    opacity: 0;
  }
  99% {
    opacity: 0.3;
  }
}

@keyframes glitch-2 {
  0%,
  100% {
    opacity: 0;
  }
  97% {
    opacity: 0;
  }
  98% {
    opacity: 0.3;
  }
}

.hero-subtitle-text {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gray-300);
  margin-top: 0.5rem;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, #ffffff 0%, #a3a3a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-email-form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 450px;
}

.hero-email-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.hero-email-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-email-form input::placeholder {
  color: var(--gray-500);
}

.cta-button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-200) 100%);
  border: none;
  border-radius: 14px;
  color: var(--black);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, var(--gray-200) 0%, var(--white) 100%);
}

.cta-button:hover svg {
  transform: translateX(5px);
}

.cta-button:hover::before {
  left: 100%;
}

.waitlist-count {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.count-number {
  color: var(--white);
  font-weight: 600;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-download-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 255, 136, 0.05);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 8px;
  color: var(--green-400);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  margin-left: 0.25rem;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--gray-300);
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--green-400);
}

.dropdown-item:first-child {
  border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 12px 12px;
}

/* Quick Download Button in Hero */
.quick-download-section {
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.quick-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 12px;
  color: var(--green-400);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 10;
}

.quick-download-btn:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.08));
  border-color: rgba(0, 255, 136, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

/* Full Download Section */
.download-full-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.02), transparent);
  position: relative;
}

.download-full-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, var(--gray-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.download-full-section .section-subtitle {
  text-align: center;
  color: var(--gray-400);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.download-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .download-options {
    grid-template-columns: 1fr;
  }
}

.download-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.download-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 136, 0.1);
  border-radius: 12px;
  color: var(--green-400);
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.platform-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.platform-badge.all-platforms {
  background: rgba(0, 255, 136, 0.1);
  color: var(--green-400);
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.platform-badge.mac-only {
  background: rgba(100, 150, 255, 0.1);
  color: rgb(100, 150, 255);
  border: 1px solid rgba(100, 150, 255, 0.2);
}

.platform-badge.optional {
  background: rgba(255, 180, 0, 0.1);
  color: rgb(255, 180, 0);
  border: 1px solid rgba(255, 180, 0, 0.2);
}

.card-description {
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.install-section h4 {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.code-block {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-family: 'Monaco', 'Courier New', monospace;
}

.code-block code {
  color: var(--green-400);
  font-size: 0.95rem;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--gray-400);
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--green-400);
}

.platform-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.platform-buttons .download-btn {
  width: 100%;
  max-width: none;
}

.download-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.card-footer {
  display: flex;
  gap: 1rem;
}

.docs-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--gray-300);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
  justify-content: center;
}

.docs-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* NPM Link */
.npm-link {
  margin-top: 1rem;
}

.npm-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  opacity: 0.8;
}

.npm-link a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Model Info */
/* Keep original model-info for other uses */
.model-info:not(.compact) {
  padding: 1rem;
  background: rgba(255, 180, 0, 0.05);
  border: 1px solid rgba(255, 180, 0, 0.1);
  border-radius: 8px;
}

.model-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-300);
  font-size: 0.9rem;
  margin: 0;
}

.model-note svg {
  color: rgba(255, 180, 0, 0.8);
  flex-shrink: 0;
}

/* Model Client Section - Clean Minimal Design */
.model-client-section {
  grid-column: 1 / -1;
  margin-top: 3rem;
  position: relative;
}

.model-divider {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.model-divider::before,
.model-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 100px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
}

.model-divider::before {
  left: 0;
}

.model-divider::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
}

.divider-text {
  color: var(--gray-500);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 1.5rem;
  background: rgb(10, 10, 15);
  position: relative;
}

.model-card {
  background: linear-gradient(135deg, rgba(100, 100, 255, 0.02), transparent);
  border: 1px solid rgba(100, 100, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.model-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(100, 100, 255, 0.05), transparent);
  transition: left 0.6s ease;
}

.model-card:hover::before {
  left: 100%;
}

.model-card:hover {
  border-color: rgba(100, 100, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.model-left {
  flex: 1;
}

.model-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(100, 100, 255, 0.1);
  border: 1px solid rgba(100, 100, 255, 0.2);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(150, 150, 255);
  margin-bottom: 1rem;
}

.model-left h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(135deg, #fff, var(--gray-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.model-left p {
  color: var(--gray-400);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.model-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.model-btn-primary,
.model-btn-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.model-btn-primary {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
  border: 1px solid rgba(0, 255, 136, 0.2);
  color: var(--green-400);
}

.model-btn-primary:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.08));
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-1px);
}

.model-btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-400);
}

.model-btn-secondary.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.model-btn-docs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, rgba(100, 100, 255, 0.1), rgba(100, 100, 255, 0.05));
  border: 1px solid rgba(100, 100, 255, 0.2);
  color: rgba(150, 150, 255, 0.9);
  cursor: pointer;
}

.model-btn-docs:hover {
  background: linear-gradient(135deg, rgba(100, 100, 255, 0.15), rgba(100, 100, 255, 0.08));
  border-color: rgba(100, 100, 255, 0.3);
  transform: translateY(-1px);
  color: rgba(180, 180, 255, 1);
}

@media (max-width: 768px) {
  .model-client-section {
    margin-top: 2rem;
  }
  
  .model-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    text-align: center;
  }
  
  .model-right {
    flex-direction: column;
    width: 100%;
  }
  
  .model-btn-primary,
  .model-btn-secondary,
  .model-btn-docs {
    width: 100%;
    justify-content: center;
  }
}

/* Linux Button */
.download-btn.linux {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn.linux:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Install Section Improvements */
.install-section h4 {
  margin-top: 1.25rem;
}

.install-section h4:first-child {
  margin-top: 0;
}

/* Legacy Download Section - keep for compatibility */
.download-section {
  margin-top: 1.5rem;
}

.download-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-400);
  margin-bottom: 1rem;
  font-weight: 600;
}

.download-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  min-width: 180px;
  flex: 1;
  max-width: 220px;
  overflow: hidden;
  position: relative;
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.download-btn.featured {
  background: rgba(0, 255, 136, 0.05);
  border-color: rgba(0, 255, 136, 0.2);
  overflow: hidden;
  min-width: 240px;
  max-width: 260px;
}

.download-btn.featured:hover {
  background: rgba(0, 255, 136, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
}

.btn-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  color: var(--gray-300);
  flex-shrink: 0;
}

.download-btn:hover .btn-icon {
  color: #ffffff;
}

.download-btn.featured .btn-icon {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
}

.btn-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.btn-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.btn-sublabel {
  font-size: 0.7rem;
  color: var(--gray-400);
  white-space: nowrap;
}

.btn-badge {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  background: rgba(0, 255, 136, 0.15);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 4px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #00ff88;
  margin-top: 0.2rem;
  font-weight: 600;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  flex-shrink: 0;
}

.download-btn:hover .btn-arrow {
  color: var(--gray-300);
}

.download-btn.featured .btn-arrow {
  color: #00ff88;
}

/* Coming Soon Button Styles */
.download-btn.coming-soon {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(79, 70, 229, 0.1));
  border: 1px solid rgba(147, 51, 234, 0.3);
  cursor: not-allowed;
  position: relative;
  overflow: hidden;
}

.download-btn.coming-soon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(147, 51, 234, 0.1) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.download-btn.coming-soon:hover {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(79, 70, 229, 0.15));
  border-color: rgba(147, 51, 234, 0.4);
  transform: none;
}

.download-btn.coming-soon .btn-icon {
  background: rgba(147, 51, 234, 0.15);
  color: #9333ea;
}

.download-btn.coming-soon .btn-sublabel {
  background: linear-gradient(90deg, #9333ea, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.coming-soon-badge {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  background: linear-gradient(135deg, #9333ea, #4f46e5);
  color: white;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.9;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Features Section */
.features {
  padding: 7rem 2rem;
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(10, 10, 10, 1) 100%
  );
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 255, 136, 0.1) 0%,
    transparent 70%
  );
  animation: features-scan 25s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes features-scan {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(50%);
  }
}

.features-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.features-particles::before,
.features-particles::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(0, 255, 136, 0.15) 0%,
      transparent 2%
    ),
    radial-gradient(
      circle at 80% 60%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 2%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(0, 255, 136, 0.1) 0%,
      transparent 2%
    );
  background-size: 100px 100px;
  animation: particle-drift 45s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

.features-particles::after {
  animation-delay: -10s;
  animation-direction: reverse;
}

@keyframes particle-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100px, -100px);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #737373 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card.coming-soon {
  opacity: 0.85;
}

.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  color: var(--gray-400);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.features-grid .feature-card {
  animation: feature-card-enter 2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

.features-grid .feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.features-grid .feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.features-grid .feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.features-grid .feature-card:nth-child(4) {
  animation-delay: 0.4s;
}
.features-grid .feature-card:nth-child(5) {
  animation-delay: 0.5s;
}
.features-grid .feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes feature-card-enter {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 255, 136, 0.1),
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  animation: feature-rotate 25s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::after {
  opacity: 1;
}

@keyframes feature-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2),
    inset 0 0 20px rgba(0, 255, 136, 0.05);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 0 1.5rem 0;
  position: relative;
  display: block;
}

.feature-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.feature-icon .feature-img {
  opacity: 0.8;
  filter: brightness(0.9);
}

.feature-icon .feature-img-hover {
  opacity: 0;
  filter: brightness(1.1) drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.feature-card:hover .feature-icon .feature-img {
  opacity: 0;
}

.feature-card:hover .feature-icon .feature-img-hover {
  opacity: 1;
  animation: icon-glow 0.3s ease-in-out;
}

@keyframes icon-glow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes icon-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: grayscale(100%) brightness(1.3)
      drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
  }
  50% {
    transform: scale(1.05);
    filter: grayscale(50%) brightness(1.1)
      drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
  }
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.feature-card p {
  color: var(--gray-400);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Productivity Section */
.productivity {
  padding: 7rem 2rem;
  background: rgba(5, 5, 5, 1);
  position: relative;
  overflow: hidden;
}

.productivity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(0, 255, 136, 0.03) 50%,
      transparent 70%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.02) 50%,
      transparent 70%
    );
  animation: productivity-wave 35s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes productivity-wave {
  0%,
  100% {
    transform: translateX(-25px) translateY(0);
  }
  50% {
    transform: translateX(25px) translateY(-15px);
  }
}

.productivity-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 136, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: grid-slide 30s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  opacity: 0.3;
}

@keyframes grid-slide {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 100px);
  }
}

.productivity-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.productivity-text h2 {
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: center;
}

.productivity-list {
  list-style: none;
  space-y: 1rem;
}

.productivity-list li {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.check-icon {
  color: var(--white);
  font-weight: 600;
  margin-top: 0.125rem;
}

.productivity-list span:last-child {
  color: var(--gray-300);
  line-height: 1.5;
}

.stats-card {
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(0, 255, 136, 0.02) 100%
  );
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 24px;
  display: grid;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  animation: stats-glow 15s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes stats-glow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1),
      inset 0 0 30px rgba(0, 255, 136, 0.05);
  }
  50% {
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.2),
      inset 0 0 50px rgba(0, 255, 136, 0.1);
  }
}

.stats-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00ff88, transparent, #00ff88);
  border-radius: 24px;
  opacity: 0.5;
  animation: border-rotation 12s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  z-index: -1;
}

@keyframes border-rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00ff88 0%, #ffffff 50%, #00ff88 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  animation: number-gradient 15s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes number-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Integration Section */
.integration {
  padding: 7rem 2rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.integration::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  animation: integration-pulse 18s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes integration-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.2;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.4;
  }
}

.ide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.ide-card {
  padding: 2rem 1.5rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(0, 255, 136, 0.01) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ide-card.released {
  border-color: rgba(0, 255, 136, 0.2);
}

.ide-card.coming-soon {
  opacity: 0.7;
}

.ide-card.coming-soon .ide-name {
  color: var(--gray-400);
  opacity: 0.8;
}

.release-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 255, 136, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.6);
  }
}

.ide-logo-placeholder {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.ide-logo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.9);
  transition: all 0.3s ease;
}

.ide-card:hover .ide-logo-placeholder img {
  filter: brightness(1.1);
  transform: scale(1.1);
}

.ide-logo-placeholder:not(:has(img))::after {
  content: "Logo";
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ide-logo-placeholder:not(:has(img)) {
  border: 2px dashed rgba(255, 255, 255, 0.2);
}

.ide-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.coming-soon-text {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.ide-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 0.3) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.ide-card:hover::before {
  width: 200px;
  height: 200px;
}

.ide-card:hover {
  background: rgba(0, 255, 136, 0.1);
  transform: scale(1.1) rotateZ(2deg);
  border-color: rgba(0, 255, 136, 0.4);
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3),
    inset 0 0 20px rgba(0, 255, 136, 0.1);
  color: #00ff88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Immersive Section */
.immersive {
  padding: 7rem 2rem;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(10, 10, 10, 1) 100%
  );
  position: relative;
  overflow: hidden;
}

.immersive::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(0, 255, 136, 0.03) 2px,
    rgba(0, 255, 136, 0.03) 4px
  );
  animation: immersive-scan 10s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes immersive-scan {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(4px);
  }
}

.immersive-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 0.2) 0%,
    transparent 70%
  );
  filter: blur(40px);
  animation: orb-float 25s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

.immersive-orb:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.immersive-orb:nth-child(2) {
  bottom: 10%;
  right: 10%;
  animation-delay: -5s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(15px, -15px) scale(1.05);
  }
  66% {
    transform: translate(-10px, 10px) scale(0.95);
  }
}

.immersive-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.immersive-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.immersive-card {
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(0, 255, 136, 0.02) 100%
  );
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.immersive-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ff88, transparent);
  animation: card-scan 12s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes card-scan {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.immersive-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  background: rgba(0, 255, 136, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2),
    inset 0 0 30px rgba(0, 255, 136, 0.05);
}

.immersive-card h4 {
  position: relative;
  z-index: 2;
}

.immersive-card p {
  position: relative;
  z-index: 2;
}

.immersive-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.immersive-card p {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Waitlist Section */
.waitlist {
  padding: 7rem 2rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.waitlist::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(0, 255, 136, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  animation: waitlist-bg 25s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes waitlist-bg {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

.waitlist-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 4rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(0, 255, 136, 0.02) 100%
  );
  backdrop-filter: blur(30px) saturate(150%);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: waitlist-float 20s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}

@keyframes waitlist-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.waitlist-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 255, 136, 0.2),
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: waitlist-rotate 20s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  opacity: 0.5;
}

@keyframes waitlist-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.waitlist-card > * {
  position: relative;
  z-index: 2;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.waitlist-form input {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
}

.waitlist-form input::placeholder {
  color: var(--gray-500);
}

.cta-button-large {
  padding: 1.25rem 2.5rem;
  background: var(--white);
  border: none;
  border-radius: 12px;
  color: var(--black);
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: var(--transition);
}

.cta-button-large {
  position: relative;
  overflow: hidden;
}

.cta-button-large::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 0.3) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.cta-button-large:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button-large:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3),
    inset 0 0 20px rgba(0, 255, 136, 0.1);
  background: linear-gradient(135deg, #00ff88 0%, #ffffff 100%);
  color: #000000;
}

.social-amplification {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-amplification p {
  color: var(--gray-400);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.twitter-share {
  padding: 0.875rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.twitter-share:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
  padding: 4rem 2rem 2rem;
  background: linear-gradient(180deg, var(--black) 0%, rgba(0, 0, 0, 0.95) 100%);
  border-top: 1px solid rgba(0, 255, 136, 0.1);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
  animation: glow-line 3s ease-in-out infinite;
}

@keyframes glow-line {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.footer-content-horizontal {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.footer-left {
  flex: 1;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-tagline {
  color: var(--gray-400);
  font-size: 0.95rem;
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin: 0;
}

.footer-social-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.footer-social-title {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  background: linear-gradient(135deg, #00ff88, #00cc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-social-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.social-link:hover {
  background: rgba(0, 255, 136, 0.1);
  border-color: rgba(0, 255, 136, 0.3);
  color: #00ff88;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.1);
}


.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--gray-400);
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  padding: 0.25rem 0;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .productivity-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content-horizontal {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-right {
    justify-content: center;
  }
  
  .footer-brand-section {
    align-items: center;
  }
  
  .footer-social-section {
    align-items: center;
  }
  
  .footer-social-links {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .social-link {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  /* Download buttons medium screen */
  .download-buttons {
    gap: 0.5rem;
  }
  
  .download-btn {
    min-width: 160px;
    max-width: 200px;
    padding: 0.65rem 0.85rem;
  }
  
  .btn-label {
    font-size: 0.85rem;
  }
  
  .btn-sublabel {
    font-size: 0.65rem;
  }
}

/* Mobile video container styles */
.mobile-video-container {
  display: none; /* Hidden by default on PC */
  width: 100%;
  height: 238px; /* Increased height */
  overflow: hidden;
  position: relative;
  justify-content: center;
  align-items: center;
  z-index: 100; /* Ensure video is on top layer */
}

.mobile-video-container video {
  width: 76%;
  height: 168%;
  margin-left: 10%;
  display: block;
  object-fit: cover; /* Changed to cover to ensure fill */
}

/* Hide video controls */
.mobile-video-container video::-webkit-media-controls {
  display: none !important;
}

.mobile-video-container video::-webkit-media-controls-enclosure {
  display: none !important;
}

.mobile-video-container video::-webkit-media-controls-panel {
  display: none !important;
}

.mobile-video-container video::-webkit-media-controls-play-button {
  display: none !important;
}

.mobile-video-container video::-webkit-media-controls-timeline {
  display: none !important;
}

.mobile-video-container video::-webkit-media-controls-current-time-display,
.mobile-video-container video::-webkit-media-controls-time-remaining-display {
  display: none !important;
}

@media (max-width: 768px) {
  /* Show video on mobile */
  .mobile-video-container {
    display: block !important; /* Force display */
    z-index: 100 !important; /* Ensure on top layer */
  }

  /* Ensure background elements don't block */
  .hero-background,
  .spline-container {
    z-index: 1 !important;
  }

  /* Navigation */
  .nav-center,
  .nav-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Hide video on mobile */
  .hero {
    flex-direction: column;
    overflow-y: auto;
  }

  .hero-wrapper {
    width: 100%;
    position: relative;
    z-index: 2;
  }

  /* Hide video container completely on mobile */
  .live2d-frame {
    display: none !important;
  }

  /* Hide all videos except mobile-video-container */
  video:not(.mobile-video-container video) {
    display: none !important;
  }

  .header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
  }

  .nav {
    padding: 1rem;
  }

  /* Hero adjustments for mobile */
  .hero {
    min-height: 100vh;
    padding: 80px 20px 40px;
  }

  /* Reduce complexity of background effects on mobile */
  .hero-background {
    opacity: 0.3;
  }

  .spline-container {
    opacity: 0.4;
    height: 50vh;
    min-height: 300px;
  }

  .spline-container spline-viewer {
    width: 100% !important;
    height: 100% !important;
  }

  .floating-ui {
    display: none;
  }

  .tech-frame {
    display: none;
  }

  .hero-wrapper {
    padding: 0 1rem;
  }

  .hero-content {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .hero-content::after {
    display: none;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero-brand-text {
    font-size: 3rem;
  }

  .hero-subtitle-text {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1rem;
    justify-content: space-around;
  }

  .hero-stats .stat-item {
    flex: 0 0 auto;
    text-align: center;
    min-width: 80px;
  }

  .stat-divider {
    display: none;
  }

  .hero-email-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-email-form input {
    width: 100%;
    padding: 0.875rem;
  }

  .cta-button {
    width: 100%;
    padding: 0.875rem;
  }

  .cta-button svg {
    display: none;
  }

  .waitlist-count {
    font-size: 0.75rem;
  }

  /* Download buttons responsive */
  .download-section {
    margin-top: 1rem;
  }
  
  .download-title {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
    padding: 0 1rem;
  }
  
  .download-btn {
    min-width: unset;
    max-width: none;
    width: 100%;
    padding: 0.65rem 0.85rem;
    gap: 0.65rem;
  }
  
  .btn-icon {
    width: 28px;
    height: 28px;
  }
  
  .btn-label {
    font-size: 0.85rem;
  }
  
  .btn-sublabel {
    font-size: 0.65rem;
  }
  
  .btn-badge {
    font-size: 0.6rem;
    padding: 0.1rem 0.35rem;
  }
  
  .btn-arrow {
    width: 18px;
    height: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }

  .ide-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .ide-card {
    padding: 1.5rem 1rem;
    min-height: 150px;
  }
  
  .ide-logo-placeholder {
    width: 50px;
    height: 50px;
  }
  
  .ide-name {
    font-size: 1rem;
  }
  
  .release-badge {
    font-size: 0.65rem;
    padding: 3px 10px;
  }
  
  .coming-soon-text {
    font-size: 0.75rem;
  }

  .footer-content-horizontal {
    gap: 1.5rem;
  }
  
  .footer-tagline {
    font-size: 0.85rem;
  }
  
  .footer-copyright {
    font-size: 0.75rem;
  }
  
  .footer-social-title {
    font-size: 1rem;
  }
  
  .footer-social-links {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  
  .social-link {
    width: 100%;
    justify-content: center;
    padding: 0.6rem;
    font-size: 0.8rem;
  }
  
  .social-link svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  /* Optimize spline viewer for small screens */
  .spline-container {
    height: 40vh;
    min-height: 250px;
  }

  .hero {
    padding: 70px 15px 30px;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }

  .hero-brand-text {
    font-size: 2.5rem;
  }

  .hero-subtitle-text {
    font-size: 0.9rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-stats {
    padding: 0.75rem;
  }

  .stat-value {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .hero-email-form input {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .cta-button {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  /* Sections */
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .features {
    padding: 3rem 1rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* Other sections */
  .productivity,
  .integration,
  .immersive,
  .waitlist {
    padding: 3rem 1rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .productivity-list {
    padding-left: 0;
  }

  .productivity-list li {
    margin-bottom: 1rem;
  }

  .productivity-list span:last-child {
    font-size: 0.85rem;
  }

  .stats-card {
    padding: 1.5rem;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .ide-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ide-card {
    padding: 1.25rem 1rem;
    min-height: 120px;
  }
  
  .ide-logo-placeholder {
    width: 45px;
    height: 45px;
    margin-bottom: 0.75rem;
  }
  
  .ide-name {
    font-size: 0.95rem;
  }
  
  .release-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
    top: 8px;
    right: 8px;
  }
  
  .coming-soon-text {
    font-size: 0.7rem;
  }

  .immersive-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }

  .immersive-card h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .immersive-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .waitlist-card {
    padding: 1.5rem;
  }

  .waitlist-form input {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .cta-button-large {
    padding: 0.875rem;
    font-size: 0.9rem;
  }

  .twitter-share {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }

  .footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-brand p {
    font-size: 0.8rem;
  }

  .footer-links h4 {
    font-size: 0.8rem;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: var(--gray-300);
  text-decoration: none;
  padding: 1rem;
  border-radius: 10px;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.mobile-email-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-email-form input {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
}

.mobile-email-form button {
  padding: 1rem;
  background: var(--white);
  border: none;
  border-radius: 10px;
  color: var(--black);
  font-weight: 600;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Utility Classes */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Mobile-specific optimizations */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 60px 20px 20px;
  }

  .hero-content {
    padding: 1rem;
  }

  /* Hide video in landscape mode too */
  .live2d-frame,
  video:not(.mobile-video-container video) {
    display: none !important;
  }
}

/* Touch-friendly devices - hide video */
@media (pointer: coarse) {
  /* Hide video on touch devices (mobile/tablet) */
  .live2d-frame,
  video:not(.mobile-video-container video) {
    display: none !important;
  }

  /* Ensure mobile video container is visible */
  .mobile-video-container {
    display: block !important;
  }

  .mobile-video-container video {
    display: block !important;
  }
}

/* Improved text readability on mobile */
@media (max-width: 768px) {
  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  p,
  li {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Optimize buttons for touch */
  button,
  .cta-button,
  .cta-button-large,
  .nav-link,
  .mobile-nav-link {
    min-height: 44px;
    min-width: 44px;
  }

  /* Better form inputs on mobile */
  input[type="email"],
  input[type="text"] {
    font-size: 16px; /* Prevents zoom on iOS */
    -webkit-appearance: none;
    appearance: none;
  }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
  /* Reduce animations on mobile for better performance */
  .floating-particles,
  .data-streams,
  .circuit-pattern,
  .hex-grid {
    animation: none;
  }

  /* Simplify gradients */
  .gradient-overlay {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }

  /* Optimize images */
  img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-700);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-600);
}

/* Selection */
::selection {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

::-moz-selection {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* Meditation animation area styles */
.meditation-animation {
  min-height: 100vh;
  padding: 120px 20px;
  position: relative;
  background: radial-gradient(
    circle at center,
    rgba(20, 20, 40, 0.9) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meditation-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.meditation-title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 80px;
  background: linear-gradient(90deg, #ffffff, #a0a0ff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

.taichi-wrapper {
  width: 500px;
  height: 500px;
  position: relative;
  margin: 0 auto 60px;
}

/* Yin-Yang pattern */
.yinyang-symbol {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(90deg, #ffffff 50%, #000000 50%);
  animation: tachiRotate 20s linear infinite;
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.3);
}

.yinyang-symbol::before,
.yinyang-symbol::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.yinyang-symbol::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #000000;
  box-shadow: inset 0 0 0 45px #000000;
}

.yinyang-symbol::after {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: inset 0 0 0 45px #ffffff;
}

.yin,
.yang {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.yin {
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
}

.yang {
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: #000000;
}

@keyframes tachiRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

/* Energy rings */
.energy-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.ring-1 {
  width: 350px;
  height: 350px;
  animation: energyPulse 4s ease-in-out infinite;
}

.ring-2 {
  width: 400px;
  height: 400px;
  animation: energyPulse 4s ease-in-out infinite 1s;
}

.ring-3 {
  width: 450px;
  height: 450px;
  animation: energyPulse 4s ease-in-out infinite 2s;
}

@keyframes energyPulse {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Breathing circle */
.breathing-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(100, 100, 255, 0.1) 0%,
    transparent 70%
  );
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.3;
  }
  25% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
  75% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.3;
  }
}

/* Flow particles */
.flow-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #ffffff 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
}

.particle:nth-child(1) {
  animation: particleOrbit1 15s linear infinite;
}

.particle:nth-child(2) {
  animation: particleOrbit2 18s linear infinite;
}

.particle:nth-child(3) {
  animation: particleOrbit3 20s linear infinite;
}

.particle:nth-child(4) {
  animation: particleOrbit1 22s linear infinite reverse;
}

.particle:nth-child(5) {
  animation: particleOrbit2 25s linear infinite reverse;
}

.particle:nth-child(6) {
  animation: particleOrbit3 28s linear infinite reverse;
}

.particle:nth-child(7) {
  animation: particleOrbit1 30s linear infinite;
}

.particle:nth-child(8) {
  animation: particleOrbit2 33s linear infinite;
}

@keyframes particleOrbit1 {
  0% {
    transform: rotate(0deg) translateX(200px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) translateX(200px) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes particleOrbit2 {
  0% {
    transform: rotate(0deg) translateX(180px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: rotate(360deg) translateX(180px) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes particleOrbit3 {
  0% {
    transform: rotate(0deg) translateX(220px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: rotate(360deg) translateX(220px) rotate(-360deg);
    opacity: 0;
  }
}

/* Multilingual bubbles */
.language-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 15;
}

.bubble {
  position: absolute;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  animation: bubbleFloat 8s ease-in-out infinite;
}

.bubble-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.bubble-en {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.bubble-zh {
  top: 15%;
  right: 25%;
  animation-delay: 1.5s;
}

.bubble-jp {
  bottom: 20%;
  left: 15%;
  animation-delay: 3s;
}

.bubble-en-2 {
  bottom: 25%;
  right: 20%;
  animation-delay: 4.5s;
}

.bubble-zh-2 {
  top: 30%;
  left: 10%;
  animation-delay: 6s;
}

.bubble-jp-2 {
  top: 20%;
  right: 10%;
  animation-delay: 7.5s;
}

@keyframes bubbleFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    transform: translateY(-20px) scale(1.05);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
}

/* Zen elements */
.zen-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 5;
}

.zen-stone {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.zen-stone-1 {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 10%;
  animation: stoneGlow 6s ease-in-out infinite;
}

.zen-stone-2 {
  width: 40px;
  height: 40px;
  top: 70%;
  left: 80%;
  animation: stoneGlow 6s ease-in-out infinite 2s;
}

.zen-stone-3 {
  width: 50px;
  height: 50px;
  top: 20%;
  left: 85%;
  animation: stoneGlow 6s ease-in-out infinite 4s;
}

@keyframes stoneGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.zen-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: rippleExpand 8s ease-out infinite;
}

@keyframes rippleExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Fourth energy ring */
.ring-4 {
  width: 500px;
  height: 500px;
  animation: energyPulse 4s ease-in-out infinite 3s;
}

/* Second breathing circle */
.breathing-circle-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(150, 100, 255, 0.08) 0%,
    transparent 60%
  );
  animation: breathe 10s ease-in-out infinite reverse;
}

/* Meditation guide */
.meditation-guide {
  margin-top: 40px;
}

.guide-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.breath-indicator {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 1rem;
}

.breath-in,
.breath-hold,
.breath-out {
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.5s ease;
}

.breath-in {
  animation: breathInIndicator 8s ease-in-out infinite;
}

.breath-hold {
  animation: breathHoldIndicator 8s ease-in-out infinite;
}

.breath-out {
  animation: breathOutIndicator 8s ease-in-out infinite;
}

@keyframes breathInIndicator {
  0%,
  75%,
  100% {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
  12.5% {
    background: rgba(100, 200, 255, 0.2);
    color: rgba(100, 200, 255, 1);
    transform: scale(1.1);
  }
}

@keyframes breathHoldIndicator {
  0%,
  12.5%,
  62.5%,
  100% {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
  37.5% {
    background: rgba(255, 200, 100, 0.2);
    color: rgba(255, 200, 100, 1);
    transform: scale(1.1);
  }
}

@keyframes breathOutIndicator {
  0%,
  37.5%,
  87.5%,
  100% {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
  62.5% {
    background: rgba(100, 255, 200, 0.2);
    color: rgba(100, 255, 200, 1);
    transform: scale(1.1);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .meditation-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .taichi-wrapper {
    width: 350px;
    height: 350px;
  }

  .yinyang-symbol {
    width: 200px;
    height: 200px;
  }

  .yinyang-symbol::before,
  .yinyang-symbol::after {
    width: 100px;
    height: 100px;
  }

  .yinyang-symbol::before {
    box-shadow: inset 0 0 0 30px #000000;
  }

  .yinyang-symbol::after {
    box-shadow: inset 0 0 0 30px #ffffff;
  }

  .yin,
  .yang {
    width: 20px;
    height: 20px;
  }

  .yin {
    top: 40px;
  }
  .yang {
    bottom: 40px;
  }

  .ring-1 {
    width: 250px;
    height: 250px;
  }
  .ring-2 {
    width: 300px;
    height: 300px;
  }
  .ring-3 {
    width: 330px;
    height: 330px;
  }
  .ring-4 {
    width: 380px;
    height: 380px;
  }

  .breathing-circle {
    width: 220px;
    height: 220px;
  }

  .breathing-circle-2 {
    width: 180px;
    height: 180px;
  }

  .breath-indicator {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .bubble {
    padding: 8px 15px;
    font-size: 12px;
  }

  .bubble-en {
    top: 5%;
    left: 10%;
  }
  .bubble-zh {
    top: 10%;
    right: 10%;
  }
  .bubble-jp {
    bottom: 15%;
    left: 5%;
  }
  .bubble-en-2 {
    bottom: 20%;
    right: 10%;
  }
  .bubble-zh-2 {
    top: 25%;
    left: 5%;
  }
  .bubble-jp-2 {
    top: 15%;
    right: 5%;
  }

  .zen-stone-1 {
    width: 40px;
    height: 40px;
  }
  .zen-stone-2 {
    width: 30px;
    height: 30px;
  }
  .zen-stone-3 {
    width: 35px;
    height: 35px;
  }
}

/* Join Us Page Styles */
.join-hero {
  min-height: 70vh;
}

.careers-section {
  padding: 8rem 0;
  position: relative;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.job-card {
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 16px;
  min-height: 320px;
}

.job-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
}

.job-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.job-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.job-type {
  color: var(--gray-400);
  font-size: 0.875rem;
  font-weight: 500;
}

.job-description {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.job-description p {
  color: var(--gray-300);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gray-200);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.tag:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.job-location {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.apply-btn {
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000000;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.15);
}

.apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
  background: linear-gradient(135deg, #00ff88, #00dd73);
}

.culture-section {
  padding: 8rem 0;
}

.culture-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.culture-list {
  list-style: none;
  margin-top: 2rem;
}

.culture-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-300);
}

.application-section {
  padding: 6rem 0;
}

.application-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
}

.application-form {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.application-form input,
.application-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem;
  color: #ffffff;
  font-family: inherit;
}

.application-form input::placeholder,
.application-form textarea::placeholder {
  color: var(--gray-400);
}

.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-label:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* Plugin Store Page Styles */
.plugin-hero {
  min-height: 70vh;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 1rem 1.5rem;
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
}

.search-bar input::placeholder {
  color: var(--gray-400);
}

.search-filter-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0.5rem;
  color: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-filter-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.plugin-categories {
  padding: 4rem 0 2rem;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  color: var(--gray-300);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.featured-plugins {
  padding: 6rem 0;
}

.plugins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.plugin-card {
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.plugin-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
}

.plugin-card.featured {
  border-color: rgba(0, 255, 136, 0.3);
}

.plugin-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000000;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.plugin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.icon-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.ai-icon {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: #ffffff;
}

.theme-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
}

.productivity-icon {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #ffffff;
}

.debug-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
}

.collab-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
}

.plugin-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.plugin-author {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.plugin-description {
  color: var(--gray-300);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.plugin-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.downloads {
  color: var(--gray-400);
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: #fbbf24;
}

.rating-number {
  color: var(--gray-300);
}

.plugin-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.install-btn {
  flex: 1;
  background: linear-gradient(135deg, #00ff88, #00cc6a);
  color: #000000;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.install-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.learn-more-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gray-300);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.coming-soon-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gray-400);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: not-allowed;
  opacity: 0.6;
}

.notify-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.coming-soon-label {
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.developer-section {
  padding: 8rem 0;
}

.developer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.developer-list {
  list-style: none;
  margin-top: 2rem;
}

.developer-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-300);
}

.developer-cta {
  margin-top: 2rem;
}

.newsletter-section {
  padding: 6rem 0;
}

.newsletter-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem;
  color: #ffffff;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: var(--gray-400);
}

/* Active navigation link */
.nav-link.active {
  color: #00ff88;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ff88, #00cc6a);
  border-radius: 1px;
}

/* Responsive styles for new pages */
@media (max-width: 1024px) {
  .culture-content,
  .developer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .jobs-grid,
  .plugins-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .jobs-grid,
  .plugins-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    padding: 0 1rem;
    margin-top: 2rem;
  }
  
  .job-card,
  .plugin-card {
    padding: 1.5rem;
    min-height: auto;
    border-radius: 12px;
  }
  
  .job-header h3,
  .plugin-info h3 {
    font-size: 1.3rem;
  }
  
  .job-description p,
  .plugin-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .apply-btn,
  .install-btn,
  .learn-more-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .job-footer,
  .plugin-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    text-align: center;
  }
  
  .plugin-icon {
    width: 48px;
    height: 48px;
  }
  
  .plugin-badge {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
  }
  
  .plugin-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .category-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 1rem;
    gap: 0.75rem;
  }
  
  .category-btn {
    white-space: nowrap;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .search-bar {
    margin: 2rem 1rem 0;
    padding: 0.75rem 1rem;
  }
  
  .search-bar input {
    font-size: 0.9rem;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  .plugin-actions {
    flex-direction: column;
  }
}


/* Additional Mobile Optimizations */
@media (max-width: 768px) {
  /* Plugin Store Additional Improvements */
  .plugin-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  
  .plugin-card:hover {
    transform: translateY(-4px);
  }
  
  .plugin-info h3 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  
  .plugin-author {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
  
  .plugin-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .plugin-stats {
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  
  .downloads {
    font-size: 0.8rem;
  }
  
  .rating {
    font-size: 0.8rem;
  }
  
  /* Join Us Page Improvements */
  .careers-section {
    padding: 4rem 0;
  }
  
  .culture-section {
    padding: 4rem 0;
  }
  
  /* Hero Section Mobile */
  .hero {
    padding: 6rem 0 4rem;
  }
  
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }
  
  .hero-brand-text {
    font-size: 1.8rem;
  }
  
  .hero-subtitle-text {
    font-size: 1.4rem;
  }
  
  /* Category Filters Mobile */
  .category-filters {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  
  .category-btn.active {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
  }
  
  /* Navigation Mobile */
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-email-form {
    display: none;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 3rem 0 2rem;
  }
  
  .footer-content-horizontal {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-social-links {
    justify-content: center;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .plugins-grid,
  .jobs-grid {
    gap: 1rem;
    padding: 0 0.75rem;
  }
  
  .plugin-card,
  .job-card {
    padding: 1.25rem;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .search-bar {
    margin: 1.5rem 0.75rem 0;
    padding: 0.65rem 0.9rem;
  }
  
  .category-filters {
    padding: 0 0.75rem;
  }
  
  .stats-card {
    padding: 1.25rem;
    margin: 0 0.75rem;
  }
  
  .developer-visual,
  .culture-visual {
    margin: 0 0.75rem;
  }
}

/* Page Header Styles for Join Us and Plugin Store */
.page-header {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 40, 0.95) 100%);
  position: relative;
}

.page-header-content {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Mobile optimizations for page headers */
@media (max-width: 768px) {
  .page-header {
    padding: 4rem 0 3rem;
  }
  
  .page-header-content {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
  }
  
  .page-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Fix text alignment issues */
  .section-title {
    text-align: center;
    padding: 0 1rem;
  }
  
  .section-subtitle {
    text-align: center;
    padding: 0 1rem;
    max-width: 100%;
  }
  
  /* Improve container spacing */
  .container {
    padding: 0 1rem;
  }
  
  /* Better alignment for job and plugin cards */
  .jobs-grid,
  .plugins-grid {
    padding: 0;
    margin: 2rem 0;
  }
  
  .job-card,
  .plugin-card {
    margin: 0 0 1.5rem;
    text-align: left;
  }
  
  /* Fix culture and developer sections */
  .culture-content,
  .developer-content {
    text-align: center;
    padding: 0 1rem;
  }
  
  .culture-list,
  .developer-list {
    text-align: left;
    max-width: none;
    padding: 0 1rem;
  }
  
  /* Search bar mobile optimization */
  .search-bar {
    margin: 1.5rem auto;
    max-width: 100%;
    padding: 0.75rem 1rem;
  }
  
  .search-bar input {
    font-size: 1rem;
    padding: 0.5rem;
  }
  
  /* Category filters mobile */
  .category-filters {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .category-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .page-header {
    padding: 3rem 0 2rem;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .page-subtitle {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.6rem;
    padding: 0 1rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  
  .search-bar {
    margin: 1rem auto;
    padding: 0.6rem 0.8rem;
  }
  
  .category-filters {
    padding: 0.75rem;
    gap: 0.5rem;
  }
  
  .category-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* Additional mobile text alignment and spacing fixes */
@media (max-width: 768px) {
  /* Ensure all sections have proper spacing */
  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Fix footer alignment */
  .footer-content-horizontal {
    text-align: center;
    padding: 0 1rem;
  }
  
  .footer-brand-section {
    text-align: center;
  }
  
  .footer-tagline,
  .footer-copyright {
    text-align: center;
    padding: 0 1rem;
  }
  
  /* Fix stats card mobile layout */
  .stats-card {
    text-align: center;
    margin: 2rem 1rem;
  }
  
  .stat {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  /* Developer and culture sections mobile fixes */
  .developer-section,
  .culture-section {
    padding: 4rem 1rem;
  }
  
  .developer-text,
  .culture-text {
    text-align: center;
    padding: 0 1rem;
  }
  
  .developer-text h2,
  .culture-text h2 {
    text-align: center;
  }
  
  .developer-text p,
  .culture-text p {
    text-align: center;
    max-width: 100%;
  }
  
  /* Fix button alignment */
  .developer-cta {
    text-align: center;
    margin-top: 2rem;
  }
  
  /* Plugin store specific fixes */
  .featured-plugins {
    padding: 4rem 1rem;
  }
  
  .featured-plugins .container {
    padding: 0;
  }
  
  .featured-plugins .section-title,
  .featured-plugins .section-subtitle {
    text-align: center;
    padding: 0 1rem;
  }
  
  /* Join us page specific fixes */
  .careers-section {
    padding: 4rem 1rem;
  }
  
  .careers-section .container {
    padding: 0;
  }
}

/* Ultra-wide mobile fixes */
@media (max-width: 480px) {
  section {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .container {
    padding: 0 0.75rem;
  }
  
  .page-header-content {
    padding: 0 1rem;
  }
}

/* Final layout optimizations */
.careers-section,
.featured-plugins,
.developer-section,
.culture-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Improve section spacing on mobile */
@media (max-width: 768px) {
  .careers-section,
  .featured-plugins {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  
  .developer-section,
  .culture-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  /* Reduce excessive margins */
  .jobs-grid,
  .plugins-grid {
    margin-top: 1.5rem;
  }
  
  /* Better spacing for page sections */
  .page-header .section-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .page-header .section-subtitle {
    margin-bottom: 2rem;
  }
  
  /* Optimize plugin store layout */
  .plugin-categories.page-header {
    padding-bottom: 2rem;
  }
  
  .category-filters {
    margin-top: 1rem;
    margin-bottom: 0;
  }
  
  /* Better visual separation */
  .featured-plugins {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Desktop layout improvements */
@media (min-width: 769px) {
  .page-header-content {
    padding: 2rem 0 3rem;
  }
  
  .search-bar {
    max-width: 600px;
    margin: 2rem auto;
  }
  
  .category-filters {
    justify-content: center;
    margin: 2rem 0;
  }
}

/* Fix header overlap issues for join-us and plugin-store pages */
.page-header {
  padding-top: 8rem; /* Increased from 6rem to account for fixed header */
  margin-top: 0;
}

/* Ensure proper spacing from fixed header */
main {
  margin-top: 0;
  padding-top: 0;
}

/* Desktop header height calculation: 
   - nav padding: 1.25rem top + 1.25rem bottom = 2.5rem
   - logo height: ~30px = ~1.875rem
   - total ≈ 4.375rem (~70px)
*/

/* Mobile header height calculation:
   - nav padding: 1rem top + 1rem bottom = 2rem  
   - logo height: ~30px = ~1.875rem
   - total ≈ 3.875rem (~62px)
*/

@media (max-width: 768px) {
  .page-header {
    padding-top: 6rem; /* Reduced for mobile header */
  }
  
  /* Additional mobile spacing adjustments */
  .page-header-content {
    padding-top: 1rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding-top: 5.5rem; /* Further optimized for small screens */
  }
}

/* Specific fixes for content sections */
.careers-section.page-header,
.plugin-categories.page-header {
  padding-top: 8rem;
}

@media (max-width: 768px) {
  .careers-section.page-header,
  .plugin-categories.page-header {
    padding-top: 6rem;
  }
}

@media (max-width: 480px) {
  .careers-section.page-header,
  .plugin-categories.page-header {
    padding-top: 5.5rem;
  }
}

/* Ensure no negative margins interfere */
.page-header * {
  margin-top: 0;
}

.page-header .container {
  margin-top: 0;
}

/* Additional safety measures for header overlap */

/* Ensure body has proper top spacing when header is fixed */
body {
  padding-top: 0;
  margin-top: 0;
}

/* Page-specific adjustments for join-us and plugin-store */
.join-us-page main,
.plugin-store-page main {
  padding-top: 80px; /* Fixed header clearance */
}

/* Alternative: Use CSS custom property for header height */
:root {
  --header-height-desktop: 70px;
  --header-height-mobile: 62px;
}

/* Apply header clearance using viewport-relative units for better consistency */
@media (min-width: 769px) {
  .page-header {
    padding-top: max(8rem, calc(var(--header-height-desktop) + 2rem));
  }
}

@media (max-width: 768px) {
  .page-header {
    padding-top: max(6rem, calc(var(--header-height-mobile) + 1.5rem));
  }
}

@media (max-width: 480px) {
  .page-header {
    padding-top: max(5.5rem, calc(var(--header-height-mobile) + 1rem));
  }
}

/* Fallback for older browsers that dont support max() */
@supports not (padding-top: max(1rem, 1rem)) {
  .page-header {
    padding-top: 8rem;
  }
  
  @media (max-width: 768px) {
    .page-header {
      padding-top: 6rem;
    }
  }
  
  @media (max-width: 480px) {
    .page-header {
      padding-top: 5.5rem;
    }
  }
}

/* Ensure search bar and other elements have proper spacing */
.page-header .search-bar {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.page-header .category-filters {
  margin-top: 1rem;
}

/* Fix alignment issues for join-us and plugin-store pages */

/* Ensure section titles and subtitles are properly centered */
.careers-section .section-title,
.careers-section .section-subtitle,
.featured-plugins .section-title,
.featured-plugins .section-subtitle {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Specific fixes for join-us page subtitle alignment */
.careers-section .section-subtitle {
  padding: 0 2rem;
}

/* Ensure consistent spacing and alignment */
.page-header .section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.page-header .section-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .careers-section .section-subtitle,
  .featured-plugins .section-subtitle {
    padding: 0 1.5rem;
    font-size: 1rem;
  }
  
  .page-header .section-subtitle {
    padding: 0 1.5rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .careers-section .section-subtitle,
  .featured-plugins .section-subtitle {
    padding: 0 1rem;
    font-size: 0.95rem;
  }
  
  .page-header .section-subtitle {
    padding: 0 1rem;
  }
}

/* Ensure consistent visual hierarchy */
.careers-section .container,
.featured-plugins .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Jobs grid should maintain its center alignment */
.jobs-grid {
  width: 100%;
  margin-top: 2rem;
}

/* Visual hierarchy optimization */

/* Better spacing between page header and content sections */
.page-header-content + .section-title {
  margin-top: 3rem;
}

.page-header-content + .section-title + .section-subtitle {
  margin-bottom: 3rem;
}

/* Improve text readability and visual balance */
.section-subtitle {
  font-weight: 400;
  opacity: 0.9;
}

/* Enhanced mobile layout for better visual balance */
@media (max-width: 768px) {
  .page-header-content + .section-title {
    margin-top: 2rem;
  }
  
  .page-header-content + .section-title + .section-subtitle {
    margin-bottom: 2rem;
  }
  
  /* Reduce excessive white space on mobile */
  .careers-section,
  .featured-plugins {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* Ensure proper content flow */
.page-header .container > * {
  margin-left: auto;
  margin-right: auto;
}

/* Fine-tune spacing for better proportions */
.section-title + .section-subtitle {
  margin-top: -1rem; /* Reduce gap between title and subtitle */
}
