@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

html {
  scroll-behavior: smooth;
}

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

:root {
  --primary: #0d9488;
  --primary-hover: #14b8a6;
  --background: #f1f5f9;
  --surface: #ffffff;
  --foreground: #334155;
  --text-muted: #64748b;
  --border: #e2e8f0;

  --transition-speed: 0.3s;
  --radius-clay: 40px;
  --radius-btn: 30px;

  /* Claymorphism Shadows - Light */
  --shadow-outer: 12px 12px 24px rgba(0, 0, 0, 0.08), -12px -12px 24px rgba(255, 255, 255, 0.9);
  --shadow-inner: inset 6px 6px 12px rgba(0, 0, 0, 0.04), inset -6px -6px 16px rgba(255, 255, 255, 0.8);
  --shadow-btn: 10px 10px 20px rgba(0, 0, 0, 0.06), -10px -10px 20px rgba(255, 255, 255, 0.8);

  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light;
}

[data-theme="dark"] {
  --primary: #3b82f6;
  --primary-hover: #60a5fa;
  --background: #0a0a0a;
  --surface: #161616;
  --foreground: #ededed;
  --text-muted: #a1a1aa;
  --border: #262626;

  /* Claymorphism Shadows - Dark */
  --shadow-outer: 12px 12px 24px rgba(0, 0, 0, 0.6), -8px -8px 24px rgba(255, 255, 255, 0.03);
  --shadow-inner: inset 4px 4px 8px rgba(0, 0, 0, 0.4), inset -4px -4px 12px rgba(255, 255, 255, 0.05);
  --shadow-btn: 8px 8px 16px rgba(0, 0, 0, 0.4), -4px -4px 16px rgba(255, 255, 255, 0.02);

  color-scheme: dark;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  transition: background-color var(--transition-speed), color var(--transition-speed);
  overflow-x: hidden;
}

my-header {
  display: block;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}



h1,
h2,
h3,
.app-name {
  font-family: 'Archivo', sans-serif;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: var(--surface);
  border-radius: var(--radius-btn);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: var(--shadow-outer), var(--shadow-inner);
  border: 4px solid var(--surface);
  /* Chunk look */
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--foreground);
}

.logo {
  width: 48px;
  height: 48px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.app-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  margin-left: 8px;
}

.theme-toggle:hover {
  color: var(--primary);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s;
}

.mobile-menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary);
}

[data-theme="dark"] .mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 16px;
    width: 220px;
    background: var(--surface);
    flex-direction: column;
    padding: 50px 24px 24px;
    gap: 16px;
    border-radius: var(--radius-clay);
    box-shadow: var(--shadow-outer), var(--shadow-inner);
    border: 4px solid var(--surface);
    z-index: 1001;
  }

  .menu-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface);
    border: 4px solid var(--surface);
    color: var(--text-muted);
    cursor: pointer;
    box-shadow: var(--shadow-outer), var(--shadow-inner);
    transition: all 0.2s;
  }

  .menu-close-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
  }

  .header-right {
    gap: 0;
  }

  .header-container.menu-open .nav {
    display: flex;
  }

  .theme-toggle {
    margin-left: 0;
  }
}

.moon-icon {
  display: none;
}

[data-theme="dark"] .sun-icon {
  display: none;
}

[data-theme="dark"] .moon-icon {
  display: block;
}

.dashboard-preview-section {
  text-align: center;
  margin: 100px 0;
  perspective: 1500px;
}

.dashboard-preview {
  max-width: 90%;
  border-radius: var(--radius-clay);
  box-shadow: var(--shadow-outer);
  border: 12px solid var(--surface);
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-theme="dark"] .dashboard-preview {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.dashboard-preview:hover {
  transform: translateY(-5px) rotateX(2deg);
}

@media (max-width: 768px) {
  .features {
    margin: 60px 0;
    gap: 24px;
  }
  .feature-card {
    text-align: center;
    padding: 32px 24px;
  }
  .feature-icon {
    margin-left: auto;
    margin-right: auto;
  }
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 100px 0;
}

.feature-card {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-clay);
  text-align: left;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-outer), var(--shadow-inner);
  border: 4px solid var(--surface);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

[data-theme="dark"] .feature-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--foreground);
}

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

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  my-header {
    top: 0;
    padding: 0;
    position: sticky;
    height: auto;
  }

  .header-container {
    border-radius: 0 0 var(--radius-clay) var(--radius-clay);
    padding: 12px 24px;
    border: 4px solid var(--surface);
    border-top: none;
    margin: 0;
    width: 100%;
    max-width: none;
    box-shadow: var(--shadow-outer), var(--shadow-inner);
  }

  .nav {
    gap: 12px;
  }

  .app-name {
    font-size: 1.1rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding-top: 20px;
  }

  .big-logo-container {
    order: -1;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .big-logo {
    width: 120px;
    height: 120px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 450px;
}

@media (max-width: 768px) {
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-size: 1.1rem;
    padding: 0 10px;
  }
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.platform-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.platform-card svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.platform-card span {
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .hero-actions {
    justify-content: center !important;
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

@media (max-width: 500px) {
  .hero-actions {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: center !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    max-width: 300px;
    display: block !important;
    text-align: center !important;
  }
}

.btn {
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  cursor: pointer;
  border: 4px solid transparent;
  box-shadow: var(--shadow-btn);
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 8px 8px 16px rgba(13, 148, 136, 0.2), inset 4px 4px 8px rgba(255, 255, 255, 0.3), inset -4px -4px 8px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .btn-primary {
  box-shadow: 8px 8px 16px rgba(59, 130, 246, 0.3), inset 4px 4px 8px rgba(255, 255, 255, 0.1), inset -4px -4px 8px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  border-color: var(--border);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background-color: #f8fafc;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.btn:active {
  transform: translateY(0);
}

.downloads {
  margin-top: 10px;
  text-align: center;
}

.downloads h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.package-card {
  background: var(--surface);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: var(--radius-clay);
  text-align: left;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-outer), var(--shadow-inner);
  border: 4px solid var(--surface);

}

.package-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.package-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

.aur-section {
  max-width: 600px;
  margin: 0 auto;
  background: #0f172a;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.command-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Courier New', Courier, monospace;
}

.command-prompt {
  color: #94a3b8;
  user-select: none;
}

.command-text {
  color: #38bdf8;
  font-weight: 600;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

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

.pkg-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.download-logo {
  width: 200px;
  height: 200px;
}

.view {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

::selection {
  background: var(--primary);
  color: white;
}