/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background:
    /*radial-gradient(circle at 20% 20%, rgba(255, 182, 193, 0.2) 0%, transparent 50%),*/
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(173, 216, 230, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(221, 160, 221, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 228, 181, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(152, 251, 152, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(255, 218, 185, 0.2) 0%, transparent 50%),
    #fefefe;
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ==========================================================================
   LAYOUT COMPONENTS
   ========================================================================== */

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  padding: 20px 0;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  position: relative;
}

.footer {
  padding: 40px 0;
  text-align: center;
  margin-top: auto;
}

.footer p {
  font-size: 14px;
  color: #777;
}

/* ==========================================================================
   LOGO
   ========================================================================== */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  text-align: center;
  max-width: 600px;
  width: 100%;
  position: relative;
}

/* Rounded container background */
.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100vw - 64px);
  bottom: 80px;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255, 182, 193, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(173, 216, 230, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(231, 153, 70,  0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(221, 160, 221,  0.42) 0%, transparent 35%),
    linear-gradient(180deg, 
        transparent 0%, 
        transparent 20%,
        transparent 50%,
        transparent 70%,
        transparent 100%
    );

  /* 
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.2) 50%, */
    /* rgba(255, 255, 255, 0.6) 70%,
    rgba(255, 255, 255, 0.9) 100% */ /*
    rgba(231, 153, 70, 0.05) 60%, 
    rgba(20, 53, 97, 0.1) 100%
  );
  */
  backdrop-filter: blur(20px);
  border-radius: 0 0 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: -1;
}

.hero-content {
  margin-bottom: 60px;
}

.hero__title {
  font-size: 46px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 20px;
  color: #444;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.5;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta {
  margin-bottom: 40px;
}

.cta__info {
  margin-top: 12px;
  font-size: 14px;
  color: #888;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 500;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: inherit;
  user-select: none;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn--primary:active {
  transform: translateY(0);
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn--secondary {
  background-color: #fcfcfc;
  color: #1a1a1a;
  border: 1px solid #d6d6d6;
  box-shadow: none;
}

.btn--secondary:hover {
  background-color: #f9f9f9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn__icon {
  flex-shrink: 0;
}

.btn__text {
  white-space: nowrap;
}

/* ==========================================================================
   SHOWCASE
   ========================================================================== */

.showcase {
  width: 140%;
  max-width: 1000px;
  margin-left: -20%;
  margin-right: -20%;
  position: relative;
  z-index: 0;
  filter: drop-shadow(0 0px 24px rgba(0, 0, 0, 0.1));
}

.showcase__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  clip-path: inset(0 0 80px 0);
}

/* ==========================================================================
   INFO SECTION
   ========================================================================== */

.info-section {
  text-align: left;
  max-width: 600px;
  width: 100%;
}

.info__title {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.info__text {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ==========================================================================
   DOWNLOAD ROW
   ========================================================================== */

.download-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.download-row__icon {
  width: 24px;
  height: 24px;
  margin-top:-4px;
}

.download-row__text {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet and below (1000px) */
@media (max-width: 1000px) {
  .showcase {
    width: calc(100vw - 140px);
    margin-left: calc(-50vw + 50% + 70px);
    margin-right: calc(-50vw + 50% + 70px);
    max-width: none;
  }
}

/* Mobile and tablet (768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .main {
    padding: 40px 0;
  }

  .hero-section::before {
    width: calc(100vw - 30px);
    bottom: 30px;
  }

  .showcase {
    width: calc(100vw - 120px);
    margin-left: calc(-50vw + 50% + 60px);
    margin-right: calc(-50vw + 50% + 60px);
  }

  .showcase__image {
    clip-path: inset(0 0 30px 0);
  }


  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .btn {
    font-size: 16px;
    padding: 14px 28px;
  }

  .info-section {
    margin-top: 30px
  }


  .info__title {
    font-size: 28px;
  }

  .info__text {
    font-size: 16px;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {

  .hero__subtitle {
    font-size: 16px;
  }

  .hero-section::before {
    width: calc(100vw - 30px);
    border-radius: 0 0 18px 28px;
  }

  .showcase {
    width: calc(100vw - 100px);
    margin-left: calc(-50vw + 50% + 50px);
    margin-right: calc(-50vw + 50% + 50px);
  }

  .hero-content {
     margin-bottom: 40px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .download-row {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .download-row .btn {
    width: auto;
    max-width: none;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .info-section {
    margin-top: 10px
  }

  .info__title {
    font-size: 24px;
  }

  .info__text {
    font-size: 15px;
  }
}