/* Amuzu Landing Page Styles - New Design */

:root {
  --primary: #94CBC1;
  --secondary: #de8790;
  --background: #FDFDFD;
  --background-pink: #FCF3F4;
  --text-primary: #3C4846;
  --text-secondary: rgba(60, 72, 70, 0.5);
  --grey: #E1E1E1;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 15px;
}

/* ===== Header ===== */
.header {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Meow Script', cursive;
  font-size: 36px;
  font-weight: 400;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
}

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

/* ===== Hero Section ===== */
.hero {
  background-color: var(--background);
  padding: 60px 40px 80px;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

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

.hero-logo {
  font-family: 'Meow Script', cursive;
  font-size: 100px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-tagline {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.9;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  max-width: 320px;
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: -200px;
  z-index: 10;
}

/* App Store Button */
.app-store-button {
  display: inline-block;
  transition: opacity 0.2s;
}

.app-store-button:hover {
  opacity: 0.8;
}

.app-store-button img {
  height: 48px;
}

/* ===== Features Section ===== */
.features {
  padding: 160px 40px;
  background-color: var(--background-pink);
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-title {
  font-size: 24px;
  letter-spacing: 0.3em;
  color: var(--secondary);

}

.features-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Feature Card */
.feature-card {
  padding: 60px 60px 0;
  background-color: var(--background);
  border-radius: 24px;
  margin: 0 auto 24px;
  max-width: 900px;
  overflow: hidden;
}

.feature-card:last-child {
  margin-bottom: 0;
}

.feature-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.feature-content {
  flex: 1;
}

.feature-header-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

.feature-number {
  font-family: 'Inria Sans', sans-serif;
  font-size: 60px;
  font-weight: 500;
  color: var(--secondary);
  line-height: 1;
  letter-spacing: 0.1em;
}

.feature-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
}

.feature-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
  margin-left: 40px;
}

.feature-description p {
  margin-bottom: 14px;
}

.feature-description p:last-child {
  margin-bottom: 0;
}

.feature-image {
  flex: 0 0 240px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.feature-image img {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin-bottom: -80px;
}

/* ===== CTA Section ===== */
.cta {
  padding: 60px 40px;
  text-align: center;
}

.cta-tagline {
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}

/* ===== Footer ===== */
.footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--grey);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer .copyright {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ===== Legal Pages ===== */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.legal-page h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.legal-page .intro {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.legal-page h2 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.legal-page p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-primary);
}

/* ===== Deep Link Pages ===== */
.deep-link-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.deep-link-page h1 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.deep-link-page p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-logo {
    font-size: 80px;
  }

  .hero-image img {
    max-width: 280px;
  }

  .feature-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .feature-description {
    margin-left: 0;
  }

  .feature-header-row {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 16px 20px;
  }

  .nav-links {
    gap: 16px;
  }

  .hero {
    padding: 40px 20px 60px;
  }

  .hero-logo {
    font-size: 72px;
  }

  .hero-tagline {
    font-size: 20px;
  }

  .hero-image img {
    margin-bottom: -160px;
  }

  .features {
    padding: 140px 20px 60px;
  }

  .feature-card {
    padding: 40px 20px;
  }

  .feature-number {
    font-size: 48px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-image img {
    max-width: 220px;
    margin-bottom: -120px;
  }

  .cta {
    padding: 60px 20px;
  }

  .cta-tagline {
    font-size: 20px;
  }

  .footer-links {
    gap: 24px;
  }
}
