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

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  background: linear-gradient(135deg, #fafcff 0%, #f5faff 50%, #f0f8ff 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: #243044;
  overflow-x: hidden;
  letter-spacing: 0.3px;
}

h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(135deg, #f472b6 0%, #b794f6 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  width: calc(100% - 2rem);
  max-width: 1200px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  top: 1.5rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease;
}

.navbar.scrolled .nav-container {
  padding: 0.5rem 1.25rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.nav-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #f472b6 0%, #b794f6 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: #243044;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.2px;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 0.25rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #f472b6 0%, #b794f6 50%, #38bdf8 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #f472b6;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0.5rem;
  z-index: 11;
}

.hamburger span {
  width: 25px;
  height: 2.5px;
  background: #243044;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .navbar {
    width: calc(100% - 1rem);
    top: 0.5rem;
  }
  
  .navbar.scrolled {
    top: 0.75rem;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    width: calc(100% - 1rem);
    margin: 0 0.5rem;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    gap: 1.5rem;
    padding: 2rem 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-container {
    padding: 1rem;
  }
  
  .navbar.scrolled .nav-container {
    padding: 0.75rem 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, #f472b6 0%, #b794f6 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.btn-secondary {
  color: transparent;
  background-image: linear-gradient(135deg, #f472b6, #b794f6), linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(183, 148, 246, 0.1));
  background-clip: text, padding-box;
  -webkit-background-clip: text, padding-box;
  -webkit-text-fill-color: transparent;
  border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
  border-color: #f472b6;
  background-image: linear-gradient(135deg, #f472b6, #b794f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-color: #f472b6;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  min-height: 100vh;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f472b6 0%, #b794f6 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.hero-description {
  font-size: 1.25rem;
  background: linear-gradient(135deg, #f472b6, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #6b7c93;
}

.stat-icon {
  color: #ec4899;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(236, 72, 153, 0.25));
  animation: float 3s ease-in-out infinite;
  border-radius: 50%;
  background: linear-gradient(135deg, #fce7f3 0%, #e9d5ff 50%, #e0f2fe 100%);
  padding: 20px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.2);
}

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

.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: #6b7c93;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon.blue { background: #dbeafe; color: #3b82f6; }
.feature-icon.pink { background: #fce7f3; color: #ec4899; }
.feature-icon.purple { background: #ede9fe; color: #8b5cf6; }
.feature-icon.green { background: #d1fae5; color: #10b981; }
.feature-icon.orange { background: #ffedd5; color: #f97316; }
.feature-icon.cyan { background: #cffafe; color: #06b6d4; }
.feature-icon.red { background: #fee2e2; color: #ef4444; }
.feature-icon.yellow { background: #fef3c7; color: #f59e0b; }

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.feature-card p {
  color: #6b7c93;
  font-size: 0.95rem;
}

.commands {
  max-width: 100%;
  padding: 4rem 2rem;
}


.command-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: white;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  color: #6b7c93;
  font-family: 'Raleway', sans-serif;
}

.tab-btn:hover {
  color: #ec4899;
}

.tab-btn.active {
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  color: white;
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.command-card {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.command-card:hover {
  border-color: #ec4899;
  transform: translateY(-2px);
}

.command-card code {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #243044;
  letter-spacing: 0.2px;
}

.command-card .copy-icon {
  color: #d1d5db;
  transition: color 0.3s;
}

.command-card:hover .copy-icon {
  color: #ec4899;
}

.copied-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #10b981;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s;
  z-index: 1000;
}

.copied-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.footer {
  background: white;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-brand span {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}

.footer-content > p {
  color: #6b7c93;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: #6b7c93;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ec4899;
}

.copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  .navbar {
    width: calc(100% - 0.5rem);
    top: 0.25rem;
    border-radius: 15px;
  }
  
  .nav-container {
    padding: 0.35rem 0.75rem;
  }
  
  .navbar.scrolled {
    top: 0.25rem;
  }
  
  .navbar.scrolled .nav-container {
    padding: 0.35rem 0.75rem;
  }
  
  .nav-brand {
    gap: 0.4rem;
  }
  
  .nav-logo {
    width: 30px;
    height: 30px;
  }
  
  .nav-title {
    font-size: 0.95rem;
    letter-spacing: -0.5px;
  }
  
  .nav-links {
    display: none !important;
  }
  
  .hamburger {
    display: flex !important;
    padding: 0.2rem;
  }
  
  .hamburger span {
    width: 20px;
    height: 2px;
    margin: 3px 0;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 4rem 0.75rem 1.25rem;
    gap: 1.25rem;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
    margin: 0 auto 0.8rem;
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
  }
  
  .hero-stats {
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
  }
  
  .stat {
    justify-content: center;
    font-size: 0.85rem;
  }
  
  .hero-logo {
    width: 150px;
    height: 150px;
    padding: 10px;
  }
  
  .features {
    padding: 1.5rem 0.75rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .section-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .feature-card h3 {
    font-size: 0.95rem;
  }
  
  .feature-card p {
    font-size: 0.8rem;
  }
  
  .commands {
    padding: 1.5rem 0.75rem;
  }
  
  .command-tabs {
    gap: 0.3rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.4rem;
  }
  
  .tab-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .commands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .command-card {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .command-card code {
    font-size: 0.65rem;
  }
  
  .copied-toast {
    bottom: 1.25rem;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  .footer {
    padding: 1.25rem 0.75rem;
    margin-top: 1.25rem;
  }
  
  .footer-brand {
    margin-bottom: 0.4rem;
  }
  
  .footer-brand span {
    font-size: 0.95rem;
  }
  
  .footer-logo {
    width: 28px;
    height: 28px;
  }
  
  .footer-content > p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
  
  .navbar {
    width: calc(100% - 0.5rem);
    top: 0.2rem;
    border-radius: 12px;
  }
  
  .nav-container {
    padding: 0.3rem 0.6rem;
  }
  
  .nav-brand {
    gap: 0.3rem;
  }
  
  .nav-logo {
    width: 26px;
    height: 26px;
  }
  
  .nav-title {
    font-size: 0.85rem;
  }
  
  .hero {
    padding: 3.75rem 0.6rem 0.9rem;
    gap: 1rem;
  }
  
  .hero h1 {
    font-size: 1.35rem;
    line-height: 1.15;
    margin-bottom: 0.4rem;
  }
  
  .hero-description {
    font-size: 0.8rem;
    margin-bottom: 0.7rem;
  }
  
  .hero-buttons {
    gap: 0.4rem;
  }
  
  .hero-buttons .btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .hero-stats {
    gap: 0.5rem;
  }
  
  .stat {
    font-size: 0.75rem;
  }
  
  .hero-logo {
    width: 130px;
    height: 130px;
    padding: 8px;
  }
  
  .features {
    padding: 1.25rem 0.6rem;
  }
  
  .section-title {
    font-size: 1.2rem;
  }
  
  .section-subtitle {
    font-size: 0.75rem;
    margin-bottom: 0.85rem;
  }
  
  .features-grid {
    gap: 0.5rem;
  }
  
  .feature-card {
    padding: 0.9rem;
  }
  
  .feature-card h3 {
    font-size: 0.9rem;
  }
  
  .feature-card p {
    font-size: 0.75rem;
  }
  
  .commands {
    padding: 1.25rem 0.6rem;
  }
  
  .command-tabs {
    gap: 0.25rem;
    margin-bottom: 0.85rem;
  }
  
  .tab-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.65rem;
  }
  
  .commands-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  
  .command-card {
    padding: 0.55rem 0.7rem;
    font-size: 0.7rem;
  }
  
  .command-card code {
    font-size: 0.6rem;
  }
  
  .footer {
    padding: 1rem 0.6rem;
    margin-top: 0.9rem;
  }
  
  .footer-brand {
    margin-bottom: 0.3rem;
  }
  
  .footer-brand span {
    font-size: 0.85rem;
  }
  
  .footer-logo {
    width: 26px;
    height: 26px;
  }
}
