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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background: #f4f5f7;
  color: #1e293b;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ─────────────────────────────────────── */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1e293b;
}

.logo-group svg {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .brand {
  font-size: 18px;
  font-weight: 700;
  color: #231F20;
  letter-spacing: -0.3px;
}

.logo-text .domain {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.header-nav a {
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 200ms;
}

.header-nav a:hover {
  color: #F20000;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 72px 24px 48px;
  max-width: 640px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 16px;
}

.hero h1 span {
  background: linear-gradient(135deg, #F20000, #BC0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Tool Grid ─────────────────────────────────── */
.tools-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #94a3b8;
  margin-bottom: 24px;
  padding-left: 4px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* ── Tool Card ─────────────────────────────────── */
.tool-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: default;
}

.tool-card.live {
  cursor: pointer;
}

.tool-card.live:hover {
  border-color: #F20000;
  box-shadow: 0 8px 32px rgba(242, 0, 0, 0.08), 0 2px 8px rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.tool-card.coming-soon {
  opacity: 0.75;
}

.tool-card.coming-soon:hover {
  opacity: 0.85;
  border-color: #cbd5e1;
}

/* Icon container */
.tool-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-icon svg {
  width: 28px;
  height: 28px;
}

/* Icon color variants */
.icon-red     { background: #fef2f2; }
.icon-blue    { background: #eff6ff; }
.icon-green   { background: #f0fdf4; }
.icon-purple  { background: #faf5ff; }
.icon-orange  { background: #fff7ed; }
.icon-teal    { background: #f0fdfa; }
.icon-pink    { background: #fdf2f8; }
.icon-slate   { background: #f1f5f9; }

.tool-info {
  flex: 1;
}

.tool-name {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

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

/* Badge */
.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  letter-spacing: 0.3px;
}

.badge-live {
  background: #F20000;
  color: #ffffff;
}

.badge-soon {
  background: #f1f5f9;
  color: #94a3b8;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}

.site-footer p {
  font-size: 13px;
  color: #94a3b8;
}

.site-footer a {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  color: #F20000;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 640px) {
  .site-header {
    padding: 0 16px;
  }

  .hero {
    padding: 48px 16px 32px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .tools-section {
    padding: 0 16px 56px;
  }

  .tool-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tool-card {
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 16px;
  }

  .tool-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .tool-icon svg {
    width: 22px;
    height: 22px;
  }

  .tool-badge {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
}
