/* ================================================
   Pulsoid Desktop Page Styles
   ================================================ */

/* ================================================
   Base
   ================================================ */

.desktop-page {
  background: var(--background);
  font-family: var(--font-family);
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================
   Hero Section
   ================================================ */

.desktop-hero {
  padding: 80px 24px 60px;
  background: linear-gradient(180deg, #0a0a0e 0%, #0d0d12 50%, #101015 100%);
  position: relative;
  overflow: hidden;
}

.desktop-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(7,171,161,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.desktop-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
}

.desktop-hero-content {
  flex: 1;
  text-align: center;
  max-width: 580px;
}

/* ================================================
   Title & Subtitle
   ================================================ */

.desktop-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 20px;
}

.desktop-subtitle {
  font-size: 27px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 36px;
}

/* ================================================
   Download Button
   ================================================ */

.desktop-download {
  margin-bottom: 8px;
}

.desktop-download-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 52px;
  background: linear-gradient(135deg, var(--brand-teal) 0%, #059e95 100%);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px var(--brand-teal-glow);
}

.desktop-download-icon {
  flex-shrink: 0;
}

.desktop-download-button:hover {
  background: linear-gradient(135deg, var(--brand-teal-light) 0%, var(--brand-teal) 100%);
  color: var(--text-primary);
  text-decoration: none;
  box-shadow: 0 6px 30px var(--brand-teal-glow);
  transform: translateY(-1px);
}

.desktop-version {
  font-size: 20px;
  color: var(--text-muted);
  margin: 12px 0 0;
}

.desktop-coming-soon {
  font-size: 27px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
}

/* ================================================
   Screenshot
   ================================================ */

.desktop-screenshot {
  flex: 1;
  width: 100%;
  max-width: 480px;
}

.desktop-screenshot-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ================================================
   Features Section
   ================================================ */

.desktop-features {
  padding: 80px 24px;
  background: linear-gradient(180deg, #101015 0%, #0a0a0e 100%);
}

.desktop-features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.desktop-section-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-align: center;
  margin: 0 0 48px;
}

.desktop-features-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.desktop-feature-card {
  text-align: center;
  max-width: 340px;
  padding: 32px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(30,30,38,0.5) 0%, rgba(22,22,28,0.3) 100%);
  border: 1px solid rgba(43,43,51,0.5);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.desktop-feature-card:hover {
  border-color: rgba(7,171,161,0.3);
  transform: translateY(-4px);
}

.desktop-feature-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0 0 10px;
}

.desktop-feature-description {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ================================================
   Requirements Section
   ================================================ */

.desktop-requirements {
  padding: 60px 24px;
  background: linear-gradient(180deg, #0a0a0e 0%, #101015 50%, #0a0a0e 100%);
}

.desktop-requirements-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.desktop-requirements-text {
  font-size: 24px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ================================================
   Responsive: Tablet (768px+)
   ================================================ */

@media (min-width: 768px) {
  .desktop-hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .desktop-hero-content {
    text-align: left;
  }

  .desktop-title {
    font-size: 63px;
  }

  .desktop-section-title {
    font-size: 63px;
  }

  .desktop-features-grid {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }

  .desktop-feature-card {
    flex: 1;
    max-width: none;
  }
}
