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

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

:root {
  --pulse150-primary: #06b6d4;
  --pulse150-secondary: #10b981;
  --pulse150-dark: #0f172a;
  --pulse150-gray: #64748b;
  --pulse150-light: #f8fafc;
  --pulse150-white: #ffffff;
}

.pulse150-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--pulse150-dark);
  background-color: var(--pulse150-white);
  overflow-x: hidden;
}

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

.pulse150-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(100, 116, 139, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.pulse150-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pulse150-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pulse150-logo-icon {
  width: 40px;
  height: 40px;
}

.pulse150-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pulse150-primary), var(--pulse150-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.pulse150-nav-link {
  text-decoration: none;
  color: var(--pulse150-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.pulse150-cta-button {
  background: linear-gradient(135deg, var(--pulse150-primary), var(--pulse150-secondary));
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pulse150-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.pulse150-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.pulse150-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(6, 182, 212, 0.08), transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(16, 185, 129, 0.08), transparent 60%);
  pointer-events: none;
}

.pulse150-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pulse150-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
  color: var(--pulse150-primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.pulse150-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--pulse150-dark);
}

.pulse150-gradient-text {
  background: linear-gradient(135deg, var(--pulse150-primary), var(--pulse150-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pulse150-hero-description {
  font-size: 1.25rem;
  color: var(--pulse150-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.pulse150-primary-button {
  background: linear-gradient(135deg, var(--pulse150-primary), var(--pulse150-secondary));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pulse150-primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.3);
}

.pulse150-secondary-button {
  background: white;
  color: var(--pulse150-dark);
  border: 2px solid var(--pulse150-primary);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pulse150-secondary-button:hover {
  background: var(--pulse150-primary);
  color: white;
}

.pulse150-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pulse150-stat {
  text-align: left;
}

.pulse150-stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pulse150-primary), var(--pulse150-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pulse150-stat-label {
  color: var(--pulse150-gray);
  font-size: 0.875rem;
}

.pulse150-hero-visual {
  position: relative;
  height: 500px;
}

.pulse150-floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: pulse150-float 6s ease-in-out infinite;
}

.pulse150-card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.pulse150-card-2 {
  top: 40%;
  right: 5%;
  animation-delay: 2s;
}

.pulse150-card-3 {
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
}

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

.pulse150-card-icon {
  width: 40px;
  height: 40px;
  color: var(--pulse150-primary);
}

.pulse150-card-text {
  font-weight: 600;
  color: var(--pulse150-dark);
}

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

.pulse150-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pulse150-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--pulse150-dark);
}

.pulse150-section-subtitle {
  font-size: 1.125rem;
  color: var(--pulse150-gray);
}

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

.pulse150-feature-card {
  background: white;
  border: 1px solid rgba(100, 116, 139, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.pulse150-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--pulse150-primary);
}

.pulse150-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pulse150-feature-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

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

.pulse150-icon-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.pulse150-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.pulse150-icon-teal {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.pulse150-icon-emerald {
  background: linear-gradient(135deg, #10b981, #047857);
}

.pulse150-icon-sky {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.pulse150-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--pulse150-dark);
}

.pulse150-feature-description {
  color: var(--pulse150-gray);
  line-height: 1.7;
}

.pulse150-benefits-section {
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.03), rgba(16, 185, 129, 0.03));
}

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

.pulse150-benefit-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.pulse150-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--pulse150-primary);
}

.pulse150-benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse150-benefit-icon svg {
  width: 30px;
  height: 30px;
  color: var(--pulse150-primary);
}

.pulse150-benefit-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--pulse150-dark);
}

.pulse150-benefit-text {
  color: var(--pulse150-gray);
  font-size: 0.95rem;
}

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

.pulse150-user-card {
  background: white;
  border: 1px solid rgba(100, 116, 139, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pulse150-user-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--pulse150-primary);
}

.pulse150-user-image {
  margin-bottom: 1.5rem;
}

.pulse150-user-image svg {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

.pulse150-user-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--pulse150-dark);
}

.pulse150-user-description {
  color: var(--pulse150-gray);
  line-height: 1.6;
}

.pulse150-cta-section {
  background: linear-gradient(135deg, var(--pulse150-primary), var(--pulse150-secondary));
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pulse150-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.pulse150-cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.pulse150-cta-content {
  position: relative;
  z-index: 1;
}

.pulse150-cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.pulse150-cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pulse150-cta-taglines {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.pulse150-tagline {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.pulse150-cta-main-button {
  background: white;
  color: var(--pulse150-primary);
  border: none;
  padding: 1.25rem 3rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.pulse150-cta-main-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pulse150-cta-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.pulse150-footer {
  background: var(--pulse150-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.pulse150-footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

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

.pulse150-footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

.pulse150-footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pulse150-footer-heading {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.pulse150-footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.pulse150-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .pulse150-nav-links {
    gap: 1rem;
  }

  .pulse150-nav-link {
    display: none;
  }

  .pulse150-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pulse150-hero-visual {
    display: none;
  }

  .pulse150-hero-title {
    font-size: 2.5rem;
  }

  .pulse150-hero-actions {
    flex-direction: column;
  }

  .pulse150-hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

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

  .pulse150-benefits-grid {
    grid-template-columns: 1fr;
  }

  .pulse150-users-grid {
    grid-template-columns: 1fr;
  }

  .pulse150-cta-title {
    font-size: 2rem;
  }

  .pulse150-cta-taglines {
    flex-direction: column;
    gap: 1rem;
  }

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

  .pulse150-footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .pulse150-container {
    padding: 0 1rem;
  }

  .pulse150-hero-title {
    font-size: 2rem;
  }

  .pulse150-hero-description {
    font-size: 1rem;
  }

  .pulse150-section-title {
    font-size: 2rem;
  }
}
