body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0f172a;
  color: #fff;
}

.page-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, #1e293b, transparent 40%),
              radial-gradient(circle at 80% 80%, #1e293b, transparent 40%);
  z-index: -1;
}
.center-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home {
  max-width: 1100px;
  padding: 0px 20px 70px 20px;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  color: #94a3b8;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tile {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}

.tile:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
}

.icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.tile h2 {
  margin: 0 0 10px;
}

.tile p {
  color: #cbd5f5;
  font-size: 14px;
}
.editor-block {
  margin-top: 38px;
}

.editor-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px;
  border-radius: 24px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.2s ease;
}

.editor-btn:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.editor-content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.editor-icon {
  font-size: 38px;
  line-height: 1;
}

.editor-btn h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.editor-btn p {
  margin: 0;
  color: #cbd5f5;
  font-size: 14px;
  line-height: 1.6;
}

.editor-arrow {
  font-size: 30px;
  opacity: 0.75;
}

@media (max-width: 900px) {
  .editor-btn {
    padding: 22px 20px;
  }

  .editor-content {
    align-items: flex-start;
  }

  .editor-btn h2 {
    font-size: 20px;
  }
}