:root {
  --primary-50: #ecfdf5;
  --primary-100: #d1fae5;
  --primary-200: #a7f3d0;
  --primary-700: #047857;
  --background: #29665a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--background);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: #29665a;
  color: var(--white);
  min-height: 100vh;
}

.hero-container {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
  padding: 6rem 0;
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.hero-badge {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.hero-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-title span {
  color: var(--primary-200);
}

.hero-description {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  color: var(--primary-100);
  font-size: 1.125rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
}

.hero-button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.hero-button-primary {
  background: var(--white);
  color: var(--primary-700);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.hero-button-primary:hover {
  background: var(--primary-50);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.hero-button-secondary {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.hero-phone-wrapper {
  display: none;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: 340px;
  max-width: 100%;
  padding: 10px;
  border-radius: 42px;
  background: #111111;
  border: 3px solid #000000;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 0 0 2px rgba(255, 255, 255, 0.04);
  transform: none;
}

.phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  object-fit: cover;
  background: #ffffff;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }

  .hero-description {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-phone-wrapper {
    display: flex;
  }
}