<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* Base styles */
:root {
  --background: #f8fafc;
  --foreground: #0f172a;
  --card: #ffffff;
  --card-foreground: #0f172a;
  --primary: #0f172a;
  --primary-foreground: #f8fafc;
  --secondary: #f1f5f9;
  --secondary-foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #f1f5f9;
  --accent-foreground: #0f172a;
  --destructive: #ff2d20;
  --destructive-foreground: #f8fafc;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --ring: #0f172a;
  --radius: 0.5rem;
  --sidebar-background: #fafafa;
  --sidebar-foreground: #475569;
  --sidebar-primary: #1e1e1e;
  --sidebar-primary-foreground: #fafafa;
  --sidebar-accent: #f5f5f5;
  --sidebar-accent-foreground: #1e1e1e;
  --sidebar-border: #e5e7eb;
  --sidebar-ring: #3b82f6;
  --blue-600: #2563eb;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --blue-700: #1d4ed8;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0f172a;
    --foreground: #f8fafc;
    --card: #0f172a;
    --card-foreground: #f8fafc;
    --primary: #f8fafc;
    --primary-foreground: #0f172a;
    --secondary: #1e293b;
    --secondary-foreground: #f8fafc;
    --muted: #1e293b;
    --muted-foreground: #94a3b8;
    --accent: #1e293b;
    --accent-foreground: #f8fafc;
    --destructive: #7f1d1d;
    --destructive-foreground: #f8fafc;
    --border: #1e293b;
    --input: #1e293b;
    --ring: #cbd5e1;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Zain", Roboto, Oxygen,
    Ubuntu, Cantarell, "Nova Round", "Nova Round", sans-serif;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--accent);
}

.btn-ghost {
  background-color: transparent;
  border: none;
  color: var(--foreground);
}

.btn-ghost:hover {
  background-color: var(--secondary);
}

.btn-primary {
  background-color: var(--blue-600);
  color: white;
  border: none;
  height: 3.5rem;
  padding: 0 2rem;
}

.btn-primary:hover {
  background-color: var(--blue-700);
}

.btn-secondary {
  background-color: var(--purple-600);
  color: white;
  border: none;
  height: 3.5rem;
  padding: 0 2rem;
}

.btn-secondary:hover {
  background-color: var(--purple-700);
}

.width-full {
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(var(--background), 0.95);
  backdrop-filter: blur(4px);
  z-index: 50;
  border-bottom: 1px solid var(--border);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--blue-600), var(--purple-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(var(--foreground), 0.8);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  padding: 0.5rem 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-content .nav-link {
  display: block;
  padding: 0.75rem;
  border-radius: var(--radius);
}

.mobile-menu-content .nav-link:hover {
  background-color: var(--secondary);
}

.mobile-menu-content .btn {
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #ebf4ff, #f5f3ff);
  z-index: -10;
}

@media (prefers-color-scheme: dark) {
  .hero::before {
    background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.2), rgba(88, 28, 135, 0.2));
  }
}

.floating-icons {
  position: absolute;
  inset: 0;
  z-index: -5;
}

.floating-icon {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(to right, var(--blue-600), var(--purple-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(var(--foreground), 0.8);
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (prefers-color-scheme: dark) {
  .card {
    background-color: rgba(255, 255, 255, 0.05);
  }
}

.card h3 {
  margin-top: 1rem;
  font-weight: 500;
}

.pulse-icon {
  animation: pulse-slow 4s ease-in-out infinite;
}

.scroll-indicator {
  display: inline-block;
  animation: bounce-subtle 3s ease-in-out infinite;
  text-align: center;
}

.bounce-arrow {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto;
  color: rgba(var(--foreground), 0.3);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }

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

  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Icon Showcase */
.icon-showcase {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--background), rgba(var(--secondary), 0.3));
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

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

@media (min-width: 640px) {
  .icon-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 768px) {
  .icon-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(var(--border), 0.5);
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
  .icon-item {
    background-color: rgba(255, 255, 255, 0.05);
  }
}

.icon-item:hover {
  border-color: rgba(var(--primary), 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--background), var(--background), rgba(var(--primary), 0.05));
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(var(--foreground), 0.8);
  max-width: 36rem;
  margin: 0 auto 3rem;
  text-align: center;
}

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

.btn-animated {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-text, .btn-hover-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-hover-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transform: translateY(2.5rem);
  opacity: 0;
}

.btn-animated:hover .btn-text {
  transform: translateY(-2.5rem);
  opacity: 0;
}

.btn-animated:hover .btn-hover-text {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* Footer */
.footer {
  padding: 3rem 0;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-info {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(var(--primary-foreground), 0.8);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: rgba(var(--primary-foreground), 0.8);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--primary-foreground);
}

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

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(var(--primary-foreground), 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-foreground);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--primary-foreground), 0.2);
  text-align: center;
}

.footer-bottom p {
  color: rgba(var(--primary-foreground), 0.6);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background-color: var(--card);
  color: var(--card-foreground);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  min-width: 300px;
  max-width: 100%;
  animation: slideInRight 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

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

@keyframes pulse-slow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Enhanced Animations */
.glow-on-hover {
  position: relative;
  overflow: hidden;
}

.glow-on-hover::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: linear-gradient(45deg, 
    var(--blue-600), 
    var(--purple-600),
    var(--blue-600), 
    var(--purple-600));
  background-size: 400%;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.7s ease;
  z-index: -1;
  animation: glowing 10s linear infinite;
}

.glow-on-hover:hover::before {
  opacity: 0.7;
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}
/* Language Switcher Styles */
.language-switcher {
  display: flex;
  gap: 8px;
  margin-left: 20px;
}

.language-btn {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.language-btn.active {
  background: var(--primary-color);
  color: white;
}

.mobile-language-switcher {
  flex-direction: column;
  margin: 15px 0;
}

.mobile-language-switcher .language-btn {
  text-align: left;
  padding: 8px 16px;
}

:root, :host {
  --fa-style-family-classic: 'Font Awesome 6 Free';
  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; }

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); }

.fas,
.fa-solid {
  font-weight: 900; }


/* Animation classes for the icons */
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delay-1 { animation: float 6s ease-in-out 1s infinite; }
.animate-float-delay-2 { animation: float 6s ease-in-out 2s infinite; }
.animate-pulse-slow { animation: pulse-slow 4s ease-in-out infinite; }
.animate-spin-slow { animation: spin-slow 8s linear infinite; }
.animate-bounce-subtle { animation: bounce-subtle 3s ease-in-out infinite; }
</pre></body></html>