@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #FFFFFF;
  color: #040304;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 32px 48px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #040304; 
}

header img { height: 36px; }

.tagline {
  font-size: 13px;
  color: #666;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

main {
  flex: 1;
  padding: 80px 48px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.hero { margin-bottom: 64px; }

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero h1 span { color: #C2D500; }

.hero p {
  font-size: 18px;
  color: #444;
  max-width: 560px;
  line-height: 1.6;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.tool-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}

.tool-card:hover {
  border-color: #040304;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.tool-icon { font-size: 28px; margin-bottom: 14px; }
.tool-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; }

.tool-client {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #e53935;
  font-weight: 600;
  margin-bottom: 10px;
}

.tool-desc { font-size: 14px; color: #666; line-height: 1.5; }

.coming-soon {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.coming-soon .tool-client { color: #999; }

footer {
  padding: 32px 48px;
  background: #040304;
  color: #FFFFFF;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer img { height: 20px; opacity: 0.3; }

@media (max-width: 640px) {
  header { padding: 20px 24px; }
  main { padding: 48px 24px; }
  .hero h1 { font-size: 32px; }
  footer { padding: 24px; flex-direction: column; gap: 12px; }
}
