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

body {
  font-family: "Inter", sans-serif;
  color: #262626;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

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

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

.navigation {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
}
.navigation .nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.navigation .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navigation .logo .logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #fc0055;
}
.navigation .logo .logo-text {
  font-weight: 700;
  font-size: 1.125rem;
}
.navigation .nav-links {
  display: none;
  gap: 2rem;
}
@media (min-width: 768px) {
  .navigation .nav-links {
    display: flex;
  }
}
.navigation .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #525252;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
}
.navigation .nav-link:hover {
  background: #f5f5f5;
  color: #262626;
}
.navigation .nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}
.btn.btn-primary {
  background: #fc0055;
  color: #ffffff;
}
.btn.btn-primary:hover {
  background: rgb(226.5, 0, 76.3988095238);
  transform: translateY(-1px);
}
.btn.btn-primary:active {
  transform: translateY(0);
}
.btn.btn-ghost {
  background: transparent;
  color: #404040;
}
.btn.btn-ghost:hover {
  background: #f5f5f5;
}
@media (max-width: 640px) {
  .btn.btn-ghost {
    display: none;
  }
}
.btn .btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff, #fff1f5, #ffffff);
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero .hero-bg .bg-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero .hero-bg .bg-gradient.gradient-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(252, 0, 85, 0.05);
}
.hero .hero-bg .bg-gradient.gradient-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(252, 0, 85, 0.05);
}
.hero .hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .hero .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.hero .hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero .hero-title {
    font-size: 3.75rem;
  }
}
.hero .hero-description {
  font-size: 1.25rem;
  color: #525252;
  margin-bottom: 2rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .hero .hero-description {
    font-size: 1.5rem;
  }
}
.hero .hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero .hero-cta {
    flex-direction: row;
    align-items: center;
  }
}
.hero .hero-subtext {
  font-size: 0.875rem;
  color: #525252;
}

.streak-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e5e5;
}
.streak-card .streak-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.streak-card .streak-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.streak-card .streak-subtitle {
  font-size: 0.875rem;
  color: #525252;
}
.streak-card .streak-count {
  text-align: right;
}
.streak-card .streak-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fc0055;
}
.streak-card .streak-label {
  font-size: 0.75rem;
  color: #525252;
}

.calendar .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.calendar .day-label {
  font-size: 0.75rem;
  text-align: center;
  color: #525252;
  font-weight: 500;
}
.calendar .calendar-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.calendar .day {
  aspect-ratio: 1;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  transition: all 0.2s;
}
.calendar .day.completed {
  background: #fc0055;
  color: #ffffff;
}
.calendar .day svg {
  width: 1rem;
  height: 1rem;
}

.streak-legend {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.streak-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #525252;
}
.streak-legend .legend-box {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 2px;
  background: #f5f5f5;
}
.streak-legend .legend-box.completed {
  background: #fc0055;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-header .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-header .section-title {
    font-size: 2.5rem;
  }
}
.section-header .section-description {
  font-size: 1.125rem;
  color: #525252;
  max-width: 48rem;
  margin: 0 auto;
}

.features {
  padding: 5rem 0;
  background: #ffffff;
}
.features .features-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .features .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.features .feature-card {
  display: flex;
  gap: 1rem;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  transition: all 0.2s;
  cursor: pointer;
}
.features .feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.features .feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(252, 0, 85, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.features .feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fc0055;
}
.features .feature-content {
  flex: 1;
}
.features .feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.features .feature-description {
  color: #525252;
  line-height: 1.6;
}

.demo {
  padding: 5rem 0;
  background: #fff1f5;
}
.demo .demo-grid {
  display: grid;
  gap: 5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .demo .demo-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.demo .demo-image img {
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
}
.demo .demo-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.demo .demo-description {
  font-size: 1.125rem;
  color: #525252;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.demo .benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.demo .benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.demo .benefit .benefit-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(252, 0, 85, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}
.demo .benefit .benefit-icon svg {
  width: 1rem;
  height: 1rem;
  color: #fc0055;
}
.demo .benefit p {
  flex: 1;
  color: #262626;
}

.social-proof {
  padding: 5rem 0;
  background: #fff1f5;
}
.social-proof .quote-container {
  text-align: center;
  margin-bottom: 5rem;
}
.social-proof .quote {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .social-proof .quote {
    font-size: 1.875rem;
  }
}
.social-proof .quote-author {
  font-size: 1.125rem;
  color: #525252;
}
.social-proof .stats {
  display: grid;
  gap: 2rem;
  margin-top: 5rem;
}
@media (min-width: 640px) {
  .social-proof .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
.social-proof .stat {
  text-align: center;
}
.social-proof .stat .stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fc0055;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .social-proof .stat .stat-value {
    font-size: 3rem;
  }
}
.social-proof .stat .stat-label {
  font-size: 1.125rem;
  color: #525252;
}

.cta-section {
  padding: 5rem 0;
  background: #fff1f5;
}
.cta-section .cta-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 0;
}
.cta-section .cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .cta-section .cta-title {
    font-size: 3rem;
  }
}
.cta-section .cta-description {
  font-size: 1.25rem;
  color: #525252;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) {
  .cta-section .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}
.cta-section .cta-subtext {
  font-size: 0.875rem;
  color: #525252;
}

.footer {
  padding: 5rem 0;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
}
.footer .footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer .footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer .footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #525252;
}
.footer .footer-link {
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
}
.footer .footer-link:hover {
  background: #f5f5f5;
  color: #262626;
}
.footer .newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer .newsletter-input {
  flex: 1;
  padding: 0.5rem 1rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  outline: none;
}
.footer .newsletter-input:focus {
  border-color: #fc0055;
}
.footer .newsletter-hint {
  font-size: 0.75rem;
  color: #525252;
}
.footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  font-size: 0.875rem;
  color: #525252;
}
.footer .footer-bottom p {
  padding: 8pt;
}
.footer .footer-bottom span {
  color: #fc0055;
}

/*# sourceMappingURL=styles.css.map */
