/* Reset */
body, h1, h2, h3, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fff;
  color: #1d1d1f;
  line-height: 1.5;
}

/* Hero Section */
.hero {
  background: #e8763c; /* Orange background */
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0rem 3rem;
}

/* Header inside hero */
.site-header {
  position: absolute;
  top: 2rem;
  left: 3rem;
  z-index: 10;
}

.app-logo {
  height: 54px;
  width: auto;
}

/* Hero Content */
.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: 0;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.hero-text .tagline {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  opacity: 0.95;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  align-items: center;
}

.appstore-btn {
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  transition: opacity 0.2s;
}

.appstore-btn:hover {
  opacity: 0.9;
}

.appstore-badge {
  height: 85px;
  width: auto;
  display: block;
}

.requirements {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* Hero Devices */
.hero-devices {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.hero-devices-image {
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

/* Features Section */
.features {
  padding: 5rem 3rem;
  background-color: #fafafa;
  text-align: center;
}

.features h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  flex: 1;
  max-width: 300px;
  background: #f5f5f0;
  padding: 2rem;
  border-radius: 12px;
}

.feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #c7f464;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
}

.feature-icon .material-icons,
.feature-icon .material-icons-outlined {
  font-size: 2.5rem;
  color: #333;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

/* Steps Section */
.steps-section {
  padding: 5rem 3rem;
  background-color: #fafafa;
}

.steps-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.steps-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tennis-player-placeholder {
  width: 100%;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.player-image {
  width: 100%;
  height: auto;
  display: block;
}

.steps-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: center;
  background: #f5f5f0;
  padding: 3rem 4rem;
  border-radius: 0 0 12px 12px;
}

.watch-mockups {
  display: flex;
  align-items: flex-start;
}

.watch-mockups-image {
  max-width: 300px;
  width: auto;
  height: auto;
  display: block;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  padding-left: 2rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c7f464;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  padding-top: 0.5rem;
}

/* Creators Section */
.creators {
  padding: 5rem 3rem;
  text-align: center;
  background-color: #fff;
}

.creators h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.creator-cards {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.creator {
  width: 300px;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.creator img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.creator h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.creator p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.creator .email {
  margin-top: 1.5rem;
}

.creator .email a {
  color: #0066cc;
  text-decoration: none;
  font-size: 1rem;
}

.creator .email a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #1a1a1a;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    padding-top: 2re6;
  }

  .hero-text {
    text-align: center;
    align-items: center;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-devices {
    justify-content: center;
    margin-top: 2rem;
  }

  .steps-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .watch-mockups {
    justify-content: center;
  }
  
  .watch-mockups-image {
    max-width: 300px;
  }
  
  .steps-list {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 1.5rem;
    min-height: auto;
  }

  .site-header {
    top: 1.5rem;
    left: 1.5rem;
  }

  .hero-content {
    padding-top: 5rem;
    gap: 3rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text .tagline {
    font-size: 1.2rem;
  }

  .appstore-badge {
    height: 60px;
  }

  .hero-devices {
    width: 100%;
    justify-content: center;
  }

  .hero-devices-image {
    max-width: 100%;
    max-height: 50vh;
  }

  .features,
  .steps-section,
  .creators {
    padding: 3rem 1.5rem;
  }

  .features h2,
  .steps-section h2,
  .creators h2 {
    font-size: 2rem;
    text-align: center;
  }

  .features-grid,
  .creator-cards {
    flex-direction: column;
    align-items: center;
  }

  .feature-item,
  .creator {
    max-width: 100%;
  }

  .steps-content {
    gap: 0;
  }

  .steps-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .watch-mockups {
    justify-content: center;
  }
  
  .watch-mockups-image {
    max-width: 250px;
  }
  
  .steps-list {
    padding-left: 0;
  }
}
